/*!
 * 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, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.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; }

/*
   * 3DX
   */
.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: transparent;
  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); }

/*
   * 3DX Reverse
   */
.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: transparent;
  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); }

/*
   * 3DY
   */
.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: transparent;
  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); }

/*
   * 3DY Reverse
   */
.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: transparent;
  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); }

/*
   * Arrow
   */
.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); }

/*
   * Arrow Right
   */
.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); }

/*
   * Arrow Alt
   */
.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); }

/*
   * Arrow Alt Right
   */
.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); }

/*
   * Boring
   */
.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); }

/*
   * Collapse
   */
.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); }

/*
   * Collapse Reverse
   */
.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); }

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

/*
   * Elastic Reverse
   */
.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; }

/*
   * Emphatic
   */
.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: transparent; }
    .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); }

/*
   * Emphatic Reverse
   */
.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: transparent; }
    .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); }

/*
   * Slider
   */
.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.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.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.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.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: transparent; }
  .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); }

/*
   * Spring Reverse
   */
.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); }

/*
   * Stand
   */
.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: transparent;
  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); }

/*
   * Stand Reverse
   */
.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: transparent;
  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); }

/*
   * Spin
   */
.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); }

/*
   * Spin Reverse
   */
.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); }

/*
   * Squeeze
   */
.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); }

/*
   * Vortex
   */
.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); }

/*
   * Vortex Reverse
   */
.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); }
@charset "UTF-8";
.fancybox-enabled {
  overflow: hidden; }

.fancybox-enabled body {
  overflow: visible;
  height: 100%; }

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0); }

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility 0s linear .25s;
  box-sizing: border-box; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s, visibility 0s; }

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-toolbar {
  top: 0;
  right: 0; }

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0); }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: visible; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000; }

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: '\D7';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background .25s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px; }

.fancybox-slide--iframe .fancybox-close-small:after {
  background: transparent;
  font-size: 35px;
  color: #aaa; }

.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff; }

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all; }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none; }

.fancybox-button[disabled] {
  cursor: default;
  pointer-events: none; }

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover:not([disabled]) {
  color: #fff;
  background: rgba(0, 0, 0, 0.8); }

.fancybox-button::before,
.fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block; }

.fancybox-button[disabled]::before,
.fancybox-button[disabled]::after {
  opacity: 0.3; }

.fancybox-button--left::after,
.fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor; }

.fancybox-button--left::after {
  left: 20px;
  transform: rotate(-135deg); }

.fancybox-button--right::after {
  right: 20px;
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close::before, .fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close::before {
  transform: rotate(45deg); }

.fancybox-button--close::after {
  transform: rotate(-45deg); }

/* Navigation arrows */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity .25s; }

.fancybox-arrow::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  background-color: rgba(30, 30, 30, 0.8);
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px 24px; }

.fancybox-arrow--right {
  right: 0; }

.fancybox-arrow--left {
  left: 0;
  transform: scaleX(-1); }

.fancybox-arrow--right::after,
.fancybox-arrow--left::after {
  left: 0; }

.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6; }

.fancybox-show-nav .fancybox-arrow[disabled] {
  opacity: 0.3; }

/* Loading indicator */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1; }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  transform: rotate(-360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--next {
  transform: rotate(360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--current {
  transform: rotate(0deg);
  opacity: 1; }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-infobar {
    left: 0;
    margin-left: 0; }
  .fancybox-button--left,
  .fancybox-button--right {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none; }

/* Slideshow button */
.fancybox-button--play::before,
.fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent; }

.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px; }

.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px; }

/* Thumbs */
.fancybox-thumbs {
  display: none; }

.fancybox-button--thumbs {
  display: none; }

@media all and (min-width: 800px) {
  .fancybox-button--thumbs {
    display: inline-block; }
  .fancybox-button--thumbs span {
    font-size: 23px; }
  .fancybox-button--thumbs::before {
    width: 3px;
    height: 3px;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; }
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995; }
  .fancybox-show-thumbs .fancybox-thumbs {
    display: block; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 220px; }
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0; }
  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid transparent;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box; }
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1); }
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .fancybox-thumbs > ul > li:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1; } }
@font-face {
	font-family: 'Pe-icon-7-stroke';
	src:url(/fonts/Pe-icon-7-stroke.eot?71394c0c7ad6c1e7d5c77e8ac292fba5);
	src:url(/fonts/Pe-icon-7-stroke.eot?71394c0c7ad6c1e7d5c77e8ac292fba5?#iefixd7yf1v) format('embedded-opentype'),
		url(/fonts/Pe-icon-7-stroke.woff?b38ef310874bdd008ac14ef3db939032) format('woff'),
		url(/fonts/Pe-icon-7-stroke.ttf?01798bc13e33afc36a52f2826638d386) format('truetype'),
		url(/fonts/Pe-icon-7-stroke.svg?c45f7de008ab976a8e817e3c0e5095ca#Pe-icon-7-stroke) format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="pe-7s-"], [class*=" pe-7s-"] {
	display: inline-block;
	font-family: 'Pe-icon-7-stroke';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pe-7s-album:before {
	content: "\E6AA";
}
.pe-7s-arc:before {
	content: "\E6AB";
}
.pe-7s-back-2:before {
	content: "\E6AC";
}
.pe-7s-bandaid:before {
	content: "\E6AD";
}
.pe-7s-car:before {
	content: "\E6AE";
}
.pe-7s-diamond:before {
	content: "\E6AF";
}
.pe-7s-door-lock:before {
	content: "\E6B0";
}
.pe-7s-eyedropper:before {
	content: "\E6B1";
}
.pe-7s-female:before {
	content: "\E6B2";
}
.pe-7s-gym:before {
	content: "\E6B3";
}
.pe-7s-hammer:before {
	content: "\E6B4";
}
.pe-7s-headphones:before {
	content: "\E6B5";
}
.pe-7s-helm:before {
	content: "\E6B6";
}
.pe-7s-hourglass:before {
	content: "\E6B7";
}
.pe-7s-leaf:before {
	content: "\E6B8";
}
.pe-7s-magic-wand:before {
	content: "\E6B9";
}
.pe-7s-male:before {
	content: "\E6BA";
}
.pe-7s-map-2:before {
	content: "\E6BB";
}
.pe-7s-next-2:before {
	content: "\E6BC";
}
.pe-7s-paint-bucket:before {
	content: "\E6BD";
}
.pe-7s-pendrive:before {
	content: "\E6BE";
}
.pe-7s-photo:before {
	content: "\E6BF";
}
.pe-7s-piggy:before {
	content: "\E6C0";
}
.pe-7s-plugin:before {
	content: "\E6C1";
}
.pe-7s-refresh-2:before {
	content: "\E6C2";
}
.pe-7s-rocket:before {
	content: "\E6C3";
}
.pe-7s-settings:before {
	content: "\E6C4";
}
.pe-7s-shield:before {
	content: "\E6C5";
}
.pe-7s-smile:before {
	content: "\E6C6";
}
.pe-7s-usb:before {
	content: "\E6C7";
}
.pe-7s-vector:before {
	content: "\E6C8";
}
.pe-7s-wine:before {
	content: "\E6C9";
}
.pe-7s-cloud-upload:before {
	content: "\E68A";
}
.pe-7s-cash:before {
	content: "\E68C";
}
.pe-7s-close:before {
	content: "\E680";
}
.pe-7s-bluetooth:before {
	content: "\E68D";
}
.pe-7s-cloud-download:before {
	content: "\E68B";
}
.pe-7s-way:before {
	content: "\E68E";
}
.pe-7s-close-circle:before {
	content: "\E681";
}
.pe-7s-id:before {
	content: "\E68F";
}
.pe-7s-angle-up:before {
	content: "\E682";
}
.pe-7s-wristwatch:before {
	content: "\E690";
}
.pe-7s-angle-up-circle:before {
	content: "\E683";
}
.pe-7s-world:before {
	content: "\E691";
}
.pe-7s-angle-right:before {
	content: "\E684";
}
.pe-7s-volume:before {
	content: "\E692";
}
.pe-7s-angle-right-circle:before {
	content: "\E685";
}
.pe-7s-users:before {
	content: "\E693";
}
.pe-7s-angle-left:before {
	content: "\E686";
}
.pe-7s-user-female:before {
	content: "\E694";
}
.pe-7s-angle-left-circle:before {
	content: "\E687";
}
.pe-7s-up-arrow:before {
	content: "\E695";
}
.pe-7s-angle-down:before {
	content: "\E688";
}
.pe-7s-switch:before {
	content: "\E696";
}
.pe-7s-angle-down-circle:before {
	content: "\E689";
}
.pe-7s-scissors:before {
	content: "\E697";
}
.pe-7s-wallet:before {
	content: "\E600";
}
.pe-7s-safe:before {
	content: "\E698";
}
.pe-7s-volume2:before {
	content: "\E601";
}
.pe-7s-volume1:before {
	content: "\E602";
}
.pe-7s-voicemail:before {
	content: "\E603";
}
.pe-7s-video:before {
	content: "\E604";
}
.pe-7s-user:before {
	content: "\E605";
}
.pe-7s-upload:before {
	content: "\E606";
}
.pe-7s-unlock:before {
	content: "\E607";
}
.pe-7s-umbrella:before {
	content: "\E608";
}
.pe-7s-trash:before {
	content: "\E609";
}
.pe-7s-tools:before {
	content: "\E60A";
}
.pe-7s-timer:before {
	content: "\E60B";
}
.pe-7s-ticket:before {
	content: "\E60C";
}
.pe-7s-target:before {
	content: "\E60D";
}
.pe-7s-sun:before {
	content: "\E60E";
}
.pe-7s-study:before {
	content: "\E60F";
}
.pe-7s-stopwatch:before {
	content: "\E610";
}
.pe-7s-star:before {
	content: "\E611";
}
.pe-7s-speaker:before {
	content: "\E612";
}
.pe-7s-signal:before {
	content: "\E613";
}
.pe-7s-shuffle:before {
	content: "\E614";
}
.pe-7s-shopbag:before {
	content: "\E615";
}
.pe-7s-share:before {
	content: "\E616";
}
.pe-7s-server:before {
	content: "\E617";
}
.pe-7s-search:before {
	content: "\E618";
}
.pe-7s-film:before {
	content: "\E6A5";
}
.pe-7s-science:before {
	content: "\E619";
}
.pe-7s-disk:before {
	content: "\E6A6";
}
.pe-7s-ribbon:before {
	content: "\E61A";
}
.pe-7s-repeat:before {
	content: "\E61B";
}
.pe-7s-refresh:before {
	content: "\E61C";
}
.pe-7s-add-user:before {
	content: "\E6A9";
}
.pe-7s-refresh-cloud:before {
	content: "\E61D";
}
.pe-7s-paperclip:before {
	content: "\E69C";
}
.pe-7s-radio:before {
	content: "\E61E";
}
.pe-7s-note2:before {
	content: "\E69D";
}
.pe-7s-print:before {
	content: "\E61F";
}
.pe-7s-network:before {
	content: "\E69E";
}
.pe-7s-prev:before {
	content: "\E620";
}
.pe-7s-mute:before {
	content: "\E69F";
}
.pe-7s-power:before {
	content: "\E621";
}
.pe-7s-medal:before {
	content: "\E6A0";
}
.pe-7s-portfolio:before {
	content: "\E622";
}
.pe-7s-like2:before {
	content: "\E6A1";
}
.pe-7s-plus:before {
	content: "\E623";
}
.pe-7s-left-arrow:before {
	content: "\E6A2";
}
.pe-7s-play:before {
	content: "\E624";
}
.pe-7s-key:before {
	content: "\E6A3";
}
.pe-7s-plane:before {
	content: "\E625";
}
.pe-7s-joy:before {
	content: "\E6A4";
}
.pe-7s-photo-gallery:before {
	content: "\E626";
}
.pe-7s-pin:before {
	content: "\E69B";
}
.pe-7s-phone:before {
	content: "\E627";
}
.pe-7s-plug:before {
	content: "\E69A";
}
.pe-7s-pen:before {
	content: "\E628";
}
.pe-7s-right-arrow:before {
	content: "\E699";
}
.pe-7s-paper-plane:before {
	content: "\E629";
}
.pe-7s-delete-user:before {
	content: "\E6A7";
}
.pe-7s-paint:before {
	content: "\E62A";
}
.pe-7s-bottom-arrow:before {
	content: "\E6A8";
}
.pe-7s-notebook:before {
	content: "\E62B";
}
.pe-7s-note:before {
	content: "\E62C";
}
.pe-7s-next:before {
	content: "\E62D";
}
.pe-7s-news-paper:before {
	content: "\E62E";
}
.pe-7s-musiclist:before {
	content: "\E62F";
}
.pe-7s-music:before {
	content: "\E630";
}
.pe-7s-mouse:before {
	content: "\E631";
}
.pe-7s-more:before {
	content: "\E632";
}
.pe-7s-moon:before {
	content: "\E633";
}
.pe-7s-monitor:before {
	content: "\E634";
}
.pe-7s-micro:before {
	content: "\E635";
}
.pe-7s-menu:before {
	content: "\E636";
}
.pe-7s-map:before {
	content: "\E637";
}
.pe-7s-map-marker:before {
	content: "\E638";
}
.pe-7s-mail:before {
	content: "\E639";
}
.pe-7s-mail-open:before {
	content: "\E63A";
}
.pe-7s-mail-open-file:before {
	content: "\E63B";
}
.pe-7s-magnet:before {
	content: "\E63C";
}
.pe-7s-loop:before {
	content: "\E63D";
}
.pe-7s-look:before {
	content: "\E63E";
}
.pe-7s-lock:before {
	content: "\E63F";
}
.pe-7s-lintern:before {
	content: "\E640";
}
.pe-7s-link:before {
	content: "\E641";
}
.pe-7s-like:before {
	content: "\E642";
}
.pe-7s-light:before {
	content: "\E643";
}
.pe-7s-less:before {
	content: "\E644";
}
.pe-7s-keypad:before {
	content: "\E645";
}
.pe-7s-junk:before {
	content: "\E646";
}
.pe-7s-info:before {
	content: "\E647";
}
.pe-7s-home:before {
	content: "\E648";
}
.pe-7s-help2:before {
	content: "\E649";
}
.pe-7s-help1:before {
	content: "\E64A";
}
.pe-7s-graph3:before {
	content: "\E64B";
}
.pe-7s-graph2:before {
	content: "\E64C";
}
.pe-7s-graph1:before {
	content: "\E64D";
}
.pe-7s-graph:before {
	content: "\E64E";
}
.pe-7s-global:before {
	content: "\E64F";
}
.pe-7s-gleam:before {
	content: "\E650";
}
.pe-7s-glasses:before {
	content: "\E651";
}
.pe-7s-gift:before {
	content: "\E652";
}
.pe-7s-folder:before {
	content: "\E653";
}
.pe-7s-flag:before {
	content: "\E654";
}
.pe-7s-filter:before {
	content: "\E655";
}
.pe-7s-file:before {
	content: "\E656";
}
.pe-7s-expand1:before {
	content: "\E657";
}
.pe-7s-exapnd2:before {
	content: "\E658";
}
.pe-7s-edit:before {
	content: "\E659";
}
.pe-7s-drop:before {
	content: "\E65A";
}
.pe-7s-drawer:before {
	content: "\E65B";
}
.pe-7s-download:before {
	content: "\E65C";
}
.pe-7s-display2:before {
	content: "\E65D";
}
.pe-7s-display1:before {
	content: "\E65E";
}
.pe-7s-diskette:before {
	content: "\E65F";
}
.pe-7s-date:before {
	content: "\E660";
}
.pe-7s-cup:before {
	content: "\E661";
}
.pe-7s-culture:before {
	content: "\E662";
}
.pe-7s-crop:before {
	content: "\E663";
}
.pe-7s-credit:before {
	content: "\E664";
}
.pe-7s-copy-file:before {
	content: "\E665";
}
.pe-7s-config:before {
	content: "\E666";
}
.pe-7s-compass:before {
	content: "\E667";
}
.pe-7s-comment:before {
	content: "\E668";
}
.pe-7s-coffee:before {
	content: "\E669";
}
.pe-7s-cloud:before {
	content: "\E66A";
}
.pe-7s-clock:before {
	content: "\E66B";
}
.pe-7s-check:before {
	content: "\E66C";
}
.pe-7s-chat:before {
	content: "\E66D";
}
.pe-7s-cart:before {
	content: "\E66E";
}
.pe-7s-camera:before {
	content: "\E66F";
}
.pe-7s-call:before {
	content: "\E670";
}
.pe-7s-calculator:before {
	content: "\E671";
}
.pe-7s-browser:before {
	content: "\E672";
}
.pe-7s-box2:before {
	content: "\E673";
}
.pe-7s-box1:before {
	content: "\E674";
}
.pe-7s-bookmarks:before {
	content: "\E675";
}
.pe-7s-bicycle:before {
	content: "\E676";
}
.pe-7s-bell:before {
	content: "\E677";
}
.pe-7s-battery:before {
	content: "\E678";
}
.pe-7s-ball:before {
	content: "\E679";
}
.pe-7s-back:before {
	content: "\E67A";
}
.pe-7s-attention:before {
	content: "\E67B";
}
.pe-7s-anchor:before {
	content: "\E67C";
}
.pe-7s-albums:before {
	content: "\E67D";
}
.pe-7s-alarm:before {
	content: "\E67E";
}
.pe-7s-airplay:before {
	content: "\E67F";
}
/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Default Style Settings -

Screen Stylesheet

version:   	5.4.5
date:      	15/05/17
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/
#debungcontrolls,.debugtimeline{width:100%;box-sizing:border-box}.rev_column,.rev_column .tp-parallax-wrap,.tp-svg-layer svg{vertical-align:top}#debungcontrolls{z-index:100000;position:fixed;bottom:0;height:auto;background:rgba(0,0,0,.6);padding:10px}.debugtimeline{height:10px;position:relative;margin-bottom:3px;display:none;white-space:nowrap}.debugtimeline:hover{height:15px}.the_timeline_tester{background:#e74c3c;position:absolute;top:0;left:0;height:100%;width:0}.rs-go-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:9999999!important;background:#fff!important}.debugtimeline.tl_slide .the_timeline_tester{background:#f39c12}.debugtimeline.tl_frame .the_timeline_tester{background:#3498db}.debugtimline_txt{color:#fff;font-weight:400;font-size:7px;position:absolute;left:10px;top:0;white-space:nowrap;line-height:10px}.rtl{direction:rtl}@font-face{font-family:revicons;src:url(/fonts/revicons.eot?2feb69ccb596730c72920c6ba3e37ef8);src:url(/fonts/revicons.eot?2feb69ccb596730c72920c6ba3e37ef8#iefix) format('embedded-opentype'),url(/fonts/revicons.woff?04eb8fc57f27498e5ae37523e3bfb2c7) format('woff'),url(/fonts/revicons.ttf?17629a5dfe0d3c3946cf401e1895f091) format('truetype'),url(/fonts/revicons.svg?1142a254da20b59e7d10ac39e78c4fbf#revicons) format('svg');font-weight:400;font-style:normal}[class*=" revicon-"]:before,[class^=revicon-]:before{font-family:revicons;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em}.revicon-search-1:before{content:'\E802'}.revicon-pencil-1:before{content:'\E831'}.revicon-picture-1:before{content:'\E803'}.revicon-cancel:before{content:'\E80A'}.revicon-info-circled:before{content:'\E80F'}.revicon-trash:before{content:'\E801'}.revicon-left-dir:before{content:'\E817'}.revicon-right-dir:before{content:'\E818'}.revicon-down-open:before{content:'\E83B'}.revicon-left-open:before{content:'\E819'}.revicon-right-open:before{content:'\E81A'}.revicon-angle-left:before{content:'\E820'}.revicon-angle-right:before{content:'\E81D'}.revicon-left-big:before{content:'\E81F'}.revicon-right-big:before{content:'\E81E'}.revicon-magic:before{content:'\E807'}.revicon-picture:before{content:'\E800'}.revicon-export:before{content:'\E80B'}.revicon-cog:before{content:'\E832'}.revicon-login:before{content:'\E833'}.revicon-logout:before{content:'\E834'}.revicon-video:before{content:'\E805'}.revicon-arrow-combo:before{content:'\E827'}.revicon-left-open-1:before{content:'\E82A'}.revicon-right-open-1:before{content:'\E82B'}.revicon-left-open-mini:before{content:'\E822'}.revicon-right-open-mini:before{content:'\E823'}.revicon-left-open-big:before{content:'\E824'}.revicon-right-open-big:before{content:'\E825'}.revicon-left:before{content:'\E836'}.revicon-right:before{content:'\E826'}.revicon-ccw:before{content:'\E808'}.revicon-arrows-ccw:before{content:'\E806'}.revicon-palette:before{content:'\E829'}.revicon-list-add:before{content:'\E80C'}.revicon-doc:before{content:'\E809'}.revicon-left-open-outline:before{content:'\E82E'}.revicon-left-open-2:before{content:'\E82C'}.revicon-right-open-outline:before{content:'\E82F'}.revicon-right-open-2:before{content:'\E82D'}.revicon-equalizer:before{content:'\E83A'}.revicon-layers-alt:before{content:'\E804'}.revicon-popup:before{content:'\E828'}.rev_slider_wrapper{position:relative;z-index:0;width:100%}.rev_slider{position:relative;overflow:visible}.entry-content .rev_slider a,.rev_slider a{box-shadow:none}.tp-overflow-hidden{overflow:hidden!important}.group_ov_hidden{overflow:hidden}.rev_slider img,.tp-simpleresponsive img{max-width:none!important;transition:none;margin:0;padding:0;border:none}.rev_slider .no-slides-text{font-weight:700;text-align:center;padding-top:80px}.rev_slider>ul,.rev_slider>ul>li,.rev_slider>ul>li:before,.rev_slider_wrapper>ul,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{list-style:none!important;position:absolute;margin:0!important;padding:0!important;overflow-x:visible;overflow-y:visible;background-image:none;background-position:0 0;text-indent:0;top:0;left:0}.rev_slider>ul>li,.rev_slider>ul>li:before,.tp-revslider-mainul>li,.tp-revslider-mainul>li:before,.tp-simpleresponsive>ul>li,.tp-simpleresponsive>ul>li:before{visibility:hidden}.tp-revslider-mainul,.tp-revslider-slidesli{padding:0!important;margin:0!important;list-style:none!important}.fullscreen-container,.fullwidthbanner-container{padding:0;position:relative}.rev_slider li.tp-revslider-slidesli{position:absolute!important}.tp-caption .rs-untoggled-content{display:block}.tp-caption .rs-toggled-content{display:none}.rs-toggle-content-active.tp-caption .rs-toggled-content{display:block}.rs-toggle-content-active.tp-caption .rs-untoggled-content{display:none}.rev_slider .caption,.rev_slider .tp-caption{position:relative;visibility:hidden;white-space:nowrap;display:block;-webkit-font-smoothing:antialiased!important;z-index:1}.rev_slider .caption,.rev_slider .tp-caption,.tp-simpleresponsive img{-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none}.rev_slider .tp-mask-wrap .tp-caption,.rev_slider .tp-mask-wrap :last-child,.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,.wpb_text_column .rev_slider .tp-mask-wrap :last-child{margin-bottom:0}.tp-svg-layer svg{width:100%;height:100%;position:relative}.tp-carousel-wrapper{cursor:url(/openhand.cur?b06c243f534d9c5461d16528156cd5a8),move}.tp-carousel-wrapper.dragged{cursor:url(/closedhand.cur?a8c874b93b3d848f39a71260c57e3863),move}.tp_inner_padding{box-sizing:border-box;max-height:none!important}.tp-caption.tp-layer-selectable{-moz-user-select:all;-khtml-user-select:all;-webkit-user-select:all;-o-user-select:all}.tp-caption.tp-hidden-caption,.tp-forcenotvisible,.tp-hide-revslider,.tp-parallax-wrap.tp-hidden-caption{visibility:hidden!important;display:none!important}.rev_slider audio,.rev_slider embed,.rev_slider iframe,.rev_slider object,.rev_slider video{max-width:none!important}.tp-element-background{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.tp-blockmask,.tp-blockmask_in,.tp-blockmask_out{position:absolute;top:0;left:0;width:100%;height:100%;background:#fff;z-index:1000;transform:scaleX(0) scaleY(0)}.tp-parallax-wrap{transform-style:preserve-3d}.rev_row_zone{position:absolute;width:100%;left:0;box-sizing:border-box;min-height:50px;font-size:0}.rev_column_inner,.rev_slider .tp-caption.rev_row{position:relative;width:100%!important;box-sizing:border-box}.rev_row_zone_top{top:0}.rev_row_zone_middle{top:50%;transform:translateY(-50%)}.rev_row_zone_bottom{bottom:0}.rev_slider .tp-caption.rev_row{display:table;table-layout:fixed;vertical-align:top;height:auto!important;font-size:0}.rev_column{display:table-cell;position:relative;height:auto;box-sizing:border-box;font-size:0}.rev_column_inner{display:block;height:auto!important;white-space:normal!important}.rev_column_bg{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;box-sizing:border-box;background-clip:content-box;border:0 solid transparent}.tp-caption .backcorner,.tp-caption .backcornertop,.tp-caption .frontcorner,.tp-caption .frontcornertop{height:0;top:0;width:0;position:absolute}.rev_column_inner .tp-loop-wrap,.rev_column_inner .tp-mask-wrap,.rev_column_inner .tp-parallax-wrap{text-align:inherit}.rev_column_inner .tp-mask-wrap{display:inline-block}.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{position:relative!important;left:auto!important;top:auto!important;line-height:0}.tp-video-play-button,.tp-video-play-button i{line-height:50px!important;vertical-align:top;text-align:center}.rev_column_inner .rev_layer_in_column,.rev_column_inner .tp-parallax-wrap,.rev_column_inner .tp-parallax-wrap .tp-loop-wrap,.rev_column_inner .tp-parallax-wrap .tp-mask-wrap{vertical-align:top}.rev_break_columns{display:block!important}.rev_break_columns .tp-parallax-wrap.rev_column{display:block!important;width:100%!important}.fullwidthbanner-container{overflow:hidden}.fullwidthbanner-container .fullwidthabanner{width:100%;position:relative}.tp-static-layers{position:absolute;z-index:101;top:0;left:0}.tp-caption .frontcorner{border-left:40px solid transparent;border-right:0 solid transparent;border-top:40px solid #00A8FF;left:-40px}.tp-caption .backcorner{border-left:0 solid transparent;border-right:40px solid transparent;border-bottom:40px solid #00A8FF;right:0}.tp-caption .frontcornertop{border-left:40px solid transparent;border-right:0 solid transparent;border-bottom:40px solid #00A8FF;left:-40px}.tp-caption .backcornertop{border-left:0 solid transparent;border-right:40px solid transparent;border-top:40px solid #00A8FF;right:0}.tp-layer-inner-rotation{position:relative!important}img.tp-slider-alternative-image{width:100%;height:auto}.caption.fullscreenvideo,.rs-background-video-layer,.tp-caption.coverscreenvideo,.tp-caption.fullscreenvideo{width:100%;height:100%;top:0;left:0;position:absolute}.noFilterClass{-webkit-filter:none!important;filter:none!important}.rs-background-video-layer{visibility:hidden;z-index:0}.caption.fullscreenvideo audio,.caption.fullscreenvideo iframe,.caption.fullscreenvideo video,.tp-caption.fullscreenvideo iframe,.tp-caption.fullscreenvideo iframe audio,.tp-caption.fullscreenvideo iframe video{width:100%!important;height:100%!important;display:none}.fullcoveredvideo audio,.fullscreenvideo audio .fullcoveredvideo video,.fullscreenvideo video{background:#000}.fullcoveredvideo .tp-poster{background-position:center center;background-size:cover;width:100%;height:100%;top:0;left:0}.videoisplaying .html5vid .tp-poster{display:none}.tp-video-play-button{background:#000;background:rgba(0,0,0,.3);border-radius:5px;position:absolute;top:50%;left:50%;color:#FFF;margin-top:-25px;margin-left:-25px;cursor:pointer;width:50px;height:50px;box-sizing:border-box;display:inline-block;z-index:4;opacity:0;transition:opacity .3s ease-out!important}.tp-audio-html5 .tp-video-play-button,.tp-hiddenaudio{display:none!important}.tp-caption .html5vid{width:100%!important;height:100%!important}.tp-video-play-button i{width:50px;height:50px;display:inline-block;font-size:40px!important}.rs-fullvideo-cover,.tp-dottedoverlay,.tp-shadowcover{height:100%;top:0;left:0;position:absolute}.tp-caption:hover .tp-video-play-button{opacity:1;display:block}.tp-caption .tp-revstop{display:none;border-left:5px solid #fff!important;border-right:5px solid #fff!important;margin-top:15px!important;line-height:20px!important;vertical-align:top;font-size:25px!important}.tp-seek-bar,.tp-video-button,.tp-volume-bar{outline:0;line-height:12px;margin:0;cursor:pointer}.videoisplaying .revicon-right-dir{display:none}.videoisplaying .tp-revstop{display:inline-block}.videoisplaying .tp-video-play-button{display:none}.fullcoveredvideo .tp-video-play-button{display:none!important}.fullscreenvideo .fullscreenvideo audio,.fullscreenvideo .fullscreenvideo video{-o-object-fit:contain!important;object-fit:contain!important}.fullscreenvideo .fullcoveredvideo audio,.fullscreenvideo .fullcoveredvideo video{-o-object-fit:cover!important;object-fit:cover!important}.tp-video-controls{position:absolute;bottom:0;left:0;right:0;padding:5px;opacity:0;transition:opacity .3s;background-image:linear-gradient(to bottom,#000 13%,#323232 100%);display:table;max-width:100%;overflow:hidden;box-sizing:border-box}.rev-btn.rev-hiddenicon i,.rev-btn.rev-withicon i{transition:all .2s ease-out!important;font-size:15px}.tp-caption:hover .tp-video-controls{opacity:.9}.tp-video-button{background:rgba(0,0,0,.5);border:0;border-radius:3px;font-size:12px;color:#fff;padding:0}.tp-video-button:hover{cursor:pointer}.tp-video-button-wrap,.tp-video-seek-bar-wrap,.tp-video-vol-bar-wrap{padding:0 5px;display:table-cell;vertical-align:middle}.tp-video-seek-bar-wrap{width:80%}.tp-video-vol-bar-wrap{width:20%}.tp-seek-bar,.tp-volume-bar{width:100%;padding:0}.rs-fullvideo-cover{width:100%;background:0 0;z-index:5}.disabled_lc .tp-video-play-button,.rs-background-video-layer audio::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls,.rs-background-video-layer video::-webkit-media-controls-start-playback-button{display:none!important}.tp-audio-html5 .tp-video-controls{opacity:1!important;visibility:visible!important}.tp-dottedoverlay{background-repeat:repeat;width:100%;z-index:3}.tp-dottedoverlay.twoxtwo{background:url(/images/gridtile.png?bdc21cc00e9290a24aef7b34a0377dc4)}.tp-dottedoverlay.twoxtwowhite{background:url(/images/gridtile_white.png?195f3338e8d42ac1de5f871e3c36f22d)}.tp-dottedoverlay.threexthree{background:url(/images/gridtile_3x3.png?32962e55384eb5f08af6d123119f98cf)}.tp-dottedoverlay.threexthreewhite{background:url(/images/gridtile_3x3_white.png?678700e6b8d760b9990e3289611d60e3)}.tp-shadowcover{width:100%;background:#fff;z-index:-1}.tp-shadow1{box-shadow:0 10px 6px -6px rgba(0,0,0,.8)}.tp-shadow2:after,.tp-shadow2:before,.tp-shadow3:before,.tp-shadow4:after{z-index:-2;position:absolute;content:"";bottom:10px;left:10px;width:50%;top:85%;max-width:300px;background:0 0;box-shadow:0 15px 10px rgba(0,0,0,.8);transform:rotate(-3deg)}.tp-shadow2:after,.tp-shadow4:after{transform:rotate(3deg);right:10px;left:auto}.tp-shadow5{position:relative;box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset}.tp-shadow5:after,.tp-shadow5:before{content:"";position:absolute;z-index:-2;box-shadow:0 0 25px 0 rgba(0,0,0,.6);top:30%;bottom:0;left:20px;right:20px;border-radius:100px/20px}.tp-button{padding:6px 13px 5px;border-radius:3px;height:30px;cursor:pointer;color:#fff!important;text-shadow:0 1px 1px rgba(0,0,0,.6)!important;font-size:15px;line-height:45px!important;font-family:arial,sans-serif;font-weight:700;letter-spacing:-1px;text-decoration:none}.tp-button.big{color:#fff;text-shadow:0 1px 1px rgba(0,0,0,.6);font-weight:700;padding:9px 20px;font-size:19px;line-height:57px!important}.purchase:hover,.tp-button.big:hover,.tp-button:hover{background-position:bottom,15px 11px}.purchase.green,.purchase:hover.green,.tp-button.green,.tp-button:hover.green{background-color:#21a117;box-shadow:0 3px 0 0 #104d0b}.purchase.blue,.purchase:hover.blue,.tp-button.blue,.tp-button:hover.blue{background-color:#1d78cb;box-shadow:0 3px 0 0 #0f3e68}.purchase.red,.purchase:hover.red,.tp-button.red,.tp-button:hover.red{background-color:#cb1d1d;box-shadow:0 3px 0 0 #7c1212}.purchase.orange,.purchase:hover.orange,.tp-button.orange,.tp-button:hover.orange{background-color:#f70;box-shadow:0 3px 0 0 #a34c00}.purchase.darkgrey,.purchase:hover.darkgrey,.tp-button.darkgrey,.tp-button.grey,.tp-button:hover.darkgrey,.tp-button:hover.grey{background-color:#555;box-shadow:0 3px 0 0 #222}.purchase.lightgrey,.purchase:hover.lightgrey,.tp-button.lightgrey,.tp-button:hover.lightgrey{background-color:#888;box-shadow:0 3px 0 0 #555}.rev-btn,.rev-btn:visited{outline:0!important;box-shadow:none!important;text-decoration:none!important;line-height:44px;font-size:17px;font-weight:500;padding:12px 35px;box-sizing:border-box;font-family:Roboto,sans-serif;cursor:pointer}.rev-btn.rev-uppercase,.rev-btn.rev-uppercase:visited{text-transform:uppercase;letter-spacing:1px;font-size:15px;font-weight:900}.rev-btn.rev-withicon i{font-weight:400;position:relative;top:0;margin-left:10px!important}.rev-btn.rev-hiddenicon i{font-weight:400;position:relative;top:0;opacity:0;margin-left:0!important;width:0!important}.rev-btn.rev-hiddenicon:hover i{opacity:1!important;margin-left:10px!important;width:auto!important}.rev-btn.rev-medium,.rev-btn.rev-medium:visited{line-height:36px;font-size:14px;padding:10px 30px}.rev-btn.rev-medium.rev-hiddenicon i,.rev-btn.rev-medium.rev-withicon i{font-size:14px;top:0}.rev-btn.rev-small,.rev-btn.rev-small:visited{line-height:28px;font-size:12px;padding:7px 20px}.rev-btn.rev-small.rev-hiddenicon i,.rev-btn.rev-small.rev-withicon i{font-size:12px;top:0}.rev-maxround{border-radius:30px}.rev-minround{border-radius:3px}.rev-burger{position:relative;width:60px;height:60px;box-sizing:border-box;padding:22px 0 0 14px;border-radius:50%;border:1px solid rgba(51,51,51,.25);-webkit-tap-highlight-color:transparent;cursor:pointer}.rev-burger span{display:block;width:30px;height:3px;background:#333;transition:.7s;pointer-events:none;transform-style:flat!important}.rev-burger.revb-white span,.rev-burger.revb-whitenoborder span{background:#fff}.rev-burger span:nth-child(2){margin:3px 0}#dialog_addbutton .rev-burger:hover :first-child,.open .rev-burger :first-child,.open.rev-burger :first-child{transform:translateY(6px) rotate(-45deg)}#dialog_addbutton .rev-burger:hover :nth-child(2),.open .rev-burger :nth-child(2),.open.rev-burger :nth-child(2){transform:rotate(-45deg);opacity:0}#dialog_addbutton .rev-burger:hover :last-child,.open .rev-burger :last-child,.open.rev-burger :last-child{transform:translateY(-6px) rotate(-135deg)}.rev-burger.revb-white{border:2px solid rgba(255,255,255,.2)}.rev-burger.revb-darknoborder,.rev-burger.revb-whitenoborder{border:0}.rev-burger.revb-darknoborder span{background:#333}.rev-burger.revb-whitefull{background:#fff;border:none}.rev-burger.revb-whitefull span{background:#333}.rev-burger.revb-darkfull{background:#333;border:none}.rev-burger.revb-darkfull span,.rev-scroll-btn.revs-fullwhite{background:#fff}@-webkit-keyframes rev-ani-mouse{0%{opacity:1;top:29%}15%{opacity:1;top:50%}50%{opacity:0;top:50%}100%{opacity:0;top:29%}}@keyframes rev-ani-mouse{0%{opacity:1;top:29%}15%{opacity:1;top:50%}50%{opacity:0;top:50%}100%{opacity:0;top:29%}}.rev-scroll-btn{display:inline-block;position:relative;left:0;right:0;text-align:center;cursor:pointer;width:35px;height:55px;box-sizing:border-box;border:3px solid #fff;border-radius:23px}.rev-scroll-btn>*{display:inline-block;line-height:18px;font-size:13px;font-weight:400;color:#fff;font-family:proxima-nova,"Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:2px}.rev-scroll-btn>.active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{color:#fff}.rev-scroll-btn>.active,.rev-scroll-btn>:active,.rev-scroll-btn>:focus,.rev-scroll-btn>:hover{opacity:.8}.rev-scroll-btn.revs-fullwhite span{background:#333}.rev-scroll-btn.revs-fulldark{background:#333;border:none}.rev-scroll-btn.revs-fulldark span,.tp-bullet{background:#fff}.rev-scroll-btn span{position:absolute;display:block;top:29%;left:50%;width:8px;height:8px;margin:-4px 0 0 -4px;background:#fff;border-radius:50%;-webkit-animation:rev-ani-mouse 2.5s linear infinite;animation:rev-ani-mouse 2.5s linear infinite}.rev-scroll-btn.revs-dark{border-color:#333}.rev-scroll-btn.revs-dark span{background:#333}.rev-control-btn{position:relative;display:inline-block;z-index:5;color:#FFF;font-size:20px;line-height:60px;font-weight:400;font-style:normal;font-family:Raleway;text-decoration:none;text-align:center;background-color:#000;border-radius:50px;text-shadow:none;background-color:rgba(0,0,0,.5);width:60px;height:60px;box-sizing:border-box;cursor:pointer}.rev-cbutton-dark-sr,.rev-cbutton-light-sr{border-radius:3px}.rev-cbutton-light,.rev-cbutton-light-sr{color:#333;background-color:rgba(255,255,255,.75)}.rev-sbutton{line-height:37px;width:37px;height:37px}.rev-sbutton-blue{background-color:#3B5998}.rev-sbutton-lightblue{background-color:#00A0D1}.rev-sbutton-red{background-color:#DD4B39}.tp-bannertimer{visibility:hidden;width:100%;height:5px;background:#000;background:rgba(0,0,0,.15);position:absolute;z-index:200;top:0}.tp-bannertimer.tp-bottom{top:auto;bottom:0!important;height:5px}.tp-caption img{background:0 0;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF, endColorstr=#00FFFFFF);zoom:1}.caption.slidelink a div,.tp-caption.slidelink a div{width:3000px;height:1500px;background:url(/images/coloredbg.png?397e5bd80bc0fe4e18c1837deead5e72)}.tp-caption.slidelink a span{background:url(/images/coloredbg.png?397e5bd80bc0fe4e18c1837deead5e72)}.tp-loader.spinner0,.tp-loader.spinner5{background-image:url(/images/loader.gif?4b3afb84b2b71ef56df09997a350bd04);background-repeat:no-repeat}.tp-shape{width:100%;height:100%}.tp-caption .rs-starring{display:inline-block}.tp-caption .rs-starring .star-rating{float:none;display:inline-block;vertical-align:top;color:#FFC321!important}.tp-caption .rs-starring .star-rating,.tp-caption .rs-starring-page .star-rating{position:relative;height:1em;width:5.4em;font-family:star;font-size:1em!important}.tp-loader.spinner0,.tp-loader.spinner1{width:40px;height:40px;margin-top:-20px;margin-left:-20px;-webkit-animation:tp-rotateplane 1.2s infinite ease-in-out;animation:tp-rotateplane 1.2s infinite ease-in-out;background-color:#fff;border-radius:3px;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-caption .rs-starring .star-rating:before,.tp-caption .rs-starring-page .star-rating:before{content:"sssss";color:#E0DADF;float:left;top:0;left:0;position:absolute}.tp-caption .rs-starring .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em;font-size:1em!important}.tp-caption .rs-starring .star-rating span:before{content:"SSSSS";top:0;position:absolute;left:0}.tp-loader{top:50%;left:50%;z-index:10000;position:absolute}.tp-loader.spinner0{background-position:center center}.tp-loader.spinner5{background-position:10px 10px;background-color:#fff;margin:-22px;width:44px;height:44px;border-radius:3px}@-webkit-keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.tp-loader.spinner2{width:40px;height:40px;margin-top:-20px;margin-left:-20px;background-color:red;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;-webkit-animation:tp-scaleout 1s infinite ease-in-out;animation:tp-scaleout 1s infinite ease-in-out}@-webkit-keyframes tp-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}@keyframes tp-scaleout{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.tp-loader.spinner3{margin:-9px 0 0 -35px;width:70px;text-align:center}.tp-loader.spinner3 .bounce1,.tp-loader.spinner3 .bounce2,.tp-loader.spinner3 .bounce3{width:18px;height:18px;background-color:#fff;box-shadow:0 0 20px 0 rgba(0,0,0,.15);border-radius:100%;display:inline-block;-webkit-animation:tp-bouncedelay 1.4s infinite ease-in-out;animation:tp-bouncedelay 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.tp-loader.spinner3 .bounce1{-webkit-animation-delay:-.32s;animation-delay:-.32s}.tp-loader.spinner3 .bounce2{-webkit-animation-delay:-.16s;animation-delay:-.16s}@-webkit-keyframes tp-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}@keyframes tp-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tp-loader.spinner4{margin:-20px 0 0 -20px;width:40px;height:40px;text-align:center;-webkit-animation:tp-rotate 2s infinite linear;animation:tp-rotate 2s infinite linear}.tp-loader.spinner4 .dot1,.tp-loader.spinner4 .dot2{width:60%;height:60%;display:inline-block;position:absolute;top:0;background-color:#fff;border-radius:100%;-webkit-animation:tp-bounce 2s infinite ease-in-out;animation:tp-bounce 2s infinite ease-in-out;box-shadow:0 0 20px 0 rgba(0,0,0,.15)}.tp-loader.spinner4 .dot2{top:auto;bottom:0;-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes tp-rotate{100%{transform:rotate(360deg)}}@keyframes tp-rotate{100%{transform:rotate(360deg)}}@-webkit-keyframes tp-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}@keyframes tp-bounce{0%,100%{transform:scale(0)}50%{transform:scale(1)}}.tp-bullets.navbar,.tp-tabs.navbar,.tp-thumbs.navbar{border:none;min-height:0;margin:0;border-radius:0}.tp-bullets,.tp-tabs,.tp-thumbs{position:absolute;display:block;z-index:1000;top:0;left:0}.tp-tab,.tp-thumb{cursor:pointer;position:absolute;opacity:.5;box-sizing:border-box}.tp-arr-imgholder,.tp-tab-image,.tp-thumb-image,.tp-videoposter{background-position:center center;background-size:cover;width:100%;height:100%;display:block;position:absolute;top:0;left:0}.tp-tab.selected,.tp-tab:hover,.tp-thumb.selected,.tp-thumb:hover{opacity:1}.tp-tab-mask,.tp-thumb-mask{box-sizing:border-box!important}.tp-tabs,.tp-thumbs{box-sizing:content-box!important}.tp-bullet{width:15px;height:15px;position:absolute;background:rgba(255,255,255,.3);cursor:pointer}.tp-bullet.selected,.tp-bullet:hover{background:#fff}.tparrows{cursor:pointer;background:#000;background:rgba(0,0,0,.5);width:40px;height:40px;position:absolute;display:block;z-index:1000}.tparrows:hover{background:#000}.tparrows:before{font-family:revicons;font-size:15px;color:#fff;display:block;line-height:40px;text-align:center}.hginfo,.hglayerinfo{font-size:12px;font-weight:600}.tparrows.tp-leftarrow:before{content:'\E824'}.tparrows.tp-rightarrow:before{content:'\E825'}body.rtl .tp-kbimg{left:0!important}.dddwrappershadow{box-shadow:0 45px 100px rgba(0,0,0,.4)}.hglayerinfo{position:fixed;bottom:0;left:0;color:#FFF;line-height:20px;background:rgba(0,0,0,.75);padding:5px 10px;z-index:2000;white-space:normal}.helpgrid,.hginfo{position:absolute}.hginfo{top:-2px;left:-2px;color:#e74c3c;background:#000;padding:2px 5px}.indebugmode .tp-caption:hover{border:1px dashed #c0392b!important}.helpgrid{border:2px dashed #c0392b;top:0;left:0;z-index:0}#revsliderlogloglog{padding:15px;color:#fff;position:fixed;top:0;left:0;width:200px;height:150px;background:rgba(0,0,0,.7);z-index:100000;font-size:10px;overflow:scroll}.aden{-webkit-filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.perpetua::after,.reyes::after{mix-blend-mode:soft-light;opacity:.5}.inkwell{-webkit-filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.perpetua::after{background:linear-gradient(to bottom,#005b9a,#e6c13d)}.reyes{-webkit-filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75);filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes::after{background:#efcdad}.gingham{-webkit-filter:brightness(1.05) hue-rotate(-10deg);filter:brightness(1.05) hue-rotate(-10deg)}.gingham::after{background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.toaster{-webkit-filter:contrast(1.5) brightness(.9);filter:contrast(1.5) brightness(.9)}.toaster::after{background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{-webkit-filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{-webkit-filter:brightness(1.2) contrast(.9) saturate(1.1);filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson::after{background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{-webkit-filter:contrast(.9) sepia(.2);filter:contrast(.9) sepia(.2)}.earlybird::after{background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{-webkit-filter:contrast(1.1) saturate(1.1);filter:contrast(1.1) saturate(1.1)}.mayfair::after{background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{-webkit-filter:saturate(1.1) contrast(1.5);filter:saturate(1.1) contrast(1.5)}.lofi::after{background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{-webkit-filter:contrast(1.1) brightness(1.1) saturate(1.3);filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after{background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{-webkit-filter:contrast(.9) brightness(1.1);filter:contrast(.9) brightness(1.1)}.brooklyn::after{background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{-webkit-filter:sepia(.3);filter:sepia(.3)}.xpro2::after{background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{-webkit-filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{-webkit-filter:contrast(.9);filter:contrast(.9)}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{-webkit-filter:grayscale(1) contrast(1.1) brightness(1.1);filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{-webkit-filter:contrast(1.2) saturate(1.35);filter:contrast(1.2) saturate(1.35)}.clarendon:before{background:rgba(127,187,227,.2);mix-blend-mode:overlay}.willow{-webkit-filter:grayscale(.5) contrast(.95) brightness(.9);filter:grayscale(.5) contrast(.95) brightness(.9)}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{-webkit-filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9);filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise::after{background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}._1977:after,._1977:before,.aden:after,.aden:before,.brooklyn:after,.brooklyn:before,.clarendon:after,.clarendon:before,.earlybird:after,.earlybird:before,.gingham:after,.gingham:before,.hudson:after,.hudson:before,.inkwell:after,.inkwell:before,.lark:after,.lark:before,.lofi:after,.lofi:before,.mayfair:after,.mayfair:before,.moon:after,.moon:before,.nashville:after,.nashville:before,.perpetua:after,.perpetua:before,.reyes:after,.reyes:before,.rise:after,.rise:before,.slumber:after,.slumber:before,.toaster:after,.toaster:before,.walden:after,.walden:before,.willow:after,.willow:before,.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977,.aden,.brooklyn,.clarendon,.earlybird,.gingham,.hudson,.inkwell,.lark,.lofi,.mayfair,.moon,.nashville,.perpetua,.reyes,.rise,.slumber,.toaster,.walden,.willow,.xpro2{position:relative}._1977 img,.aden img,.brooklyn img,.clarendon img,.earlybird img,.gingham img,.hudson img,.inkwell img,.lark img,.lofi img,.mayfair img,.moon img,.nashville img,.perpetua img,.reyes img,.rise img,.slumber img,.toaster img,.walden img,.willow img,.xpro2 img{width:100%;z-index:1}._1977:before,.aden:before,.brooklyn:before,.clarendon:before,.earlybird:before,.gingham:before,.hudson:before,.inkwell:before,.lark:before,.lofi:before,.mayfair:before,.moon:before,.nashville:before,.perpetua:before,.reyes:before,.rise:before,.slumber:before,.toaster:before,.walden:before,.willow:before,.xpro2:before{z-index:2}._1977:after,.aden:after,.brooklyn:after,.clarendon:after,.earlybird:after,.gingham:after,.hudson:after,.inkwell:after,.lark:after,.lofi:after,.mayfair:after,.moon:after,.nashville:after,.perpetua:after,.reyes:after,.rise:after,.slumber:after,.toaster:after,.walden:after,.willow:after,.xpro2:after{z-index:3}.slumber{-webkit-filter:saturate(.66) brightness(1.05);filter:saturate(.66) brightness(1.05)}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}.tp-kbimg-wrap:after,.tp-kbimg-wrap:before{height:500%;width:500%}/*-----------------------------------------------------------------------------

-	Revolution Slider 5.0 Layer Style Settings -

Screen Stylesheet

version:   	5.0.0
date:      	18/03/15
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

* {
    box-sizing: border-box;
}

.tp-caption.Twitter-Content a,.tp-caption.Twitter-Content a:visited
{
	color:#0084B4!important;
}

.tp-caption.Twitter-Content a:hover
{
	color:#0084B4!important;
	text-decoration:underline!important;
}

.tp-caption.medium_grey,.medium_grey
{
	background-color:#888;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	padding:2px 4px;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.small_text,.small_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:14px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.medium_text,.medium_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:20px;
	font-weight:700;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.large_text,.large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:40px;
	font-weight:700;
	line-height:40px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_large_text,.very_large_text
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	letter-spacing:-2px;
	line-height:60px;
	margin:0;
	position:absolute;
	text-shadow:0 2px 5px rgba(0,0,0,0.5);
	white-space:nowrap;
}

.tp-caption.very_big_white,.very_big_white
{
	background-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.very_big_black,.very_big_black
{
	background-color:#fff;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:Arial;
	font-size:60px;
	font-weight:700;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat,.modern_medium_fat
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_fat_white,.modern_medium_fat_white
{
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:800;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_medium_light,.modern_medium_light
{
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans", sans-serif;
	font-size:24px;
	font-weight:300;
	line-height:20px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.modern_big_bluebg,.modern_big_bluebg
{
	background-color:#4e5b6c;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:800;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:3px 10px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_big_redbg,.modern_big_redbg
{
	background-color:#de543e;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans", sans-serif;
	font-size:30px;
	font-weight:300;
	letter-spacing:0;
	line-height:36px;
	margin:0;
	padding:1px 10px 3px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.modern_small_text_dark,.modern_small_text_dark
{
	border-style:none;
	border-width:0;
	color:#555;
	font-family:Arial;
	font-size:14px;
	line-height:22px;
	margin:0;
	position:absolute;
	text-shadow:none;
	white-space:nowrap;
}

.tp-caption.boxshadow,.boxshadow
{		
	box-shadow:0 0 20px rgba(0,0,0,0.5);
}

.tp-caption.black,.black
{
	color:#000;
	text-shadow:none;
}

.tp-caption.noshadow,.noshadow
{
	text-shadow:none;
}

.tp-caption.thinheadline_dark,.thinheadline_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.thintext_dark,.thintext_dark
{
	background-color:transparent;
	color:rgba(0,0,0,0.85);
	font-family:"Open Sans";
	font-size:16px;
	font-weight:300;
	line-height:26px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largeblackbg,.largeblackbg
{
	
	
	background-color:#000;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largepinkbg,.largepinkbg
{
	
	
	background-color:#db4360;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largewhitebg,.largewhitebg
{
	
	
	background-color:#fff;
	border-radius:0;
	color:#000;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.largegreenbg,.largegreenbg
{
	
	
	background-color:#67ae73;
	border-radius:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:50px;
	font-weight:300;
	line-height:70px;
	padding:0 20px;
	position:absolute;
	text-shadow:none;
}

.tp-caption.excerpt,.excerpt
{
	background-color:rgba(0,0,0,1);
	border-color:#fff;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Arial;
	font-size:36px;
	font-weight:700;
	height:auto;
	letter-spacing:-1.5px;
	line-height:36px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
	white-space:normal!important;
	width:150px;
}

.tp-caption.large_bold_grey,.large_bold_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:60px;
	font-weight:800;
	line-height:60px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.medium_thin_grey,.medium_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:30px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.small_thin_grey,.small_thin_grey
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#757575;
	font-family:"Open Sans";
	font-size:18px;
	font-weight:300;
	line-height:26px;
	margin:0;
	padding:1px 4px 0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.lightgrey_divider,.lightgrey_divider
{
	background-color:rgba(235,235,235,1);
	background-position:initial;
	background-repeat:initial;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:3px;
	text-decoration:none;
	width:370px;
}

.tp-caption.large_bold_darkblue,.large_bold_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_bg_darkblue,.medium_bg_darkblue
{
	background-color:#34495e;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_red,.medium_bold_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_light_red,.medium_light_red
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#e33a0c;
	font-family:"Open Sans";
	font-size:21px;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-decoration:none;
}

.tp-caption.medium_bg_red,.medium_bg_red
{
	background-color:#e33a0c;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_bold_orange,.medium_bold_orange
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#f39c12;
	font-family:"Open Sans";
	font-size:24px;
	font-weight:800;
	line-height:30px;
	text-decoration:none;
}

.tp-caption.medium_bg_orange,.medium_bg_orange
{
	background-color:#f39c12;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.grassfloor,.grassfloor
{
	background-color:rgba(160,179,151,1);
	border-color:#222;
	border-style:none;
	border-width:0;
	height:150px;
	text-decoration:none;
	width:4000px;
}

.tp-caption.large_bold_white,.large_bold_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.medium_light_white,.medium_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white,.mediumlarge_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_white_center,.mediumlarge_light_white_center
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-align:center;
	text-decoration:none;
}

.tp-caption.medium_bg_asbestos,.medium_bg_asbestos
{
	background-color:#7f8c8d;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:20px;
	font-weight:800;
	line-height:20px;
	padding:10px;
	text-decoration:none;
}

.tp-caption.medium_light_black,.medium_light_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:36px;
	padding:0;
	text-decoration:none;
}

.tp-caption.large_bold_black,.large_bold_black
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:58px;
	font-weight:800;
	line-height:60px;
	text-decoration:none;
}

.tp-caption.mediumlarge_light_darkblue,.mediumlarge_light_darkblue
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#34495e;
	font-family:"Open Sans";
	font-size:34px;
	font-weight:300;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.small_light_white,.small_light_white
{
	background-color:transparent;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:17px;
	font-weight:300;
	line-height:28px;
	padding:0;
	text-decoration:none;
}

.tp-caption.roundedimage,.roundedimage
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.large_bg_black,.large_bg_black
{
	background-color:#000;
	border-color:#ffd658;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Open Sans";
	font-size:40px;
	font-weight:800;
	line-height:40px;
	padding:10px 20px 15px;
	text-decoration:none;
}

.tp-caption.mediumwhitebg,.mediumwhitebg
{
	background-color:#fff;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#000;
	font-family:"Open Sans";
	font-size:30px;
	font-weight:300;
	line-height:30px;
	padding:5px 15px 10px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.maincaption,.maincaption
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#212a40;
	font-family:roboto;
	font-size:33px;
	font-weight:500;
	line-height:43px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px,.miami_title_60px
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_subtitle,.miami_subtitle
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:"Source Sans Pro";
	font-size:17px;
	font-weight:400;
	letter-spacing:2px;
	line-height:24px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px,.divideline30px
{
	background:#fff;
	background-color:#fff;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.Miami_nostyle,.Miami_nostyle
{
	border-color:#222;
	border-style:none;
	border-width:0;
}

.tp-caption.miami_content_light,.miami_content_light
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_title_60px_dark,.miami_title_60px_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#333;
	font-family:"Source Sans Pro";
	font-size:60px;
	font-weight:700;
	letter-spacing:1px;
	line-height:60px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.miami_content_dark,.miami_content_dark
{
	background-color:transparent;
	border-color:#000;
	border-style:none;
	border-width:0;
	color:#666;
	font-family:"Source Sans Pro";
	font-size:22px;
	font-weight:400;
	letter-spacing:0;
	line-height:28px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.divideline30px_dark,.divideline30px_dark
{
	background-color:#333;
	border-color:#222;
	border-style:none;
	border-width:0;
	height:2px;
	min-width:30px;
	text-decoration:none;
}

.tp-caption.ellipse70px,.ellipse70px
{
	background-color:rgba(0,0,0,0.14902);
	border-color:#222;
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	cursor:pointer;
	line-height:1px;
	min-height:70px;
	min-width:70px;
	text-decoration:none;
}

.tp-caption.arrowicon,.arrowicon
{
	border-color:#222;
	border-style:none;
	border-width:0;
	line-height:1px;
}

.tp-caption.MarkerDisplay,.MarkerDisplay
{
	background-color:transparent;
	border-color:#000;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	font-family:"Permanent Marker";
	font-style:normal;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Restaurant-Display,.Restaurant-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:120px;
	font-style:normal;
	font-weight:700;
	line-height:120px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Cursive,.Restaurant-Cursive
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:"Nothing you could do";
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-ScrollDownText,.Restaurant-ScrollDownText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Description,.Restaurant-Description
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Price,.Restaurant-Price
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:#fff;
	font-family:Roboto;
	font-size:30px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Restaurant-Menuitem,.Restaurant-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:17px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Furniture-LogoText,.Furniture-LogoText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:160px;
	font-style:normal;
	font-weight:300;
	line-height:150px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Plus,.Furniture-Plus
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	box-shadow:rgba(0,0,0,0.1) 0 1px 3px;
	color:rgba(230,207,163,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:6px 7px 4px;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Title,.Furniture-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:700;
	letter-spacing:3px;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Furniture-Subtitle,.Furniture-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:20px;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Gym-Display,.Gym-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:900;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-Subline,.Gym-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Gym-SmallText,.Gym-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	line-height:22;
	padding:0;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Fashion-SmallText,.Fashion-SmallText
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-BigDisplay,.Fashion-BigDisplay
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:60px;
	font-style:normal;
	font-weight:900;
	letter-spacing:2px;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Fashion-TextBlock,.Fashion-TextBlock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	letter-spacing:2px;
	line-height:40px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Display,.Sports-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:100;
	letter-spacing:13px;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-DisplayFat,.Sports-DisplayFat
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:130px;
	font-style:normal;
	font-weight:900;
	line-height:130px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Sports-Subline,.Sports-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(0,0,0,1.00);
	font-family:Raleway;
	font-size:32px;
	font-style:normal;
	font-weight:400;
	letter-spacing:4px;
	line-height:32px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Instagram-Caption,.Instagram-Caption
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Title,.News-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:70px;
	font-style:normal;
	font-weight:400;
	line-height:60px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle,.News-Subtitle
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:15px;
	font-style:normal;
	font-weight:300;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.News-Subtitle:hover,.News-Subtitle:hover
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,0.65);
	text-decoration:none;
}

.tp-caption.Photography-Display,.Photography-Display
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:80px;
	font-style:normal;
	font-weight:100;
	letter-spacing:5px;
	line-height:70px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline,.Photography-Subline
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(119,119,119,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover,.Photography-ImageHover
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover:hover,.Photography-ImageHover:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Menuitem,.Photography-Menuitem
{
	background-color:rgba(0,0,0,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-decoration:none;
}

.tp-caption.Photography-Menuitem:hover,.Photography-Menuitem:hover
{
	background-color:rgba(0,255,222,0.65);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Textblock,.Photography-Textblock
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-Subline-2,.Photography-Subline-2
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2,.Photography-ImageHover2
{
	background-color:transparent;
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Arial;
	font-size:20px;
	font-style:normal;
	font-weight:400;
	line-height:22;
	padding:0;
	text-decoration:none;
}

.tp-caption.Photography-ImageHover2:hover,.Photography-ImageHover2:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title,.WebProduct-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(51,51,51,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle,.WebProduct-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Content,.WebProduct-Content
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem,.WebProduct-Menuitem
{
	background-color:rgba(51,51,51,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Menuitem:hover,.WebProduct-Menuitem:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(153,153,153,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Title-Light,.WebProduct-Title-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:90px;
	font-style:normal;
	font-weight:100;
	line-height:90px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-SubTitle-Light,.WebProduct-SubTitle-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.35);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Content-Light,.WebProduct-Content-Light
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,0.65);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.FatRounded,.FatRounded
{
	background-color:rgba(0,0,0,0.50);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:20px 22px 20px 25px;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.FatRounded:hover,.FatRounded:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(211,211,211,1.00);
	border-radius:50px 50px 50px 50px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Title,.NotGeneric-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:70px;
	font-style:normal;
	font-weight:800;
	line-height:70px;
	padding:10px 0;
	text-decoration:none;
}

.tp-caption.NotGeneric-SubTitle,.NotGeneric-SubTitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:13px;
	font-style:normal;
	font-weight:500;
	letter-spacing:4px;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction,.NotGeneric-CallToAction
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-CallToAction:hover,.NotGeneric-CallToAction:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-Icon,.NotGeneric-Icon
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:400;
	letter-spacing:3px;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem,.NotGeneric-Menuitem
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Menuitem:hover,.NotGeneric-Menuitem:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.MarkerStyle,.MarkerStyle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Permanent Marker";
	font-size:17px;
	font-style:normal;
	font-weight:100;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem,.Gym-Menuitem
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:20px;
	font-style:normal;
	font-weight:300;
	letter-spacing:2px;
	line-height:20px;
	padding:3px 5px 3px 8px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Menuitem:hover,.Gym-Menuitem:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(255,255,255,0.25);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button,.Newspaper-Button
{
	background-color:rgba(255,255,255,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:13px;
	font-style:normal;
	font-weight:700;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button:hover,.Newspaper-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Subtitle,.Newspaper-Subtitle
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(168,216,238,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title,.Newspaper-Title
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Title-Centered,.Newspaper-Title-Centered
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:"Roboto Slab";
	font-size:50px;
	font-style:normal;
	font-weight:400;
	line-height:55px;
	padding:0 0 10px;
	text-align:center;
	text-decoration:none;
}

.tp-caption.Hero-Button,.Hero-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Hero-Button:hover,.Hero-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(0,0,0,1.00);
	text-decoration:none;
}

.tp-caption.Video-Title,.Video-Title
{
	background-color:rgba(0,0,0,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:30px;
	font-style:normal;
	font-weight:900;
	line-height:30px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Video-SubTitle,.Video-SubTitle
{
	background-color:rgba(0,0,0,0.35);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:12px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:12px;
	padding:5px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button,.NotGeneric-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-Button:hover,.NotGeneric-Button:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton,.NotGeneric-BigButton
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.15);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:14px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:14px;
	padding:27px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.NotGeneric-BigButton:hover,.NotGeneric-BigButton:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.WebProduct-Button,.WebProduct-Button
{
	background-color:rgba(51,51,51,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:16px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:48px;
	padding:0 40px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.WebProduct-Button:hover,.WebProduct-Button:hover
{
	background-color:rgba(255,255,255,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:2px;
	color:rgba(51,51,51,1.00);
	text-decoration:none;
}

.tp-caption.Restaurant-Button,.Restaurant-Button
{
	background-color:rgba(10,10,10,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:500;
	letter-spacing:3px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Restaurant-Button:hover,.Restaurant-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,224,129,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button,.Gym-Button
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button:hover,.Gym-Button:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Gym-Button-Light,.Gym-Button-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	line-height:15px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Gym-Button-Light:hover,.Gym-Button-Light:hover
{
	background-color:rgba(114,168,0,0);
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Light,.Sports-Button-Light
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Light:hover,.Sports-Button-Light:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Sports-Button-Red,.Sports-Button-Red
{
	background-color:rgba(219,28,34,1.00);
	border-color:rgba(219,28,34,0);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:17px;
	font-style:normal;
	font-weight:600;
	letter-spacing:2px;
	line-height:17px;
	padding:12px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Sports-Button-Red:hover,.Sports-Button-Red:hover
{
	background-color:rgba(0,0,0,1.00);
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Photography-Button,.Photography-Button
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.25);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	font-family:Raleway;
	font-size:15px;
	font-style:normal;
	font-weight:600;
	letter-spacing:1px;
	line-height:15px;
	padding:13px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Photography-Button:hover,.Photography-Button:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:1px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2,.Newspaper-Button-2
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,0.50);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:900;
	line-height:15px;
	padding:10px 30px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Newspaper-Button-2:hover,.Newspaper-Button-2:hover
{
	background-color:rgba(0,0,0,0);
	border-color:rgba(255,255,255,1.00);
	border-radius:3px 3px 3px 3px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Tour,.Feature-Tour
{
	background-color:rgba(139,192,39,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Tour:hover,.Feature-Tour:hover
{
	background-color:rgba(114,168,0,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples,.Feature-Examples
{
	background-color:transparent;
	border-color:rgba(33,42,64,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(33,42,64,0.50);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples:hover,.Feature-Examples:hover
{
	background-color:transparent;
	border-color:rgba(139,192,39,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(139,192,39,1.00);
	text-decoration:none;
}

.tp-caption.subcaption,.subcaption
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(111,124,130,1.00);
	font-family:roboto;
	font-size:19px;
	font-style:normal;
	font-weight:400;
	line-height:24px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab,.menutab
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:25px;
	font-style:normal;
	font-weight:300;
	line-height:30px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.menutab:hover,.menutab:hover
{
	background-color:transparent;
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(213,0,0,1.00);
	text-decoration:none;
}

.tp-caption.maincontent,.maincontent
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,46,49,1.00);
	font-family:roboto;
	font-size:21px;
	font-style:normal;
	font-weight:300;
	line-height:26px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.minitext,.minitext
{
	background-color:transparent;
	border-color:rgba(0,0,0,1.00);
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(185,186,187,1.00);
	font-family:roboto;
	font-size:15px;
	font-style:normal;
	font-weight:400;
	line-height:20px;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-shadow:none;
}

.tp-caption.Feature-Buy,.Feature-Buy
{
	background-color:rgba(0,154,238,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:17px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Buy:hover,.Feature-Buy:hover
{
	background-color:rgba(0,133,214,1.00);
	border-color:rgba(0,0,0,0);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light,.Feature-Examples-Light
{
	background-color:transparent;
	border-color:rgba(255,255,255,0.15);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:17px;
	font-style:normal;
	font-weight:700;
	line-height:17px;
	padding:15px 35px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Feature-Examples-Light:hover,.Feature-Examples-Light:hover
{
	background-color:transparent;
	border-color:rgba(255,255,255,1.00);
	border-radius:30px 30px 30px 30px;
	border-style:solid;
	border-width:2px;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Facebook-Likes,.Facebook-Likes
{
	background-color:rgba(59,89,153,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:5px 15px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Favorites,.Twitter-Favorites
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link,.Twitter-Link
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(135,153,165,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:15px;
	padding:11px 11px 9px;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Link:hover,.Twitter-Link:hover
{
	background-color:rgba(0,132,180,1.00);
	border-color:transparent;
	border-radius:30px 30px 30px 30px;
	border-style:none;
	border-width:0;
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}

.tp-caption.Twitter-Retweet,.Twitter-Retweet
{
	background-color:rgba(255,255,255,0);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(136,153,166,1.00);
	font-family:Roboto;
	font-size:15px;
	font-style:normal;
	font-weight:500;
	line-height:22px;
	padding:0;
	text-align:left;
	text-decoration:none;
}

.tp-caption.Twitter-Content,.Twitter-Content
{
	background-color:rgba(255,255,255,1.00);
	border-color:transparent;
	border-radius:0 0 0 0;
	border-style:none;
	border-width:0;
	color:rgba(41,47,51,1.00);
	font-family:Roboto;
	font-size:20px;
	font-style:normal;
	font-weight:500;
	line-height:28px;
	padding:30px 30px 70px;
	text-align:left;
	text-decoration:none;
}

.revtp-searchform input[type="text"],
.revtp-searchform input[type="email"],
.revtp-form input[type="text"],
.revtp-form input[type="email"]{ 	
	font-family: "Arial", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 0;
    width: 400px;
    margin-bottom: 0px;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}


.tp-caption.BigBold-Title,
.BigBold-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 110px;
    line-height: 100px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 0px 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.BigBold-SubTitle,
.BigBold-SubTitle {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button,
.BigBold-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.BigBold-Button:hover,
.BigBold-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-Content,
.FoodCarousel-Content {
    color: rgba(41, 46, 49, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 30px 30px 30px 30px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.FoodCarousel-Button,
.FoodCarousel-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 70px 15px 50px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-Button:hover,
.FoodCarousel-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.FoodCarousel-CloseButton,
.FoodCarousel-CloseButton {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.FoodCarousel-CloseButton:hover,
.FoodCarousel-CloseButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 0);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Video-SubTitle,
.Video-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Video-Title,
.Video-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-BigCaption,
.Travel-BigCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-SmallCaption,
.Travel-SmallCaption {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Travel-CallToAction,
.Travel-CallToAction {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 20px 12px 20px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.Travel-CallToAction:hover,
.Travel-CallToAction:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 5px 5px 5px 5px
}


.tp-caption.RotatingWords-TitleWhite,
.RotatingWords-TitleWhite {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 800;
    font-style: normal;
    font-family: Raleway;
    padding: 0px 0px 0px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.RotatingWords-Button,
.RotatingWords-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 20px 50px 20px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.RotatingWords-Button:hover,
.RotatingWords-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.RotatingWords-SmallText,
.RotatingWords-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    text-shadow: none
}




.tp-caption.ContentZoom-SmallTitle,
.ContentZoom-SmallTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 33px;
    line-height: 45px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallSubtitle,
.ContentZoom-SmallSubtitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon,
.ContentZoom-SmallIcon {
    color: rgba(41, 46, 49, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Raleway;
    padding: 10px 10px 10px 10px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-SmallIcon:hover,
.ContentZoom-SmallIcon:hover {
    color: rgba(111, 124, 130, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.ContentZoom-DetailTitle,
.ContentZoom-DetailTitle {
    color: rgba(41, 46, 49, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailSubTitle,
.ContentZoom-DetailSubTitle {
    color: rgba(111, 124, 130, 1.00);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-DetailContent,
.ContentZoom-DetailContent {
    color: rgba(111, 124, 130, 1.00);
    font-size: 17px;
    line-height: 28px;
    font-weight: 500;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ContentZoom-Button,
.ContentZoom-Button {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 15px 50px 15px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-Button:hover,
.ContentZoom-Button:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.ContentZoom-ButtonClose,
.ContentZoom-ButtonClose {
    color: rgba(41, 46, 49, 1.00);
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    font-style: normal;
    font-family: Raleway;
    padding: 14px 14px 14px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(41, 46, 49, 0.50);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: left;
    letter-spacing: 1px
}
.tp-caption.ContentZoom-ButtonClose:hover,
.ContentZoom-ButtonClose:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(41, 46, 49, 1.00);
    border-color: rgba(41, 46, 49, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px
}
.tp-caption.Newspaper-Title,
.Newspaper-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 55px;
    font-weight: 400;
    font-style: normal;
    font-family: "Roboto Slab";
    padding: 0 0 10px 0;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Subtitle,
.Newspaper-Subtitle {
    color: rgba(168, 216, 238, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Newspaper-Button,
.Newspaper-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 17px;
    font-weight: 700;
    font-style: normal;
    font-family: Roboto;
    padding: 12px 35px 12px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 2px;
    text-align: left
}
.tp-caption.Newspaper-Button:hover,
.Newspaper-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.rtwhitemedium,
.rtwhitemedium {
    font-size: 22px;
    line-height: 26px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background-color: transparent;
    border-width: 0px;
    border-color: rgb(0, 0, 0);
    border-style: none;
    text-shadow: none
}

@media only screen and (max-width: 767px) {
	.revtp-searchform input[type="text"],
	.revtp-searchform input[type="email"],
	.revtp-form input[type="text"],
	.revtp-form input[type="email"] { width: 200px !important; }
}

.revtp-searchform input[type="submit"],
.revtp-form input[type="submit"] {	
	font-family: "Arial", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    padding: 0 20px;
    border: 0;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Concept-Title,
    .Concept-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-SubTitle,
    .Concept-SubTitle {
        color: rgba(255, 255, 255, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: ""Playfair Display"";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Content,
    .Concept-Content {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-MoreBtn,
    .Concept-MoreBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn:hover,
    .Concept-MoreBtn:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-LessBtn,
    .Concept-LessBtn {
        color: rgba(255, 255, 255, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-LessBtn:hover,
    .Concept-LessBtn:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-SubTitle-Dark,
    .Concept-SubTitle-Dark {
        color: rgba(0, 0, 0, 0.65);
        font-size: 25px;
        line-height: 25px;
        font-weight: 700;
        font-style: italic;
        font-family: "Playfair Display";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Title-Dark,
    .Concept-Title-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 700;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 10px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 5px
    }
    .tp-caption.Concept-MoreBtn-Dark,
    .Concept-MoreBtn-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 30px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 10px 8px 7px 10px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px;
        letter-spacing: 1px;
        text-align: left
    }
    .tp-caption.Concept-MoreBtn-Dark:hover,
    .Concept-MoreBtn-Dark:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.Concept-Content-Dark,
    .Concept-Content-Dark {
        color: rgba(0, 0, 0, 1.00);
        font-size: 20px;
        line-height: 30px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Concept-Notice,
    .Concept-Notice {
        color: rgba(255, 255, 255, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 400;
        font-style: normal;
        font-family: "Roboto Condensed";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: none;
        border-width: 2px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Concept-Content a,
    .tp-caption.Concept-Content a:visited {
        color: #fff !important;
        border-bottom: 1px solid #fff !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content a:hover {
        border-bottom: 1px solid transparent !important;
    }
    .tp-caption.Concept-Content-Dark a,
    .tp-caption.Concept-Content-Dark a:visited {
        color: #000 !important;
        border-bottom: 1px solid #000 !important;
        font-weight: 700 !important;
    }
    .tp-caption.Concept-Content-Dark a:hover {
        border-bottom: 1px solid transparent !important;
    }

    .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    .tp-caption.Creative-Title,
    .Creative-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 70px;
        line-height: 70px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.Creative-SubTitle,
    .Creative-SubTitle {
        color: rgba(205, 176, 131, 1.00);
        font-size: 14px;
        line-height: 14px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button,
    .Creative-Button {
        color: rgba(205, 176, 131, 1.00);
        font-size: 13px;
        line-height: 13px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 15px 50px 15px 50px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 0.25);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 2px
    }
    .tp-caption.Creative-Button:hover,
    .Creative-Button:hover {
        color: rgba(205, 176, 131, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0);
        border-color: rgba(205, 176, 131, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 0px 0px 0px 0px
    }

.tp-caption.subcaption,
    .subcaption {
        color: rgba(111, 124, 130, 1.00);
        font-size: 19px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 0, 0, 1.00);
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-shadow: none;
        text-align: left
    }
    .tp-caption.RedDot,
    .RedDot {
        color: rgba(0, 0, 0, 1.00);        
        font-weight: 400;
        font-style: normal;        
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(213, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }
    .tp-caption.RedDot:hover,
    .RedDot:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.75);
        border-color: rgba(213, 0, 0, 1.00);
        border-style: solid;
        border-width: 5px;
        border-radius: 50px 50px 50px 50px
    }

    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }
    .tp-caption.SlidingOverlays-Title,
    .SlidingOverlays-Title {
        color: rgba(255, 255, 255, 1.00);
        font-size: 50px;
        line-height: 50px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0px 0px 0px 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

     .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-Rating,
    .Woo-Rating {
        color: rgba(0, 0, 0, 1.00);
        font-size: 14px;
        line-height: 30px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-TitleLarge,
    .Woo-TitleLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 40px;
        line-height: 40px;
        font-weight: 400;
        font-style: normal;
        font-family: "Playfair Display";
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-SubTitle,
    .Woo-SubTitle {
        color: rgba(0, 0, 0, 1.00);
        font-size: 18px;
        line-height: 18px;
        font-weight: 300;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        letter-spacing: 2px;
        
    }
    .tp-caption.Woo-PriceLarge,
    .Woo-PriceLarge {
        color: rgba(0, 0, 0, 1.00);
        font-size: 60px;
        line-height: 60px;
        font-weight: 700;
        font-style: normal;
        font-family: Roboto;
        padding: 0 0 0 0px;
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center;
        
    }
    .tp-caption.Woo-ProductInfo,
    .Woo-ProductInfo {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 75px 12px 50px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-ProductInfo:hover,
    .Woo-ProductInfo:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }
    .tp-caption.Woo-AddToCart,
    .Woo-AddToCart {
        color: rgba(0, 0, 0, 1.00);
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 12px 35px 12px 35px;
        text-decoration: none;
        background-color: rgba(254, 207, 114, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px;
        text-align: left;
        
    }
    .tp-caption.Woo-AddToCart:hover,
    .Woo-AddToCart:hover {
        color: rgba(0, 0, 0, 1.00);
        text-decoration: none;
        background-color: rgba(243, 168, 71, 1.00);
        border-color: rgba(0, 0, 0, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 4px 4px 4px 4px
    }

    .tp-caption.FullScreen-Toggle,
    .FullScreen-Toggle {
        color: rgba(255, 255, 255, 1.00);
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-style: normal;
        font-family: Raleway;
        padding: 11px 8px 11px 12px;
        text-decoration: none;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.50);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px;
        letter-spacing: 3px;
        text-align: left
    }
    .tp-caption.FullScreen-Toggle:hover,
    .FullScreen-Toggle:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: rgba(0, 0, 0, 1.00);
        border-color: rgba(255, 255, 255, 0);
        border-style: solid;
        border-width: 0px;
        border-radius: 0px 0px 0px 0px
    }

    .tp-caption.Agency-Title,
.Agency-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Agency-SubTitle,
.Agency-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-PlayBtn,
.Agency-PlayBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 71px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-PlayBtn:hover,
.Agency-PlayBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.Agency-SmallText,
.Agency-SmallText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 12px;
    font-weight: 900;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.Agency-Social,
.Agency-Social {
    color: rgba(51, 51, 51, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Agency-Social:hover,
.Agency-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(51, 51, 51, 1.00);
    border-style: solid;
    border-width: 2px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
.tp-caption.Agency-CloseBtn,
.Agency-CloseBtn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.Agency-CloseBtn:hover,
.Agency-CloseBtn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    border-style: none;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}

.tp-caption.Dining-Title,
.Dining-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.Dining-SubTitle,
.Dining-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Dining-BtnLight,
.Dining-BtnLight {
    color: rgba(255, 255, 255, 0.50);
    font-size: 15px;
    line-height: 15px;
    font-weight: 700;
    font-style: normal;
    font-family: Lato;
    padding: 17px 73px 17px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.Dining-BtnLight:hover,
.Dining-BtnLight:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px
}
.tp-caption.Dining-Social,
.Dining-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 25px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.25);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    text-align: center
}
.tp-caption.Dining-Social:hover,
.Dining-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 30px 30px 30px 30px;
    cursor: pointer
}
tp-caption.Team-Thumb,
.Team-Thumb {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Thumb:hover,
.Team-Thumb:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Team-Name,
.Team-Name {
    color: rgba(255, 255, 255, 1.00);
    font-size: 70px;
    line-height: 70px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Position,
.Team-Position {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Description,
.Team-Description {
    color: rgba(255, 255, 255, 1.00);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Team-Social,
.Team-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Team-Social:hover,
.Team-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

.tp-caption.VideoControls-Play,
.VideoControls-Play {
    color: rgba(0, 0, 0, 1.00);
    font-size: 50px;
    line-height: 120px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 7px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Play:hover,
.VideoControls-Play:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoPlayer-Title,
.VideoPlayer-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 10px
}
.tp-caption.VideoPlayer-SubTitle,
.VideoPlayer-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social,
.VideoPlayer-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.VideoPlayer-Social:hover,
.VideoPlayer-Social:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.VideoControls-Mute,
.VideoControls-Mute {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Mute:hover,
.VideoControls-Mute:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
}
.tp-caption.VideoControls-Pause,
.VideoControls-Pause {
    color: rgba(0, 0, 0, 1.00);
    font-size: 20px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    text-align: center
}
.tp-caption.VideoControls-Pause:hover,
.VideoControls-Pause:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 100px 100px 100px 100px;
    cursor: pointer
 }

.soundcloudwrapper iframe {
    width: 100% !important
}
.tp-caption.SleekLanding-Title,
.SleekLanding-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 35px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 5px
}
.tp-caption.SleekLanding-ButtonBG,
.SleekLanding-ButtonBG {
    color: rgba(0, 0, 0, 1.00);
        
    font-weight: 700;
    font-style: normal;    
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.10);
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-radius: 5px 5px 5px 5px;
    text-align: left;    
    box-shadow: inset 0px 2px 0px 0px rgba(0, 0, 0, 0.15)
}
.tp-caption.SleekLanding-SmallTitle,
.SleekLanding-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left;
    letter-spacing: 2px
}
.tp-caption.SleekLanding-BottomText,
.SleekLanding-BottomText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.SleekLanding-Social,
.SleekLanding-Social {
    color: rgba(255, 255, 255, 1.00);
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.SleekLanding-Social:hover,
.SleekLanding-Social:hover {
    color: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
#rev_slider_429_1_wrapper .tp-loader.spinner2 {
    background-color: #555555 !important;
}
.tp-fat {
    font-weight: 900 !important;
}

.tp-caption.PostSlider-Category,
.PostSlider-Category {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 15px;
    font-weight: 300;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px;
    text-align: left
}
.tp-caption.PostSlider-Title,
.PostSlider-Title {
    color: rgba(0, 0, 0, 1.00);
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
    font-style: normal;
    font-family: "Playfair Display";
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Content,
.PostSlider-Content {
    color: rgba(119, 119, 119, 1.00);
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-style: normal;
    font-family: Roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.PostSlider-Button,
.PostSlider-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 40px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 1px 56px 1px 32px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    text-align: left
}
.tp-caption.PostSlider-Button:hover,
.PostSlider-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(238, 238, 238, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}

/* media queries */

@media only screen and (max-width: 960px) {} @media only screen and (max-width: 768px) {} .tp-caption.LandingPage-Title,
.LandingPage-Title {
    color:rgba(255,
    255,
    255,
    1.00);
    font-size:70px;
    line-height:80px;
    font-weight:900;
    font-style:normal;
    font-family:Lato;
    padding:0 0 0 0px;
    text-decoration:none;
    background-color:transparent;
    border-color:transparent;
    border-style:none;
    border-width:0px;
    border-radius:0 0 0 0px;
    text-align:left;
    letter-spacing:10px
}
.tp-caption.LandingPage-SubTitle,
.LandingPage-SubTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic;
    font-family: Georgia, serif;
    padding: 0 0 0 0px;
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.LandingPage-Button,
.LandingPage-Button {
    color: rgba(0, 0, 0, 1.00);
    font-size: 15px;
    line-height: 54px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 35px 0px 35px;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: left;
    letter-spacing: 3px
}
.tp-caption.LandingPage-Button:hover,
.LandingPage-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.App-Content a,
.tp-caption.App-Content a:visited {
    color: #89124e !important;
    border-bottom: 1px solid transparent !important;
    font-weight: bold !important;
}
.tp-caption.App-Content a:hover {
    border-bottom: 1px solid #89124e !important;
}
.tp-caption.RockBand-LogoText,
.RockBand-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
    font-style: normal;
    font-family: Oswald;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #fff !important;
    text-decoration: underline !important;
}
.tp-caption.Twitter-Content a:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.soundcloudwrapper iframe {
    width: 100% !important
}

.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.ComingSoon-Highlight,
.ComingSoon-Highlight {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 37px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 20px 3px 20px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 154, 238, 1.00);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-Count,
.ComingSoon-Count {
    color: rgba(255, 255, 255, 1.00);
    font-size: 50px;
    line-height: 50px;
    font-weight: 900;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.ComingSoon-CountUnit,
.ComingSoon-CountUnit {
    color: rgba(255, 255, 255, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.ComingSoon-NotifyMe,
.ComingSoon-NotifyMe {
    color: rgba(164, 157, 143, 1.00);
    font-size: 27px;
    line-height: 35px;
    font-weight: 600;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}

#mc_embed_signup input#mce-EMAIL {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #000;
    background-color: #fff;
    line-height: 46px;
    padding: 0 20px;
    cursor: text;
    border: 1px solid #fff;
    width: 400px;
    margin-bottom: 0px;
    transition: background-color 0.5s;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mce-EMAIL[type="email"]:focus {
    background-color: #fff;
    border: 1px solid #666;
    border-right: 0;
}
#mc_embed_signup input#mc-embedded-subscribe,
#mc_embed_signup input#mc-embedded-subscribe:focus {
    font-family: "Lato", sans-serif;
    line-height: 46px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    padding: 0 20px;
    border: 1px solid #009aee;
    background: #009aee;
    color: #fff;
    
    
    border-radius: 0px;
}
#mc_embed_signup input#mc-embedded-subscribe:hover {
    background: #0083d4;
}
@media only screen and (max-width: 767px) {
    #mc_embed_signup input#mce-EMAIL {
        width: 200px;
    }
}
.tp-caption.Agency-SmallTitle,
.Agency-SmallTitle {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 6px
}
.tp-caption.Agency-SmallContent,
.Agency-SmallContent {
    color: rgba(255, 255, 255, 1.00);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallLink,
.Agency-SmallLink {
    color: rgba(248, 124, 9, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #f87c09 !important
}
.tp-caption.Agency-SmallLink:hover,
.Agency-SmallLink:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-NavButton,
.Agency-NavButton {
    color: rgba(51, 51, 51, 1.00);
    font-size: 17px;
    line-height: 50px;
    font-weight: 500;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 0px 0px 0px;
    text-decoration: none;
    text-align: center;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    text-align: center
}
.tp-caption.Agency-NavButton:hover,
.Agency-NavButton:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(51, 51, 51, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkGreen,
.Agency-SmallLinkGreen {
    color: rgba(109, 177, 155, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #6db19b !important
}
.tp-caption.Agency-SmallLinkGreen:hover,
.Agency-SmallLinkGreen:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-SmallLinkBlue,
.Agency-SmallLinkBlue {
    color: rgba(153, 153, 153, 1.00);
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-style: normal;
    font-family: lato;
    padding: 0 0 0px 0;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid #999 !important
}
.tp-caption.Agency-SmallLinkBlue:hover,
.Agency-SmallLinkBlue:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    cursor: pointer
}
.tp-caption.Agency-LogoText,
.Agency-LogoText {
    color: rgba(255, 255, 255, 1.00);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
    letter-spacing: 1px
}
.tp-caption.Agency-ArrowTooltip,
.Agency-ArrowTooltip {
    color: rgba(51, 51, 51, 1.00);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "Permanent Marker";
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: left
}
.tp-caption.Agency-SmallSocial,
.Agency-SmallSocial {
    color: rgba(255, 255, 255, 1.00);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    font-family: Arial;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center
}
.tp-caption.Agency-SmallSocial:hover,
.Agency-SmallSocial:hover {
    color: rgba(51, 51, 51, 1.00);
    text-decoration: none;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.CreativeFrontPage-Btn,
.CreativeFrontPage-Btn {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 60px;
    font-weight: 900;
    font-style: normal;
    font-family: Roboto;
    padding: 0px 50px 0px 50px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(0, 104, 92, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    letter-spacing: 2px
}
.tp-caption.CreativeFrontPage-Btn:hover,
.CreativeFrontPage-Btn:hover {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 4px 4px 4px 4px;
    cursor: pointer
}
.tp-caption.CreativeFrontPage-Menu,
.CreativeFrontPage-Menu {
    color: rgba(255, 255, 255, 1.00);
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    font-style: normal;
    font-family: roboto;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 2px
}
.tp-flip-index {
    z-index: 1000 !important;
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.FullScreenMenu-Category,
.FullScreenMenu-Category {
    color: rgba(17, 17, 17, 1.00);
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 3px
}
.tp-caption.FullScreenMenu-Title,
.FullScreenMenu-Title {
    color: rgba(255, 255, 255, 1.00);
    font-size: 65px;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-family: BenchNine;
    padding: 21px 30px 16px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(17, 17, 17, 0.90);
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px
}
.tp-caption.Twitter-Content a,
.tp-caption.Twitter-Content a:visited {
    color: #0084B4 !important
}
.tp-caption.Twitter-Content a:hover {
    color: #0084B4 !important;
    text-decoration: underline !important
}
.tp-caption.TechJournal-Button,
.TechJournal-Button {
    color: rgba(255, 255, 255, 1.00);
    font-size: 13px;
    line-height: 40px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 1px 30px 1px 30px;
    text-decoration: none;
    text-align: left;
    background-color: rgba(138, 0, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    letter-spacing: 3px
}
.tp-caption.TechJournal-Button:hover,
.TechJournal-Button:hover {
    color: rgba(0, 0, 0, 1.00);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(0, 0, 0, 1.00);
    border-style: solid;
    border-width: 0px;
    border-radius: 0px 0px 0px 0px;
    cursor: pointer
}
.tp-caption.TechJournal-Big,
.TechJournal-Big {
    color: rgba(255, 255, 255, 1.00);
    font-size: 120px;
    line-height: 120px;
    font-weight: 900;
    font-style: normal;
    font-family: Raleway;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: left;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    letter-spacing: 0px
}
.rev_slider {
    overflow: hidden;
}
.effect_layer {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-DownButton,
    .FullSiteBlock-DownButton {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 32px;
        font-weight: 500;
        font-style: normal;
        font-family: Roboto;
        padding: 1px 1px 1px 1px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: rgba(51, 51, 51, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-DownButton:hover,
    .FullSiteBlock-DownButton:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: rgba(0, 150, 255, 1.00);
        border-style: solid;
        border-width: 1px;
        border-radius: 30px 30px 30px 30px;
        cursor: pointer
    }
    .rev_slider {
        overflow: hidden;
    }
    .effect_layer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }
    .gyges .tp-thumb {
        opacity: 1
    }
    .gyges .tp-thumb-img-wrap {
        padding: 3px;
        background-color: rgba(0, 0, 0, 0.25);
        display: inline-block;
        width: 100%;
        height: 100%;
        position: relative;
        margin: 0px;
        box-sizing: border-box;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    .gyges .tp-thumb-image {
        padding: 3px;
        display: block;
        box-sizing: border-box;
        position: relative;
        box-shadow: inset 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
    }
    .gyges .tp-thumb:hover .tp-thumb-img-wrap,
    .gyges .tp-thumb.selected .tp-thumb-img-wrap {
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
    .tp-caption.FullSiteBlock-Title,
    .FullSiteBlock-Title {
        color: rgba(51, 51, 51, 1.00);
        font-size: 55px;
        line-height: 65px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link,
    .FullSiteBlock-Link {
        color: rgba(0, 150, 255, 1.00);
        font-size: 25px;
        line-height: 24px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-Link:hover,
    .FullSiteBlock-Link:hover {
        color: rgba(51, 51, 51, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.FullSiteBlock-FooterLink,
    .FullSiteBlock-FooterLink {
        color: rgba(85, 85, 85, 1.00);
        font-size: 15px;
        line-height: 20px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: left
    }
    .tp-caption.FullSiteBlock-FooterLink:hover,
    .FullSiteBlock-FooterLink:hover {
        color: rgba(0, 150, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    #tp-socialwrapper {
        opacity: 0;
    }

        .tp-caption.Twitter-Content a,
    .tp-caption.Twitter-Content a:visited {
        color: #0084B4 !important
    }
    .tp-caption.Twitter-Content a:hover {
        color: #0084B4 !important;
        text-decoration: underline !important
    }
    #menu_forcefullwidth {
        z-index: 5000;
        position: fixed !important;
        top: 0px;
        left: 0px;
        width: 100%
    }
    #tp-menubg {
        /* FF3.6-15 */
        /* Chrome10-25,Safari5.1-6 */
        
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00000000', GradientType=0);
        /* IE6-9 */
    }
    #mc_embed_signup input[type="email"] {
        font-family: "Lato", sans-serif;
        font-size: 16px;
        font-weight: 400;
        background-color: #fff;
        color: #888 !important;
        line-height: 46px;
        padding: 0 20px;
        cursor: text;
        border: 0;
        width: 400px;
        margin-bottom: 0px;
        transition: background-color 0.5s;
        border-radius: 3px;
    }
    #mc_embed_signup input[type="email"]::-webkit-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]::-moz-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:-ms-input-placeholder {
        color: #888 !important;
    }
    #mc_embed_signup input[type="email"]:focus {
        background-color: #f5f5f5;
        color: #454545;
    }
    #mc_embed_signup input#mc-embedded-subscribe,
    #mc_embed_signup input#mc-embedded-subscribe:focus {
        font-family: "Lato", sans-serif;
        line-height: 46px;
        font-size: 16px;
        font-weight: 700;
        padding: 0 30px;
        border: 0;
        background: #f04531;
        text-transform: none;
        color: #fff;
        border-radius: 3px;
    }
    #mc_embed_signup input#mc-embedded-subscribe:hover {
        background: #e03727;
    }
    @media only screen and (max-width: 767px) {
        #mc_embed_signup input[type="email"] {
            width: 260px;
        }
    }
    @media only screen and (max-width: 480px) {
        #mc_embed_signup input[type="email"] {
            width: 160px;
        }
    }
    #rev_slider_167_6 .uranus.tparrows {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0);
    }
    #rev_slider_167_6 .uranus.tparrows:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 40px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
    }
    #rev_slider_167_6 .uranus.tparrows:hover:before {
        opacity: 0.75;
    }
    .tp-caption.FullSiteBlock-SubTitle,
    .FullSiteBlock-SubTitle {
        color: rgba(51, 51, 51, 1.00);
        font-size: 25px;
        line-height: 34px;
        font-weight: 300;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: center;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        text-align: center
    }
    .tp-caption.ParallaxWebsite-FooterItem,
    .ParallaxWebsite-FooterItem {
        color: rgba(255, 255, 255, 0.50);
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-style: normal;
        font-family: Lato;
        padding: 0 0 0 0px;
        text-decoration: none;
        text-align: left;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px
    }
    .tp-caption.ParallaxWebsite-FooterItem:hover,
    .ParallaxWebsite-FooterItem:hover {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
        background-color: transparent;
        border-color: transparent;
        border-style: none;
        border-width: 0px;
        border-radius: 0 0 0 0px;
        cursor: pointer
    }
    .fb-share-button.fb_iframe_widget iframe {
        width: 115px!important;
    }
    iframe.twitter-share-button {
        display: none;
    }
    .fb-share-button.fb_iframe_widget iframe {
        display: none;
    }

    .tp-caption.FullSiteBlock-Link, 
    .FullSiteBlock-Link {
    color: rgba(0,150,255,1.00);
    font-size: 25px;
    line-height: 24px;
    font-weight: 300;
    font-style: normal;
    font-family: Lato;
    padding: 0 0 0 0px;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    border-radius: 0 0 0 0px;
    text-align: center;
}/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ARES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
.ares.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:60px;
    min-height:60px;
  position:absolute;
  display:block;
  z-index:100;
    border-radius:50%;
}
.ares.tparrows:hover {
}
.ares.tparrows:before {
  font-family: "revicons";
  font-size:25px;
  color:#aaa;
  display:block;
  line-height: 60px;
  text-align: center;
    transition: color 0.3s;
    z-index:2;
    position:relative;
}
.ares.tparrows.tp-leftarrow:before {
  content: "\E81F";
}
.ares.tparrows.tp-rightarrow:before {
  content: "\E81E";
}
.ares.tparrows:hover:before {
 color:#000;
      }
.ares .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#fff;
  min-height:60px;
  line-height:60px;
  top:0px;
  margin-left:30px;
  border-radius:0px 30px 30px 0px;
  overflow:hidden;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
   -webkit-transform-origin:0% 50%;
}
 .ares.tp-rightarrow .tp-title-wrap {
   right:0px;
   margin-right:30px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
border-radius:30px 0px 0px 30px;
 }
.ares.tparrows:hover .tp-title-wrap {
  transform:scaleX(1) scaleY(1);
    -webkit-transform:scaleX(1) scaleY(1);
}
.ares .tp-arr-titleholder {
  position:relative;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#000;
  font-weight:400;
  font-size:14px;
  line-height:60px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:10px;
  opacity:0;
}

.ares.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px);
   margin-left:0px; margin-right:10px;
      }

.ares.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.ares.tp-bullets {
}
.ares.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.ares .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.ares .tp-bullet:hover,
.ares .tp-bullet.selected {
	background:#fff;
}
.ares .tp-bullet-title {
  position:absolute;
  color:#888;
  font-size:12px;
  padding:0px 10px;
  font-weight:600;
  right:27px;
  top:-4px;
  background:#fff;
  background:rgba(255,255,255,0.75);
  visibility:hidden;
  transform:translateX(-20px);
  -webkit-transform:translateX(-20px);
  transition:transform 0.3s;
  -webkit-transition:transform 0.3s;
  line-height:20px;
  white-space:nowrap;
}

.ares .tp-bullet-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent rgba(255,255,255,0.75);
	content:" ";
    position:absolute;
    right:-10px;
	top:0px;
}

.ares .tp-bullet:hover .tp-bullet-title{
  visibility:visible;
   transform:translateX(0px);
  -webkit-transform:translateX(0px);
}

.ares .tp-bullet.selected:hover .tp-bullet-title {
    background:#fff;
        }
.ares .tp-bullet.selected:hover .tp-bullet-title:after {
  border-color:transparent transparent transparent #fff;
}
.ares.tp-bullets:hover .tp-bullet-title {
        visibility:hidden;
}
.ares.tp-bullets:hover .tp-bullet:hover .tp-bullet-title {
    visibility:visible;
      }

/* TABS */
.ares .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.ares .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.ares .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.ares .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.ares .tp-tab-title
{
    display:block;
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.ares .tp-tab:hover,
.ares .tp-tab.selected {
	background:#eee;
}

.ares .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 CUSTOM SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.custom.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:10000;
}
.custom.tparrows:hover {
	background:#000;
}
.custom.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.custom.tparrows.tp-leftarrow:before {
	content: "\E824";
}
.custom.tparrows.tp-rightarrow:before {
	content: "\E825";
}



/* BULLETS */
.custom.tp-bullets {
}
.custom.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.custom .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
    background:rgba(125,125,125,0.5);
	cursor: pointer;
	box-sizing:content-box;
}
.custom .tp-bullet:hover,
.custom .tp-bullet.selected {
	background:rgb(125,125,125);
}
.custom .tp-bullet-image {
}
.custom .tp-bullet-title {
}


/* THUMBS */


/* TABS */


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 DIONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.dione.tparrows {
  height:100%;
  width:100px;
  background:transparent;
  background:rgba(0,0,0,0);
  line-height:100%;
  transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows:hover {
 background:rgba(0,0,0,0.45);
 }
.dione .tp-arr-imgwrapper {
 width:100px;
 left:0px;
 position:absolute;
 height:100%;
 top:0px;
 overflow:hidden;
 }
.dione.tp-rightarrow .tp-arr-imgwrapper {
left:auto;
right:0px;
}

.dione .tp-arr-imgholder {
background-position:center center;
background-size:cover;
width:100px;
height:100%;
top:0px;
visibility:hidden;
transform:translateX(-50px);
-webkit-transform:translateX(-50px);
transition:all 0.3s;
-webkit-transition:all 0.3s;
opacity:0;
left:0px;
}

.dione.tparrows.tp-rightarrow .tp-arr-imgholder {
  right:0px;
  left:auto;
  transform:translateX(50px);
 -webkit-transform:translateX(50px);
}

.dione.tparrows:before {
position:absolute;
line-height:30px;
margin-left:-22px;
top:50%;
left:50%;
font-size:30px;
margin-top:-15px;
transition:all 0.3s;
-webkit-transition:all 0.3s;
}

.dione.tparrows.tp-rightarrow:before {
margin-left:6px;
}

.dione.tparrows:hover:before {
  transform:translateX(-20px);
-webkit-transform:translateX(-20px);
opacity:0;
}

.dione.tparrows.tp-rightarrow:hover:before {
  transform:translateX(20px);
-webkit-transform:translateX(20px);
}

.dione.tparrows:hover .tp-arr-imgholder {
 transform:translateX(0px);
-webkit-transform:translateX(0px);
opacity:1;
visibility:visible;
}



/* BULLETS */
.dione .tp-bullet {
    opacity:1;
    width:50px;
    height:50px;
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;

  }

.dione .tp-bullet-image {
   display:block;
   box-sizing:border-box;
   position:relative;
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }
.dione .tp-bullet-title {
     position:absolute;
   bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
   -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.dione .tp-bullet:hover .tp-bullet-title {
     transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.dione .tp-bullet.selected,
.dione .tp-bullet:hover  {

   background: rgba(255,255,255,1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.dione .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ERINYEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.erinyen.tparrows {
  cursor:pointer;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
  border-radius:35px;
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.erinyen.tparrows.tp-leftarrow:before {
  content: "\E824";
}
.erinyen.tparrows.tp-rightarrow:before {
  content: "\E825";
}

.erinyen .tp-title-wrap {
  position:absolute;
  z-index:1;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.5);
  min-height:70px;
  line-height:70px;
  top:0px;
  margin-left:0px;
  border-radius:35px;
  overflow:hidden;
  transition: opacity 0.3s;
  -webkit-transition:opacity 0.3s;
  -moz-transition:opacity 0.3s;
  transform: scale(0);
  visibility:hidden;
  opacity:0;
}

.erinyen.tparrows:hover .tp-title-wrap{
  transform: scale(1);
  opacity:1;
  visibility:visible;
}

 .erinyen.tp-rightarrow .tp-title-wrap {
   right:0px;
   margin-right:0px;margin-left:0px;
   -webkit-transform-origin:100% 50%;
  border-radius:35px;
  padding-right:20px;
  padding-left:10px;
 }


.erinyen.tp-leftarrow .tp-title-wrap {
   padding-left:20px;
  padding-right:10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
   position:relative;
  transition: transform 0.3s;
  transform:translateX(200px);
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:13px;
  line-height:70px;
  white-space:nowrap;
  padding:0px 20px;
  margin-left:11px;
  opacity:0;
}

.erinyen .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
    }
 .erinyen .tp-arr-img-over {
   width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
   background:#000;
   background:rgba(0,0,0,0.5);
        }
.erinyen.tp-rightarrow .tp-arr-titleholder {
   transform:translateX(-200px);
   margin-left:0px; margin-right:11px;
      }

.erinyen.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

/* BULLETS */
.erinyen.tp-bullets {
}
.erinyen.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #555555; /* old browsers */ /* ff3.6+ */ /* chrome,safari4+ */ /* chrome10+,safari5.1+ */ /* opera 11.10+ */ /* ie10+ */
    background: linear-gradient(to bottom,  #555555 0%,#222222 100%); /* w3c */
    -webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 );
            filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#555555", endcolorstr="#222222",gradienttype=0 ); /* ie6-9 */
	padding:10px 15px;
	margin-left:-15px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:10px;
   box-shadow:0px 0px 2px 1px rgba(33,33,33,0.3);
}
.erinyen .tp-bullet {
	width:13px;
	height:13px;
	position:absolute;
	background:#111;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.erinyen .tp-bullet:hover,
.erinyen .tp-bullet.selected {
	background: #e5e5e5; /* old browsers */ /* ff3.6+ */ /* chrome,safari4+ */ /* chrome10+,safari5.1+ */ /* opera 11.10+ */ /* ie10+ */
background: linear-gradient(to bottom,  #e5e5e5 0%,#999999 100%); /* w3c */
-webkit-filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 );
        filter: progid:dximagetransform.microsoft.gradient( startcolorstr="#e5e5e5", endcolorstr="#999999",gradienttype=0 ); /* ie6-9 */
  border:1px solid #555;
  width:12px;height:12px;
}
.erinyen .tp-bullet-image {
}
.erinyen .tp-bullet-title {
}


/* THUMBS */
.erinyen .tp-thumb {
opacity:1
}

.erinyen .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  transition:all 0.3s;
}

.erinyen .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.erinyen .tp-thumb-more:before {
  content: "\E825";
}

.erinyen .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.erinyen .tp-thumb.selected .tp-thumb-more:before,
.erinyen .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.erinyen .tp-thumb.selected .tp-thumb-over,
.erinyen .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.erinyen .tp-thumb.selected .tp-thumb-title,
.erinyen .tp-thumb:hover .tp-thumb-title {
  color:#000;

}


/* TABS */
.erinyen .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab";
    margin-bottom:5px;
}

.erinyen .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 GYGES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */


/* BULLETS */
.gyges.tp-bullets {
}
.gyges.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background: #777777; /* Old browsers */
    background: linear-gradient(to bottom,  #777777 0%,#666666 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#777777",
    endColorstr="#666666",GradientType=0 );
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
  border-radius:10px;
}
.gyges .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#333;
	border:3px solid #444;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.gyges .tp-bullet:hover,
.gyges .tp-bullet.selected {
	background: #ffffff; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#e1e1e1 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff",
    endColorstr="#e1e1e1",GradientType=0 ); /* IE6-9 */

}
.gyges .tp-bullet-image {
}
.gyges .tp-bullet-title {
}


/* THUMBS */
.gyges .tp-thumb {
      opacity:1
  }
.gyges .tp-thumb-img-wrap {
  padding:3px;
    background:#000;
  background-color:rgba(0,0,0,0.25);
  display:inline-block;

  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.gyges .tp-thumb-image {
   padding:3px;
   display:block;
   box-sizing:border-box;
   position:relative;
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }
.gyges .tp-thumb-title {
     position:absolute;
     bottom:100%;
     display:inline-block;
     left:50%;
     background:rgba(255,255,255,0.8);
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     margin-bottom:20px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    white-space:nowrap;
 }
.gyges .tp-thumb:hover .tp-thumb-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.gyges .tp-thumb:hover .tp-thumb-img-wrap,
 .gyges .tp-thumb.selected .tp-thumb-img-wrap {

  background: rgba(255,255,255,1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );
 }
.gyges .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(255,255,255,0.8) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.gyges .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.15);
 }
.gyges .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.gyges .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
  overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.gyges .tp-tab-date
  {
  display:block;
  color: rgba(255,255,255,0.25);
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.gyges .tp-tab-title
{
    display:block;
    text-align:left;
    color:#fff;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.gyges .tp-tab:hover,
.gyges .tp-tab.selected {
  background:rgba(0,0,0,0.5);
}

.gyges .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HADES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hades.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.15);
	width:100px;
	height:100px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hades.tparrows:before {
	font-family: "revicons";
	font-size:30px;
	color:#fff;
	display:block;
	line-height: 100px;
	text-align: center;
  transition: background 0.3s, color 0.3s;
}
.hades.tparrows.tp-leftarrow:before {
	content: "\E824";
}
.hades.tparrows.tp-rightarrow:before {
	content: "\E825";
}

.hades.tparrows:hover:before {
   color:#aaa;
   background:#fff;
   background:rgba(255,255,255,1);
 }
.hades .tp-arr-allwrapper {
  position:absolute;
  left:100%;
  top:0px;
  background:#888;
  width:100px;height:100px;
  transition: all 0.3s;
  -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0.0;
  -khtml-opacity: 0.0;
  opacity: 0.0;
  transform: rotatey(-90deg);
  transform-origin: 0% 50%;
}
.hades.tp-rightarrow .tp-arr-allwrapper {
   left:auto;
   right:100%;
  transform-origin: 100% 50%;
  transform: rotatey(90deg);
}

.hades:hover .tp-arr-allwrapper {
   -ms-filter: "progid:dximagetransform.microsoft.alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotatey(0deg);

 }

.hades .tp-arr-iwrapper {
}
.hades .tp-arr-imgholder {
  background-size:cover;
  position:absolute;
  top:0px;left:0px;
  width:100%;height:100%;
}
.hades .tp-arr-titleholder {
}
.hades .tp-arr-subtitleholder {
}


/* BULLETS */
.hades.tp-bullets {
}
.hades.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hades .tp-bullet {
	width:3px;
	height:3px;
	position:absolute;
	background:#888;
	cursor: pointer;
    border:5px solid #fff;
	box-sizing:content-box;
    box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
    perspective:400;
    transform:translatez(0.01px);
}
.hades .tp-bullet:hover,
.hades .tp-bullet.selected {
	background:#555;

}

.hades .tp-bullet-image {
  position:absolute;top:-80px; left:-60px;width:120px;height:60px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: rotatex(-90deg);
  -webkit-transform: rotatex(-90deg);
  box-shadow:0px 0px 3px 1px rgba(0,0,0,0.2);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;


}
.hades .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: rotatex(0deg);
  -webkit-transform: rotatex(0deg);
  visibility:visible;
    }
.hades .tp-bullet-title {
}


/* THUMBS */
.hades .tp-thumb {
      opacity:1
  }
.hades .tp-thumb-img-wrap {
  border-radius:50%;
  padding:3px;
  display:inline-block;
background:#000;
  background-color:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:relative;
  margin:0px;
  box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hades .tp-thumb-image {
   padding:3px;
   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
 }


.hades .tp-thumb:hover .tp-thumb-img-wrap,
.hades .tp-thumb.selected .tp-thumb-img-wrap {

   background: rgba(255,255,255,1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.hades .tp-thumb-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }


/* TABS */
.hades .tp-tab {
  opacity:1;
 }

.hades .tp-tab-title
 {
      display:block;
      color:#333;
      font-weight:600;
      font-size:18px;
      text-align:center;
      line-height:25px;
    }
.hades .tp-tab-price
 {
	display:block;
    text-align:center;
    color:#999;
    font-size:16px;
    margin-top:10px;
   line-height:20px
}

.hades .tp-tab-button {
    display:inline-block;
    margin-top:15px;
    text-align:center;
	padding:5px 15px;
  	color:#fff;
  	font-size:14px;
  	background:#219bd7;
   	border-radius:4px;
   font-weight:400;
}
.hades .tp-tab-inner {
	text-align:center;
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEBE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hebe.tparrows {
  cursor:pointer;
  background:#fff;
  min-width:70px;
    min-height:70px;
  position:absolute;
  display:block;
  z-index:1000;
}
.hebe.tparrows:hover {
}
.hebe.tparrows:before {
  font-family: "revicons";
  font-size:30px;
  color:#aaa;
  display:block;
  line-height: 70px;
  text-align: center;
  transition: color 0.3s;
  z-index:2;
  position:relative;
   background:#fff;
  min-width:70px;
    min-height:70px;
}
.hebe.tparrows.tp-leftarrow:before {
  content: "\E824";
}
.hebe.tparrows.tp-rightarrow:before {
  content: "\E825";
}
.hebe.tparrows:hover:before {
 color:#000;
      }
.hebe .tp-title-wrap {
  position:absolute;
  z-index:0;
  display:inline-block;
  background:#000;
  background:rgba(0,0,0,0.75);
  min-height:60px;
  line-height:60px;
  top:-10px;
  margin-left:0px;
  transition: transform 0.3s;
  transform:scaleX(0);
  -webkit-transform:scaleX(0);
  transform-origin:0% 50%;
   -webkit-transform-origin:0% 50%;
}
 .hebe.tp-rightarrow .tp-title-wrap {
   right:0px;
   -webkit-transform-origin:100% 50%;
 }
.hebe.tparrows:hover .tp-title-wrap {
  transform:scaleX(1);
  -webkit-transform:scaleX(1);
}
.hebe .tp-arr-titleholder {
  position:relative;
  text-transform:uppercase;
  color:#fff;
  font-weight:600;
  font-size:12px;
  line-height:90px;
  white-space:nowrap;
  padding:0px 20px 0px 90px;
}

.hebe.tp-rightarrow .tp-arr-titleholder {
   margin-left:0px;
   padding:0px 90px 0px 20px;
 }

.hebe.tparrows:hover .tp-arr-titleholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
  transition-delay: 0.1s;
  opacity:1;
}

.hebe .tp-arr-imgholder{
      width:90px;
      height:90px;
      position:absolute;
      left:100%;
      display:block;
      background-size:cover;
      background-position:center center;
  	 top:0px; right:-90px;
    }
.hebe.tp-rightarrow .tp-arr-imgholder{
        right:auto;left:-90px;
      }

/* BULLETS */
.hebe.tp-bullets {
}
.hebe.tp-bullets:before {
  content:" ";
  position:absolute;
  width:100%;
  height:100%;
  background:transparent;
  padding:10px;
  margin-left:-10px;margin-top:-10px;
  box-sizing:content-box;
}

.hebe .tp-bullet {
  width:3px;
  height:3px;
  position:absolute;
  background:#fff;
  cursor: pointer;
  border:5px solid #222;
  border-radius:50%;
  box-sizing:content-box;
  perspective:400;
  transform:translateZ(0.01px);
   transition:all 0.3s;
}
.hebe .tp-bullet:hover,
.hebe .tp-bullet.selected {
  background:#222;
  border-color:#fff;
}

.hebe .tp-bullet-image {
  position:absolute;
  top:-90px; left:-40px;
  width:70px;
  height:70px;
  background-position:center center;
  background-size:cover;
  visibility:hidden;
  opacity:0;
  transition:all 0.3s;
  transform-style:flat;
  perspective:600;
  -webkit-perspective:600;
  transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin:50% 100%;
  -webkit-transform-origin:50% 100%;
border-radius:6px;


}
.hebe .tp-bullet:hover .tp-bullet-image {
  display:block;
  opacity:1;
  transform: scale(1);
  -webkit-transform: scale(1);
  visibility:visible;
    }
.hebe .tp-bullet-title {
}


/* TABS */
.hebe .tp-tab-title {
    color:#a8d8ee;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    font-family:"Roboto Slab";
    margin-bottom:5px;
}

.hebe .tp-tab-desc {
	font-size:18px;
    font-weight:400;
    color:#fff;
    line-height:25px;
	font-family:"Roboto Slab";
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HEPHAISTOS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hephaistos.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius:50%;
}
.hephaistos.tparrows:hover {
	background:#000;
}
.hephaistos.tparrows:before {
	font-family: "revicons";
	font-size:18px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hephaistos.tparrows.tp-leftarrow:before {
	content: "\E82C";
  margin-left:-2px;

}
.hephaistos.tparrows.tp-rightarrow:before {
	content: "\E82D";
   margin-right:-2px;
}



/* BULLETS */
.hephaistos.tp-bullets {
}
.hephaistos.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.hephaistos .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#999;
	border:3px solid #f5f5f5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
  box-shadow: 0px 0px 2px 1px rgba(130,130,130, 0.3);

}
.hephaistos .tp-bullet:hover,
.hephaistos .tp-bullet.selected {
	background:#fff;
    border-color:#000;
}
.hephaistos .tp-bullet-image {
}
.hephaistos .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HERMES SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hermes.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:30px;
	height:110px;
	position:absolute;
	display:block;
	z-index:1000;
}

.hermes.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 110px;
	text-align: center;
    transform:translateX(0px);
    -webkit-transform:translateX(0px);
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
}
.hermes.tparrows.tp-leftarrow:before {
	content: "\E824";
}
.hermes.tparrows.tp-rightarrow:before {
	content: "\E825";
}
.hermes.tparrows.tp-leftarrow:hover:before {
    transform:translateX(-20px);
    -webkit-transform:translateX(-20px);
     opacity:0;
}
.hermes.tparrows.tp-rightarrow:hover:before {
    transform:translateX(20px);
    -webkit-transform:translateX(20px);
     opacity:0;
}

.hermes .tp-arr-allwrapper {
    overflow:hidden;
    position:absolute;
	width:180px;
    height:140px;
    top:0px;
    left:0px;
    visibility:hidden;
  transition: transform 0.3s 0.3s;
  perspective: 1000px;
    }
.hermes.tp-rightarrow .tp-arr-allwrapper {
   right:0px;left:auto;
      }
.hermes.tparrows:hover .tp-arr-allwrapper {
   visibility:visible;
          }
.hermes .tp-arr-imgholder {
  width:180px;position:absolute;
  left:0px;top:0px;height:110px;
  transform:translateX(-180px);
  -webkit-transform:translateX(-180px);
  transition:all 0.3s;
  transition-delay:0.3s;
}
.hermes.tp-rightarrow .tp-arr-imgholder{
    transform:translateX(180px);
  -webkit-transform:translateX(180px);
      }

.hermes.tparrows:hover .tp-arr-imgholder {
   transform:translateX(0px);
   -webkit-transform:translateX(0px);
}
.hermes .tp-arr-titleholder {
  top:110px;
  width:180px;
  text-align:left;
  display:block;
  padding:0px 10px;
  line-height:30px; background:#000;
  background:rgba(0,0,0,0.75);color:#fff;
  font-weight:600; position:absolute;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:1px;
  transition: all 0.3s;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  box-sizing:border-box;

}
.hermes.tparrows:hover .tp-arr-titleholder {
  transition-delay: 0.6s;
  transform: rotateX(0deg);
}


/* BULLETS */
.hermes.tp-bullets {
}

.hermes .tp-bullet {
    overflow:hidden;
    border-radius:50%;
    width:16px;
    height:16px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px #FFF;
    transition: background 0.3s ease;
    position:absolute;
}

.hermes .tp-bullet:hover {
	  background-color: rgba(0, 0, 0, 0.2);
}
.hermes .tp-bullet:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  height: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 1px #FFF;
  transition: height 0.3s ease;
}
.hermes .tp-bullet.selected:after {
  height:100%;
}


/* TABS */
.hermes .tp-tab {
  opacity:1;
  padding-right:10px;
  box-sizing:border-box;
 }
.hermes .tp-tab-image
{
  width:100%;
  height:60%;
  position:relative;
}
.hermes .tp-tab-content
{
    background:rgb(54,54,54);
    position:absolute;
    padding:20px 20px 20px 30px;
    box-sizing:border-box;
    color:#fff;
  display:block;
  width:100%;
  min-height:40%;
  bottom:0px;
  left:-10px;
  }
.hermes .tp-tab-date
  {
  display:block;
  color:#888;
  font-weight:600;
  font-size:12px;
  margin-bottom:10px;
  }
.hermes .tp-tab-title
{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
   line-height:19px;
}

.hermes .tp-tab.selected .tp-tab-title:after {
    width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 30px 0 30px 10px;
	border-color: transparent transparent transparent rgb(54,54,54);
	content:" ";
    position:absolute;
    right:-9px;
    bottom:50%;
    margin-bottom:-30px;
}
.hermes .tp-tab-mask {
     padding-right:10px !important;
          }

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
  .hermes .tp-tab .tp-tab-title {font-size:14px;line-height:16px;}
  .hermes .tp-tab-date { font-size:11px; line-height:13px;margin-bottom:10px;}
  .hermes .tp-tab-content { padding:15px 15px 15px 25px;}
}
@media only screen and (max-width: 768px) {
  .hermes .tp-tab .tp-tab-title {font-size:12px;line-height:14px;}
  .hermes .tp-tab-date {font-size:10px; line-height:12px;margin-bottom:5px;}
  .hermes .tp-tab-content {padding:10px 10px 10px 20px;}
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 HESPERIDEN SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.hesperiden.tparrows {
	cursor:pointer;
	background:#000;
	background:rgba(0,0,0,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:1000;
    border-radius: 50%;
}
.hesperiden.tparrows:hover {
	background:#000;
}
.hesperiden.tparrows:before {
	font-family: "revicons";
	font-size:20px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.hesperiden.tparrows.tp-leftarrow:before {
	content: "\E82C";
    margin-left:-3px;
}
.hesperiden.tparrows.tp-rightarrow:before {
	content: "\E82D";
    margin-right:-3px;
}

/* BULLETS */
.hesperiden.tp-bullets {
}
.hesperiden.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
   border-radius:8px;

}
.hesperiden .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background: #999999; /* old browsers */ /* ff3.6+ */ /* chrome,safari4+ */ /* chrome10+,safari5.1+ */ /* opera 11.10+ */ /* ie10+ */
    background: linear-gradient(to bottom,  #999999 0%,#e1e1e1 100%); /* w3c */
    -webkit-filter: progid:dximagetransform.microsoft.gradient(
    startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 );
            filter: progid:dximagetransform.microsoft.gradient(
    startcolorstr="#999999", endcolorstr="#e1e1e1",gradienttype=0 ); /* ie6-9 */
	border:3px solid #e5e5e5;
	border-radius:50%;
	cursor: pointer;
	box-sizing:content-box;
}
.hesperiden .tp-bullet:hover,
.hesperiden .tp-bullet.selected {
	background:#666;
}
.hesperiden .tp-bullet-image {
}
.hesperiden .tp-bullet-title {
}


/* THUMBS */
.hesperiden .tp-thumb {
  opacity:1;
  perspective: 600px;
}
.hesperiden .tp-thumb .tp-thumb-title {
    font-size:12px;
    position:absolute;
    margin-top:-10px;
    color:#fff;
    display:block;
    z-index:10000;
    background-color:#000;
    padding:5px 10px;
    bottom:0px;
    left:0px;
    width:100%;
  box-sizing:border-box;
    text-align:center;
    overflow:hidden;
    white-space:nowrap;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform:rotatex(90deg) translatez(0.001px);
    transform-origin:50% 100%;
    -webkit-transform:rotatex(90deg) translatez(0.001px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
 }
.hesperiden .tp-thumb:hover .tp-thumb-title {
  	 transform:rotatex(0deg);
    -webkit-transform:rotatex(0deg);
    opacity:1;
}

/* TABS */
.hesperiden .tp-tab {
  opacity:1;
  padding:10px;
  box-sizing:border-box;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #e5e5e5;
 }
.hesperiden .tp-tab-image
{
  width:60px;
  height:60px; max-height:100%; max-width:100%;
  position:relative;
  display:inline-block;
  float:left;

}
.hesperiden .tp-tab-content
{
    background:rgba(0,0,0,0);
    position:relative;
    padding:15px 15px 15px 85px;
 left:0px;
 overflow:hidden;
 margin-top:-15px;
    box-sizing:border-box;
    color:#333;
    display: inline-block;
    width:100%;
    height:100%;
 position:absolute; }
.hesperiden .tp-tab-date
  {
  display:block;
  color: #aaa;
  font-weight:500;
  font-size:12px;
  margin-bottom:0px;
  }
.hesperiden .tp-tab-title
{
    display:block;
    text-align:left;
    color:#333;
    font-size:14px;
    font-weight:500;
    text-transform:none;
    line-height:17px;
}
.hesperiden .tp-tab:hover,
.hesperiden .tp-tab.selected {
	background:#eee;
}

.hesperiden .tp-tab-mask {
}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 768px) {

}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 METIS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.metis.tparrows {
  background:#fff;
  padding:10px;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  width:60px;
  height:60px;
  box-sizing:border-box;
 }

 .metis.tparrows:hover {
   background:#fff;
   background:rgba(255,255,255,0.75);
 }

 .metis.tparrows:before {
  color:#000;
   transition:all 0.3s;
  -webkit-transition:all 0.3s;
 }

 .metis.tparrows:hover:before {
   transform:scale(1.5);
  }


/* BULLETS */
.metis .tp-bullet {
    opacity:1;
    width:50px;
    height:50px;
    padding:3px;
    background:#000;
    background-color:rgba(0,0,0,0.25);
    margin:0px;
    box-sizing:border-box;
    transition:all 0.3s;
    -webkit-transition:all 0.3s;
    border-radius:50%;
  }

.metis .tp-bullet-image {

   border-radius:50%;
   display:block;
   box-sizing:border-box;
   position:relative;
  box-shadow: inset 5px 5px 10px 0px rgba(0,0,0,0.25);
  width:44px;
  height:44px;
  background-size:cover;
  background-position:center center;
 }
.metis .tp-bullet-title {
     position:absolute;
	 bottom:65px;
     display:inline-block;
     left:50%;
     background:#000;
     background:rgba(0,0,0,0.75);
     color:#fff;
     padding:10px 30px;
     border-radius:4px;
	 -webkit-border-radius:4px;
     opacity:0;
      transition:all 0.3s;
    -webkit-transition:all 0.3s;
    transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    transform-origin:50% 100%;
    -webkit-transform: translateZ(0.001px) translateX(-50%) translateY(14px);
    -webkit-transform-origin:50% 100%;
    opacity:0;
    white-space:nowrap;
 }

.metis .tp-bullet:hover .tp-bullet-title {
  	 transform:rotateX(0deg) translateX(-50%);
    -webkit-transform:rotateX(0deg) translateX(-50%);
    opacity:1;
}

.metis .tp-bullet.selected,
.metis .tp-bullet:hover  {

   background: rgba(255,255,255,1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(119,119,119,1)));
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(119,119,119,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#777777", GradientType=0 );

      }
.metis .tp-bullet-title:after {
        content:" ";
        position:absolute;
        left:50%;
        margin-left:-8px;
        width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 8px 0 8px;
		border-color: rgba(0,0,0,0.75) transparent transparent transparent;
        bottom:-8px;
   }

.metis .tp-tab-number {
        color: #fff;
        font-size: 40px;
        line-height: 30px;
        font-weight: 400;
        font-family: "Playfair Display";
        width: 50px;
        margin-right: 17px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-mask {
        padding-left: 20px;
        left: 0px;
        max-width: 90px !important;
        transition: 0.4s padding-left, 0.4s left, 0.4s max-width;
    }
    .metis:hover .tp-tab-mask {
        padding-left: 0px;
        left: 50px;
        max-width: 500px !important;
    }
    .metis .tp-tab-divider {
        border-right: 1px solid transparent;
        height: 30px;
        width: 1px;
        margin-top: 5px;
        display: inline-block;
        float: left;
    }
    .metis .tp-tab-title {
        color: #fff;
        font-size: 20px;
        line-height: 20px;
        font-weight: 400;
        font-family: "Playfair Display";
        position: relative;
        padding-top: 10px;
        padding-left: 30px;
        display: inline-block;
        transform: translateX(-100%);
        transition: 0.4s all;
    }
    .metis .tp-tab-title-mask {
        position: absolute;
        overflow: hidden;
        left: 67px;
    }
    .metis:hover .tp-tab-title {
        transform: translateX(0);
    }
    .metis .tp-tab {
        opacity: 0.15;
        transition: 0.4s all;
    }
    .metis .tp-tab:hover,
    .metis .tp-tab.selected {
        opacity: 1;
    }
    .metis .tp-tab.selected .tp-tab-divider {
        border-right: 1px solid #cdb083;
    }
    .metis.tp-tabs {
        max-width: 118px !important;
        padding-left: 50px;
    }
    .metis.tp-tabs:before {
        content: " ";
        height: 100%;
        width: 88px;
        background: rgba(0, 0, 0, 0.15);
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        left: 0px;
        top: 0px;
        position: absolute;
        transition: 0.4s all;
    }
    .metis.tp-tabs:hover:before {
        width: 118px;
    }
    @media (max-width: 499px) {
        .metis.tp-tabs:before {
            background: rgba(0, 0, 0, 0.75);
        }
    }

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 PERSEPHONE SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.persephone.tparrows {
	cursor:pointer;
	background:#aaa;
	background:rgba(200,200,200,0.5);
	width:40px;
	height:40px;
	position:absolute;
	display:block;
	z-index:100;
  border:1px solid #f5f5f5;
}
.persephone.tparrows:hover {
	background:#333;
}
.persephone.tparrows:before {
	font-family: "revicons";
	font-size:15px;
	color:#fff;
	display:block;
	line-height: 40px;
	text-align: center;
}
.persephone.tparrows.tp-leftarrow:before {
	content: "\E824";
}
.persephone.tparrows.tp-rightarrow:before {
	content: "\E825";
}



/* BULLETS */
.persephone.tp-bullets {
}
.persephone.tp-bullets:before {
	content:" ";
	position:absolute;
	width:100%;
	height:100%;
	background:#transparent;
	padding:10px;
	margin-left:-10px;margin-top:-10px;
	box-sizing:content-box;
}
.persephone .tp-bullet {
	width:12px;
	height:12px;
	position:absolute;
	background:#aaa;
	border:1px solid #e5e5e5;
	cursor: pointer;
	box-sizing:content-box;
}
.persephone .tp-bullet:hover,
.persephone .tp-bullet.selected {
	background:#222;
}
.persephone .tp-bullet-image {
}
.persephone .tp-bullet-title {
}


/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 URANUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.uranus.tparrows {
  width:50px;
  height:50px;
  background:transparent;
 }
 .uranus.tparrows:before {
 width:50px;
 height:50px;
 line-height:50px;
 font-size:40px;
 transition:all 0.3s;
-webkit-transition:all 0.3s;
 }

  .uranus.tparrows:hover:before {
    opacity:0.75;
  }

/* BULLETS */
.uranus .tp-bullet{
	border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  transition: box-shadow 0.3s ease;
  background:transparent;
}
.uranus .tp-bullet.selected,
.uranus .tp-bullet:hover {
  box-shadow: 0 0 0 2px #FFF;
  border:none;
  border-radius: 50%;

   background:transparent;
}



.uranus .tp-bullet-inner {
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease, transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  text-indent: -999em;
  cursor: pointer;
  position: absolute;
}

.uranus .tp-bullet.selected .tp-bullet-inner,
.uranus .tp-bullet:hover .tp-bullet-inner{
 transform: scale(0.4);
 -webkit-transform: scale(0.4);
 background-color:#fff;
}

/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/
/* ARROWS */
.zeus.tparrows {
  cursor:pointer;
  min-width:70px;
  min-height:70px;
  position:absolute;
  display:block;
  z-index:100;
  border-radius:35px;
  overflow:hidden;
  background:rgba(0,0,0,0.10);
}

.zeus.tparrows:before {
  font-family: "revicons";
  font-size:20px;
  color:#fff;
  display:block;
  line-height: 70px;
  text-align: center;
  z-index:2;
  position:relative;
}
.zeus.tparrows.tp-leftarrow:before {
  content: "\E824";
}
.zeus.tparrows.tp-rightarrow:before {
  content: "\E825";
}

.zeus .tp-title-wrap {
  background:#000;
  background:rgba(0,0,0,0.5);
  width:100%;
  height:100%;
  top:0px;
  left:0px;
  position:absolute;
  opacity:0;
  transform:scale(0);
  -webkit-transform:scale(0);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
   border-radius:50%;
 }
.zeus .tp-arr-imgholder {
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  background-position:center center;
  background-size:cover;
  border-radius:50%;
  transform:translateX(-100%);
  -webkit-transform:translateX(-100%);
   transition: all 0.3s;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;

 }
.zeus.tp-rightarrow .tp-arr-imgholder {
    transform:translateX(100%);
  -webkit-transform:translateX(100%);
      }
.zeus.tparrows:hover .tp-arr-imgholder {
  transform:translateX(0);
  -webkit-transform:translateX(0);
  opacity:1;
}

.zeus.tparrows:hover .tp-title-wrap {
  transform:scale(1);
  -webkit-transform:scale(1);
  opacity:1;
}


/* BULLETS */
.zeus .tp-bullet {
     box-sizing:content-box; -webkit-box-sizing:content-box; border-radius:50%;
      background-color: rgba(0, 0, 0, 0);
      transition: opacity 0.3s ease;
	  width:13px;height:13px;
	  border:2px solid #fff;
 }
.zeus .tp-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border-radius: 50%;
  background-color: #FFF;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
}
.zeus .tp-bullet:hover:after,
.zeus .tp-bullet.selected:after{
  transform: scale(1.2);
}

 .zeus .tp-bullet-image,
 .zeus .tp-bullet-imageoverlay{
        width:135px;
        height:60px;
        position:absolute;
        background:#000;
        background:rgba(0,0,0,0.5);
        bottom:25px;
        left:50%;
        margin-left:-65px;
        box-sizing:border-box;
        background-size:cover;
        background-position:center center;
        visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden;
      	backface-visibility: hidden;
		transform-origin: 50% 50%;
  		transition: all 0.3s ease;
        border-radius:4px;

}


.zeus .tp-bullet-title,
.zeus .tp-bullet-imageoverlay {
        z-index:2;
	  	transition: all 0.5s ease;
}
.zeus .tp-bullet-title {
        color:#fff;
        text-align:center;
        line-height:15px;
        font-size:13px;
        font-weight:600;
        z-index:3;
         visibility:hidden;
        opacity:0;
         -webkit-backface-visibility: hidden;
      	backface-visibility: hidden;
		transform-origin: 50% 50%;
  		transition: all 0.3s ease;
        position:absolute;
        bottom:45px;
        width:135px;
    	vertical-align:middle;
        left:-57px;
}

.zeus .tp-bullet:hover .tp-bullet-title,
.zeus .tp-bullet:hover .tp-bullet-image,
.zeus .tp-bullet:hover .tp-bullet-imageoverlay{
      opacity:1;
      visibility:visible;
   transform:translateY(0px);
    }

/* THUMBS */
.zeus .tp-thumb {
opacity:1
}

.zeus .tp-thumb-over {
  background:#000;
  background:rgba(0,0,0,0.25);
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  transition:all 0.3s;
}

.zeus .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:20px;
  right:20px;
  z-index:2;
}
.zeus .tp-thumb-more:before {
  content: "\E825";
}

.zeus .tp-thumb-title {
  font-family:"Raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:20px 35px 20px 20px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.zeus .tp-thumb.selected .tp-thumb-more:before,
.zeus .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.zeus .tp-thumb.selected .tp-thumb-over,
.zeus .tp-thumb:hover .tp-thumb-over {
 background:#000;
}
.zeus .tp-thumb.selected .tp-thumb-title,
.zeus .tp-thumb:hover .tp-thumb-title {
  color:#fff;

}


/* TABS */
.zeus .tp-tab {
  opacity:1;
  box-sizing:border-box;
}

.zeus .tp-tab-title {
display: block;
text-align: center;
background: rgba(0,0,0,0.25);
font-family: "Roboto Slab", serif;
font-weight: 700;
font-size: 13px;
line-height: 13px;
color: #fff;
padding: 9px 10px; }

.zeus .tp-tab:hover .tp-tab-title,
.zeus .tp-tab.selected .tp-tab-title {
 color: #000;
  background:rgba(255,255,255,1);
}



/*-----------------------------------------------------------------------------

- Revolution Slider 5.0 Navigatin Skin Style  -

 ZEUS SKIN

author:  ThemePunch
email:      info@themepunch.com
website:    http://www.themepunch.com
-----------------------------------------------------------------------------*/


.post-tabs .tp-thumb {
opacity:1
}

.post-tabs .tp-thumb-over {
  background:#252525;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  z-index:1;
  transition:all 0.3s;
}

.post-tabs .tp-thumb-more:before {
  font-family: "revicons";
  font-size:12px;
  color:#aaa;
  color:rgba(255,255,255,0.75);
  display:block;
  line-height: 12px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:15px;
  right:15px;
  z-index:2;
}
.post-tabs .tp-thumb-more:before {
  content: "\E825";
}

.post-tabs .tp-thumb-title {
  font-family:"raleway";
  letter-spacing:1px;
  font-size:12px;
  color:#fff;
  display:block;
  line-height: 15px;
  text-align: left;
  z-index:2;
  position:absolute;
  top:0px;
  left:0px;
  z-index:2;
  padding:15px 30px 15px 15px;
  width:100%;
  height:100%;
  box-sizing:border-box;
  transition:all 0.3s;
  -webkit-transition:all 0.3s;
  font-weight:500;
}

.post-tabs .tp-thumb.selected .tp-thumb-more:before,
.post-tabs .tp-thumb:hover .tp-thumb-more:before {
 color:#aaa;

}

.post-tabs .tp-thumb.selected .tp-thumb-over,
.post-tabs .tp-thumb:hover .tp-thumb-over {
 background:#fff;
}
.post-tabs .tp-thumb.selected .tp-thumb-title,
.post-tabs .tp-thumb:hover .tp-thumb-title {
  color:#000;

}
.tp-caption[data-typewriter]:after {
	
	position: absolute;
	
}

.tp-caption[data-typewriter-blinking]:after {
	
	position: static;
	
}

@-webkit-keyframes tp-typewriter {
	
	from {visibility: visible}
	to {visibility: hidden}
	
}

@keyframes tp-typewriter {
	
	from {visibility: visible}
	to {visibility: hidden}
	
}/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}
@charset "UTF-8";

/*!
 * Bootstrap v4.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

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

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

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

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

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

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

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

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

.table-bordered {
  border: 1px solid #dee2e6;
}

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

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

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

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

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

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

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

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

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

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

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

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

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

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

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

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

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

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

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

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

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

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

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

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

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

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

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

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

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label,
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

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

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }

  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

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

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:first-child {
  border-top-width: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

@media print {
  .d-print-none {
    display: none !important;
  }

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

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

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

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

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

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

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

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

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.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-wrap {
  flex-wrap: wrap !important;
}

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

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

.flex-fill {
  flex: 1 1 auto !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;
}

.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;
}

.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;
}

@media (min-width: 576px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }

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

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

  .flex-sm-fill {
    flex: 1 1 auto !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;
  }

  .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;
  }

  .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;
  }
}

@media (min-width: 768px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }

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

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

  .flex-md-fill {
    flex: 1 1 auto !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;
  }

  .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;
  }

  .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;
  }
}

@media (min-width: 992px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }

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

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

  .flex-lg-fill {
    flex: 1 1 auto !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;
  }

  .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;
  }

  .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;
  }
}

@media (min-width: 1200px) {
  .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-wrap {
    flex-wrap: wrap !important;
  }

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

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

  .flex-xl-fill {
    flex: 1 1 auto !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;
  }

  .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;
  }

  .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;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

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

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

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

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

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

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

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

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

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

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

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

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

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

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

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

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

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

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

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

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

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

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

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

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

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

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

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

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

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

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

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

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

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

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

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

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

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

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

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

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

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

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

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

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

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

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

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

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

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

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

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

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

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

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

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

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

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

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

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

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

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

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

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

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

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

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

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

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

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

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

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

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

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

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

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

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

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

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

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

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

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

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

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

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

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

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

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

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

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

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

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

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

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

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

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

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

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

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

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

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

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

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

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

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

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

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

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

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

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

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

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

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

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

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

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

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

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

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

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

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

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

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

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

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

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

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

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

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

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

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

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

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

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

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

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

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

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

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

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

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

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

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

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

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

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

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

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

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

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

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

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

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

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

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

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

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

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

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

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

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

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

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

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

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

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

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

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

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

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

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

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

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

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

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

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

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

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

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

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

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

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

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

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

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

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

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

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

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

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

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

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

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

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

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

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

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

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

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

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

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

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

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

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

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

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

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

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

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

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

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

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

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

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

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

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

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

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

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

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

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

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

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

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

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

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

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

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

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

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

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

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

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

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

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

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

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

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

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

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

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

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

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

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

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

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

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

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

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

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

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

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

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

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

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

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

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

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

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

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

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

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

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

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

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

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

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

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

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

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

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

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

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

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

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

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

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

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

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

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

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

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

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

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

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

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

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

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

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

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

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

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

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

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

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

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

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

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

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

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

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

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

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

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

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

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

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* MaterialDesignIcons.com */

@font-face {
  font-family: "Material Design Icons";
  src: url(/fonts/vendor/@mdi/materialdesignicons-webfont.eot?c7a79340c761ce19783b304cad1075a7);
  src: url(/fonts/vendor/@mdi/materialdesignicons-webfont.eot?c7a79340c761ce19783b304cad1075a7) format("embedded-opentype"), url(/fonts/vendor/@mdi/materialdesignicons-webfont.woff2?4c3075c9b0ad31df99fc923af3d91dc1) format("woff2"), url(/fonts/vendor/@mdi/materialdesignicons-webfont.woff?88ffecafb926b79650b99451e298ee37) format("woff"), url(/fonts/vendor/@mdi/materialdesignicons-webfont.ttf?2abd86f90b3fd9d18d950195282cd8d5) format("truetype");
  font-weight: normal;
  font-style: normal;
}

.mdi:before,
.mdi-set {
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: inherit;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mdi-ab-testing::before {
  content: "\F001C";
}

.mdi-access-point::before {
  content: "\F002";
}

.mdi-access-point-network::before {
  content: "\F003";
}

.mdi-access-point-network-off::before {
  content: "\FBBD";
}

.mdi-account::before {
  content: "\F004";
}

.mdi-account-alert::before {
  content: "\F005";
}

.mdi-account-alert-outline::before {
  content: "\FB2C";
}

.mdi-account-arrow-left::before {
  content: "\FB2D";
}

.mdi-account-arrow-left-outline::before {
  content: "\FB2E";
}

.mdi-account-arrow-right::before {
  content: "\FB2F";
}

.mdi-account-arrow-right-outline::before {
  content: "\FB30";
}

.mdi-account-badge::before {
  content: "\FD83";
}

.mdi-account-badge-alert::before {
  content: "\FD84";
}

.mdi-account-badge-alert-outline::before {
  content: "\FD85";
}

.mdi-account-badge-horizontal::before {
  content: "\FDF0";
}

.mdi-account-badge-horizontal-outline::before {
  content: "\FDF1";
}

.mdi-account-badge-outline::before {
  content: "\FD86";
}

.mdi-account-box::before {
  content: "\F006";
}

.mdi-account-box-multiple::before {
  content: "\F933";
}

.mdi-account-box-multiple-outline::before {
  content: "\F002C";
}

.mdi-account-box-outline::before {
  content: "\F007";
}

.mdi-account-cancel::before {
  content: "\F030A";
}

.mdi-account-cancel-outline::before {
  content: "\F030B";
}

.mdi-account-card-details::before {
  content: "\F5D2";
}

.mdi-account-card-details-outline::before {
  content: "\FD87";
}

.mdi-account-cash::before {
  content: "\F00C2";
}

.mdi-account-cash-outline::before {
  content: "\F00C3";
}

.mdi-account-check::before {
  content: "\F008";
}

.mdi-account-check-outline::before {
  content: "\FBBE";
}

.mdi-account-child::before {
  content: "\FA88";
}

.mdi-account-child-circle::before {
  content: "\FA89";
}

.mdi-account-child-outline::before {
  content: "\F00F3";
}

.mdi-account-circle::before {
  content: "\F009";
}

.mdi-account-circle-outline::before {
  content: "\FB31";
}

.mdi-account-clock::before {
  content: "\FB32";
}

.mdi-account-clock-outline::before {
  content: "\FB33";
}

.mdi-account-convert::before {
  content: "\F00A";
}

.mdi-account-convert-outline::before {
  content: "\F032C";
}

.mdi-account-details::before {
  content: "\F631";
}

.mdi-account-edit::before {
  content: "\F6BB";
}

.mdi-account-edit-outline::before {
  content: "\F001D";
}

.mdi-account-group::before {
  content: "\F848";
}

.mdi-account-group-outline::before {
  content: "\FB34";
}

.mdi-account-heart::before {
  content: "\F898";
}

.mdi-account-heart-outline::before {
  content: "\FBBF";
}

.mdi-account-key::before {
  content: "\F00B";
}

.mdi-account-key-outline::before {
  content: "\FBC0";
}

.mdi-account-lock::before {
  content: "\F0189";
}

.mdi-account-lock-outline::before {
  content: "\F018A";
}

.mdi-account-minus::before {
  content: "\F00D";
}

.mdi-account-minus-outline::before {
  content: "\FAEB";
}

.mdi-account-multiple::before {
  content: "\F00E";
}

.mdi-account-multiple-check::before {
  content: "\F8C4";
}

.mdi-account-multiple-check-outline::before {
  content: "\F0229";
}

.mdi-account-multiple-minus::before {
  content: "\F5D3";
}

.mdi-account-multiple-minus-outline::before {
  content: "\FBC1";
}

.mdi-account-multiple-outline::before {
  content: "\F00F";
}

.mdi-account-multiple-plus::before {
  content: "\F010";
}

.mdi-account-multiple-plus-outline::before {
  content: "\F7FF";
}

.mdi-account-multiple-remove::before {
  content: "\F0235";
}

.mdi-account-multiple-remove-outline::before {
  content: "\F0236";
}

.mdi-account-network::before {
  content: "\F011";
}

.mdi-account-network-outline::before {
  content: "\FBC2";
}

.mdi-account-off::before {
  content: "\F012";
}

.mdi-account-off-outline::before {
  content: "\FBC3";
}

.mdi-account-outline::before {
  content: "\F013";
}

.mdi-account-plus::before {
  content: "\F014";
}

.mdi-account-plus-outline::before {
  content: "\F800";
}

.mdi-account-question::before {
  content: "\FB35";
}

.mdi-account-question-outline::before {
  content: "\FB36";
}

.mdi-account-remove::before {
  content: "\F015";
}

.mdi-account-remove-outline::before {
  content: "\FAEC";
}

.mdi-account-search::before {
  content: "\F016";
}

.mdi-account-search-outline::before {
  content: "\F934";
}

.mdi-account-settings::before {
  content: "\F630";
}

.mdi-account-settings-outline::before {
  content: "\F00F4";
}

.mdi-account-star::before {
  content: "\F017";
}

.mdi-account-star-outline::before {
  content: "\FBC4";
}

.mdi-account-supervisor::before {
  content: "\FA8A";
}

.mdi-account-supervisor-circle::before {
  content: "\FA8B";
}

.mdi-account-supervisor-outline::before {
  content: "\F0158";
}

.mdi-account-switch::before {
  content: "\F019";
}

.mdi-account-tie::before {
  content: "\FCBF";
}

.mdi-account-tie-outline::before {
  content: "\F00F5";
}

.mdi-account-tie-voice::before {
  content: "\F0333";
}

.mdi-account-tie-voice-off::before {
  content: "\F0335";
}

.mdi-account-tie-voice-off-outline::before {
  content: "\F0336";
}

.mdi-account-tie-voice-outline::before {
  content: "\F0334";
}

.mdi-accusoft::before {
  content: "\F849";
}

.mdi-adjust::before {
  content: "\F01A";
}

.mdi-adobe::before {
  content: "\F935";
}

.mdi-adobe-acrobat::before {
  content: "\FFBD";
}

.mdi-air-conditioner::before {
  content: "\F01B";
}

.mdi-air-filter::before {
  content: "\FD1F";
}

.mdi-air-horn::before {
  content: "\FD88";
}

.mdi-air-humidifier::before {
  content: "\F00C4";
}

.mdi-air-purifier::before {
  content: "\FD20";
}

.mdi-airbag::before {
  content: "\FBC5";
}

.mdi-airballoon::before {
  content: "\F01C";
}

.mdi-airballoon-outline::before {
  content: "\F002D";
}

.mdi-airplane::before {
  content: "\F01D";
}

.mdi-airplane-landing::before {
  content: "\F5D4";
}

.mdi-airplane-off::before {
  content: "\F01E";
}

.mdi-airplane-takeoff::before {
  content: "\F5D5";
}

.mdi-airplay::before {
  content: "\F01F";
}

.mdi-airport::before {
  content: "\F84A";
}

.mdi-alarm::before {
  content: "\F020";
}

.mdi-alarm-bell::before {
  content: "\F78D";
}

.mdi-alarm-check::before {
  content: "\F021";
}

.mdi-alarm-light::before {
  content: "\F78E";
}

.mdi-alarm-light-outline::before {
  content: "\FBC6";
}

.mdi-alarm-multiple::before {
  content: "\F022";
}

.mdi-alarm-note::before {
  content: "\FE8E";
}

.mdi-alarm-note-off::before {
  content: "\FE8F";
}

.mdi-alarm-off::before {
  content: "\F023";
}

.mdi-alarm-plus::before {
  content: "\F024";
}

.mdi-alarm-snooze::before {
  content: "\F68D";
}

.mdi-album::before {
  content: "\F025";
}

.mdi-alert::before {
  content: "\F026";
}

.mdi-alert-box::before {
  content: "\F027";
}

.mdi-alert-box-outline::before {
  content: "\FCC0";
}

.mdi-alert-circle::before {
  content: "\F028";
}

.mdi-alert-circle-check::before {
  content: "\F0218";
}

.mdi-alert-circle-check-outline::before {
  content: "\F0219";
}

.mdi-alert-circle-outline::before {
  content: "\F5D6";
}

.mdi-alert-decagram::before {
  content: "\F6BC";
}

.mdi-alert-decagram-outline::before {
  content: "\FCC1";
}

.mdi-alert-octagon::before {
  content: "\F029";
}

.mdi-alert-octagon-outline::before {
  content: "\FCC2";
}

.mdi-alert-octagram::before {
  content: "\F766";
}

.mdi-alert-octagram-outline::before {
  content: "\FCC3";
}

.mdi-alert-outline::before {
  content: "\F02A";
}

.mdi-alert-rhombus::before {
  content: "\F01F9";
}

.mdi-alert-rhombus-outline::before {
  content: "\F01FA";
}

.mdi-alien::before {
  content: "\F899";
}

.mdi-alien-outline::before {
  content: "\F00F6";
}

.mdi-align-horizontal-center::before {
  content: "\F01EE";
}

.mdi-align-horizontal-left::before {
  content: "\F01ED";
}

.mdi-align-horizontal-right::before {
  content: "\F01EF";
}

.mdi-align-vertical-bottom::before {
  content: "\F01F0";
}

.mdi-align-vertical-center::before {
  content: "\F01F1";
}

.mdi-align-vertical-top::before {
  content: "\F01F2";
}

.mdi-all-inclusive::before {
  content: "\F6BD";
}

.mdi-allergy::before {
  content: "\F0283";
}

.mdi-alpha::before {
  content: "\F02B";
}

.mdi-alpha-a::before {
  content: "A";
}

.mdi-alpha-a-box::before {
  content: "\FAED";
}

.mdi-alpha-a-box-outline::before {
  content: "\FBC7";
}

.mdi-alpha-a-circle::before {
  content: "\FBC8";
}

.mdi-alpha-a-circle-outline::before {
  content: "\FBC9";
}

.mdi-alpha-b::before {
  content: "B";
}

.mdi-alpha-b-box::before {
  content: "\FAEE";
}

.mdi-alpha-b-box-outline::before {
  content: "\FBCA";
}

.mdi-alpha-b-circle::before {
  content: "\FBCB";
}

.mdi-alpha-b-circle-outline::before {
  content: "\FBCC";
}

.mdi-alpha-c::before {
  content: "C";
}

.mdi-alpha-c-box::before {
  content: "\FAEF";
}

.mdi-alpha-c-box-outline::before {
  content: "\FBCD";
}

.mdi-alpha-c-circle::before {
  content: "\FBCE";
}

.mdi-alpha-c-circle-outline::before {
  content: "\FBCF";
}

.mdi-alpha-d::before {
  content: "D";
}

.mdi-alpha-d-box::before {
  content: "\FAF0";
}

.mdi-alpha-d-box-outline::before {
  content: "\FBD0";
}

.mdi-alpha-d-circle::before {
  content: "\FBD1";
}

.mdi-alpha-d-circle-outline::before {
  content: "\FBD2";
}

.mdi-alpha-e::before {
  content: "E";
}

.mdi-alpha-e-box::before {
  content: "\FAF1";
}

.mdi-alpha-e-box-outline::before {
  content: "\FBD3";
}

.mdi-alpha-e-circle::before {
  content: "\FBD4";
}

.mdi-alpha-e-circle-outline::before {
  content: "\FBD5";
}

.mdi-alpha-f::before {
  content: "F";
}

.mdi-alpha-f-box::before {
  content: "\FAF2";
}

.mdi-alpha-f-box-outline::before {
  content: "\FBD6";
}

.mdi-alpha-f-circle::before {
  content: "\FBD7";
}

.mdi-alpha-f-circle-outline::before {
  content: "\FBD8";
}

.mdi-alpha-g::before {
  content: "G";
}

.mdi-alpha-g-box::before {
  content: "\FAF3";
}

.mdi-alpha-g-box-outline::before {
  content: "\FBD9";
}

.mdi-alpha-g-circle::before {
  content: "\FBDA";
}

.mdi-alpha-g-circle-outline::before {
  content: "\FBDB";
}

.mdi-alpha-h::before {
  content: "H";
}

.mdi-alpha-h-box::before {
  content: "\FAF4";
}

.mdi-alpha-h-box-outline::before {
  content: "\FBDC";
}

.mdi-alpha-h-circle::before {
  content: "\FBDD";
}

.mdi-alpha-h-circle-outline::before {
  content: "\FBDE";
}

.mdi-alpha-i::before {
  content: "I";
}

.mdi-alpha-i-box::before {
  content: "\FAF5";
}

.mdi-alpha-i-box-outline::before {
  content: "\FBDF";
}

.mdi-alpha-i-circle::before {
  content: "\FBE0";
}

.mdi-alpha-i-circle-outline::before {
  content: "\FBE1";
}

.mdi-alpha-j::before {
  content: "J";
}

.mdi-alpha-j-box::before {
  content: "\FAF6";
}

.mdi-alpha-j-box-outline::before {
  content: "\FBE2";
}

.mdi-alpha-j-circle::before {
  content: "\FBE3";
}

.mdi-alpha-j-circle-outline::before {
  content: "\FBE4";
}

.mdi-alpha-k::before {
  content: "K";
}

.mdi-alpha-k-box::before {
  content: "\FAF7";
}

.mdi-alpha-k-box-outline::before {
  content: "\FBE5";
}

.mdi-alpha-k-circle::before {
  content: "\FBE6";
}

.mdi-alpha-k-circle-outline::before {
  content: "\FBE7";
}

.mdi-alpha-l::before {
  content: "L";
}

.mdi-alpha-l-box::before {
  content: "\FAF8";
}

.mdi-alpha-l-box-outline::before {
  content: "\FBE8";
}

.mdi-alpha-l-circle::before {
  content: "\FBE9";
}

.mdi-alpha-l-circle-outline::before {
  content: "\FBEA";
}

.mdi-alpha-m::before {
  content: "M";
}

.mdi-alpha-m-box::before {
  content: "\FAF9";
}

.mdi-alpha-m-box-outline::before {
  content: "\FBEB";
}

.mdi-alpha-m-circle::before {
  content: "\FBEC";
}

.mdi-alpha-m-circle-outline::before {
  content: "\FBED";
}

.mdi-alpha-n::before {
  content: "N";
}

.mdi-alpha-n-box::before {
  content: "\FAFA";
}

.mdi-alpha-n-box-outline::before {
  content: "\FBEE";
}

.mdi-alpha-n-circle::before {
  content: "\FBEF";
}

.mdi-alpha-n-circle-outline::before {
  content: "\FBF0";
}

.mdi-alpha-o::before {
  content: "O";
}

.mdi-alpha-o-box::before {
  content: "\FAFB";
}

.mdi-alpha-o-box-outline::before {
  content: "\FBF1";
}

.mdi-alpha-o-circle::before {
  content: "\FBF2";
}

.mdi-alpha-o-circle-outline::before {
  content: "\FBF3";
}

.mdi-alpha-p::before {
  content: "P";
}

.mdi-alpha-p-box::before {
  content: "\FAFC";
}

.mdi-alpha-p-box-outline::before {
  content: "\FBF4";
}

.mdi-alpha-p-circle::before {
  content: "\FBF5";
}

.mdi-alpha-p-circle-outline::before {
  content: "\FBF6";
}

.mdi-alpha-q::before {
  content: "Q";
}

.mdi-alpha-q-box::before {
  content: "\FAFD";
}

.mdi-alpha-q-box-outline::before {
  content: "\FBF7";
}

.mdi-alpha-q-circle::before {
  content: "\FBF8";
}

.mdi-alpha-q-circle-outline::before {
  content: "\FBF9";
}

.mdi-alpha-r::before {
  content: "R";
}

.mdi-alpha-r-box::before {
  content: "\FAFE";
}

.mdi-alpha-r-box-outline::before {
  content: "\FBFA";
}

.mdi-alpha-r-circle::before {
  content: "\FBFB";
}

.mdi-alpha-r-circle-outline::before {
  content: "\FBFC";
}

.mdi-alpha-s::before {
  content: "S";
}

.mdi-alpha-s-box::before {
  content: "\FAFF";
}

.mdi-alpha-s-box-outline::before {
  content: "\FBFD";
}

.mdi-alpha-s-circle::before {
  content: "\FBFE";
}

.mdi-alpha-s-circle-outline::before {
  content: "\FBFF";
}

.mdi-alpha-t::before {
  content: "T";
}

.mdi-alpha-t-box::before {
  content: "\FB00";
}

.mdi-alpha-t-box-outline::before {
  content: "\FC00";
}

.mdi-alpha-t-circle::before {
  content: "\FC01";
}

.mdi-alpha-t-circle-outline::before {
  content: "\FC02";
}

.mdi-alpha-u::before {
  content: "U";
}

.mdi-alpha-u-box::before {
  content: "\FB01";
}

.mdi-alpha-u-box-outline::before {
  content: "\FC03";
}

.mdi-alpha-u-circle::before {
  content: "\FC04";
}

.mdi-alpha-u-circle-outline::before {
  content: "\FC05";
}

.mdi-alpha-v::before {
  content: "V";
}

.mdi-alpha-v-box::before {
  content: "\FB02";
}

.mdi-alpha-v-box-outline::before {
  content: "\FC06";
}

.mdi-alpha-v-circle::before {
  content: "\FC07";
}

.mdi-alpha-v-circle-outline::before {
  content: "\FC08";
}

.mdi-alpha-w::before {
  content: "W";
}

.mdi-alpha-w-box::before {
  content: "\FB03";
}

.mdi-alpha-w-box-outline::before {
  content: "\FC09";
}

.mdi-alpha-w-circle::before {
  content: "\FC0A";
}

.mdi-alpha-w-circle-outline::before {
  content: "\FC0B";
}

.mdi-alpha-x::before {
  content: "X";
}

.mdi-alpha-x-box::before {
  content: "\FB04";
}

.mdi-alpha-x-box-outline::before {
  content: "\FC0C";
}

.mdi-alpha-x-circle::before {
  content: "\FC0D";
}

.mdi-alpha-x-circle-outline::before {
  content: "\FC0E";
}

.mdi-alpha-y::before {
  content: "Y";
}

.mdi-alpha-y-box::before {
  content: "\FB05";
}

.mdi-alpha-y-box-outline::before {
  content: "\FC0F";
}

.mdi-alpha-y-circle::before {
  content: "\FC10";
}

.mdi-alpha-y-circle-outline::before {
  content: "\FC11";
}

.mdi-alpha-z::before {
  content: "Z";
}

.mdi-alpha-z-box::before {
  content: "\FB06";
}

.mdi-alpha-z-box-outline::before {
  content: "\FC12";
}

.mdi-alpha-z-circle::before {
  content: "\FC13";
}

.mdi-alpha-z-circle-outline::before {
  content: "\FC14";
}

.mdi-alphabetical::before {
  content: "\F02C";
}

.mdi-alphabetical-off::before {
  content: "\F002E";
}

.mdi-alphabetical-variant::before {
  content: "\F002F";
}

.mdi-alphabetical-variant-off::before {
  content: "\F0030";
}

.mdi-altimeter::before {
  content: "\F5D7";
}

.mdi-amazon::before {
  content: "\F02D";
}

.mdi-amazon-alexa::before {
  content: "\F8C5";
}

.mdi-amazon-drive::before {
  content: "\F02E";
}

.mdi-ambulance::before {
  content: "\F02F";
}

.mdi-ammunition::before {
  content: "\FCC4";
}

.mdi-ampersand::before {
  content: "\FA8C";
}

.mdi-amplifier::before {
  content: "\F030";
}

.mdi-amplifier-off::before {
  content: "\F01E0";
}

.mdi-anchor::before {
  content: "\F031";
}

.mdi-android::before {
  content: "\F032";
}

.mdi-android-auto::before {
  content: "\FA8D";
}

.mdi-android-debug-bridge::before {
  content: "\F033";
}

.mdi-android-head::before {
  content: "\F78F";
}

.mdi-android-messages::before {
  content: "\FD21";
}

.mdi-android-studio::before {
  content: "\F034";
}

.mdi-angle-acute::before {
  content: "\F936";
}

.mdi-angle-obtuse::before {
  content: "\F937";
}

.mdi-angle-right::before {
  content: "\F938";
}

.mdi-angular::before {
  content: "\F6B1";
}

.mdi-angularjs::before {
  content: "\F6BE";
}

.mdi-animation::before {
  content: "\F5D8";
}

.mdi-animation-outline::before {
  content: "\FA8E";
}

.mdi-animation-play::before {
  content: "\F939";
}

.mdi-animation-play-outline::before {
  content: "\FA8F";
}

.mdi-ansible::before {
  content: "\F00C5";
}

.mdi-antenna::before {
  content: "\F0144";
}

.mdi-anvil::before {
  content: "\F89A";
}

.mdi-apache-kafka::before {
  content: "\F0031";
}

.mdi-api::before {
  content: "\F00C6";
}

.mdi-api-off::before {
  content: "\F0282";
}

.mdi-apple::before {
  content: "\F035";
}

.mdi-apple-finder::before {
  content: "\F036";
}

.mdi-apple-icloud::before {
  content: "\F038";
}

.mdi-apple-ios::before {
  content: "\F037";
}

.mdi-apple-keyboard-caps::before {
  content: "\F632";
}

.mdi-apple-keyboard-command::before {
  content: "\F633";
}

.mdi-apple-keyboard-control::before {
  content: "\F634";
}

.mdi-apple-keyboard-option::before {
  content: "\F635";
}

.mdi-apple-keyboard-shift::before {
  content: "\F636";
}

.mdi-apple-safari::before {
  content: "\F039";
}

.mdi-application::before {
  content: "\F614";
}

.mdi-application-export::before {
  content: "\FD89";
}

.mdi-application-import::before {
  content: "\FD8A";
}

.mdi-approximately-equal::before {
  content: "\FFBE";
}

.mdi-approximately-equal-box::before {
  content: "\FFBF";
}

.mdi-apps::before {
  content: "\F03B";
}

.mdi-apps-box::before {
  content: "\FD22";
}

.mdi-arch::before {
  content: "\F8C6";
}

.mdi-archive::before {
  content: "\F03C";
}

.mdi-archive-arrow-down::before {
  content: "\F0284";
}

.mdi-archive-arrow-down-outline::before {
  content: "\F0285";
}

.mdi-archive-arrow-up::before {
  content: "\F0286";
}

.mdi-archive-arrow-up-outline::before {
  content: "\F0287";
}

.mdi-archive-outline::before {
  content: "\F0239";
}

.mdi-arm-flex::before {
  content: "\F008F";
}

.mdi-arm-flex-outline::before {
  content: "\F0090";
}

.mdi-arrange-bring-forward::before {
  content: "\F03D";
}

.mdi-arrange-bring-to-front::before {
  content: "\F03E";
}

.mdi-arrange-send-backward::before {
  content: "\F03F";
}

.mdi-arrange-send-to-back::before {
  content: "\F040";
}

.mdi-arrow-all::before {
  content: "\F041";
}

.mdi-arrow-bottom-left::before {
  content: "\F042";
}

.mdi-arrow-bottom-left-bold-outline::before {
  content: "\F9B6";
}

.mdi-arrow-bottom-left-thick::before {
  content: "\F9B7";
}

.mdi-arrow-bottom-right::before {
  content: "\F043";
}

.mdi-arrow-bottom-right-bold-outline::before {
  content: "\F9B8";
}

.mdi-arrow-bottom-right-thick::before {
  content: "\F9B9";
}

.mdi-arrow-collapse::before {
  content: "\F615";
}

.mdi-arrow-collapse-all::before {
  content: "\F044";
}

.mdi-arrow-collapse-down::before {
  content: "\F791";
}

.mdi-arrow-collapse-horizontal::before {
  content: "\F84B";
}

.mdi-arrow-collapse-left::before {
  content: "\F792";
}

.mdi-arrow-collapse-right::before {
  content: "\F793";
}

.mdi-arrow-collapse-up::before {
  content: "\F794";
}

.mdi-arrow-collapse-vertical::before {
  content: "\F84C";
}

.mdi-arrow-decision::before {
  content: "\F9BA";
}

.mdi-arrow-decision-auto::before {
  content: "\F9BB";
}

.mdi-arrow-decision-auto-outline::before {
  content: "\F9BC";
}

.mdi-arrow-decision-outline::before {
  content: "\F9BD";
}

.mdi-arrow-down::before {
  content: "\F045";
}

.mdi-arrow-down-bold::before {
  content: "\F72D";
}

.mdi-arrow-down-bold-box::before {
  content: "\F72E";
}

.mdi-arrow-down-bold-box-outline::before {
  content: "\F72F";
}

.mdi-arrow-down-bold-circle::before {
  content: "\F047";
}

.mdi-arrow-down-bold-circle-outline::before {
  content: "\F048";
}

.mdi-arrow-down-bold-hexagon-outline::before {
  content: "\F049";
}

.mdi-arrow-down-bold-outline::before {
  content: "\F9BE";
}

.mdi-arrow-down-box::before {
  content: "\F6BF";
}

.mdi-arrow-down-circle::before {
  content: "\FCB7";
}

.mdi-arrow-down-circle-outline::before {
  content: "\FCB8";
}

.mdi-arrow-down-drop-circle::before {
  content: "\F04A";
}

.mdi-arrow-down-drop-circle-outline::before {
  content: "\F04B";
}

.mdi-arrow-down-thick::before {
  content: "\F046";
}

.mdi-arrow-expand::before {
  content: "\F616";
}

.mdi-arrow-expand-all::before {
  content: "\F04C";
}

.mdi-arrow-expand-down::before {
  content: "\F795";
}

.mdi-arrow-expand-horizontal::before {
  content: "\F84D";
}

.mdi-arrow-expand-left::before {
  content: "\F796";
}

.mdi-arrow-expand-right::before {
  content: "\F797";
}

.mdi-arrow-expand-up::before {
  content: "\F798";
}

.mdi-arrow-expand-vertical::before {
  content: "\F84E";
}

.mdi-arrow-horizontal-lock::before {
  content: "\F0186";
}

.mdi-arrow-left::before {
  content: "\F04D";
}

.mdi-arrow-left-bold::before {
  content: "\F730";
}

.mdi-arrow-left-bold-box::before {
  content: "\F731";
}

.mdi-arrow-left-bold-box-outline::before {
  content: "\F732";
}

.mdi-arrow-left-bold-circle::before {
  content: "\F04F";
}

.mdi-arrow-left-bold-circle-outline::before {
  content: "\F050";
}

.mdi-arrow-left-bold-hexagon-outline::before {
  content: "\F051";
}

.mdi-arrow-left-bold-outline::before {
  content: "\F9BF";
}

.mdi-arrow-left-box::before {
  content: "\F6C0";
}

.mdi-arrow-left-circle::before {
  content: "\FCB9";
}

.mdi-arrow-left-circle-outline::before {
  content: "\FCBA";
}

.mdi-arrow-left-drop-circle::before {
  content: "\F052";
}

.mdi-arrow-left-drop-circle-outline::before {
  content: "\F053";
}

.mdi-arrow-left-right::before {
  content: "\FE90";
}

.mdi-arrow-left-right-bold::before {
  content: "\FE91";
}

.mdi-arrow-left-right-bold-outline::before {
  content: "\F9C0";
}

.mdi-arrow-left-thick::before {
  content: "\F04E";
}

.mdi-arrow-right::before {
  content: "\F054";
}

.mdi-arrow-right-bold::before {
  content: "\F733";
}

.mdi-arrow-right-bold-box::before {
  content: "\F734";
}

.mdi-arrow-right-bold-box-outline::before {
  content: "\F735";
}

.mdi-arrow-right-bold-circle::before {
  content: "\F056";
}

.mdi-arrow-right-bold-circle-outline::before {
  content: "\F057";
}

.mdi-arrow-right-bold-hexagon-outline::before {
  content: "\F058";
}

.mdi-arrow-right-bold-outline::before {
  content: "\F9C1";
}

.mdi-arrow-right-box::before {
  content: "\F6C1";
}

.mdi-arrow-right-circle::before {
  content: "\FCBB";
}

.mdi-arrow-right-circle-outline::before {
  content: "\FCBC";
}

.mdi-arrow-right-drop-circle::before {
  content: "\F059";
}

.mdi-arrow-right-drop-circle-outline::before {
  content: "\F05A";
}

.mdi-arrow-right-thick::before {
  content: "\F055";
}

.mdi-arrow-split-horizontal::before {
  content: "\F93A";
}

.mdi-arrow-split-vertical::before {
  content: "\F93B";
}

.mdi-arrow-top-left::before {
  content: "\F05B";
}

.mdi-arrow-top-left-bold-outline::before {
  content: "\F9C2";
}

.mdi-arrow-top-left-bottom-right::before {
  content: "\FE92";
}

.mdi-arrow-top-left-bottom-right-bold::before {
  content: "\FE93";
}

.mdi-arrow-top-left-thick::before {
  content: "\F9C3";
}

.mdi-arrow-top-right::before {
  content: "\F05C";
}

.mdi-arrow-top-right-bold-outline::before {
  content: "\F9C4";
}

.mdi-arrow-top-right-bottom-left::before {
  content: "\FE94";
}

.mdi-arrow-top-right-bottom-left-bold::before {
  content: "\FE95";
}

.mdi-arrow-top-right-thick::before {
  content: "\F9C5";
}

.mdi-arrow-up::before {
  content: "\F05D";
}

.mdi-arrow-up-bold::before {
  content: "\F736";
}

.mdi-arrow-up-bold-box::before {
  content: "\F737";
}

.mdi-arrow-up-bold-box-outline::before {
  content: "\F738";
}

.mdi-arrow-up-bold-circle::before {
  content: "\F05F";
}

.mdi-arrow-up-bold-circle-outline::before {
  content: "\F060";
}

.mdi-arrow-up-bold-hexagon-outline::before {
  content: "\F061";
}

.mdi-arrow-up-bold-outline::before {
  content: "\F9C6";
}

.mdi-arrow-up-box::before {
  content: "\F6C2";
}

.mdi-arrow-up-circle::before {
  content: "\FCBD";
}

.mdi-arrow-up-circle-outline::before {
  content: "\FCBE";
}

.mdi-arrow-up-down::before {
  content: "\FE96";
}

.mdi-arrow-up-down-bold::before {
  content: "\FE97";
}

.mdi-arrow-up-down-bold-outline::before {
  content: "\F9C7";
}

.mdi-arrow-up-drop-circle::before {
  content: "\F062";
}

.mdi-arrow-up-drop-circle-outline::before {
  content: "\F063";
}

.mdi-arrow-up-thick::before {
  content: "\F05E";
}

.mdi-arrow-vertical-lock::before {
  content: "\F0187";
}

.mdi-artist::before {
  content: "\F802";
}

.mdi-artist-outline::before {
  content: "\FCC5";
}

.mdi-artstation::before {
  content: "\FB37";
}

.mdi-aspect-ratio::before {
  content: "\FA23";
}

.mdi-assistant::before {
  content: "\F064";
}

.mdi-asterisk::before {
  content: "\F6C3";
}

.mdi-at::before {
  content: "\F065";
}

.mdi-atlassian::before {
  content: "\F803";
}

.mdi-atm::before {
  content: "\FD23";
}

.mdi-atom::before {
  content: "\F767";
}

.mdi-atom-variant::before {
  content: "\FE98";
}

.mdi-attachment::before {
  content: "\F066";
}

.mdi-audio-video::before {
  content: "\F93C";
}

.mdi-audio-video-off::before {
  content: "\F01E1";
}

.mdi-audiobook::before {
  content: "\F067";
}

.mdi-augmented-reality::before {
  content: "\F84F";
}

.mdi-auto-fix::before {
  content: "\F068";
}

.mdi-auto-upload::before {
  content: "\F069";
}

.mdi-autorenew::before {
  content: "\F06A";
}

.mdi-av-timer::before {
  content: "\F06B";
}

.mdi-aws::before {
  content: "\FDF2";
}

.mdi-axe::before {
  content: "\F8C7";
}

.mdi-axis::before {
  content: "\FD24";
}

.mdi-axis-arrow::before {
  content: "\FD25";
}

.mdi-axis-arrow-lock::before {
  content: "\FD26";
}

.mdi-axis-lock::before {
  content: "\FD27";
}

.mdi-axis-x-arrow::before {
  content: "\FD28";
}

.mdi-axis-x-arrow-lock::before {
  content: "\FD29";
}

.mdi-axis-x-rotate-clockwise::before {
  content: "\FD2A";
}

.mdi-axis-x-rotate-counterclockwise::before {
  content: "\FD2B";
}

.mdi-axis-x-y-arrow-lock::before {
  content: "\FD2C";
}

.mdi-axis-y-arrow::before {
  content: "\FD2D";
}

.mdi-axis-y-arrow-lock::before {
  content: "\FD2E";
}

.mdi-axis-y-rotate-clockwise::before {
  content: "\FD2F";
}

.mdi-axis-y-rotate-counterclockwise::before {
  content: "\FD30";
}

.mdi-axis-z-arrow::before {
  content: "\FD31";
}

.mdi-axis-z-arrow-lock::before {
  content: "\FD32";
}

.mdi-axis-z-rotate-clockwise::before {
  content: "\FD33";
}

.mdi-axis-z-rotate-counterclockwise::before {
  content: "\FD34";
}

.mdi-azure::before {
  content: "\F804";
}

.mdi-azure-devops::before {
  content: "\F0091";
}

.mdi-babel::before {
  content: "\FA24";
}

.mdi-baby::before {
  content: "\F06C";
}

.mdi-baby-bottle::before {
  content: "\FF56";
}

.mdi-baby-bottle-outline::before {
  content: "\FF57";
}

.mdi-baby-carriage::before {
  content: "\F68E";
}

.mdi-baby-carriage-off::before {
  content: "\FFC0";
}

.mdi-baby-face::before {
  content: "\FE99";
}

.mdi-baby-face-outline::before {
  content: "\FE9A";
}

.mdi-backburger::before {
  content: "\F06D";
}

.mdi-backspace::before {
  content: "\F06E";
}

.mdi-backspace-outline::before {
  content: "\FB38";
}

.mdi-backspace-reverse::before {
  content: "\FE9B";
}

.mdi-backspace-reverse-outline::before {
  content: "\FE9C";
}

.mdi-backup-restore::before {
  content: "\F06F";
}

.mdi-bacteria::before {
  content: "\FEF2";
}

.mdi-bacteria-outline::before {
  content: "\FEF3";
}

.mdi-badminton::before {
  content: "\F850";
}

.mdi-bag-carry-on::before {
  content: "\FF58";
}

.mdi-bag-carry-on-check::before {
  content: "\FD41";
}

.mdi-bag-carry-on-off::before {
  content: "\FF59";
}

.mdi-bag-checked::before {
  content: "\FF5A";
}

.mdi-bag-personal::before {
  content: "\FDF3";
}

.mdi-bag-personal-off::before {
  content: "\FDF4";
}

.mdi-bag-personal-off-outline::before {
  content: "\FDF5";
}

.mdi-bag-personal-outline::before {
  content: "\FDF6";
}

.mdi-baguette::before {
  content: "\FF5B";
}

.mdi-balloon::before {
  content: "\FA25";
}

.mdi-ballot::before {
  content: "\F9C8";
}

.mdi-ballot-outline::before {
  content: "\F9C9";
}

.mdi-ballot-recount::before {
  content: "\FC15";
}

.mdi-ballot-recount-outline::before {
  content: "\FC16";
}

.mdi-bandage::before {
  content: "\FD8B";
}

.mdi-bandcamp::before {
  content: "\F674";
}

.mdi-bank::before {
  content: "\F070";
}

.mdi-bank-minus::before {
  content: "\FD8C";
}

.mdi-bank-outline::before {
  content: "\FE9D";
}

.mdi-bank-plus::before {
  content: "\FD8D";
}

.mdi-bank-remove::before {
  content: "\FD8E";
}

.mdi-bank-transfer::before {
  content: "\FA26";
}

.mdi-bank-transfer-in::before {
  content: "\FA27";
}

.mdi-bank-transfer-out::before {
  content: "\FA28";
}

.mdi-barcode::before {
  content: "\F071";
}

.mdi-barcode-off::before {
  content: "\F0261";
}

.mdi-barcode-scan::before {
  content: "\F072";
}

.mdi-barley::before {
  content: "\F073";
}

.mdi-barley-off::before {
  content: "\FB39";
}

.mdi-barn::before {
  content: "\FB3A";
}

.mdi-barrel::before {
  content: "\F074";
}

.mdi-baseball::before {
  content: "\F851";
}

.mdi-baseball-bat::before {
  content: "\F852";
}

.mdi-basecamp::before {
  content: "\F075";
}

.mdi-bash::before {
  content: "\F01AE";
}

.mdi-basket::before {
  content: "\F076";
}

.mdi-basket-fill::before {
  content: "\F077";
}

.mdi-basket-outline::before {
  content: "\F01AC";
}

.mdi-basket-unfill::before {
  content: "\F078";
}

.mdi-basketball::before {
  content: "\F805";
}

.mdi-basketball-hoop::before {
  content: "\FC17";
}

.mdi-basketball-hoop-outline::before {
  content: "\FC18";
}

.mdi-bat::before {
  content: "\FB3B";
}

.mdi-battery::before {
  content: "\F079";
}

.mdi-battery-10::before {
  content: "\F07A";
}

.mdi-battery-10-bluetooth::before {
  content: "\F93D";
}

.mdi-battery-20::before {
  content: "\F07B";
}

.mdi-battery-20-bluetooth::before {
  content: "\F93E";
}

.mdi-battery-30::before {
  content: "\F07C";
}

.mdi-battery-30-bluetooth::before {
  content: "\F93F";
}

.mdi-battery-40::before {
  content: "\F07D";
}

.mdi-battery-40-bluetooth::before {
  content: "\F940";
}

.mdi-battery-50::before {
  content: "\F07E";
}

.mdi-battery-50-bluetooth::before {
  content: "\F941";
}

.mdi-battery-60::before {
  content: "\F07F";
}

.mdi-battery-60-bluetooth::before {
  content: "\F942";
}

.mdi-battery-70::before {
  content: "\F080";
}

.mdi-battery-70-bluetooth::before {
  content: "\F943";
}

.mdi-battery-80::before {
  content: "\F081";
}

.mdi-battery-80-bluetooth::before {
  content: "\F944";
}

.mdi-battery-90::before {
  content: "\F082";
}

.mdi-battery-90-bluetooth::before {
  content: "\F945";
}

.mdi-battery-alert::before {
  content: "\F083";
}

.mdi-battery-alert-bluetooth::before {
  content: "\F946";
}

.mdi-battery-alert-variant::before {
  content: "\F00F7";
}

.mdi-battery-alert-variant-outline::before {
  content: "\F00F8";
}

.mdi-battery-bluetooth::before {
  content: "\F947";
}

.mdi-battery-bluetooth-variant::before {
  content: "\F948";
}

.mdi-battery-charging::before {
  content: "\F084";
}

.mdi-battery-charging-10::before {
  content: "\F89B";
}

.mdi-battery-charging-100::before {
  content: "\F085";
}

.mdi-battery-charging-20::before {
  content: "\F086";
}

.mdi-battery-charging-30::before {
  content: "\F087";
}

.mdi-battery-charging-40::before {
  content: "\F088";
}

.mdi-battery-charging-50::before {
  content: "\F89C";
}

.mdi-battery-charging-60::before {
  content: "\F089";
}

.mdi-battery-charging-70::before {
  content: "\F89D";
}

.mdi-battery-charging-80::before {
  content: "\F08A";
}

.mdi-battery-charging-90::before {
  content: "\F08B";
}

.mdi-battery-charging-high::before {
  content: "\F02D1";
}

.mdi-battery-charging-low::before {
  content: "\F02CF";
}

.mdi-battery-charging-medium::before {
  content: "\F02D0";
}

.mdi-battery-charging-outline::before {
  content: "\F89E";
}

.mdi-battery-charging-wireless::before {
  content: "\F806";
}

.mdi-battery-charging-wireless-10::before {
  content: "\F807";
}

.mdi-battery-charging-wireless-20::before {
  content: "\F808";
}

.mdi-battery-charging-wireless-30::before {
  content: "\F809";
}

.mdi-battery-charging-wireless-40::before {
  content: "\F80A";
}

.mdi-battery-charging-wireless-50::before {
  content: "\F80B";
}

.mdi-battery-charging-wireless-60::before {
  content: "\F80C";
}

.mdi-battery-charging-wireless-70::before {
  content: "\F80D";
}

.mdi-battery-charging-wireless-80::before {
  content: "\F80E";
}

.mdi-battery-charging-wireless-90::before {
  content: "\F80F";
}

.mdi-battery-charging-wireless-alert::before {
  content: "\F810";
}

.mdi-battery-charging-wireless-outline::before {
  content: "\F811";
}

.mdi-battery-heart::before {
  content: "\F023A";
}

.mdi-battery-heart-outline::before {
  content: "\F023B";
}

.mdi-battery-heart-variant::before {
  content: "\F023C";
}

.mdi-battery-high::before {
  content: "\F02CE";
}

.mdi-battery-low::before {
  content: "\F02CC";
}

.mdi-battery-medium::before {
  content: "\F02CD";
}

.mdi-battery-minus::before {
  content: "\F08C";
}

.mdi-battery-negative::before {
  content: "\F08D";
}

.mdi-battery-off::before {
  content: "\F0288";
}

.mdi-battery-off-outline::before {
  content: "\F0289";
}

.mdi-battery-outline::before {
  content: "\F08E";
}

.mdi-battery-plus::before {
  content: "\F08F";
}

.mdi-battery-positive::before {
  content: "\F090";
}

.mdi-battery-unknown::before {
  content: "\F091";
}

.mdi-battery-unknown-bluetooth::before {
  content: "\F949";
}

.mdi-battlenet::before {
  content: "\FB3C";
}

.mdi-beach::before {
  content: "\F092";
}

.mdi-beaker::before {
  content: "\FCC6";
}

.mdi-beaker-alert::before {
  content: "\F0254";
}

.mdi-beaker-alert-outline::before {
  content: "\F0255";
}

.mdi-beaker-check::before {
  content: "\F0256";
}

.mdi-beaker-check-outline::before {
  content: "\F0257";
}

.mdi-beaker-minus::before {
  content: "\F0258";
}

.mdi-beaker-minus-outline::before {
  content: "\F0259";
}

.mdi-beaker-outline::before {
  content: "\F68F";
}

.mdi-beaker-plus::before {
  content: "\F025A";
}

.mdi-beaker-plus-outline::before {
  content: "\F025B";
}

.mdi-beaker-question::before {
  content: "\F025C";
}

.mdi-beaker-question-outline::before {
  content: "\F025D";
}

.mdi-beaker-remove::before {
  content: "\F025E";
}

.mdi-beaker-remove-outline::before {
  content: "\F025F";
}

.mdi-beats::before {
  content: "\F097";
}

.mdi-bed-double::before {
  content: "\F0092";
}

.mdi-bed-double-outline::before {
  content: "\F0093";
}

.mdi-bed-empty::before {
  content: "\F89F";
}

.mdi-bed-king::before {
  content: "\F0094";
}

.mdi-bed-king-outline::before {
  content: "\F0095";
}

.mdi-bed-queen::before {
  content: "\F0096";
}

.mdi-bed-queen-outline::before {
  content: "\F0097";
}

.mdi-bed-single::before {
  content: "\F0098";
}

.mdi-bed-single-outline::before {
  content: "\F0099";
}

.mdi-bee::before {
  content: "\FFC1";
}

.mdi-bee-flower::before {
  content: "\FFC2";
}

.mdi-beehive-outline::before {
  content: "\F00F9";
}

.mdi-beer::before {
  content: "\F098";
}

.mdi-beer-outline::before {
  content: "\F0337";
}

.mdi-behance::before {
  content: "\F099";
}

.mdi-bell::before {
  content: "\F09A";
}

.mdi-bell-alert::before {
  content: "\FD35";
}

.mdi-bell-alert-outline::before {
  content: "\FE9E";
}

.mdi-bell-check::before {
  content: "\F0210";
}

.mdi-bell-check-outline::before {
  content: "\F0211";
}

.mdi-bell-circle::before {
  content: "\FD36";
}

.mdi-bell-circle-outline::before {
  content: "\FD37";
}

.mdi-bell-off::before {
  content: "\F09B";
}

.mdi-bell-off-outline::before {
  content: "\FA90";
}

.mdi-bell-outline::before {
  content: "\F09C";
}

.mdi-bell-plus::before {
  content: "\F09D";
}

.mdi-bell-plus-outline::before {
  content: "\FA91";
}

.mdi-bell-ring::before {
  content: "\F09E";
}

.mdi-bell-ring-outline::before {
  content: "\F09F";
}

.mdi-bell-sleep::before {
  content: "\F0A0";
}

.mdi-bell-sleep-outline::before {
  content: "\FA92";
}

.mdi-beta::before {
  content: "\F0A1";
}

.mdi-betamax::before {
  content: "\F9CA";
}

.mdi-biathlon::before {
  content: "\FDF7";
}

.mdi-bible::before {
  content: "\F0A2";
}

.mdi-bicycle::before {
  content: "\F00C7";
}

.mdi-bicycle-basket::before {
  content: "\F0260";
}

.mdi-bike::before {
  content: "\F0A3";
}

.mdi-bike-fast::before {
  content: "\F014A";
}

.mdi-billboard::before {
  content: "\F0032";
}

.mdi-billiards::before {
  content: "\FB3D";
}

.mdi-billiards-rack::before {
  content: "\FB3E";
}

.mdi-bing::before {
  content: "\F0A4";
}

.mdi-binoculars::before {
  content: "\F0A5";
}

.mdi-bio::before {
  content: "\F0A6";
}

.mdi-biohazard::before {
  content: "\F0A7";
}

.mdi-bitbucket::before {
  content: "\F0A8";
}

.mdi-bitcoin::before {
  content: "\F812";
}

.mdi-black-mesa::before {
  content: "\F0A9";
}

.mdi-blackberry::before {
  content: "\F0AA";
}

.mdi-blender::before {
  content: "\FCC7";
}

.mdi-blender-software::before {
  content: "\F0AB";
}

.mdi-blinds::before {
  content: "\F0AC";
}

.mdi-blinds-open::before {
  content: "\F0033";
}

.mdi-block-helper::before {
  content: "\F0AD";
}

.mdi-blogger::before {
  content: "\F0AE";
}

.mdi-blood-bag::before {
  content: "\FCC8";
}

.mdi-bluetooth::before {
  content: "\F0AF";
}

.mdi-bluetooth-audio::before {
  content: "\F0B0";
}

.mdi-bluetooth-connect::before {
  content: "\F0B1";
}

.mdi-bluetooth-off::before {
  content: "\F0B2";
}

.mdi-bluetooth-settings::before {
  content: "\F0B3";
}

.mdi-bluetooth-transfer::before {
  content: "\F0B4";
}

.mdi-blur::before {
  content: "\F0B5";
}

.mdi-blur-linear::before {
  content: "\F0B6";
}

.mdi-blur-off::before {
  content: "\F0B7";
}

.mdi-blur-radial::before {
  content: "\F0B8";
}

.mdi-bolnisi-cross::before {
  content: "\FCC9";
}

.mdi-bolt::before {
  content: "\FD8F";
}

.mdi-bomb::before {
  content: "\F690";
}

.mdi-bomb-off::before {
  content: "\F6C4";
}

.mdi-bone::before {
  content: "\F0B9";
}

.mdi-book::before {
  content: "\F0BA";
}

.mdi-book-information-variant::before {
  content: "\F009A";
}

.mdi-book-lock::before {
  content: "\F799";
}

.mdi-book-lock-open::before {
  content: "\F79A";
}

.mdi-book-minus::before {
  content: "\F5D9";
}

.mdi-book-minus-multiple::before {
  content: "\FA93";
}

.mdi-book-multiple::before {
  content: "\F0BB";
}

.mdi-book-open::before {
  content: "\F0BD";
}

.mdi-book-open-outline::before {
  content: "\FB3F";
}

.mdi-book-open-page-variant::before {
  content: "\F5DA";
}

.mdi-book-open-variant::before {
  content: "\F0BE";
}

.mdi-book-outline::before {
  content: "\FB40";
}

.mdi-book-play::before {
  content: "\FE9F";
}

.mdi-book-play-outline::before {
  content: "\FEA0";
}

.mdi-book-plus::before {
  content: "\F5DB";
}

.mdi-book-plus-multiple::before {
  content: "\FA94";
}

.mdi-book-remove::before {
  content: "\FA96";
}

.mdi-book-remove-multiple::before {
  content: "\FA95";
}

.mdi-book-search::before {
  content: "\FEA1";
}

.mdi-book-search-outline::before {
  content: "\FEA2";
}

.mdi-book-variant::before {
  content: "\F0BF";
}

.mdi-book-variant-multiple::before {
  content: "\F0BC";
}

.mdi-bookmark::before {
  content: "\F0C0";
}

.mdi-bookmark-check::before {
  content: "\F0C1";
}

.mdi-bookmark-minus::before {
  content: "\F9CB";
}

.mdi-bookmark-minus-outline::before {
  content: "\F9CC";
}

.mdi-bookmark-multiple::before {
  content: "\FDF8";
}

.mdi-bookmark-multiple-outline::before {
  content: "\FDF9";
}

.mdi-bookmark-music::before {
  content: "\F0C2";
}

.mdi-bookmark-off::before {
  content: "\F9CD";
}

.mdi-bookmark-off-outline::before {
  content: "\F9CE";
}

.mdi-bookmark-outline::before {
  content: "\F0C3";
}

.mdi-bookmark-plus::before {
  content: "\F0C5";
}

.mdi-bookmark-plus-outline::before {
  content: "\F0C4";
}

.mdi-bookmark-remove::before {
  content: "\F0C6";
}

.mdi-bookshelf::before {
  content: "\F028A";
}

.mdi-boom-gate::before {
  content: "\FEA3";
}

.mdi-boom-gate-alert::before {
  content: "\FEA4";
}

.mdi-boom-gate-alert-outline::before {
  content: "\FEA5";
}

.mdi-boom-gate-down::before {
  content: "\FEA6";
}

.mdi-boom-gate-down-outline::before {
  content: "\FEA7";
}

.mdi-boom-gate-outline::before {
  content: "\FEA8";
}

.mdi-boom-gate-up::before {
  content: "\FEA9";
}

.mdi-boom-gate-up-outline::before {
  content: "\FEAA";
}

.mdi-boombox::before {
  content: "\F5DC";
}

.mdi-boomerang::before {
  content: "\F00FA";
}

.mdi-bootstrap::before {
  content: "\F6C5";
}

.mdi-border-all::before {
  content: "\F0C7";
}

.mdi-border-all-variant::before {
  content: "\F8A0";
}

.mdi-border-bottom::before {
  content: "\F0C8";
}

.mdi-border-bottom-variant::before {
  content: "\F8A1";
}

.mdi-border-color::before {
  content: "\F0C9";
}

.mdi-border-horizontal::before {
  content: "\F0CA";
}

.mdi-border-inside::before {
  content: "\F0CB";
}

.mdi-border-left::before {
  content: "\F0CC";
}

.mdi-border-left-variant::before {
  content: "\F8A2";
}

.mdi-border-none::before {
  content: "\F0CD";
}

.mdi-border-none-variant::before {
  content: "\F8A3";
}

.mdi-border-outside::before {
  content: "\F0CE";
}

.mdi-border-right::before {
  content: "\F0CF";
}

.mdi-border-right-variant::before {
  content: "\F8A4";
}

.mdi-border-style::before {
  content: "\F0D0";
}

.mdi-border-top::before {
  content: "\F0D1";
}

.mdi-border-top-variant::before {
  content: "\F8A5";
}

.mdi-border-vertical::before {
  content: "\F0D2";
}

.mdi-bottle-soda::before {
  content: "\F009B";
}

.mdi-bottle-soda-classic::before {
  content: "\F009C";
}

.mdi-bottle-soda-outline::before {
  content: "\F009D";
}

.mdi-bottle-tonic::before {
  content: "\F0159";
}

.mdi-bottle-tonic-outline::before {
  content: "\F015A";
}

.mdi-bottle-tonic-plus::before {
  content: "\F015B";
}

.mdi-bottle-tonic-plus-outline::before {
  content: "\F015C";
}

.mdi-bottle-tonic-skull::before {
  content: "\F015D";
}

.mdi-bottle-tonic-skull-outline::before {
  content: "\F015E";
}

.mdi-bottle-wine::before {
  content: "\F853";
}

.mdi-bottle-wine-outline::before {
  content: "\F033B";
}

.mdi-bow-tie::before {
  content: "\F677";
}

.mdi-bowl::before {
  content: "\F617";
}

.mdi-bowling::before {
  content: "\F0D3";
}

.mdi-box::before {
  content: "\F0D4";
}

.mdi-box-cutter::before {
  content: "\F0D5";
}

.mdi-box-shadow::before {
  content: "\F637";
}

.mdi-boxing-glove::before {
  content: "\FB41";
}

.mdi-braille::before {
  content: "\F9CF";
}

.mdi-brain::before {
  content: "\F9D0";
}

.mdi-bread-slice::before {
  content: "\FCCA";
}

.mdi-bread-slice-outline::before {
  content: "\FCCB";
}

.mdi-bridge::before {
  content: "\F618";
}

.mdi-briefcase::before {
  content: "\F0D6";
}

.mdi-briefcase-account::before {
  content: "\FCCC";
}

.mdi-briefcase-account-outline::before {
  content: "\FCCD";
}

.mdi-briefcase-check::before {
  content: "\F0D7";
}

.mdi-briefcase-check-outline::before {
  content: "\F0349";
}

.mdi-briefcase-clock::before {
  content: "\F00FB";
}

.mdi-briefcase-clock-outline::before {
  content: "\F00FC";
}

.mdi-briefcase-download::before {
  content: "\F0D8";
}

.mdi-briefcase-download-outline::before {
  content: "\FC19";
}

.mdi-briefcase-edit::before {
  content: "\FA97";
}

.mdi-briefcase-edit-outline::before {
  content: "\FC1A";
}

.mdi-briefcase-minus::before {
  content: "\FA29";
}

.mdi-briefcase-minus-outline::before {
  content: "\FC1B";
}

.mdi-briefcase-outline::before {
  content: "\F813";
}

.mdi-briefcase-plus::before {
  content: "\FA2A";
}

.mdi-briefcase-plus-outline::before {
  content: "\FC1C";
}

.mdi-briefcase-remove::before {
  content: "\FA2B";
}

.mdi-briefcase-remove-outline::before {
  content: "\FC1D";
}

.mdi-briefcase-search::before {
  content: "\FA2C";
}

.mdi-briefcase-search-outline::before {
  content: "\FC1E";
}

.mdi-briefcase-upload::before {
  content: "\F0D9";
}

.mdi-briefcase-upload-outline::before {
  content: "\FC1F";
}

.mdi-brightness-1::before {
  content: "\F0DA";
}

.mdi-brightness-2::before {
  content: "\F0DB";
}

.mdi-brightness-3::before {
  content: "\F0DC";
}

.mdi-brightness-4::before {
  content: "\F0DD";
}

.mdi-brightness-5::before {
  content: "\F0DE";
}

.mdi-brightness-6::before {
  content: "\F0DF";
}

.mdi-brightness-7::before {
  content: "\F0E0";
}

.mdi-brightness-auto::before {
  content: "\F0E1";
}

.mdi-brightness-percent::before {
  content: "\FCCE";
}

.mdi-broom::before {
  content: "\F0E2";
}

.mdi-brush::before {
  content: "\F0E3";
}

.mdi-buddhism::before {
  content: "\F94A";
}

.mdi-buffer::before {
  content: "\F619";
}

.mdi-bug::before {
  content: "\F0E4";
}

.mdi-bug-check::before {
  content: "\FA2D";
}

.mdi-bug-check-outline::before {
  content: "\FA2E";
}

.mdi-bug-outline::before {
  content: "\FA2F";
}

.mdi-bugle::before {
  content: "\FD90";
}

.mdi-bulldozer::before {
  content: "\FB07";
}

.mdi-bullet::before {
  content: "\FCCF";
}

.mdi-bulletin-board::before {
  content: "\F0E5";
}

.mdi-bullhorn::before {
  content: "\F0E6";
}

.mdi-bullhorn-outline::before {
  content: "\FB08";
}

.mdi-bullseye::before {
  content: "\F5DD";
}

.mdi-bullseye-arrow::before {
  content: "\F8C8";
}

.mdi-bulma::before {
  content: "\F0312";
}

.mdi-bunk-bed::before {
  content: "\F032D";
}

.mdi-bus::before {
  content: "\F0E7";
}

.mdi-bus-alert::before {
  content: "\FA98";
}

.mdi-bus-articulated-end::before {
  content: "\F79B";
}

.mdi-bus-articulated-front::before {
  content: "\F79C";
}

.mdi-bus-clock::before {
  content: "\F8C9";
}

.mdi-bus-double-decker::before {
  content: "\F79D";
}

.mdi-bus-marker::before {
  content: "\F023D";
}

.mdi-bus-multiple::before {
  content: "\FF5C";
}

.mdi-bus-school::before {
  content: "\F79E";
}

.mdi-bus-side::before {
  content: "\F79F";
}

.mdi-bus-stop::before {
  content: "\F0034";
}

.mdi-bus-stop-covered::before {
  content: "\F0035";
}

.mdi-bus-stop-uncovered::before {
  content: "\F0036";
}

.mdi-cached::before {
  content: "\F0E8";
}

.mdi-cactus::before {
  content: "\FD91";
}

.mdi-cake::before {
  content: "\F0E9";
}

.mdi-cake-layered::before {
  content: "\F0EA";
}

.mdi-cake-variant::before {
  content: "\F0EB";
}

.mdi-calculator::before {
  content: "\F0EC";
}

.mdi-calculator-variant::before {
  content: "\FA99";
}

.mdi-calendar::before {
  content: "\F0ED";
}

.mdi-calendar-account::before {
  content: "\FEF4";
}

.mdi-calendar-account-outline::before {
  content: "\FEF5";
}

.mdi-calendar-alert::before {
  content: "\FA30";
}

.mdi-calendar-arrow-left::before {
  content: "\F015F";
}

.mdi-calendar-arrow-right::before {
  content: "\F0160";
}

.mdi-calendar-blank::before {
  content: "\F0EE";
}

.mdi-calendar-blank-multiple::before {
  content: "\F009E";
}

.mdi-calendar-blank-outline::before {
  content: "\FB42";
}

.mdi-calendar-check::before {
  content: "\F0EF";
}

.mdi-calendar-check-outline::before {
  content: "\FC20";
}

.mdi-calendar-clock::before {
  content: "\F0F0";
}

.mdi-calendar-edit::before {
  content: "\F8A6";
}

.mdi-calendar-export::before {
  content: "\FB09";
}

.mdi-calendar-heart::before {
  content: "\F9D1";
}

.mdi-calendar-import::before {
  content: "\FB0A";
}

.mdi-calendar-minus::before {
  content: "\FD38";
}

.mdi-calendar-month::before {
  content: "\FDFA";
}

.mdi-calendar-month-outline::before {
  content: "\FDFB";
}

.mdi-calendar-multiple::before {
  content: "\F0F1";
}

.mdi-calendar-multiple-check::before {
  content: "\F0F2";
}

.mdi-calendar-multiselect::before {
  content: "\FA31";
}

.mdi-calendar-outline::before {
  content: "\FB43";
}

.mdi-calendar-plus::before {
  content: "\F0F3";
}

.mdi-calendar-question::before {
  content: "\F691";
}

.mdi-calendar-range::before {
  content: "\F678";
}

.mdi-calendar-range-outline::before {
  content: "\FB44";
}

.mdi-calendar-remove::before {
  content: "\F0F4";
}

.mdi-calendar-remove-outline::before {
  content: "\FC21";
}

.mdi-calendar-repeat::before {
  content: "\FEAB";
}

.mdi-calendar-repeat-outline::before {
  content: "\FEAC";
}

.mdi-calendar-search::before {
  content: "\F94B";
}

.mdi-calendar-star::before {
  content: "\F9D2";
}

.mdi-calendar-text::before {
  content: "\F0F5";
}

.mdi-calendar-text-outline::before {
  content: "\FC22";
}

.mdi-calendar-today::before {
  content: "\F0F6";
}

.mdi-calendar-week::before {
  content: "\FA32";
}

.mdi-calendar-week-begin::before {
  content: "\FA33";
}

.mdi-calendar-weekend::before {
  content: "\FEF6";
}

.mdi-calendar-weekend-outline::before {
  content: "\FEF7";
}

.mdi-call-made::before {
  content: "\F0F7";
}

.mdi-call-merge::before {
  content: "\F0F8";
}

.mdi-call-missed::before {
  content: "\F0F9";
}

.mdi-call-received::before {
  content: "\F0FA";
}

.mdi-call-split::before {
  content: "\F0FB";
}

.mdi-camcorder::before {
  content: "\F0FC";
}

.mdi-camcorder-box::before {
  content: "\F0FD";
}

.mdi-camcorder-box-off::before {
  content: "\F0FE";
}

.mdi-camcorder-off::before {
  content: "\F0FF";
}

.mdi-camera::before {
  content: "\F100";
}

.mdi-camera-account::before {
  content: "\F8CA";
}

.mdi-camera-burst::before {
  content: "\F692";
}

.mdi-camera-control::before {
  content: "\FB45";
}

.mdi-camera-enhance::before {
  content: "\F101";
}

.mdi-camera-enhance-outline::before {
  content: "\FB46";
}

.mdi-camera-front::before {
  content: "\F102";
}

.mdi-camera-front-variant::before {
  content: "\F103";
}

.mdi-camera-gopro::before {
  content: "\F7A0";
}

.mdi-camera-image::before {
  content: "\F8CB";
}

.mdi-camera-iris::before {
  content: "\F104";
}

.mdi-camera-metering-center::before {
  content: "\F7A1";
}

.mdi-camera-metering-matrix::before {
  content: "\F7A2";
}

.mdi-camera-metering-partial::before {
  content: "\F7A3";
}

.mdi-camera-metering-spot::before {
  content: "\F7A4";
}

.mdi-camera-off::before {
  content: "\F5DF";
}

.mdi-camera-outline::before {
  content: "\FD39";
}

.mdi-camera-party-mode::before {
  content: "\F105";
}

.mdi-camera-plus::before {
  content: "\FEF8";
}

.mdi-camera-plus-outline::before {
  content: "\FEF9";
}

.mdi-camera-rear::before {
  content: "\F106";
}

.mdi-camera-rear-variant::before {
  content: "\F107";
}

.mdi-camera-retake::before {
  content: "\FDFC";
}

.mdi-camera-retake-outline::before {
  content: "\FDFD";
}

.mdi-camera-switch::before {
  content: "\F108";
}

.mdi-camera-timer::before {
  content: "\F109";
}

.mdi-camera-wireless::before {
  content: "\FD92";
}

.mdi-camera-wireless-outline::before {
  content: "\FD93";
}

.mdi-campfire::before {
  content: "\FEFA";
}

.mdi-cancel::before {
  content: "\F739";
}

.mdi-candle::before {
  content: "\F5E2";
}

.mdi-candycane::before {
  content: "\F10A";
}

.mdi-cannabis::before {
  content: "\F7A5";
}

.mdi-caps-lock::before {
  content: "\FA9A";
}

.mdi-car::before {
  content: "\F10B";
}

.mdi-car-2-plus::before {
  content: "\F0037";
}

.mdi-car-3-plus::before {
  content: "\F0038";
}

.mdi-car-back::before {
  content: "\FDFE";
}

.mdi-car-battery::before {
  content: "\F10C";
}

.mdi-car-brake-abs::before {
  content: "\FC23";
}

.mdi-car-brake-alert::before {
  content: "\FC24";
}

.mdi-car-brake-hold::before {
  content: "\FD3A";
}

.mdi-car-brake-parking::before {
  content: "\FD3B";
}

.mdi-car-brake-retarder::before {
  content: "\F0039";
}

.mdi-car-child-seat::before {
  content: "\FFC3";
}

.mdi-car-clutch::before {
  content: "\F003A";
}

.mdi-car-connected::before {
  content: "\F10D";
}

.mdi-car-convertible::before {
  content: "\F7A6";
}

.mdi-car-coolant-level::before {
  content: "\F003B";
}

.mdi-car-cruise-control::before {
  content: "\FD3C";
}

.mdi-car-defrost-front::before {
  content: "\FD3D";
}

.mdi-car-defrost-rear::before {
  content: "\FD3E";
}

.mdi-car-door::before {
  content: "\FB47";
}

.mdi-car-door-lock::before {
  content: "\F00C8";
}

.mdi-car-electric::before {
  content: "\FB48";
}

.mdi-car-esp::before {
  content: "\FC25";
}

.mdi-car-estate::before {
  content: "\F7A7";
}

.mdi-car-hatchback::before {
  content: "\F7A8";
}

.mdi-car-info::before {
  content: "\F01E9";
}

.mdi-car-key::before {
  content: "\FB49";
}

.mdi-car-light-dimmed::before {
  content: "\FC26";
}

.mdi-car-light-fog::before {
  content: "\FC27";
}

.mdi-car-light-high::before {
  content: "\FC28";
}

.mdi-car-limousine::before {
  content: "\F8CC";
}

.mdi-car-multiple::before {
  content: "\FB4A";
}

.mdi-car-off::before {
  content: "\FDFF";
}

.mdi-car-parking-lights::before {
  content: "\FD3F";
}

.mdi-car-pickup::before {
  content: "\F7A9";
}

.mdi-car-seat::before {
  content: "\FFC4";
}

.mdi-car-seat-cooler::before {
  content: "\FFC5";
}

.mdi-car-seat-heater::before {
  content: "\FFC6";
}

.mdi-car-shift-pattern::before {
  content: "\FF5D";
}

.mdi-car-side::before {
  content: "\F7AA";
}

.mdi-car-sports::before {
  content: "\F7AB";
}

.mdi-car-tire-alert::before {
  content: "\FC29";
}

.mdi-car-traction-control::before {
  content: "\FD40";
}

.mdi-car-turbocharger::before {
  content: "\F003C";
}

.mdi-car-wash::before {
  content: "\F10E";
}

.mdi-car-windshield::before {
  content: "\F003D";
}

.mdi-car-windshield-outline::before {
  content: "\F003E";
}

.mdi-caravan::before {
  content: "\F7AC";
}

.mdi-card::before {
  content: "\FB4B";
}

.mdi-card-bulleted::before {
  content: "\FB4C";
}

.mdi-card-bulleted-off::before {
  content: "\FB4D";
}

.mdi-card-bulleted-off-outline::before {
  content: "\FB4E";
}

.mdi-card-bulleted-outline::before {
  content: "\FB4F";
}

.mdi-card-bulleted-settings::before {
  content: "\FB50";
}

.mdi-card-bulleted-settings-outline::before {
  content: "\FB51";
}

.mdi-card-outline::before {
  content: "\FB52";
}

.mdi-card-plus::before {
  content: "\F022A";
}

.mdi-card-plus-outline::before {
  content: "\F022B";
}

.mdi-card-search::before {
  content: "\F009F";
}

.mdi-card-search-outline::before {
  content: "\F00A0";
}

.mdi-card-text::before {
  content: "\FB53";
}

.mdi-card-text-outline::before {
  content: "\FB54";
}

.mdi-cards::before {
  content: "\F638";
}

.mdi-cards-club::before {
  content: "\F8CD";
}

.mdi-cards-diamond::before {
  content: "\F8CE";
}

.mdi-cards-diamond-outline::before {
  content: "\F003F";
}

.mdi-cards-heart::before {
  content: "\F8CF";
}

.mdi-cards-outline::before {
  content: "\F639";
}

.mdi-cards-playing-outline::before {
  content: "\F63A";
}

.mdi-cards-spade::before {
  content: "\F8D0";
}

.mdi-cards-variant::before {
  content: "\F6C6";
}

.mdi-carrot::before {
  content: "\F10F";
}

.mdi-cart::before {
  content: "\F110";
}

.mdi-cart-arrow-down::before {
  content: "\FD42";
}

.mdi-cart-arrow-right::before {
  content: "\FC2A";
}

.mdi-cart-arrow-up::before {
  content: "\FD43";
}

.mdi-cart-minus::before {
  content: "\FD44";
}

.mdi-cart-off::before {
  content: "\F66B";
}

.mdi-cart-outline::before {
  content: "\F111";
}

.mdi-cart-plus::before {
  content: "\F112";
}

.mdi-cart-remove::before {
  content: "\FD45";
}

.mdi-case-sensitive-alt::before {
  content: "\F113";
}

.mdi-cash::before {
  content: "\F114";
}

.mdi-cash-100::before {
  content: "\F115";
}

.mdi-cash-marker::before {
  content: "\FD94";
}

.mdi-cash-minus::before {
  content: "\F028B";
}

.mdi-cash-multiple::before {
  content: "\F116";
}

.mdi-cash-plus::before {
  content: "\F028C";
}

.mdi-cash-refund::before {
  content: "\FA9B";
}

.mdi-cash-register::before {
  content: "\FCD0";
}

.mdi-cash-remove::before {
  content: "\F028D";
}

.mdi-cash-usd::before {
  content: "\F01A1";
}

.mdi-cash-usd-outline::before {
  content: "\F117";
}

.mdi-cassette::before {
  content: "\F9D3";
}

.mdi-cast::before {
  content: "\F118";
}

.mdi-cast-audio::before {
  content: "\F0040";
}

.mdi-cast-connected::before {
  content: "\F119";
}

.mdi-cast-education::before {
  content: "\FE6D";
}

.mdi-cast-off::before {
  content: "\F789";
}

.mdi-castle::before {
  content: "\F11A";
}

.mdi-cat::before {
  content: "\F11B";
}

.mdi-cctv::before {
  content: "\F7AD";
}

.mdi-ceiling-light::before {
  content: "\F768";
}

.mdi-cellphone::before {
  content: "\F11C";
}

.mdi-cellphone-android::before {
  content: "\F11D";
}

.mdi-cellphone-arrow-down::before {
  content: "\F9D4";
}

.mdi-cellphone-basic::before {
  content: "\F11E";
}

.mdi-cellphone-dock::before {
  content: "\F11F";
}

.mdi-cellphone-erase::before {
  content: "\F94C";
}

.mdi-cellphone-information::before {
  content: "\FF5E";
}

.mdi-cellphone-iphone::before {
  content: "\F120";
}

.mdi-cellphone-key::before {
  content: "\F94D";
}

.mdi-cellphone-link::before {
  content: "\F121";
}

.mdi-cellphone-link-off::before {
  content: "\F122";
}

.mdi-cellphone-lock::before {
  content: "\F94E";
}

.mdi-cellphone-message::before {
  content: "\F8D2";
}

.mdi-cellphone-message-off::before {
  content: "\F00FD";
}

.mdi-cellphone-nfc::before {
  content: "\FEAD";
}

.mdi-cellphone-nfc-off::before {
  content: "\F0303";
}

.mdi-cellphone-off::before {
  content: "\F94F";
}

.mdi-cellphone-play::before {
  content: "\F0041";
}

.mdi-cellphone-screenshot::before {
  content: "\FA34";
}

.mdi-cellphone-settings::before {
  content: "\F123";
}

.mdi-cellphone-settings-variant::before {
  content: "\F950";
}

.mdi-cellphone-sound::before {
  content: "\F951";
}

.mdi-cellphone-text::before {
  content: "\F8D1";
}

.mdi-cellphone-wireless::before {
  content: "\F814";
}

.mdi-celtic-cross::before {
  content: "\FCD1";
}

.mdi-centos::before {
  content: "\F0145";
}

.mdi-certificate::before {
  content: "\F124";
}

.mdi-certificate-outline::before {
  content: "\F01B3";
}

.mdi-chair-rolling::before {
  content: "\FFBA";
}

.mdi-chair-school::before {
  content: "\F125";
}

.mdi-charity::before {
  content: "\FC2B";
}

.mdi-chart-arc::before {
  content: "\F126";
}

.mdi-chart-areaspline::before {
  content: "\F127";
}

.mdi-chart-areaspline-variant::before {
  content: "\FEAE";
}

.mdi-chart-bar::before {
  content: "\F128";
}

.mdi-chart-bar-stacked::before {
  content: "\F769";
}

.mdi-chart-bell-curve::before {
  content: "\FC2C";
}

.mdi-chart-bell-curve-cumulative::before {
  content: "\FFC7";
}

.mdi-chart-bubble::before {
  content: "\F5E3";
}

.mdi-chart-donut::before {
  content: "\F7AE";
}

.mdi-chart-donut-variant::before {
  content: "\F7AF";
}

.mdi-chart-gantt::before {
  content: "\F66C";
}

.mdi-chart-histogram::before {
  content: "\F129";
}

.mdi-chart-line::before {
  content: "\F12A";
}

.mdi-chart-line-stacked::before {
  content: "\F76A";
}

.mdi-chart-line-variant::before {
  content: "\F7B0";
}

.mdi-chart-multiline::before {
  content: "\F8D3";
}

.mdi-chart-multiple::before {
  content: "\F023E";
}

.mdi-chart-pie::before {
  content: "\F12B";
}

.mdi-chart-scatter-plot::before {
  content: "\FEAF";
}

.mdi-chart-scatter-plot-hexbin::before {
  content: "\F66D";
}

.mdi-chart-snakey::before {
  content: "\F020A";
}

.mdi-chart-snakey-variant::before {
  content: "\F020B";
}

.mdi-chart-timeline::before {
  content: "\F66E";
}

.mdi-chart-timeline-variant::before {
  content: "\FEB0";
}

.mdi-chart-tree::before {
  content: "\FEB1";
}

.mdi-chat::before {
  content: "\FB55";
}

.mdi-chat-alert::before {
  content: "\FB56";
}

.mdi-chat-alert-outline::before {
  content: "\F02F4";
}

.mdi-chat-outline::before {
  content: "\FEFB";
}

.mdi-chat-processing::before {
  content: "\FB57";
}

.mdi-chat-processing-outline::before {
  content: "\F02F5";
}

.mdi-chat-sleep::before {
  content: "\F02FC";
}

.mdi-chat-sleep-outline::before {
  content: "\F02FD";
}

.mdi-check::before {
  content: "\F12C";
}

.mdi-check-all::before {
  content: "\F12D";
}

.mdi-check-bold::before {
  content: "\FE6E";
}

.mdi-check-box-multiple-outline::before {
  content: "\FC2D";
}

.mdi-check-box-outline::before {
  content: "\FC2E";
}

.mdi-check-circle::before {
  content: "\F5E0";
}

.mdi-check-circle-outline::before {
  content: "\F5E1";
}

.mdi-check-decagram::before {
  content: "\F790";
}

.mdi-check-network::before {
  content: "\FC2F";
}

.mdi-check-network-outline::before {
  content: "\FC30";
}

.mdi-check-outline::before {
  content: "\F854";
}

.mdi-check-underline::before {
  content: "\FE70";
}

.mdi-check-underline-circle::before {
  content: "\FE71";
}

.mdi-check-underline-circle-outline::before {
  content: "\FE72";
}

.mdi-checkbook::before {
  content: "\FA9C";
}

.mdi-checkbox-blank::before {
  content: "\F12E";
}

.mdi-checkbox-blank-circle::before {
  content: "\F12F";
}

.mdi-checkbox-blank-circle-outline::before {
  content: "\F130";
}

.mdi-checkbox-blank-off::before {
  content: "\F0317";
}

.mdi-checkbox-blank-off-outline::before {
  content: "\F0318";
}

.mdi-checkbox-blank-outline::before {
  content: "\F131";
}

.mdi-checkbox-intermediate::before {
  content: "\F855";
}

.mdi-checkbox-marked::before {
  content: "\F132";
}

.mdi-checkbox-marked-circle::before {
  content: "\F133";
}

.mdi-checkbox-marked-circle-outline::before {
  content: "\F134";
}

.mdi-checkbox-marked-outline::before {
  content: "\F135";
}

.mdi-checkbox-multiple-blank::before {
  content: "\F136";
}

.mdi-checkbox-multiple-blank-circle::before {
  content: "\F63B";
}

.mdi-checkbox-multiple-blank-circle-outline::before {
  content: "\F63C";
}

.mdi-checkbox-multiple-blank-outline::before {
  content: "\F137";
}

.mdi-checkbox-multiple-marked::before {
  content: "\F138";
}

.mdi-checkbox-multiple-marked-circle::before {
  content: "\F63D";
}

.mdi-checkbox-multiple-marked-circle-outline::before {
  content: "\F63E";
}

.mdi-checkbox-multiple-marked-outline::before {
  content: "\F139";
}

.mdi-checkerboard::before {
  content: "\F13A";
}

.mdi-checkerboard-minus::before {
  content: "\F022D";
}

.mdi-checkerboard-plus::before {
  content: "\F022C";
}

.mdi-checkerboard-remove::before {
  content: "\F022E";
}

.mdi-cheese::before {
  content: "\F02E4";
}

.mdi-chef-hat::before {
  content: "\FB58";
}

.mdi-chemical-weapon::before {
  content: "\F13B";
}

.mdi-chess-bishop::before {
  content: "\F85B";
}

.mdi-chess-king::before {
  content: "\F856";
}

.mdi-chess-knight::before {
  content: "\F857";
}

.mdi-chess-pawn::before {
  content: "\F858";
}

.mdi-chess-queen::before {
  content: "\F859";
}

.mdi-chess-rook::before {
  content: "\F85A";
}

.mdi-chevron-double-down::before {
  content: "\F13C";
}

.mdi-chevron-double-left::before {
  content: "\F13D";
}

.mdi-chevron-double-right::before {
  content: "\F13E";
}

.mdi-chevron-double-up::before {
  content: "\F13F";
}

.mdi-chevron-down::before {
  content: "\F140";
}

.mdi-chevron-down-box::before {
  content: "\F9D5";
}

.mdi-chevron-down-box-outline::before {
  content: "\F9D6";
}

.mdi-chevron-down-circle::before {
  content: "\FB0B";
}

.mdi-chevron-down-circle-outline::before {
  content: "\FB0C";
}

.mdi-chevron-left::before {
  content: "\F141";
}

.mdi-chevron-left-box::before {
  content: "\F9D7";
}

.mdi-chevron-left-box-outline::before {
  content: "\F9D8";
}

.mdi-chevron-left-circle::before {
  content: "\FB0D";
}

.mdi-chevron-left-circle-outline::before {
  content: "\FB0E";
}

.mdi-chevron-right::before {
  content: "\F142";
}

.mdi-chevron-right-box::before {
  content: "\F9D9";
}

.mdi-chevron-right-box-outline::before {
  content: "\F9DA";
}

.mdi-chevron-right-circle::before {
  content: "\FB0F";
}

.mdi-chevron-right-circle-outline::before {
  content: "\FB10";
}

.mdi-chevron-triple-down::before {
  content: "\FD95";
}

.mdi-chevron-triple-left::before {
  content: "\FD96";
}

.mdi-chevron-triple-right::before {
  content: "\FD97";
}

.mdi-chevron-triple-up::before {
  content: "\FD98";
}

.mdi-chevron-up::before {
  content: "\F143";
}

.mdi-chevron-up-box::before {
  content: "\F9DB";
}

.mdi-chevron-up-box-outline::before {
  content: "\F9DC";
}

.mdi-chevron-up-circle::before {
  content: "\FB11";
}

.mdi-chevron-up-circle-outline::before {
  content: "\FB12";
}

.mdi-chili-hot::before {
  content: "\F7B1";
}

.mdi-chili-medium::before {
  content: "\F7B2";
}

.mdi-chili-mild::before {
  content: "\F7B3";
}

.mdi-chip::before {
  content: "\F61A";
}

.mdi-christianity::before {
  content: "\F952";
}

.mdi-christianity-outline::before {
  content: "\FCD2";
}

.mdi-church::before {
  content: "\F144";
}

.mdi-cigar::before {
  content: "\F01B4";
}

.mdi-circle::before {
  content: "\F764";
}

.mdi-circle-double::before {
  content: "\FEB2";
}

.mdi-circle-edit-outline::before {
  content: "\F8D4";
}

.mdi-circle-expand::before {
  content: "\FEB3";
}

.mdi-circle-medium::before {
  content: "\F9DD";
}

.mdi-circle-off-outline::before {
  content: "\F00FE";
}

.mdi-circle-outline::before {
  content: "\F765";
}

.mdi-circle-slice-1::before {
  content: "\FA9D";
}

.mdi-circle-slice-2::before {
  content: "\FA9E";
}

.mdi-circle-slice-3::before {
  content: "\FA9F";
}

.mdi-circle-slice-4::before {
  content: "\FAA0";
}

.mdi-circle-slice-5::before {
  content: "\FAA1";
}

.mdi-circle-slice-6::before {
  content: "\FAA2";
}

.mdi-circle-slice-7::before {
  content: "\FAA3";
}

.mdi-circle-slice-8::before {
  content: "\FAA4";
}

.mdi-circle-small::before {
  content: "\F9DE";
}

.mdi-circular-saw::before {
  content: "\FE73";
}

.mdi-cisco-webex::before {
  content: "\F145";
}

.mdi-city::before {
  content: "\F146";
}

.mdi-city-variant::before {
  content: "\FA35";
}

.mdi-city-variant-outline::before {
  content: "\FA36";
}

.mdi-clipboard::before {
  content: "\F147";
}

.mdi-clipboard-account::before {
  content: "\F148";
}

.mdi-clipboard-account-outline::before {
  content: "\FC31";
}

.mdi-clipboard-alert::before {
  content: "\F149";
}

.mdi-clipboard-alert-outline::before {
  content: "\FCD3";
}

.mdi-clipboard-arrow-down::before {
  content: "\F14A";
}

.mdi-clipboard-arrow-down-outline::before {
  content: "\FC32";
}

.mdi-clipboard-arrow-left::before {
  content: "\F14B";
}

.mdi-clipboard-arrow-left-outline::before {
  content: "\FCD4";
}

.mdi-clipboard-arrow-right::before {
  content: "\FCD5";
}

.mdi-clipboard-arrow-right-outline::before {
  content: "\FCD6";
}

.mdi-clipboard-arrow-up::before {
  content: "\FC33";
}

.mdi-clipboard-arrow-up-outline::before {
  content: "\FC34";
}

.mdi-clipboard-check::before {
  content: "\F14C";
}

.mdi-clipboard-check-multiple::before {
  content: "\F028E";
}

.mdi-clipboard-check-multiple-outline::before {
  content: "\F028F";
}

.mdi-clipboard-check-outline::before {
  content: "\F8A7";
}

.mdi-clipboard-file::before {
  content: "\F0290";
}

.mdi-clipboard-file-outline::before {
  content: "\F0291";
}

.mdi-clipboard-flow::before {
  content: "\F6C7";
}

.mdi-clipboard-flow-outline::before {
  content: "\F0142";
}

.mdi-clipboard-list::before {
  content: "\F00FF";
}

.mdi-clipboard-list-outline::before {
  content: "\F0100";
}

.mdi-clipboard-multiple::before {
  content: "\F0292";
}

.mdi-clipboard-multiple-outline::before {
  content: "\F0293";
}

.mdi-clipboard-outline::before {
  content: "\F14D";
}

.mdi-clipboard-play::before {
  content: "\FC35";
}

.mdi-clipboard-play-multiple::before {
  content: "\F0294";
}

.mdi-clipboard-play-multiple-outline::before {
  content: "\F0295";
}

.mdi-clipboard-play-outline::before {
  content: "\FC36";
}

.mdi-clipboard-plus::before {
  content: "\F750";
}

.mdi-clipboard-plus-outline::before {
  content: "\F034A";
}

.mdi-clipboard-pulse::before {
  content: "\F85C";
}

.mdi-clipboard-pulse-outline::before {
  content: "\F85D";
}

.mdi-clipboard-text::before {
  content: "\F14E";
}

.mdi-clipboard-text-multiple::before {
  content: "\F0296";
}

.mdi-clipboard-text-multiple-outline::before {
  content: "\F0297";
}

.mdi-clipboard-text-outline::before {
  content: "\FA37";
}

.mdi-clipboard-text-play::before {
  content: "\FC37";
}

.mdi-clipboard-text-play-outline::before {
  content: "\FC38";
}

.mdi-clippy::before {
  content: "\F14F";
}

.mdi-clock::before {
  content: "\F953";
}

.mdi-clock-alert::before {
  content: "\F954";
}

.mdi-clock-alert-outline::before {
  content: "\F5CE";
}

.mdi-clock-check::before {
  content: "\FFC8";
}

.mdi-clock-check-outline::before {
  content: "\FFC9";
}

.mdi-clock-digital::before {
  content: "\FEB4";
}

.mdi-clock-end::before {
  content: "\F151";
}

.mdi-clock-fast::before {
  content: "\F152";
}

.mdi-clock-in::before {
  content: "\F153";
}

.mdi-clock-out::before {
  content: "\F154";
}

.mdi-clock-outline::before {
  content: "\F150";
}

.mdi-clock-start::before {
  content: "\F155";
}

.mdi-close::before {
  content: "\F156";
}

.mdi-close-box::before {
  content: "\F157";
}

.mdi-close-box-multiple::before {
  content: "\FC39";
}

.mdi-close-box-multiple-outline::before {
  content: "\FC3A";
}

.mdi-close-box-outline::before {
  content: "\F158";
}

.mdi-close-circle::before {
  content: "\F159";
}

.mdi-close-circle-outline::before {
  content: "\F15A";
}

.mdi-close-network::before {
  content: "\F15B";
}

.mdi-close-network-outline::before {
  content: "\FC3B";
}

.mdi-close-octagon::before {
  content: "\F15C";
}

.mdi-close-octagon-outline::before {
  content: "\F15D";
}

.mdi-close-outline::before {
  content: "\F6C8";
}

.mdi-closed-caption::before {
  content: "\F15E";
}

.mdi-closed-caption-outline::before {
  content: "\FD99";
}

.mdi-cloud::before {
  content: "\F15F";
}

.mdi-cloud-alert::before {
  content: "\F9DF";
}

.mdi-cloud-braces::before {
  content: "\F7B4";
}

.mdi-cloud-check::before {
  content: "\F160";
}

.mdi-cloud-check-outline::before {
  content: "\F02F7";
}

.mdi-cloud-circle::before {
  content: "\F161";
}

.mdi-cloud-download::before {
  content: "\F162";
}

.mdi-cloud-download-outline::before {
  content: "\FB59";
}

.mdi-cloud-lock::before {
  content: "\F021C";
}

.mdi-cloud-lock-outline::before {
  content: "\F021D";
}

.mdi-cloud-off-outline::before {
  content: "\F164";
}

.mdi-cloud-outline::before {
  content: "\F163";
}

.mdi-cloud-print::before {
  content: "\F165";
}

.mdi-cloud-print-outline::before {
  content: "\F166";
}

.mdi-cloud-question::before {
  content: "\FA38";
}

.mdi-cloud-search::before {
  content: "\F955";
}

.mdi-cloud-search-outline::before {
  content: "\F956";
}

.mdi-cloud-sync::before {
  content: "\F63F";
}

.mdi-cloud-sync-outline::before {
  content: "\F0301";
}

.mdi-cloud-tags::before {
  content: "\F7B5";
}

.mdi-cloud-upload::before {
  content: "\F167";
}

.mdi-cloud-upload-outline::before {
  content: "\FB5A";
}

.mdi-clover::before {
  content: "\F815";
}

.mdi-coach-lamp::before {
  content: "\F0042";
}

.mdi-coat-rack::before {
  content: "\F00C9";
}

.mdi-code-array::before {
  content: "\F168";
}

.mdi-code-braces::before {
  content: "\F169";
}

.mdi-code-braces-box::before {
  content: "\F0101";
}

.mdi-code-brackets::before {
  content: "\F16A";
}

.mdi-code-equal::before {
  content: "\F16B";
}

.mdi-code-greater-than::before {
  content: "\F16C";
}

.mdi-code-greater-than-or-equal::before {
  content: "\F16D";
}

.mdi-code-less-than::before {
  content: "\F16E";
}

.mdi-code-less-than-or-equal::before {
  content: "\F16F";
}

.mdi-code-not-equal::before {
  content: "\F170";
}

.mdi-code-not-equal-variant::before {
  content: "\F171";
}

.mdi-code-parentheses::before {
  content: "\F172";
}

.mdi-code-parentheses-box::before {
  content: "\F0102";
}

.mdi-code-string::before {
  content: "\F173";
}

.mdi-code-tags::before {
  content: "\F174";
}

.mdi-code-tags-check::before {
  content: "\F693";
}

.mdi-codepen::before {
  content: "\F175";
}

.mdi-coffee::before {
  content: "\F176";
}

.mdi-coffee-maker::before {
  content: "\F00CA";
}

.mdi-coffee-off::before {
  content: "\FFCA";
}

.mdi-coffee-off-outline::before {
  content: "\FFCB";
}

.mdi-coffee-outline::before {
  content: "\F6C9";
}

.mdi-coffee-to-go::before {
  content: "\F177";
}

.mdi-coffee-to-go-outline::before {
  content: "\F0339";
}

.mdi-coffin::before {
  content: "\FB5B";
}

.mdi-cog-clockwise::before {
  content: "\F0208";
}

.mdi-cog-counterclockwise::before {
  content: "\F0209";
}

.mdi-cogs::before {
  content: "\F8D5";
}

.mdi-coin::before {
  content: "\F0196";
}

.mdi-coin-outline::before {
  content: "\F178";
}

.mdi-coins::before {
  content: "\F694";
}

.mdi-collage::before {
  content: "\F640";
}

.mdi-collapse-all::before {
  content: "\FAA5";
}

.mdi-collapse-all-outline::before {
  content: "\FAA6";
}

.mdi-color-helper::before {
  content: "\F179";
}

.mdi-comma::before {
  content: "\FE74";
}

.mdi-comma-box::before {
  content: "\FE75";
}

.mdi-comma-box-outline::before {
  content: "\FE76";
}

.mdi-comma-circle::before {
  content: "\FE77";
}

.mdi-comma-circle-outline::before {
  content: "\FE78";
}

.mdi-comment::before {
  content: "\F17A";
}

.mdi-comment-account::before {
  content: "\F17B";
}

.mdi-comment-account-outline::before {
  content: "\F17C";
}

.mdi-comment-alert::before {
  content: "\F17D";
}

.mdi-comment-alert-outline::before {
  content: "\F17E";
}

.mdi-comment-arrow-left::before {
  content: "\F9E0";
}

.mdi-comment-arrow-left-outline::before {
  content: "\F9E1";
}

.mdi-comment-arrow-right::before {
  content: "\F9E2";
}

.mdi-comment-arrow-right-outline::before {
  content: "\F9E3";
}

.mdi-comment-check::before {
  content: "\F17F";
}

.mdi-comment-check-outline::before {
  content: "\F180";
}

.mdi-comment-edit::before {
  content: "\F01EA";
}

.mdi-comment-edit-outline::before {
  content: "\F02EF";
}

.mdi-comment-eye::before {
  content: "\FA39";
}

.mdi-comment-eye-outline::before {
  content: "\FA3A";
}

.mdi-comment-multiple::before {
  content: "\F85E";
}

.mdi-comment-multiple-outline::before {
  content: "\F181";
}

.mdi-comment-outline::before {
  content: "\F182";
}

.mdi-comment-plus::before {
  content: "\F9E4";
}

.mdi-comment-plus-outline::before {
  content: "\F183";
}

.mdi-comment-processing::before {
  content: "\F184";
}

.mdi-comment-processing-outline::before {
  content: "\F185";
}

.mdi-comment-question::before {
  content: "\F816";
}

.mdi-comment-question-outline::before {
  content: "\F186";
}

.mdi-comment-quote::before {
  content: "\F0043";
}

.mdi-comment-quote-outline::before {
  content: "\F0044";
}

.mdi-comment-remove::before {
  content: "\F5DE";
}

.mdi-comment-remove-outline::before {
  content: "\F187";
}

.mdi-comment-search::before {
  content: "\FA3B";
}

.mdi-comment-search-outline::before {
  content: "\FA3C";
}

.mdi-comment-text::before {
  content: "\F188";
}

.mdi-comment-text-multiple::before {
  content: "\F85F";
}

.mdi-comment-text-multiple-outline::before {
  content: "\F860";
}

.mdi-comment-text-outline::before {
  content: "\F189";
}

.mdi-compare::before {
  content: "\F18A";
}

.mdi-compass::before {
  content: "\F18B";
}

.mdi-compass-off::before {
  content: "\FB5C";
}

.mdi-compass-off-outline::before {
  content: "\FB5D";
}

.mdi-compass-outline::before {
  content: "\F18C";
}

.mdi-concourse-ci::before {
  content: "\F00CB";
}

.mdi-console::before {
  content: "\F18D";
}

.mdi-console-line::before {
  content: "\F7B6";
}

.mdi-console-network::before {
  content: "\F8A8";
}

.mdi-console-network-outline::before {
  content: "\FC3C";
}

.mdi-consolidate::before {
  content: "\F0103";
}

.mdi-contact-mail::before {
  content: "\F18E";
}

.mdi-contact-mail-outline::before {
  content: "\FEB5";
}

.mdi-contact-phone::before {
  content: "\FEB6";
}

.mdi-contact-phone-outline::before {
  content: "\FEB7";
}

.mdi-contactless-payment::before {
  content: "\FD46";
}

.mdi-contacts::before {
  content: "\F6CA";
}

.mdi-contain::before {
  content: "\FA3D";
}

.mdi-contain-end::before {
  content: "\FA3E";
}

.mdi-contain-start::before {
  content: "\FA3F";
}

.mdi-content-copy::before {
  content: "\F18F";
}

.mdi-content-cut::before {
  content: "\F190";
}

.mdi-content-duplicate::before {
  content: "\F191";
}

.mdi-content-paste::before {
  content: "\F192";
}

.mdi-content-save::before {
  content: "\F193";
}

.mdi-content-save-alert::before {
  content: "\FF5F";
}

.mdi-content-save-alert-outline::before {
  content: "\FF60";
}

.mdi-content-save-all::before {
  content: "\F194";
}

.mdi-content-save-all-outline::before {
  content: "\FF61";
}

.mdi-content-save-edit::before {
  content: "\FCD7";
}

.mdi-content-save-edit-outline::before {
  content: "\FCD8";
}

.mdi-content-save-move::before {
  content: "\FE79";
}

.mdi-content-save-move-outline::before {
  content: "\FE7A";
}

.mdi-content-save-outline::before {
  content: "\F817";
}

.mdi-content-save-settings::before {
  content: "\F61B";
}

.mdi-content-save-settings-outline::before {
  content: "\FB13";
}

.mdi-contrast::before {
  content: "\F195";
}

.mdi-contrast-box::before {
  content: "\F196";
}

.mdi-contrast-circle::before {
  content: "\F197";
}

.mdi-controller-classic::before {
  content: "\FB5E";
}

.mdi-controller-classic-outline::before {
  content: "\FB5F";
}

.mdi-cookie::before {
  content: "\F198";
}

.mdi-coolant-temperature::before {
  content: "\F3C8";
}

.mdi-copyright::before {
  content: "\F5E6";
}

.mdi-cordova::before {
  content: "\F957";
}

.mdi-corn::before {
  content: "\F7B7";
}

.mdi-counter::before {
  content: "\F199";
}

.mdi-cow::before {
  content: "\F19A";
}

.mdi-cowboy::before {
  content: "\FEB8";
}

.mdi-cpu-32-bit::before {
  content: "\FEFC";
}

.mdi-cpu-64-bit::before {
  content: "\FEFD";
}

.mdi-crane::before {
  content: "\F861";
}

.mdi-creation::before {
  content: "\F1C9";
}

.mdi-creative-commons::before {
  content: "\FD47";
}

.mdi-credit-card::before {
  content: "\F0010";
}

.mdi-credit-card-clock::before {
  content: "\FEFE";
}

.mdi-credit-card-clock-outline::before {
  content: "\FFBC";
}

.mdi-credit-card-marker::before {
  content: "\F6A7";
}

.mdi-credit-card-marker-outline::before {
  content: "\FD9A";
}

.mdi-credit-card-minus::before {
  content: "\FFCC";
}

.mdi-credit-card-minus-outline::before {
  content: "\FFCD";
}

.mdi-credit-card-multiple::before {
  content: "\F0011";
}

.mdi-credit-card-multiple-outline::before {
  content: "\F19C";
}

.mdi-credit-card-off::before {
  content: "\F0012";
}

.mdi-credit-card-off-outline::before {
  content: "\F5E4";
}

.mdi-credit-card-outline::before {
  content: "\F19B";
}

.mdi-credit-card-plus::before {
  content: "\F0013";
}

.mdi-credit-card-plus-outline::before {
  content: "\F675";
}

.mdi-credit-card-refund::before {
  content: "\F0014";
}

.mdi-credit-card-refund-outline::before {
  content: "\FAA7";
}

.mdi-credit-card-remove::before {
  content: "\FFCE";
}

.mdi-credit-card-remove-outline::before {
  content: "\FFCF";
}

.mdi-credit-card-scan::before {
  content: "\F0015";
}

.mdi-credit-card-scan-outline::before {
  content: "\F19D";
}

.mdi-credit-card-settings::before {
  content: "\F0016";
}

.mdi-credit-card-settings-outline::before {
  content: "\F8D6";
}

.mdi-credit-card-wireless::before {
  content: "\F801";
}

.mdi-credit-card-wireless-outline::before {
  content: "\FD48";
}

.mdi-cricket::before {
  content: "\FD49";
}

.mdi-crop::before {
  content: "\F19E";
}

.mdi-crop-free::before {
  content: "\F19F";
}

.mdi-crop-landscape::before {
  content: "\F1A0";
}

.mdi-crop-portrait::before {
  content: "\F1A1";
}

.mdi-crop-rotate::before {
  content: "\F695";
}

.mdi-crop-square::before {
  content: "\F1A2";
}

.mdi-crosshairs::before {
  content: "\F1A3";
}

.mdi-crosshairs-gps::before {
  content: "\F1A4";
}

.mdi-crosshairs-off::before {
  content: "\FF62";
}

.mdi-crosshairs-question::before {
  content: "\F0161";
}

.mdi-crown::before {
  content: "\F1A5";
}

.mdi-crown-outline::before {
  content: "\F01FB";
}

.mdi-cryengine::before {
  content: "\F958";
}

.mdi-crystal-ball::before {
  content: "\FB14";
}

.mdi-cube::before {
  content: "\F1A6";
}

.mdi-cube-outline::before {
  content: "\F1A7";
}

.mdi-cube-scan::before {
  content: "\FB60";
}

.mdi-cube-send::before {
  content: "\F1A8";
}

.mdi-cube-unfolded::before {
  content: "\F1A9";
}

.mdi-cup::before {
  content: "\F1AA";
}

.mdi-cup-off::before {
  content: "\F5E5";
}

.mdi-cup-outline::before {
  content: "\F033A";
}

.mdi-cup-water::before {
  content: "\F1AB";
}

.mdi-cupboard::before {
  content: "\FF63";
}

.mdi-cupboard-outline::before {
  content: "\FF64";
}

.mdi-cupcake::before {
  content: "\F959";
}

.mdi-curling::before {
  content: "\F862";
}

.mdi-currency-bdt::before {
  content: "\F863";
}

.mdi-currency-brl::before {
  content: "\FB61";
}

.mdi-currency-btc::before {
  content: "\F1AC";
}

.mdi-currency-cny::before {
  content: "\F7B9";
}

.mdi-currency-eth::before {
  content: "\F7BA";
}

.mdi-currency-eur::before {
  content: "\F1AD";
}

.mdi-currency-eur-off::before {
  content: "\F0340";
}

.mdi-currency-gbp::before {
  content: "\F1AE";
}

.mdi-currency-ils::before {
  content: "\FC3D";
}

.mdi-currency-inr::before {
  content: "\F1AF";
}

.mdi-currency-jpy::before {
  content: "\F7BB";
}

.mdi-currency-krw::before {
  content: "\F7BC";
}

.mdi-currency-kzt::before {
  content: "\F864";
}

.mdi-currency-ngn::before {
  content: "\F1B0";
}

.mdi-currency-php::before {
  content: "\F9E5";
}

.mdi-currency-rial::before {
  content: "\FEB9";
}

.mdi-currency-rub::before {
  content: "\F1B1";
}

.mdi-currency-sign::before {
  content: "\F7BD";
}

.mdi-currency-try::before {
  content: "\F1B2";
}

.mdi-currency-twd::before {
  content: "\F7BE";
}

.mdi-currency-usd::before {
  content: "\F1B3";
}

.mdi-currency-usd-off::before {
  content: "\F679";
}

.mdi-current-ac::before {
  content: "\F95A";
}

.mdi-current-dc::before {
  content: "\F95B";
}

.mdi-cursor-default::before {
  content: "\F1B4";
}

.mdi-cursor-default-click::before {
  content: "\FCD9";
}

.mdi-cursor-default-click-outline::before {
  content: "\FCDA";
}

.mdi-cursor-default-gesture::before {
  content: "\F0152";
}

.mdi-cursor-default-gesture-outline::before {
  content: "\F0153";
}

.mdi-cursor-default-outline::before {
  content: "\F1B5";
}

.mdi-cursor-move::before {
  content: "\F1B6";
}

.mdi-cursor-pointer::before {
  content: "\F1B7";
}

.mdi-cursor-text::before {
  content: "\F5E7";
}

.mdi-database::before {
  content: "\F1B8";
}

.mdi-database-check::before {
  content: "\FAA8";
}

.mdi-database-edit::before {
  content: "\FB62";
}

.mdi-database-export::before {
  content: "\F95D";
}

.mdi-database-import::before {
  content: "\F95C";
}

.mdi-database-lock::before {
  content: "\FAA9";
}

.mdi-database-marker::before {
  content: "\F0321";
}

.mdi-database-minus::before {
  content: "\F1B9";
}

.mdi-database-plus::before {
  content: "\F1BA";
}

.mdi-database-refresh::before {
  content: "\FCDB";
}

.mdi-database-remove::before {
  content: "\FCDC";
}

.mdi-database-search::before {
  content: "\F865";
}

.mdi-database-settings::before {
  content: "\FCDD";
}

.mdi-death-star::before {
  content: "\F8D7";
}

.mdi-death-star-variant::before {
  content: "\F8D8";
}

.mdi-deathly-hallows::before {
  content: "\FB63";
}

.mdi-debian::before {
  content: "\F8D9";
}

.mdi-debug-step-into::before {
  content: "\F1BB";
}

.mdi-debug-step-out::before {
  content: "\F1BC";
}

.mdi-debug-step-over::before {
  content: "\F1BD";
}

.mdi-decagram::before {
  content: "\F76B";
}

.mdi-decagram-outline::before {
  content: "\F76C";
}

.mdi-decimal::before {
  content: "\F00CC";
}

.mdi-decimal-comma::before {
  content: "\F00CD";
}

.mdi-decimal-comma-decrease::before {
  content: "\F00CE";
}

.mdi-decimal-comma-increase::before {
  content: "\F00CF";
}

.mdi-decimal-decrease::before {
  content: "\F1BE";
}

.mdi-decimal-increase::before {
  content: "\F1BF";
}

.mdi-delete::before {
  content: "\F1C0";
}

.mdi-delete-alert::before {
  content: "\F00D0";
}

.mdi-delete-alert-outline::before {
  content: "\F00D1";
}

.mdi-delete-circle::before {
  content: "\F682";
}

.mdi-delete-circle-outline::before {
  content: "\FB64";
}

.mdi-delete-empty::before {
  content: "\F6CB";
}

.mdi-delete-empty-outline::before {
  content: "\FEBA";
}

.mdi-delete-forever::before {
  content: "\F5E8";
}

.mdi-delete-forever-outline::before {
  content: "\FB65";
}

.mdi-delete-off::before {
  content: "\F00D2";
}

.mdi-delete-off-outline::before {
  content: "\F00D3";
}

.mdi-delete-outline::before {
  content: "\F9E6";
}

.mdi-delete-restore::before {
  content: "\F818";
}

.mdi-delete-sweep::before {
  content: "\F5E9";
}

.mdi-delete-sweep-outline::before {
  content: "\FC3E";
}

.mdi-delete-variant::before {
  content: "\F1C1";
}

.mdi-delta::before {
  content: "\F1C2";
}

.mdi-desk::before {
  content: "\F0264";
}

.mdi-desk-lamp::before {
  content: "\F95E";
}

.mdi-deskphone::before {
  content: "\F1C3";
}

.mdi-desktop-classic::before {
  content: "\F7BF";
}

.mdi-desktop-mac::before {
  content: "\F1C4";
}

.mdi-desktop-mac-dashboard::before {
  content: "\F9E7";
}

.mdi-desktop-tower::before {
  content: "\F1C5";
}

.mdi-desktop-tower-monitor::before {
  content: "\FAAA";
}

.mdi-details::before {
  content: "\F1C6";
}

.mdi-dev-to::before {
  content: "\FD4A";
}

.mdi-developer-board::before {
  content: "\F696";
}

.mdi-deviantart::before {
  content: "\F1C7";
}

.mdi-devices::before {
  content: "\FFD0";
}

.mdi-diabetes::before {
  content: "\F0151";
}

.mdi-dialpad::before {
  content: "\F61C";
}

.mdi-diameter::before {
  content: "\FC3F";
}

.mdi-diameter-outline::before {
  content: "\FC40";
}

.mdi-diameter-variant::before {
  content: "\FC41";
}

.mdi-diamond::before {
  content: "\FB66";
}

.mdi-diamond-outline::before {
  content: "\FB67";
}

.mdi-diamond-stone::before {
  content: "\F1C8";
}

.mdi-dice-1::before {
  content: "\F1CA";
}

.mdi-dice-1-outline::before {
  content: "\F0175";
}

.mdi-dice-2::before {
  content: "\F1CB";
}

.mdi-dice-2-outline::before {
  content: "\F0176";
}

.mdi-dice-3::before {
  content: "\F1CC";
}

.mdi-dice-3-outline::before {
  content: "\F0177";
}

.mdi-dice-4::before {
  content: "\F1CD";
}

.mdi-dice-4-outline::before {
  content: "\F0178";
}

.mdi-dice-5::before {
  content: "\F1CE";
}

.mdi-dice-5-outline::before {
  content: "\F0179";
}

.mdi-dice-6::before {
  content: "\F1CF";
}

.mdi-dice-6-outline::before {
  content: "\F017A";
}

.mdi-dice-d10::before {
  content: "\F017E";
}

.mdi-dice-d10-outline::before {
  content: "\F76E";
}

.mdi-dice-d12::before {
  content: "\F017F";
}

.mdi-dice-d12-outline::before {
  content: "\F866";
}

.mdi-dice-d20::before {
  content: "\F0180";
}

.mdi-dice-d20-outline::before {
  content: "\F5EA";
}

.mdi-dice-d4::before {
  content: "\F017B";
}

.mdi-dice-d4-outline::before {
  content: "\F5EB";
}

.mdi-dice-d6::before {
  content: "\F017C";
}

.mdi-dice-d6-outline::before {
  content: "\F5EC";
}

.mdi-dice-d8::before {
  content: "\F017D";
}

.mdi-dice-d8-outline::before {
  content: "\F5ED";
}

.mdi-dice-multiple::before {
  content: "\F76D";
}

.mdi-dice-multiple-outline::before {
  content: "\F0181";
}

.mdi-dictionary::before {
  content: "\F61D";
}

.mdi-digital-ocean::before {
  content: "\F0262";
}

.mdi-dip-switch::before {
  content: "\F7C0";
}

.mdi-directions::before {
  content: "\F1D0";
}

.mdi-directions-fork::before {
  content: "\F641";
}

.mdi-disc::before {
  content: "\F5EE";
}

.mdi-disc-alert::before {
  content: "\F1D1";
}

.mdi-disc-player::before {
  content: "\F95F";
}

.mdi-discord::before {
  content: "\F66F";
}

.mdi-dishwasher::before {
  content: "\FAAB";
}

.mdi-dishwasher-alert::before {
  content: "\F01E3";
}

.mdi-dishwasher-off::before {
  content: "\F01E4";
}

.mdi-disqus::before {
  content: "\F1D2";
}

.mdi-disqus-outline::before {
  content: "\F1D3";
}

.mdi-distribute-horizontal-center::before {
  content: "\F01F4";
}

.mdi-distribute-horizontal-left::before {
  content: "\F01F3";
}

.mdi-distribute-horizontal-right::before {
  content: "\F01F5";
}

.mdi-distribute-vertical-bottom::before {
  content: "\F01F6";
}

.mdi-distribute-vertical-center::before {
  content: "\F01F7";
}

.mdi-distribute-vertical-top::before {
  content: "\F01F8";
}

.mdi-diving-flippers::before {
  content: "\FD9B";
}

.mdi-diving-helmet::before {
  content: "\FD9C";
}

.mdi-diving-scuba::before {
  content: "\FD9D";
}

.mdi-diving-scuba-flag::before {
  content: "\FD9E";
}

.mdi-diving-scuba-tank::before {
  content: "\FD9F";
}

.mdi-diving-scuba-tank-multiple::before {
  content: "\FDA0";
}

.mdi-diving-snorkel::before {
  content: "\FDA1";
}

.mdi-division::before {
  content: "\F1D4";
}

.mdi-division-box::before {
  content: "\F1D5";
}

.mdi-dlna::before {
  content: "\FA40";
}

.mdi-dna::before {
  content: "\F683";
}

.mdi-dns::before {
  content: "\F1D6";
}

.mdi-dns-outline::before {
  content: "\FB68";
}

.mdi-do-not-disturb::before {
  content: "\F697";
}

.mdi-do-not-disturb-off::before {
  content: "\F698";
}

.mdi-dock-bottom::before {
  content: "\F00D4";
}

.mdi-dock-left::before {
  content: "\F00D5";
}

.mdi-dock-right::before {
  content: "\F00D6";
}

.mdi-dock-window::before {
  content: "\F00D7";
}

.mdi-docker::before {
  content: "\F867";
}

.mdi-doctor::before {
  content: "\FA41";
}

.mdi-dog::before {
  content: "\FA42";
}

.mdi-dog-service::before {
  content: "\FAAC";
}

.mdi-dog-side::before {
  content: "\FA43";
}

.mdi-dolby::before {
  content: "\F6B2";
}

.mdi-dolly::before {
  content: "\FEBB";
}

.mdi-domain::before {
  content: "\F1D7";
}

.mdi-domain-off::before {
  content: "\FD4B";
}

.mdi-domain-plus::before {
  content: "\F00D8";
}

.mdi-domain-remove::before {
  content: "\F00D9";
}

.mdi-domino-mask::before {
  content: "\F0045";
}

.mdi-donkey::before {
  content: "\F7C1";
}

.mdi-door::before {
  content: "\F819";
}

.mdi-door-closed::before {
  content: "\F81A";
}

.mdi-door-closed-lock::before {
  content: "\F00DA";
}

.mdi-door-open::before {
  content: "\F81B";
}

.mdi-doorbell::before {
  content: "\F0311";
}

.mdi-doorbell-video::before {
  content: "\F868";
}

.mdi-dot-net::before {
  content: "\FAAD";
}

.mdi-dots-horizontal::before {
  content: "\F1D8";
}

.mdi-dots-horizontal-circle::before {
  content: "\F7C2";
}

.mdi-dots-horizontal-circle-outline::before {
  content: "\FB69";
}

.mdi-dots-vertical::before {
  content: "\F1D9";
}

.mdi-dots-vertical-circle::before {
  content: "\F7C3";
}

.mdi-dots-vertical-circle-outline::before {
  content: "\FB6A";
}

.mdi-douban::before {
  content: "\F699";
}

.mdi-download::before {
  content: "\F1DA";
}

.mdi-download-multiple::before {
  content: "\F9E8";
}

.mdi-download-network::before {
  content: "\F6F3";
}

.mdi-download-network-outline::before {
  content: "\FC42";
}

.mdi-download-off::before {
  content: "\F00DB";
}

.mdi-download-off-outline::before {
  content: "\F00DC";
}

.mdi-download-outline::before {
  content: "\FB6B";
}

.mdi-drag::before {
  content: "\F1DB";
}

.mdi-drag-horizontal::before {
  content: "\F1DC";
}

.mdi-drag-horizontal-variant::before {
  content: "\F031B";
}

.mdi-drag-variant::before {
  content: "\FB6C";
}

.mdi-drag-vertical::before {
  content: "\F1DD";
}

.mdi-drag-vertical-variant::before {
  content: "\F031C";
}

.mdi-drama-masks::before {
  content: "\FCDE";
}

.mdi-draw::before {
  content: "\FF66";
}

.mdi-drawing::before {
  content: "\F1DE";
}

.mdi-drawing-box::before {
  content: "\F1DF";
}

.mdi-dresser::before {
  content: "\FF67";
}

.mdi-dresser-outline::before {
  content: "\FF68";
}

.mdi-dribbble::before {
  content: "\F1E0";
}

.mdi-dribbble-box::before {
  content: "\F1E1";
}

.mdi-drone::before {
  content: "\F1E2";
}

.mdi-dropbox::before {
  content: "\F1E3";
}

.mdi-drupal::before {
  content: "\F1E4";
}

.mdi-duck::before {
  content: "\F1E5";
}

.mdi-dumbbell::before {
  content: "\F1E6";
}

.mdi-dump-truck::before {
  content: "\FC43";
}

.mdi-ear-hearing::before {
  content: "\F7C4";
}

.mdi-ear-hearing-off::before {
  content: "\FA44";
}

.mdi-earth::before {
  content: "\F1E7";
}

.mdi-earth-arrow-right::before {
  content: "\F033C";
}

.mdi-earth-box::before {
  content: "\F6CC";
}

.mdi-earth-box-off::before {
  content: "\F6CD";
}

.mdi-earth-off::before {
  content: "\F1E8";
}

.mdi-edge::before {
  content: "\F1E9";
}

.mdi-edge-legacy::before {
  content: "\F027B";
}

.mdi-egg::before {
  content: "\FAAE";
}

.mdi-egg-easter::before {
  content: "\FAAF";
}

.mdi-eight-track::before {
  content: "\F9E9";
}

.mdi-eject::before {
  content: "\F1EA";
}

.mdi-eject-outline::before {
  content: "\FB6D";
}

.mdi-electric-switch::before {
  content: "\FEBC";
}

.mdi-electric-switch-closed::before {
  content: "\F0104";
}

.mdi-electron-framework::before {
  content: "\F0046";
}

.mdi-elephant::before {
  content: "\F7C5";
}

.mdi-elevation-decline::before {
  content: "\F1EB";
}

.mdi-elevation-rise::before {
  content: "\F1EC";
}

.mdi-elevator::before {
  content: "\F1ED";
}

.mdi-elevator-down::before {
  content: "\F02ED";
}

.mdi-elevator-up::before {
  content: "\F02EC";
}

.mdi-ellipse::before {
  content: "\FEBD";
}

.mdi-ellipse-outline::before {
  content: "\FEBE";
}

.mdi-email::before {
  content: "\F1EE";
}

.mdi-email-alert::before {
  content: "\F6CE";
}

.mdi-email-alert-outline::before {
  content: "\FD1E";
}

.mdi-email-box::before {
  content: "\FCDF";
}

.mdi-email-check::before {
  content: "\FAB0";
}

.mdi-email-check-outline::before {
  content: "\FAB1";
}

.mdi-email-edit::before {
  content: "\FF00";
}

.mdi-email-edit-outline::before {
  content: "\FF01";
}

.mdi-email-lock::before {
  content: "\F1F1";
}

.mdi-email-mark-as-unread::before {
  content: "\FB6E";
}

.mdi-email-minus::before {
  content: "\FF02";
}

.mdi-email-minus-outline::before {
  content: "\FF03";
}

.mdi-email-multiple::before {
  content: "\FF04";
}

.mdi-email-multiple-outline::before {
  content: "\FF05";
}

.mdi-email-newsletter::before {
  content: "\FFD1";
}

.mdi-email-open::before {
  content: "\F1EF";
}

.mdi-email-open-multiple::before {
  content: "\FF06";
}

.mdi-email-open-multiple-outline::before {
  content: "\FF07";
}

.mdi-email-open-outline::before {
  content: "\F5EF";
}

.mdi-email-outline::before {
  content: "\F1F0";
}

.mdi-email-plus::before {
  content: "\F9EA";
}

.mdi-email-plus-outline::before {
  content: "\F9EB";
}

.mdi-email-receive::before {
  content: "\F0105";
}

.mdi-email-receive-outline::before {
  content: "\F0106";
}

.mdi-email-search::before {
  content: "\F960";
}

.mdi-email-search-outline::before {
  content: "\F961";
}

.mdi-email-send::before {
  content: "\F0107";
}

.mdi-email-send-outline::before {
  content: "\F0108";
}

.mdi-email-sync::before {
  content: "\F02F2";
}

.mdi-email-sync-outline::before {
  content: "\F02F3";
}

.mdi-email-variant::before {
  content: "\F5F0";
}

.mdi-ember::before {
  content: "\FB15";
}

.mdi-emby::before {
  content: "\F6B3";
}

.mdi-emoticon::before {
  content: "\FC44";
}

.mdi-emoticon-angry::before {
  content: "\FC45";
}

.mdi-emoticon-angry-outline::before {
  content: "\FC46";
}

.mdi-emoticon-confused::before {
  content: "\F0109";
}

.mdi-emoticon-confused-outline::before {
  content: "\F010A";
}

.mdi-emoticon-cool::before {
  content: "\FC47";
}

.mdi-emoticon-cool-outline::before {
  content: "\F1F3";
}

.mdi-emoticon-cry::before {
  content: "\FC48";
}

.mdi-emoticon-cry-outline::before {
  content: "\FC49";
}

.mdi-emoticon-dead::before {
  content: "\FC4A";
}

.mdi-emoticon-dead-outline::before {
  content: "\F69A";
}

.mdi-emoticon-devil::before {
  content: "\FC4B";
}

.mdi-emoticon-devil-outline::before {
  content: "\F1F4";
}

.mdi-emoticon-excited::before {
  content: "\FC4C";
}

.mdi-emoticon-excited-outline::before {
  content: "\F69B";
}

.mdi-emoticon-frown::before {
  content: "\FF69";
}

.mdi-emoticon-frown-outline::before {
  content: "\FF6A";
}

.mdi-emoticon-happy::before {
  content: "\FC4D";
}

.mdi-emoticon-happy-outline::before {
  content: "\F1F5";
}

.mdi-emoticon-kiss::before {
  content: "\FC4E";
}

.mdi-emoticon-kiss-outline::before {
  content: "\FC4F";
}

.mdi-emoticon-lol::before {
  content: "\F023F";
}

.mdi-emoticon-lol-outline::before {
  content: "\F0240";
}

.mdi-emoticon-neutral::before {
  content: "\FC50";
}

.mdi-emoticon-neutral-outline::before {
  content: "\F1F6";
}

.mdi-emoticon-outline::before {
  content: "\F1F2";
}

.mdi-emoticon-poop::before {
  content: "\F1F7";
}

.mdi-emoticon-poop-outline::before {
  content: "\FC51";
}

.mdi-emoticon-sad::before {
  content: "\FC52";
}

.mdi-emoticon-sad-outline::before {
  content: "\F1F8";
}

.mdi-emoticon-tongue::before {
  content: "\F1F9";
}

.mdi-emoticon-tongue-outline::before {
  content: "\FC53";
}

.mdi-emoticon-wink::before {
  content: "\FC54";
}

.mdi-emoticon-wink-outline::before {
  content: "\FC55";
}

.mdi-engine::before {
  content: "\F1FA";
}

.mdi-engine-off::before {
  content: "\FA45";
}

.mdi-engine-off-outline::before {
  content: "\FA46";
}

.mdi-engine-outline::before {
  content: "\F1FB";
}

.mdi-epsilon::before {
  content: "\F010B";
}

.mdi-equal::before {
  content: "\F1FC";
}

.mdi-equal-box::before {
  content: "\F1FD";
}

.mdi-equalizer::before {
  content: "\FEBF";
}

.mdi-equalizer-outline::before {
  content: "\FEC0";
}

.mdi-eraser::before {
  content: "\F1FE";
}

.mdi-eraser-variant::before {
  content: "\F642";
}

.mdi-escalator::before {
  content: "\F1FF";
}

.mdi-escalator-down::before {
  content: "\F02EB";
}

.mdi-escalator-up::before {
  content: "\F02EA";
}

.mdi-eslint::before {
  content: "\FC56";
}

.mdi-et::before {
  content: "\FAB2";
}

.mdi-ethereum::before {
  content: "\F869";
}

.mdi-ethernet::before {
  content: "\F200";
}

.mdi-ethernet-cable::before {
  content: "\F201";
}

.mdi-ethernet-cable-off::before {
  content: "\F202";
}

.mdi-etsy::before {
  content: "\F203";
}

.mdi-ev-station::before {
  content: "\F5F1";
}

.mdi-eventbrite::before {
  content: "\F7C6";
}

.mdi-evernote::before {
  content: "\F204";
}

.mdi-excavator::before {
  content: "\F0047";
}

.mdi-exclamation::before {
  content: "\F205";
}

.mdi-exclamation-thick::before {
  content: "\F0263";
}

.mdi-exit-run::before {
  content: "\FA47";
}

.mdi-exit-to-app::before {
  content: "\F206";
}

.mdi-expand-all::before {
  content: "\FAB3";
}

.mdi-expand-all-outline::before {
  content: "\FAB4";
}

.mdi-expansion-card::before {
  content: "\F8AD";
}

.mdi-expansion-card-variant::before {
  content: "\FFD2";
}

.mdi-exponent::before {
  content: "\F962";
}

.mdi-exponent-box::before {
  content: "\F963";
}

.mdi-export::before {
  content: "\F207";
}

.mdi-export-variant::before {
  content: "\FB6F";
}

.mdi-eye::before {
  content: "\F208";
}

.mdi-eye-check::before {
  content: "\FCE0";
}

.mdi-eye-check-outline::before {
  content: "\FCE1";
}

.mdi-eye-circle::before {
  content: "\FB70";
}

.mdi-eye-circle-outline::before {
  content: "\FB71";
}

.mdi-eye-minus::before {
  content: "\F0048";
}

.mdi-eye-minus-outline::before {
  content: "\F0049";
}

.mdi-eye-off::before {
  content: "\F209";
}

.mdi-eye-off-outline::before {
  content: "\F6D0";
}

.mdi-eye-outline::before {
  content: "\F6CF";
}

.mdi-eye-plus::before {
  content: "\F86A";
}

.mdi-eye-plus-outline::before {
  content: "\F86B";
}

.mdi-eye-settings::before {
  content: "\F86C";
}

.mdi-eye-settings-outline::before {
  content: "\F86D";
}

.mdi-eyedropper::before {
  content: "\F20A";
}

.mdi-eyedropper-variant::before {
  content: "\F20B";
}

.mdi-face::before {
  content: "\F643";
}

.mdi-face-agent::before {
  content: "\FD4C";
}

.mdi-face-outline::before {
  content: "\FB72";
}

.mdi-face-profile::before {
  content: "\F644";
}

.mdi-face-profile-woman::before {
  content: "\F00A1";
}

.mdi-face-recognition::before {
  content: "\FC57";
}

.mdi-face-woman::before {
  content: "\F00A2";
}

.mdi-face-woman-outline::before {
  content: "\F00A3";
}

.mdi-facebook::before {
  content: "\F20C";
}

.mdi-facebook-box::before {
  content: "\F20D";
}

.mdi-facebook-messenger::before {
  content: "\F20E";
}

.mdi-facebook-workplace::before {
  content: "\FB16";
}

.mdi-factory::before {
  content: "\F20F";
}

.mdi-fan::before {
  content: "\F210";
}

.mdi-fan-off::before {
  content: "\F81C";
}

.mdi-fast-forward::before {
  content: "\F211";
}

.mdi-fast-forward-10::before {
  content: "\FD4D";
}

.mdi-fast-forward-30::before {
  content: "\FCE2";
}

.mdi-fast-forward-5::before {
  content: "\F0223";
}

.mdi-fast-forward-outline::before {
  content: "\F6D1";
}

.mdi-fax::before {
  content: "\F212";
}

.mdi-feather::before {
  content: "\F6D2";
}

.mdi-feature-search::before {
  content: "\FA48";
}

.mdi-feature-search-outline::before {
  content: "\FA49";
}

.mdi-fedora::before {
  content: "\F8DA";
}

.mdi-ferris-wheel::before {
  content: "\FEC1";
}

.mdi-ferry::before {
  content: "\F213";
}

.mdi-file::before {
  content: "\F214";
}

.mdi-file-account::before {
  content: "\F73A";
}

.mdi-file-account-outline::before {
  content: "\F004A";
}

.mdi-file-alert::before {
  content: "\FA4A";
}

.mdi-file-alert-outline::before {
  content: "\FA4B";
}

.mdi-file-cabinet::before {
  content: "\FAB5";
}

.mdi-file-cad::before {
  content: "\FF08";
}

.mdi-file-cad-box::before {
  content: "\FF09";
}

.mdi-file-cancel::before {
  content: "\FDA2";
}

.mdi-file-cancel-outline::before {
  content: "\FDA3";
}

.mdi-file-certificate::before {
  content: "\F01B1";
}

.mdi-file-certificate-outline::before {
  content: "\F01B2";
}

.mdi-file-chart::before {
  content: "\F215";
}

.mdi-file-chart-outline::before {
  content: "\F004B";
}

.mdi-file-check::before {
  content: "\F216";
}

.mdi-file-check-outline::before {
  content: "\FE7B";
}

.mdi-file-clock::before {
  content: "\F030C";
}

.mdi-file-clock-outline::before {
  content: "\F030D";
}

.mdi-file-cloud::before {
  content: "\F217";
}

.mdi-file-cloud-outline::before {
  content: "\F004C";
}

.mdi-file-code::before {
  content: "\F22E";
}

.mdi-file-code-outline::before {
  content: "\F004D";
}

.mdi-file-compare::before {
  content: "\F8A9";
}

.mdi-file-delimited::before {
  content: "\F218";
}

.mdi-file-delimited-outline::before {
  content: "\FEC2";
}

.mdi-file-document::before {
  content: "\F219";
}

.mdi-file-document-box::before {
  content: "\F21A";
}

.mdi-file-document-box-check::before {
  content: "\FEC3";
}

.mdi-file-document-box-check-outline::before {
  content: "\FEC4";
}

.mdi-file-document-box-minus::before {
  content: "\FEC5";
}

.mdi-file-document-box-minus-outline::before {
  content: "\FEC6";
}

.mdi-file-document-box-multiple::before {
  content: "\FAB6";
}

.mdi-file-document-box-multiple-outline::before {
  content: "\FAB7";
}

.mdi-file-document-box-outline::before {
  content: "\F9EC";
}

.mdi-file-document-box-plus::before {
  content: "\FEC7";
}

.mdi-file-document-box-plus-outline::before {
  content: "\FEC8";
}

.mdi-file-document-box-remove::before {
  content: "\FEC9";
}

.mdi-file-document-box-remove-outline::before {
  content: "\FECA";
}

.mdi-file-document-box-search::before {
  content: "\FECB";
}

.mdi-file-document-box-search-outline::before {
  content: "\FECC";
}

.mdi-file-document-edit::before {
  content: "\FDA4";
}

.mdi-file-document-edit-outline::before {
  content: "\FDA5";
}

.mdi-file-document-outline::before {
  content: "\F9ED";
}

.mdi-file-download::before {
  content: "\F964";
}

.mdi-file-download-outline::before {
  content: "\F965";
}

.mdi-file-edit::before {
  content: "\F0212";
}

.mdi-file-edit-outline::before {
  content: "\F0213";
}

.mdi-file-excel::before {
  content: "\F21B";
}

.mdi-file-excel-box::before {
  content: "\F21C";
}

.mdi-file-excel-box-outline::before {
  content: "\F004E";
}

.mdi-file-excel-outline::before {
  content: "\F004F";
}

.mdi-file-export::before {
  content: "\F21D";
}

.mdi-file-export-outline::before {
  content: "\F0050";
}

.mdi-file-eye::before {
  content: "\FDA6";
}

.mdi-file-eye-outline::before {
  content: "\FDA7";
}

.mdi-file-find::before {
  content: "\F21E";
}

.mdi-file-find-outline::before {
  content: "\FB73";
}

.mdi-file-hidden::before {
  content: "\F613";
}

.mdi-file-image::before {
  content: "\F21F";
}

.mdi-file-image-outline::before {
  content: "\FECD";
}

.mdi-file-import::before {
  content: "\F220";
}

.mdi-file-import-outline::before {
  content: "\F0051";
}

.mdi-file-key::before {
  content: "\F01AF";
}

.mdi-file-key-outline::before {
  content: "\F01B0";
}

.mdi-file-link::before {
  content: "\F01A2";
}

.mdi-file-link-outline::before {
  content: "\F01A3";
}

.mdi-file-lock::before {
  content: "\F221";
}

.mdi-file-lock-outline::before {
  content: "\F0052";
}

.mdi-file-move::before {
  content: "\FAB8";
}

.mdi-file-move-outline::before {
  content: "\F0053";
}

.mdi-file-multiple::before {
  content: "\F222";
}

.mdi-file-multiple-outline::before {
  content: "\F0054";
}

.mdi-file-music::before {
  content: "\F223";
}

.mdi-file-music-outline::before {
  content: "\FE7C";
}

.mdi-file-outline::before {
  content: "\F224";
}

.mdi-file-pdf::before {
  content: "\F225";
}

.mdi-file-pdf-box::before {
  content: "\F226";
}

.mdi-file-pdf-box-outline::before {
  content: "\FFD3";
}

.mdi-file-pdf-outline::before {
  content: "\FE7D";
}

.mdi-file-percent::before {
  content: "\F81D";
}

.mdi-file-percent-outline::before {
  content: "\F0055";
}

.mdi-file-phone::before {
  content: "\F01A4";
}

.mdi-file-phone-outline::before {
  content: "\F01A5";
}

.mdi-file-plus::before {
  content: "\F751";
}

.mdi-file-plus-outline::before {
  content: "\FF0A";
}

.mdi-file-powerpoint::before {
  content: "\F227";
}

.mdi-file-powerpoint-box::before {
  content: "\F228";
}

.mdi-file-powerpoint-box-outline::before {
  content: "\F0056";
}

.mdi-file-powerpoint-outline::before {
  content: "\F0057";
}

.mdi-file-presentation-box::before {
  content: "\F229";
}

.mdi-file-question::before {
  content: "\F86E";
}

.mdi-file-question-outline::before {
  content: "\F0058";
}

.mdi-file-remove::before {
  content: "\FB74";
}

.mdi-file-remove-outline::before {
  content: "\F0059";
}

.mdi-file-replace::before {
  content: "\FB17";
}

.mdi-file-replace-outline::before {
  content: "\FB18";
}

.mdi-file-restore::before {
  content: "\F670";
}

.mdi-file-restore-outline::before {
  content: "\F005A";
}

.mdi-file-search::before {
  content: "\FC58";
}

.mdi-file-search-outline::before {
  content: "\FC59";
}

.mdi-file-send::before {
  content: "\F22A";
}

.mdi-file-send-outline::before {
  content: "\F005B";
}

.mdi-file-settings::before {
  content: "\F00A4";
}

.mdi-file-settings-outline::before {
  content: "\F00A5";
}

.mdi-file-settings-variant::before {
  content: "\F00A6";
}

.mdi-file-settings-variant-outline::before {
  content: "\F00A7";
}

.mdi-file-star::before {
  content: "\F005C";
}

.mdi-file-star-outline::before {
  content: "\F005D";
}

.mdi-file-swap::before {
  content: "\FFD4";
}

.mdi-file-swap-outline::before {
  content: "\FFD5";
}

.mdi-file-sync::before {
  content: "\F0241";
}

.mdi-file-sync-outline::before {
  content: "\F0242";
}

.mdi-file-table::before {
  content: "\FC5A";
}

.mdi-file-table-box::before {
  content: "\F010C";
}

.mdi-file-table-box-multiple::before {
  content: "\F010D";
}

.mdi-file-table-box-multiple-outline::before {
  content: "\F010E";
}

.mdi-file-table-box-outline::before {
  content: "\F010F";
}

.mdi-file-table-outline::before {
  content: "\FC5B";
}

.mdi-file-tree::before {
  content: "\F645";
}

.mdi-file-undo::before {
  content: "\F8DB";
}

.mdi-file-undo-outline::before {
  content: "\F005E";
}

.mdi-file-upload::before {
  content: "\FA4C";
}

.mdi-file-upload-outline::before {
  content: "\FA4D";
}

.mdi-file-video::before {
  content: "\F22B";
}

.mdi-file-video-outline::before {
  content: "\FE10";
}

.mdi-file-word::before {
  content: "\F22C";
}

.mdi-file-word-box::before {
  content: "\F22D";
}

.mdi-file-word-box-outline::before {
  content: "\F005F";
}

.mdi-file-word-outline::before {
  content: "\F0060";
}

.mdi-film::before {
  content: "\F22F";
}

.mdi-filmstrip::before {
  content: "\F230";
}

.mdi-filmstrip-off::before {
  content: "\F231";
}

.mdi-filter::before {
  content: "\F232";
}

.mdi-filter-menu::before {
  content: "\F0110";
}

.mdi-filter-menu-outline::before {
  content: "\F0111";
}

.mdi-filter-minus::before {
  content: "\FF0B";
}

.mdi-filter-minus-outline::before {
  content: "\FF0C";
}

.mdi-filter-outline::before {
  content: "\F233";
}

.mdi-filter-plus::before {
  content: "\FF0D";
}

.mdi-filter-plus-outline::before {
  content: "\FF0E";
}

.mdi-filter-remove::before {
  content: "\F234";
}

.mdi-filter-remove-outline::before {
  content: "\F235";
}

.mdi-filter-variant::before {
  content: "\F236";
}

.mdi-filter-variant-minus::before {
  content: "\F013D";
}

.mdi-filter-variant-plus::before {
  content: "\F013E";
}

.mdi-filter-variant-remove::before {
  content: "\F0061";
}

.mdi-finance::before {
  content: "\F81E";
}

.mdi-find-replace::before {
  content: "\F6D3";
}

.mdi-fingerprint::before {
  content: "\F237";
}

.mdi-fingerprint-off::before {
  content: "\FECE";
}

.mdi-fire::before {
  content: "\F238";
}

.mdi-fire-extinguisher::before {
  content: "\FF0F";
}

.mdi-fire-hydrant::before {
  content: "\F0162";
}

.mdi-fire-hydrant-alert::before {
  content: "\F0163";
}

.mdi-fire-hydrant-off::before {
  content: "\F0164";
}

.mdi-fire-truck::before {
  content: "\F8AA";
}

.mdi-firebase::before {
  content: "\F966";
}

.mdi-firefox::before {
  content: "\F239";
}

.mdi-fireplace::before {
  content: "\FE11";
}

.mdi-fireplace-off::before {
  content: "\FE12";
}

.mdi-firework::before {
  content: "\FE13";
}

.mdi-fish::before {
  content: "\F23A";
}

.mdi-fishbowl::before {
  content: "\FF10";
}

.mdi-fishbowl-outline::before {
  content: "\FF11";
}

.mdi-fit-to-page::before {
  content: "\FF12";
}

.mdi-fit-to-page-outline::before {
  content: "\FF13";
}

.mdi-flag::before {
  content: "\F23B";
}

.mdi-flag-checkered::before {
  content: "\F23C";
}

.mdi-flag-minus::before {
  content: "\FB75";
}

.mdi-flag-minus-outline::before {
  content: "\F00DD";
}

.mdi-flag-outline::before {
  content: "\F23D";
}

.mdi-flag-plus::before {
  content: "\FB76";
}

.mdi-flag-plus-outline::before {
  content: "\F00DE";
}

.mdi-flag-remove::before {
  content: "\FB77";
}

.mdi-flag-remove-outline::before {
  content: "\F00DF";
}

.mdi-flag-triangle::before {
  content: "\F23F";
}

.mdi-flag-variant::before {
  content: "\F240";
}

.mdi-flag-variant-outline::before {
  content: "\F23E";
}

.mdi-flare::before {
  content: "\FD4E";
}

.mdi-flash::before {
  content: "\F241";
}

.mdi-flash-alert::before {
  content: "\FF14";
}

.mdi-flash-alert-outline::before {
  content: "\FF15";
}

.mdi-flash-auto::before {
  content: "\F242";
}

.mdi-flash-circle::before {
  content: "\F81F";
}

.mdi-flash-off::before {
  content: "\F243";
}

.mdi-flash-outline::before {
  content: "\F6D4";
}

.mdi-flash-red-eye::before {
  content: "\F67A";
}

.mdi-flashlight::before {
  content: "\F244";
}

.mdi-flashlight-off::before {
  content: "\F245";
}

.mdi-flask::before {
  content: "\F093";
}

.mdi-flask-empty::before {
  content: "\F094";
}

.mdi-flask-empty-minus::before {
  content: "\F0265";
}

.mdi-flask-empty-minus-outline::before {
  content: "\F0266";
}

.mdi-flask-empty-outline::before {
  content: "\F095";
}

.mdi-flask-empty-plus::before {
  content: "\F0267";
}

.mdi-flask-empty-plus-outline::before {
  content: "\F0268";
}

.mdi-flask-empty-remove::before {
  content: "\F0269";
}

.mdi-flask-empty-remove-outline::before {
  content: "\F026A";
}

.mdi-flask-minus::before {
  content: "\F026B";
}

.mdi-flask-minus-outline::before {
  content: "\F026C";
}

.mdi-flask-outline::before {
  content: "\F096";
}

.mdi-flask-plus::before {
  content: "\F026D";
}

.mdi-flask-plus-outline::before {
  content: "\F026E";
}

.mdi-flask-remove::before {
  content: "\F026F";
}

.mdi-flask-remove-outline::before {
  content: "\F0270";
}

.mdi-flask-round-bottom::before {
  content: "\F0276";
}

.mdi-flask-round-bottom-empty::before {
  content: "\F0277";
}

.mdi-flask-round-bottom-empty-outline::before {
  content: "\F0278";
}

.mdi-flask-round-bottom-outline::before {
  content: "\F0279";
}

.mdi-flattr::before {
  content: "\F246";
}

.mdi-fleur-de-lis::before {
  content: "\F032E";
}

.mdi-flickr::before {
  content: "\FCE3";
}

.mdi-flip-horizontal::before {
  content: "\F0112";
}

.mdi-flip-to-back::before {
  content: "\F247";
}

.mdi-flip-to-front::before {
  content: "\F248";
}

.mdi-flip-vertical::before {
  content: "\F0113";
}

.mdi-floor-lamp::before {
  content: "\F8DC";
}

.mdi-floor-lamp-dual::before {
  content: "\F0062";
}

.mdi-floor-lamp-variant::before {
  content: "\F0063";
}

.mdi-floor-plan::before {
  content: "\F820";
}

.mdi-floppy::before {
  content: "\F249";
}

.mdi-floppy-variant::before {
  content: "\F9EE";
}

.mdi-flower::before {
  content: "\F24A";
}

.mdi-flower-outline::before {
  content: "\F9EF";
}

.mdi-flower-poppy::before {
  content: "\FCE4";
}

.mdi-flower-tulip::before {
  content: "\F9F0";
}

.mdi-flower-tulip-outline::before {
  content: "\F9F1";
}

.mdi-focus-auto::before {
  content: "\FF6B";
}

.mdi-focus-field::before {
  content: "\FF6C";
}

.mdi-focus-field-horizontal::before {
  content: "\FF6D";
}

.mdi-focus-field-vertical::before {
  content: "\FF6E";
}

.mdi-folder::before {
  content: "\F24B";
}

.mdi-folder-account::before {
  content: "\F24C";
}

.mdi-folder-account-outline::before {
  content: "\FB78";
}

.mdi-folder-alert::before {
  content: "\FDA8";
}

.mdi-folder-alert-outline::before {
  content: "\FDA9";
}

.mdi-folder-clock::before {
  content: "\FAB9";
}

.mdi-folder-clock-outline::before {
  content: "\FABA";
}

.mdi-folder-download::before {
  content: "\F24D";
}

.mdi-folder-download-outline::before {
  content: "\F0114";
}

.mdi-folder-edit::before {
  content: "\F8DD";
}

.mdi-folder-edit-outline::before {
  content: "\FDAA";
}

.mdi-folder-google-drive::before {
  content: "\F24E";
}

.mdi-folder-heart::before {
  content: "\F0115";
}

.mdi-folder-heart-outline::before {
  content: "\F0116";
}

.mdi-folder-home::before {
  content: "\F00E0";
}

.mdi-folder-home-outline::before {
  content: "\F00E1";
}

.mdi-folder-image::before {
  content: "\F24F";
}

.mdi-folder-information::before {
  content: "\F00E2";
}

.mdi-folder-information-outline::before {
  content: "\F00E3";
}

.mdi-folder-key::before {
  content: "\F8AB";
}

.mdi-folder-key-network::before {
  content: "\F8AC";
}

.mdi-folder-key-network-outline::before {
  content: "\FC5C";
}

.mdi-folder-key-outline::before {
  content: "\F0117";
}

.mdi-folder-lock::before {
  content: "\F250";
}

.mdi-folder-lock-open::before {
  content: "\F251";
}

.mdi-folder-marker::before {
  content: "\F0298";
}

.mdi-folder-marker-outline::before {
  content: "\F0299";
}

.mdi-folder-move::before {
  content: "\F252";
}

.mdi-folder-move-outline::before {
  content: "\F0271";
}

.mdi-folder-multiple::before {
  content: "\F253";
}

.mdi-folder-multiple-image::before {
  content: "\F254";
}

.mdi-folder-multiple-outline::before {
  content: "\F255";
}

.mdi-folder-network::before {
  content: "\F86F";
}

.mdi-folder-network-outline::before {
  content: "\FC5D";
}

.mdi-folder-open::before {
  content: "\F76F";
}

.mdi-folder-open-outline::before {
  content: "\FDAB";
}

.mdi-folder-outline::before {
  content: "\F256";
}

.mdi-folder-plus::before {
  content: "\F257";
}

.mdi-folder-plus-outline::before {
  content: "\FB79";
}

.mdi-folder-pound::before {
  content: "\FCE5";
}

.mdi-folder-pound-outline::before {
  content: "\FCE6";
}

.mdi-folder-remove::before {
  content: "\F258";
}

.mdi-folder-remove-outline::before {
  content: "\FB7A";
}

.mdi-folder-search::before {
  content: "\F967";
}

.mdi-folder-search-outline::before {
  content: "\F968";
}

.mdi-folder-settings::before {
  content: "\F00A8";
}

.mdi-folder-settings-outline::before {
  content: "\F00A9";
}

.mdi-folder-settings-variant::before {
  content: "\F00AA";
}

.mdi-folder-settings-variant-outline::before {
  content: "\F00AB";
}

.mdi-folder-star::before {
  content: "\F69C";
}

.mdi-folder-star-outline::before {
  content: "\FB7B";
}

.mdi-folder-swap::before {
  content: "\FFD6";
}

.mdi-folder-swap-outline::before {
  content: "\FFD7";
}

.mdi-folder-sync::before {
  content: "\FCE7";
}

.mdi-folder-sync-outline::before {
  content: "\FCE8";
}

.mdi-folder-table::before {
  content: "\F030E";
}

.mdi-folder-table-outline::before {
  content: "\F030F";
}

.mdi-folder-text::before {
  content: "\FC5E";
}

.mdi-folder-text-outline::before {
  content: "\FC5F";
}

.mdi-folder-upload::before {
  content: "\F259";
}

.mdi-folder-upload-outline::before {
  content: "\F0118";
}

.mdi-folder-zip::before {
  content: "\F6EA";
}

.mdi-folder-zip-outline::before {
  content: "\F7B8";
}

.mdi-font-awesome::before {
  content: "\F03A";
}

.mdi-food::before {
  content: "\F25A";
}

.mdi-food-apple::before {
  content: "\F25B";
}

.mdi-food-apple-outline::before {
  content: "\FC60";
}

.mdi-food-croissant::before {
  content: "\F7C7";
}

.mdi-food-fork-drink::before {
  content: "\F5F2";
}

.mdi-food-off::before {
  content: "\F5F3";
}

.mdi-food-variant::before {
  content: "\F25C";
}

.mdi-foot-print::before {
  content: "\FF6F";
}

.mdi-football::before {
  content: "\F25D";
}

.mdi-football-australian::before {
  content: "\F25E";
}

.mdi-football-helmet::before {
  content: "\F25F";
}

.mdi-forklift::before {
  content: "\F7C8";
}

.mdi-format-align-bottom::before {
  content: "\F752";
}

.mdi-format-align-center::before {
  content: "\F260";
}

.mdi-format-align-justify::before {
  content: "\F261";
}

.mdi-format-align-left::before {
  content: "\F262";
}

.mdi-format-align-middle::before {
  content: "\F753";
}

.mdi-format-align-right::before {
  content: "\F263";
}

.mdi-format-align-top::before {
  content: "\F754";
}

.mdi-format-annotation-minus::before {
  content: "\FABB";
}

.mdi-format-annotation-plus::before {
  content: "\F646";
}

.mdi-format-bold::before {
  content: "\F264";
}

.mdi-format-clear::before {
  content: "\F265";
}

.mdi-format-color-fill::before {
  content: "\F266";
}

.mdi-format-color-highlight::before {
  content: "\FE14";
}

.mdi-format-color-marker-cancel::before {
  content: "\F033E";
}

.mdi-format-color-text::before {
  content: "\F69D";
}

.mdi-format-columns::before {
  content: "\F8DE";
}

.mdi-format-float-center::before {
  content: "\F267";
}

.mdi-format-float-left::before {
  content: "\F268";
}

.mdi-format-float-none::before {
  content: "\F269";
}

.mdi-format-float-right::before {
  content: "\F26A";
}

.mdi-format-font::before {
  content: "\F6D5";
}

.mdi-format-font-size-decrease::before {
  content: "\F9F2";
}

.mdi-format-font-size-increase::before {
  content: "\F9F3";
}

.mdi-format-header-1::before {
  content: "\F26B";
}

.mdi-format-header-2::before {
  content: "\F26C";
}

.mdi-format-header-3::before {
  content: "\F26D";
}

.mdi-format-header-4::before {
  content: "\F26E";
}

.mdi-format-header-5::before {
  content: "\F26F";
}

.mdi-format-header-6::before {
  content: "\F270";
}

.mdi-format-header-decrease::before {
  content: "\F271";
}

.mdi-format-header-equal::before {
  content: "\F272";
}

.mdi-format-header-increase::before {
  content: "\F273";
}

.mdi-format-header-pound::before {
  content: "\F274";
}

.mdi-format-horizontal-align-center::before {
  content: "\F61E";
}

.mdi-format-horizontal-align-left::before {
  content: "\F61F";
}

.mdi-format-horizontal-align-right::before {
  content: "\F620";
}

.mdi-format-indent-decrease::before {
  content: "\F275";
}

.mdi-format-indent-increase::before {
  content: "\F276";
}

.mdi-format-italic::before {
  content: "\F277";
}

.mdi-format-letter-case::before {
  content: "\FB19";
}

.mdi-format-letter-case-lower::before {
  content: "\FB1A";
}

.mdi-format-letter-case-upper::before {
  content: "\FB1B";
}

.mdi-format-letter-ends-with::before {
  content: "\FFD8";
}

.mdi-format-letter-matches::before {
  content: "\FFD9";
}

.mdi-format-letter-starts-with::before {
  content: "\FFDA";
}

.mdi-format-line-spacing::before {
  content: "\F278";
}

.mdi-format-line-style::before {
  content: "\F5C8";
}

.mdi-format-line-weight::before {
  content: "\F5C9";
}

.mdi-format-list-bulleted::before {
  content: "\F279";
}

.mdi-format-list-bulleted-square::before {
  content: "\FDAC";
}

.mdi-format-list-bulleted-triangle::before {
  content: "\FECF";
}

.mdi-format-list-bulleted-type::before {
  content: "\F27A";
}

.mdi-format-list-checkbox::before {
  content: "\F969";
}

.mdi-format-list-checks::before {
  content: "\F755";
}

.mdi-format-list-numbered::before {
  content: "\F27B";
}

.mdi-format-list-numbered-rtl::before {
  content: "\FCE9";
}

.mdi-format-list-text::before {
  content: "\F029A";
}

.mdi-format-overline::before {
  content: "\FED0";
}

.mdi-format-page-break::before {
  content: "\F6D6";
}

.mdi-format-paint::before {
  content: "\F27C";
}

.mdi-format-paragraph::before {
  content: "\F27D";
}

.mdi-format-pilcrow::before {
  content: "\F6D7";
}

.mdi-format-quote-close::before {
  content: "\F27E";
}

.mdi-format-quote-close-outline::before {
  content: "\F01D3";
}

.mdi-format-quote-open::before {
  content: "\F756";
}

.mdi-format-quote-open-outline::before {
  content: "\F01D2";
}

.mdi-format-rotate-90::before {
  content: "\F6A9";
}

.mdi-format-section::before {
  content: "\F69E";
}

.mdi-format-size::before {
  content: "\F27F";
}

.mdi-format-strikethrough::before {
  content: "\F280";
}

.mdi-format-strikethrough-variant::before {
  content: "\F281";
}

.mdi-format-subscript::before {
  content: "\F282";
}

.mdi-format-superscript::before {
  content: "\F283";
}

.mdi-format-text::before {
  content: "\F284";
}

.mdi-format-text-rotation-angle-down::before {
  content: "\FFDB";
}

.mdi-format-text-rotation-angle-up::before {
  content: "\FFDC";
}

.mdi-format-text-rotation-down::before {
  content: "\FD4F";
}

.mdi-format-text-rotation-down-vertical::before {
  content: "\FFDD";
}

.mdi-format-text-rotation-none::before {
  content: "\FD50";
}

.mdi-format-text-rotation-up::before {
  content: "\FFDE";
}

.mdi-format-text-rotation-vertical::before {
  content: "\FFDF";
}

.mdi-format-text-variant::before {
  content: "\FE15";
}

.mdi-format-text-wrapping-clip::before {
  content: "\FCEA";
}

.mdi-format-text-wrapping-overflow::before {
  content: "\FCEB";
}

.mdi-format-text-wrapping-wrap::before {
  content: "\FCEC";
}

.mdi-format-textbox::before {
  content: "\FCED";
}

.mdi-format-textdirection-l-to-r::before {
  content: "\F285";
}

.mdi-format-textdirection-r-to-l::before {
  content: "\F286";
}

.mdi-format-title::before {
  content: "\F5F4";
}

.mdi-format-underline::before {
  content: "\F287";
}

.mdi-format-vertical-align-bottom::before {
  content: "\F621";
}

.mdi-format-vertical-align-center::before {
  content: "\F622";
}

.mdi-format-vertical-align-top::before {
  content: "\F623";
}

.mdi-format-wrap-inline::before {
  content: "\F288";
}

.mdi-format-wrap-square::before {
  content: "\F289";
}

.mdi-format-wrap-tight::before {
  content: "\F28A";
}

.mdi-format-wrap-top-bottom::before {
  content: "\F28B";
}

.mdi-forum::before {
  content: "\F28C";
}

.mdi-forum-outline::before {
  content: "\F821";
}

.mdi-forward::before {
  content: "\F28D";
}

.mdi-forwardburger::before {
  content: "\FD51";
}

.mdi-fountain::before {
  content: "\F96A";
}

.mdi-fountain-pen::before {
  content: "\FCEE";
}

.mdi-fountain-pen-tip::before {
  content: "\FCEF";
}

.mdi-foursquare::before {
  content: "\F28E";
}

.mdi-freebsd::before {
  content: "\F8DF";
}

.mdi-frequently-asked-questions::before {
  content: "\FED1";
}

.mdi-fridge::before {
  content: "\F290";
}

.mdi-fridge-alert::before {
  content: "\F01DC";
}

.mdi-fridge-alert-outline::before {
  content: "\F01DD";
}

.mdi-fridge-bottom::before {
  content: "\F292";
}

.mdi-fridge-off::before {
  content: "\F01DA";
}

.mdi-fridge-off-outline::before {
  content: "\F01DB";
}

.mdi-fridge-outline::before {
  content: "\F28F";
}

.mdi-fridge-top::before {
  content: "\F291";
}

.mdi-fruit-cherries::before {
  content: "\F0064";
}

.mdi-fruit-citrus::before {
  content: "\F0065";
}

.mdi-fruit-grapes::before {
  content: "\F0066";
}

.mdi-fruit-grapes-outline::before {
  content: "\F0067";
}

.mdi-fruit-pineapple::before {
  content: "\F0068";
}

.mdi-fruit-watermelon::before {
  content: "\F0069";
}

.mdi-fuel::before {
  content: "\F7C9";
}

.mdi-fullscreen::before {
  content: "\F293";
}

.mdi-fullscreen-exit::before {
  content: "\F294";
}

.mdi-function::before {
  content: "\F295";
}

.mdi-function-variant::before {
  content: "\F870";
}

.mdi-furigana-horizontal::before {
  content: "\F00AC";
}

.mdi-furigana-vertical::before {
  content: "\F00AD";
}

.mdi-fuse::before {
  content: "\FC61";
}

.mdi-fuse-blade::before {
  content: "\FC62";
}

.mdi-gamepad::before {
  content: "\F296";
}

.mdi-gamepad-circle::before {
  content: "\FE16";
}

.mdi-gamepad-circle-down::before {
  content: "\FE17";
}

.mdi-gamepad-circle-left::before {
  content: "\FE18";
}

.mdi-gamepad-circle-outline::before {
  content: "\FE19";
}

.mdi-gamepad-circle-right::before {
  content: "\FE1A";
}

.mdi-gamepad-circle-up::before {
  content: "\FE1B";
}

.mdi-gamepad-down::before {
  content: "\FE1C";
}

.mdi-gamepad-left::before {
  content: "\FE1D";
}

.mdi-gamepad-right::before {
  content: "\FE1E";
}

.mdi-gamepad-round::before {
  content: "\FE1F";
}

.mdi-gamepad-round-down::before {
  content: "\FE7E";
}

.mdi-gamepad-round-left::before {
  content: "\FE7F";
}

.mdi-gamepad-round-outline::before {
  content: "\FE80";
}

.mdi-gamepad-round-right::before {
  content: "\FE81";
}

.mdi-gamepad-round-up::before {
  content: "\FE82";
}

.mdi-gamepad-square::before {
  content: "\FED2";
}

.mdi-gamepad-square-outline::before {
  content: "\FED3";
}

.mdi-gamepad-up::before {
  content: "\FE83";
}

.mdi-gamepad-variant::before {
  content: "\F297";
}

.mdi-gamepad-variant-outline::before {
  content: "\FED4";
}

.mdi-gamma::before {
  content: "\F0119";
}

.mdi-gantry-crane::before {
  content: "\FDAD";
}

.mdi-garage::before {
  content: "\F6D8";
}

.mdi-garage-alert::before {
  content: "\F871";
}

.mdi-garage-alert-variant::before {
  content: "\F0300";
}

.mdi-garage-open::before {
  content: "\F6D9";
}

.mdi-garage-open-variant::before {
  content: "\F02FF";
}

.mdi-garage-variant::before {
  content: "\F02FE";
}

.mdi-gas-cylinder::before {
  content: "\F647";
}

.mdi-gas-station::before {
  content: "\F298";
}

.mdi-gas-station-outline::before {
  content: "\FED5";
}

.mdi-gate::before {
  content: "\F299";
}

.mdi-gate-and::before {
  content: "\F8E0";
}

.mdi-gate-arrow-right::before {
  content: "\F0194";
}

.mdi-gate-nand::before {
  content: "\F8E1";
}

.mdi-gate-nor::before {
  content: "\F8E2";
}

.mdi-gate-not::before {
  content: "\F8E3";
}

.mdi-gate-open::before {
  content: "\F0195";
}

.mdi-gate-or::before {
  content: "\F8E4";
}

.mdi-gate-xnor::before {
  content: "\F8E5";
}

.mdi-gate-xor::before {
  content: "\F8E6";
}

.mdi-gatsby::before {
  content: "\FE84";
}

.mdi-gauge::before {
  content: "\F29A";
}

.mdi-gauge-empty::before {
  content: "\F872";
}

.mdi-gauge-full::before {
  content: "\F873";
}

.mdi-gauge-low::before {
  content: "\F874";
}

.mdi-gavel::before {
  content: "\F29B";
}

.mdi-gender-female::before {
  content: "\F29C";
}

.mdi-gender-male::before {
  content: "\F29D";
}

.mdi-gender-male-female::before {
  content: "\F29E";
}

.mdi-gender-male-female-variant::before {
  content: "\F016A";
}

.mdi-gender-non-binary::before {
  content: "\F016B";
}

.mdi-gender-transgender::before {
  content: "\F29F";
}

.mdi-gentoo::before {
  content: "\F8E7";
}

.mdi-gesture::before {
  content: "\F7CA";
}

.mdi-gesture-double-tap::before {
  content: "\F73B";
}

.mdi-gesture-pinch::before {
  content: "\FABC";
}

.mdi-gesture-spread::before {
  content: "\FABD";
}

.mdi-gesture-swipe::before {
  content: "\FD52";
}

.mdi-gesture-swipe-down::before {
  content: "\F73C";
}

.mdi-gesture-swipe-horizontal::before {
  content: "\FABE";
}

.mdi-gesture-swipe-left::before {
  content: "\F73D";
}

.mdi-gesture-swipe-right::before {
  content: "\F73E";
}

.mdi-gesture-swipe-up::before {
  content: "\F73F";
}

.mdi-gesture-swipe-vertical::before {
  content: "\FABF";
}

.mdi-gesture-tap::before {
  content: "\F740";
}

.mdi-gesture-tap-box::before {
  content: "\F02D4";
}

.mdi-gesture-tap-button::before {
  content: "\F02D3";
}

.mdi-gesture-tap-hold::before {
  content: "\FD53";
}

.mdi-gesture-two-double-tap::before {
  content: "\F741";
}

.mdi-gesture-two-tap::before {
  content: "\F742";
}

.mdi-ghost::before {
  content: "\F2A0";
}

.mdi-ghost-off::before {
  content: "\F9F4";
}

.mdi-gif::before {
  content: "\FD54";
}

.mdi-gift::before {
  content: "\FE85";
}

.mdi-gift-outline::before {
  content: "\F2A1";
}

.mdi-git::before {
  content: "\F2A2";
}

.mdi-github-box::before {
  content: "\F2A3";
}

.mdi-github-circle::before {
  content: "\F2A4";
}

.mdi-github-face::before {
  content: "\F6DA";
}

.mdi-gitlab::before {
  content: "\FB7C";
}

.mdi-glass-cocktail::before {
  content: "\F356";
}

.mdi-glass-flute::before {
  content: "\F2A5";
}

.mdi-glass-mug::before {
  content: "\F2A6";
}

.mdi-glass-mug-variant::before {
  content: "\F0141";
}

.mdi-glass-pint-outline::before {
  content: "\F0338";
}

.mdi-glass-stange::before {
  content: "\F2A7";
}

.mdi-glass-tulip::before {
  content: "\F2A8";
}

.mdi-glass-wine::before {
  content: "\F875";
}

.mdi-glassdoor::before {
  content: "\F2A9";
}

.mdi-glasses::before {
  content: "\F2AA";
}

.mdi-globe-light::before {
  content: "\F0302";
}

.mdi-globe-model::before {
  content: "\F8E8";
}

.mdi-gmail::before {
  content: "\F2AB";
}

.mdi-gnome::before {
  content: "\F2AC";
}

.mdi-go-kart::before {
  content: "\FD55";
}

.mdi-go-kart-track::before {
  content: "\FD56";
}

.mdi-gog::before {
  content: "\FB7D";
}

.mdi-gold::before {
  content: "\F027A";
}

.mdi-golf::before {
  content: "\F822";
}

.mdi-golf-cart::before {
  content: "\F01CF";
}

.mdi-golf-tee::before {
  content: "\F00AE";
}

.mdi-gondola::before {
  content: "\F685";
}

.mdi-goodreads::before {
  content: "\FD57";
}

.mdi-google::before {
  content: "\F2AD";
}

.mdi-google-adwords::before {
  content: "\FC63";
}

.mdi-google-analytics::before {
  content: "\F7CB";
}

.mdi-google-assistant::before {
  content: "\F7CC";
}

.mdi-google-cardboard::before {
  content: "\F2AE";
}

.mdi-google-chrome::before {
  content: "\F2AF";
}

.mdi-google-circles::before {
  content: "\F2B0";
}

.mdi-google-circles-communities::before {
  content: "\F2B1";
}

.mdi-google-circles-extended::before {
  content: "\F2B2";
}

.mdi-google-circles-group::before {
  content: "\F2B3";
}

.mdi-google-classroom::before {
  content: "\F2C0";
}

.mdi-google-cloud::before {
  content: "\F0221";
}

.mdi-google-controller::before {
  content: "\F2B4";
}

.mdi-google-controller-off::before {
  content: "\F2B5";
}

.mdi-google-drive::before {
  content: "\F2B6";
}

.mdi-google-earth::before {
  content: "\F2B7";
}

.mdi-google-fit::before {
  content: "\F96B";
}

.mdi-google-glass::before {
  content: "\F2B8";
}

.mdi-google-hangouts::before {
  content: "\F2C9";
}

.mdi-google-home::before {
  content: "\F823";
}

.mdi-google-keep::before {
  content: "\F6DB";
}

.mdi-google-lens::before {
  content: "\F9F5";
}

.mdi-google-maps::before {
  content: "\F5F5";
}

.mdi-google-my-business::before {
  content: "\F006A";
}

.mdi-google-nearby::before {
  content: "\F2B9";
}

.mdi-google-pages::before {
  content: "\F2BA";
}

.mdi-google-photos::before {
  content: "\F6DC";
}

.mdi-google-physical-web::before {
  content: "\F2BB";
}

.mdi-google-play::before {
  content: "\F2BC";
}

.mdi-google-plus::before {
  content: "\F2BD";
}

.mdi-google-plus-box::before {
  content: "\F2BE";
}

.mdi-google-podcast::before {
  content: "\FED6";
}

.mdi-google-spreadsheet::before {
  content: "\F9F6";
}

.mdi-google-street-view::before {
  content: "\FC64";
}

.mdi-google-translate::before {
  content: "\F2BF";
}

.mdi-gradient::before {
  content: "\F69F";
}

.mdi-grain::before {
  content: "\FD58";
}

.mdi-graph::before {
  content: "\F006B";
}

.mdi-graph-outline::before {
  content: "\F006C";
}

.mdi-graphql::before {
  content: "\F876";
}

.mdi-grave-stone::before {
  content: "\FB7E";
}

.mdi-grease-pencil::before {
  content: "\F648";
}

.mdi-greater-than::before {
  content: "\F96C";
}

.mdi-greater-than-or-equal::before {
  content: "\F96D";
}

.mdi-grid::before {
  content: "\F2C1";
}

.mdi-grid-large::before {
  content: "\F757";
}

.mdi-grid-off::before {
  content: "\F2C2";
}

.mdi-grill::before {
  content: "\FE86";
}

.mdi-grill-outline::before {
  content: "\F01B5";
}

.mdi-group::before {
  content: "\F2C3";
}

.mdi-guitar-acoustic::before {
  content: "\F770";
}

.mdi-guitar-electric::before {
  content: "\F2C4";
}

.mdi-guitar-pick::before {
  content: "\F2C5";
}

.mdi-guitar-pick-outline::before {
  content: "\F2C6";
}

.mdi-guy-fawkes-mask::before {
  content: "\F824";
}

.mdi-hackernews::before {
  content: "\F624";
}

.mdi-hail::before {
  content: "\FAC0";
}

.mdi-hair-dryer::before {
  content: "\F011A";
}

.mdi-hair-dryer-outline::before {
  content: "\F011B";
}

.mdi-halloween::before {
  content: "\FB7F";
}

.mdi-hamburger::before {
  content: "\F684";
}

.mdi-hammer::before {
  content: "\F8E9";
}

.mdi-hand::before {
  content: "\FA4E";
}

.mdi-hand-heart::before {
  content: "\F011C";
}

.mdi-hand-left::before {
  content: "\FE87";
}

.mdi-hand-okay::before {
  content: "\FA4F";
}

.mdi-hand-peace::before {
  content: "\FA50";
}

.mdi-hand-peace-variant::before {
  content: "\FA51";
}

.mdi-hand-pointing-down::before {
  content: "\FA52";
}

.mdi-hand-pointing-left::before {
  content: "\FA53";
}

.mdi-hand-pointing-right::before {
  content: "\F2C7";
}

.mdi-hand-pointing-up::before {
  content: "\FA54";
}

.mdi-hand-right::before {
  content: "\FE88";
}

.mdi-hand-saw::before {
  content: "\FE89";
}

.mdi-handball::before {
  content: "\FF70";
}

.mdi-handcuffs::before {
  content: "\F0169";
}

.mdi-handshake::before {
  content: "\F0243";
}

.mdi-hanger::before {
  content: "\F2C8";
}

.mdi-hard-hat::before {
  content: "\F96E";
}

.mdi-harddisk::before {
  content: "\F2CA";
}

.mdi-harddisk-plus::before {
  content: "\F006D";
}

.mdi-harddisk-remove::before {
  content: "\F006E";
}

.mdi-hat-fedora::before {
  content: "\FB80";
}

.mdi-hazard-lights::before {
  content: "\FC65";
}

.mdi-hdr::before {
  content: "\FD59";
}

.mdi-hdr-off::before {
  content: "\FD5A";
}

.mdi-headphones::before {
  content: "\F2CB";
}

.mdi-headphones-bluetooth::before {
  content: "\F96F";
}

.mdi-headphones-box::before {
  content: "\F2CC";
}

.mdi-headphones-off::before {
  content: "\F7CD";
}

.mdi-headphones-settings::before {
  content: "\F2CD";
}

.mdi-headset::before {
  content: "\F2CE";
}

.mdi-headset-dock::before {
  content: "\F2CF";
}

.mdi-headset-off::before {
  content: "\F2D0";
}

.mdi-heart::before {
  content: "\F2D1";
}

.mdi-heart-box::before {
  content: "\F2D2";
}

.mdi-heart-box-outline::before {
  content: "\F2D3";
}

.mdi-heart-broken::before {
  content: "\F2D4";
}

.mdi-heart-broken-outline::before {
  content: "\FCF0";
}

.mdi-heart-circle::before {
  content: "\F970";
}

.mdi-heart-circle-outline::before {
  content: "\F971";
}

.mdi-heart-flash::before {
  content: "\FF16";
}

.mdi-heart-half::before {
  content: "\F6DE";
}

.mdi-heart-half-full::before {
  content: "\F6DD";
}

.mdi-heart-half-outline::before {
  content: "\F6DF";
}

.mdi-heart-multiple::before {
  content: "\FA55";
}

.mdi-heart-multiple-outline::before {
  content: "\FA56";
}

.mdi-heart-off::before {
  content: "\F758";
}

.mdi-heart-outline::before {
  content: "\F2D5";
}

.mdi-heart-pulse::before {
  content: "\F5F6";
}

.mdi-helicopter::before {
  content: "\FAC1";
}

.mdi-help::before {
  content: "\F2D6";
}

.mdi-help-box::before {
  content: "\F78A";
}

.mdi-help-circle::before {
  content: "\F2D7";
}

.mdi-help-circle-outline::before {
  content: "\F625";
}

.mdi-help-network::before {
  content: "\F6F4";
}

.mdi-help-network-outline::before {
  content: "\FC66";
}

.mdi-help-rhombus::before {
  content: "\FB81";
}

.mdi-help-rhombus-outline::before {
  content: "\FB82";
}

.mdi-hexadecimal::before {
  content: "\F02D2";
}

.mdi-hexagon::before {
  content: "\F2D8";
}

.mdi-hexagon-multiple::before {
  content: "\F6E0";
}

.mdi-hexagon-multiple-outline::before {
  content: "\F011D";
}

.mdi-hexagon-outline::before {
  content: "\F2D9";
}

.mdi-hexagon-slice-1::before {
  content: "\FAC2";
}

.mdi-hexagon-slice-2::before {
  content: "\FAC3";
}

.mdi-hexagon-slice-3::before {
  content: "\FAC4";
}

.mdi-hexagon-slice-4::before {
  content: "\FAC5";
}

.mdi-hexagon-slice-5::before {
  content: "\FAC6";
}

.mdi-hexagon-slice-6::before {
  content: "\FAC7";
}

.mdi-hexagram::before {
  content: "\FAC8";
}

.mdi-hexagram-outline::before {
  content: "\FAC9";
}

.mdi-high-definition::before {
  content: "\F7CE";
}

.mdi-high-definition-box::before {
  content: "\F877";
}

.mdi-highway::before {
  content: "\F5F7";
}

.mdi-hiking::before {
  content: "\FD5B";
}

.mdi-hinduism::before {
  content: "\F972";
}

.mdi-history::before {
  content: "\F2DA";
}

.mdi-hockey-puck::before {
  content: "\F878";
}

.mdi-hockey-sticks::before {
  content: "\F879";
}

.mdi-hololens::before {
  content: "\F2DB";
}

.mdi-home::before {
  content: "\F2DC";
}

.mdi-home-account::before {
  content: "\F825";
}

.mdi-home-alert::before {
  content: "\F87A";
}

.mdi-home-analytics::before {
  content: "\FED7";
}

.mdi-home-assistant::before {
  content: "\F7CF";
}

.mdi-home-automation::before {
  content: "\F7D0";
}

.mdi-home-circle::before {
  content: "\F7D1";
}

.mdi-home-circle-outline::before {
  content: "\F006F";
}

.mdi-home-city::before {
  content: "\FCF1";
}

.mdi-home-city-outline::before {
  content: "\FCF2";
}

.mdi-home-currency-usd::before {
  content: "\F8AE";
}

.mdi-home-edit::before {
  content: "\F0184";
}

.mdi-home-edit-outline::before {
  content: "\F0185";
}

.mdi-home-export-outline::before {
  content: "\FFB8";
}

.mdi-home-flood::before {
  content: "\FF17";
}

.mdi-home-floor-0::before {
  content: "\FDAE";
}

.mdi-home-floor-1::before {
  content: "\FD5C";
}

.mdi-home-floor-2::before {
  content: "\FD5D";
}

.mdi-home-floor-3::before {
  content: "\FD5E";
}

.mdi-home-floor-a::before {
  content: "\FD5F";
}

.mdi-home-floor-b::before {
  content: "\FD60";
}

.mdi-home-floor-g::before {
  content: "\FD61";
}

.mdi-home-floor-l::before {
  content: "\FD62";
}

.mdi-home-floor-negative-1::before {
  content: "\FDAF";
}

.mdi-home-group::before {
  content: "\FDB0";
}

.mdi-home-heart::before {
  content: "\F826";
}

.mdi-home-import-outline::before {
  content: "\FFB9";
}

.mdi-home-lightbulb::before {
  content: "\F027C";
}

.mdi-home-lightbulb-outline::before {
  content: "\F027D";
}

.mdi-home-lock::before {
  content: "\F8EA";
}

.mdi-home-lock-open::before {
  content: "\F8EB";
}

.mdi-home-map-marker::before {
  content: "\F5F8";
}

.mdi-home-minus::before {
  content: "\F973";
}

.mdi-home-modern::before {
  content: "\F2DD";
}

.mdi-home-outline::before {
  content: "\F6A0";
}

.mdi-home-plus::before {
  content: "\F974";
}

.mdi-home-remove::before {
  content: "\F0272";
}

.mdi-home-roof::before {
  content: "\F0156";
}

.mdi-home-thermometer::before {
  content: "\FF71";
}

.mdi-home-thermometer-outline::before {
  content: "\FF72";
}

.mdi-home-variant::before {
  content: "\F2DE";
}

.mdi-home-variant-outline::before {
  content: "\FB83";
}

.mdi-hook::before {
  content: "\F6E1";
}

.mdi-hook-off::before {
  content: "\F6E2";
}

.mdi-hops::before {
  content: "\F2DF";
}

.mdi-horizontal-rotate-clockwise::before {
  content: "\F011E";
}

.mdi-horizontal-rotate-counterclockwise::before {
  content: "\F011F";
}

.mdi-horseshoe::before {
  content: "\FA57";
}

.mdi-hospital::before {
  content: "\F0017";
}

.mdi-hospital-box::before {
  content: "\F2E0";
}

.mdi-hospital-box-outline::before {
  content: "\F0018";
}

.mdi-hospital-building::before {
  content: "\F2E1";
}

.mdi-hospital-marker::before {
  content: "\F2E2";
}

.mdi-hot-tub::before {
  content: "\F827";
}

.mdi-hotel::before {
  content: "\F2E3";
}

.mdi-houzz::before {
  content: "\F2E4";
}

.mdi-houzz-box::before {
  content: "\F2E5";
}

.mdi-hubspot::before {
  content: "\FCF3";
}

.mdi-hulu::before {
  content: "\F828";
}

.mdi-human::before {
  content: "\F2E6";
}

.mdi-human-child::before {
  content: "\F2E7";
}

.mdi-human-female::before {
  content: "\F649";
}

.mdi-human-female-boy::before {
  content: "\FA58";
}

.mdi-human-female-female::before {
  content: "\FA59";
}

.mdi-human-female-girl::before {
  content: "\FA5A";
}

.mdi-human-greeting::before {
  content: "\F64A";
}

.mdi-human-handsdown::before {
  content: "\F64B";
}

.mdi-human-handsup::before {
  content: "\F64C";
}

.mdi-human-male::before {
  content: "\F64D";
}

.mdi-human-male-boy::before {
  content: "\FA5B";
}

.mdi-human-male-female::before {
  content: "\F2E8";
}

.mdi-human-male-girl::before {
  content: "\FA5C";
}

.mdi-human-male-height::before {
  content: "\FF18";
}

.mdi-human-male-height-variant::before {
  content: "\FF19";
}

.mdi-human-male-male::before {
  content: "\FA5D";
}

.mdi-human-pregnant::before {
  content: "\F5CF";
}

.mdi-humble-bundle::before {
  content: "\F743";
}

.mdi-hydro-power::before {
  content: "\F0310";
}

.mdi-ice-cream::before {
  content: "\F829";
}

.mdi-ice-pop::before {
  content: "\FF1A";
}

.mdi-id-card::before {
  content: "\FFE0";
}

.mdi-identifier::before {
  content: "\FF1B";
}

.mdi-iframe::before {
  content: "\FC67";
}

.mdi-iframe-array::before {
  content: "\F0120";
}

.mdi-iframe-array-outline::before {
  content: "\F0121";
}

.mdi-iframe-braces::before {
  content: "\F0122";
}

.mdi-iframe-braces-outline::before {
  content: "\F0123";
}

.mdi-iframe-outline::before {
  content: "\FC68";
}

.mdi-iframe-parentheses::before {
  content: "\F0124";
}

.mdi-iframe-parentheses-outline::before {
  content: "\F0125";
}

.mdi-iframe-variable::before {
  content: "\F0126";
}

.mdi-iframe-variable-outline::before {
  content: "\F0127";
}

.mdi-image::before {
  content: "\F2E9";
}

.mdi-image-album::before {
  content: "\F2EA";
}

.mdi-image-area::before {
  content: "\F2EB";
}

.mdi-image-area-close::before {
  content: "\F2EC";
}

.mdi-image-auto-adjust::before {
  content: "\FFE1";
}

.mdi-image-broken::before {
  content: "\F2ED";
}

.mdi-image-broken-variant::before {
  content: "\F2EE";
}

.mdi-image-edit::before {
  content: "\F020E";
}

.mdi-image-edit-outline::before {
  content: "\F020F";
}

.mdi-image-filter::before {
  content: "\F2EF";
}

.mdi-image-filter-black-white::before {
  content: "\F2F0";
}

.mdi-image-filter-center-focus::before {
  content: "\F2F1";
}

.mdi-image-filter-center-focus-strong::before {
  content: "\FF1C";
}

.mdi-image-filter-center-focus-strong-outline::before {
  content: "\FF1D";
}

.mdi-image-filter-center-focus-weak::before {
  content: "\F2F2";
}

.mdi-image-filter-drama::before {
  content: "\F2F3";
}

.mdi-image-filter-frames::before {
  content: "\F2F4";
}

.mdi-image-filter-hdr::before {
  content: "\F2F5";
}

.mdi-image-filter-none::before {
  content: "\F2F6";
}

.mdi-image-filter-tilt-shift::before {
  content: "\F2F7";
}

.mdi-image-filter-vintage::before {
  content: "\F2F8";
}

.mdi-image-frame::before {
  content: "\FE8A";
}

.mdi-image-move::before {
  content: "\F9F7";
}

.mdi-image-multiple::before {
  content: "\F2F9";
}

.mdi-image-off::before {
  content: "\F82A";
}

.mdi-image-off-outline::before {
  content: "\F01FC";
}

.mdi-image-outline::before {
  content: "\F975";
}

.mdi-image-plus::before {
  content: "\F87B";
}

.mdi-image-search::before {
  content: "\F976";
}

.mdi-image-search-outline::before {
  content: "\F977";
}

.mdi-image-size-select-actual::before {
  content: "\FC69";
}

.mdi-image-size-select-large::before {
  content: "\FC6A";
}

.mdi-image-size-select-small::before {
  content: "\FC6B";
}

.mdi-import::before {
  content: "\F2FA";
}

.mdi-inbox::before {
  content: "\F686";
}

.mdi-inbox-arrow-down::before {
  content: "\F2FB";
}

.mdi-inbox-arrow-down-outline::before {
  content: "\F029B";
}

.mdi-inbox-arrow-up::before {
  content: "\F3D1";
}

.mdi-inbox-arrow-up-outline::before {
  content: "\F029C";
}

.mdi-inbox-full::before {
  content: "\F029D";
}

.mdi-inbox-full-outline::before {
  content: "\F029E";
}

.mdi-inbox-multiple::before {
  content: "\F8AF";
}

.mdi-inbox-multiple-outline::before {
  content: "\FB84";
}

.mdi-inbox-outline::before {
  content: "\F029F";
}

.mdi-incognito::before {
  content: "\F5F9";
}

.mdi-infinity::before {
  content: "\F6E3";
}

.mdi-information::before {
  content: "\F2FC";
}

.mdi-information-outline::before {
  content: "\F2FD";
}

.mdi-information-variant::before {
  content: "\F64E";
}

.mdi-instagram::before {
  content: "\F2FE";
}

.mdi-instapaper::before {
  content: "\F2FF";
}

.mdi-instrument-triangle::before {
  content: "\F0070";
}

.mdi-internet-explorer::before {
  content: "\F300";
}

.mdi-invert-colors::before {
  content: "\F301";
}

.mdi-invert-colors-off::before {
  content: "\FE8B";
}

.mdi-iobroker::before {
  content: "\F0313";
}

.mdi-ip::before {
  content: "\FA5E";
}

.mdi-ip-network::before {
  content: "\FA5F";
}

.mdi-ip-network-outline::before {
  content: "\FC6C";
}

.mdi-ipod::before {
  content: "\FC6D";
}

.mdi-islam::before {
  content: "\F978";
}

.mdi-island::before {
  content: "\F0071";
}

.mdi-itunes::before {
  content: "\F676";
}

.mdi-iv-bag::before {
  content: "\F00E4";
}

.mdi-jabber::before {
  content: "\FDB1";
}

.mdi-jeepney::before {
  content: "\F302";
}

.mdi-jellyfish::before {
  content: "\FF1E";
}

.mdi-jellyfish-outline::before {
  content: "\FF1F";
}

.mdi-jira::before {
  content: "\F303";
}

.mdi-jquery::before {
  content: "\F87C";
}

.mdi-jsfiddle::before {
  content: "\F304";
}

.mdi-json::before {
  content: "\F626";
}

.mdi-judaism::before {
  content: "\F979";
}

.mdi-jump-rope::before {
  content: "\F032A";
}

.mdi-kabaddi::before {
  content: "\FD63";
}

.mdi-karate::before {
  content: "\F82B";
}

.mdi-keg::before {
  content: "\F305";
}

.mdi-kettle::before {
  content: "\F5FA";
}

.mdi-kettle-alert::before {
  content: "\F0342";
}

.mdi-kettle-alert-outline::before {
  content: "\F0343";
}

.mdi-kettle-off::before {
  content: "\F0346";
}

.mdi-kettle-off-outline::before {
  content: "\F0347";
}

.mdi-kettle-outline::before {
  content: "\FF73";
}

.mdi-kettle-steam::before {
  content: "\F0344";
}

.mdi-kettle-steam-outline::before {
  content: "\F0345";
}

.mdi-kettlebell::before {
  content: "\F032B";
}

.mdi-key::before {
  content: "\F306";
}

.mdi-key-arrow-right::before {
  content: "\F033D";
}

.mdi-key-change::before {
  content: "\F307";
}

.mdi-key-link::before {
  content: "\F01CA";
}

.mdi-key-minus::before {
  content: "\F308";
}

.mdi-key-outline::before {
  content: "\FDB2";
}

.mdi-key-plus::before {
  content: "\F309";
}

.mdi-key-remove::before {
  content: "\F30A";
}

.mdi-key-star::before {
  content: "\F01C9";
}

.mdi-key-variant::before {
  content: "\F30B";
}

.mdi-key-wireless::before {
  content: "\FFE2";
}

.mdi-keyboard::before {
  content: "\F30C";
}

.mdi-keyboard-backspace::before {
  content: "\F30D";
}

.mdi-keyboard-caps::before {
  content: "\F30E";
}

.mdi-keyboard-close::before {
  content: "\F30F";
}

.mdi-keyboard-esc::before {
  content: "\F02E2";
}

.mdi-keyboard-f1::before {
  content: "\F02D6";
}

.mdi-keyboard-f10::before {
  content: "\F02DF";
}

.mdi-keyboard-f11::before {
  content: "\F02E0";
}

.mdi-keyboard-f12::before {
  content: "\F02E1";
}

.mdi-keyboard-f2::before {
  content: "\F02D7";
}

.mdi-keyboard-f3::before {
  content: "\F02D8";
}

.mdi-keyboard-f4::before {
  content: "\F02D9";
}

.mdi-keyboard-f5::before {
  content: "\F02DA";
}

.mdi-keyboard-f6::before {
  content: "\F02DB";
}

.mdi-keyboard-f7::before {
  content: "\F02DC";
}

.mdi-keyboard-f8::before {
  content: "\F02DD";
}

.mdi-keyboard-f9::before {
  content: "\F02DE";
}

.mdi-keyboard-off::before {
  content: "\F310";
}

.mdi-keyboard-off-outline::before {
  content: "\FE8C";
}

.mdi-keyboard-outline::before {
  content: "\F97A";
}

.mdi-keyboard-return::before {
  content: "\F311";
}

.mdi-keyboard-settings::before {
  content: "\F9F8";
}

.mdi-keyboard-settings-outline::before {
  content: "\F9F9";
}

.mdi-keyboard-space::before {
  content: "\F0072";
}

.mdi-keyboard-tab::before {
  content: "\F312";
}

.mdi-keyboard-variant::before {
  content: "\F313";
}

.mdi-khanda::before {
  content: "\F0128";
}

.mdi-kickstarter::before {
  content: "\F744";
}

.mdi-knife::before {
  content: "\F9FA";
}

.mdi-knife-military::before {
  content: "\F9FB";
}

.mdi-kodi::before {
  content: "\F314";
}

.mdi-kotlin::before {
  content: "\F0244";
}

.mdi-kubernetes::before {
  content: "\F0129";
}

.mdi-label::before {
  content: "\F315";
}

.mdi-label-off::before {
  content: "\FACA";
}

.mdi-label-off-outline::before {
  content: "\FACB";
}

.mdi-label-outline::before {
  content: "\F316";
}

.mdi-label-percent::before {
  content: "\F0315";
}

.mdi-label-percent-outline::before {
  content: "\F0316";
}

.mdi-label-variant::before {
  content: "\FACC";
}

.mdi-label-variant-outline::before {
  content: "\FACD";
}

.mdi-ladybug::before {
  content: "\F82C";
}

.mdi-lambda::before {
  content: "\F627";
}

.mdi-lamp::before {
  content: "\F6B4";
}

.mdi-lan::before {
  content: "\F317";
}

.mdi-lan-check::before {
  content: "\F02D5";
}

.mdi-lan-connect::before {
  content: "\F318";
}

.mdi-lan-disconnect::before {
  content: "\F319";
}

.mdi-lan-pending::before {
  content: "\F31A";
}

.mdi-language-c::before {
  content: "\F671";
}

.mdi-language-cpp::before {
  content: "\F672";
}

.mdi-language-csharp::before {
  content: "\F31B";
}

.mdi-language-css3::before {
  content: "\F31C";
}

.mdi-language-fortran::before {
  content: "\F0245";
}

.mdi-language-go::before {
  content: "\F7D2";
}

.mdi-language-haskell::before {
  content: "\FC6E";
}

.mdi-language-html5::before {
  content: "\F31D";
}

.mdi-language-java::before {
  content: "\FB1C";
}

.mdi-language-javascript::before {
  content: "\F31E";
}

.mdi-language-lua::before {
  content: "\F8B0";
}

.mdi-language-php::before {
  content: "\F31F";
}

.mdi-language-python::before {
  content: "\F320";
}

.mdi-language-python-text::before {
  content: "\F321";
}

.mdi-language-r::before {
  content: "\F7D3";
}

.mdi-language-ruby-on-rails::before {
  content: "\FACE";
}

.mdi-language-swift::before {
  content: "\F6E4";
}

.mdi-language-typescript::before {
  content: "\F6E5";
}

.mdi-laptop::before {
  content: "\F322";
}

.mdi-laptop-chromebook::before {
  content: "\F323";
}

.mdi-laptop-mac::before {
  content: "\F324";
}

.mdi-laptop-off::before {
  content: "\F6E6";
}

.mdi-laptop-windows::before {
  content: "\F325";
}

.mdi-laravel::before {
  content: "\FACF";
}

.mdi-lasso::before {
  content: "\FF20";
}

.mdi-lastfm::before {
  content: "\F326";
}

.mdi-lastpass::before {
  content: "\F446";
}

.mdi-latitude::before {
  content: "\FF74";
}

.mdi-launch::before {
  content: "\F327";
}

.mdi-lava-lamp::before {
  content: "\F7D4";
}

.mdi-layers::before {
  content: "\F328";
}

.mdi-layers-minus::before {
  content: "\FE8D";
}

.mdi-layers-off::before {
  content: "\F329";
}

.mdi-layers-off-outline::before {
  content: "\F9FC";
}

.mdi-layers-outline::before {
  content: "\F9FD";
}

.mdi-layers-plus::before {
  content: "\FE30";
}

.mdi-layers-remove::before {
  content: "\FE31";
}

.mdi-layers-search::before {
  content: "\F0231";
}

.mdi-layers-search-outline::before {
  content: "\F0232";
}

.mdi-layers-triple::before {
  content: "\FF75";
}

.mdi-layers-triple-outline::before {
  content: "\FF76";
}

.mdi-lead-pencil::before {
  content: "\F64F";
}

.mdi-leaf::before {
  content: "\F32A";
}

.mdi-leaf-maple::before {
  content: "\FC6F";
}

.mdi-leaf-maple-off::before {
  content: "\F0305";
}

.mdi-leaf-off::before {
  content: "\F0304";
}

.mdi-leak::before {
  content: "\FDB3";
}

.mdi-leak-off::before {
  content: "\FDB4";
}

.mdi-led-off::before {
  content: "\F32B";
}

.mdi-led-on::before {
  content: "\F32C";
}

.mdi-led-outline::before {
  content: "\F32D";
}

.mdi-led-strip::before {
  content: "\F7D5";
}

.mdi-led-strip-variant::before {
  content: "\F0073";
}

.mdi-led-variant-off::before {
  content: "\F32E";
}

.mdi-led-variant-on::before {
  content: "\F32F";
}

.mdi-led-variant-outline::before {
  content: "\F330";
}

.mdi-leek::before {
  content: "\F01A8";
}

.mdi-less-than::before {
  content: "\F97B";
}

.mdi-less-than-or-equal::before {
  content: "\F97C";
}

.mdi-library::before {
  content: "\F331";
}

.mdi-library-books::before {
  content: "\F332";
}

.mdi-library-movie::before {
  content: "\FCF4";
}

.mdi-library-music::before {
  content: "\F333";
}

.mdi-library-music-outline::before {
  content: "\FF21";
}

.mdi-library-shelves::before {
  content: "\FB85";
}

.mdi-library-video::before {
  content: "\FCF5";
}

.mdi-license::before {
  content: "\FFE3";
}

.mdi-lifebuoy::before {
  content: "\F87D";
}

.mdi-light-switch::before {
  content: "\F97D";
}

.mdi-lightbulb::before {
  content: "\F335";
}

.mdi-lightbulb-cfl::before {
  content: "\F0233";
}

.mdi-lightbulb-cfl-off::before {
  content: "\F0234";
}

.mdi-lightbulb-cfl-spiral::before {
  content: "\F02A0";
}

.mdi-lightbulb-cfl-spiral-off::before {
  content: "\F02EE";
}

.mdi-lightbulb-group::before {
  content: "\F027E";
}

.mdi-lightbulb-group-off::before {
  content: "\F02F8";
}

.mdi-lightbulb-group-off-outline::before {
  content: "\F02F9";
}

.mdi-lightbulb-group-outline::before {
  content: "\F027F";
}

.mdi-lightbulb-multiple::before {
  content: "\F0280";
}

.mdi-lightbulb-multiple-off::before {
  content: "\F02FA";
}

.mdi-lightbulb-multiple-off-outline::before {
  content: "\F02FB";
}

.mdi-lightbulb-multiple-outline::before {
  content: "\F0281";
}

.mdi-lightbulb-off::before {
  content: "\FE32";
}

.mdi-lightbulb-off-outline::before {
  content: "\FE33";
}

.mdi-lightbulb-on::before {
  content: "\F6E7";
}

.mdi-lightbulb-on-outline::before {
  content: "\F6E8";
}

.mdi-lightbulb-outline::before {
  content: "\F336";
}

.mdi-lighthouse::before {
  content: "\F9FE";
}

.mdi-lighthouse-on::before {
  content: "\F9FF";
}

.mdi-link::before {
  content: "\F337";
}

.mdi-link-box::before {
  content: "\FCF6";
}

.mdi-link-box-outline::before {
  content: "\FCF7";
}

.mdi-link-box-variant::before {
  content: "\FCF8";
}

.mdi-link-box-variant-outline::before {
  content: "\FCF9";
}

.mdi-link-lock::before {
  content: "\F00E5";
}

.mdi-link-off::before {
  content: "\F338";
}

.mdi-link-plus::before {
  content: "\FC70";
}

.mdi-link-variant::before {
  content: "\F339";
}

.mdi-link-variant-minus::before {
  content: "\F012A";
}

.mdi-link-variant-off::before {
  content: "\F33A";
}

.mdi-link-variant-plus::before {
  content: "\F012B";
}

.mdi-link-variant-remove::before {
  content: "\F012C";
}

.mdi-linkedin::before {
  content: "\F33B";
}

.mdi-linkedin-box::before {
  content: "\F33C";
}

.mdi-linux::before {
  content: "\F33D";
}

.mdi-linux-mint::before {
  content: "\F8EC";
}

.mdi-litecoin::before {
  content: "\FA60";
}

.mdi-loading::before {
  content: "\F771";
}

.mdi-location-enter::before {
  content: "\FFE4";
}

.mdi-location-exit::before {
  content: "\FFE5";
}

.mdi-lock::before {
  content: "\F33E";
}

.mdi-lock-alert::before {
  content: "\F8ED";
}

.mdi-lock-clock::before {
  content: "\F97E";
}

.mdi-lock-open::before {
  content: "\F33F";
}

.mdi-lock-open-outline::before {
  content: "\F340";
}

.mdi-lock-open-variant::before {
  content: "\FFE6";
}

.mdi-lock-open-variant-outline::before {
  content: "\FFE7";
}

.mdi-lock-outline::before {
  content: "\F341";
}

.mdi-lock-pattern::before {
  content: "\F6E9";
}

.mdi-lock-plus::before {
  content: "\F5FB";
}

.mdi-lock-question::before {
  content: "\F8EE";
}

.mdi-lock-reset::before {
  content: "\F772";
}

.mdi-lock-smart::before {
  content: "\F8B1";
}

.mdi-locker::before {
  content: "\F7D6";
}

.mdi-locker-multiple::before {
  content: "\F7D7";
}

.mdi-login::before {
  content: "\F342";
}

.mdi-login-variant::before {
  content: "\F5FC";
}

.mdi-logout::before {
  content: "\F343";
}

.mdi-logout-variant::before {
  content: "\F5FD";
}

.mdi-longitude::before {
  content: "\FF77";
}

.mdi-looks::before {
  content: "\F344";
}

.mdi-loupe::before {
  content: "\F345";
}

.mdi-lumx::before {
  content: "\F346";
}

.mdi-lungs::before {
  content: "\F00AF";
}

.mdi-lyft::before {
  content: "\FB1D";
}

.mdi-magnet::before {
  content: "\F347";
}

.mdi-magnet-on::before {
  content: "\F348";
}

.mdi-magnify::before {
  content: "\F349";
}

.mdi-magnify-close::before {
  content: "\F97F";
}

.mdi-magnify-minus::before {
  content: "\F34A";
}

.mdi-magnify-minus-cursor::before {
  content: "\FA61";
}

.mdi-magnify-minus-outline::before {
  content: "\F6EB";
}

.mdi-magnify-plus::before {
  content: "\F34B";
}

.mdi-magnify-plus-cursor::before {
  content: "\FA62";
}

.mdi-magnify-plus-outline::before {
  content: "\F6EC";
}

.mdi-magnify-remove-cursor::before {
  content: "\F0237";
}

.mdi-magnify-remove-outline::before {
  content: "\F0238";
}

.mdi-magnify-scan::before {
  content: "\F02A1";
}

.mdi-mail::before {
  content: "\FED8";
}

.mdi-mail-ru::before {
  content: "\F34C";
}

.mdi-mailbox::before {
  content: "\F6ED";
}

.mdi-mailbox-open::before {
  content: "\FD64";
}

.mdi-mailbox-open-outline::before {
  content: "\FD65";
}

.mdi-mailbox-open-up::before {
  content: "\FD66";
}

.mdi-mailbox-open-up-outline::before {
  content: "\FD67";
}

.mdi-mailbox-outline::before {
  content: "\FD68";
}

.mdi-mailbox-up::before {
  content: "\FD69";
}

.mdi-mailbox-up-outline::before {
  content: "\FD6A";
}

.mdi-map::before {
  content: "\F34D";
}

.mdi-map-check::before {
  content: "\FED9";
}

.mdi-map-check-outline::before {
  content: "\FEDA";
}

.mdi-map-clock::before {
  content: "\FCFA";
}

.mdi-map-clock-outline::before {
  content: "\FCFB";
}

.mdi-map-legend::before {
  content: "\FA00";
}

.mdi-map-marker::before {
  content: "\F34E";
}

.mdi-map-marker-alert::before {
  content: "\FF22";
}

.mdi-map-marker-alert-outline::before {
  content: "\FF23";
}

.mdi-map-marker-check::before {
  content: "\FC71";
}

.mdi-map-marker-check-outline::before {
  content: "\F0326";
}

.mdi-map-marker-circle::before {
  content: "\F34F";
}

.mdi-map-marker-distance::before {
  content: "\F8EF";
}

.mdi-map-marker-down::before {
  content: "\F012D";
}

.mdi-map-marker-left::before {
  content: "\F0306";
}

.mdi-map-marker-left-outline::before {
  content: "\F0308";
}

.mdi-map-marker-minus::before {
  content: "\F650";
}

.mdi-map-marker-minus-outline::before {
  content: "\F0324";
}

.mdi-map-marker-multiple::before {
  content: "\F350";
}

.mdi-map-marker-multiple-outline::before {
  content: "\F02A2";
}

.mdi-map-marker-off::before {
  content: "\F351";
}

.mdi-map-marker-off-outline::before {
  content: "\F0328";
}

.mdi-map-marker-outline::before {
  content: "\F7D8";
}

.mdi-map-marker-path::before {
  content: "\FCFC";
}

.mdi-map-marker-plus::before {
  content: "\F651";
}

.mdi-map-marker-plus-outline::before {
  content: "\F0323";
}

.mdi-map-marker-question::before {
  content: "\FF24";
}

.mdi-map-marker-question-outline::before {
  content: "\FF25";
}

.mdi-map-marker-radius::before {
  content: "\F352";
}

.mdi-map-marker-radius-outline::before {
  content: "\F0327";
}

.mdi-map-marker-remove::before {
  content: "\FF26";
}

.mdi-map-marker-remove-outline::before {
  content: "\F0325";
}

.mdi-map-marker-remove-variant::before {
  content: "\FF27";
}

.mdi-map-marker-right::before {
  content: "\F0307";
}

.mdi-map-marker-right-outline::before {
  content: "\F0309";
}

.mdi-map-marker-up::before {
  content: "\F012E";
}

.mdi-map-minus::before {
  content: "\F980";
}

.mdi-map-outline::before {
  content: "\F981";
}

.mdi-map-plus::before {
  content: "\F982";
}

.mdi-map-search::before {
  content: "\F983";
}

.mdi-map-search-outline::before {
  content: "\F984";
}

.mdi-mapbox::before {
  content: "\FB86";
}

.mdi-margin::before {
  content: "\F353";
}

.mdi-markdown::before {
  content: "\F354";
}

.mdi-markdown-outline::before {
  content: "\FF78";
}

.mdi-marker::before {
  content: "\F652";
}

.mdi-marker-cancel::before {
  content: "\FDB5";
}

.mdi-marker-check::before {
  content: "\F355";
}

.mdi-mastodon::before {
  content: "\FAD0";
}

.mdi-mastodon-variant::before {
  content: "\FAD1";
}

.mdi-material-design::before {
  content: "\F985";
}

.mdi-material-ui::before {
  content: "\F357";
}

.mdi-math-compass::before {
  content: "\F358";
}

.mdi-math-cos::before {
  content: "\FC72";
}

.mdi-math-integral::before {
  content: "\FFE8";
}

.mdi-math-integral-box::before {
  content: "\FFE9";
}

.mdi-math-log::before {
  content: "\F00B0";
}

.mdi-math-norm::before {
  content: "\FFEA";
}

.mdi-math-norm-box::before {
  content: "\FFEB";
}

.mdi-math-sin::before {
  content: "\FC73";
}

.mdi-math-tan::before {
  content: "\FC74";
}

.mdi-matrix::before {
  content: "\F628";
}

.mdi-medal::before {
  content: "\F986";
}

.mdi-medical-bag::before {
  content: "\F6EE";
}

.mdi-meditation::before {
  content: "\F01A6";
}

.mdi-medium::before {
  content: "\F35A";
}

.mdi-meetup::before {
  content: "\FAD2";
}

.mdi-memory::before {
  content: "\F35B";
}

.mdi-menu::before {
  content: "\F35C";
}

.mdi-menu-down::before {
  content: "\F35D";
}

.mdi-menu-down-outline::before {
  content: "\F6B5";
}

.mdi-menu-left::before {
  content: "\F35E";
}

.mdi-menu-left-outline::before {
  content: "\FA01";
}

.mdi-menu-open::before {
  content: "\FB87";
}

.mdi-menu-right::before {
  content: "\F35F";
}

.mdi-menu-right-outline::before {
  content: "\FA02";
}

.mdi-menu-swap::before {
  content: "\FA63";
}

.mdi-menu-swap-outline::before {
  content: "\FA64";
}

.mdi-menu-up::before {
  content: "\F360";
}

.mdi-menu-up-outline::before {
  content: "\F6B6";
}

.mdi-merge::before {
  content: "\FF79";
}

.mdi-message::before {
  content: "\F361";
}

.mdi-message-alert::before {
  content: "\F362";
}

.mdi-message-alert-outline::before {
  content: "\FA03";
}

.mdi-message-arrow-left::before {
  content: "\F031D";
}

.mdi-message-arrow-left-outline::before {
  content: "\F031E";
}

.mdi-message-arrow-right::before {
  content: "\F031F";
}

.mdi-message-arrow-right-outline::before {
  content: "\F0320";
}

.mdi-message-bulleted::before {
  content: "\F6A1";
}

.mdi-message-bulleted-off::before {
  content: "\F6A2";
}

.mdi-message-draw::before {
  content: "\F363";
}

.mdi-message-image::before {
  content: "\F364";
}

.mdi-message-image-outline::before {
  content: "\F0197";
}

.mdi-message-lock::before {
  content: "\FFEC";
}

.mdi-message-lock-outline::before {
  content: "\F0198";
}

.mdi-message-minus::before {
  content: "\F0199";
}

.mdi-message-minus-outline::before {
  content: "\F019A";
}

.mdi-message-outline::before {
  content: "\F365";
}

.mdi-message-plus::before {
  content: "\F653";
}

.mdi-message-plus-outline::before {
  content: "\F00E6";
}

.mdi-message-processing::before {
  content: "\F366";
}

.mdi-message-processing-outline::before {
  content: "\F019B";
}

.mdi-message-reply::before {
  content: "\F367";
}

.mdi-message-reply-text::before {
  content: "\F368";
}

.mdi-message-settings::before {
  content: "\F6EF";
}

.mdi-message-settings-outline::before {
  content: "\F019C";
}

.mdi-message-settings-variant::before {
  content: "\F6F0";
}

.mdi-message-settings-variant-outline::before {
  content: "\F019D";
}

.mdi-message-text::before {
  content: "\F369";
}

.mdi-message-text-clock::before {
  content: "\F019E";
}

.mdi-message-text-clock-outline::before {
  content: "\F019F";
}

.mdi-message-text-lock::before {
  content: "\FFED";
}

.mdi-message-text-lock-outline::before {
  content: "\F01A0";
}

.mdi-message-text-outline::before {
  content: "\F36A";
}

.mdi-message-video::before {
  content: "\F36B";
}

.mdi-meteor::before {
  content: "\F629";
}

.mdi-metronome::before {
  content: "\F7D9";
}

.mdi-metronome-tick::before {
  content: "\F7DA";
}

.mdi-micro-sd::before {
  content: "\F7DB";
}

.mdi-microphone::before {
  content: "\F36C";
}

.mdi-microphone-minus::before {
  content: "\F8B2";
}

.mdi-microphone-off::before {
  content: "\F36D";
}

.mdi-microphone-outline::before {
  content: "\F36E";
}

.mdi-microphone-plus::before {
  content: "\F8B3";
}

.mdi-microphone-settings::before {
  content: "\F36F";
}

.mdi-microphone-variant::before {
  content: "\F370";
}

.mdi-microphone-variant-off::before {
  content: "\F371";
}

.mdi-microscope::before {
  content: "\F654";
}

.mdi-microsoft::before {
  content: "\F372";
}

.mdi-microsoft-dynamics::before {
  content: "\F987";
}

.mdi-microwave::before {
  content: "\FC75";
}

.mdi-middleware::before {
  content: "\FF7A";
}

.mdi-middleware-outline::before {
  content: "\FF7B";
}

.mdi-midi::before {
  content: "\F8F0";
}

.mdi-midi-port::before {
  content: "\F8F1";
}

.mdi-mine::before {
  content: "\FDB6";
}

.mdi-minecraft::before {
  content: "\F373";
}

.mdi-mini-sd::before {
  content: "\FA04";
}

.mdi-minidisc::before {
  content: "\FA05";
}

.mdi-minus::before {
  content: "\F374";
}

.mdi-minus-box::before {
  content: "\F375";
}

.mdi-minus-box-multiple::before {
  content: "\F016C";
}

.mdi-minus-box-multiple-outline::before {
  content: "\F016D";
}

.mdi-minus-box-outline::before {
  content: "\F6F1";
}

.mdi-minus-circle::before {
  content: "\F376";
}

.mdi-minus-circle-outline::before {
  content: "\F377";
}

.mdi-minus-network::before {
  content: "\F378";
}

.mdi-minus-network-outline::before {
  content: "\FC76";
}

.mdi-mirror::before {
  content: "\F0228";
}

.mdi-mixcloud::before {
  content: "\F62A";
}

.mdi-mixed-martial-arts::before {
  content: "\FD6B";
}

.mdi-mixed-reality::before {
  content: "\F87E";
}

.mdi-mixer::before {
  content: "\F7DC";
}

.mdi-molecule::before {
  content: "\FB88";
}

.mdi-monitor::before {
  content: "\F379";
}

.mdi-monitor-cellphone::before {
  content: "\F988";
}

.mdi-monitor-cellphone-star::before {
  content: "\F989";
}

.mdi-monitor-clean::before {
  content: "\F012F";
}

.mdi-monitor-dashboard::before {
  content: "\FA06";
}

.mdi-monitor-edit::before {
  content: "\F02F1";
}

.mdi-monitor-lock::before {
  content: "\FDB7";
}

.mdi-monitor-multiple::before {
  content: "\F37A";
}

.mdi-monitor-off::before {
  content: "\FD6C";
}

.mdi-monitor-screenshot::before {
  content: "\FE34";
}

.mdi-monitor-speaker::before {
  content: "\FF7C";
}

.mdi-monitor-speaker-off::before {
  content: "\FF7D";
}

.mdi-monitor-star::before {
  content: "\FDB8";
}

.mdi-moon-first-quarter::before {
  content: "\FF7E";
}

.mdi-moon-full::before {
  content: "\FF7F";
}

.mdi-moon-last-quarter::before {
  content: "\FF80";
}

.mdi-moon-new::before {
  content: "\FF81";
}

.mdi-moon-waning-crescent::before {
  content: "\FF82";
}

.mdi-moon-waning-gibbous::before {
  content: "\FF83";
}

.mdi-moon-waxing-crescent::before {
  content: "\FF84";
}

.mdi-moon-waxing-gibbous::before {
  content: "\FF85";
}

.mdi-moped::before {
  content: "\F00B1";
}

.mdi-more::before {
  content: "\F37B";
}

.mdi-mother-heart::before {
  content: "\F033F";
}

.mdi-mother-nurse::before {
  content: "\FCFD";
}

.mdi-motion-sensor::before {
  content: "\FD6D";
}

.mdi-motorbike::before {
  content: "\F37C";
}

.mdi-mouse::before {
  content: "\F37D";
}

.mdi-mouse-bluetooth::before {
  content: "\F98A";
}

.mdi-mouse-off::before {
  content: "\F37E";
}

.mdi-mouse-variant::before {
  content: "\F37F";
}

.mdi-mouse-variant-off::before {
  content: "\F380";
}

.mdi-move-resize::before {
  content: "\F655";
}

.mdi-move-resize-variant::before {
  content: "\F656";
}

.mdi-movie::before {
  content: "\F381";
}

.mdi-movie-edit::before {
  content: "\F014D";
}

.mdi-movie-edit-outline::before {
  content: "\F014E";
}

.mdi-movie-filter::before {
  content: "\F014F";
}

.mdi-movie-filter-outline::before {
  content: "\F0150";
}

.mdi-movie-open::before {
  content: "\FFEE";
}

.mdi-movie-open-outline::before {
  content: "\FFEF";
}

.mdi-movie-outline::before {
  content: "\FDB9";
}

.mdi-movie-roll::before {
  content: "\F7DD";
}

.mdi-movie-search::before {
  content: "\F01FD";
}

.mdi-movie-search-outline::before {
  content: "\F01FE";
}

.mdi-muffin::before {
  content: "\F98B";
}

.mdi-multiplication::before {
  content: "\F382";
}

.mdi-multiplication-box::before {
  content: "\F383";
}

.mdi-mushroom::before {
  content: "\F7DE";
}

.mdi-mushroom-outline::before {
  content: "\F7DF";
}

.mdi-music::before {
  content: "\F759";
}

.mdi-music-accidental-double-flat::before {
  content: "\FF86";
}

.mdi-music-accidental-double-sharp::before {
  content: "\FF87";
}

.mdi-music-accidental-flat::before {
  content: "\FF88";
}

.mdi-music-accidental-natural::before {
  content: "\FF89";
}

.mdi-music-accidental-sharp::before {
  content: "\FF8A";
}

.mdi-music-box::before {
  content: "\F384";
}

.mdi-music-box-outline::before {
  content: "\F385";
}

.mdi-music-circle::before {
  content: "\F386";
}

.mdi-music-circle-outline::before {
  content: "\FAD3";
}

.mdi-music-clef-alto::before {
  content: "\FF8B";
}

.mdi-music-clef-bass::before {
  content: "\FF8C";
}

.mdi-music-clef-treble::before {
  content: "\FF8D";
}

.mdi-music-note::before {
  content: "\F387";
}

.mdi-music-note-bluetooth::before {
  content: "\F5FE";
}

.mdi-music-note-bluetooth-off::before {
  content: "\F5FF";
}

.mdi-music-note-eighth::before {
  content: "\F388";
}

.mdi-music-note-eighth-dotted::before {
  content: "\FF8E";
}

.mdi-music-note-half::before {
  content: "\F389";
}

.mdi-music-note-half-dotted::before {
  content: "\FF8F";
}

.mdi-music-note-off::before {
  content: "\F38A";
}

.mdi-music-note-off-outline::before {
  content: "\FF90";
}

.mdi-music-note-outline::before {
  content: "\FF91";
}

.mdi-music-note-plus::before {
  content: "\FDBA";
}

.mdi-music-note-quarter::before {
  content: "\F38B";
}

.mdi-music-note-quarter-dotted::before {
  content: "\FF92";
}

.mdi-music-note-sixteenth::before {
  content: "\F38C";
}

.mdi-music-note-sixteenth-dotted::before {
  content: "\FF93";
}

.mdi-music-note-whole::before {
  content: "\F38D";
}

.mdi-music-note-whole-dotted::before {
  content: "\FF94";
}

.mdi-music-off::before {
  content: "\F75A";
}

.mdi-music-rest-eighth::before {
  content: "\FF95";
}

.mdi-music-rest-half::before {
  content: "\FF96";
}

.mdi-music-rest-quarter::before {
  content: "\FF97";
}

.mdi-music-rest-sixteenth::before {
  content: "\FF98";
}

.mdi-music-rest-whole::before {
  content: "\FF99";
}

.mdi-nail::before {
  content: "\FDBB";
}

.mdi-nas::before {
  content: "\F8F2";
}

.mdi-nativescript::before {
  content: "\F87F";
}

.mdi-nature::before {
  content: "\F38E";
}

.mdi-nature-people::before {
  content: "\F38F";
}

.mdi-navigation::before {
  content: "\F390";
}

.mdi-near-me::before {
  content: "\F5CD";
}

.mdi-necklace::before {
  content: "\FF28";
}

.mdi-needle::before {
  content: "\F391";
}

.mdi-netflix::before {
  content: "\F745";
}

.mdi-network::before {
  content: "\F6F2";
}

.mdi-network-off::before {
  content: "\FC77";
}

.mdi-network-off-outline::before {
  content: "\FC78";
}

.mdi-network-outline::before {
  content: "\FC79";
}

.mdi-network-router::before {
  content: "\F00B2";
}

.mdi-network-strength-1::before {
  content: "\F8F3";
}

.mdi-network-strength-1-alert::before {
  content: "\F8F4";
}

.mdi-network-strength-2::before {
  content: "\F8F5";
}

.mdi-network-strength-2-alert::before {
  content: "\F8F6";
}

.mdi-network-strength-3::before {
  content: "\F8F7";
}

.mdi-network-strength-3-alert::before {
  content: "\F8F8";
}

.mdi-network-strength-4::before {
  content: "\F8F9";
}

.mdi-network-strength-4-alert::before {
  content: "\F8FA";
}

.mdi-network-strength-off::before {
  content: "\F8FB";
}

.mdi-network-strength-off-outline::before {
  content: "\F8FC";
}

.mdi-network-strength-outline::before {
  content: "\F8FD";
}

.mdi-new-box::before {
  content: "\F394";
}

.mdi-newspaper::before {
  content: "\F395";
}

.mdi-newspaper-minus::before {
  content: "\FF29";
}

.mdi-newspaper-plus::before {
  content: "\FF2A";
}

.mdi-newspaper-variant::before {
  content: "\F0023";
}

.mdi-newspaper-variant-multiple::before {
  content: "\F0024";
}

.mdi-newspaper-variant-multiple-outline::before {
  content: "\F0025";
}

.mdi-newspaper-variant-outline::before {
  content: "\F0026";
}

.mdi-nfc::before {
  content: "\F396";
}

.mdi-nfc-off::before {
  content: "\FE35";
}

.mdi-nfc-search-variant::before {
  content: "\FE36";
}

.mdi-nfc-tap::before {
  content: "\F397";
}

.mdi-nfc-variant::before {
  content: "\F398";
}

.mdi-nfc-variant-off::before {
  content: "\FE37";
}

.mdi-ninja::before {
  content: "\F773";
}

.mdi-nintendo-switch::before {
  content: "\F7E0";
}

.mdi-nix::before {
  content: "\F0130";
}

.mdi-nodejs::before {
  content: "\F399";
}

.mdi-noodles::before {
  content: "\F01A9";
}

.mdi-not-equal::before {
  content: "\F98C";
}

.mdi-not-equal-variant::before {
  content: "\F98D";
}

.mdi-note::before {
  content: "\F39A";
}

.mdi-note-multiple::before {
  content: "\F6B7";
}

.mdi-note-multiple-outline::before {
  content: "\F6B8";
}

.mdi-note-outline::before {
  content: "\F39B";
}

.mdi-note-plus::before {
  content: "\F39C";
}

.mdi-note-plus-outline::before {
  content: "\F39D";
}

.mdi-note-text::before {
  content: "\F39E";
}

.mdi-note-text-outline::before {
  content: "\F0202";
}

.mdi-notebook::before {
  content: "\F82D";
}

.mdi-notebook-multiple::before {
  content: "\FE38";
}

.mdi-notebook-outline::before {
  content: "\FEDC";
}

.mdi-notification-clear-all::before {
  content: "\F39F";
}

.mdi-npm::before {
  content: "\F6F6";
}

.mdi-npm-variant::before {
  content: "\F98E";
}

.mdi-npm-variant-outline::before {
  content: "\F98F";
}

.mdi-nuke::before {
  content: "\F6A3";
}

.mdi-null::before {
  content: "\F7E1";
}

.mdi-numeric::before {
  content: "\F3A0";
}

.mdi-numeric-0::before {
  content: "0";
}

.mdi-numeric-0-box::before {
  content: "\F3A1";
}

.mdi-numeric-0-box-multiple::before {
  content: "\FF2B";
}

.mdi-numeric-0-box-multiple-outline::before {
  content: "\F3A2";
}

.mdi-numeric-0-box-outline::before {
  content: "\F3A3";
}

.mdi-numeric-0-circle::before {
  content: "\FC7A";
}

.mdi-numeric-0-circle-outline::before {
  content: "\FC7B";
}

.mdi-numeric-1::before {
  content: "1";
}

.mdi-numeric-1-box::before {
  content: "\F3A4";
}

.mdi-numeric-1-box-multiple::before {
  content: "\FF2C";
}

.mdi-numeric-1-box-multiple-outline::before {
  content: "\F3A5";
}

.mdi-numeric-1-box-outline::before {
  content: "\F3A6";
}

.mdi-numeric-1-circle::before {
  content: "\FC7C";
}

.mdi-numeric-1-circle-outline::before {
  content: "\FC7D";
}

.mdi-numeric-10::before {
  content: "\F000A";
}

.mdi-numeric-10-box::before {
  content: "\FF9A";
}

.mdi-numeric-10-box-multiple::before {
  content: "\F000B";
}

.mdi-numeric-10-box-multiple-outline::before {
  content: "\F000C";
}

.mdi-numeric-10-box-outline::before {
  content: "\FF9B";
}

.mdi-numeric-10-circle::before {
  content: "\F000D";
}

.mdi-numeric-10-circle-outline::before {
  content: "\F000E";
}

.mdi-numeric-2::before {
  content: "2";
}

.mdi-numeric-2-box::before {
  content: "\F3A7";
}

.mdi-numeric-2-box-multiple::before {
  content: "\FF2D";
}

.mdi-numeric-2-box-multiple-outline::before {
  content: "\F3A8";
}

.mdi-numeric-2-box-outline::before {
  content: "\F3A9";
}

.mdi-numeric-2-circle::before {
  content: "\FC7E";
}

.mdi-numeric-2-circle-outline::before {
  content: "\FC7F";
}

.mdi-numeric-3::before {
  content: "3";
}

.mdi-numeric-3-box::before {
  content: "\F3AA";
}

.mdi-numeric-3-box-multiple::before {
  content: "\FF2E";
}

.mdi-numeric-3-box-multiple-outline::before {
  content: "\F3AB";
}

.mdi-numeric-3-box-outline::before {
  content: "\F3AC";
}

.mdi-numeric-3-circle::before {
  content: "\FC80";
}

.mdi-numeric-3-circle-outline::before {
  content: "\FC81";
}

.mdi-numeric-4::before {
  content: "4";
}

.mdi-numeric-4-box::before {
  content: "\F3AD";
}

.mdi-numeric-4-box-multiple::before {
  content: "\FF2F";
}

.mdi-numeric-4-box-multiple-outline::before {
  content: "\F3AE";
}

.mdi-numeric-4-box-outline::before {
  content: "\F3AF";
}

.mdi-numeric-4-circle::before {
  content: "\FC82";
}

.mdi-numeric-4-circle-outline::before {
  content: "\FC83";
}

.mdi-numeric-5::before {
  content: "5";
}

.mdi-numeric-5-box::before {
  content: "\F3B0";
}

.mdi-numeric-5-box-multiple::before {
  content: "\FF30";
}

.mdi-numeric-5-box-multiple-outline::before {
  content: "\F3B1";
}

.mdi-numeric-5-box-outline::before {
  content: "\F3B2";
}

.mdi-numeric-5-circle::before {
  content: "\FC84";
}

.mdi-numeric-5-circle-outline::before {
  content: "\FC85";
}

.mdi-numeric-6::before {
  content: "6";
}

.mdi-numeric-6-box::before {
  content: "\F3B3";
}

.mdi-numeric-6-box-multiple::before {
  content: "\FF31";
}

.mdi-numeric-6-box-multiple-outline::before {
  content: "\F3B4";
}

.mdi-numeric-6-box-outline::before {
  content: "\F3B5";
}

.mdi-numeric-6-circle::before {
  content: "\FC86";
}

.mdi-numeric-6-circle-outline::before {
  content: "\FC87";
}

.mdi-numeric-7::before {
  content: "7";
}

.mdi-numeric-7-box::before {
  content: "\F3B6";
}

.mdi-numeric-7-box-multiple::before {
  content: "\FF32";
}

.mdi-numeric-7-box-multiple-outline::before {
  content: "\F3B7";
}

.mdi-numeric-7-box-outline::before {
  content: "\F3B8";
}

.mdi-numeric-7-circle::before {
  content: "\FC88";
}

.mdi-numeric-7-circle-outline::before {
  content: "\FC89";
}

.mdi-numeric-8::before {
  content: "8";
}

.mdi-numeric-8-box::before {
  content: "\F3B9";
}

.mdi-numeric-8-box-multiple::before {
  content: "\FF33";
}

.mdi-numeric-8-box-multiple-outline::before {
  content: "\F3BA";
}

.mdi-numeric-8-box-outline::before {
  content: "\F3BB";
}

.mdi-numeric-8-circle::before {
  content: "\FC8A";
}

.mdi-numeric-8-circle-outline::before {
  content: "\FC8B";
}

.mdi-numeric-9::before {
  content: "9";
}

.mdi-numeric-9-box::before {
  content: "\F3BC";
}

.mdi-numeric-9-box-multiple::before {
  content: "\FF34";
}

.mdi-numeric-9-box-multiple-outline::before {
  content: "\F3BD";
}

.mdi-numeric-9-box-outline::before {
  content: "\F3BE";
}

.mdi-numeric-9-circle::before {
  content: "\FC8C";
}

.mdi-numeric-9-circle-outline::before {
  content: "\FC8D";
}

.mdi-numeric-9-plus::before {
  content: "\F000F";
}

.mdi-numeric-9-plus-box::before {
  content: "\F3BF";
}

.mdi-numeric-9-plus-box-multiple::before {
  content: "\FF35";
}

.mdi-numeric-9-plus-box-multiple-outline::before {
  content: "\F3C0";
}

.mdi-numeric-9-plus-box-outline::before {
  content: "\F3C1";
}

.mdi-numeric-9-plus-circle::before {
  content: "\FC8E";
}

.mdi-numeric-9-plus-circle-outline::before {
  content: "\FC8F";
}

.mdi-numeric-negative-1::before {
  content: "\F0074";
}

.mdi-nut::before {
  content: "\F6F7";
}

.mdi-nutrition::before {
  content: "\F3C2";
}

.mdi-nuxt::before {
  content: "\F0131";
}

.mdi-oar::before {
  content: "\F67B";
}

.mdi-ocarina::before {
  content: "\FDBC";
}

.mdi-oci::before {
  content: "\F0314";
}

.mdi-ocr::before {
  content: "\F0165";
}

.mdi-octagon::before {
  content: "\F3C3";
}

.mdi-octagon-outline::before {
  content: "\F3C4";
}

.mdi-octagram::before {
  content: "\F6F8";
}

.mdi-octagram-outline::before {
  content: "\F774";
}

.mdi-odnoklassniki::before {
  content: "\F3C5";
}

.mdi-offer::before {
  content: "\F0246";
}

.mdi-office::before {
  content: "\F3C6";
}

.mdi-office-building::before {
  content: "\F990";
}

.mdi-oil::before {
  content: "\F3C7";
}

.mdi-oil-lamp::before {
  content: "\FF36";
}

.mdi-oil-level::before {
  content: "\F0075";
}

.mdi-oil-temperature::before {
  content: "\F0019";
}

.mdi-omega::before {
  content: "\F3C9";
}

.mdi-one-up::before {
  content: "\FB89";
}

.mdi-onedrive::before {
  content: "\F3CA";
}

.mdi-onenote::before {
  content: "\F746";
}

.mdi-onepassword::before {
  content: "\F880";
}

.mdi-opacity::before {
  content: "\F5CC";
}

.mdi-open-in-app::before {
  content: "\F3CB";
}

.mdi-open-in-new::before {
  content: "\F3CC";
}

.mdi-open-source-initiative::before {
  content: "\FB8A";
}

.mdi-openid::before {
  content: "\F3CD";
}

.mdi-opera::before {
  content: "\F3CE";
}

.mdi-orbit::before {
  content: "\F018";
}

.mdi-origin::before {
  content: "\FB2B";
}

.mdi-ornament::before {
  content: "\F3CF";
}

.mdi-ornament-variant::before {
  content: "\F3D0";
}

.mdi-outdoor-lamp::before {
  content: "\F0076";
}

.mdi-outlook::before {
  content: "\FCFE";
}

.mdi-overscan::before {
  content: "\F0027";
}

.mdi-owl::before {
  content: "\F3D2";
}

.mdi-pac-man::before {
  content: "\FB8B";
}

.mdi-package::before {
  content: "\F3D3";
}

.mdi-package-down::before {
  content: "\F3D4";
}

.mdi-package-up::before {
  content: "\F3D5";
}

.mdi-package-variant::before {
  content: "\F3D6";
}

.mdi-package-variant-closed::before {
  content: "\F3D7";
}

.mdi-page-first::before {
  content: "\F600";
}

.mdi-page-last::before {
  content: "\F601";
}

.mdi-page-layout-body::before {
  content: "\F6F9";
}

.mdi-page-layout-footer::before {
  content: "\F6FA";
}

.mdi-page-layout-header::before {
  content: "\F6FB";
}

.mdi-page-layout-header-footer::before {
  content: "\FF9C";
}

.mdi-page-layout-sidebar-left::before {
  content: "\F6FC";
}

.mdi-page-layout-sidebar-right::before {
  content: "\F6FD";
}

.mdi-page-next::before {
  content: "\FB8C";
}

.mdi-page-next-outline::before {
  content: "\FB8D";
}

.mdi-page-previous::before {
  content: "\FB8E";
}

.mdi-page-previous-outline::before {
  content: "\FB8F";
}

.mdi-palette::before {
  content: "\F3D8";
}

.mdi-palette-advanced::before {
  content: "\F3D9";
}

.mdi-palette-outline::before {
  content: "\FE6C";
}

.mdi-palette-swatch::before {
  content: "\F8B4";
}

.mdi-palm-tree::before {
  content: "\F0077";
}

.mdi-pan::before {
  content: "\FB90";
}

.mdi-pan-bottom-left::before {
  content: "\FB91";
}

.mdi-pan-bottom-right::before {
  content: "\FB92";
}

.mdi-pan-down::before {
  content: "\FB93";
}

.mdi-pan-horizontal::before {
  content: "\FB94";
}

.mdi-pan-left::before {
  content: "\FB95";
}

.mdi-pan-right::before {
  content: "\FB96";
}

.mdi-pan-top-left::before {
  content: "\FB97";
}

.mdi-pan-top-right::before {
  content: "\FB98";
}

.mdi-pan-up::before {
  content: "\FB99";
}

.mdi-pan-vertical::before {
  content: "\FB9A";
}

.mdi-panda::before {
  content: "\F3DA";
}

.mdi-pandora::before {
  content: "\F3DB";
}

.mdi-panorama::before {
  content: "\F3DC";
}

.mdi-panorama-fisheye::before {
  content: "\F3DD";
}

.mdi-panorama-horizontal::before {
  content: "\F3DE";
}

.mdi-panorama-vertical::before {
  content: "\F3DF";
}

.mdi-panorama-wide-angle::before {
  content: "\F3E0";
}

.mdi-paper-cut-vertical::before {
  content: "\F3E1";
}

.mdi-paper-roll::before {
  content: "\F0182";
}

.mdi-paper-roll-outline::before {
  content: "\F0183";
}

.mdi-paperclip::before {
  content: "\F3E2";
}

.mdi-parachute::before {
  content: "\FC90";
}

.mdi-parachute-outline::before {
  content: "\FC91";
}

.mdi-parking::before {
  content: "\F3E3";
}

.mdi-party-popper::before {
  content: "\F0078";
}

.mdi-passport::before {
  content: "\F7E2";
}

.mdi-passport-biometric::before {
  content: "\FDBD";
}

.mdi-pasta::before {
  content: "\F018B";
}

.mdi-patio-heater::before {
  content: "\FF9D";
}

.mdi-patreon::before {
  content: "\F881";
}

.mdi-pause::before {
  content: "\F3E4";
}

.mdi-pause-circle::before {
  content: "\F3E5";
}

.mdi-pause-circle-outline::before {
  content: "\F3E6";
}

.mdi-pause-octagon::before {
  content: "\F3E7";
}

.mdi-pause-octagon-outline::before {
  content: "\F3E8";
}

.mdi-paw::before {
  content: "\F3E9";
}

.mdi-paw-off::before {
  content: "\F657";
}

.mdi-paypal::before {
  content: "\F882";
}

.mdi-pdf-box::before {
  content: "\FE39";
}

.mdi-peace::before {
  content: "\F883";
}

.mdi-peanut::before {
  content: "\F001E";
}

.mdi-peanut-off::before {
  content: "\F001F";
}

.mdi-peanut-off-outline::before {
  content: "\F0021";
}

.mdi-peanut-outline::before {
  content: "\F0020";
}

.mdi-pen::before {
  content: "\F3EA";
}

.mdi-pen-lock::before {
  content: "\FDBE";
}

.mdi-pen-minus::before {
  content: "\FDBF";
}

.mdi-pen-off::before {
  content: "\FDC0";
}

.mdi-pen-plus::before {
  content: "\FDC1";
}

.mdi-pen-remove::before {
  content: "\FDC2";
}

.mdi-pencil::before {
  content: "\F3EB";
}

.mdi-pencil-box::before {
  content: "\F3EC";
}

.mdi-pencil-box-multiple::before {
  content: "\F016F";
}

.mdi-pencil-box-multiple-outline::before {
  content: "\F0170";
}

.mdi-pencil-box-outline::before {
  content: "\F3ED";
}

.mdi-pencil-circle::before {
  content: "\F6FE";
}

.mdi-pencil-circle-outline::before {
  content: "\F775";
}

.mdi-pencil-lock::before {
  content: "\F3EE";
}

.mdi-pencil-lock-outline::before {
  content: "\FDC3";
}

.mdi-pencil-minus::before {
  content: "\FDC4";
}

.mdi-pencil-minus-outline::before {
  content: "\FDC5";
}

.mdi-pencil-off::before {
  content: "\F3EF";
}

.mdi-pencil-off-outline::before {
  content: "\FDC6";
}

.mdi-pencil-outline::before {
  content: "\FC92";
}

.mdi-pencil-plus::before {
  content: "\FDC7";
}

.mdi-pencil-plus-outline::before {
  content: "\FDC8";
}

.mdi-pencil-remove::before {
  content: "\FDC9";
}

.mdi-pencil-remove-outline::before {
  content: "\FDCA";
}

.mdi-penguin::before {
  content: "\FEDD";
}

.mdi-pentagon::before {
  content: "\F6FF";
}

.mdi-pentagon-outline::before {
  content: "\F700";
}

.mdi-percent::before {
  content: "\F3F0";
}

.mdi-percent-outline::before {
  content: "\F02A3";
}

.mdi-periodic-table::before {
  content: "\F8B5";
}

.mdi-periodic-table-co::before {
  content: "\F0329";
}

.mdi-periodic-table-co2::before {
  content: "\F7E3";
}

.mdi-periscope::before {
  content: "\F747";
}

.mdi-perspective-less::before {
  content: "\FCFF";
}

.mdi-perspective-more::before {
  content: "\FD00";
}

.mdi-pharmacy::before {
  content: "\F3F1";
}

.mdi-phone::before {
  content: "\F3F2";
}

.mdi-phone-alert::before {
  content: "\FF37";
}

.mdi-phone-alert-outline::before {
  content: "\F01B9";
}

.mdi-phone-bluetooth::before {
  content: "\F3F3";
}

.mdi-phone-bluetooth-outline::before {
  content: "\F01BA";
}

.mdi-phone-cancel::before {
  content: "\F00E7";
}

.mdi-phone-cancel-outline::before {
  content: "\F01BB";
}

.mdi-phone-check::before {
  content: "\F01D4";
}

.mdi-phone-check-outline::before {
  content: "\F01D5";
}

.mdi-phone-classic::before {
  content: "\F602";
}

.mdi-phone-classic-off::before {
  content: "\F02A4";
}

.mdi-phone-forward::before {
  content: "\F3F4";
}

.mdi-phone-forward-outline::before {
  content: "\F01BC";
}

.mdi-phone-hangup::before {
  content: "\F3F5";
}

.mdi-phone-hangup-outline::before {
  content: "\F01BD";
}

.mdi-phone-in-talk::before {
  content: "\F3F6";
}

.mdi-phone-in-talk-outline::before {
  content: "\F01AD";
}

.mdi-phone-incoming::before {
  content: "\F3F7";
}

.mdi-phone-incoming-outline::before {
  content: "\F01BE";
}

.mdi-phone-lock::before {
  content: "\F3F8";
}

.mdi-phone-lock-outline::before {
  content: "\F01BF";
}

.mdi-phone-log::before {
  content: "\F3F9";
}

.mdi-phone-log-outline::before {
  content: "\F01C0";
}

.mdi-phone-message::before {
  content: "\F01C1";
}

.mdi-phone-message-outline::before {
  content: "\F01C2";
}

.mdi-phone-minus::before {
  content: "\F658";
}

.mdi-phone-minus-outline::before {
  content: "\F01C3";
}

.mdi-phone-missed::before {
  content: "\F3FA";
}

.mdi-phone-missed-outline::before {
  content: "\F01D0";
}

.mdi-phone-off::before {
  content: "\FDCB";
}

.mdi-phone-off-outline::before {
  content: "\F01D1";
}

.mdi-phone-outgoing::before {
  content: "\F3FB";
}

.mdi-phone-outgoing-outline::before {
  content: "\F01C4";
}

.mdi-phone-outline::before {
  content: "\FDCC";
}

.mdi-phone-paused::before {
  content: "\F3FC";
}

.mdi-phone-paused-outline::before {
  content: "\F01C5";
}

.mdi-phone-plus::before {
  content: "\F659";
}

.mdi-phone-plus-outline::before {
  content: "\F01C6";
}

.mdi-phone-return::before {
  content: "\F82E";
}

.mdi-phone-return-outline::before {
  content: "\F01C7";
}

.mdi-phone-ring::before {
  content: "\F01D6";
}

.mdi-phone-ring-outline::before {
  content: "\F01D7";
}

.mdi-phone-rotate-landscape::before {
  content: "\F884";
}

.mdi-phone-rotate-portrait::before {
  content: "\F885";
}

.mdi-phone-settings::before {
  content: "\F3FD";
}

.mdi-phone-settings-outline::before {
  content: "\F01C8";
}

.mdi-phone-voip::before {
  content: "\F3FE";
}

.mdi-pi::before {
  content: "\F3FF";
}

.mdi-pi-box::before {
  content: "\F400";
}

.mdi-pi-hole::before {
  content: "\FDCD";
}

.mdi-piano::before {
  content: "\F67C";
}

.mdi-pickaxe::before {
  content: "\F8B6";
}

.mdi-picture-in-picture-bottom-right::before {
  content: "\FE3A";
}

.mdi-picture-in-picture-bottom-right-outline::before {
  content: "\FE3B";
}

.mdi-picture-in-picture-top-right::before {
  content: "\FE3C";
}

.mdi-picture-in-picture-top-right-outline::before {
  content: "\FE3D";
}

.mdi-pier::before {
  content: "\F886";
}

.mdi-pier-crane::before {
  content: "\F887";
}

.mdi-pig::before {
  content: "\F401";
}

.mdi-pig-variant::before {
  content: "\F0028";
}

.mdi-piggy-bank::before {
  content: "\F0029";
}

.mdi-pill::before {
  content: "\F402";
}

.mdi-pillar::before {
  content: "\F701";
}

.mdi-pin::before {
  content: "\F403";
}

.mdi-pin-off::before {
  content: "\F404";
}

.mdi-pin-off-outline::before {
  content: "\F92F";
}

.mdi-pin-outline::before {
  content: "\F930";
}

.mdi-pine-tree::before {
  content: "\F405";
}

.mdi-pine-tree-box::before {
  content: "\F406";
}

.mdi-pinterest::before {
  content: "\F407";
}

.mdi-pinterest-box::before {
  content: "\F408";
}

.mdi-pinwheel::before {
  content: "\FAD4";
}

.mdi-pinwheel-outline::before {
  content: "\FAD5";
}

.mdi-pipe::before {
  content: "\F7E4";
}

.mdi-pipe-disconnected::before {
  content: "\F7E5";
}

.mdi-pipe-leak::before {
  content: "\F888";
}

.mdi-pirate::before {
  content: "\FA07";
}

.mdi-pistol::before {
  content: "\F702";
}

.mdi-piston::before {
  content: "\F889";
}

.mdi-pizza::before {
  content: "\F409";
}

.mdi-play::before {
  content: "\F40A";
}

.mdi-play-box::before {
  content: "\F02A5";
}

.mdi-play-box-outline::before {
  content: "\F40B";
}

.mdi-play-circle::before {
  content: "\F40C";
}

.mdi-play-circle-outline::before {
  content: "\F40D";
}

.mdi-play-network::before {
  content: "\F88A";
}

.mdi-play-network-outline::before {
  content: "\FC93";
}

.mdi-play-outline::before {
  content: "\FF38";
}

.mdi-play-pause::before {
  content: "\F40E";
}

.mdi-play-protected-content::before {
  content: "\F40F";
}

.mdi-play-speed::before {
  content: "\F8FE";
}

.mdi-playlist-check::before {
  content: "\F5C7";
}

.mdi-playlist-edit::before {
  content: "\F8FF";
}

.mdi-playlist-minus::before {
  content: "\F410";
}

.mdi-playlist-music::before {
  content: "\FC94";
}

.mdi-playlist-music-outline::before {
  content: "\FC95";
}

.mdi-playlist-play::before {
  content: "\F411";
}

.mdi-playlist-plus::before {
  content: "\F412";
}

.mdi-playlist-remove::before {
  content: "\F413";
}

.mdi-playlist-star::before {
  content: "\FDCE";
}

.mdi-playstation::before {
  content: "\F414";
}

.mdi-plex::before {
  content: "\F6B9";
}

.mdi-plus::before {
  content: "\F415";
}

.mdi-plus-box::before {
  content: "\F416";
}

.mdi-plus-box-multiple::before {
  content: "\F334";
}

.mdi-plus-box-multiple-outline::before {
  content: "\F016E";
}

.mdi-plus-box-outline::before {
  content: "\F703";
}

.mdi-plus-circle::before {
  content: "\F417";
}

.mdi-plus-circle-multiple-outline::before {
  content: "\F418";
}

.mdi-plus-circle-outline::before {
  content: "\F419";
}

.mdi-plus-minus::before {
  content: "\F991";
}

.mdi-plus-minus-box::before {
  content: "\F992";
}

.mdi-plus-network::before {
  content: "\F41A";
}

.mdi-plus-network-outline::before {
  content: "\FC96";
}

.mdi-plus-one::before {
  content: "\F41B";
}

.mdi-plus-outline::before {
  content: "\F704";
}

.mdi-plus-thick::before {
  content: "\F0217";
}

.mdi-pocket::before {
  content: "\F41C";
}

.mdi-podcast::before {
  content: "\F993";
}

.mdi-podium::before {
  content: "\FD01";
}

.mdi-podium-bronze::before {
  content: "\FD02";
}

.mdi-podium-gold::before {
  content: "\FD03";
}

.mdi-podium-silver::before {
  content: "\FD04";
}

.mdi-point-of-sale::before {
  content: "\FD6E";
}

.mdi-pokeball::before {
  content: "\F41D";
}

.mdi-pokemon-go::before {
  content: "\FA08";
}

.mdi-poker-chip::before {
  content: "\F82F";
}

.mdi-polaroid::before {
  content: "\F41E";
}

.mdi-police-badge::before {
  content: "\F0192";
}

.mdi-police-badge-outline::before {
  content: "\F0193";
}

.mdi-poll::before {
  content: "\F41F";
}

.mdi-poll-box::before {
  content: "\F420";
}

.mdi-poll-box-outline::before {
  content: "\F02A6";
}

.mdi-polymer::before {
  content: "\F421";
}

.mdi-pool::before {
  content: "\F606";
}

.mdi-popcorn::before {
  content: "\F422";
}

.mdi-post::before {
  content: "\F002A";
}

.mdi-post-outline::before {
  content: "\F002B";
}

.mdi-postage-stamp::before {
  content: "\FC97";
}

.mdi-pot::before {
  content: "\F65A";
}

.mdi-pot-mix::before {
  content: "\F65B";
}

.mdi-pound::before {
  content: "\F423";
}

.mdi-pound-box::before {
  content: "\F424";
}

.mdi-pound-box-outline::before {
  content: "\F01AA";
}

.mdi-power::before {
  content: "\F425";
}

.mdi-power-cycle::before {
  content: "\F900";
}

.mdi-power-off::before {
  content: "\F901";
}

.mdi-power-on::before {
  content: "\F902";
}

.mdi-power-plug::before {
  content: "\F6A4";
}

.mdi-power-plug-off::before {
  content: "\F6A5";
}

.mdi-power-settings::before {
  content: "\F426";
}

.mdi-power-sleep::before {
  content: "\F903";
}

.mdi-power-socket::before {
  content: "\F427";
}

.mdi-power-socket-au::before {
  content: "\F904";
}

.mdi-power-socket-de::before {
  content: "\F0132";
}

.mdi-power-socket-eu::before {
  content: "\F7E6";
}

.mdi-power-socket-fr::before {
  content: "\F0133";
}

.mdi-power-socket-jp::before {
  content: "\F0134";
}

.mdi-power-socket-uk::before {
  content: "\F7E7";
}

.mdi-power-socket-us::before {
  content: "\F7E8";
}

.mdi-power-standby::before {
  content: "\F905";
}

.mdi-powershell::before {
  content: "\FA09";
}

.mdi-prescription::before {
  content: "\F705";
}

.mdi-presentation::before {
  content: "\F428";
}

.mdi-presentation-play::before {
  content: "\F429";
}

.mdi-printer::before {
  content: "\F42A";
}

.mdi-printer-3d::before {
  content: "\F42B";
}

.mdi-printer-3d-nozzle::before {
  content: "\FE3E";
}

.mdi-printer-3d-nozzle-alert::before {
  content: "\F01EB";
}

.mdi-printer-3d-nozzle-alert-outline::before {
  content: "\F01EC";
}

.mdi-printer-3d-nozzle-outline::before {
  content: "\FE3F";
}

.mdi-printer-alert::before {
  content: "\F42C";
}

.mdi-printer-check::before {
  content: "\F0171";
}

.mdi-printer-off::before {
  content: "\FE40";
}

.mdi-printer-pos::before {
  content: "\F0079";
}

.mdi-printer-settings::before {
  content: "\F706";
}

.mdi-printer-wireless::before {
  content: "\FA0A";
}

.mdi-priority-high::before {
  content: "\F603";
}

.mdi-priority-low::before {
  content: "\F604";
}

.mdi-professional-hexagon::before {
  content: "\F42D";
}

.mdi-progress-alert::before {
  content: "\FC98";
}

.mdi-progress-check::before {
  content: "\F994";
}

.mdi-progress-clock::before {
  content: "\F995";
}

.mdi-progress-close::before {
  content: "\F0135";
}

.mdi-progress-download::before {
  content: "\F996";
}

.mdi-progress-upload::before {
  content: "\F997";
}

.mdi-progress-wrench::before {
  content: "\FC99";
}

.mdi-projector::before {
  content: "\F42E";
}

.mdi-projector-screen::before {
  content: "\F42F";
}

.mdi-protocol::before {
  content: "\FFF9";
}

.mdi-publish::before {
  content: "\F6A6";
}

.mdi-pulse::before {
  content: "\F430";
}

.mdi-pumpkin::before {
  content: "\FB9B";
}

.mdi-purse::before {
  content: "\FF39";
}

.mdi-purse-outline::before {
  content: "\FF3A";
}

.mdi-puzzle::before {
  content: "\F431";
}

.mdi-puzzle-outline::before {
  content: "\FA65";
}

.mdi-qi::before {
  content: "\F998";
}

.mdi-qqchat::before {
  content: "\F605";
}

.mdi-qrcode::before {
  content: "\F432";
}

.mdi-qrcode-edit::before {
  content: "\F8B7";
}

.mdi-qrcode-minus::before {
  content: "\F01B7";
}

.mdi-qrcode-plus::before {
  content: "\F01B6";
}

.mdi-qrcode-remove::before {
  content: "\F01B8";
}

.mdi-qrcode-scan::before {
  content: "\F433";
}

.mdi-quadcopter::before {
  content: "\F434";
}

.mdi-quality-high::before {
  content: "\F435";
}

.mdi-quality-low::before {
  content: "\FA0B";
}

.mdi-quality-medium::before {
  content: "\FA0C";
}

.mdi-quicktime::before {
  content: "\F436";
}

.mdi-quora::before {
  content: "\FD05";
}

.mdi-rabbit::before {
  content: "\F906";
}

.mdi-racing-helmet::before {
  content: "\FD6F";
}

.mdi-racquetball::before {
  content: "\FD70";
}

.mdi-radar::before {
  content: "\F437";
}

.mdi-radiator::before {
  content: "\F438";
}

.mdi-radiator-disabled::before {
  content: "\FAD6";
}

.mdi-radiator-off::before {
  content: "\FAD7";
}

.mdi-radio::before {
  content: "\F439";
}

.mdi-radio-am::before {
  content: "\FC9A";
}

.mdi-radio-fm::before {
  content: "\FC9B";
}

.mdi-radio-handheld::before {
  content: "\F43A";
}

.mdi-radio-off::before {
  content: "\F0247";
}

.mdi-radio-tower::before {
  content: "\F43B";
}

.mdi-radioactive::before {
  content: "\F43C";
}

.mdi-radioactive-off::before {
  content: "\FEDE";
}

.mdi-radiobox-blank::before {
  content: "\F43D";
}

.mdi-radiobox-marked::before {
  content: "\F43E";
}

.mdi-radius::before {
  content: "\FC9C";
}

.mdi-radius-outline::before {
  content: "\FC9D";
}

.mdi-railroad-light::before {
  content: "\FF3B";
}

.mdi-raspberry-pi::before {
  content: "\F43F";
}

.mdi-ray-end::before {
  content: "\F440";
}

.mdi-ray-end-arrow::before {
  content: "\F441";
}

.mdi-ray-start::before {
  content: "\F442";
}

.mdi-ray-start-arrow::before {
  content: "\F443";
}

.mdi-ray-start-end::before {
  content: "\F444";
}

.mdi-ray-vertex::before {
  content: "\F445";
}

.mdi-react::before {
  content: "\F707";
}

.mdi-read::before {
  content: "\F447";
}

.mdi-receipt::before {
  content: "\F449";
}

.mdi-record::before {
  content: "\F44A";
}

.mdi-record-circle::before {
  content: "\FEDF";
}

.mdi-record-circle-outline::before {
  content: "\FEE0";
}

.mdi-record-player::before {
  content: "\F999";
}

.mdi-record-rec::before {
  content: "\F44B";
}

.mdi-rectangle::before {
  content: "\FE41";
}

.mdi-rectangle-outline::before {
  content: "\FE42";
}

.mdi-recycle::before {
  content: "\F44C";
}

.mdi-reddit::before {
  content: "\F44D";
}

.mdi-redhat::before {
  content: "\F0146";
}

.mdi-redo::before {
  content: "\F44E";
}

.mdi-redo-variant::before {
  content: "\F44F";
}

.mdi-reflect-horizontal::before {
  content: "\FA0D";
}

.mdi-reflect-vertical::before {
  content: "\FA0E";
}

.mdi-refresh::before {
  content: "\F450";
}

.mdi-regex::before {
  content: "\F451";
}

.mdi-registered-trademark::before {
  content: "\FA66";
}

.mdi-relative-scale::before {
  content: "\F452";
}

.mdi-reload::before {
  content: "\F453";
}

.mdi-reload-alert::before {
  content: "\F0136";
}

.mdi-reminder::before {
  content: "\F88B";
}

.mdi-remote::before {
  content: "\F454";
}

.mdi-remote-desktop::before {
  content: "\F8B8";
}

.mdi-remote-off::before {
  content: "\FEE1";
}

.mdi-remote-tv::before {
  content: "\FEE2";
}

.mdi-remote-tv-off::before {
  content: "\FEE3";
}

.mdi-rename-box::before {
  content: "\F455";
}

.mdi-reorder-horizontal::before {
  content: "\F687";
}

.mdi-reorder-vertical::before {
  content: "\F688";
}

.mdi-repeat::before {
  content: "\F456";
}

.mdi-repeat-off::before {
  content: "\F457";
}

.mdi-repeat-once::before {
  content: "\F458";
}

.mdi-replay::before {
  content: "\F459";
}

.mdi-reply::before {
  content: "\F45A";
}

.mdi-reply-all::before {
  content: "\F45B";
}

.mdi-reply-all-outline::before {
  content: "\FF3C";
}

.mdi-reply-circle::before {
  content: "\F01D9";
}

.mdi-reply-outline::before {
  content: "\FF3D";
}

.mdi-reproduction::before {
  content: "\F45C";
}

.mdi-resistor::before {
  content: "\FB1F";
}

.mdi-resistor-nodes::before {
  content: "\FB20";
}

.mdi-resize::before {
  content: "\FA67";
}

.mdi-resize-bottom-right::before {
  content: "\F45D";
}

.mdi-responsive::before {
  content: "\F45E";
}

.mdi-restart::before {
  content: "\F708";
}

.mdi-restart-alert::before {
  content: "\F0137";
}

.mdi-restart-off::before {
  content: "\FD71";
}

.mdi-restore::before {
  content: "\F99A";
}

.mdi-restore-alert::before {
  content: "\F0138";
}

.mdi-rewind::before {
  content: "\F45F";
}

.mdi-rewind-10::before {
  content: "\FD06";
}

.mdi-rewind-30::before {
  content: "\FD72";
}

.mdi-rewind-5::before {
  content: "\F0224";
}

.mdi-rewind-outline::before {
  content: "\F709";
}

.mdi-rhombus::before {
  content: "\F70A";
}

.mdi-rhombus-medium::before {
  content: "\FA0F";
}

.mdi-rhombus-outline::before {
  content: "\F70B";
}

.mdi-rhombus-split::before {
  content: "\FA10";
}

.mdi-ribbon::before {
  content: "\F460";
}

.mdi-rice::before {
  content: "\F7E9";
}

.mdi-ring::before {
  content: "\F7EA";
}

.mdi-rivet::before {
  content: "\FE43";
}

.mdi-road::before {
  content: "\F461";
}

.mdi-road-variant::before {
  content: "\F462";
}

.mdi-robber::before {
  content: "\F007A";
}

.mdi-robot::before {
  content: "\F6A8";
}

.mdi-robot-industrial::before {
  content: "\FB21";
}

.mdi-robot-mower::before {
  content: "\F0222";
}

.mdi-robot-mower-outline::before {
  content: "\F021E";
}

.mdi-robot-vacuum::before {
  content: "\F70C";
}

.mdi-robot-vacuum-variant::before {
  content: "\F907";
}

.mdi-rocket::before {
  content: "\F463";
}

.mdi-roller-skate::before {
  content: "\FD07";
}

.mdi-rollerblade::before {
  content: "\FD08";
}

.mdi-rollupjs::before {
  content: "\FB9C";
}

.mdi-roman-numeral-1::before {
  content: "\F00B3";
}

.mdi-roman-numeral-10::before {
  content: "\F00BC";
}

.mdi-roman-numeral-2::before {
  content: "\F00B4";
}

.mdi-roman-numeral-3::before {
  content: "\F00B5";
}

.mdi-roman-numeral-4::before {
  content: "\F00B6";
}

.mdi-roman-numeral-5::before {
  content: "\F00B7";
}

.mdi-roman-numeral-6::before {
  content: "\F00B8";
}

.mdi-roman-numeral-7::before {
  content: "\F00B9";
}

.mdi-roman-numeral-8::before {
  content: "\F00BA";
}

.mdi-roman-numeral-9::before {
  content: "\F00BB";
}

.mdi-room-service::before {
  content: "\F88C";
}

.mdi-room-service-outline::before {
  content: "\FD73";
}

.mdi-rotate-3d::before {
  content: "\FEE4";
}

.mdi-rotate-3d-variant::before {
  content: "\F464";
}

.mdi-rotate-left::before {
  content: "\F465";
}

.mdi-rotate-left-variant::before {
  content: "\F466";
}

.mdi-rotate-orbit::before {
  content: "\FD74";
}

.mdi-rotate-right::before {
  content: "\F467";
}

.mdi-rotate-right-variant::before {
  content: "\F468";
}

.mdi-rounded-corner::before {
  content: "\F607";
}

.mdi-router::before {
  content: "\F020D";
}

.mdi-router-wireless::before {
  content: "\F469";
}

.mdi-router-wireless-settings::before {
  content: "\FA68";
}

.mdi-routes::before {
  content: "\F46A";
}

.mdi-routes-clock::before {
  content: "\F007B";
}

.mdi-rowing::before {
  content: "\F608";
}

.mdi-rss::before {
  content: "\F46B";
}

.mdi-rss-box::before {
  content: "\F46C";
}

.mdi-rss-off::before {
  content: "\FF3E";
}

.mdi-ruby::before {
  content: "\FD09";
}

.mdi-rugby::before {
  content: "\FD75";
}

.mdi-ruler::before {
  content: "\F46D";
}

.mdi-ruler-square::before {
  content: "\FC9E";
}

.mdi-ruler-square-compass::before {
  content: "\FEDB";
}

.mdi-run::before {
  content: "\F70D";
}

.mdi-run-fast::before {
  content: "\F46E";
}

.mdi-rv-truck::before {
  content: "\F01FF";
}

.mdi-sack::before {
  content: "\FD0A";
}

.mdi-sack-percent::before {
  content: "\FD0B";
}

.mdi-safe::before {
  content: "\FA69";
}

.mdi-safe-square::before {
  content: "\F02A7";
}

.mdi-safe-square-outline::before {
  content: "\F02A8";
}

.mdi-safety-goggles::before {
  content: "\FD0C";
}

.mdi-sailing::before {
  content: "\FEE5";
}

.mdi-sale::before {
  content: "\F46F";
}

.mdi-salesforce::before {
  content: "\F88D";
}

.mdi-sass::before {
  content: "\F7EB";
}

.mdi-satellite::before {
  content: "\F470";
}

.mdi-satellite-uplink::before {
  content: "\F908";
}

.mdi-satellite-variant::before {
  content: "\F471";
}

.mdi-sausage::before {
  content: "\F8B9";
}

.mdi-saw-blade::before {
  content: "\FE44";
}

.mdi-saxophone::before {
  content: "\F609";
}

.mdi-scale::before {
  content: "\F472";
}

.mdi-scale-balance::before {
  content: "\F5D1";
}

.mdi-scale-bathroom::before {
  content: "\F473";
}

.mdi-scale-off::before {
  content: "\F007C";
}

.mdi-scanner::before {
  content: "\F6AA";
}

.mdi-scanner-off::before {
  content: "\F909";
}

.mdi-scatter-plot::before {
  content: "\FEE6";
}

.mdi-scatter-plot-outline::before {
  content: "\FEE7";
}

.mdi-school::before {
  content: "\F474";
}

.mdi-school-outline::before {
  content: "\F01AB";
}

.mdi-scissors-cutting::before {
  content: "\FA6A";
}

.mdi-scooter::before {
  content: "\F0214";
}

.mdi-scoreboard::before {
  content: "\F02A9";
}

.mdi-scoreboard-outline::before {
  content: "\F02AA";
}

.mdi-screen-rotation::before {
  content: "\F475";
}

.mdi-screen-rotation-lock::before {
  content: "\F476";
}

.mdi-screw-flat-top::before {
  content: "\FDCF";
}

.mdi-screw-lag::before {
  content: "\FE54";
}

.mdi-screw-machine-flat-top::before {
  content: "\FE55";
}

.mdi-screw-machine-round-top::before {
  content: "\FE56";
}

.mdi-screw-round-top::before {
  content: "\FE57";
}

.mdi-screwdriver::before {
  content: "\F477";
}

.mdi-script::before {
  content: "\FB9D";
}

.mdi-script-outline::before {
  content: "\F478";
}

.mdi-script-text::before {
  content: "\FB9E";
}

.mdi-script-text-outline::before {
  content: "\FB9F";
}

.mdi-sd::before {
  content: "\F479";
}

.mdi-seal::before {
  content: "\F47A";
}

.mdi-seal-variant::before {
  content: "\FFFA";
}

.mdi-search-web::before {
  content: "\F70E";
}

.mdi-seat::before {
  content: "\FC9F";
}

.mdi-seat-flat::before {
  content: "\F47B";
}

.mdi-seat-flat-angled::before {
  content: "\F47C";
}

.mdi-seat-individual-suite::before {
  content: "\F47D";
}

.mdi-seat-legroom-extra::before {
  content: "\F47E";
}

.mdi-seat-legroom-normal::before {
  content: "\F47F";
}

.mdi-seat-legroom-reduced::before {
  content: "\F480";
}

.mdi-seat-outline::before {
  content: "\FCA0";
}

.mdi-seat-passenger::before {
  content: "\F0274";
}

.mdi-seat-recline-extra::before {
  content: "\F481";
}

.mdi-seat-recline-normal::before {
  content: "\F482";
}

.mdi-seatbelt::before {
  content: "\FCA1";
}

.mdi-security::before {
  content: "\F483";
}

.mdi-security-network::before {
  content: "\F484";
}

.mdi-seed::before {
  content: "\FE45";
}

.mdi-seed-outline::before {
  content: "\FE46";
}

.mdi-segment::before {
  content: "\FEE8";
}

.mdi-select::before {
  content: "\F485";
}

.mdi-select-all::before {
  content: "\F486";
}

.mdi-select-color::before {
  content: "\FD0D";
}

.mdi-select-compare::before {
  content: "\FAD8";
}

.mdi-select-drag::before {
  content: "\FA6B";
}

.mdi-select-group::before {
  content: "\FF9F";
}

.mdi-select-inverse::before {
  content: "\F487";
}

.mdi-select-marker::before {
  content: "\F02AB";
}

.mdi-select-multiple::before {
  content: "\F02AC";
}

.mdi-select-multiple-marker::before {
  content: "\F02AD";
}

.mdi-select-off::before {
  content: "\F488";
}

.mdi-select-place::before {
  content: "\FFFB";
}

.mdi-select-search::before {
  content: "\F022F";
}

.mdi-selection::before {
  content: "\F489";
}

.mdi-selection-drag::before {
  content: "\FA6C";
}

.mdi-selection-ellipse::before {
  content: "\FD0E";
}

.mdi-selection-ellipse-arrow-inside::before {
  content: "\FF3F";
}

.mdi-selection-marker::before {
  content: "\F02AE";
}

.mdi-selection-multiple-marker::before {
  content: "\F02AF";
}

.mdi-selection-mutliple::before {
  content: "\F02B0";
}

.mdi-selection-off::before {
  content: "\F776";
}

.mdi-selection-search::before {
  content: "\F0230";
}

.mdi-semantic-web::before {
  content: "\F0341";
}

.mdi-send::before {
  content: "\F48A";
}

.mdi-send-check::before {
  content: "\F018C";
}

.mdi-send-check-outline::before {
  content: "\F018D";
}

.mdi-send-circle::before {
  content: "\FE58";
}

.mdi-send-circle-outline::before {
  content: "\FE59";
}

.mdi-send-clock::before {
  content: "\F018E";
}

.mdi-send-clock-outline::before {
  content: "\F018F";
}

.mdi-send-lock::before {
  content: "\F7EC";
}

.mdi-send-lock-outline::before {
  content: "\F0191";
}

.mdi-send-outline::before {
  content: "\F0190";
}

.mdi-serial-port::before {
  content: "\F65C";
}

.mdi-server::before {
  content: "\F48B";
}

.mdi-server-minus::before {
  content: "\F48C";
}

.mdi-server-network::before {
  content: "\F48D";
}

.mdi-server-network-off::before {
  content: "\F48E";
}

.mdi-server-off::before {
  content: "\F48F";
}

.mdi-server-plus::before {
  content: "\F490";
}

.mdi-server-remove::before {
  content: "\F491";
}

.mdi-server-security::before {
  content: "\F492";
}

.mdi-set-all::before {
  content: "\F777";
}

.mdi-set-center::before {
  content: "\F778";
}

.mdi-set-center-right::before {
  content: "\F779";
}

.mdi-set-left::before {
  content: "\F77A";
}

.mdi-set-left-center::before {
  content: "\F77B";
}

.mdi-set-left-right::before {
  content: "\F77C";
}

.mdi-set-none::before {
  content: "\F77D";
}

.mdi-set-right::before {
  content: "\F77E";
}

.mdi-set-top-box::before {
  content: "\F99E";
}

.mdi-settings::before {
  content: "\F493";
}

.mdi-settings-box::before {
  content: "\F494";
}

.mdi-settings-helper::before {
  content: "\FA6D";
}

.mdi-settings-outline::before {
  content: "\F8BA";
}

.mdi-settings-transfer::before {
  content: "\F007D";
}

.mdi-settings-transfer-outline::before {
  content: "\F007E";
}

.mdi-shaker::before {
  content: "\F0139";
}

.mdi-shaker-outline::before {
  content: "\F013A";
}

.mdi-shape::before {
  content: "\F830";
}

.mdi-shape-circle-plus::before {
  content: "\F65D";
}

.mdi-shape-outline::before {
  content: "\F831";
}

.mdi-shape-oval-plus::before {
  content: "\F0225";
}

.mdi-shape-plus::before {
  content: "\F495";
}

.mdi-shape-polygon-plus::before {
  content: "\F65E";
}

.mdi-shape-rectangle-plus::before {
  content: "\F65F";
}

.mdi-shape-square-plus::before {
  content: "\F660";
}

.mdi-share::before {
  content: "\F496";
}

.mdi-share-all::before {
  content: "\F021F";
}

.mdi-share-all-outline::before {
  content: "\F0220";
}

.mdi-share-circle::before {
  content: "\F01D8";
}

.mdi-share-off::before {
  content: "\FF40";
}

.mdi-share-off-outline::before {
  content: "\FF41";
}

.mdi-share-outline::before {
  content: "\F931";
}

.mdi-share-variant::before {
  content: "\F497";
}

.mdi-sheep::before {
  content: "\FCA2";
}

.mdi-shield::before {
  content: "\F498";
}

.mdi-shield-account::before {
  content: "\F88E";
}

.mdi-shield-account-outline::before {
  content: "\FA11";
}

.mdi-shield-airplane::before {
  content: "\F6BA";
}

.mdi-shield-airplane-outline::before {
  content: "\FCA3";
}

.mdi-shield-alert::before {
  content: "\FEE9";
}

.mdi-shield-alert-outline::before {
  content: "\FEEA";
}

.mdi-shield-car::before {
  content: "\FFA0";
}

.mdi-shield-check::before {
  content: "\F565";
}

.mdi-shield-check-outline::before {
  content: "\FCA4";
}

.mdi-shield-cross::before {
  content: "\FCA5";
}

.mdi-shield-cross-outline::before {
  content: "\FCA6";
}

.mdi-shield-edit::before {
  content: "\F01CB";
}

.mdi-shield-edit-outline::before {
  content: "\F01CC";
}

.mdi-shield-half-full::before {
  content: "\F77F";
}

.mdi-shield-home::before {
  content: "\F689";
}

.mdi-shield-home-outline::before {
  content: "\FCA7";
}

.mdi-shield-key::before {
  content: "\FBA0";
}

.mdi-shield-key-outline::before {
  content: "\FBA1";
}

.mdi-shield-link-variant::before {
  content: "\FD0F";
}

.mdi-shield-link-variant-outline::before {
  content: "\FD10";
}

.mdi-shield-lock::before {
  content: "\F99C";
}

.mdi-shield-lock-outline::before {
  content: "\FCA8";
}

.mdi-shield-off::before {
  content: "\F99D";
}

.mdi-shield-off-outline::before {
  content: "\F99B";
}

.mdi-shield-outline::before {
  content: "\F499";
}

.mdi-shield-plus::before {
  content: "\FAD9";
}

.mdi-shield-plus-outline::before {
  content: "\FADA";
}

.mdi-shield-refresh::before {
  content: "\F01CD";
}

.mdi-shield-refresh-outline::before {
  content: "\F01CE";
}

.mdi-shield-remove::before {
  content: "\FADB";
}

.mdi-shield-remove-outline::before {
  content: "\FADC";
}

.mdi-shield-search::before {
  content: "\FD76";
}

.mdi-shield-star::before {
  content: "\F0166";
}

.mdi-shield-star-outline::before {
  content: "\F0167";
}

.mdi-shield-sun::before {
  content: "\F007F";
}

.mdi-shield-sun-outline::before {
  content: "\F0080";
}

.mdi-ship-wheel::before {
  content: "\F832";
}

.mdi-shoe-formal::before {
  content: "\FB22";
}

.mdi-shoe-heel::before {
  content: "\FB23";
}

.mdi-shoe-print::before {
  content: "\FE5A";
}

.mdi-shopify::before {
  content: "\FADD";
}

.mdi-shopping::before {
  content: "\F49A";
}

.mdi-shopping-music::before {
  content: "\F49B";
}

.mdi-shopping-outline::before {
  content: "\F0200";
}

.mdi-shopping-search::before {
  content: "\FFA1";
}

.mdi-shovel::before {
  content: "\F70F";
}

.mdi-shovel-off::before {
  content: "\F710";
}

.mdi-shower::before {
  content: "\F99F";
}

.mdi-shower-head::before {
  content: "\F9A0";
}

.mdi-shredder::before {
  content: "\F49C";
}

.mdi-shuffle::before {
  content: "\F49D";
}

.mdi-shuffle-disabled::before {
  content: "\F49E";
}

.mdi-shuffle-variant::before {
  content: "\F49F";
}

.mdi-sigma::before {
  content: "\F4A0";
}

.mdi-sigma-lower::before {
  content: "\F62B";
}

.mdi-sign-caution::before {
  content: "\F4A1";
}

.mdi-sign-direction::before {
  content: "\F780";
}

.mdi-sign-direction-minus::before {
  content: "\F0022";
}

.mdi-sign-direction-plus::before {
  content: "\FFFD";
}

.mdi-sign-direction-remove::before {
  content: "\FFFE";
}

.mdi-sign-real-estate::before {
  content: "\F0143";
}

.mdi-sign-text::before {
  content: "\F781";
}

.mdi-signal::before {
  content: "\F4A2";
}

.mdi-signal-2g::before {
  content: "\F711";
}

.mdi-signal-3g::before {
  content: "\F712";
}

.mdi-signal-4g::before {
  content: "\F713";
}

.mdi-signal-5g::before {
  content: "\FA6E";
}

.mdi-signal-cellular-1::before {
  content: "\F8BB";
}

.mdi-signal-cellular-2::before {
  content: "\F8BC";
}

.mdi-signal-cellular-3::before {
  content: "\F8BD";
}

.mdi-signal-cellular-outline::before {
  content: "\F8BE";
}

.mdi-signal-distance-variant::before {
  content: "\FE47";
}

.mdi-signal-hspa::before {
  content: "\F714";
}

.mdi-signal-hspa-plus::before {
  content: "\F715";
}

.mdi-signal-off::before {
  content: "\F782";
}

.mdi-signal-variant::before {
  content: "\F60A";
}

.mdi-signature::before {
  content: "\FE5B";
}

.mdi-signature-freehand::before {
  content: "\FE5C";
}

.mdi-signature-image::before {
  content: "\FE5D";
}

.mdi-signature-text::before {
  content: "\FE5E";
}

.mdi-silo::before {
  content: "\FB24";
}

.mdi-silverware::before {
  content: "\F4A3";
}

.mdi-silverware-clean::before {
  content: "\FFFF";
}

.mdi-silverware-fork::before {
  content: "\F4A4";
}

.mdi-silverware-fork-knife::before {
  content: "\FA6F";
}

.mdi-silverware-spoon::before {
  content: "\F4A5";
}

.mdi-silverware-variant::before {
  content: "\F4A6";
}

.mdi-sim::before {
  content: "\F4A7";
}

.mdi-sim-alert::before {
  content: "\F4A8";
}

.mdi-sim-off::before {
  content: "\F4A9";
}

.mdi-simple-icons::before {
  content: "\F0348";
}

.mdi-sina-weibo::before {
  content: "\FADE";
}

.mdi-sitemap::before {
  content: "\F4AA";
}

.mdi-skate::before {
  content: "\FD11";
}

.mdi-skew-less::before {
  content: "\FD12";
}

.mdi-skew-more::before {
  content: "\FD13";
}

.mdi-ski::before {
  content: "\F032F";
}

.mdi-ski-cross-country::before {
  content: "\F0330";
}

.mdi-ski-water::before {
  content: "\F0331";
}

.mdi-skip-backward::before {
  content: "\F4AB";
}

.mdi-skip-backward-outline::before {
  content: "\FF42";
}

.mdi-skip-forward::before {
  content: "\F4AC";
}

.mdi-skip-forward-outline::before {
  content: "\FF43";
}

.mdi-skip-next::before {
  content: "\F4AD";
}

.mdi-skip-next-circle::before {
  content: "\F661";
}

.mdi-skip-next-circle-outline::before {
  content: "\F662";
}

.mdi-skip-next-outline::before {
  content: "\FF44";
}

.mdi-skip-previous::before {
  content: "\F4AE";
}

.mdi-skip-previous-circle::before {
  content: "\F663";
}

.mdi-skip-previous-circle-outline::before {
  content: "\F664";
}

.mdi-skip-previous-outline::before {
  content: "\FF45";
}

.mdi-skull::before {
  content: "\F68B";
}

.mdi-skull-crossbones::before {
  content: "\FBA2";
}

.mdi-skull-crossbones-outline::before {
  content: "\FBA3";
}

.mdi-skull-outline::before {
  content: "\FBA4";
}

.mdi-skype::before {
  content: "\F4AF";
}

.mdi-skype-business::before {
  content: "\F4B0";
}

.mdi-slack::before {
  content: "\F4B1";
}

.mdi-slackware::before {
  content: "\F90A";
}

.mdi-slash-forward::before {
  content: "\F0000";
}

.mdi-slash-forward-box::before {
  content: "\F0001";
}

.mdi-sleep::before {
  content: "\F4B2";
}

.mdi-sleep-off::before {
  content: "\F4B3";
}

.mdi-slope-downhill::before {
  content: "\FE5F";
}

.mdi-slope-uphill::before {
  content: "\FE60";
}

.mdi-slot-machine::before {
  content: "\F013F";
}

.mdi-slot-machine-outline::before {
  content: "\F0140";
}

.mdi-smart-card::before {
  content: "\F00E8";
}

.mdi-smart-card-outline::before {
  content: "\F00E9";
}

.mdi-smart-card-reader::before {
  content: "\F00EA";
}

.mdi-smart-card-reader-outline::before {
  content: "\F00EB";
}

.mdi-smog::before {
  content: "\FA70";
}

.mdi-smoke-detector::before {
  content: "\F392";
}

.mdi-smoking::before {
  content: "\F4B4";
}

.mdi-smoking-off::before {
  content: "\F4B5";
}

.mdi-snapchat::before {
  content: "\F4B6";
}

.mdi-snowboard::before {
  content: "\F0332";
}

.mdi-snowflake::before {
  content: "\F716";
}

.mdi-snowflake-alert::before {
  content: "\FF46";
}

.mdi-snowflake-melt::before {
  content: "\F02F6";
}

.mdi-snowflake-variant::before {
  content: "\FF47";
}

.mdi-snowman::before {
  content: "\F4B7";
}

.mdi-soccer::before {
  content: "\F4B8";
}

.mdi-soccer-field::before {
  content: "\F833";
}

.mdi-sofa::before {
  content: "\F4B9";
}

.mdi-solar-panel::before {
  content: "\FD77";
}

.mdi-solar-panel-large::before {
  content: "\FD78";
}

.mdi-solar-power::before {
  content: "\FA71";
}

.mdi-soldering-iron::before {
  content: "\F00BD";
}

.mdi-solid::before {
  content: "\F68C";
}

.mdi-sort::before {
  content: "\F4BA";
}

.mdi-sort-alphabetical::before {
  content: "\F4BB";
}

.mdi-sort-alphabetical-ascending::before {
  content: "\F0173";
}

.mdi-sort-alphabetical-descending::before {
  content: "\F0174";
}

.mdi-sort-ascending::before {
  content: "\F4BC";
}

.mdi-sort-descending::before {
  content: "\F4BD";
}

.mdi-sort-numeric::before {
  content: "\F4BE";
}

.mdi-sort-variant::before {
  content: "\F4BF";
}

.mdi-sort-variant-lock::before {
  content: "\FCA9";
}

.mdi-sort-variant-lock-open::before {
  content: "\FCAA";
}

.mdi-sort-variant-remove::before {
  content: "\F0172";
}

.mdi-soundcloud::before {
  content: "\F4C0";
}

.mdi-source-branch::before {
  content: "\F62C";
}

.mdi-source-commit::before {
  content: "\F717";
}

.mdi-source-commit-end::before {
  content: "\F718";
}

.mdi-source-commit-end-local::before {
  content: "\F719";
}

.mdi-source-commit-local::before {
  content: "\F71A";
}

.mdi-source-commit-next-local::before {
  content: "\F71B";
}

.mdi-source-commit-start::before {
  content: "\F71C";
}

.mdi-source-commit-start-next-local::before {
  content: "\F71D";
}

.mdi-source-fork::before {
  content: "\F4C1";
}

.mdi-source-merge::before {
  content: "\F62D";
}

.mdi-source-pull::before {
  content: "\F4C2";
}

.mdi-source-repository::before {
  content: "\FCAB";
}

.mdi-source-repository-multiple::before {
  content: "\FCAC";
}

.mdi-soy-sauce::before {
  content: "\F7ED";
}

.mdi-spa::before {
  content: "\FCAD";
}

.mdi-spa-outline::before {
  content: "\FCAE";
}

.mdi-space-invaders::before {
  content: "\FBA5";
}

.mdi-spade::before {
  content: "\FE48";
}

.mdi-speaker::before {
  content: "\F4C3";
}

.mdi-speaker-bluetooth::before {
  content: "\F9A1";
}

.mdi-speaker-multiple::before {
  content: "\FD14";
}

.mdi-speaker-off::before {
  content: "\F4C4";
}

.mdi-speaker-wireless::before {
  content: "\F71E";
}

.mdi-speedometer::before {
  content: "\F4C5";
}

.mdi-speedometer-medium::before {
  content: "\FFA2";
}

.mdi-speedometer-slow::before {
  content: "\FFA3";
}

.mdi-spellcheck::before {
  content: "\F4C6";
}

.mdi-spider::before {
  content: "\F0215";
}

.mdi-spider-thread::before {
  content: "\F0216";
}

.mdi-spider-web::before {
  content: "\FBA6";
}

.mdi-spotify::before {
  content: "\F4C7";
}

.mdi-spotlight::before {
  content: "\F4C8";
}

.mdi-spotlight-beam::before {
  content: "\F4C9";
}

.mdi-spray::before {
  content: "\F665";
}

.mdi-spray-bottle::before {
  content: "\FADF";
}

.mdi-sprinkler::before {
  content: "\F0081";
}

.mdi-sprinkler-variant::before {
  content: "\F0082";
}

.mdi-sprout::before {
  content: "\FE49";
}

.mdi-sprout-outline::before {
  content: "\FE4A";
}

.mdi-square::before {
  content: "\F763";
}

.mdi-square-edit-outline::before {
  content: "\F90B";
}

.mdi-square-inc::before {
  content: "\F4CA";
}

.mdi-square-inc-cash::before {
  content: "\F4CB";
}

.mdi-square-medium::before {
  content: "\FA12";
}

.mdi-square-medium-outline::before {
  content: "\FA13";
}

.mdi-square-off::before {
  content: "\F0319";
}

.mdi-square-off-outline::before {
  content: "\F031A";
}

.mdi-square-outline::before {
  content: "\F762";
}

.mdi-square-root::before {
  content: "\F783";
}

.mdi-square-root-box::before {
  content: "\F9A2";
}

.mdi-square-small::before {
  content: "\FA14";
}

.mdi-squeegee::before {
  content: "\FAE0";
}

.mdi-ssh::before {
  content: "\F8BF";
}

.mdi-stack-exchange::before {
  content: "\F60B";
}

.mdi-stack-overflow::before {
  content: "\F4CC";
}

.mdi-stackpath::before {
  content: "\F359";
}

.mdi-stadium::before {
  content: "\F001A";
}

.mdi-stadium-variant::before {
  content: "\F71F";
}

.mdi-stairs::before {
  content: "\F4CD";
}

.mdi-stairs-down::before {
  content: "\F02E9";
}

.mdi-stairs-up::before {
  content: "\F02E8";
}

.mdi-stamper::before {
  content: "\FD15";
}

.mdi-standard-definition::before {
  content: "\F7EE";
}

.mdi-star::before {
  content: "\F4CE";
}

.mdi-star-box::before {
  content: "\FA72";
}

.mdi-star-box-multiple::before {
  content: "\F02B1";
}

.mdi-star-box-multiple-outline::before {
  content: "\F02B2";
}

.mdi-star-box-outline::before {
  content: "\FA73";
}

.mdi-star-circle::before {
  content: "\F4CF";
}

.mdi-star-circle-outline::before {
  content: "\F9A3";
}

.mdi-star-face::before {
  content: "\F9A4";
}

.mdi-star-four-points::before {
  content: "\FAE1";
}

.mdi-star-four-points-outline::before {
  content: "\FAE2";
}

.mdi-star-half::before {
  content: "\F4D0";
}

.mdi-star-off::before {
  content: "\F4D1";
}

.mdi-star-outline::before {
  content: "\F4D2";
}

.mdi-star-three-points::before {
  content: "\FAE3";
}

.mdi-star-three-points-outline::before {
  content: "\FAE4";
}

.mdi-state-machine::before {
  content: "\F021A";
}

.mdi-steam::before {
  content: "\F4D3";
}

.mdi-steam-box::before {
  content: "\F90C";
}

.mdi-steering::before {
  content: "\F4D4";
}

.mdi-steering-off::before {
  content: "\F90D";
}

.mdi-step-backward::before {
  content: "\F4D5";
}

.mdi-step-backward-2::before {
  content: "\F4D6";
}

.mdi-step-forward::before {
  content: "\F4D7";
}

.mdi-step-forward-2::before {
  content: "\F4D8";
}

.mdi-stethoscope::before {
  content: "\F4D9";
}

.mdi-sticker::before {
  content: "\F5D0";
}

.mdi-sticker-emoji::before {
  content: "\F784";
}

.mdi-stocking::before {
  content: "\F4DA";
}

.mdi-stomach::before {
  content: "\F00BE";
}

.mdi-stop::before {
  content: "\F4DB";
}

.mdi-stop-circle::before {
  content: "\F666";
}

.mdi-stop-circle-outline::before {
  content: "\F667";
}

.mdi-store::before {
  content: "\F4DC";
}

.mdi-store-24-hour::before {
  content: "\F4DD";
}

.mdi-storefront::before {
  content: "\F00EC";
}

.mdi-stove::before {
  content: "\F4DE";
}

.mdi-strategy::before {
  content: "\F0201";
}

.mdi-strava::before {
  content: "\FB25";
}

.mdi-stretch-to-page::before {
  content: "\FF48";
}

.mdi-stretch-to-page-outline::before {
  content: "\FF49";
}

.mdi-string-lights::before {
  content: "\F02E5";
}

.mdi-string-lights-off::before {
  content: "\F02E6";
}

.mdi-subdirectory-arrow-left::before {
  content: "\F60C";
}

.mdi-subdirectory-arrow-right::before {
  content: "\F60D";
}

.mdi-subtitles::before {
  content: "\FA15";
}

.mdi-subtitles-outline::before {
  content: "\FA16";
}

.mdi-subway::before {
  content: "\F6AB";
}

.mdi-subway-alert-variant::before {
  content: "\FD79";
}

.mdi-subway-variant::before {
  content: "\F4DF";
}

.mdi-summit::before {
  content: "\F785";
}

.mdi-sunglasses::before {
  content: "\F4E0";
}

.mdi-surround-sound::before {
  content: "\F5C5";
}

.mdi-surround-sound-2-0::before {
  content: "\F7EF";
}

.mdi-surround-sound-3-1::before {
  content: "\F7F0";
}

.mdi-surround-sound-5-1::before {
  content: "\F7F1";
}

.mdi-surround-sound-7-1::before {
  content: "\F7F2";
}

.mdi-svg::before {
  content: "\F720";
}

.mdi-swap-horizontal::before {
  content: "\F4E1";
}

.mdi-swap-horizontal-bold::before {
  content: "\FBA9";
}

.mdi-swap-horizontal-circle::before {
  content: "\F0002";
}

.mdi-swap-horizontal-circle-outline::before {
  content: "\F0003";
}

.mdi-swap-horizontal-variant::before {
  content: "\F8C0";
}

.mdi-swap-vertical::before {
  content: "\F4E2";
}

.mdi-swap-vertical-bold::before {
  content: "\FBAA";
}

.mdi-swap-vertical-circle::before {
  content: "\F0004";
}

.mdi-swap-vertical-circle-outline::before {
  content: "\F0005";
}

.mdi-swap-vertical-variant::before {
  content: "\F8C1";
}

.mdi-swim::before {
  content: "\F4E3";
}

.mdi-switch::before {
  content: "\F4E4";
}

.mdi-sword::before {
  content: "\F4E5";
}

.mdi-sword-cross::before {
  content: "\F786";
}

.mdi-symfony::before {
  content: "\FAE5";
}

.mdi-sync::before {
  content: "\F4E6";
}

.mdi-sync-alert::before {
  content: "\F4E7";
}

.mdi-sync-off::before {
  content: "\F4E8";
}

.mdi-tab::before {
  content: "\F4E9";
}

.mdi-tab-minus::before {
  content: "\FB26";
}

.mdi-tab-plus::before {
  content: "\F75B";
}

.mdi-tab-remove::before {
  content: "\FB27";
}

.mdi-tab-unselected::before {
  content: "\F4EA";
}

.mdi-table::before {
  content: "\F4EB";
}

.mdi-table-border::before {
  content: "\FA17";
}

.mdi-table-chair::before {
  content: "\F0083";
}

.mdi-table-column::before {
  content: "\F834";
}

.mdi-table-column-plus-after::before {
  content: "\F4EC";
}

.mdi-table-column-plus-before::before {
  content: "\F4ED";
}

.mdi-table-column-remove::before {
  content: "\F4EE";
}

.mdi-table-column-width::before {
  content: "\F4EF";
}

.mdi-table-edit::before {
  content: "\F4F0";
}

.mdi-table-eye::before {
  content: "\F00BF";
}

.mdi-table-headers-eye::before {
  content: "\F0248";
}

.mdi-table-headers-eye-off::before {
  content: "\F0249";
}

.mdi-table-large::before {
  content: "\F4F1";
}

.mdi-table-large-plus::before {
  content: "\FFA4";
}

.mdi-table-large-remove::before {
  content: "\FFA5";
}

.mdi-table-merge-cells::before {
  content: "\F9A5";
}

.mdi-table-of-contents::before {
  content: "\F835";
}

.mdi-table-plus::before {
  content: "\FA74";
}

.mdi-table-remove::before {
  content: "\FA75";
}

.mdi-table-row::before {
  content: "\F836";
}

.mdi-table-row-height::before {
  content: "\F4F2";
}

.mdi-table-row-plus-after::before {
  content: "\F4F3";
}

.mdi-table-row-plus-before::before {
  content: "\F4F4";
}

.mdi-table-row-remove::before {
  content: "\F4F5";
}

.mdi-table-search::before {
  content: "\F90E";
}

.mdi-table-settings::before {
  content: "\F837";
}

.mdi-table-tennis::before {
  content: "\FE4B";
}

.mdi-tablet::before {
  content: "\F4F6";
}

.mdi-tablet-android::before {
  content: "\F4F7";
}

.mdi-tablet-cellphone::before {
  content: "\F9A6";
}

.mdi-tablet-dashboard::before {
  content: "\FEEB";
}

.mdi-tablet-ipad::before {
  content: "\F4F8";
}

.mdi-taco::before {
  content: "\F761";
}

.mdi-tag::before {
  content: "\F4F9";
}

.mdi-tag-faces::before {
  content: "\F4FA";
}

.mdi-tag-heart::before {
  content: "\F68A";
}

.mdi-tag-heart-outline::before {
  content: "\FBAB";
}

.mdi-tag-minus::before {
  content: "\F90F";
}

.mdi-tag-minus-outline::before {
  content: "\F024A";
}

.mdi-tag-multiple::before {
  content: "\F4FB";
}

.mdi-tag-multiple-outline::before {
  content: "\F0322";
}

.mdi-tag-off::before {
  content: "\F024B";
}

.mdi-tag-off-outline::before {
  content: "\F024C";
}

.mdi-tag-outline::before {
  content: "\F4FC";
}

.mdi-tag-plus::before {
  content: "\F721";
}

.mdi-tag-plus-outline::before {
  content: "\F024D";
}

.mdi-tag-remove::before {
  content: "\F722";
}

.mdi-tag-remove-outline::before {
  content: "\F024E";
}

.mdi-tag-text::before {
  content: "\F024F";
}

.mdi-tag-text-outline::before {
  content: "\F4FD";
}

.mdi-tank::before {
  content: "\FD16";
}

.mdi-tanker-truck::before {
  content: "\F0006";
}

.mdi-tape-measure::before {
  content: "\FB28";
}

.mdi-target::before {
  content: "\F4FE";
}

.mdi-target-account::before {
  content: "\FBAC";
}

.mdi-target-variant::before {
  content: "\FA76";
}

.mdi-taxi::before {
  content: "\F4FF";
}

.mdi-tea::before {
  content: "\FD7A";
}

.mdi-tea-outline::before {
  content: "\FD7B";
}

.mdi-teach::before {
  content: "\F88F";
}

.mdi-teamviewer::before {
  content: "\F500";
}

.mdi-telegram::before {
  content: "\F501";
}

.mdi-telescope::before {
  content: "\FB29";
}

.mdi-television::before {
  content: "\F502";
}

.mdi-television-box::before {
  content: "\F838";
}

.mdi-television-classic::before {
  content: "\F7F3";
}

.mdi-television-classic-off::before {
  content: "\F839";
}

.mdi-television-clean::before {
  content: "\F013B";
}

.mdi-television-guide::before {
  content: "\F503";
}

.mdi-television-off::before {
  content: "\F83A";
}

.mdi-television-pause::before {
  content: "\FFA6";
}

.mdi-television-play::before {
  content: "\FEEC";
}

.mdi-television-stop::before {
  content: "\FFA7";
}

.mdi-temperature-celsius::before {
  content: "\F504";
}

.mdi-temperature-fahrenheit::before {
  content: "\F505";
}

.mdi-temperature-kelvin::before {
  content: "\F506";
}

.mdi-tennis::before {
  content: "\FD7C";
}

.mdi-tennis-ball::before {
  content: "\F507";
}

.mdi-tent::before {
  content: "\F508";
}

.mdi-terraform::before {
  content: "\F0084";
}

.mdi-terrain::before {
  content: "\F509";
}

.mdi-test-tube::before {
  content: "\F668";
}

.mdi-test-tube-empty::before {
  content: "\F910";
}

.mdi-test-tube-off::before {
  content: "\F911";
}

.mdi-text::before {
  content: "\F9A7";
}

.mdi-text-recognition::before {
  content: "\F0168";
}

.mdi-text-shadow::before {
  content: "\F669";
}

.mdi-text-short::before {
  content: "\F9A8";
}

.mdi-text-subject::before {
  content: "\F9A9";
}

.mdi-text-to-speech::before {
  content: "\F50A";
}

.mdi-text-to-speech-off::before {
  content: "\F50B";
}

.mdi-textarea::before {
  content: "\F00C0";
}

.mdi-textbox::before {
  content: "\F60E";
}

.mdi-textbox-password::before {
  content: "\F7F4";
}

.mdi-texture::before {
  content: "\F50C";
}

.mdi-texture-box::before {
  content: "\F0007";
}

.mdi-theater::before {
  content: "\F50D";
}

.mdi-theme-light-dark::before {
  content: "\F50E";
}

.mdi-thermometer::before {
  content: "\F50F";
}

.mdi-thermometer-alert::before {
  content: "\FE61";
}

.mdi-thermometer-chevron-down::before {
  content: "\FE62";
}

.mdi-thermometer-chevron-up::before {
  content: "\FE63";
}

.mdi-thermometer-high::before {
  content: "\F00ED";
}

.mdi-thermometer-lines::before {
  content: "\F510";
}

.mdi-thermometer-low::before {
  content: "\F00EE";
}

.mdi-thermometer-minus::before {
  content: "\FE64";
}

.mdi-thermometer-plus::before {
  content: "\FE65";
}

.mdi-thermostat::before {
  content: "\F393";
}

.mdi-thermostat-box::before {
  content: "\F890";
}

.mdi-thought-bubble::before {
  content: "\F7F5";
}

.mdi-thought-bubble-outline::before {
  content: "\F7F6";
}

.mdi-thumb-down::before {
  content: "\F511";
}

.mdi-thumb-down-outline::before {
  content: "\F512";
}

.mdi-thumb-up::before {
  content: "\F513";
}

.mdi-thumb-up-outline::before {
  content: "\F514";
}

.mdi-thumbs-up-down::before {
  content: "\F515";
}

.mdi-ticket::before {
  content: "\F516";
}

.mdi-ticket-account::before {
  content: "\F517";
}

.mdi-ticket-confirmation::before {
  content: "\F518";
}

.mdi-ticket-outline::before {
  content: "\F912";
}

.mdi-ticket-percent::before {
  content: "\F723";
}

.mdi-tie::before {
  content: "\F519";
}

.mdi-tilde::before {
  content: "\F724";
}

.mdi-timelapse::before {
  content: "\F51A";
}

.mdi-timeline::before {
  content: "\FBAD";
}

.mdi-timeline-alert::before {
  content: "\FFB2";
}

.mdi-timeline-alert-outline::before {
  content: "\FFB5";
}

.mdi-timeline-clock::before {
  content: "\F0226";
}

.mdi-timeline-clock-outline::before {
  content: "\F0227";
}

.mdi-timeline-help::before {
  content: "\FFB6";
}

.mdi-timeline-help-outline::before {
  content: "\FFB7";
}

.mdi-timeline-outline::before {
  content: "\FBAE";
}

.mdi-timeline-plus::before {
  content: "\FFB3";
}

.mdi-timeline-plus-outline::before {
  content: "\FFB4";
}

.mdi-timeline-text::before {
  content: "\FBAF";
}

.mdi-timeline-text-outline::before {
  content: "\FBB0";
}

.mdi-timer::before {
  content: "\F51B";
}

.mdi-timer-10::before {
  content: "\F51C";
}

.mdi-timer-3::before {
  content: "\F51D";
}

.mdi-timer-off::before {
  content: "\F51E";
}

.mdi-timer-sand::before {
  content: "\F51F";
}

.mdi-timer-sand-empty::before {
  content: "\F6AC";
}

.mdi-timer-sand-full::before {
  content: "\F78B";
}

.mdi-timetable::before {
  content: "\F520";
}

.mdi-toaster::before {
  content: "\F0085";
}

.mdi-toaster-off::before {
  content: "\F01E2";
}

.mdi-toaster-oven::before {
  content: "\FCAF";
}

.mdi-toggle-switch::before {
  content: "\F521";
}

.mdi-toggle-switch-off::before {
  content: "\F522";
}

.mdi-toggle-switch-off-outline::before {
  content: "\FA18";
}

.mdi-toggle-switch-outline::before {
  content: "\FA19";
}

.mdi-toilet::before {
  content: "\F9AA";
}

.mdi-toolbox::before {
  content: "\F9AB";
}

.mdi-toolbox-outline::before {
  content: "\F9AC";
}

.mdi-tools::before {
  content: "\F0086";
}

.mdi-tooltip::before {
  content: "\F523";
}

.mdi-tooltip-account::before {
  content: "\F00C";
}

.mdi-tooltip-edit::before {
  content: "\F524";
}

.mdi-tooltip-edit-outline::before {
  content: "\F02F0";
}

.mdi-tooltip-image::before {
  content: "\F525";
}

.mdi-tooltip-image-outline::before {
  content: "\FBB1";
}

.mdi-tooltip-outline::before {
  content: "\F526";
}

.mdi-tooltip-plus::before {
  content: "\FBB2";
}

.mdi-tooltip-plus-outline::before {
  content: "\F527";
}

.mdi-tooltip-text::before {
  content: "\F528";
}

.mdi-tooltip-text-outline::before {
  content: "\FBB3";
}

.mdi-tooth::before {
  content: "\F8C2";
}

.mdi-tooth-outline::before {
  content: "\F529";
}

.mdi-toothbrush::before {
  content: "\F0154";
}

.mdi-toothbrush-electric::before {
  content: "\F0157";
}

.mdi-toothbrush-paste::before {
  content: "\F0155";
}

.mdi-tor::before {
  content: "\F52A";
}

.mdi-tortoise::before {
  content: "\FD17";
}

.mdi-toslink::before {
  content: "\F02E3";
}

.mdi-tournament::before {
  content: "\F9AD";
}

.mdi-tower-beach::before {
  content: "\F680";
}

.mdi-tower-fire::before {
  content: "\F681";
}

.mdi-towing::before {
  content: "\F83B";
}

.mdi-toy-brick::before {
  content: "\F02B3";
}

.mdi-toy-brick-marker::before {
  content: "\F02B4";
}

.mdi-toy-brick-marker-outline::before {
  content: "\F02B5";
}

.mdi-toy-brick-minus::before {
  content: "\F02B6";
}

.mdi-toy-brick-minus-outline::before {
  content: "\F02B7";
}

.mdi-toy-brick-outline::before {
  content: "\F02B8";
}

.mdi-toy-brick-plus::before {
  content: "\F02B9";
}

.mdi-toy-brick-plus-outline::before {
  content: "\F02BA";
}

.mdi-toy-brick-remove::before {
  content: "\F02BB";
}

.mdi-toy-brick-remove-outline::before {
  content: "\F02BC";
}

.mdi-toy-brick-search::before {
  content: "\F02BD";
}

.mdi-toy-brick-search-outline::before {
  content: "\F02BE";
}

.mdi-track-light::before {
  content: "\F913";
}

.mdi-trackpad::before {
  content: "\F7F7";
}

.mdi-trackpad-lock::before {
  content: "\F932";
}

.mdi-tractor::before {
  content: "\F891";
}

.mdi-trademark::before {
  content: "\FA77";
}

.mdi-traffic-light::before {
  content: "\F52B";
}

.mdi-train::before {
  content: "\F52C";
}

.mdi-train-car::before {
  content: "\FBB4";
}

.mdi-train-variant::before {
  content: "\F8C3";
}

.mdi-tram::before {
  content: "\F52D";
}

.mdi-tram-side::before {
  content: "\F0008";
}

.mdi-transcribe::before {
  content: "\F52E";
}

.mdi-transcribe-close::before {
  content: "\F52F";
}

.mdi-transfer::before {
  content: "\F0087";
}

.mdi-transfer-down::before {
  content: "\FD7D";
}

.mdi-transfer-left::before {
  content: "\FD7E";
}

.mdi-transfer-right::before {
  content: "\F530";
}

.mdi-transfer-up::before {
  content: "\FD7F";
}

.mdi-transit-connection::before {
  content: "\FD18";
}

.mdi-transit-connection-variant::before {
  content: "\FD19";
}

.mdi-transit-detour::before {
  content: "\FFA8";
}

.mdi-transit-transfer::before {
  content: "\F6AD";
}

.mdi-transition::before {
  content: "\F914";
}

.mdi-transition-masked::before {
  content: "\F915";
}

.mdi-translate::before {
  content: "\F5CA";
}

.mdi-translate-off::before {
  content: "\FE66";
}

.mdi-transmission-tower::before {
  content: "\FD1A";
}

.mdi-trash-can::before {
  content: "\FA78";
}

.mdi-trash-can-outline::before {
  content: "\FA79";
}

.mdi-tray::before {
  content: "\F02BF";
}

.mdi-tray-alert::before {
  content: "\F02C0";
}

.mdi-tray-full::before {
  content: "\F02C1";
}

.mdi-tray-minus::before {
  content: "\F02C2";
}

.mdi-tray-plus::before {
  content: "\F02C3";
}

.mdi-tray-remove::before {
  content: "\F02C4";
}

.mdi-treasure-chest::before {
  content: "\F725";
}

.mdi-tree::before {
  content: "\F531";
}

.mdi-tree-outline::before {
  content: "\FE4C";
}

.mdi-trello::before {
  content: "\F532";
}

.mdi-trending-down::before {
  content: "\F533";
}

.mdi-trending-neutral::before {
  content: "\F534";
}

.mdi-trending-up::before {
  content: "\F535";
}

.mdi-triangle::before {
  content: "\F536";
}

.mdi-triangle-outline::before {
  content: "\F537";
}

.mdi-triforce::before {
  content: "\FBB5";
}

.mdi-trophy::before {
  content: "\F538";
}

.mdi-trophy-award::before {
  content: "\F539";
}

.mdi-trophy-broken::before {
  content: "\FD80";
}

.mdi-trophy-outline::before {
  content: "\F53A";
}

.mdi-trophy-variant::before {
  content: "\F53B";
}

.mdi-trophy-variant-outline::before {
  content: "\F53C";
}

.mdi-truck::before {
  content: "\F53D";
}

.mdi-truck-check::before {
  content: "\FCB0";
}

.mdi-truck-check-outline::before {
  content: "\F02C5";
}

.mdi-truck-delivery::before {
  content: "\F53E";
}

.mdi-truck-delivery-outline::before {
  content: "\F02C6";
}

.mdi-truck-fast::before {
  content: "\F787";
}

.mdi-truck-fast-outline::before {
  content: "\F02C7";
}

.mdi-truck-outline::before {
  content: "\F02C8";
}

.mdi-truck-trailer::before {
  content: "\F726";
}

.mdi-trumpet::before {
  content: "\F00C1";
}

.mdi-tshirt-crew::before {
  content: "\FA7A";
}

.mdi-tshirt-crew-outline::before {
  content: "\F53F";
}

.mdi-tshirt-v::before {
  content: "\FA7B";
}

.mdi-tshirt-v-outline::before {
  content: "\F540";
}

.mdi-tumble-dryer::before {
  content: "\F916";
}

.mdi-tumble-dryer-alert::before {
  content: "\F01E5";
}

.mdi-tumble-dryer-off::before {
  content: "\F01E6";
}

.mdi-tumblr::before {
  content: "\F541";
}

.mdi-tumblr-box::before {
  content: "\F917";
}

.mdi-tumblr-reblog::before {
  content: "\F542";
}

.mdi-tune::before {
  content: "\F62E";
}

.mdi-tune-vertical::before {
  content: "\F66A";
}

.mdi-turnstile::before {
  content: "\FCB1";
}

.mdi-turnstile-outline::before {
  content: "\FCB2";
}

.mdi-turtle::before {
  content: "\FCB3";
}

.mdi-twitch::before {
  content: "\F543";
}

.mdi-twitter::before {
  content: "\F544";
}

.mdi-twitter-box::before {
  content: "\F545";
}

.mdi-twitter-circle::before {
  content: "\F546";
}

.mdi-twitter-retweet::before {
  content: "\F547";
}

.mdi-two-factor-authentication::before {
  content: "\F9AE";
}

.mdi-typewriter::before {
  content: "\FF4A";
}

.mdi-uber::before {
  content: "\F748";
}

.mdi-ubisoft::before {
  content: "\FBB6";
}

.mdi-ubuntu::before {
  content: "\F548";
}

.mdi-ufo::before {
  content: "\F00EF";
}

.mdi-ufo-outline::before {
  content: "\F00F0";
}

.mdi-ultra-high-definition::before {
  content: "\F7F8";
}

.mdi-umbraco::before {
  content: "\F549";
}

.mdi-umbrella::before {
  content: "\F54A";
}

.mdi-umbrella-closed::before {
  content: "\F9AF";
}

.mdi-umbrella-outline::before {
  content: "\F54B";
}

.mdi-undo::before {
  content: "\F54C";
}

.mdi-undo-variant::before {
  content: "\F54D";
}

.mdi-unfold-less-horizontal::before {
  content: "\F54E";
}

.mdi-unfold-less-vertical::before {
  content: "\F75F";
}

.mdi-unfold-more-horizontal::before {
  content: "\F54F";
}

.mdi-unfold-more-vertical::before {
  content: "\F760";
}

.mdi-ungroup::before {
  content: "\F550";
}

.mdi-unicode::before {
  content: "\FEED";
}

.mdi-unity::before {
  content: "\F6AE";
}

.mdi-unreal::before {
  content: "\F9B0";
}

.mdi-untappd::before {
  content: "\F551";
}

.mdi-update::before {
  content: "\F6AF";
}

.mdi-upload::before {
  content: "\F552";
}

.mdi-upload-multiple::before {
  content: "\F83C";
}

.mdi-upload-network::before {
  content: "\F6F5";
}

.mdi-upload-network-outline::before {
  content: "\FCB4";
}

.mdi-upload-off::before {
  content: "\F00F1";
}

.mdi-upload-off-outline::before {
  content: "\F00F2";
}

.mdi-upload-outline::before {
  content: "\FE67";
}

.mdi-usb::before {
  content: "\F553";
}

.mdi-usb-flash-drive::before {
  content: "\F02C9";
}

.mdi-usb-flash-drive-outline::before {
  content: "\F02CA";
}

.mdi-usb-port::before {
  content: "\F021B";
}

.mdi-valve::before {
  content: "\F0088";
}

.mdi-valve-closed::before {
  content: "\F0089";
}

.mdi-valve-open::before {
  content: "\F008A";
}

.mdi-van-passenger::before {
  content: "\F7F9";
}

.mdi-van-utility::before {
  content: "\F7FA";
}

.mdi-vanish::before {
  content: "\F7FB";
}

.mdi-vanity-light::before {
  content: "\F020C";
}

.mdi-variable::before {
  content: "\FAE6";
}

.mdi-variable-box::before {
  content: "\F013C";
}

.mdi-vector-arrange-above::before {
  content: "\F554";
}

.mdi-vector-arrange-below::before {
  content: "\F555";
}

.mdi-vector-bezier::before {
  content: "\FAE7";
}

.mdi-vector-circle::before {
  content: "\F556";
}

.mdi-vector-circle-variant::before {
  content: "\F557";
}

.mdi-vector-combine::before {
  content: "\F558";
}

.mdi-vector-curve::before {
  content: "\F559";
}

.mdi-vector-difference::before {
  content: "\F55A";
}

.mdi-vector-difference-ab::before {
  content: "\F55B";
}

.mdi-vector-difference-ba::before {
  content: "\F55C";
}

.mdi-vector-ellipse::before {
  content: "\F892";
}

.mdi-vector-intersection::before {
  content: "\F55D";
}

.mdi-vector-line::before {
  content: "\F55E";
}

.mdi-vector-link::before {
  content: "\F0009";
}

.mdi-vector-point::before {
  content: "\F55F";
}

.mdi-vector-polygon::before {
  content: "\F560";
}

.mdi-vector-polyline::before {
  content: "\F561";
}

.mdi-vector-polyline-edit::before {
  content: "\F0250";
}

.mdi-vector-polyline-minus::before {
  content: "\F0251";
}

.mdi-vector-polyline-plus::before {
  content: "\F0252";
}

.mdi-vector-polyline-remove::before {
  content: "\F0253";
}

.mdi-vector-radius::before {
  content: "\F749";
}

.mdi-vector-rectangle::before {
  content: "\F5C6";
}

.mdi-vector-selection::before {
  content: "\F562";
}

.mdi-vector-square::before {
  content: "\F001";
}

.mdi-vector-triangle::before {
  content: "\F563";
}

.mdi-vector-union::before {
  content: "\F564";
}

.mdi-venmo::before {
  content: "\F578";
}

.mdi-vhs::before {
  content: "\FA1A";
}

.mdi-vibrate::before {
  content: "\F566";
}

.mdi-vibrate-off::before {
  content: "\FCB5";
}

.mdi-video::before {
  content: "\F567";
}

.mdi-video-3d::before {
  content: "\F7FC";
}

.mdi-video-3d-variant::before {
  content: "\FEEE";
}

.mdi-video-4k-box::before {
  content: "\F83D";
}

.mdi-video-account::before {
  content: "\F918";
}

.mdi-video-check::before {
  content: "\F008B";
}

.mdi-video-check-outline::before {
  content: "\F008C";
}

.mdi-video-image::before {
  content: "\F919";
}

.mdi-video-input-antenna::before {
  content: "\F83E";
}

.mdi-video-input-component::before {
  content: "\F83F";
}

.mdi-video-input-hdmi::before {
  content: "\F840";
}

.mdi-video-input-scart::before {
  content: "\FFA9";
}

.mdi-video-input-svideo::before {
  content: "\F841";
}

.mdi-video-minus::before {
  content: "\F9B1";
}

.mdi-video-off::before {
  content: "\F568";
}

.mdi-video-off-outline::before {
  content: "\FBB7";
}

.mdi-video-outline::before {
  content: "\FBB8";
}

.mdi-video-plus::before {
  content: "\F9B2";
}

.mdi-video-stabilization::before {
  content: "\F91A";
}

.mdi-video-switch::before {
  content: "\F569";
}

.mdi-video-vintage::before {
  content: "\FA1B";
}

.mdi-video-wireless::before {
  content: "\FEEF";
}

.mdi-video-wireless-outline::before {
  content: "\FEF0";
}

.mdi-view-agenda::before {
  content: "\F56A";
}

.mdi-view-agenda-outline::before {
  content: "\F0203";
}

.mdi-view-array::before {
  content: "\F56B";
}

.mdi-view-carousel::before {
  content: "\F56C";
}

.mdi-view-column::before {
  content: "\F56D";
}

.mdi-view-comfy::before {
  content: "\FE4D";
}

.mdi-view-compact::before {
  content: "\FE4E";
}

.mdi-view-compact-outline::before {
  content: "\FE4F";
}

.mdi-view-dashboard::before {
  content: "\F56E";
}

.mdi-view-dashboard-outline::before {
  content: "\FA1C";
}

.mdi-view-dashboard-variant::before {
  content: "\F842";
}

.mdi-view-day::before {
  content: "\F56F";
}

.mdi-view-grid::before {
  content: "\F570";
}

.mdi-view-grid-outline::before {
  content: "\F0204";
}

.mdi-view-grid-plus::before {
  content: "\FFAA";
}

.mdi-view-grid-plus-outline::before {
  content: "\F0205";
}

.mdi-view-headline::before {
  content: "\F571";
}

.mdi-view-list::before {
  content: "\F572";
}

.mdi-view-module::before {
  content: "\F573";
}

.mdi-view-parallel::before {
  content: "\F727";
}

.mdi-view-quilt::before {
  content: "\F574";
}

.mdi-view-sequential::before {
  content: "\F728";
}

.mdi-view-split-horizontal::before {
  content: "\FBA7";
}

.mdi-view-split-vertical::before {
  content: "\FBA8";
}

.mdi-view-stream::before {
  content: "\F575";
}

.mdi-view-week::before {
  content: "\F576";
}

.mdi-vimeo::before {
  content: "\F577";
}

.mdi-violin::before {
  content: "\F60F";
}

.mdi-virtual-reality::before {
  content: "\F893";
}

.mdi-visual-studio::before {
  content: "\F610";
}

.mdi-visual-studio-code::before {
  content: "\FA1D";
}

.mdi-vk::before {
  content: "\F579";
}

.mdi-vk-box::before {
  content: "\F57A";
}

.mdi-vk-circle::before {
  content: "\F57B";
}

.mdi-vlc::before {
  content: "\F57C";
}

.mdi-voice::before {
  content: "\F5CB";
}

.mdi-voice-off::before {
  content: "\FEF1";
}

.mdi-voicemail::before {
  content: "\F57D";
}

.mdi-volleyball::before {
  content: "\F9B3";
}

.mdi-volume-high::before {
  content: "\F57E";
}

.mdi-volume-low::before {
  content: "\F57F";
}

.mdi-volume-medium::before {
  content: "\F580";
}

.mdi-volume-minus::before {
  content: "\F75D";
}

.mdi-volume-mute::before {
  content: "\F75E";
}

.mdi-volume-off::before {
  content: "\F581";
}

.mdi-volume-plus::before {
  content: "\F75C";
}

.mdi-volume-source::before {
  content: "\F014B";
}

.mdi-volume-variant-off::before {
  content: "\FE68";
}

.mdi-volume-vibrate::before {
  content: "\F014C";
}

.mdi-vote::before {
  content: "\FA1E";
}

.mdi-vote-outline::before {
  content: "\FA1F";
}

.mdi-vpn::before {
  content: "\F582";
}

.mdi-vuejs::before {
  content: "\F843";
}

.mdi-vuetify::before {
  content: "\FE50";
}

.mdi-walk::before {
  content: "\F583";
}

.mdi-wall::before {
  content: "\F7FD";
}

.mdi-wall-sconce::before {
  content: "\F91B";
}

.mdi-wall-sconce-flat::before {
  content: "\F91C";
}

.mdi-wall-sconce-variant::before {
  content: "\F91D";
}

.mdi-wallet::before {
  content: "\F584";
}

.mdi-wallet-giftcard::before {
  content: "\F585";
}

.mdi-wallet-membership::before {
  content: "\F586";
}

.mdi-wallet-outline::before {
  content: "\FBB9";
}

.mdi-wallet-plus::before {
  content: "\FFAB";
}

.mdi-wallet-plus-outline::before {
  content: "\FFAC";
}

.mdi-wallet-travel::before {
  content: "\F587";
}

.mdi-wallpaper::before {
  content: "\FE69";
}

.mdi-wan::before {
  content: "\F588";
}

.mdi-wardrobe::before {
  content: "\FFAD";
}

.mdi-wardrobe-outline::before {
  content: "\FFAE";
}

.mdi-warehouse::before {
  content: "\FFBB";
}

.mdi-washing-machine::before {
  content: "\F729";
}

.mdi-washing-machine-alert::before {
  content: "\F01E7";
}

.mdi-washing-machine-off::before {
  content: "\F01E8";
}

.mdi-watch::before {
  content: "\F589";
}

.mdi-watch-export::before {
  content: "\F58A";
}

.mdi-watch-export-variant::before {
  content: "\F894";
}

.mdi-watch-import::before {
  content: "\F58B";
}

.mdi-watch-import-variant::before {
  content: "\F895";
}

.mdi-watch-variant::before {
  content: "\F896";
}

.mdi-watch-vibrate::before {
  content: "\F6B0";
}

.mdi-watch-vibrate-off::before {
  content: "\FCB6";
}

.mdi-water::before {
  content: "\F58C";
}

.mdi-water-boiler::before {
  content: "\FFAF";
}

.mdi-water-boiler-alert::before {
  content: "\F01DE";
}

.mdi-water-boiler-off::before {
  content: "\F01DF";
}

.mdi-water-off::before {
  content: "\F58D";
}

.mdi-water-outline::before {
  content: "\FE6A";
}

.mdi-water-percent::before {
  content: "\F58E";
}

.mdi-water-polo::before {
  content: "\F02CB";
}

.mdi-water-pump::before {
  content: "\F58F";
}

.mdi-water-pump-off::before {
  content: "\FFB0";
}

.mdi-water-well::before {
  content: "\F008D";
}

.mdi-water-well-outline::before {
  content: "\F008E";
}

.mdi-watermark::before {
  content: "\F612";
}

.mdi-wave::before {
  content: "\FF4B";
}

.mdi-waves::before {
  content: "\F78C";
}

.mdi-waze::before {
  content: "\FBBA";
}

.mdi-weather-cloudy::before {
  content: "\F590";
}

.mdi-weather-cloudy-alert::before {
  content: "\FF4C";
}

.mdi-weather-cloudy-arrow-right::before {
  content: "\FE51";
}

.mdi-weather-fog::before {
  content: "\F591";
}

.mdi-weather-hail::before {
  content: "\F592";
}

.mdi-weather-hazy::before {
  content: "\FF4D";
}

.mdi-weather-hurricane::before {
  content: "\F897";
}

.mdi-weather-lightning::before {
  content: "\F593";
}

.mdi-weather-lightning-rainy::before {
  content: "\F67D";
}

.mdi-weather-night::before {
  content: "\F594";
}

.mdi-weather-night-partly-cloudy::before {
  content: "\FF4E";
}

.mdi-weather-partly-cloudy::before {
  content: "\F595";
}

.mdi-weather-partly-lightning::before {
  content: "\FF4F";
}

.mdi-weather-partly-rainy::before {
  content: "\FF50";
}

.mdi-weather-partly-snowy::before {
  content: "\FF51";
}

.mdi-weather-partly-snowy-rainy::before {
  content: "\FF52";
}

.mdi-weather-pouring::before {
  content: "\F596";
}

.mdi-weather-rainy::before {
  content: "\F597";
}

.mdi-weather-snowy::before {
  content: "\F598";
}

.mdi-weather-snowy-heavy::before {
  content: "\FF53";
}

.mdi-weather-snowy-rainy::before {
  content: "\F67E";
}

.mdi-weather-sunny::before {
  content: "\F599";
}

.mdi-weather-sunny-alert::before {
  content: "\FF54";
}

.mdi-weather-sunset::before {
  content: "\F59A";
}

.mdi-weather-sunset-down::before {
  content: "\F59B";
}

.mdi-weather-sunset-up::before {
  content: "\F59C";
}

.mdi-weather-tornado::before {
  content: "\FF55";
}

.mdi-weather-windy::before {
  content: "\F59D";
}

.mdi-weather-windy-variant::before {
  content: "\F59E";
}

.mdi-web::before {
  content: "\F59F";
}

.mdi-web-box::before {
  content: "\FFB1";
}

.mdi-web-clock::before {
  content: "\F0275";
}

.mdi-webcam::before {
  content: "\F5A0";
}

.mdi-webhook::before {
  content: "\F62F";
}

.mdi-webpack::before {
  content: "\F72A";
}

.mdi-webrtc::before {
  content: "\F0273";
}

.mdi-wechat::before {
  content: "\F611";
}

.mdi-weight::before {
  content: "\F5A1";
}

.mdi-weight-gram::before {
  content: "\FD1B";
}

.mdi-weight-kilogram::before {
  content: "\F5A2";
}

.mdi-weight-lifter::before {
  content: "\F0188";
}

.mdi-weight-pound::before {
  content: "\F9B4";
}

.mdi-whatsapp::before {
  content: "\F5A3";
}

.mdi-wheelchair-accessibility::before {
  content: "\F5A4";
}

.mdi-whistle::before {
  content: "\F9B5";
}

.mdi-whistle-outline::before {
  content: "\F02E7";
}

.mdi-white-balance-auto::before {
  content: "\F5A5";
}

.mdi-white-balance-incandescent::before {
  content: "\F5A6";
}

.mdi-white-balance-iridescent::before {
  content: "\F5A7";
}

.mdi-white-balance-sunny::before {
  content: "\F5A8";
}

.mdi-widgets::before {
  content: "\F72B";
}

.mdi-wifi::before {
  content: "\F5A9";
}

.mdi-wifi-off::before {
  content: "\F5AA";
}

.mdi-wifi-star::before {
  content: "\FE6B";
}

.mdi-wifi-strength-1::before {
  content: "\F91E";
}

.mdi-wifi-strength-1-alert::before {
  content: "\F91F";
}

.mdi-wifi-strength-1-lock::before {
  content: "\F920";
}

.mdi-wifi-strength-2::before {
  content: "\F921";
}

.mdi-wifi-strength-2-alert::before {
  content: "\F922";
}

.mdi-wifi-strength-2-lock::before {
  content: "\F923";
}

.mdi-wifi-strength-3::before {
  content: "\F924";
}

.mdi-wifi-strength-3-alert::before {
  content: "\F925";
}

.mdi-wifi-strength-3-lock::before {
  content: "\F926";
}

.mdi-wifi-strength-4::before {
  content: "\F927";
}

.mdi-wifi-strength-4-alert::before {
  content: "\F928";
}

.mdi-wifi-strength-4-lock::before {
  content: "\F929";
}

.mdi-wifi-strength-alert-outline::before {
  content: "\F92A";
}

.mdi-wifi-strength-lock-outline::before {
  content: "\F92B";
}

.mdi-wifi-strength-off::before {
  content: "\F92C";
}

.mdi-wifi-strength-off-outline::before {
  content: "\F92D";
}

.mdi-wifi-strength-outline::before {
  content: "\F92E";
}

.mdi-wii::before {
  content: "\F5AB";
}

.mdi-wiiu::before {
  content: "\F72C";
}

.mdi-wikipedia::before {
  content: "\F5AC";
}

.mdi-wind-turbine::before {
  content: "\FD81";
}

.mdi-window-close::before {
  content: "\F5AD";
}

.mdi-window-closed::before {
  content: "\F5AE";
}

.mdi-window-closed-variant::before {
  content: "\F0206";
}

.mdi-window-maximize::before {
  content: "\F5AF";
}

.mdi-window-minimize::before {
  content: "\F5B0";
}

.mdi-window-open::before {
  content: "\F5B1";
}

.mdi-window-open-variant::before {
  content: "\F0207";
}

.mdi-window-restore::before {
  content: "\F5B2";
}

.mdi-window-shutter::before {
  content: "\F0147";
}

.mdi-window-shutter-alert::before {
  content: "\F0148";
}

.mdi-window-shutter-open::before {
  content: "\F0149";
}

.mdi-windows::before {
  content: "\F5B3";
}

.mdi-windows-classic::before {
  content: "\FA20";
}

.mdi-wiper::before {
  content: "\FAE8";
}

.mdi-wiper-wash::before {
  content: "\FD82";
}

.mdi-wordpress::before {
  content: "\F5B4";
}

.mdi-worker::before {
  content: "\F5B5";
}

.mdi-wrap::before {
  content: "\F5B6";
}

.mdi-wrap-disabled::before {
  content: "\FBBB";
}

.mdi-wrench::before {
  content: "\F5B7";
}

.mdi-wrench-outline::before {
  content: "\FBBC";
}

.mdi-wunderlist::before {
  content: "\F5B8";
}

.mdi-xamarin::before {
  content: "\F844";
}

.mdi-xamarin-outline::before {
  content: "\F845";
}

.mdi-xaml::before {
  content: "\F673";
}

.mdi-xbox::before {
  content: "\F5B9";
}

.mdi-xbox-controller::before {
  content: "\F5BA";
}

.mdi-xbox-controller-battery-alert::before {
  content: "\F74A";
}

.mdi-xbox-controller-battery-charging::before {
  content: "\FA21";
}

.mdi-xbox-controller-battery-empty::before {
  content: "\F74B";
}

.mdi-xbox-controller-battery-full::before {
  content: "\F74C";
}

.mdi-xbox-controller-battery-low::before {
  content: "\F74D";
}

.mdi-xbox-controller-battery-medium::before {
  content: "\F74E";
}

.mdi-xbox-controller-battery-unknown::before {
  content: "\F74F";
}

.mdi-xbox-controller-menu::before {
  content: "\FE52";
}

.mdi-xbox-controller-off::before {
  content: "\F5BB";
}

.mdi-xbox-controller-view::before {
  content: "\FE53";
}

.mdi-xda::before {
  content: "\F5BC";
}

.mdi-xing::before {
  content: "\F5BD";
}

.mdi-xing-box::before {
  content: "\F5BE";
}

.mdi-xing-circle::before {
  content: "\F5BF";
}

.mdi-xml::before {
  content: "\F5C0";
}

.mdi-xmpp::before {
  content: "\F7FE";
}

.mdi-yahoo::before {
  content: "\FB2A";
}

.mdi-yammer::before {
  content: "\F788";
}

.mdi-yeast::before {
  content: "\F5C1";
}

.mdi-yelp::before {
  content: "\F5C2";
}

.mdi-yin-yang::before {
  content: "\F67F";
}

.mdi-yoga::before {
  content: "\F01A7";
}

.mdi-youtube::before {
  content: "\F5C3";
}

.mdi-youtube-creator-studio::before {
  content: "\F846";
}

.mdi-youtube-gaming::before {
  content: "\F847";
}

.mdi-youtube-subscription::before {
  content: "\FD1C";
}

.mdi-youtube-tv::before {
  content: "\F448";
}

.mdi-z-wave::before {
  content: "\FAE9";
}

.mdi-zend::before {
  content: "\FAEA";
}

.mdi-zigbee::before {
  content: "\FD1D";
}

.mdi-zip-box::before {
  content: "\F5C4";
}

.mdi-zip-box-outline::before {
  content: "\F001B";
}

.mdi-zip-disk::before {
  content: "\FA22";
}

.mdi-zodiac-aquarius::before {
  content: "\FA7C";
}

.mdi-zodiac-aries::before {
  content: "\FA7D";
}

.mdi-zodiac-cancer::before {
  content: "\FA7E";
}

.mdi-zodiac-capricorn::before {
  content: "\FA7F";
}

.mdi-zodiac-gemini::before {
  content: "\FA80";
}

.mdi-zodiac-leo::before {
  content: "\FA81";
}

.mdi-zodiac-libra::before {
  content: "\FA82";
}

.mdi-zodiac-pisces::before {
  content: "\FA83";
}

.mdi-zodiac-sagittarius::before {
  content: "\FA84";
}

.mdi-zodiac-scorpio::before {
  content: "\FA85";
}

.mdi-zodiac-taurus::before {
  content: "\FA86";
}

.mdi-zodiac-virgo::before {
  content: "\FA87";
}

.mdi-blank::before {
  content: "\F68C";
  visibility: hidden;
}

.mdi-18px.mdi-set,
.mdi-18px.mdi:before {
  font-size: 18px;
}

.mdi-24px.mdi-set,
.mdi-24px.mdi:before {
  font-size: 24px;
}

.mdi-36px.mdi-set,
.mdi-36px.mdi:before {
  font-size: 36px;
}

.mdi-48px.mdi-set,
.mdi-48px.mdi:before {
  font-size: 48px;
}

.mdi-dark:before {
  color: rgba(0, 0, 0, 0.54);
}

.mdi-dark.mdi-inactive:before {
  color: rgba(0, 0, 0, 0.26);
}

.mdi-light:before {
  color: white;
}

.mdi-light.mdi-inactive:before {
  color: rgba(255, 255, 255, 0.3);
}

.mdi-rotate-45 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(45deg);
      transform: scaleX(-1) rotate(45deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: scaleY(-1) rotate(45deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-45:before {
  transform: rotate(45deg);
}

.mdi-rotate-90 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(90deg);
      transform: scaleX(-1) rotate(90deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: scaleY(-1) rotate(90deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-90:before {
  transform: rotate(90deg);
}

.mdi-rotate-135 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(135deg);
      transform: scaleX(-1) rotate(135deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: scaleY(-1) rotate(135deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-135:before {
  transform: rotate(135deg);
}

.mdi-rotate-180 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(180deg);
      transform: scaleX(-1) rotate(180deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: scaleY(-1) rotate(180deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-180:before {
  transform: rotate(180deg);
}

.mdi-rotate-225 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(225deg);
      transform: scaleX(-1) rotate(225deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(225deg);
      -ms-transform: rotate(225deg);
      transform: scaleY(-1) rotate(225deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-225:before {
  transform: rotate(225deg);
}

.mdi-rotate-270 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(270deg);
      transform: scaleX(-1) rotate(270deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(270deg);
      -ms-transform: rotate(270deg);
      transform: scaleY(-1) rotate(270deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-270:before {
  transform: rotate(270deg);
}

.mdi-rotate-315 {
  /*
  // Not included in production
  &.mdi-flip-h:before {
      -webkit-transform: scaleX(-1) rotate(315deg);
      transform: scaleX(-1) rotate(315deg);
      filter: FlipH;
      -ms-filter: "FlipH";
  }
  &.mdi-flip-v:before {
      -webkit-transform: scaleY(-1) rotate(315deg);
      -ms-transform: rotate(315deg);
      transform: scaleY(-1) rotate(315deg);
      filter: FlipV;
      -ms-filter: "FlipV";
  }
  */
}

.mdi-rotate-315:before {
  transform: rotate(315deg);
}

.mdi-flip-h:before {
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
  -ms-filter: "FlipH";
}

.mdi-flip-v:before {
  transform: scaleY(-1);
  -webkit-filter: FlipV;
          filter: FlipV;
  -ms-filter: "FlipV";
}

.mdi-spin:before {
  -webkit-animation: mdi-spin 2s infinite linear;
  animation: mdi-spin 2s infinite linear;
}

@-webkit-keyframes mdi-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes mdi-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

/* FONT PATH
 * -------------------------- */

@font-face {
  font-family: "FontAwesome";
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-feed:before,
.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-sticky-note-o:before {
  content: "\F24A";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-hourglass-o:before {
  content: "\F250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256";
}

.fa-hand-scissors-o:before {
  content: "\F257";
}

.fa-hand-lizard-o:before {
  content: "\F258";
}

.fa-hand-spock-o:before {
  content: "\F259";
}

.fa-hand-pointer-o:before {
  content: "\F25A";
}

.fa-hand-peace-o:before {
  content: "\F25B";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-safari:before {
  content: "\F267";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-tv:before,
.fa-television:before {
  content: "\F26C";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-500px:before {
  content: "\F26E";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-calendar-plus-o:before {
  content: "\F271";
}

.fa-calendar-minus-o:before {
  content: "\F272";
}

.fa-calendar-times-o:before {
  content: "\F273";
}

.fa-calendar-check-o:before {
  content: "\F274";
}

.fa-industry:before {
  content: "\F275";
}

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-map-o:before {
  content: "\F278";
}

.fa-map:before {
  content: "\F279";
}

.fa-commenting:before {
  content: "\F27A";
}

.fa-commenting-o:before {
  content: "\F27B";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-vimeo:before {
  content: "\F27D";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-edge:before {
  content: "\F282";
}

.fa-credit-card-alt:before {
  content: "\F283";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-modx:before {
  content: "\F285";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-usb:before {
  content: "\F287";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-pause-circle-o:before {
  content: "\F28C";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stop-circle-o:before {
  content: "\F28E";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-percent:before {
  content: "\F295";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-envira:before {
  content: "\F299";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-wheelchair-alt:before {
  content: "\F29B";
}

.fa-question-circle-o:before {
  content: "\F29C";
}

.fa-blind:before {
  content: "\F29D";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-volume-control-phone:before {
  content: "\F2A0";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-handshake-o:before {
  content: "\F2B5";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-o:before {
  content: "\F2B7";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-book-o:before {
  content: "\F2BA";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-circle-o:before {
  content: "\F2BE";
}

.fa-user-o:before {
  content: "\F2C0";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-eercast:before {
  content: "\F2DA";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-snowflake-o:before {
  content: "\F2DC";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-meetup:before {
  content: "\F2E0";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.swal2-popup.swal2-toast {
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0.625em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9;
}

.swal2-popup.swal2-toast .swal2-header {
  flex-direction: row;
}

.swal2-popup.swal2-toast .swal2-title {
  flex-grow: 1;
  justify-content: flex-start;
  margin: 0 0.6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  position: static;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8;
}

.swal2-popup.swal2-toast .swal2-content {
  justify-content: flex-start;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
    font-size: 0.25em;
  }
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  flex-basis: auto !important;
  width: auto;
  height: auto;
  margin: 0 0.3125em;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0 0.3125em;
  padding: 0.3125em 0.625em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
          animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
          animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: swal2-toast-show 0.5s;
          animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: swal2-toast-hide 0.1s forwards;
          animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: flex;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}

.swal2-container.swal2-top {
  align-items: flex-start;
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.swal2-container.swal2-center {
  align-items: center;
}

.swal2-container.swal2-center-start,
.swal2-container.swal2-center-left {
  align-items: center;
  justify-content: flex-start;
}

.swal2-container.swal2-center-end,
.swal2-container.swal2-center-right {
  align-items: center;
  justify-content: flex-end;
}

.swal2-container.swal2-bottom {
  align-items: flex-end;
}

.swal2-container.swal2-bottom-start,
.swal2-container.swal2-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.swal2-container.swal2-bottom > :first-child,
.swal2-container.swal2-bottom-start > :first-child,
.swal2-container.swal2-bottom-left > :first-child,
.swal2-container.swal2-bottom-end > :first-child,
.swal2-container.swal2-bottom-right > :first-child {
  margin-top: auto;
}

.swal2-container.swal2-grow-fullscreen > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-self: stretch;
  justify-content: center;
}

.swal2-container.swal2-grow-row > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

.swal2-container.swal2-grow-column {
  flex: 1;
  flex-direction: column;
}

.swal2-container.swal2-grow-column.swal2-top,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-bottom {
  align-items: center;
}

.swal2-container.swal2-grow-column.swal2-top-start,
.swal2-container.swal2-grow-column.swal2-center-start,
.swal2-container.swal2-grow-column.swal2-bottom-start,
.swal2-container.swal2-grow-column.swal2-top-left,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-bottom-left {
  align-items: flex-start;
}

.swal2-container.swal2-grow-column.swal2-top-end,
.swal2-container.swal2-grow-column.swal2-center-end,
.swal2-container.swal2-grow-column.swal2-bottom-end,
.swal2-container.swal2-grow-column.swal2-top-right,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-bottom-right {
  align-items: flex-end;
}

.swal2-container.swal2-grow-column > .swal2-modal {
  display: flex !important;
  flex: 1;
  align-content: center;
  justify-content: center;
}

.swal2-container.swal2-no-transition {
  transition: none !important;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-container .swal2-modal {
    margin: 0 !important;
  }
}

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border: none;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-popup:focus {
  outline: none;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  box-sizing: border-box;
  width: 2.5em;
  height: 2.5em;
  margin: 0.46875em;
  padding: 0;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
          animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border: 0.25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent !important;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
          animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border: 3px solid #999999;
  border-radius: 50%;
  border-right-color: transparent;
  box-shadow: 1px 1px 1px #fff;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 2em;
  box-shadow: none;
  font-weight: 500;
}

.swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-styled:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(50, 100, 150, 0.4);
}

.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 1.25em auto;
}

.swal2-close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
}

.swal2-close:hover {
  transform: none;
  background: transparent;
  color: #f27474;
}

.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-content {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em auto;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  color: inherit;
  font-size: 1.125em;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: 0 0 3px #c4e6f5;
}

.swal2-input::-webkit-input-placeholder, .swal2-file::-webkit-input-placeholder, .swal2-textarea::-webkit-input-placeholder {
  color: #cccccc;
}

.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  color: #cccccc;
}

.swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
  color: #cccccc;
}

.swal2-input::-ms-input-placeholder, .swal2-file::-ms-input-placeholder, .swal2-textarea::-ms-input-placeholder {
  color: #cccccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
  color: #cccccc;
}

.swal2-range {
  margin: 1em auto;
  background: #fff;
}

.swal2-range input {
  width: 80%;
}

.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}

.swal2-range input,
.swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-input[type=number] {
  max-width: 10em;
}

.swal2-file {
  background: inherit;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.swal2-radio input,
.swal2-checkbox input {
  margin: 0 0.4em;
}

.swal2-validation-message {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}

.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
          animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
          animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
          animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
          animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
          animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  background: inherit;
  font-weight: 600;
}

.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #3085d6;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #3085d6;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
          animation: swal2-show 0.3s;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
          animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  right: auto;
  left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

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

  .swal2-range output {
    display: none;
  }
}

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

  .swal2-range output {
    display: none;
  }
}

@-moz-document url-prefix()  {
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}

@-webkit-keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }

  33% {
    transform: translateY(0) rotateZ(-2deg);
  }

  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }

  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }

  33% {
    transform: translateY(0) rotateZ(-2deg);
  }

  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }

  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}

@-webkit-keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}

@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}

@-webkit-keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }

  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }

  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }

  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }

  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}

@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }

  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }

  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }

  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }

  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}

@-webkit-keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }

  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }

  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }

  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}

@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }

  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }

  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }

  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}

@-webkit-keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}

@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }

  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }

  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }

  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }

  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}

@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }

  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }

  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }

  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }

  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}

@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }

  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }

  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }

  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }

  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }

  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }

  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }

  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }

  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}

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

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

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

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: calc(100% - 0.625em * 2);
  background-color: transparent !important;
}

body.swal2-no-backdrop .swal2-container > .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

body.swal2-no-backdrop .swal2-container.swal2-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-top-start,
body.swal2-no-backdrop .swal2-container.swal2-top-left {
  top: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-top-end,
body.swal2-no-backdrop .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-start,
body.swal2-no-backdrop .swal2-container.swal2-center-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-center-end,
body.swal2-no-backdrop .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-start,
body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
  bottom: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-container.swal2-bottom-end,
body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
  right: 0;
  bottom: 0;
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}

body.swal2-toast-shown .swal2-container {
  background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

body.swal2-toast-column .swal2-toast {
  flex-direction: column;
  align-items: stretch;
}

body.swal2-toast-column .swal2-toast .swal2-actions {
  flex: 1;
  align-self: stretch;
  height: 2.2em;
  margin-top: 0.3125em;
}

body.swal2-toast-column .swal2-toast .swal2-loading {
  justify-content: center;
}

body.swal2-toast-column .swal2-toast .swal2-input {
  height: 2em;
  margin: 0.3125em auto;
  font-size: 1em;
}

body.swal2-toast-column .swal2-toast .swal2-validation-message {
  font-size: 1em;
}

/*------------------------------------
  Default Styles
------------------------------------*/

html {
  font-size: 14px;
}

body {
  font-weight: 400;
  font-size: 1rem;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #464c5e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
  background-color: #fff;
}

a {
  color: #CAD105;
  outline: none;
}

a:focus,
a:hover {
  color: var(--primary-color);
}

.nav-link {
  color: #464c5e;
}

.nav-link:focus,
.nav-link:hover {
  color: #464c5e;
}

figure {
  margin-bottom: 0;
}

/*------------------------------------
  Headings
------------------------------------*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.h7 {
  font-size: 0.75rem;
}

/*------------------------------------
  Displays
------------------------------------*/

.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
}

/*------------------------------------
  Highlight Color
------------------------------------*/

::-moz-selection {
  color: #fff;
  background-color: #CAD105;
}

::selection {
  color: #fff;
  background-color: #CAD105;
}

.g-bg-primary ::-moz-selection {
  color: #CAD105;
  background-color: #fff;
}

.g-bg-primary ::selection {
  color: #CAD105;
  background-color: #fff;
}

/*------------------------------------
  Components
------------------------------------*/

/*------------------------------------
  Alerts
------------------------------------*/

/* Alert Close Button */

.u-alert-close--light {
  font-weight: 300;
  color: #000;
  opacity: 0.7;
  text-shadow: none;
  transition: color 0.3s;
  font-size: 18px;
  cursor: pointer;
}

.u-alert-close--light:hover {
  opacity: 1;
}

.u-alert-close--light:focus,
.u-alert-close--light:active:focus {
  outline: 0 none;
  box-shadow: none;
}

/* Alert Lists */

.u-alert-list {
  margin-left: -20px;
}

/* Alert Lists with Font Awesome Icons */

.alert__icon {
  margin-left: 20px;
}

.alert__icon-list {
  font-size: 12px;
  line-height: 1.5;
}

/*------------------------------------
  Arrows
------------------------------------*/

.u-arrow-v1::before {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  vertical-align: top;
  transform: translateX(-50%) translateY(-50%);
}

.u-arrow-v1[class*=abs]::before {
  position: absolute;
}

.u-arrow-custom-v1 .u-arrow-icon {
  display: block;
}

.u-arrow-custom-v1 .u-arrow-text {
  position: absolute;
  top: 50%;
  transition: transform 0.3s;
}

.u-arrow-custom-v1.js-prev .u-arrow-text {
  transform: translateY(-50%) translateX(-100%);
}

.u-arrow-custom-v1.js-next .u-arrow-text {
  transform: translateY(-50%) translateX(100%);
}

.u-arrow-custom-v1:hover .u-arrow-text {
  transform: translateY(-50%) translateX(0);
}

.u-arrow-custom-v2 {
  overflow: hidden;
  transition: background-color 0.3s;
}

.u-arrow-custom-v2 .u-arrow-icon {
  transition: transform 0.3s;
}

.u-arrow-custom-v2 .u-arrow-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.u-arrow-custom-v2.js-prev .u-arrow-icon {
  transform: translateY(-50%) translateX(10px);
}

.u-arrow-custom-v2.js-prev .u-arrow-img {
  transform: translateX(100%);
}

.u-arrow-custom-v2.js-next .u-arrow-icon {
  transform: translateY(-50%) translateX(-10px);
}

.u-arrow-custom-v2.js-next .u-arrow-img {
  transform: translateX(-100%);
}

.u-arrow-custom-v2:hover .u-arrow-icon {
  transform: translateY(-50%) translateX(0);
}

.u-arrow-custom-v2:hover .u-arrow-img {
  opacity: 0.6;
  transform: translateX(0);
}

.u-arrow-custom-v3 .u-arrow-helper {
  content: "";
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  transform: scale(0.9);
}

.u-arrow-custom-v3 .u-arrow-icon {
  display: block;
}

.u-arrow-custom-v3 .u-arrow-icon-before,
.u-arrow-custom-v3 .u-arrow-icon-after {
  position: absolute;
  left: 25%;
  transition: transform 0.3s, background-color 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-arrow-custom-v3 .u-arrow-icon-before {
  transform: translateX(-50%) rotate(30deg);
  transform-origin: 0 100%;
}

.u-arrow-custom-v3 .u-arrow-icon-after {
  top: 50%;
  transform: translateX(-50%) rotate(-30deg);
  transform-origin: 0 0;
}

.u-arrow-custom-v3.js-next .u-arrow-icon {
  transform: rotate(180deg);
}

.u-arrow-custom-v3:hover .u-arrow-helper {
  background-color: #fff;
  opacity: 1;
  transform: scale(1);
}

.u-arrow-custom-v3:hover .u-arrow-icon-before,
.u-arrow-custom-v3:hover .u-arrow-icon-after {
  background-color: #CAD105;
}

.u-arrow-custom-v3:hover .u-arrow-icon-before {
  transform: translateX(-50%) rotate(45deg);
}

.u-arrow-custom-v3:hover .u-arrow-icon-after {
  transform: translateX(-50%) rotate(-45deg);
}

.u-arrow-custom-v4 {
  width: 62px;
  height: 62px;
  transition: width 0.3s, background-color 0.3s;
}

.u-arrow-custom-v4 h4 {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.u-arrow-custom-v4.js-prev h4 {
  transform: translateX(100%);
}

.u-arrow-custom-v4.js-next h4 {
  transform: translateX(-100%);
}

.u-arrow-custom-v4:hover {
  width: 200px;
}

.u-arrow-custom-v4:hover .u-arrow-icon {
  color: #CAD105;
}

.u-arrow-custom-v4:hover h4 {
  opacity: 1;
  transition-delay: 0.1s;
  transform: translateX(0);
}

.u-arrow-custom-v5 .u-arrow-icon::before {
  transition: transform 0.3s 0.3s;
}

.u-arrow-custom-v5 .u-arrow-text {
  transition: transform 0.3s 0.3s;
  perspective: 1000px;
}

.u-arrow-custom-v5 .u-arrow-title {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 30%;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-origin: 50% 0;
  transform: rotateX(-90deg);
  margin: 0;
}

.u-arrow-custom-v5 .u-arrow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-arrow-custom-v5.js-prev .u-arrow-text {
  transform: translateX(-100%);
}

.u-arrow-custom-v5.js-next .u-arrow-text {
  transform: translateX(100%);
}

.u-arrow-custom-v5:hover .u-arrow-text {
  transform: translateX(0);
}

.u-arrow-custom-v5:hover .u-arrow-title {
  transition-delay: 0.6s;
  transform: rotateX(0deg);
}

.u-arrow-custom-v5:hover .u-arrow-icon::before {
  transition-delay: 0s;
}

.u-arrow-custom-v5:hover.js-prev .u-arrow-icon::before {
  transform: translateX(-100%);
}

.u-arrow-custom-v5:hover.js-next .u-arrow-icon::before {
  transform: translateX(100%);
}

.u-arrow-custom-v6 {
  overflow: hidden;
  width: 40px;
  transition: width 0.4s, background-color 0.4s, z-index 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.u-arrow-custom-v6 .u-arrow-text {
  width: 400px;
}

.u-arrow-custom-v6:hover {
  width: 400px;
  z-index: 11;
}

.u-arrow-custom-v7 {
  perspective: 1000px;
}

.u-arrow-custom-v7 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.u-arrow-custom-v7 .u-arrow-img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.3s;
}

.u-arrow-custom-v7.js-prev {
  perspective-origin: 100% 50%;
}

.u-arrow-custom-v7.js-prev .u-arrow-img {
  transform-origin: 0 50%;
  transform: rotateY(90deg);
}

.u-arrow-custom-v7.js-next {
  perspective-origin: 0 50%;
}

.u-arrow-custom-v7.js-next .u-arrow-img {
  transform-origin: 100% 50%;
  transform: rotateY(-90deg);
}

.u-arrow-custom-v7:hover .u-arrow-icon {
  color: #CAD105;
}

.u-arrow-custom-v7:hover .u-arrow-img {
  transform: rotateY(0deg);
}

.u-arrow-custom-v8 {
  perspective: 1000px;
}

.u-arrow-custom-v8 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.u-arrow-custom-v8 .u-arrow-title,
.u-arrow-custom-v8 .u-arrow-img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-arrow-custom-v8 .u-arrow-title {
  transition: transform 0.3s;
}

.u-arrow-custom-v8 .u-arrow-text {
  transition: transform 0.3s 0.3s;
  transform-style: preserve-3d;
}

.u-arrow-custom-v8.js-prev {
  perspective-origin: 100% 50%;
}

.u-arrow-custom-v8.js-prev .u-arrow-text,
.u-arrow-custom-v8.js-prev .u-arrow-title {
  transform-origin: 0 50%;
  transform: rotateY(90deg);
}

.u-arrow-custom-v8.js-next {
  perspective-origin: 0 50%;
}

.u-arrow-custom-v8.js-next .u-arrow-text,
.u-arrow-custom-v8.js-next .u-arrow-title {
  transform-origin: 100% 50%;
  transform: rotateY(-90deg);
}

.u-arrow-custom-v8:hover .u-arrow-icon {
  color: #CAD105;
  transition-delay: 0s;
}

.u-arrow-custom-v8:hover .u-arrow-icon::before {
  transition-delay: 0s;
}

.u-arrow-custom-v8:hover .u-arrow-text,
.u-arrow-custom-v8:hover .u-arrow-title {
  transform: rotateY(0deg);
}

.u-arrow-custom-v8:hover .u-arrow-text {
  transition-delay: 0s;
}

.u-arrow-custom-v8:hover .u-arrow-title {
  transition-delay: 0.3s;
}

.u-arrow-custom-v9 {
  width: 60px;
}

.u-arrow-custom-v9 .u-arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: width 0.3s 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-arrow-custom-v9 .u-arrow-text::after {
  content: attr(data-title);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  margin: 20px 5px 0;
}

.u-arrow-custom-v9 .u-arrow-img {
  opacity: 0;
  box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform: scale(0.3);
}

.u-arrow-custom-v9.js-prev .u-arrow-icon::after {
  left: calc(100% - 25px);
}

.u-arrow-custom-v9.js-next .u-arrow-icon::after {
  right: calc(100% - 25px);
}

.u-arrow-custom-v9.js-next .u-arrow-text::after {
  text-align: right;
}

.u-arrow-custom-v9:hover {
  width: 200px;
}

.u-arrow-custom-v9:hover .u-arrow-icon::after {
  width: 200px;
  transition-delay: 0s;
}

.u-arrow-custom-v9:hover .u-arrow-text {
  pointer-events: auto;
}

.u-arrow-custom-v9:hover .u-arrow-text::after {
  opacity: 1;
  transition-delay: 0.2s;
  transform: translateY(0);
}

.u-arrow-custom-v9:hover .u-arrow-img {
  opacity: 1;
  transform: scale(1);
}

.u-arrow-custom-v9:hover .u-arrow-img:first-child {
  transition-delay: 0.3s;
}

.u-arrow-custom-v9:hover .u-arrow-img:nth-child(2) {
  transition-delay: 0.35s;
}

.u-arrow-custom-v9:hover .u-arrow-img:nth-child(3) {
  transition-delay: 0.4s;
}

.u-arrow-custom-v10 .u-arrow-text {
  opacity: 0;
  overflow: hidden;
  transform: scale(0.7);
  transition: transform 0.3s, opacity 0.3s, background-color 0.1s 0s;
}

.u-arrow-custom-v10 .u-arrow-img {
  transition: transform 0.3s;
}

.u-arrow-custom-v10.js-prev .u-arrow-img {
  transform: translateX(-100%);
}

.u-arrow-custom-v10.js-next .u-arrow-img {
  transform: translateX(100%);
}

.u-arrow-custom-v10:hover .u-arrow-text {
  opacity: 1;
  background-color: transparent;
  transform: scale(1);
  transition: transform 0.3s, opacity 0.3s, background-color 0.1s 0.2s;
}

.u-arrow-custom-v10:hover .u-arrow-img {
  transform: translateX(0);
}

.u-arrow-custom-v11 .u-arrow-icon {
  border-width: 0;
  transition: border-width 0.3s 0.15s;
}

.u-arrow-custom-v11 .u-arrow-text {
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.u-arrow-custom-v11.js-prev .u-arrow-text {
  transform: translateY(-50%) translateX(-100%) scale(0.75);
}

.u-arrow-custom-v11.js-next .u-arrow-text {
  transform: translateY(-50%) translateX(100%) scale(0.75);
}

.u-arrow-custom-v11:hover .u-arrow-icon {
  border-top-width: 40px;
  border-bottom-width: 40px;
  transition-delay: 0s;
}

.u-arrow-custom-v11:hover .u-arrow-text {
  opacity: 1;
  transition-delay: 0.3s;
  transform: translateY(-50%) translateX(0) scale(1);
}

.u-arrow-custom-v12 .u-arrow-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.u-arrow-custom-v12 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.u-arrow-custom-v12 .u-arrow-text {
  overflow: hidden;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: scale(0.6);
}

.u-arrow-custom-v12 .u-arrow-img {
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
}

.u-arrow-custom-v12:hover .u-arrow-img {
  opacity: 0.8;
}

.u-arrow-custom-v12.js-prev .u-arrow-img {
  transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2);
}

.u-arrow-custom-v12.js-prev:hover .u-arrow-text {
  transform: scale(1) rotate(-45deg);
}

.u-arrow-custom-v12.js-prev:hover .u-arrow-img {
  transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1);
}

.u-arrow-custom-v12.js-next .u-arrow-img {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2);
}

.u-arrow-custom-v12.js-next:hover .u-arrow-text {
  transform: scale(1) rotate(45deg);
}

.u-arrow-custom-v12.js-next:hover .u-arrow-img {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1);
}

.u-arrow-custom-v13 .u-arrow-icon {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-arrow-custom-v13 .u-arrow-icon::before {
  position: relative;
  z-index: 2;
}

.u-arrow-custom-v13 .u-arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.3s 0.3s;
}

.u-arrow-custom-v13 .u-arrow-text {
  transition: transform 0.3s;
}

.u-arrow-custom-v13.js-prev .u-arrow-icon::after {
  transform: translateX(-100%);
}

.u-arrow-custom-v13.js-prev .u-arrow-text {
  transform: translateX(-100%);
}

.u-arrow-custom-v13.js-next .u-arrow-icon::after {
  transform: translateX(100%);
}

.u-arrow-custom-v13.js-next .u-arrow-text {
  transform: translateX(100%);
}

.u-arrow-custom-v13:hover .u-arrow-icon::after {
  transform: translateX(0);
  transition-delay: 0s;
}

.u-arrow-custom-v13:hover .u-arrow-text {
  transition-delay: 0.3s;
  transform: translateX(0);
}

.u-arrow-custom-v14::before,
.u-arrow-custom-v14::after,
.u-arrow-custom-v14 .u-arrow-icon::before,
.u-arrow-custom-v14 .u-arrow-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 50%;
  background: #CAD105;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-arrow-custom-v14::before,
.u-arrow-custom-v14 .u-arrow-icon::before {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
  transform-origin: 50% 0;
}

.u-arrow-custom-v14::after,
.u-arrow-custom-v14 .u-arrow-icon::after {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transform-origin: 0 0;
}

.u-arrow-custom-v14 .u-arrow-icon::before,
.u-arrow-custom-v14 .u-arrow-icon::after {
  z-index: 2;
  height: 0;
  background: #fff;
  transition: height 0.3s, transform 0.3s;
}

.u-arrow-custom-v14 .u-arrow-title {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  margin: 0;
}

.u-arrow-custom-v14.js-prev .u-arrow-title {
  left: 100%;
  transform: translateY(-50%) translateX(-50%);
}

.u-arrow-custom-v14.js-next::before,
.u-arrow-custom-v14.js-next .u-arrow-icon::before {
  transform: translateX(-50%) rotate(135deg);
  transform-origin: 50% 0;
}

.u-arrow-custom-v14.js-next::after,
.u-arrow-custom-v14.js-next .u-arrow-icon::after {
  transform: translateX(-50%) rotate(45deg);
  transform-origin: 100% 0;
}

.u-arrow-custom-v14.js-next .u-arrow-title {
  right: 100%;
  text-align: right;
  transform: translateY(-50%) translateX(50%);
}

.u-arrow-custom-v14:hover::before,
.u-arrow-custom-v14:hover .u-arrow-icon::before {
  transform: translateX(-50%) rotate(-125deg);
}

.u-arrow-custom-v14:hover::after,
.u-arrow-custom-v14:hover .u-arrow-icon::after {
  transform: translateX(-50%) rotate(-55deg);
}

.u-arrow-custom-v14:hover .u-arrow-icon::before,
.u-arrow-custom-v14:hover .u-arrow-icon::after {
  height: 50%;
}

.u-arrow-custom-v14:hover .u-arrow-title {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.u-arrow-custom-v14:hover.js-next::before,
.u-arrow-custom-v14:hover.js-next .u-arrow-icon::before {
  transform: translateX(-50%) rotate(125deg);
}

.u-arrow-custom-v14:hover.js-next::after,
.u-arrow-custom-v14:hover.js-next .u-arrow-icon::after {
  transform: translateX(-50%) rotate(55deg);
}

/*------------------------------------
  Badges
------------------------------------*/

[class*=u-badge] {
  position: absolute;
  display: inline-block;
  text-align: center;
  font-size: 0.9285714286rem;
  color: #464c5e;
  z-index: 3;
}

[class*=u-badge]:not([class*="--top-left"], [class*="--bottom-left"], [class*="--bottom-right"]) {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.u-badge--top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.u-badge--bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.u-badge--bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

/*------------------------------------
  Badges v1
------------------------------------*/

[class*=u-badge-v1] {
  background-color: #ddd;
  box-sizing: content-box;
}

.u-badge-v1 {
  min-width: 1.2857142857rem;
  min-height: 1.2857142857rem;
  line-height: 1.2857142857rem;
  padding: 0.2142857143rem;
}

.u-badge-v1.g-brd-around {
  line-height: 1.1428571429rem;
}

.u-badge-v1--xs {
  min-width: 1rem;
  min-height: 1rem;
  line-height: 1rem;
  font-size: 0.7142857143rem;
  padding: 0.1428571429rem;
}

.u-badge-v1--xs.g-brd-around {
  line-height: 0.8571428571rem;
}

.u-badge-v1--sm {
  min-width: 1.1428571429rem;
  min-height: 1.1428571429rem;
  line-height: 1.1428571429rem;
  font-size: 0.7857142857rem;
  padding: 0.1428571429rem;
}

.u-badge-v1--sm.g-brd-around {
  line-height: 1rem;
}

.u-badge-v1--md {
  min-width: 1.2857142857rem;
  min-height: 1.2857142857rem;
  line-height: 1.2857142857rem;
  font-size: 0.9285714286rem;
  padding: 0.2142857143rem;
}

.u-badge-v1--md.g-brd-around {
  line-height: 1.1428571429rem;
}

.u-badge-v1--lg {
  min-width: 1.4285714286rem;
  min-height: 1.4285714286rem;
  line-height: 1.4285714286rem;
  font-size: 1.0714285714rem;
  padding: 0.2142857143rem;
}

.u-badge-v1--lg.g-brd-around {
  line-height: 1.2857142857rem;
}

.u-badge-v1--xl {
  min-width: 1.8571428571rem;
  min-height: 1.8571428571rem;
  line-height: 1.8571428571rem;
  font-size: 1.2142857143rem;
  padding: 0.2142857143rem;
}

.u-badge-v1--xl.g-brd-around {
  line-height: 1.7142857143rem;
}

/*------------------------------------
  Badges v2
------------------------------------*/

[class*=u-badge-v2] {
  background-color: #CAD105;
  border-radius: 50%;
}

.u-badge-v2 {
  width: 14px;
  height: 14px;
}

.u-badge-v2--xs {
  width: 8px;
  height: 8px;
}

.u-badge-v2--sm {
  width: 12px;
  height: 12px;
}

.u-badge-v2--md {
  width: 14px;
  height: 14px;
}

.u-badge-v2--lg {
  width: 16px;
  height: 16px;
}

.u-badge-v2--xl {
  width: 18px;
  height: 18px;
}

/*------------------------------------
  Badges v3
------------------------------------*/

[class*=u-badge-v3] {
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 1px #464c5e, 0 -1px 1px #464c5e, 1px 0 1px #464c5e, -1px 0 1px #464c5e;
}

.u-badge-v3 {
  font-size: 1rem;
}

.u-badge-v3--xs {
  font-size: 0.7142857143rem;
}

.u-badge-v3--sm {
  font-size: 0.8571428571rem;
}

.u-badge-v3--md {
  font-size: 1rem;
}

.u-badge-v3--lg {
  font-size: 1.1428571429rem;
}

.u-badge-v3--xl {
  font-size: 1.1428571429rem;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Solid Divider */

.u-divider-solid {
  border-top-style: solid;
}

/* Dotted Divider */

.u-divider-dotted {
  border-top-style: dotted;
}

/* Dashed Divider */

.u-divider-dashed {
  border-top-style: dashed;
}

/* Double Solid Divider */

.u-divider-db-solid {
  height: 5px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

/* Double Dashed Divider */

.u-divider-db-dashed {
  height: 5px;
  border-top: 1px dashed transparent;
  border-bottom: 1px dashed transparent;
}

/* Double Dotted Divider */

.u-divider-db-dotted {
  height: 5px;
  border-top: 1px dotted transparent;
  border-bottom: 1px dotted transparent;
}

/* Linear Gradient Divider */

.u-divider-linear-gradient {
  height: 1px;
  border: none;
}

.u-divider-linear-gradient--gray-light-v2 {
  background-image: linear-gradient(to right, transparent, #ccc, transparent);
}

.u-divider-linear-gradient--gray-light-v3 {
  background-image: linear-gradient(to right, transparent, #ddd, transparent);
}

.u-divider {
  position: relative;
  border-top-width: 1px;
}

.u-divider__icon {
  position: absolute;
  top: -1.4285714286rem;
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  font-size: 1.2857142857rem;
  line-height: 2.8571428571rem;
  text-align: center;
  font-style: normal;
}

.u-divider__icon--indented {
  box-shadow: 0 0 0 15px #fff;
}

.u-divider-center {
  text-align: center;
}

.u-divider-right {
  text-align: right;
}

.u-divider-center .u-divider__icon {
  left: auto;
  right: auto;
  margin-left: -1.4285714286rem;
}

.u-divider-right .u-divider__icon {
  left: auto;
  right: 0;
}

/*------------------------------------
  Go To v1
------------------------------------*/

[class*=u-go-to] {
  display: none;
}

.u-go-to-v1 {
  width: 3.5714285714rem;
  height: 3.5714285714rem;
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  color: #464c5e;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-out;
  z-index: 11;
}

.u-go-to-v1 i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-go-to-v1:hover,
.u-go-to-v1:focus:hover {
  text-decoration: none;
  color: #fff;
  background-color: #CAD105;
}

.u-go-to-v1:focus {
  text-decoration: none;
  color: #464c5e;
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px-1) {
  .u-go-to-v1 {
    transform: scale(0.8, 0.8);
  }
}

/*------------------------------------
  Go To v2
------------------------------------*/

[class*=u-go-to] {
  display: none;
}

.u-go-to-v2 {
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 3px;
  transition: 0.3s ease-out;
  z-index: 11;
}

.u-go-to-v2 i {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  display: block;
  text-align: center;
  line-height: 2.8571428571rem;
}

.u-go-to-v2:hover,
.u-go-to-v2:focus:hover {
  text-decoration: none;
  color: #fff;
  background-color: #CAD105;
}

.u-go-to-v2:focus {
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px-1) {
  .u-go-to-v2 {
    transform: scale(0.8, 0.8);
  }
}

/*------------------------------------
  Go To v3
------------------------------------*/

[class*=u-go-to] {
  display: none;
}

.u-go-to-v3 {
  padding: 5px;
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  color: #464c5e;
  border-radius: 50%;
  transition: 0.3s ease-out;
  z-index: 11;
}

.u-go-to-v3 i {
  width: 3.5714285714rem;
  height: 3.5714285714rem;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 1.1428571429rem;
  line-height: 3.2857142857rem;
  border: solid 1px #464c5e;
  transition: 0.3s ease-out;
}

.u-go-to-v3:hover,
.u-go-to-v3:focus:hover {
  text-decoration: none;
  color: #CAD105;
  background-color: white;
}

.u-go-to-v3:hover i,
.u-go-to-v3:focus:hover i {
  border-color: #CAD105;
}

.u-go-to-v3:focus {
  text-decoration: none;
  color: #464c5e;
  background-color: rgba(255, 255, 255, 0.7);
}

.u-go-to-v3:focus i {
  border-color: #464c5e;
}

@media (max-width: 576px-1) {
  .u-go-to-v3 {
    transform: scale(0.8, 0.8);
  }
}

/*------------------------------------
  Go To v4
------------------------------------*/

.u-go-to-v4 {
  position: relative;
  width: 22px;
  height: 35px;
  border: 2px solid #CAD105;
  border-radius: 15px;
}

.u-go-to-v4::before {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  content: " ";
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-name: u-go-to-v4;
          animation-name: u-go-to-v4;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes u-go-to-v4 {
  0% {
    top: 20%;
    bottom: 0;
  }

  50% {
    top: 50%;
    bottom: 0;
  }

  100% {
    top: 20%;
    bottom: 100%;
  }
}

@keyframes u-go-to-v4 {
  0% {
    top: 20%;
    bottom: 0;
  }

  50% {
    top: 50%;
    bottom: 0;
  }

  100% {
    top: 20%;
    bottom: 100%;
  }
}

/*------------------------------------
  Headers
------------------------------------*/

.u-header {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 0.9285714286rem;
  z-index: 501;
}

.u-header [aria-labelledby] {
  opacity: 0;
}

.u-header [aria-labelledby][role=tabpanel] {
  opacity: 1;
}

.u-header [aria-labelledby].u-dropdown--css-animation,
.u-header [aria-labelledby].u-dropdown--jquery-slide {
  opacity: 1;
}

.u-header--abs-top,
.u-header--abs-bottom,
.u-header--abs-top-2nd-screen {
  position: absolute;
}

.u-header--abs-top-2nd-screen {
  top: 100%;
  bottom: auto;
}

.u-header--abs-top {
  top: 0;
  bottom: auto;
}

.u-header--abs-bottom {
  top: auto;
  bottom: 0;
}

.u-header--abs-bottom .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.u-header--sticky-top,
.u-header--sticky-bottom {
  position: fixed;
}

.u-header--sticky-top {
  bottom: auto;
  top: 0;
}

.u-header--sticky-top.u-negative-top {
  bottom: 100%;
  top: auto;
}

.u-header--sticky-bottom {
  top: auto;
  bottom: 0;
}

.u-header--sticky-bottom .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.u-header--invisible {
  display: none;
}

.u-header--moved-up {
  transform: translate3d(0, -100%, 0);
}

.u-header--moved-up.u-negative-top {
  transform: translate3d(0, 100%, 0);
}

.u-header--faded {
  opacity: 0;
  visibility: hidden;
}

.u-header--untransitioned {
  transition: none !important;
}

.u-header__section--hidden {
  position: relative;
}

.u-header--floating {
  position: absolute;
  left: 0;
  right: 0;
}

.u-header--floating.js-header-fix-moment {
  margin-top: 0 !important;
}

.u-header--floating.js-header-fix-moment .navbar {
  padding-left: 0;
  padding-right: 0;
}

.u-header[data-header-fix-effect] {
  transition: 0.3s ease;
}

.u-header-reduced--shift.js-header-change-moment {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-header.js-header-fix-moment {
  position: fixed;
  top: 0;
  bottom: auto;
}

.u-header__section {
  position: relative;
  z-index: 1;
}

.u-header__section:nth-child(1) {
  z-index: 5;
}

.u-header__section:nth-child(2) {
  z-index: 4;
}

.u-header__section:nth-child(3) {
  z-index: 3;
}

.u-header__section:nth-child(4) {
  z-index: 2;
}

.u-header__section:nth-child(5) {
  z-index: 1;
}

.u-header__sections-container {
  position: relative;
  z-index: 2;
}

.u-header__logo {
  position: relative;
  z-index: 1;
}

.u-header__logo-img {
  top: 0;
  left: 0;
  /*transition: .3s ease;*/
}

.u-header__logo-img:not(.u-header__logo-img--main) {
  position: absolute;
  opacity: 0;
}

.dropdown-menu.u-dropdown--reverse-position {
  left: auto;
  right: 0;
}

.js-header-change-moment.g-bg-white--shift {
  background-color: #fff;
}

.js-header-change-moment.g-bg-light-semi-transparent--shift {
  background-color: rgba(255, 255, 255, 0.9);
}

.js-header-change-moment.g-bg-black--shift {
  background-color: #000;
}

.js-header-change-moment.g-bg-dark-semi-transparent--shift {
  background-color: rgba(0, 0, 0, 0.9);
}

.js-header-change-moment.g-bg-primary--shift {
  background-color: #CAD105;
}

.js-header-change-moment.g-bg-primary-semi-transparent--shift {
  background-color: rgba(202, 209, 5, 0.9);
}

.u-header__section--light .navbar-brand,
.u-header__section--light .navbar-toggler,
.u-header__section--light--shift.js-header-change-moment .navbar-brand,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler {
  color: #464c5e;
}

.u-header__section--light .navbar-brand:focus,
.u-header__section--light .navbar-brand:hover,
.u-header__section--light .navbar-toggler:focus,
.u-header__section--light .navbar-toggler:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler:hover {
  color: #464c5e;
}

.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link {
  color: #464c5e;
}

.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover {
  color: #464c5e;
}

.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled {
  color: rgba(70, 76, 94, 0.5);
}

.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--light .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active {
  color: #cad105;
}

.u-header__section--light .navbar-toggler,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler {
  border-color: rgba(70, 76, 94, 0.3);
}

.u-header__section--light .navbar-toggler-icon,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-main, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.u-header__section--light .navbar-text,
.u-header__section--light--shift.js-header-change-moment .navbar-text {
  color: rgba(70, 76, 94, 0.7);
}

.u-header__section--dark .navbar-brand,
.u-header__section--dark .navbar-toggler,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler,
.u-header__section--primary .navbar-brand,
.u-header__section--primary .navbar-toggler,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler {
  color: #fff;
}

.u-header__section--dark .navbar-brand:focus,
.u-header__section--dark .navbar-brand:hover,
.u-header__section--dark .navbar-toggler:focus,
.u-header__section--dark .navbar-toggler:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:hover,
.u-header__section--primary .navbar-brand:focus,
.u-header__section--primary .navbar-brand:hover,
.u-header__section--primary .navbar-toggler:focus,
.u-header__section--primary .navbar-toggler:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:hover {
  color: #fff;
}

.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link:hover {
  color: #fff;
}

.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.disabled {
  color: rgba(255, 255, 255, 0.5);
}

.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--dark .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--primary .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active {
  color: #fff;
}

.u-header__section--dark .navbar-toggler,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler,
.u-header__section--primary .navbar-toggler,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.u-header__section--dark .navbar-toggler-icon,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler-icon,
.u-header__section--primary .navbar-toggler-icon,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-white, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.u-header__section--dark .navbar-text,
.u-header__section--dark--shift.js-header-change-moment .navbar-text,
.u-header__section--primary .navbar-text,
.u-header__section--primary--shift.js-header-change-moment .navbar-text {
  color: rgba(255, 255, 255, 0.7);
}

.navbar > .container {
  position: relative;
}

@media all and (min-width: 576px) {
  .u-header--abs-top--sm,
  .u-header--abs-bottom--sm,
  .u-header--abs-top-2nd-screen--sm {
    position: absolute;
  }

  .u-header--abs-top-2nd-screen--sm {
    top: 100%;
  }

  .u-header--abs-top--sm {
    bottom: auto;
    top: 0;
  }

  .u-header--abs-bottom--sm {
    top: auto;
    bottom: 0;
  }

  .u-header--sticky-top--sm,
  .u-header--sticky-bottom--sm {
    position: fixed;
  }

  .u-header--sticky-top--sm {
    bottom: auto;
    top: 0;
  }

  .u-header--sticky-bottom--sm {
    top: auto;
    bottom: 0;
  }

  .u-header--floating--sm {
    position: absolute;
    left: 0;
    right: 0;
  }

  .u-header--floating--sm.js-header-fix-moment {
    margin-top: 0 !important;
  }

  .u-header--floating--sm.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

@media all and (min-width: 768px) {
  .u-header--abs-top--md,
  .u-header--abs-bottom--md,
  .u-header--abs-top-2nd-screen--md {
    position: absolute;
  }

  .u-header--abs-top-2nd-screen--md {
    top: 100%;
  }

  .u-header--abs-top--md {
    bottom: auto;
    top: 0;
  }

  .u-header--abs-bottom--md {
    top: auto;
    bottom: 0;
  }

  .u-header--sticky-top--md,
  .u-header--sticky-bottom--md {
    position: fixed;
  }

  .u-header--sticky-top--md {
    bottom: auto;
    top: 0;
  }

  .u-header--sticky-bottom--md {
    top: auto;
    bottom: 0;
  }

  .u-header--floating--md {
    position: absolute;
    left: 0;
    right: 0;
  }

  .u-header--floating--md.js-header-fix-moment {
    margin-top: 0 !important;
  }

  .u-header--floating--md.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

@media all and (min-width: 992px) {
  .u-header--abs-top--lg,
  .u-header--abs-bottom--lg,
  .u-header--abs-top-2nd-screen--lg {
    position: absolute;
  }

  .u-header--abs-top-2nd-screen--lg {
    top: 100%;
  }

  .u-header--abs-top--lg {
    bottom: auto;
    top: 0;
  }

  .u-header--abs-bottom--lg {
    top: auto;
    bottom: 0;
  }

  .u-header--sticky-top--lg,
  .u-header--sticky-bottom--lg {
    position: fixed;
  }

  .u-header--sticky-top--lg {
    bottom: auto;
    top: 0;
  }

  .u-header--sticky-bottom--lg {
    top: auto;
    bottom: 0;
  }

  .u-header--floating--lg {
    position: absolute;
    left: 0;
    right: 0;
  }

  .u-header--floating--lg.js-header-fix-moment {
    margin-top: 0 !important;
  }

  .u-header--floating--lg.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

@media all and (min-width: 1200px) {
  .u-header--abs-top--xl,
  .u-header--abs-bottom--xl,
  .u-header--abs-top-2nd-screen--xl {
    position: absolute;
  }

  .u-header--abs-top-2nd-screen--xl {
    top: 100%;
  }

  .u-header--abs-top--xl {
    bottom: auto;
    top: 0;
  }

  .u-header--abs-bottom--xl {
    top: auto;
    bottom: 0;
  }

  .u-header--sticky-top--xl,
  .u-header--sticky-bottom--xl {
    position: fixed;
  }

  .u-header--sticky-top--xl {
    bottom: auto;
    top: 0;
  }

  .u-header--sticky-bottom--xl {
    top: auto;
    bottom: 0;
  }

  .u-header--floating--xl {
    position: absolute;
    left: 0;
    right: 0;
  }

  .u-header--floating--xl.js-header-fix-moment {
    margin-top: 0 !important;
  }

  .u-header--floating--xl.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0;
  }
}

@media all and (max-width: 1200px-1) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-collapse {
    width: 100%;
    order: 10;
  }
}

@media all and (max-width: 992px-1) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-collapse {
    width: 100%;
    order: 10;
  }
}

@media all and (max-width: 768px-1) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-collapse {
    width: 100%;
    order: 10;
  }
}

@media all and (max-width: 576px-1) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-collapse {
    width: 100%;
    order: 10;
  }
}

/*------------------------------------
	Header Togglers
------------------------------------*/

.u-header-toggler {
  display: block;
  width: 5rem;
  height: 3.5714285714rem;
  z-index: 502;
  /* Hamburgers */
}

.u-header-toggler .hamburger {
  line-height: 1;
}

/* Toggler Positioning */

@media all and (min-width: 0) {
  .u-header-toggler--top-right,
  .u-header-toggler--top-right.btn,
  .u-header-toggler--top-left,
  .u-header-toggler--top-left.btn,
  .u-header-toggler--bottom-right,
  .u-header-toggler--bottom-right.btn,
  .u-header-toggler--bottom-left,
  .u-header-toggler--bottom-left.btn {
    position: fixed;
  }

  .u-header-toggler--top-right,
  .u-header-toggler--top-right.btn,
  .u-header-toggler--top-left,
  .u-header-toggler--top-left.btn {
    top: 1.4285714286rem;
  }

  .u-header-toggler--bottom-right,
  .u-header-toggler--bottom-right.btn,
  .u-header-toggler--bottom-left,
  .u-header-toggler--bottom-left.btn {
    bottom: 1.4285714286rem;
  }

  .u-header-toggler--top-left,
  .u-header-toggler--bottom-left {
    left: 1.4285714286rem;
  }

  .u-header-toggler--top-right,
  .u-header-toggler--bottom-right {
    right: 1.4285714286rem;
  }
}

/* Toggler Positioning (sm) */

@media all and (min-width: 576px) {
  .u-header-toggler--top-right--sm,
  .u-header-toggler--top-right--sm.btn,
  .u-header-toggler--top-left--sm,
  .u-header-toggler--top-left--sm.btn,
  .u-header-toggler--bottom-right--sm,
  .u-header-toggler--bottom-right--sm.btn,
  .u-header-toggler--bottom-left--sm,
  .u-header-toggler--bottom-left--sm.btn {
    position: fixed;
  }

  .u-header-toggler--top-right--sm,
  .u-header-toggler--top-right--sm.btn,
  .u-header-toggler--top-left--sm,
  .u-header-toggler--top-left--sm.btn {
    top: 1.4285714286rem;
  }

  .u-header-toggler--bottom-right--sm,
  .u-header-toggler--bottom-right--sm.btn,
  .u-header-toggler--bottom-left--sm,
  .u-header-toggler--bottom-left--sm.btn {
    bottom: 1.4285714286rem;
  }

  .u-header-toggler--top-left--sm,
  .u-header-toggler--bottom-left--sm {
    left: 1.4285714286rem;
  }

  .u-header-toggler--top-right--sm,
  .u-header-toggler--bottom-right--sm {
    right: 1.4285714286rem;
  }
}

/* Toggler Positioning (md) */

@media all and (min-width: 768px) {
  .u-header-toggler--top-right--md,
  .u-header-toggler--top-right--md.btn,
  .u-header-toggler--top-left--md,
  .u-header-toggler--top-left--md.btn,
  .u-header-toggler--bottom-right--md,
  .u-header-toggler--bottom-right--md.btn,
  .u-header-toggler--bottom-left--md,
  .u-header-toggler--bottom-left--md.btn {
    position: fixed;
  }

  .u-header-toggler--top-right--md,
  .u-header-toggler--top-right--md.btn,
  .u-header-toggler--top-left--md,
  .u-header-toggler--top-left--md.btn {
    top: 1.4285714286rem;
  }

  .u-header-toggler--bottom-right--md,
  .u-header-toggler--bottom-right--md.btn,
  .u-header-toggler--bottom-left--md,
  .u-header-toggler--bottom-left--md.btn {
    bottom: 1.4285714286rem;
  }

  .u-header-toggler--top-left--md,
  .u-header-toggler--bottom-left--md {
    left: 1.4285714286rem;
  }

  .u-header-toggler--top-right--md,
  .u-header-toggler--bottom-right--md {
    right: 1.4285714286rem;
  }
}

/* Toggler Positioning (lg) */

@media all and (min-width: 992px) {
  .u-header-toggler--top-right--lg,
  .u-header-toggler--top-right--lg.btn,
  .u-header-toggler--top-left--lg,
  .u-header-toggler--top-left--lg.btn,
  .u-header-toggler--bottom-right--lg,
  .u-header-toggler--bottom-right--lg.btn,
  .u-header-toggler--bottom-left--lg,
  .u-header-toggler--bottom-left--lg.btn {
    position: fixed;
  }

  .u-header-toggler--top-right--lg,
  .u-header-toggler--top-right--lg.btn,
  .u-header-toggler--top-left--lg,
  .u-header-toggler--top-left--lg.btn {
    top: 1.4285714286rem;
  }

  .u-header-toggler--bottom-right--lg,
  .u-header-toggler--bottom-right--lg.btn,
  .u-header-toggler--bottom-left--lg,
  .u-header-toggler--bottom-left--lg.btn {
    bottom: 1.4285714286rem;
  }

  .u-header-toggler--top-left--lg,
  .u-header-toggler--bottom-left--lg {
    left: 1.4285714286rem;
  }

  .u-header-toggler--top-right--lg,
  .u-header-toggler--bottom-right--lg {
    right: 1.4285714286rem;
  }
}

/* Toggler Positioning (xl) */

@media all and (min-width: 1200px) {
  .u-header-toggler--top-right--xl,
  .u-header-toggler--top-right--xl.btn,
  .u-header-toggler--top-left--xl,
  .u-header-toggler--top-left--xl.btn,
  .u-header-toggler--bottom-right--xl,
  .u-header-toggler--bottom-right--xl.btn,
  .u-header-toggler--bottom-left--xl,
  .u-header-toggler--bottom-left--xl.btn {
    position: fixed;
  }

  .u-header-toggler--top-right--xl,
  .u-header-toggler--top-right--xl.btn,
  .u-header-toggler--top-left--xl,
  .u-header-toggler--top-left--xl.btn {
    top: 1.4285714286rem;
  }

  .u-header-toggler--bottom-right--xl,
  .u-header-toggler--bottom-right--xl.btn,
  .u-header-toggler--bottom-left--xl,
  .u-header-toggler--bottom-left--xl.btn {
    bottom: 1.4285714286rem;
  }

  .u-header-toggler--top-left--xl,
  .u-header-toggler--bottom-left--xl {
    left: 1.4285714286rem;
  }

  .u-header-toggler--top-right--xl,
  .u-header-toggler--bottom-right--xl {
    right: 1.4285714286rem;
  }
}

/*------------------------------------
  Fullscreen Header
------------------------------------*/

[class*=u-header--fullscreen] {
  text-align: center;
  visibility: hidden;
}

[class*=u-header--fullscreen] .u-header__sections-container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

[class*=u-header--fullscreen] .mCustomScrollBox {
  width: 100%;
  height: auto;
}

[class*=u-header--fullscreen] .u-header__section {
  width: 100%;
}

[class*=u-header--fullscreen] .navbar-nav[class*=u-main-nav-v] > li > a {
  display: inline-block;
}

[class*=u-header--fullscreen] .u-header__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.u-header.u-header--fullscreen--top-left,
.u-header.u-header--fullscreen--top-right,
.u-header.u-header--fullscreen--bottom-left,
.u-header.u-header--fullscreen--bottom-right {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-header.u-header--fullscreen--top-left .u-header__overlay,
.u-header.u-header--fullscreen--top-right .u-header__overlay,
.u-header.u-header--fullscreen--bottom-left .u-header__overlay,
.u-header.u-header--fullscreen--bottom-right .u-header__overlay {
  display: block;
}

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed,
.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed,
.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed,
.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed {
  visibility: visible;
}

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container {
  opacity: 1;
  visibility: visible;
}

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container,
.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container {
  transition-delay: 0.5s;
}

.u-header.u-header--fullscreen--top-left .container,
.u-header.u-header--fullscreen--top-right .container,
.u-header.u-header--fullscreen--bottom-left .container,
.u-header.u-header--fullscreen--bottom-right .container {
  width: 100%;
}

.u-header.u-header--fullscreen--top-left .navbar,
.u-header.u-header--fullscreen--top-right .navbar,
.u-header.u-header--fullscreen--bottom-left .navbar,
.u-header.u-header--fullscreen--bottom-right .navbar {
  min-width: 22.8571428571rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.u-header.u-header--fullscreen--top-left .dropdown-menu,
.u-header.u-header--fullscreen--top-right .dropdown-menu,
.u-header.u-header--fullscreen--bottom-left .dropdown-menu,
.u-header.u-header--fullscreen--bottom-right .dropdown-menu {
  text-align: inherit;
  position: static;
  width: 100%;
}

.u-header.u-header--fullscreen--top-left .u-header__overlay {
  transform-origin: 0% 0%;
  transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, -20%, 0);
}

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay {
  transform: scale3d(1, 1, 1) translate3d(-20%, -20%, 0);
}

.u-header.u-header--fullscreen--top-right .u-header__overlay {
  left: auto;
  transform-origin: 100% 0%;
  transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, -20%, 0);
}

.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay {
  transform: scale3d(1, 1, 1) translate3d(20%, -20%, 0);
}

.u-header.u-header--fullscreen--bottom-left .u-header__overlay {
  top: auto;
  transform-origin: 0% 100%;
  transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, 20%, 0);
}

.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay {
  transform: scale3d(1, 1, 1) translate3d(-20%, 20%, 0);
}

.u-header.u-header--fullscreen--bottom-right .u-header__overlay {
  top: auto;
  left: auto;
  transform-origin: 100% 100%;
  transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, 20%, 0);
}

.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay {
  transform: scale3d(1, 1, 1) translate3d(20%, 20%, 0);
}

/*------------------------------------
  Side Header
------------------------------------*/

/* Common styles of Side Header */

body[class*=u-body--header-side] .u-header.u-header--side {
  position: fixed;
  top: 0;
  height: 100%;
  width: 21.4285714286rem;
}

body[class*=u-body--header-side] .u-header.u-header--side .navbar {
  flex-direction: column;
}

body[class*=u-body--header-side] .u-header.u-header--side .navbar .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  flex-direction: column;
}

body[class*=u-body--header-side] .u-header.u-header--side .navbar .navbar-collapse {
  flex-direction: column;
}

body[class*=u-body--header-side] .u-header.u-header--side .navbar .navbar-nav {
  width: 100%;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body[class*=u-body--header-side] .u-header.u-header--side .u-header__sections-container {
  height: 100%;
}

body[class*=u-body--header-side] .u-header.u-header--side .dropdown-menu {
  top: 0;
}

body[class*=u-body--header-side] .u-header.u-header--side .mCSB_container,
body[class*=u-body--header-side] .u-header.u-header--side .mCustomScrollBox {
  overflow: visible;
}

/* Overlay */

.u-header--side .u-header__overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2000%;
  opacity: 0;
  visibility: hidden;
}

body[class*=u-body--header-side].u-body--header-side-opened .u-header__overlay {
  opacity: 1;
  visibility: visible;
}

.u-body--header-side-static-left .u-header--side .dropdown-menu,
.u-body--header-side-overlay-left .u-header--side .dropdown-menu,
.u-body--header-side-push-left .u-header--side .dropdown-menu {
  left: 100%;
  margin-left: 1.0714285714rem;
}

.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu {
  margin-left: 1.0714285714rem;
}

.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu {
  margin-left: 0;
}

.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu {
  margin-left: 0;
  margin-right: 1.0714285714rem;
}

.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu {
  margin-left: 0;
  margin-right: 0;
}

.u-body--header-side-static-left {
  margin-left: 21.4285714286rem;
}

.u-body--header-side-static-left .u-header--side {
  right: auto;
  left: 0;
}

.u-body--header-side-static-right {
  margin-right: 21.4285714286rem;
}

.u-body--header-side-static-right .u-header--side {
  left: auto;
  right: 0;
}

.u-body--header-side-overlay-left .u-header--side,
.u-body--header-side-push-left .u-header--side {
  right: auto;
  left: -21.4285714286rem;
}

.u-body--header-side-overlay-left .u-header--side .u-header__overlay,
.u-body--header-side-push-left .u-header--side .u-header__overlay {
  left: 100%;
}

.u-body--header-side-overlay-left.u-body--header-side-opened .u-header--side,
.u-body--header-side-push-left.u-body--header-side-opened .u-header--side {
  left: 0;
}

.u-body--header-side-push-left.u-body--header-side-opened {
  margin-left: 21.4285714286rem;
}

.u-body--header-side-overlay-right .u-header--side,
.u-body--header-side-push-right .u-header--side {
  left: auto;
  right: -21.4285714286rem;
}

.u-body--header-side-overlay-right .u-header--side .u-header__overlay,
.u-body--header-side-push-right .u-header--side .u-header__overlay {
  right: 100%;
}

.u-body--header-side-overlay-right.u-body--header-side-opened .u-header--side,
.u-body--header-side-push-right.u-body--header-side-opened .u-header--side {
  right: 0;
}

.u-body--header-side-push-right.u-body--header-side-opened {
  margin-right: 21.4285714286rem;
}

.u-body--header-side-static-right .u-header--side .dropdown-menu,
.u-body--header-side-overlay-right .u-header--side .dropdown-menu,
.u-body--header-side-push-right .u-header--side .dropdown-menu {
  left: auto;
  right: 100%;
  margin-right: 1.0714285714rem;
}

.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu {
  left: auto;
  right: 100%;
  margin-right: 1.0714285714rem;
}

.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu {
  margin-right: 0;
}

.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu {
  margin-right: 0;
  margin-left: 1.0714285714rem;
}

.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu {
  margin-left: 0;
  margin-right: 0;
}

/* Button Styles
------------------------------------*/

/* General Button Styles */

.btn {
  position: relative;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: 0 none;
  box-shadow: none;
}

/* Button Content
------------------------------------*/

.u-btn-content {
  white-space: normal;
}

/* Buttons Only Icon (O)
------------------------------------*/

.u-btn-only-icon {
  position: relative;
}

.u-btn-only-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* Button Sizes
------------------------------------*/

/* Extra Small */

.btn-xs {
  line-height: 1.4;
  padding: 0.1428571429rem 0.5rem;
  font-size: 0.7857142857rem;
}

/* Medium */

.btn-md {
  line-height: 1.4;
  padding: 0.5714285714rem 1.4285714286rem;
  font-size: 1.0714285714rem;
}

/* Extra Large */

.btn-xl {
  line-height: 1.4;
  padding: 0.9285714286rem 1.8571428571rem;
  font-size: 1.2857142857rem;
}

/* Extramly Large */

.btn-xxl {
  line-height: 1.4;
  padding: 1.0714285714rem 2.1428571429rem;
  font-size: 1.5rem;
}

/* Button Types
------------------------------------*/

/* Inset Buttons */

.u-btn-inset {
  position: relative;
}

.u-btn-inset::before {
  position: absolute;
  top: 0.1428571429rem;
  right: 0.1428571429rem;
  bottom: 0.1428571429rem;
  left: 0.1428571429rem;
  content: "";
  border: solid 1px #fff;
  border-radius: 1px;
}

.u-btn-inset--rounded::before {
  border-radius: 50px;
}

/* 3d Buttons */

.u-btn-3d {
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
}

.u-btn-3d:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3);
}

/* Skew Button */

.u-btn-skew {
  transform: skewX(-20deg);
}

.u-btn-skew__inner {
  transform: skewX(20deg);
  display: block;
}

/* Button Hovers
------------------------------------*/

[class*=u-btn-hover] {
  z-index: 1;
}

[class*=u-btn-hover]:hover {
  text-decoration: none;
}

[class*=u-btn-hover]:focus {
  text-decoration: none;
}

[class*=u-btn-hover]::after {
  position: absolute;
  content: "";
  z-index: -1;
  transition: all 0.3s;
}

/* Hover v1-1 */

.u-btn-hover-v1-1::after {
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
}

.u-btn-hover-v1-1:hover::after {
  height: 100%;
}

/* Hover v1-2 */

.u-btn-hover-v1-2::after {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}

.u-btn-hover-v1-2:hover::after {
  width: 100%;
}

/* Hover v1-3 */

.u-btn-hover-v1-3::after {
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
}

.u-btn-hover-v1-3:hover::after {
  height: 100%;
}

/* Hover v1-4 */

.u-btn-hover-v1-4::after {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

.u-btn-hover-v1-4:hover::after {
  width: 100%;
}

/* Hover v2-1 */

.u-btn-hover-v2-1::after {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}

.u-btn-hover-v2-1:hover::after {
  left: 0;
  width: 100%;
}

/* Hover v2-2 */

.u-btn-hover-v2-2::after {
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
}

.u-btn-hover-v2-2:hover::after {
  top: 0;
  height: 100%;
}

/* Button Primary */

.u-btn-primary {
  color: #fff;
  background-color: #CAD105;
}

.u-btn-primary:hover,
.u-btn-primary.active {
  border-color: #CAD105;
  background-color: #CAD105;
}

.u-btn-primary:hover,
.u-btn-primary:focus,
.u-btn-primary.active {
  color: #fff;
}

.u-btn-primary.g-btn-hover-reset:hover,
.u-btn-primary.g-btn-hover-reset.active {
  background-color: #CAD105;
  border-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-1::after,
.u-btn-primary.u-btn-hover-v1-1:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v1-1:hover {
  background-color: #CAD105;
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-2::after,
.u-btn-primary.u-btn-hover-v1-2:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v1-2:hover {
  background-color: #CAD105;
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-3::after,
.u-btn-primary.u-btn-hover-v1-3:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v1-3:hover {
  background-color: #CAD105;
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v1-4::after,
.u-btn-primary.u-btn-hover-v1-4:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v1-4:hover {
  background-color: #CAD105;
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v2-1::after,
.u-btn-primary.u-btn-hover-v2-1:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v2-1:hover {
  background-color: #CAD105;
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-primary.u-btn-hover-v2-2::after,
.u-btn-primary.u-btn-hover-v2-2:hover::after {
  background-color: #CAD105;
}

.u-btn-primary.u-btn-hover-v2-2:hover {
  background-color: #CAD105;
  overflow: hidden;
}

/* Button White */

.u-btn-white {
  color: #555;
  background-color: #fff;
}

.u-btn-white:hover,
.u-btn-white.active {
  border-color: #fff;
  background-color: #fff;
}

.u-btn-white:hover,
.u-btn-white:focus,
.u-btn-white.active {
  color: #555;
}

.u-btn-white.g-btn-hover-reset:hover,
.u-btn-white.g-btn-hover-reset.active {
  background-color: #fff;
  border-color: #fff;
}

.u-btn-white.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-1::after,
.u-btn-white.u-btn-hover-v1-1:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v1-1:hover {
  background-color: #fff;
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-2::after,
.u-btn-white.u-btn-hover-v1-2:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v1-2:hover {
  background-color: #fff;
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-3::after,
.u-btn-white.u-btn-hover-v1-3:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v1-3:hover {
  background-color: #fff;
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v1-4::after,
.u-btn-white.u-btn-hover-v1-4:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v1-4:hover {
  background-color: #fff;
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v2-1::after,
.u-btn-white.u-btn-hover-v2-1:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-white.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-white.u-btn-hover-v2-2::after,
.u-btn-white.u-btn-hover-v2-2:hover::after {
  background-color: #fff;
}

.u-btn-white.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Button Black */

.u-btn-black {
  color: #fff;
  background-color: #000;
}

.u-btn-black:hover,
.u-btn-black.active {
  border-color: #000;
  background-color: #000;
}

.u-btn-black:hover,
.u-btn-black:focus,
.u-btn-black.active {
  color: #fff;
}

.u-btn-black.g-btn-hover-reset:hover,
.u-btn-black.g-btn-hover-reset.active {
  background-color: #000;
  border-color: #000;
}

.u-btn-black.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-1::after,
.u-btn-black.u-btn-hover-v1-1:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v1-1:hover {
  background-color: #000;
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-2::after,
.u-btn-black.u-btn-hover-v1-2:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v1-2:hover {
  background-color: #000;
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-3::after,
.u-btn-black.u-btn-hover-v1-3:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v1-3:hover {
  background-color: #000;
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v1-4::after,
.u-btn-black.u-btn-hover-v1-4:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v1-4:hover {
  background-color: #000;
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v2-1::after,
.u-btn-black.u-btn-hover-v2-1:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-black.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-black.u-btn-hover-v2-2::after,
.u-btn-black.u-btn-hover-v2-2:hover::after {
  background-color: #000;
}

.u-btn-black.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Button Dark Gray */

.u-btn-darkgray {
  color: #fff;
  background-color: #333;
}

.u-btn-darkgray:hover,
.u-btn-darkgray.active {
  border-color: #333;
  background-color: #333;
}

.u-btn-darkgray:hover,
.u-btn-darkgray:focus,
.u-btn-darkgray.active {
  color: #fff;
}

.u-btn-darkgray.g-btn-hover-reset:hover,
.u-btn-darkgray.g-btn-hover-reset.active {
  background-color: #333;
  border-color: #333;
}

.u-btn-darkgray.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-1::after,
.u-btn-darkgray.u-btn-hover-v1-1:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v1-1:hover {
  background-color: #333;
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-2::after,
.u-btn-darkgray.u-btn-hover-v1-2:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v1-2:hover {
  background-color: #333;
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-3::after,
.u-btn-darkgray.u-btn-hover-v1-3:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v1-3:hover {
  background-color: #333;
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v1-4::after,
.u-btn-darkgray.u-btn-hover-v1-4:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v1-4:hover {
  background-color: #333;
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v2-1::after,
.u-btn-darkgray.u-btn-hover-v2-1:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v2-1:hover {
  background-color: #333;
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-darkgray.u-btn-hover-v2-2::after,
.u-btn-darkgray.u-btn-hover-v2-2:hover::after {
  background-color: #333;
}

.u-btn-darkgray.u-btn-hover-v2-2:hover {
  background-color: #333;
  overflow: hidden;
}

/* Button Red */

.u-btn-red {
  color: #fff;
  background-color: #f00;
}

.u-btn-red:hover,
.u-btn-red.active {
  border-color: #f00;
  background-color: #f00;
}

.u-btn-red:hover,
.u-btn-red:focus,
.u-btn-red.active {
  color: #fff;
}

.u-btn-red.g-btn-hover-reset:hover,
.u-btn-red.g-btn-hover-reset.active {
  background-color: #f00;
  border-color: #f00;
}

.u-btn-red.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-1::after,
.u-btn-red.u-btn-hover-v1-1:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v1-1:hover {
  background-color: #f00;
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-2::after,
.u-btn-red.u-btn-hover-v1-2:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v1-2:hover {
  background-color: #f00;
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-3::after,
.u-btn-red.u-btn-hover-v1-3:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v1-3:hover {
  background-color: #f00;
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v1-4::after,
.u-btn-red.u-btn-hover-v1-4:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v1-4:hover {
  background-color: #f00;
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v2-1::after,
.u-btn-red.u-btn-hover-v2-1:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v2-1:hover {
  background-color: #f00;
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-red.u-btn-hover-v2-2::after,
.u-btn-red.u-btn-hover-v2-2:hover::after {
  background-color: #f00;
}

.u-btn-red.u-btn-hover-v2-2:hover {
  background-color: #f00;
  overflow: hidden;
}

/* Button Red Tomato */

.u-btn-lightred {
  color: #fff;
  background-color: #e64b3b;
}

.u-btn-lightred:hover,
.u-btn-lightred.active {
  border-color: #e64b3b;
  background-color: #e64b3b;
}

.u-btn-lightred:hover,
.u-btn-lightred:focus,
.u-btn-lightred.active {
  color: #fff;
}

.u-btn-lightred.g-btn-hover-reset:hover,
.u-btn-lightred.g-btn-hover-reset.active {
  background-color: #e64b3b;
  border-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-1::after,
.u-btn-lightred.u-btn-hover-v1-1:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v1-1:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-2::after,
.u-btn-lightred.u-btn-hover-v1-2:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v1-2:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-3::after,
.u-btn-lightred.u-btn-hover-v1-3:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v1-3:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v1-4::after,
.u-btn-lightred.u-btn-hover-v1-4:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v1-4:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v2-1::after,
.u-btn-lightred.u-btn-hover-v2-1:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v2-1:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-lightred.u-btn-hover-v2-2::after,
.u-btn-lightred.u-btn-hover-v2-2:hover::after {
  background-color: #e64b3b;
}

.u-btn-lightred.u-btn-hover-v2-2:hover {
  background-color: #e64b3b;
  overflow: hidden;
}

/* Button Dark Red */

.u-btn-darkred {
  color: #fff;
  background-color: #a10f2b;
}

.u-btn-darkred:hover,
.u-btn-darkred.active {
  border-color: #a10f2b;
  background-color: #a10f2b;
}

.u-btn-darkred:hover,
.u-btn-darkred:focus,
.u-btn-darkred.active {
  color: #fff;
}

.u-btn-darkred.g-btn-hover-reset:hover,
.u-btn-darkred.g-btn-hover-reset.active {
  background-color: #a10f2b;
  border-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-1::after,
.u-btn-darkred.u-btn-hover-v1-1:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v1-1:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-2::after,
.u-btn-darkred.u-btn-hover-v1-2:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v1-2:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-3::after,
.u-btn-darkred.u-btn-hover-v1-3:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v1-3:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v1-4::after,
.u-btn-darkred.u-btn-hover-v1-4:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v1-4:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v2-1::after,
.u-btn-darkred.u-btn-hover-v2-1:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v2-1:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-darkred.u-btn-hover-v2-2::after,
.u-btn-darkred.u-btn-hover-v2-2:hover::after {
  background-color: #a10f2b;
}

.u-btn-darkred.u-btn-hover-v2-2:hover {
  background-color: #a10f2b;
  overflow: hidden;
}

/* Button Blue */

.u-btn-blue {
  color: #fff;
  background-color: #355c76;
}

.u-btn-blue:hover,
.u-btn-blue.active {
  border-color: #355c76;
  background-color: #355c76;
}

.u-btn-blue:hover,
.u-btn-blue:focus,
.u-btn-blue.active {
  color: #fff;
}

.u-btn-blue.g-btn-hover-reset:hover,
.u-btn-blue.g-btn-hover-reset.active {
  background-color: #355c76;
  border-color: #355c76;
}

.u-btn-blue.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-1::after,
.u-btn-blue.u-btn-hover-v1-1:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v1-1:hover {
  background-color: #355c76;
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-2::after,
.u-btn-blue.u-btn-hover-v1-2:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v1-2:hover {
  background-color: #355c76;
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-3::after,
.u-btn-blue.u-btn-hover-v1-3:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v1-3:hover {
  background-color: #355c76;
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v1-4::after,
.u-btn-blue.u-btn-hover-v1-4:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v1-4:hover {
  background-color: #355c76;
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v2-1::after,
.u-btn-blue.u-btn-hover-v2-1:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v2-1:hover {
  background-color: #355c76;
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-blue.u-btn-hover-v2-2::after,
.u-btn-blue.u-btn-hover-v2-2:hover::after {
  background-color: #355c76;
}

.u-btn-blue.u-btn-hover-v2-2:hover {
  background-color: #355c76;
  overflow: hidden;
}

/* Button Indigo */

.u-btn-indigo {
  color: #fff;
  background-color: #8b0048;
}

.u-btn-indigo:hover,
.u-btn-indigo.active {
  border-color: #8b0048;
  background-color: #8b0048;
}

.u-btn-indigo:hover,
.u-btn-indigo:focus,
.u-btn-indigo.active {
  color: #fff;
}

.u-btn-indigo.g-btn-hover-reset:hover,
.u-btn-indigo.g-btn-hover-reset.active {
  background-color: #8b0048;
  border-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-1::after,
.u-btn-indigo.u-btn-hover-v1-1:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v1-1:hover {
  background-color: #8b0048;
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-2::after,
.u-btn-indigo.u-btn-hover-v1-2:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v1-2:hover {
  background-color: #8b0048;
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-3::after,
.u-btn-indigo.u-btn-hover-v1-3:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v1-3:hover {
  background-color: #8b0048;
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v1-4::after,
.u-btn-indigo.u-btn-hover-v1-4:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v1-4:hover {
  background-color: #8b0048;
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v2-1::after,
.u-btn-indigo.u-btn-hover-v2-1:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v2-1:hover {
  background-color: #8b0048;
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-indigo.u-btn-hover-v2-2::after,
.u-btn-indigo.u-btn-hover-v2-2:hover::after {
  background-color: #8b0048;
}

.u-btn-indigo.u-btn-hover-v2-2:hover {
  background-color: #8b0048;
  overflow: hidden;
}

/* Button Purple */

.u-btn-purple {
  color: #fff;
  background-color: #9a69cb;
}

.u-btn-purple:hover,
.u-btn-purple.active {
  border-color: #9a69cb;
  background-color: #9a69cb;
}

.u-btn-purple:hover,
.u-btn-purple:focus,
.u-btn-purple.active {
  color: #fff;
}

.u-btn-purple.g-btn-hover-reset:hover,
.u-btn-purple.g-btn-hover-reset.active {
  background-color: #9a69cb;
  border-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-1::after,
.u-btn-purple.u-btn-hover-v1-1:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v1-1:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-2::after,
.u-btn-purple.u-btn-hover-v1-2:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v1-2:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-3::after,
.u-btn-purple.u-btn-hover-v1-3:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v1-3:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v1-4::after,
.u-btn-purple.u-btn-hover-v1-4:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v1-4:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v2-1::after,
.u-btn-purple.u-btn-hover-v2-1:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v2-1:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-purple.u-btn-hover-v2-2::after,
.u-btn-purple.u-btn-hover-v2-2:hover::after {
  background-color: #9a69cb;
}

.u-btn-purple.u-btn-hover-v2-2:hover {
  background-color: #9a69cb;
  overflow: hidden;
}

/* Button Dark Purple */

.u-btn-darkpurple {
  color: #fff;
  background-color: #6639b6;
}

.u-btn-darkpurple:hover,
.u-btn-darkpurple.active {
  border-color: #6639b6;
  background-color: #6639b6;
}

.u-btn-darkpurple:hover,
.u-btn-darkpurple:focus,
.u-btn-darkpurple.active {
  color: #fff;
}

.u-btn-darkpurple.g-btn-hover-reset:hover,
.u-btn-darkpurple.g-btn-hover-reset.active {
  background-color: #6639b6;
  border-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-1::after,
.u-btn-darkpurple.u-btn-hover-v1-1:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v1-1:hover {
  background-color: #6639b6;
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-2::after,
.u-btn-darkpurple.u-btn-hover-v1-2:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v1-2:hover {
  background-color: #6639b6;
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-3::after,
.u-btn-darkpurple.u-btn-hover-v1-3:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v1-3:hover {
  background-color: #6639b6;
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v1-4::after,
.u-btn-darkpurple.u-btn-hover-v1-4:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v1-4:hover {
  background-color: #6639b6;
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v2-1::after,
.u-btn-darkpurple.u-btn-hover-v2-1:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v2-1:hover {
  background-color: #6639b6;
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-darkpurple.u-btn-hover-v2-2::after,
.u-btn-darkpurple.u-btn-hover-v2-2:hover::after {
  background-color: #6639b6;
}

.u-btn-darkpurple.u-btn-hover-v2-2:hover {
  background-color: #6639b6;
  overflow: hidden;
}

/* Button Pink */

.u-btn-pink {
  color: #fff;
  background-color: #e81c62;
}

.u-btn-pink:hover,
.u-btn-pink.active {
  border-color: #e81c62;
  background-color: #e81c62;
}

.u-btn-pink:hover,
.u-btn-pink:focus,
.u-btn-pink.active {
  color: #fff;
}

.u-btn-pink.g-btn-hover-reset:hover,
.u-btn-pink.g-btn-hover-reset.active {
  background-color: #e81c62;
  border-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-1::after,
.u-btn-pink.u-btn-hover-v1-1:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v1-1:hover {
  background-color: #e81c62;
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-2::after,
.u-btn-pink.u-btn-hover-v1-2:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v1-2:hover {
  background-color: #e81c62;
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-3::after,
.u-btn-pink.u-btn-hover-v1-3:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v1-3:hover {
  background-color: #e81c62;
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v1-4::after,
.u-btn-pink.u-btn-hover-v1-4:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v1-4:hover {
  background-color: #e81c62;
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v2-1::after,
.u-btn-pink.u-btn-hover-v2-1:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v2-1:hover {
  background-color: #e81c62;
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-pink.u-btn-hover-v2-2::after,
.u-btn-pink.u-btn-hover-v2-2:hover::after {
  background-color: #e81c62;
}

.u-btn-pink.u-btn-hover-v2-2:hover {
  background-color: #e81c62;
  overflow: hidden;
}

/* Button Orange */

.u-btn-orange {
  color: #fff;
  background-color: #e57d20;
}

.u-btn-orange:hover,
.u-btn-orange.active {
  border-color: #e57d20;
  background-color: #e57d20;
}

.u-btn-orange:hover,
.u-btn-orange:focus,
.u-btn-orange.active {
  color: #fff;
}

.u-btn-orange.g-btn-hover-reset:hover,
.u-btn-orange.g-btn-hover-reset.active {
  background-color: #e57d20;
  border-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-1::after,
.u-btn-orange.u-btn-hover-v1-1:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v1-1:hover {
  background-color: #e57d20;
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-2::after,
.u-btn-orange.u-btn-hover-v1-2:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v1-2:hover {
  background-color: #e57d20;
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-3::after,
.u-btn-orange.u-btn-hover-v1-3:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v1-3:hover {
  background-color: #e57d20;
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v1-4::after,
.u-btn-orange.u-btn-hover-v1-4:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v1-4:hover {
  background-color: #e57d20;
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v2-1::after,
.u-btn-orange.u-btn-hover-v2-1:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v2-1:hover {
  background-color: #e57d20;
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-orange.u-btn-hover-v2-2::after,
.u-btn-orange.u-btn-hover-v2-2:hover::after {
  background-color: #e57d20;
}

.u-btn-orange.u-btn-hover-v2-2:hover {
  background-color: #e57d20;
  overflow: hidden;
}

/* Button Deep Orange */

.u-btn-deeporange {
  color: #fff;
  background-color: #fe541e;
}

.u-btn-deeporange:hover,
.u-btn-deeporange.active {
  border-color: #fe541e;
  background-color: #fe541e;
}

.u-btn-deeporange:hover,
.u-btn-deeporange:focus,
.u-btn-deeporange.active {
  color: #fff;
}

.u-btn-deeporange.g-btn-hover-reset:hover,
.u-btn-deeporange.g-btn-hover-reset.active {
  background-color: #fe541e;
  border-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-1::after,
.u-btn-deeporange.u-btn-hover-v1-1:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v1-1:hover {
  background-color: #fe541e;
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-2::after,
.u-btn-deeporange.u-btn-hover-v1-2:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v1-2:hover {
  background-color: #fe541e;
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-3::after,
.u-btn-deeporange.u-btn-hover-v1-3:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v1-3:hover {
  background-color: #fe541e;
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v1-4::after,
.u-btn-deeporange.u-btn-hover-v1-4:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v1-4:hover {
  background-color: #fe541e;
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v2-1::after,
.u-btn-deeporange.u-btn-hover-v2-1:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v2-1:hover {
  background-color: #fe541e;
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-deeporange.u-btn-hover-v2-2::after,
.u-btn-deeporange.u-btn-hover-v2-2:hover::after {
  background-color: #fe541e;
}

.u-btn-deeporange.u-btn-hover-v2-2:hover {
  background-color: #fe541e;
  overflow: hidden;
}

/* Button Yellow */

.u-btn-yellow {
  color: #fff;
  background-color: #ebc71d;
}

.u-btn-yellow:hover,
.u-btn-yellow.active {
  border-color: #ebc71d;
  background-color: #ebc71d;
}

.u-btn-yellow:hover,
.u-btn-yellow:focus,
.u-btn-yellow.active {
  color: #fff;
}

.u-btn-yellow.g-btn-hover-reset:hover,
.u-btn-yellow.g-btn-hover-reset.active {
  background-color: #ebc71d;
  border-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-1::after,
.u-btn-yellow.u-btn-hover-v1-1:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v1-1:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-2::after,
.u-btn-yellow.u-btn-hover-v1-2:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v1-2:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-3::after,
.u-btn-yellow.u-btn-hover-v1-3:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v1-3:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v1-4::after,
.u-btn-yellow.u-btn-hover-v1-4:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v1-4:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v2-1::after,
.u-btn-yellow.u-btn-hover-v2-1:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v2-1:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-yellow.u-btn-hover-v2-2::after,
.u-btn-yellow.u-btn-hover-v2-2:hover::after {
  background-color: #ebc71d;
}

.u-btn-yellow.u-btn-hover-v2-2:hover {
  background-color: #ebc71d;
  overflow: hidden;
}

/* Button Aqua */

.u-btn-aqua {
  color: #fff;
  background-color: #29d6e6;
}

.u-btn-aqua:hover,
.u-btn-aqua.active {
  border-color: #29d6e6;
  background-color: #29d6e6;
}

.u-btn-aqua:hover,
.u-btn-aqua:focus,
.u-btn-aqua.active {
  color: #fff;
}

.u-btn-aqua.g-btn-hover-reset:hover,
.u-btn-aqua.g-btn-hover-reset.active {
  background-color: #29d6e6;
  border-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-1::after,
.u-btn-aqua.u-btn-hover-v1-1:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v1-1:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-2::after,
.u-btn-aqua.u-btn-hover-v1-2:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v1-2:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-3::after,
.u-btn-aqua.u-btn-hover-v1-3:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v1-3:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v1-4::after,
.u-btn-aqua.u-btn-hover-v1-4:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v1-4:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v2-1::after,
.u-btn-aqua.u-btn-hover-v2-1:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v2-1:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-aqua.u-btn-hover-v2-2::after,
.u-btn-aqua.u-btn-hover-v2-2:hover::after {
  background-color: #29d6e6;
}

.u-btn-aqua.u-btn-hover-v2-2:hover {
  background-color: #29d6e6;
  overflow: hidden;
}

/* Button Cyan */

.u-btn-cyan {
  color: #fff;
  background-color: #00bed6;
}

.u-btn-cyan:hover,
.u-btn-cyan.active {
  border-color: #00bed6;
  background-color: #00bed6;
}

.u-btn-cyan:hover,
.u-btn-cyan:focus,
.u-btn-cyan.active {
  color: #fff;
}

.u-btn-cyan.g-btn-hover-reset:hover,
.u-btn-cyan.g-btn-hover-reset.active {
  background-color: #00bed6;
  border-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-1::after,
.u-btn-cyan.u-btn-hover-v1-1:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v1-1:hover {
  background-color: #00bed6;
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-2::after,
.u-btn-cyan.u-btn-hover-v1-2:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v1-2:hover {
  background-color: #00bed6;
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-3::after,
.u-btn-cyan.u-btn-hover-v1-3:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v1-3:hover {
  background-color: #00bed6;
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v1-4::after,
.u-btn-cyan.u-btn-hover-v1-4:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v1-4:hover {
  background-color: #00bed6;
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v2-1::after,
.u-btn-cyan.u-btn-hover-v2-1:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v2-1:hover {
  background-color: #00bed6;
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-cyan.u-btn-hover-v2-2::after,
.u-btn-cyan.u-btn-hover-v2-2:hover::after {
  background-color: #00bed6;
}

.u-btn-cyan.u-btn-hover-v2-2:hover {
  background-color: #00bed6;
  overflow: hidden;
}

/* Button Teal */

.u-btn-teal {
  color: #fff;
  background-color: #18ba9b;
}

.u-btn-teal:hover,
.u-btn-teal.active {
  border-color: #18ba9b;
  background-color: #18ba9b;
}

.u-btn-teal:hover,
.u-btn-teal:focus,
.u-btn-teal.active {
  color: #fff;
}

.u-btn-teal.g-btn-hover-reset:hover,
.u-btn-teal.g-btn-hover-reset.active {
  background-color: #18ba9b;
  border-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-1::after,
.u-btn-teal.u-btn-hover-v1-1:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v1-1:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-2::after,
.u-btn-teal.u-btn-hover-v1-2:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v1-2:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-3::after,
.u-btn-teal.u-btn-hover-v1-3:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v1-3:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v1-4::after,
.u-btn-teal.u-btn-hover-v1-4:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v1-4:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v2-1::after,
.u-btn-teal.u-btn-hover-v2-1:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v2-1:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-teal.u-btn-hover-v2-2::after,
.u-btn-teal.u-btn-hover-v2-2:hover::after {
  background-color: #18ba9b;
}

.u-btn-teal.u-btn-hover-v2-2:hover {
  background-color: #18ba9b;
  overflow: hidden;
}

/* Button Brown */

.u-btn-brown {
  color: #fff;
  background-color: #9c8061;
}

.u-btn-brown:hover,
.u-btn-brown.active {
  border-color: #9c8061;
  background-color: #9c8061;
}

.u-btn-brown:hover,
.u-btn-brown:focus,
.u-btn-brown.active {
  color: #fff;
}

.u-btn-brown.g-btn-hover-reset:hover,
.u-btn-brown.g-btn-hover-reset.active {
  background-color: #9c8061;
  border-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-1::after,
.u-btn-brown.u-btn-hover-v1-1:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v1-1:hover {
  background-color: #9c8061;
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-2::after,
.u-btn-brown.u-btn-hover-v1-2:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v1-2:hover {
  background-color: #9c8061;
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-3::after,
.u-btn-brown.u-btn-hover-v1-3:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v1-3:hover {
  background-color: #9c8061;
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v1-4::after,
.u-btn-brown.u-btn-hover-v1-4:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v1-4:hover {
  background-color: #9c8061;
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v2-1::after,
.u-btn-brown.u-btn-hover-v2-1:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v2-1:hover {
  background-color: #9c8061;
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-brown.u-btn-hover-v2-2::after,
.u-btn-brown.u-btn-hover-v2-2:hover::after {
  background-color: #9c8061;
}

.u-btn-brown.u-btn-hover-v2-2:hover {
  background-color: #9c8061;
  overflow: hidden;
}

/* Button Bluegrey */

.u-btn-bluegray {
  color: #fff;
  background-color: #585f69;
}

.u-btn-bluegray:hover,
.u-btn-bluegray.active {
  border-color: #585f69;
  background-color: #585f69;
}

.u-btn-bluegray:hover,
.u-btn-bluegray:focus,
.u-btn-bluegray.active {
  color: #fff;
}

.u-btn-bluegray.g-btn-hover-reset:hover,
.u-btn-bluegray.g-btn-hover-reset.active {
  background-color: #585f69;
  border-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-1::after,
.u-btn-bluegray.u-btn-hover-v1-1:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v1-1:hover {
  background-color: #585f69;
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-2::after,
.u-btn-bluegray.u-btn-hover-v1-2:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v1-2:hover {
  background-color: #585f69;
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-3::after,
.u-btn-bluegray.u-btn-hover-v1-3:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v1-3:hover {
  background-color: #585f69;
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v1-4::after,
.u-btn-bluegray.u-btn-hover-v1-4:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v1-4:hover {
  background-color: #585f69;
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v2-1::after,
.u-btn-bluegray.u-btn-hover-v2-1:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v2-1:hover {
  background-color: #585f69;
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-bluegray.u-btn-hover-v2-2::after,
.u-btn-bluegray.u-btn-hover-v2-2:hover::after {
  background-color: #585f69;
}

.u-btn-bluegray.u-btn-hover-v2-2:hover {
  background-color: #585f69;
  overflow: hidden;
}

/* Button Facebook */

.u-btn-facebook {
  color: #fff;
  background-color: #3b5998;
}

.u-btn-facebook:hover,
.u-btn-facebook.active {
  border-color: #3b5998;
  background-color: #3b5998;
}

.u-btn-facebook:hover,
.u-btn-facebook:focus,
.u-btn-facebook.active {
  color: #fff;
}

.u-btn-facebook.g-btn-hover-reset:hover,
.u-btn-facebook.g-btn-hover-reset.active {
  background-color: #3b5998;
  border-color: #3b5998;
}

/* Button Twitter */

.u-btn-twitter {
  color: #fff;
  background-color: #00acee;
}

.u-btn-twitter:hover,
.u-btn-twitter.active {
  border-color: #00acee;
  background-color: #00acee;
}

.u-btn-twitter:hover,
.u-btn-twitter:focus,
.u-btn-twitter.active {
  color: #fff;
}

.u-btn-twitter.g-btn-hover-reset:hover,
.u-btn-twitter.g-btn-hover-reset.active {
  background-color: #00acee;
  border-color: #00acee;
}

/* Button Instagram */

.u-btn-instagram {
  color: #fff;
  background-color: #3f729b;
}

.u-btn-instagram:hover,
.u-btn-instagram.active {
  border-color: #3f729b;
  background-color: #3f729b;
}

.u-btn-instagram:hover,
.u-btn-instagram:focus,
.u-btn-instagram.active {
  color: #fff;
}

.u-btn-instagram.g-btn-hover-reset:hover,
.u-btn-instagram.g-btn-hover-reset.active {
  background-color: #3f729b;
  border-color: #3f729b;
}

/* Button VK */

.u-btn-vk {
  color: #fff;
  background-color: #2b587a;
}

.u-btn-vk:hover,
.u-btn-vk.active {
  border-color: #2b587a;
  background-color: #2b587a;
}

.u-btn-vk:hover,
.u-btn-vk:focus,
.u-btn-vk.active {
  color: #fff;
}

.u-btn-vk.g-btn-hover-reset:hover,
.u-btn-vk.g-btn-hover-reset.active {
  background-color: #2b587a;
  border-color: #2b587a;
}

/* Button Google Plus */

.u-btn-google-plus {
  color: #fff;
  background-color: #dd4b39;
}

.u-btn-google-plus:hover,
.u-btn-google-plus.active {
  border-color: #dd4b39;
  background-color: #dd4b39;
}

.u-btn-google-plus:hover,
.u-btn-google-plus:focus,
.u-btn-google-plus.active {
  color: #fff;
}

.u-btn-google-plus.g-btn-hover-reset:hover,
.u-btn-google-plus.g-btn-hover-reset.active {
  background-color: #dd4b39;
  border-color: #dd4b39;
}

/* Outline Button Primary */

.u-btn-outline-primary {
  color: #CAD105;
  border-color: #CAD105;
  background-color: transparent;
}

.u-btn-outline-primary:focus,
.u-btn-outline-primary.active {
  color: #fff;
  background-color: #CAD105;
}

.u-btn-outline-primary:hover {
  color: #fff;
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v1-1::after,
.u-btn-outline-primary.u-btn-hover-v1-1:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v1-2::after,
.u-btn-outline-primary.u-btn-hover-v1-2:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v1-3::after,
.u-btn-outline-primary.u-btn-hover-v1-3:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v1-4::after,
.u-btn-outline-primary.u-btn-hover-v1-4:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v2-1::after,
.u-btn-outline-primary.u-btn-hover-v2-1:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v2-2::after,
.u-btn-outline-primary.u-btn-hover-v2-2:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-primary.u-btn-hover-v3-1 {
  overflow: hidden;
}

.u-btn-outline-primary.u-btn-hover-v3-1::after,
.u-btn-outline-primary.u-btn-hover-v3-1:hover::after {
  background-color: #CAD105;
}

.u-btn-outline-primary.u-btn-hover-v3-1:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button White */

.u-btn-outline-white {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}

.u-btn-outline-white:focus,
.u-btn-outline-white.active {
  color: #555;
  background-color: #fff;
}

.u-btn-outline-white:hover {
  color: #555;
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v1-1::after,
.u-btn-outline-white.u-btn-hover-v1-1:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-white.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v1-2::after,
.u-btn-outline-white.u-btn-hover-v1-2:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-white.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v1-3::after,
.u-btn-outline-white.u-btn-hover-v1-3:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-white.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v1-4::after,
.u-btn-outline-white.u-btn-hover-v1-4:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-white.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v2-1::after,
.u-btn-outline-white.u-btn-hover-v2-1:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-white.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-white.u-btn-hover-v2-2::after,
.u-btn-outline-white.u-btn-hover-v2-2:hover::after {
  background-color: #fff;
}

.u-btn-outline-white.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Black */

.u-btn-outline-black {
  color: #000;
  border-color: #000;
  background-color: transparent;
}

.u-btn-outline-black:focus,
.u-btn-outline-black.active {
  color: #fff;
  background-color: #000;
}

.u-btn-outline-black:hover {
  color: #fff;
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v1-1::after,
.u-btn-outline-black.u-btn-hover-v1-1:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-black.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v1-2::after,
.u-btn-outline-black.u-btn-hover-v1-2:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-black.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v1-3::after,
.u-btn-outline-black.u-btn-hover-v1-3:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-black.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v1-4::after,
.u-btn-outline-black.u-btn-hover-v1-4:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-black.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v2-1::after,
.u-btn-outline-black.u-btn-hover-v2-1:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-black.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-black.u-btn-hover-v2-2::after,
.u-btn-outline-black.u-btn-hover-v2-2:hover::after {
  background-color: #000;
}

.u-btn-outline-black.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Dark Gray */

.u-btn-outline-darkgray {
  color: #333;
  border-color: #333;
  background-color: transparent;
}

.u-btn-outline-darkgray:focus,
.u-btn-outline-darkgray.active {
  color: #fff;
  background-color: #333;
}

.u-btn-outline-darkgray:hover {
  color: #fff;
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v1-1::after,
.u-btn-outline-darkgray.u-btn-hover-v1-1:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkgray.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v1-2::after,
.u-btn-outline-darkgray.u-btn-hover-v1-2:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkgray.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v1-3::after,
.u-btn-outline-darkgray.u-btn-hover-v1-3:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkgray.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v1-4::after,
.u-btn-outline-darkgray.u-btn-hover-v1-4:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkgray.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v2-1::after,
.u-btn-outline-darkgray.u-btn-hover-v2-1:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkgray.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-darkgray.u-btn-hover-v2-2::after,
.u-btn-outline-darkgray.u-btn-hover-v2-2:hover::after {
  background-color: #333;
}

.u-btn-outline-darkgray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Light Gray */

.u-btn-outline-lightgray {
  color: #464c5e;
  border-color: #eee;
  background-color: transparent;
}

.u-btn-outline-lightgray:focus,
.u-btn-outline-lightgray.active {
  color: #464c5e;
  background-color: #eee;
}

.u-btn-outline-lightgray:hover {
  color: #464c5e;
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v1-1::after,
.u-btn-outline-lightgray.u-btn-hover-v1-1:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightgray.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v1-2::after,
.u-btn-outline-lightgray.u-btn-hover-v1-2:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightgray.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v1-3::after,
.u-btn-outline-lightgray.u-btn-hover-v1-3:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightgray.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v1-4::after,
.u-btn-outline-lightgray.u-btn-hover-v1-4:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightgray.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v2-1::after,
.u-btn-outline-lightgray.u-btn-hover-v2-1:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightgray.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-lightgray.u-btn-hover-v2-2::after,
.u-btn-outline-lightgray.u-btn-hover-v2-2:hover::after {
  background-color: #eee;
}

.u-btn-outline-lightgray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Button Outline Red */

.u-btn-outline-red {
  color: #f00;
  border-color: #f00;
  background-color: transparent;
}

.u-btn-outline-red:focus,
.u-btn-outline-red.active {
  color: #fff;
  background-color: #f00;
}

.u-btn-outline-red:hover {
  color: #fff;
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v1-1::after,
.u-btn-outline-red.u-btn-hover-v1-1:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-red.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v1-2::after,
.u-btn-outline-red.u-btn-hover-v1-2:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-red.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v1-3::after,
.u-btn-outline-red.u-btn-hover-v1-3:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-red.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v1-4::after,
.u-btn-outline-red.u-btn-hover-v1-4:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-red.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v2-1::after,
.u-btn-outline-red.u-btn-hover-v2-1:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-red.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-red.u-btn-hover-v2-2::after,
.u-btn-outline-red.u-btn-hover-v2-2:hover::after {
  background-color: #f00;
}

.u-btn-outline-red.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Button Outline Red Tomato */

.u-btn-outline-lightred {
  color: #e64b3b;
  border-color: #e64b3b;
  background-color: transparent;
}

.u-btn-outline-lightred:focus,
.u-btn-outline-lightred.active {
  color: #fff;
  background-color: #e64b3b;
}

.u-btn-outline-lightred:hover {
  color: #fff;
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v1-1::after,
.u-btn-outline-lightred.u-btn-hover-v1-1:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightred.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v1-2::after,
.u-btn-outline-lightred.u-btn-hover-v1-2:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightred.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v1-3::after,
.u-btn-outline-lightred.u-btn-hover-v1-3:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightred.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v1-4::after,
.u-btn-outline-lightred.u-btn-hover-v1-4:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightred.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v2-1::after,
.u-btn-outline-lightred.u-btn-hover-v2-1:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-lightred.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-lightred.u-btn-hover-v2-2::after,
.u-btn-outline-lightred.u-btn-hover-v2-2:hover::after {
  background-color: #e64b3b;
}

.u-btn-outline-lightred.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Dark Red */

.u-btn-outline-darkred {
  color: #a10f2b;
  border-color: #a10f2b;
  background-color: transparent;
}

.u-btn-outline-darkred:focus,
.u-btn-outline-darkred.active {
  color: #fff;
  background-color: #a10f2b;
}

.u-btn-outline-darkred:hover {
  color: #fff;
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v1-1::after,
.u-btn-outline-darkred.u-btn-hover-v1-1:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkred.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v1-2::after,
.u-btn-outline-darkred.u-btn-hover-v1-2:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkred.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v1-3::after,
.u-btn-outline-darkred.u-btn-hover-v1-3:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkred.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v1-4::after,
.u-btn-outline-darkred.u-btn-hover-v1-4:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkred.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v2-1::after,
.u-btn-outline-darkred.u-btn-hover-v2-1:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkred.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-darkred.u-btn-hover-v2-2::after,
.u-btn-outline-darkred.u-btn-hover-v2-2:hover::after {
  background-color: #a10f2b;
}

.u-btn-outline-darkred.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Blue */

.u-btn-outline-blue {
  color: #355c76;
  border-color: #355c76;
  background-color: transparent;
}

.u-btn-outline-blue:focus,
.u-btn-outline-blue.active {
  color: #fff;
  background-color: #355c76;
}

.u-btn-outline-blue:hover {
  color: #fff;
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v1-1::after,
.u-btn-outline-blue.u-btn-hover-v1-1:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-blue.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v1-2::after,
.u-btn-outline-blue.u-btn-hover-v1-2:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-blue.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v1-3::after,
.u-btn-outline-blue.u-btn-hover-v1-3:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-blue.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v1-4::after,
.u-btn-outline-blue.u-btn-hover-v1-4:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-blue.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v2-1::after,
.u-btn-outline-blue.u-btn-hover-v2-1:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-blue.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-blue.u-btn-hover-v2-2::after,
.u-btn-outline-blue.u-btn-hover-v2-2:hover::after {
  background-color: #355c76;
}

.u-btn-outline-blue.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Indigo */

.u-btn-outline-indigo {
  color: #8b0048;
  border-color: #8b0048;
  background-color: transparent;
}

.u-btn-outline-indigo:focus,
.u-btn-outline-indigo.active {
  color: #fff;
  background-color: #8b0048;
}

.u-btn-outline-indigo:hover {
  color: #fff;
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v1-1::after,
.u-btn-outline-indigo.u-btn-hover-v1-1:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-indigo.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v1-2::after,
.u-btn-outline-indigo.u-btn-hover-v1-2:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-indigo.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v1-3::after,
.u-btn-outline-indigo.u-btn-hover-v1-3:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-indigo.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v1-4::after,
.u-btn-outline-indigo.u-btn-hover-v1-4:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-indigo.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v2-1::after,
.u-btn-outline-indigo.u-btn-hover-v2-1:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-indigo.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-indigo.u-btn-hover-v2-2::after,
.u-btn-outline-indigo.u-btn-hover-v2-2:hover::after {
  background-color: #8b0048;
}

.u-btn-outline-indigo.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Purple */

.u-btn-outline-purple {
  color: #9a69cb;
  border-color: #9a69cb;
  background-color: transparent;
}

.u-btn-outline-purple:focus,
.u-btn-outline-purple.active {
  color: #fff;
  background-color: #9a69cb;
}

.u-btn-outline-purple:hover {
  color: #fff;
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v1-1::after,
.u-btn-outline-purple.u-btn-hover-v1-1:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-purple.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v1-2::after,
.u-btn-outline-purple.u-btn-hover-v1-2:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-purple.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v1-3::after,
.u-btn-outline-purple.u-btn-hover-v1-3:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-purple.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v1-4::after,
.u-btn-outline-purple.u-btn-hover-v1-4:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-purple.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v2-1::after,
.u-btn-outline-purple.u-btn-hover-v2-1:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-purple.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-purple.u-btn-hover-v2-2::after,
.u-btn-outline-purple.u-btn-hover-v2-2:hover::after {
  background-color: #9a69cb;
}

.u-btn-outline-purple.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Dark Purple */

.u-btn-outline-darkpurple {
  color: #6639b6;
  border-color: #6639b6;
  background-color: transparent;
}

.u-btn-outline-darkpurple:focus,
.u-btn-outline-darkpurple.active {
  color: #fff;
  background-color: #6639b6;
}

.u-btn-outline-darkpurple:hover {
  color: #fff;
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-1::after,
.u-btn-outline-darkpurple.u-btn-hover-v1-1:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-2::after,
.u-btn-outline-darkpurple.u-btn-hover-v1-2:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-3::after,
.u-btn-outline-darkpurple.u-btn-hover-v1-3:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-4::after,
.u-btn-outline-darkpurple.u-btn-hover-v1-4:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-1::after,
.u-btn-outline-darkpurple.u-btn-hover-v2-1:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-2::after,
.u-btn-outline-darkpurple.u-btn-hover-v2-2:hover::after {
  background-color: #6639b6;
}

.u-btn-outline-darkpurple.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Pink */

.u-btn-outline-pink {
  color: #e81c62;
  border-color: #e81c62;
  background-color: transparent;
}

.u-btn-outline-pink:focus,
.u-btn-outline-pink.active {
  color: #fff;
  background-color: #e81c62;
}

.u-btn-outline-pink:hover {
  color: #fff;
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v1-1::after,
.u-btn-outline-pink.u-btn-hover-v1-1:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-pink.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v1-2::after,
.u-btn-outline-pink.u-btn-hover-v1-2:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-pink.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v1-3::after,
.u-btn-outline-pink.u-btn-hover-v1-3:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-pink.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v1-4::after,
.u-btn-outline-pink.u-btn-hover-v1-4:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-pink.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v2-1::after,
.u-btn-outline-pink.u-btn-hover-v2-1:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-pink.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-pink.u-btn-hover-v2-2::after,
.u-btn-outline-pink.u-btn-hover-v2-2:hover::after {
  background-color: #e81c62;
}

.u-btn-outline-pink.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Orange */

.u-btn-outline-orange {
  color: #e57d20;
  border-color: #e57d20;
  background-color: transparent;
}

.u-btn-outline-orange:focus,
.u-btn-outline-orange.active {
  color: #fff;
  background-color: #e57d20;
}

.u-btn-outline-orange:hover {
  color: #fff;
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v1-1::after,
.u-btn-outline-orange.u-btn-hover-v1-1:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-orange.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v1-2::after,
.u-btn-outline-orange.u-btn-hover-v1-2:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-orange.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v1-3::after,
.u-btn-outline-orange.u-btn-hover-v1-3:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-orange.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v1-4::after,
.u-btn-outline-orange.u-btn-hover-v1-4:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-orange.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v2-1::after,
.u-btn-outline-orange.u-btn-hover-v2-1:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-orange.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-orange.u-btn-hover-v2-2::after,
.u-btn-outline-orange.u-btn-hover-v2-2:hover::after {
  background-color: #e57d20;
}

.u-btn-outline-orange.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Deep Orange */

.u-btn-outline-deeporange {
  color: #fe541e;
  border-color: #fe541e;
  background-color: transparent;
}

.u-btn-outline-deeporange:focus,
.u-btn-outline-deeporange.active {
  color: #fff;
  background-color: #fe541e;
}

.u-btn-outline-deeporange:hover {
  color: #fff;
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v1-1::after,
.u-btn-outline-deeporange.u-btn-hover-v1-1:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-deeporange.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v1-2::after,
.u-btn-outline-deeporange.u-btn-hover-v1-2:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-deeporange.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v1-3::after,
.u-btn-outline-deeporange.u-btn-hover-v1-3:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-deeporange.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v1-4::after,
.u-btn-outline-deeporange.u-btn-hover-v1-4:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-deeporange.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v2-1::after,
.u-btn-outline-deeporange.u-btn-hover-v2-1:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-deeporange.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-deeporange.u-btn-hover-v2-2::after,
.u-btn-outline-deeporange.u-btn-hover-v2-2:hover::after {
  background-color: #fe541e;
}

.u-btn-outline-deeporange.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Yellow */

.u-btn-outline-yellow {
  color: #555;
  border-color: #ebc71d;
  background-color: transparent;
}

.u-btn-outline-yellow:focus,
.u-btn-outline-yellow.active {
  color: #555;
  background-color: #ebc71d;
}

.u-btn-outline-yellow:hover {
  color: #555;
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v1-1::after,
.u-btn-outline-yellow.u-btn-hover-v1-1:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-yellow.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v1-2::after,
.u-btn-outline-yellow.u-btn-hover-v1-2:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-yellow.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v1-3::after,
.u-btn-outline-yellow.u-btn-hover-v1-3:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-yellow.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v1-4::after,
.u-btn-outline-yellow.u-btn-hover-v1-4:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-yellow.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v2-1::after,
.u-btn-outline-yellow.u-btn-hover-v2-1:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-yellow.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-yellow.u-btn-hover-v2-2::after,
.u-btn-outline-yellow.u-btn-hover-v2-2:hover::after {
  background-color: #ebc71d;
}

.u-btn-outline-yellow.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Aqua */

.u-btn-outline-aqua {
  color: #29d6e6;
  border-color: #29d6e6;
  background-color: transparent;
}

.u-btn-outline-aqua:focus,
.u-btn-outline-aqua.active {
  color: #fff;
  background-color: #29d6e6;
}

.u-btn-outline-aqua:hover {
  color: #fff;
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v1-1::after,
.u-btn-outline-aqua.u-btn-hover-v1-1:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-aqua.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v1-2::after,
.u-btn-outline-aqua.u-btn-hover-v1-2:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-aqua.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v1-3::after,
.u-btn-outline-aqua.u-btn-hover-v1-3:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-aqua.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v1-4::after,
.u-btn-outline-aqua.u-btn-hover-v1-4:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-aqua.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v2-1::after,
.u-btn-outline-aqua.u-btn-hover-v2-1:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-aqua.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-aqua.u-btn-hover-v2-2::after,
.u-btn-outline-aqua.u-btn-hover-v2-2:hover::after {
  background-color: #29d6e6;
}

.u-btn-outline-aqua.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Cyan */

.u-btn-outline-cyan {
  color: #00bed6;
  border-color: #00bed6;
  background-color: transparent;
}

.u-btn-outline-cyan:focus,
.u-btn-outline-cyan.active {
  color: #fff;
  background-color: #00bed6;
}

.u-btn-outline-cyan:hover {
  color: #fff;
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v1-1::after,
.u-btn-outline-cyan.u-btn-hover-v1-1:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-cyan.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v1-2::after,
.u-btn-outline-cyan.u-btn-hover-v1-2:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-cyan.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v1-3::after,
.u-btn-outline-cyan.u-btn-hover-v1-3:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-cyan.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v1-4::after,
.u-btn-outline-cyan.u-btn-hover-v1-4:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-cyan.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v2-1::after,
.u-btn-outline-cyan.u-btn-hover-v2-1:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-cyan.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-cyan.u-btn-hover-v2-2::after,
.u-btn-outline-cyan.u-btn-hover-v2-2:hover::after {
  background-color: #00bed6;
}

.u-btn-outline-cyan.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Teal */

.u-btn-outline-teal {
  color: #18ba9b;
  border-color: #18ba9b;
  background-color: transparent;
}

.u-btn-outline-teal:focus,
.u-btn-outline-teal.active {
  color: #fff;
  background-color: #18ba9b;
}

.u-btn-outline-teal:hover {
  color: #fff;
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v1-1::after,
.u-btn-outline-teal.u-btn-hover-v1-1:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-teal.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v1-2::after,
.u-btn-outline-teal.u-btn-hover-v1-2:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-teal.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v1-3::after,
.u-btn-outline-teal.u-btn-hover-v1-3:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-teal.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v1-4::after,
.u-btn-outline-teal.u-btn-hover-v1-4:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-teal.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v2-1::after,
.u-btn-outline-teal.u-btn-hover-v2-1:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-teal.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-teal.u-btn-hover-v2-2::after,
.u-btn-outline-teal.u-btn-hover-v2-2:hover::after {
  background-color: #18ba9b;
}

.u-btn-outline-teal.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Brown */

.u-btn-outline-brown {
  color: #9c8061;
  border-color: #9c8061;
  background-color: transparent;
}

.u-btn-outline-brown:focus,
.u-btn-outline-brown.active {
  color: #fff;
  background-color: #9c8061;
}

.u-btn-outline-brown:hover {
  color: #fff;
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v1-1::after,
.u-btn-outline-brown.u-btn-hover-v1-1:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-brown.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v1-2::after,
.u-btn-outline-brown.u-btn-hover-v1-2:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-brown.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v1-3::after,
.u-btn-outline-brown.u-btn-hover-v1-3:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-brown.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v1-4::after,
.u-btn-outline-brown.u-btn-hover-v1-4:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-brown.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v2-1::after,
.u-btn-outline-brown.u-btn-hover-v2-1:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-brown.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-brown.u-btn-hover-v2-2::after,
.u-btn-outline-brown.u-btn-hover-v2-2:hover::after {
  background-color: #9c8061;
}

.u-btn-outline-brown.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Outline Button Bluegrey */

.u-btn-outline-bluegray {
  color: #585f69;
  border-color: #585f69;
  background-color: transparent;
}

.u-btn-outline-bluegray:focus,
.u-btn-outline-bluegray.active {
  color: #fff;
  background-color: #585f69;
}

.u-btn-outline-bluegray:hover {
  color: #fff;
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v1-1 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v1-1::after,
.u-btn-outline-bluegray.u-btn-hover-v1-1:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-bluegray.u-btn-hover-v1-2 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v1-2::after,
.u-btn-outline-bluegray.u-btn-hover-v1-2:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-bluegray.u-btn-hover-v1-3 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v1-3::after,
.u-btn-outline-bluegray.u-btn-hover-v1-3:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-bluegray.u-btn-hover-v1-4 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v1-4::after,
.u-btn-outline-bluegray.u-btn-hover-v1-4:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-bluegray.u-btn-hover-v2-1 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v2-1::after,
.u-btn-outline-bluegray.u-btn-hover-v2-1:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent;
}

.u-btn-outline-bluegray.u-btn-hover-v2-2 {
  overflow: hidden;
}

.u-btn-outline-bluegray.u-btn-hover-v2-2::after,
.u-btn-outline-bluegray.u-btn-hover-v2-2:hover::after {
  background-color: #585f69;
}

.u-btn-outline-bluegray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent;
}

/* Button Facebook */

.u-btn-outline-facebook {
  color: #3b5998;
  border-color: #3b5998;
  background-color: transparent;
}

.u-btn-outline-facebook:focus,
.u-btn-outline-facebook.active {
  color: #fff;
  background-color: #3b5998;
}

.u-btn-outline-facebook:hover {
  color: #fff;
  background-color: #3b5998;
}

/* Button Twitter */

.u-btn-outline-twitter {
  color: #00acee;
  border-color: #00acee;
  background-color: transparent;
}

.u-btn-outline-twitter:focus,
.u-btn-outline-twitter.active {
  color: #fff;
  background-color: #00acee;
}

.u-btn-outline-twitter:hover {
  color: #fff;
  background-color: #00acee;
}

/* Button Dribbble */

.u-btn-outline-dribbble {
  color: #ea4c89;
  border-color: #ea4c89;
  background-color: transparent;
}

.u-btn-outline-dribbble:focus,
.u-btn-outline-dribbble.active {
  color: #fff;
  background-color: #ea4c89;
}

.u-btn-outline-dribbble:hover {
  color: #fff;
  background-color: #ea4c89;
}

/* Gradient Style v1 */

.u-btn-gradient-v1 {
  color: #fff;
  background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%) !important;
  -o-border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
     border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image-slice: 1;
}

.u-btn-gradient-v1:hover,
.u-btn-gradient-v1:focus,
.u-btn-gradient-v1.active {
  opacity: 0.9;
  color: #fff;
}

/* Gradient Style v2 */

.u-btn-gradient-v2 {
  color: #fff;
  background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%) !important;
  -o-border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
     border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image-slice: 1;
}

.u-btn-gradient-v2:hover,
.u-btn-gradient-v2:focus,
.u-btn-gradient-v2.active {
  opacity: 0.9;
  color: #fff;
}

/* Gradient Style v1 */

.u-btn-outline-gradient-v1 {
  color: #555;
  background: transparent;
  -o-border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
     border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image-slice: 1;
}

.u-btn-outline-gradient-v1:hover,
.u-btn-outline-gradient-v1:focus,
.u-btn-outline-gradient-v1.active {
  background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  color: #fff;
}

/* Gradient Style v2 */

.u-btn-outline-gradient-v2 {
  color: #555;
  background: transparent;
  -o-border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
     border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image-slice: 1;
}

.u-btn-outline-gradient-v2:hover,
.u-btn-outline-gradient-v2:focus,
.u-btn-outline-gradient-v2.active {
  background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  color: #fff;
}

/* Material Styles
------------------------------------*/

.u-btn-raised,
.u-btn-raised:active:focus,
.u-btn-raised:focus {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/*------------------------------------
  Material: Floating
------------------------------------*/

.u-btn-floating {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  padding: 0;
  border-radius: 50%;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2.8571428571rem;
}

.u-btn-floating i {
  font-size: 1.6rem;
  line-height: 2.7142857143rem;
}

.u-btn-floating.u-halfway-fab {
  position: absolute;
  right: 1.7142857143rem;
  bottom: -1.4285714286rem;
}

.u-btn-floating.u-halfway-fab--left {
  right: auto;
  left: 1.7142857143rem;
}

.u-btn-floating--large {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
}

.u-btn-floating--large i {
  font-size: 1.6rem;
  line-height: 3.8571428571rem;
}

.u-btn-floating--large.u-halfway-fab {
  bottom: -2rem;
}

button.u-btn-floating {
  border: none;
}

/*------------------------------------
  Material: Flat
------------------------------------*/

.u-btn-flat {
  color: #555;
  background-color: transparent;
}

.u-btn-flat:hover {
  background-color: rgba(221, 221, 221, 0.4);
}

.u-btn-flat:hover,
.u-btn-flat:focus {
  color: #555;
}

/*------------------------------------
  Icons Styles
------------------------------------*/

.u-icon-v1,
.u-icon-v2,
.u-icon-v3,
.u-icon-v4 {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.u-icon-v1:hover,
.u-icon-v2:hover,
.u-icon-v3:hover,
.u-icon-v4:hover {
  text-decoration: none;
}

.u-icon-v1::before,
.u-icon-v2::before,
.u-icon-v3::before {
  display: block;
}

.u-icon-v1 > i,
.u-icon-v2 > i,
.u-icon-v3 > i,
.u-icon-v4 > span > i {
  position: relative;
  top: 50%;
  display: block;
  transform: translateY(-50%);
  z-index: 2;
}

[class*=u-icon-v] .u-line-icon-pro {
  transform: translateY(-45%);
}

.u-icon-rotation {
  transform: rotate(45deg);
}

.u-icon-rotation .u-icon__elem {
  transform: rotate(-45deg) translate(15%, -30%);
}

.u-icon-rotation .u-line-icon-pro {
  transform: rotate(-45deg) translate(25%, -30%);
}

/*------------------------------------
  Icon-v1
------------------------------------*/

.u-icon-v1,
.u-icon-v1 .u-icon__elem-regular,
.u-icon-v1 .u-icon__elem-hover {
  width: 2.5714285714rem;
  height: 2.5714285714rem;
  font-size: 1.4285714286rem;
}

.u-icon-v1.u-icon-size--xs,
.u-icon-v1.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v1.u-icon-size--xs .u-icon__elem-hover {
  width: 1.6428571429rem;
  height: 1.6428571429rem;
  font-size: 0.9285714286rem;
}

.u-icon-v1.u-icon-size--sm,
.u-icon-v1.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v1.u-icon-size--sm .u-icon__elem-hover {
  width: 2.2857142857rem;
  height: 2.2857142857rem;
  font-size: 1.2857142857rem;
}

.u-icon-v1.u-icon-size--lg,
.u-icon-v1.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v1.u-icon-size--lg .u-icon__elem-hover {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 2.5rem;
}

.u-icon-v1.u-icon-size--xl,
.u-icon-v1.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--xl .u-icon__elem-hover {
  width: 5.1428571429rem;
  height: 5.1428571429rem;
  font-size: 2.8571428571rem;
}

.u-icon-v1.u-icon-size--2xl,
.u-icon-v1.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--2xl .u-icon__elem-hover {
  width: 5.8571428571rem;
  height: 5.8571428571rem;
  font-size: 3.5714285714rem;
}

.u-icon-v1.u-icon-size--3xl,
.u-icon-v1.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--3xl .u-icon__elem-hover {
  width: 8rem;
  height: 8rem;
  font-size: 5.7142857143rem;
}

/*------------------------------------
  Icon-v2
------------------------------------*/

.u-icon-v5,
.u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover,
.u-icon-v4 .u-icon-v4-inner,
.u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover,
.u-icon-v3,
.u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover,
.u-icon-v2 {
  width: 3.9285714286rem;
  height: 3.9285714286rem;
  font-size: 1.5714285714rem;
}

.u-icon-v5.u-icon-size--xs,
.u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover {
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  font-size: 0.9285714286rem;
}

.u-icon-v5.u-icon-size--sm,
.u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  font-size: 1.2857142857rem;
}

.u-icon-v5.u-icon-size--lg,
.u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover {
  width: 5rem;
  height: 5rem;
  font-size: 2.1428571429rem;
}

.u-icon-v5.u-icon-size--xl,
.u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover {
  width: 6.4285714286rem;
  height: 6.4285714286rem;
  font-size: 2.8571428571rem;
}

.u-icon-v5.u-icon-size--2xl,
.u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover {
  width: 7.1428571429rem;
  height: 7.1428571429rem;
  font-size: 3.2142857143rem;
}

.u-icon-v5.u-icon-size--3xl,
.u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover {
  width: 9.2857142857rem;
  height: 9.2857142857rem;
  font-size: 3.5714285714rem;
}

.u-icon-v2 {
  border-width: 1px;
  border-style: solid;
}

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover {
  border-width: 1.5px;
}

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover {
  border-width: 1.5px;
}

/*------------------------------------
  Icon-v3
------------------------------------*/

.u-icon-v5,
.u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover,
.u-icon-v4 .u-icon-v4-inner,
.u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover,
.u-icon-v3,
.u-icon-v2,
.u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover {
  width: 3.9285714286rem;
  height: 3.9285714286rem;
  font-size: 1.5714285714rem;
}

.u-icon-v5.u-icon-size--xs,
.u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover {
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  font-size: 0.9285714286rem;
}

.u-icon-v5.u-icon-size--sm,
.u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  font-size: 1.2857142857rem;
}

.u-icon-v5.u-icon-size--lg,
.u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover {
  width: 5rem;
  height: 5rem;
  font-size: 2.1428571429rem;
}

.u-icon-v5.u-icon-size--xl,
.u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover {
  width: 6.4285714286rem;
  height: 6.4285714286rem;
  font-size: 2.8571428571rem;
}

.u-icon-v5.u-icon-size--2xl,
.u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover {
  width: 7.1428571429rem;
  height: 7.1428571429rem;
  font-size: 3.2142857143rem;
}

.u-icon-v5.u-icon-size--3xl,
.u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover {
  width: 9.2857142857rem;
  height: 9.2857142857rem;
  font-size: 3.5714285714rem;
}

.u-icon-v3 {
  background-color: #eee;
}

/*------------------------------------
  Icon-v4
------------------------------------*/

.u-icon-v5,
.u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover,
.u-icon-v4 .u-icon-v4-inner,
.u-icon-v2,
.u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover,
.u-icon-v3,
.u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover {
  width: 3.9285714286rem;
  height: 3.9285714286rem;
  font-size: 1.5714285714rem;
}

.u-icon-v5.u-icon-size--xs,
.u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover {
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  font-size: 0.9285714286rem;
}

.u-icon-v5.u-icon-size--sm,
.u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  font-size: 1.2857142857rem;
}

.u-icon-v5.u-icon-size--lg,
.u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover {
  width: 5rem;
  height: 5rem;
  font-size: 2.1428571429rem;
}

.u-icon-v5.u-icon-size--xl,
.u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover {
  width: 6.4285714286rem;
  height: 6.4285714286rem;
  font-size: 2.8571428571rem;
}

.u-icon-v5.u-icon-size--2xl,
.u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover {
  width: 7.1428571429rem;
  height: 7.1428571429rem;
  font-size: 3.2142857143rem;
}

.u-icon-v5.u-icon-size--3xl,
.u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover {
  width: 9.2857142857rem;
  height: 9.2857142857rem;
  font-size: 3.5714285714rem;
}

.u-icon-v4 {
  padding: 0.5714285714rem;
  background: transparent !important;
  border: solid 1px #eee;
  transition: all 0.1s ease-in-out;
}

.u-icon-v4-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #eee;
}

.u-icon-v4 .u-icon-v4-inner {
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.u-icon-v4-rounded-3,
.u-icon-v4-rounded-3 .u-icon-v4-inner {
  border-radius: 3px;
}

.u-icon-v4-rounded-7,
.u-icon-v4-rounded-7 .u-icon-v4-inner {
  border-radius: 7px;
}

.u-icon-v4-rounded-10,
.u-icon-v4-rounded-10 .u-icon-v4-inner {
  border-radius: 10px;
}

.u-icon-v4-rounded-50x,
.u-icon-v4-rounded-50x .u-icon-v4-inner {
  border-radius: 50%;
}

.u-icon-v4-bg-primary {
  border-color: #CAD105;
}

.u-icon-v4-bg-primary .u-icon-v4-inner {
  background: #CAD105;
}

.u-icon-v4-bg-white {
  border-color: #fff;
}

.u-icon-v4-bg-white .u-icon-v4-inner {
  background: #fff;
}

.u-icon-v4-bg-gray-light-v3 {
  border-color: #ddd;
}

.u-icon-v4-bg-gray-light-v3 .u-icon-v4-inner {
  background: #ddd;
}

.u-icon-v4-bg-gray-dark-v3 {
  border-color: #555;
}

.u-icon-v4-bg-gray-dark-v3 .u-icon-v4-inner {
  background: #555;
}

.u-icon-v4-bg-black {
  border-color: #000;
}

.u-icon-v4-bg-black .u-icon-v4-inner {
  background: #000;
}

.u-icon-v4-bg-primary--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover {
  border-color: #CAD105;
}

.u-icon-v4-bg-primary--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover .u-icon-v4-inner {
  background: #CAD105;
}

.u-icon-v4-bg-white--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-white--hover {
  border-color: #fff;
}

.u-icon-v4-bg-white--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-white--hover .u-icon-v4-inner {
  background: #fff;
}

.u-icon-v4-bg-gray-light-v3--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover {
  border-color: #ddd;
}

.u-icon-v4-bg-gray-light-v3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover .u-icon-v4-inner {
  background: #ddd;
}

.u-icon-v4-bg-gray-dark-v3--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover {
  border-color: #555;
}

.u-icon-v4-bg-gray-dark-v3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover .u-icon-v4-inner {
  background: #555;
}

.u-icon-v4-bg-black--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-black--hover {
  border-color: #000;
}

.u-icon-v4-bg-black--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-black--hover .u-icon-v4-inner {
  background: #000;
}

/*------------------------------------
  Icon-v4 Additional BG colors
------------------------------------*/

.u-icon-v4-bg-red {
  border-color: #f00;
}

.u-icon-v4-bg-red .u-icon-v4-inner {
  background: #f00;
}

.u-icon-v4-bg-lightred {
  border-color: #e64b3b;
}

.u-icon-v4-bg-lightred .u-icon-v4-inner {
  background: #e64b3b;
}

.u-icon-v4-bg-darkred {
  border-color: #a10f2b;
}

.u-icon-v4-bg-darkred .u-icon-v4-inner {
  background: #a10f2b;
}

.u-icon-v4-bg-blue {
  border-color: #355c76;
}

.u-icon-v4-bg-blue .u-icon-v4-inner {
  background: #355c76;
}

.u-icon-v4-bg-indigo {
  border-color: #8b0048;
}

.u-icon-v4-bg-indigo .u-icon-v4-inner {
  background: #8b0048;
}

.u-icon-v4-bg-purple {
  border-color: #9a69cb;
}

.u-icon-v4-bg-purple .u-icon-v4-inner {
  background: #9a69cb;
}

.u-icon-v4-bg-darkpurple {
  border-color: #6639b6;
}

.u-icon-v4-bg-darkpurple .u-icon-v4-inner {
  background: #6639b6;
}

.u-icon-v4-bg-pink {
  border-color: #e81c62;
}

.u-icon-v4-bg-pink .u-icon-v4-inner {
  background: #e81c62;
}

.u-icon-v4-bg-orange {
  border-color: #e57d20;
}

.u-icon-v4-bg-orange .u-icon-v4-inner {
  background: #e57d20;
}

.u-icon-v4-bg-deeporange {
  border-color: #fe541e;
}

.u-icon-v4-bg-deeporange .u-icon-v4-inner {
  background: #fe541e;
}

.u-icon-v4-bg-aqua {
  border-color: #29d6e6;
}

.u-icon-v4-bg-aqua .u-icon-v4-inner {
  background: #29d6e6;
}

.u-icon-v4-bg-yellow {
  border-color: #ebc71d;
}

.u-icon-v4-bg-yellow .u-icon-v4-inner {
  background: #ebc71d;
}

.u-icon-v4-bg-cyan {
  border-color: #00bed6;
}

.u-icon-v4-bg-cyan .u-icon-v4-inner {
  background: #00bed6;
}

.u-icon-v4-bg-teal {
  border-color: #18ba9b;
}

.u-icon-v4-bg-teal .u-icon-v4-inner {
  background: #18ba9b;
}

.u-icon-v4-bg-brown {
  border-color: #9c8061;
}

.u-icon-v4-bg-brown .u-icon-v4-inner {
  background: #9c8061;
}

.u-icon-v4-bg-bluegray {
  border-color: #585f69;
}

.u-icon-v4-bg-bluegray .u-icon-v4-inner {
  background: #585f69;
}

.u-icon-v4-bg-red--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-red--hover {
  border-color: #f00;
}

.u-icon-v4-bg-red--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-red--hover .u-icon-v4-inner {
  background: #f00;
}

.u-icon-v4-bg-lightred--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover {
  border-color: #e64b3b;
}

.u-icon-v4-bg-lightred--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover .u-icon-v4-inner {
  background: #e64b3b;
}

.u-icon-v4-bg-darkred--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover {
  border-color: #a10f2b;
}

.u-icon-v4-bg-darkred--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover .u-icon-v4-inner {
  background: #a10f2b;
}

.u-icon-v4-bg-blue--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover {
  border-color: #355c76;
}

.u-icon-v4-bg-blue--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover .u-icon-v4-inner {
  background: #355c76;
}

.u-icon-v4-bg-indigo--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover {
  border-color: #8b0048;
}

.u-icon-v4-bg-indigo--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover .u-icon-v4-inner {
  background: #8b0048;
}

.u-icon-v4-bg-purple--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover {
  border-color: #9a69cb;
}

.u-icon-v4-bg-purple--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover .u-icon-v4-inner {
  background: #9a69cb;
}

.u-icon-v4-bg-darkpurple--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover {
  border-color: #6639b6;
}

.u-icon-v4-bg-darkpurple--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover .u-icon-v4-inner {
  background: #6639b6;
}

.u-icon-v4-bg-pink--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover {
  border-color: #e81c62;
}

.u-icon-v4-bg-pink--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover .u-icon-v4-inner {
  background: #e81c62;
}

.u-icon-v4-bg-orange--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover {
  border-color: #e57d20;
}

.u-icon-v4-bg-orange--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover .u-icon-v4-inner {
  background: #e57d20;
}

.u-icon-v4-bg-deeporange--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover {
  border-color: #fe541e;
}

.u-icon-v4-bg-deeporange--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover .u-icon-v4-inner {
  background: #fe541e;
}

.u-icon-v4-bg-aqua--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover {
  border-color: #29d6e6;
}

.u-icon-v4-bg-aqua--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover .u-icon-v4-inner {
  background: #29d6e6;
}

.u-icon-v4-bg-yellow--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover {
  border-color: #ebc71d;
}

.u-icon-v4-bg-yellow--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover .u-icon-v4-inner {
  background: #ebc71d;
}

.u-icon-v4-bg-cyan--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover {
  border-color: #00bed6;
}

.u-icon-v4-bg-cyan--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover .u-icon-v4-inner {
  background: #00bed6;
}

.u-icon-v4-bg-teal--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover {
  border-color: #18ba9b;
}

.u-icon-v4-bg-teal--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover .u-icon-v4-inner {
  background: #18ba9b;
}

.u-icon-v4-bg-brown--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover {
  border-color: #9c8061;
}

.u-icon-v4-bg-brown--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover .u-icon-v4-inner {
  background: #9c8061;
}

.u-icon-v4-bg-bluegray--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover {
  border-color: #585f69;
}

.u-icon-v4-bg-bluegray--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover .u-icon-v4-inner {
  background: #585f69;
}

/*------------------------------------
  Icon-v4 Social BG colors
------------------------------------*/

.u-icon-v4-bg-facebook {
  border-color: #3b5998;
}

.u-icon-v4-bg-facebook .u-icon-v4-inner {
  background-color: #3b5998;
}

.u-icon-v4-bg-twitter {
  border-color: #00acee;
}

.u-icon-v4-bg-twitter .u-icon-v4-inner {
  background-color: #00acee;
}

.u-icon-v4-bg-google-plus {
  border-color: #dd4b39;
}

.u-icon-v4-bg-google-plus .u-icon-v4-inner {
  background-color: #dd4b39;
}

.u-icon-v4-bg-vk {
  border-color: #2b587a;
}

.u-icon-v4-bg-vk .u-icon-v4-inner {
  background-color: #2b587a;
}

.u-icon-v4-bg-linkedin {
  border-color: #0e76a8;
}

.u-icon-v4-bg-linkedin .u-icon-v4-inner {
  background-color: #0e76a8;
}

.u-icon-v4-bg-instagram {
  border-color: #3f729b;
}

.u-icon-v4-bg-instagram .u-icon-v4-inner {
  background-color: #3f729b;
}

.u-icon-v4-bg-pinterest {
  border-color: #c8232c;
}

.u-icon-v4-bg-pinterest .u-icon-v4-inner {
  background-color: #c8232c;
}

.u-icon-v4-bg-vine {
  border-color: #00bf8f;
}

.u-icon-v4-bg-vine .u-icon-v4-inner {
  background-color: #00bf8f;
}

.u-icon-v4-bg-youtube {
  border-color: #c4302b;
}

.u-icon-v4-bg-youtube .u-icon-v4-inner {
  background-color: #c4302b;
}

.u-icon-v4-bg-skype {
  border-color: #00aff0;
}

.u-icon-v4-bg-skype .u-icon-v4-inner {
  background-color: #00aff0;
}

.u-icon-v4-bg-dribbble {
  border-color: #ea4c89;
}

.u-icon-v4-bg-dribbble .u-icon-v4-inner {
  background-color: #ea4c89;
}

.u-icon-v4-bg-facebook--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover {
  border-color: #3b5998;
}

.u-icon-v4-bg-facebook--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover .u-icon-v4-inner {
  background: #3b5998;
}

.u-icon-v4-bg-twitter--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover {
  border-color: #00acee;
}

.u-icon-v4-bg-twitter--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover .u-icon-v4-inner {
  background: #00acee;
}

.u-icon-v4-bg-google-plus--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover {
  border-color: #dd4b39;
}

.u-icon-v4-bg-google-plus--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover .u-icon-v4-inner {
  background: #dd4b39;
}

.u-icon-v4-bg-vk--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover {
  border-color: #2b587a;
}

.u-icon-v4-bg-vk--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover .u-icon-v4-inner {
  background: #2b587a;
}

.u-icon-v4-bg-linkedin--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover {
  border-color: #0e76a8;
}

.u-icon-v4-bg-linkedin--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover .u-icon-v4-inner {
  background: #0e76a8;
}

.u-icon-v4-bg-instagram--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover {
  border-color: #3f729b;
}

.u-icon-v4-bg-instagram--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover .u-icon-v4-inner {
  background: #3f729b;
}

.u-icon-v4-bg-pinterest--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover {
  border-color: #c8232c;
}

.u-icon-v4-bg-pinterest--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover .u-icon-v4-inner {
  background: #c8232c;
}

/*------------------------------------
  Icon-v4 Gradient BG colors
------------------------------------*/

.u-icon-v4-bg-lightblue-radialgradient-ellipse {
  border-color: #d6e2ee;
}

.u-icon-v4-bg-lightblue-radialgradient-ellipse .u-icon-v4-inner {
  background: radial-gradient(ellipse at center center, #fff 22%, #d6e2ee 100%) repeat;
}

.u-icon-v4-bg-gray-radialgradient-ellipse {
  border-color: #bbb;
}

.u-icon-v4-bg-gray-radialgradient-ellipse .u-icon-v4-inner {
  background: radial-gradient(ellipse at center center, #ddd 22%, #bbb 100%) repeat;
}

.u-icon-v4-bg-blue-radialgradient-circle {
  border-color: #275296;
}

.u-icon-v4-bg-blue-radialgradient-circle .u-icon-v4-inner {
  background: radial-gradient(circle farthest-side at 100% 0, #2294d7, #275296) no-repeat;
}

.u-icon-v4-bg-darkgray-radialgradient-circle {
  border-color: #31353e;
}

.u-icon-v4-bg-darkgray-radialgradient-circle .u-icon-v4-inner {
  background: radial-gradient(circle farthest-side at 110% 0, #596070, #31353e) no-repeat;
}

/*------------------------------------
  Icon-v5
------------------------------------*/

.u-icon-v5,
.u-icon-v2,
.u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover,
.u-icon-v3,
.u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover,
.u-icon-v4 .u-icon-v4-inner,
.u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover {
  width: 3.9285714286rem;
  height: 3.9285714286rem;
  font-size: 1.5714285714rem;
}

.u-icon-v5.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover,
.u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover {
  width: 2.1428571429rem;
  height: 2.1428571429rem;
  font-size: 0.9285714286rem;
}

.u-icon-v5.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover,
.u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover {
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  font-size: 1.2857142857rem;
}

.u-icon-v5.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover,
.u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover {
  width: 5rem;
  height: 5rem;
  font-size: 2.1428571429rem;
}

.u-icon-v5.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover,
.u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover {
  width: 6.4285714286rem;
  height: 6.4285714286rem;
  font-size: 2.8571428571rem;
}

.u-icon-v5.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover,
.u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover {
  width: 7.1428571429rem;
  height: 7.1428571429rem;
  font-size: 3.2142857143rem;
}

.u-icon-v5.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover,
.u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover {
  width: 9.2857142857rem;
  height: 9.2857142857rem;
  font-size: 3.5714285714rem;
}

.u-icon-v5 {
  position: relative;
}

body .u-icon-v5 {
  background: transparent !important;
}

.u-icon-v5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.45em 0 0 -0.4em;
  width: 0.8em;
  height: 0.8em;
  background-color: #eee;
  border-radius: 50%;
  opacity: 0.7;
}

.u-icon-v5 i {
  position: relative;
  z-index: 2;
}

.u-icon-v5.g-bg-main::after {
  background-color: #464c5e;
}

.u-icon-v5.g-bg-primary::after {
  background-color: #CAD105;
}

.u-icon-v5.g-bg-black::after {
  background-color: #000;
}

.u-icon-v5.g-bg-white::after {
  background-color: #fff;
}

.u-icon-v5.g-bg-gray-light-v1::after {
  background-color: #bbb;
}

.u-icon-v5.g-bg-gray-light-v2::after {
  background-color: #ccc;
}

.u-icon-v5.g-bg-gray-light-v3::after {
  background-color: #ddd;
}

.u-icon-v5.g-bg-gray-light-v4::after {
  background-color: #eee;
}

.u-icon-v5.g-bg-gray-light-v5::after {
  background-color: #f7f7f7;
}

.u-icon-v5.g-bg-gray-dark-v1::after {
  background-color: #111;
}

.u-icon-v5.g-bg-gray-dark-v2::after {
  background-color: #333;
}

.u-icon-v5.g-bg-gray-dark-v3::after {
  background-color: #555;
}

.u-icon-v5.g-bg-gray-dark-v4::after {
  background-color: #777;
}

.u-icon-v5.g-bg-gray-dark-v5::after {
  background-color: #999;
}

.u-icon-v5.g-bg-green::after {
  background-color: #8ac54d;
}

.u-icon-v5.g-bg-blue::after {
  background-color: #355c76;
}

.u-icon-v5.g-bg-lightblue::after {
  background-color: #edf2f8;
}

.u-icon-v5.g-bg-lightblue-v1::after {
  background-color: #d6e2ee;
}

.u-icon-v5.g-bg-darkblue::after {
  background-color: #009;
}

.u-icon-v5.g-bg-indigo::after {
  background-color: #8b0048;
}

.u-icon-v5.g-bg-red::after {
  background-color: #f00;
}

.u-icon-v5.g-bg-lightred::after {
  background-color: #e64b3b;
}

.u-icon-v5.g-bg-darkred::after {
  background-color: #a10f2b;
}

.u-icon-v5.g-bg-purple::after {
  background-color: #9a69cb;
}

.u-icon-v5.g-bg-darkpurple::after {
  background-color: #6639b6;
}

.u-icon-v5.g-bg-pink::after {
  background-color: #e81c62;
}

.u-icon-v5.g-bg-orange::after {
  background-color: #e57d20;
}

.u-icon-v5.g-bg-deeporange::after {
  background-color: #fe541e;
}

.u-icon-v5.g-bg-yellow::after {
  background-color: #ebc71d;
}

.u-icon-v5.g-bg-aqua::after {
  background-color: #29d6e6;
}

.u-icon-v5.g-bg-cyan::after {
  background-color: #00bed6;
}

.u-icon-v5.g-bg-teal::after {
  background-color: #18ba9b;
}

.u-icon-v5.g-bg-brown::after {
  background-color: #9c8061;
}

.u-icon-v5.g-bg-bluegray::after {
  background-color: #585f69;
}

/*------------------------------------
  Image Icons
------------------------------------*/

.u-image-icon-size-xs,
.u-image-icon-size-sm,
.u-image-icon-size-md,
.u-image-icon-size-lg,
.u-image-icon-size-xl {
  height: auto;
}

.u-image-icon-size-xs {
  width: 2.1428571429rem;
}

.u-image-icon-size-sm {
  width: 2.8571428571rem;
}

.u-image-icon-size-md {
  width: 3.9285714286rem;
}

.u-image-icon-size-lg {
  width: 5rem;
}

.u-image-icon-size-xl {
  width: 6.4285714286rem;
}

.u-image-icon-size-2xl {
  width: 7.1428571429rem;
}

/*------------------------------------
  Hover Effect of Icon on Block Hover
------------------------------------*/

.u-icon-block--hover:hover .g-opacity-0_5--hover {
  opacity: 0.5;
}

.u-icon-block--hover:hover .g-color-primary--hover {
  color: #CAD105;
}

.u-icon-block--hover:hover .g-brd-primary--hover {
  border-color: #CAD105;
}

.u-icon-block--hover:hover .g-bg-primary--hover {
  background: #CAD105;
}

.u-icon-block--hover:hover .g-color-white--hover {
  color: #fff;
}

.u-icon-block--hover:hover .g-brd-white--hover {
  border-color: #fff;
}

.u-icon-block--hover:hover .g-bg-white--hover {
  background: #fff;
}

.u-icon-block--hover:hover .g-color-black--hover {
  color: #000;
}

.u-icon-block--hover:hover .g-brd-black--hover {
  border-color: #000;
}

.u-icon-block--hover:hover .g-bg-black--hover {
  background: #000;
}

.u-icon-block--hover:hover .g-color-gray-dark-v4--hover {
  color: #777;
}

.u-icon-block--hover:hover .g-brd-gray-dark-v4--hover {
  border-color: #777;
}

.u-icon-block--hover:hover .g-bg-gray-dark-v4--hover {
  background: #777;
}

.u-icon-block-hover:hover .g-color-facebook--hover {
  color: #3b5998;
}

.u-icon-block-hover:hover .g-brd-facebook--hover {
  border-color: #3b5998;
}

.u-icon-block-hover:hover .g-bg-facebook--hover {
  background: #3b5998;
}

.u-icon-block-hover:hover .g-color-twitter--hover {
  color: #00acee;
}

.u-icon-block-hover:hover .g-brd-twitter--hover {
  border-color: #00acee;
}

.u-icon-block-hover:hover .g-bg-twitter--hover {
  background: #00acee;
}

.u-icon-block-hover:hover .g-color-google-plus--hover {
  color: #dd4b39;
}

.u-icon-block-hover:hover .g-brd-google-plus--hover {
  border-color: #dd4b39;
}

.u-icon-block-hover:hover .g-bg-google-plus--hover {
  background: #dd4b39;
}

.u-icon-block-hover:hover .g-color-vk--hover {
  color: #2b587a;
}

.u-icon-block-hover:hover .g-brd-vk--hover {
  border-color: #2b587a;
}

.u-icon-block-hover:hover .g-bg-vk--hover {
  background: #2b587a;
}

.u-icon-block-hover:hover .g-color-linkedin--hover {
  color: #0e76a8;
}

.u-icon-block-hover:hover .g-brd-linkedin--hover {
  border-color: #0e76a8;
}

.u-icon-block-hover:hover .g-bg-linkedin--hover {
  background: #0e76a8;
}

.u-icon-block-hover:hover .g-color-instagram--hover {
  color: #3f729b;
}

.u-icon-block-hover:hover .g-brd-instagram--hover {
  border-color: #3f729b;
}

.u-icon-block-hover:hover .g-bg-instagram--hover {
  background: #3f729b;
}

.u-icon-block-hover:hover .g-color-pinterest--hover {
  color: #c8232c;
}

.u-icon-block-hover:hover .g-brd-pinterest--hover {
  border-color: #c8232c;
}

.u-icon-block-hover:hover .g-bg-pinterest--hover {
  background: #c8232c;
}

.u-icon-block-hover:hover .g-color-whatsapp--hover {
  color: #25D366;
}

.u-icon-block-hover:hover .g-brd-whatsapp--hover {
  border-color: #25D366;
}

.u-icon-block-hover:hover .g-bg-whatsapp--hover {
  background: #25D366;
}

/*------------------------------------
  Scale Effect
------------------------------------*/

.u-icon-scale-1_2--hover:hover {
  transform: scale(1.2);
}

/*------------------------------------
  Shadow Effect
------------------------------------*/

.u-icon-shadow--hover:hover,
.u-icon-block--hover:hover .u-icon-shadow--hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/*------------------------------------
  Slide Effect v1
------------------------------------*/

.u-icon-sliding--hover i::before {
  display: block;
}

.u-icon-sliding--hover:hover i::before,
.u-icon-block--hover:hover .u-icon-sliding--hover i::before {
  -webkit-animation: toTopFromBottom 0.3s forwards;
          animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/*------------------------------------
  Slide Effect v2
------------------------------------*/

.u-icon__elem-regular,
.u-icon__elem-hover {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.3s ease-in-out;
}

.u-icon__elem-hover {
  position: absolute !important;
}

.u-icon-slide-up--hover,
.u-icon-slide-down--hover,
.u-icon-slide-left--hover,
.u-icon-slide-right--hover {
  overflow: hidden;
}

.u-icon-slide-up--hover .u-icon__elem-regular {
  transform: translateY(-20%);
}

.u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translateY(-30%);
}

.u-icon-slide-up--hover .u-icon__elem-hover {
  transform: translateY(110%);
}

.u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translateY(120%);
}

.u-icon-slide-up--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular {
  transform: translateY(-110%);
}

.u-icon-slide-up--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translateY(-120%);
}

.u-icon-slide-up--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover {
  transform: translateY(-20%);
}

.u-icon-slide-up--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translateY(-30%);
}

.u-icon-slide-down--hover .u-icon__elem-regular {
  transform: translateY(-110%);
}

.u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translateY(-120%);
}

.u-icon-slide-down--hover .u-icon__elem-hover {
  transform: translateY(-20%);
}

.u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translateY(-30%);
}

.u-icon-slide-down--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular {
  transform: translateY(-20%);
}

.u-icon-slide-down--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translateY(-30%);
}

.u-icon-slide-down--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover {
  transform: translateY(80%);
}

.u-icon-slide-down--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translateY(90%);
}

.u-icon-slide-left--hover .u-icon__elem-regular {
  transform: translate(0, -20%);
}

.u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translate(0, -30%);
}

.u-icon-slide-left--hover .u-icon__elem-hover {
  transform: translate(110%, -20%);
}

.u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translate(110%, -30%);
}

.u-icon-slide-left--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular {
  transform: translate(-110%, -20%);
}

.u-icon-slide-left--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translate(-110%, -30%);
}

.u-icon-slide-left--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover {
  transform: translate(0, -20%);
}

.u-icon-slide-left--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translate(0, -30%);
}

.u-icon-slide-right--hover .u-icon__elem-regular {
  transform: translate(-110%, -20%);
}

.u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translate(-110%, -30%);
}

.u-icon-slide-right--hover .u-icon__elem-hover {
  transform: translate(0, -20%);
}

.u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translate(0, -30%);
}

.u-icon-slide-right--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular {
  transform: translate(0, -20%);
}

.u-icon-slide-right--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro {
  transform: translate(0, -30%);
}

.u-icon-slide-right--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover {
  transform: translate(110%, -20%);
}

.u-icon-slide-right--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro {
  transform: translate(110%, -30%);
}

/*------------------------------------
  Zoom Effect v1
------------------------------------*/

.u-icon-block--hover:hover .u-icon-scale-1_2--hover {
  transform: scale(1.2);
}

.u-icon-rotation.u-icon-scale-1_2--hover:hover,
.u-icon-block--hover:hover .u-icon-rotation.u-icon-scale-1_2--hover {
  transform: scale(1.2) rotate(45deg);
}

/*------------------------------------
  Changing a shape Effect
------------------------------------*/

.u-icon-square--hover:hover,
.u-icon-v4.u-icon-square--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-square--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-square--hover .u-icon-v4-inner {
  border-radius: 0;
}

.u-icon-rounded-3--hover:hover,
.u-icon-v4.u-icon-rounded-3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-3--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-3--hover .u-icon-v4-inner {
  border-radius: 3px;
}

.u-icon-rounded-10--hover:hover,
.u-icon-v4.u-icon-rounded-10--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-10--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-10--hover .u-icon-v4-inner {
  border-radius: 10px;
}

.u-icon-rounded-50x--hover:hover,
.u-icon-v4.u-icon-rounded-50x--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-50x--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-50x--hover .u-icon-v4-inner {
  border-radius: 50%;
}

/*------------------------------------
  Effect v1
------------------------------------*/

.u-icon-effect-v5--hover:after,
.u-icon-effect-v4--hover::after,
.u-icon-effect-v2--hover::after,
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none;
}

.u-icon-effect-v1-1--hover,
.u-icon-effect-v1-2--hover {
  position: relative;
  overflow: inherit;
}

.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after {
  top: -0.5rem;
  left: -0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0 0 1px #CAD105;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.u-icon-effect-v1-1--hover:hover,
.u-icon-effect-v1-2--hover:hover,
.u-icon-v4.u-icon-effect-v1-1--hover:hover .u-icon-v4-inner,
.u-icon-v4.u-icon-effect-v1-2--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-effect-v1-1--hover,
.u-icon-block--hover:hover .u-icon-effect-v1-2--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover .u-icon-v4-inner {
  color: #fff;
  border-color: #CAD105;
  background: #CAD105 !important;
}

.u-icon-v4.u-icon-effect-v1-1--hover:hover,
.u-icon-v4.u-icon-effect-v1-2--hover:hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover {
  border-color: transparent;
}

.u-icon-effect-v1-1--hover::after {
  transform: scale(0.8);
}

.u-icon-effect-v1-1--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v1-1--hover::after {
  transform: scale(1);
  opacity: 1;
}

.u-icon-effect-v1-2--hover::after {
  transform: scale(1.2);
}

.u-icon-effect-v1-2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v1-2--hover::after {
  transform: scale(1);
  opacity: 1;
}

.u-icon-v4.u-icon-effect-v1-2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover::after {
  transform: scale(0.8);
}

/*------------------------------------
  Effect v2
------------------------------------*/

.u-icon-effect-v5--hover:after,
.u-icon-effect-v4--hover::after,
.u-icon-effect-v2--hover::after,
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none;
}

.u-icon-effect-v2--hover {
  transition: all 0.5s;
  overflow: inherit;
}

.u-icon-effect-v2--hover::after {
  top: -4px;
  left: -4px;
  padding: 4px;
  z-index: -1;
  transition: all 0.5s;
}

.u-icon-effect-v2--hover:hover,
.u-icon-effect-v2--hover:hover::after {
  background: #CAD105;
}

.u-icon-effect-v2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v2--hover::after {
  opacity: 0;
  transform: scale(1.5);
}

/*------------------------------------
  Effect v3
------------------------------------*/

@-webkit-keyframes spinAround {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes spinAround {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.u-icon-effect-v3--hover:hover i,
.u-icon-block--hover:hover .u-icon-effect-v3--hover i {
  -webkit-animation: spinAround 1s linear infinite;
          animation: spinAround 1s linear infinite;
}

/*------------------------------------
  Effect v4
------------------------------------*/

.u-icon-effect-v5--hover:after,
.u-icon-effect-v4--hover::after,
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after,
.u-icon-effect-v2--hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none;
}

.u-icon-effect-v4--hover {
  transition: transform ease-out 0.1s, background 0.2s;
  overflow: inherit;
}

.u-icon-effect-v4--hover::after {
  top: 0;
  left: 0;
  padding: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: -1;
  transform: scale(0.9);
}

.u-icon-effect-v4--hover:hover,
.u-icon-block--hover:hover .u-icon-effect-v4--hover {
  transform: scale(1.1);
}

.u-icon-rotation.u-icon-effect-v4--hover:hover,
.u-icon-block--hover:hover .u-icon-rotation.u-icon-effect-v4--hover {
  transform: scale(1.1) rotate(45deg);
}

.u-icon-effect-v4--hover:hover::after {
  -webkit-animation: sonarEffect-default 1.3s ease-out 75ms;
          animation: sonarEffect-default 1.3s ease-out 75ms;
}

.u-icon-effect-v4--hover.g-bg-primary:hover::after,
.u-icon-v2.u-icon-effect-v4--hover.g-color-primary:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v4--hover.g-bg-primary::after,
.u-icon-block--hover:hover .u-icon-v2.u-icon-effect-v4--hover.g-color-primary::after {
  -webkit-animation: sonarEffect-primary 1.3s ease-out 75ms;
          animation: sonarEffect-primary 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect-default {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sonarEffect-default {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes sonarEffect-primary {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #CAD105, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #CAD105, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes sonarEffect-primary {
  0% {
    opacity: 0.3;
  }

  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #CAD105, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #CAD105, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}

/*------------------------------------
  Effect v5
------------------------------------*/

.u-icon-effect-v5--hover:after,
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after,
.u-icon-effect-v2--hover::after,
.u-icon-effect-v4--hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none;
}

.u-icon-effect-v5--hover {
  transition: box-shadow 0.2s;
  overflow: inherit;
}

.u-icon-effect-v5--hover:after {
  top: 0;
  left: 0;
  padding: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.u-icon-v3.u-icon-effect-v5--hover:after {
  box-shadow: 0 0 0 3px #fff;
}

.u-icon-effect-v5--hover:hover:after,
.u-icon-block--hover:hover .u-icon-effect-v5--hover:after {
  transform: scale(0.85);
  opacity: 0.5;
}

.u-icon-effect-v5--hover:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover {
  box-shadow: 0 0 10px 10px #ddd;
}

.u-icon-effect-v5--hover.g-bg-primary:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-bg-primary,
.u-icon-effect-v5--hover.g-color-primary:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-color-primary {
  box-shadow: 0 0 10px 10px #CAD105;
}

/*------------------------------------
  Box-shadows Styles
------------------------------------*/

.u-shadow-none {
  box-shadow: none !important;
}

.u-shadow-none--focus:focus {
  box-shadow: none !important;
}

.g-parent:hover .u-shadow-none--parent-hover {
  box-shadow: none !important;
}

/*------------------------------------
  Box-shadows-v1
------------------------------------*/

.u-shadow-v1-1 {
  box-shadow: 0 0 5px #999;
}

.u-shadow-v1-2 {
  box-shadow: 0 0 10px #999;
}

.u-shadow-v1-2--hover:hover {
  box-shadow: 0 0 10px #999;
}

.g-parent:hover .u-shadow-v1-2--hover-parent {
  box-shadow: 0 0 10px #999;
}

.u-shadow-v1-3 {
  box-shadow: 0 0 5px #ddd;
}

.u-shadow-v1-4 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.u-shadow-v1-5 {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-5--hover:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

*:hover > .u-shadow-v1-5--hover-parent {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-6 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-6--hover:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

*:hover > .u-shadow-v1-6--hover-parent {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-7 {
  box-shadow: 0 0 8px #eee;
}

.u-shadow-v1-7--hover:hover {
  box-shadow: 0 0 8px #eee;
}

*:hover > .u-shadow-v1-7--hover-parent {
  box-shadow: 0 0 8px #eee;
}

/*------------------------------------
  Box-shadows-v2
------------------------------------*/

.u-shadow-v2 {
  box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  Box-shadows-v3-v4-v5
------------------------------------*/

.u-shadow-v3,
.u-shadow-v4,
.u-shadow-v5 {
  position: relative;
}

.u-shadow-v3::after,
.u-shadow-v3::before,
.u-shadow-v4::before,
.u-shadow-v5::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 0.3571428571rem;
  bottom: 1.0714285714rem;
  width: 50%;
  max-width: 21.4285714286rem;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.u-shadow-v3::after,
.u-shadow-v3::before,
.u-shadow-v4::before,
.u-shadow-v5::after {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
}

.u-shadow-v3::after,
.u-shadow-v5::after {
  left: auto;
  right: 0.3571428571rem;
  transform: rotate(3deg);
}

/*------------------------------------
  Box-shadows-v6
------------------------------------*/

.u-shadow-v6 {
  box-shadow: 0 8px 6px -6px #555;
}

/*------------------------------------
  Box-shadows-v7
------------------------------------*/

.u-shadow-v7 {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  Box-shadows-v8
------------------------------------*/

.u-shadow-v8 {
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
}

.u-shadow-v8--hover:hover {
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05);
}

.u-shadow-v8-1 {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/*------------------------------------
  Box-shadows-v9
------------------------------------*/

.u-shadow-v9 {
  box-shadow: 1px 1px 1px #eee;
}

/*------------------------------------
  Box-shadows-v10
------------------------------------*/

.u-shadow-v10 {
  box-shadow: 2px 2px 2px #eee;
}

/*------------------------------------
  Box-shadows-v11
------------------------------------*/

.u-shadow-v11 {
  box-shadow: 0 0 2px #ccc;
}

/*------------------------------------
  Box-shadows-v12
------------------------------------*/

.u-shadow-v12 {
  box-shadow: inset 2px 2px 2px 0 #ccc;
}

/*------------------------------------
  Box-shadows-v13
------------------------------------*/

.u-shadow-v13 {
  box-shadow: inset 2px 2px 2px 0 #CAD105;
}

/*------------------------------------
  Box-shadows-v14
------------------------------------*/

.u-shadow-v14 {
  box-shadow: 2px 2px 2px 0 #eee;
}

/*------------------------------------
  Box-shadows-v15
------------------------------------*/

.u-shadow-v15 {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
}

/*------------------------------------
  Box-shadows-v16
------------------------------------*/

.u-shadow-v16 {
  box-shadow: inset 5px 5px 5px 0 rgba(17, 17, 17, 0.5);
}

/*------------------------------------
  Box-shadows-v17
------------------------------------*/

.u-shadow-v17 {
  box-shadow: 3px 2px 8px 2px rgba(0, 0, 0, 0.17);
}

/*------------------------------------
  Box-shadows-v18
------------------------------------*/

.u-shadow-v18 {
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15);
}

/*------------------------------------
  Box-shadows-v19
------------------------------------*/

.u-shadow-v19 {
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1);
}

.u-shadow-v19--lightblue {
  box-shadow: 0 5px 10px -6px rgba(53, 92, 118, 0.15);
}

/*------------------------------------
  Box-shadows-v20
------------------------------------*/

.u-shadow-v20 {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

.u-shadow-v20--hover:hover {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
}

/*------------------------------------
  Box-shadows-v21
------------------------------------*/

.u-shadow-v21 {
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09);
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: 0.3s;
}

.u-shadow-v21--hover:hover {
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
}

/*------------------------------------
  Box-shadows-v22
------------------------------------*/

.u-shadow-v22 {
  box-shadow: 0 2px 5px #eee;
}

/*------------------------------------
  Box-shadows-v23
------------------------------------*/

.u-shadow-v23 {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  Box-shadows-v24
------------------------------------*/

.u-shadow-v24 {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06);
}

.g-parent.active .u-shadow-v24--active {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06);
}

/*------------------------------------
  Box-shadows-v25
------------------------------------*/

.u-shadow-v25 {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07);
}

/*------------------------------------
  Box-shadows-v26
------------------------------------*/

.u-shadow-v26 {
  box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  Box-shadows-v27
------------------------------------*/

.u-shadow-v27 {
  box-shadow: 0 0 3px #b5b5b5;
}

/*------------------------------------
  Box-shadows-v28
------------------------------------*/

.u-shadow-v28 {
  box-shadow: 0 10px 45px -5px rgba(0, 0, 0, 0.04);
}

/*------------------------------------
  Box-shadows-v29
------------------------------------*/

.u-shadow-v29 {
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.1);
}

.u-shadow-v29--lightblue {
  box-shadow: 0 10px 30px 0 rgba(53, 92, 118, 0.075);
}

/*------------------------------------
  Box-shadows-v30
------------------------------------*/

.u-shadow-v30 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/*------------------------------------
  Box-shadows-v31
------------------------------------*/

.u-shadow-v31 {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.075);
}

/*------------------------------------
  Box-shadows-v32
------------------------------------*/

.u-shadow-v32 {
  box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
}

/*------------------------------------
  Box-shadows-v33
------------------------------------*/

.u-shadow-v33 {
  box-shadow: 0 6px 15px -6px rgba(202, 209, 5, 0.3);
}

/*------------------------------------
  Box-shadows-v34
------------------------------------*/

.u-shadow-v34 {
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1);
}

/*------------------------------------
  Box-shadows-v35
------------------------------------*/

.u-shadow-v35 {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045);
}

.u-shadow-v35--active.active {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045);
  transition-duration: 0.2s;
}

.u-shadow-v35.g-bg-teal-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(24, 186, 155, 0.175);
}

.u-shadow-v35.g-bg-purple-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(154, 105, 203, 0.175);
}

.u-shadow-v35.g-bg-blue-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(53, 92, 118, 0.175);
}

/*------------------------------------
  Box-shadows-v36
------------------------------------*/

.u-shadow-v36 {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.14);
}

/*------------------------------------
  Box-shadows-v37
------------------------------------*/

.u-shadow-v37 {
  box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7);
}

.u-shadow-v37--hover:hover {
  box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7);
  transition-duration: 0.2s;
}

/*------------------------------------
  Box-shadows-v38
------------------------------------*/

.u-shadow-v38 {
  box-shadow: 0 2px 35px 0 rgba(235, 237, 242, 0.7);
}

/*------------------------------------
  Box-shadows-v39
------------------------------------*/

.u-shadow-v39 {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}

/*------------------------------------
  Box-shadows-v40
------------------------------------*/

.u-shadow-v40 {
  box-shadow: -9px -9px 20px -9px rgba(0, 0, 0, 0.1);
}

/*------------------------------------
  Box-shadows-v41
------------------------------------*/

.u-shadow-v41 {
  box-shadow: 10px 40px 120px rgba(0, 0, 0, 0.1);
}

/*------------------------------------
  Form Elements
------------------------------------*/

.u-form-control {
  padding: 0.8rem 1rem 0.6rem;
}

.u-form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control::-moz-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control:-ms-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control::-ms-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control::placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control::-moz-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

.u-form-control-sm {
  padding: 0.4rem 0.5rem 0.1rem;
  font-size: 0.875rem;
}

.u-form-control-lg {
  padding: 0.75rem 1.5rem 0.55rem;
  font-size: 1.25rem;
}

.u-form-control-shadow--focus:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.u-textarea-expandable {
  max-height: 42px;
  transition-property: max-height;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.u-textarea-expandable:focus {
  max-height: 90px;
}

.u-input-group-addon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.form-control + .u-input-group-addon:not(:first-child) {
  border-left: 0;
}

/*------------------------------------
  States
------------------------------------*/

/*------------------------------------
  Success states
------------------------------------*/

/*------------------------------------
  Success state v1-1
------------------------------------*/

.u-has-success-v1-1 .form-control,
.u-has-success-v1-1 [class*=input-group-],
.u-has-success-v1-1 [class*=u-select] {
  background-color: #f0fff0;
  border-color: #CAD105;
}

.u-has-success-v1-1 .form-control[readonly],
.u-has-success-v1-1 [class*=input-group-][readonly],
.u-has-success-v1-1 [class*=u-select][readonly] {
  background-color: #f0fff0;
}

.u-has-success-v1-1 .form-control-feedback {
  color: #CAD105;
}

.u-has-success-v1-1 [class*=u-check-icon] {
  color: #f0fff0;
  background-color: #f0fff0;
}

.u-has-success-v1-1 [class*=u-check-icon] i {
  color: rgba(202, 209, 5, 0.2);
}

.u-has-success-v1-1 [class*=input-group-],
.u-has-success-v1-1 [class*=input-group-]:last-child,
.u-has-success-v1-1 .chosen-single div b {
  color: #CAD105;
}

/*------------------------------------
  Success state v1-2
------------------------------------*/

.u-has-success-v1-2 {
  position: relative;
}

.u-has-success-v1-2 .form-control,
.u-has-success-v1-2 [class*=input-group-],
.u-has-success-v1-2 [class*=u-select] {
  background-color: #f0fff0;
  border-color: #CAD105;
}

.u-has-success-v1-2 .form-control[readonly],
.u-has-success-v1-2 [class*=input-group-][readonly],
.u-has-success-v1-2 [class*=u-select][readonly] {
  background-color: #f0fff0;
}

.u-has-success-v1-2 .form-control-feedback {
  color: #CAD105;
}

.u-has-success-v1-2 [class*=u-check-icon] {
  color: #f0fff0;
  background-color: #f0fff0;
  border-radius: 50%;
}

.u-has-success-v1-2 [class*=u-check-icon] i {
  color: rgba(202, 209, 5, 0.2);
}

.u-has-success-v1-2 [class*=input-group-],
.u-has-success-v1-2 [class*=input-group-]:last-child,
.u-has-success-v1-2 .chosen-single div b {
  color: #CAD105;
}

.u-has-success-v1-2 [class*=input-group-],
.u-has-success-v1-2 [class*=input-group-]:last-child {
  color: #fff;
  background-color: #CAD105;
}

.u-has-success-v1-2 .form-control-feedback::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 18px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #CAD105 transparent transparent transparent;
}

/*------------------------------------
  Error states
------------------------------------*/

/*------------------------------------
  Error state v1
------------------------------------*/

.u-has-error-v1 .form-control,
.u-has-error-v1 [class*=input-group-],
.u-has-error-v1 [class*=u-select] {
  background-color: #fff0f0;
}

.u-has-error-v1 .form-control[readonly],
.u-has-error-v1 [class*=input-group-][readonly],
.u-has-error-v1 [class*=u-select][readonly] {
  background-color: #fff0f0;
}

.u-has-error-v1 .form-control-feedback {
  color: #f00;
}

.u-has-error-v1 [class*=u-check-icon] {
  background-color: #fff0f0;
}

/*------------------------------------
  Error state v1-2
------------------------------------*/

.u-has-error-v1-2 .form-control,
.u-has-error-v1-2 [class*=input-group-],
.u-has-error-v1-2 [class*=u-select] {
  background-color: #fff0f0;
  border-color: #f00;
}

.u-has-error-v1-2 .form-control[readonly],
.u-has-error-v1-2 [class*=input-group-][readonly],
.u-has-error-v1-2 [class*=u-select][readonly] {
  background-color: #fff0f0;
}

.u-has-error-v1-2 .form-control-feedback {
  color: #f00;
}

.u-has-error-v1-2 [class*=u-check-icon] {
  background-color: #fff0f0;
}

.u-has-error-v1-2 [class*=input-group-]:last-child,
.u-has-error-v1-2 .chosen-single div b {
  color: #f00;
}

.u-has-error-v1-2 .error {
  display: block;
}

/*------------------------------------
  Error state v1-3
------------------------------------*/

.u-has-error-v1-3 {
  position: relative;
}

.u-has-error-v1-3 .form-control,
.u-has-error-v1-3 [class*=input-group-],
.u-has-error-v1-3 [class*=u-select] {
  background-color: #fff0f0;
  border-color: #f00;
}

.u-has-error-v1-3 .form-control[readonly],
.u-has-error-v1-3 [class*=input-group-][readonly],
.u-has-error-v1-3 [class*=u-select][readonly] {
  background-color: #fff0f0;
}

.u-has-error-v1-3 .form-control-feedback {
  color: #f00;
}

.u-has-error-v1-3 .form-control-feedback::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 18px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #f00 transparent transparent transparent;
}

.u-has-error-v1-3 [class*=u-check-icon] {
  background-color: #fff0f0;
}

.u-has-error-v1-3 [class*=input-group-]:last-child,
.u-has-error-v1-3 .chosen-single div b {
  color: #f00;
}

.u-has-error-v1-3 .error {
  display: block;
}

.u-has-error-v1-3 [class*=input-group-],
.u-has-error-v1-3 [class*=input-group-]:last-child {
  color: #fff;
  background-color: #f00;
}

/*------------------------------------
  Error state v2
------------------------------------*/

.u-has-error-v2:after {
  content: "\F00D";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "FontAwesome", sans-serif;
  color: #f00;
  transform: translateY(-50%);
}

.u-has-error-v2 input:not([type=checkbox], [type=radio]),
.u-has-error-v2 textarea {
  border-color: #f00;
}

/*------------------------------------
  Disabled states
------------------------------------*/

/*------------------------------------
  Disabled state v1
------------------------------------*/

.u-has-disabled-v1 label,
.u-has-disabled-v1 .form-control,
.u-has-disabled-v1 [class*=input-group-],
.u-has-disabled-v1 [class*=u-select] {
  background-color: #fff;
  opacity: 0.5;
}

.u-has-disabled-v1 label:disabled,
.u-has-disabled-v1 .form-control:disabled,
.u-has-disabled-v1 [class*=input-group-]:disabled,
.u-has-disabled-v1 [class*=u-select]:disabled {
  background-color: #fff;
  opacity: 0.5;
}

/*------------------------------------
  Checked state colors
------------------------------------*/

/* White Colors */

input[type=checkbox]:checked + .g-color-white--checked,
input[type=radio]:checked + .g-color-white--checked,
input[type=checkbox]:checked + * .g-color-white--checked,
input[type=radio]:checked + * .g-color-white--checked {
  color: #fff !important;
}

.g-color-white--checked.g-checked,
.g-checked .g-color-white--checked {
  color: #fff !important;
}

/*------------------------------------
  Focus state color
------------------------------------*/

/* Primary Colors */

.g-color-primary:focus {
  color: #CAD105;
}

/* Black Colors */

.g-color-black--focus:focus {
  color: #000;
}

/* White Colors */

.g-color-white--focus:focus {
  color: #fff !important;
}

/* Gray Colors */

.g-color-gray-light-v4:focus {
  color: #eee !important;
}

/*------------------------------------
  Checked state background
------------------------------------*/

/* Primary Colors */

input[type=checkbox]:checked + .g-bg-primary--checked,
input[type=radio]:checked + .g-bg-primary--checked,
input[type=checkbox]:checked + * .g-bg-primary--checked,
input[type=radio]:checked + * .g-bg-primary--checked {
  background-color: #CAD105 !important;
}

.g-bg-primary--checked.g-checked,
.g-checked .g-bg-primary--checked {
  background-color: #CAD105 !important;
}

/* Black Colors */

input[type=checkbox]:checked + .g-bg-black--checked,
input[type=radio]:checked + .g-bg-black--checked,
input[type=checkbox]:checked + * .g-bg-black--checked,
input[type=radio]:checked + * .g-bg-black--checked {
  background-color: #000 !important;
}

.g-bg-black--checked.g-checked,
.g-checked .g-bg-black--checked {
  background-color: #000 !important;
}

/* White Colors */

input[type=checkbox]:checked + .g-bg-white--checked,
input[type=radio]:checked + .g-bg-white--checked,
input[type=checkbox]:checked + * .g-bg-white--checked,
input[type=radio]:checked + * .g-bg-white--checked {
  background-color: #fff !important;
}

.g-bg-white--checked.g-checked,
.g-checked .g-bg-white--checked {
  background-color: #fff !important;
}

/* Gray Colors */

input[type=checkbox]:checked + .g-bg-dark-dark-v1--checked,
input[type=radio]:checked + .g-bg-dark-dark-v1--checked,
input[type=checkbox]:checked + * .g-bg-dark-dark-v1--checked,
input[type=radio]:checked + * .g-bg-dark-dark-v1--checked {
  background-color: #111 !important;
}

.g-bg-dark-dark-v1--checked.g-checked,
.g-checked .g-bg-dark-dark-v1--checked {
  background-color: #111 !important;
}

input[type=checkbox]:checked + .g-bg-dark-dark-v2--checked,
input[type=radio]:checked + .g-bg-dark-dark-v2--checked,
input[type=checkbox]:checked + * .g-bg-dark-dark-v2--checked,
input[type=radio]:checked + * .g-bg-dark-dark-v2--checked {
  background-color: #333 !important;
}

.g-bg-dark-dark-v2--checked.g-checked,
.g-checked .g-bg-dark-dark-v2--checked {
  background-color: #333 !important;
}

input[type=checkbox]:checked + .g-bg-dark-dark-v3--checked,
input[type=radio]:checked + .g-bg-dark-dark-v3--checked,
input[type=checkbox]:checked + * .g-bg-dark-dark-v3--checked,
input[type=radio]:checked + * .g-bg-dark-dark-v3--checked {
  background-color: #555 !important;
}

.g-bg-dark-dark-v3--checked.g-checked,
.g-checked .g-bg-dark-dark-v3--checked {
  background-color: #555 !important;
}

input[type=checkbox]:checked + .g-bg-dark-dark-v4--checked,
input[type=radio]:checked + .g-bg-dark-dark-v4--checked,
input[type=checkbox]:checked + * .g-bg-dark-dark-v4--checked,
input[type=radio]:checked + * .g-bg-dark-dark-v4--checked {
  background-color: #777 !important;
}

.g-bg-dark-dark-v4--checked.g-checked,
.g-checked .g-bg-dark-dark-v4--checked {
  background-color: #777 !important;
}

input[type=checkbox]:checked + .g-bg-dark-dark-v5--checked,
input[type=radio]:checked + .g-bg-dark-dark-v5--checked,
input[type=checkbox]:checked + * .g-bg-dark-dark-v5--checked,
input[type=radio]:checked + * .g-bg-dark-dark-v5--checked {
  background-color: #999 !important;
}

.g-bg-dark-dark-v5--checked.g-checked,
.g-checked .g-bg-dark-dark-v5--checked {
  background-color: #999 !important;
}

input[type=checkbox]:checked + .g-bg-dark-light-v1--checked,
input[type=radio]:checked + .g-bg-dark-light-v1--checked,
input[type=checkbox]:checked + * .g-bg-dark-light-v1--checked,
input[type=radio]:checked + * .g-bg-dark-light-v1--checked {
  background-color: #bbb !important;
}

.g-bg-dark-light-v1--checked.g-checked,
.g-checked .g-bg-dark-light-v1--checked {
  background-color: #bbb !important;
}

input[type=checkbox]:checked + .g-bg-dark-light-v2--checked,
input[type=radio]:checked + .g-bg-dark-light-v2--checked,
input[type=checkbox]:checked + * .g-bg-dark-light-v2--checked,
input[type=radio]:checked + * .g-bg-dark-light-v2--checked {
  background-color: #ccc !important;
}

.g-bg-dark-light-v2--checked.g-checked,
.g-checked .g-bg-dark-light-v2--checked {
  background-color: #ccc !important;
}

input[type=checkbox]:checked + .g-bg-dark-light-v3--checked,
input[type=radio]:checked + .g-bg-dark-light-v3--checked,
input[type=checkbox]:checked + * .g-bg-dark-light-v3--checked,
input[type=radio]:checked + * .g-bg-dark-light-v3--checked {
  background-color: #ddd !important;
}

.g-bg-dark-light-v3--checked.g-checked,
.g-checked .g-bg-dark-light-v3--checked {
  background-color: #ddd !important;
}

input[type=checkbox]:checked + .g-bg-dark-light-v4--checked,
input[type=radio]:checked + .g-bg-dark-light-v4--checked,
input[type=checkbox]:checked + * .g-bg-dark-light-v4--checked,
input[type=radio]:checked + * .g-bg-dark-light-v4--checked {
  background-color: #eee !important;
}

.g-bg-dark-light-v4--checked.g-checked,
.g-checked .g-bg-dark-light-v4--checked {
  background-color: #eee !important;
}

input[type=checkbox]:checked + .g-bg-dark-light-v5--checked,
input[type=radio]:checked + .g-bg-dark-light-v5--checked,
input[type=checkbox]:checked + * .g-bg-dark-light-v5--checked,
input[type=radio]:checked + * .g-bg-dark-light-v5--checked {
  background-color: #f7f7f7 !important;
}

.g-bg-dark-light-v5--checked.g-checked,
.g-checked .g-bg-dark-light-v5--checked {
  background-color: #f7f7f7 !important;
}

/* Transparent */

input[type=checkbox]:checked + .g-bg-transparent--checked,
input[type=radio]:checked + .g-bg-transparent--checked,
input[type=checkbox]:checked + * .g-bg-transparent--checked,
input[type=radio]:checked + * .g-bg-transparent--checked {
  background-color: transparent !important;
}

.g-bg-transparent--checked.g-checked,
.g-checked .g-bg-transparent--checked {
  background-color: transparent !important;
}

/* Color Red */

input[type=checkbox]:checked + .g-bg-red--checked,
input[type=radio]:checked + .g-bg-red--checked,
input[type=checkbox]:checked + * .g-bg-red--checked,
input[type=radio]:checked + * .g-bg-red--checked {
  background-color: #f00 !important;
}

.g-bg-red--checked.g-checked,
.g-checked .g-bg-red--checked {
  background-color: #f00 !important;
}

/*------------------------------------
  Checked state Colors
------------------------------------*/

/* Primary Colors */

input[type=checkbox]:checked + .g-color-primary--checked,
input[type=radio]:checked + .g-color-primary--checked,
input[type=checkbox]:checked + * .g-color-primary--checked,
input[type=radio]:checked + * .g-color-primary--checked {
  color: #CAD105 !important;
}

.g-color-primary--checked.g-checked,
.g-checked .g-color-primary--checked {
  color: #CAD105 !important;
}

/*------------------------------------
  Focus state background
------------------------------------*/

/* Black Colors */

.g-bg-black--focus:focus {
  background-color: #000 !important;
}

.g-bg-black-opacity-0_2--focus:focus {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.g-bg-black-opacity-0_4--focus:focus {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

/* Gray Colors */

.g-bg-gray-dark-v1--focus:focus {
  background-color: #111 !important;
}

.g-bg-gray-dark-v2--focus:focus {
  background-color: #333 !important;
}

.g-bg-gray-dark-v3--focus:focus {
  background-color: #555 !important;
}

.g-bg-gray-light-v4--focus:focus {
  background-color: #eee !important;
}

.g-bg-gray-light-v5--focus:focus {
  background-color: #f7f7f7 !important;
}

/* Transparent */

.g-bg-transparent--focus:focus {
  background-color: transparent;
}

/*------------------------------------
  Checked state border
------------------------------------*/

/* Primary Colors */

input[type=checkbox]:checked + .g-brd-primary--checked,
input[type=radio]:checked + .g-brd-primary--checked,
input[type=checkbox]:checked + * .g-brd-primary--checked,
input[type=radio]:checked + * .g-brd-primary--checked {
  border-color: #CAD105 !important;
}

.g-brd-primary--checked.g-checked,
.g-checked .g-brd-primary--checked {
  border-color: #CAD105 !important;
}

/* Black Colors */

input[type=checkbox]:checked + .g-brd-black--checked,
input[type=radio]:checked + .g-brd-black--checked,
input[type=checkbox]:checked + * .g-brd-black--checked,
input[type=radio]:checked + * .g-brd-black--checked {
  border-color: #000 !important;
}

.g-brd-black--checked.g-checked,
.g-checked .g-brd-black--checked {
  border-color: #000 !important;
}

/* White */

input[type=checkbox]:checked + .g-brd-white--checked,
input[type=radio]:checked + .g-brd-white--checked,
input[type=checkbox]:checked + * .g-brd-white--checked,
input[type=radio]:checked + * .g-brd-white--checked {
  border-color: #fff !important;
}

.g-brd-white--checked.g-checked,
.g-checked .g-brd-white--checked {
  border-color: #fff !important;
}

/* Gray Colors */

input[type=checkbox]:checked + .g-brd-gray-dark-v1--checked,
input[type=radio]:checked + .g-brd-gray-dark-v1--checked,
input[type=checkbox]:checked + * .g-brd-gray-dark-v1--checked,
input[type=radio]:checked + * .g-brd-gray-dark-v1--checked {
  border-color: #111 !important;
}

.g-brd-gray-dark-v1--checked.g-checked,
.g-checked .g-brd-gray-dark-v1--checked {
  border-color: #111 !important;
}

input[type=checkbox]:checked + .g-brd-gray-dark-v2--checked,
input[type=radio]:checked + .g-brd-gray-dark-v2--checked,
input[type=checkbox]:checked + * .g-brd-gray-dark-v2--checked,
input[type=radio]:checked + * .g-brd-gray-dark-v2--checked {
  border-color: #333 !important;
}

.g-brd-gray-dark-v2--checked.g-checked,
.g-checked .g-brd-gray-dark-v2--checked {
  border-color: #333 !important;
}

input[type=checkbox]:checked + .g-brd-gray-dark-v3--checked,
input[type=radio]:checked + .g-brd-gray-dark-v3--checked,
input[type=checkbox]:checked + * .g-brd-gray-dark-v3--checked,
input[type=radio]:checked + * .g-brd-gray-dark-v3--checked {
  border-color: #555 !important;
}

.g-brd-gray-dark-v3--checked.g-checked,
.g-checked .g-brd-gray-dark-v3--checked {
  border-color: #555 !important;
}

input[type=checkbox]:checked + .g-brd-gray-dark-v4--checked,
input[type=radio]:checked + .g-brd-gray-dark-v4--checked,
input[type=checkbox]:checked + * .g-brd-gray-dark-v4--checked,
input[type=radio]:checked + * .g-brd-gray-dark-v4--checked {
  border-color: #777 !important;
}

.g-brd-gray-dark-v4--checked.g-checked,
.g-checked .g-brd-gray-dark-v4--checked {
  border-color: #777 !important;
}

input[type=checkbox]:checked + .g-brd-gray-dark-v5--checked,
input[type=radio]:checked + .g-brd-gray-dark-v5--checked,
input[type=checkbox]:checked + * .g-brd-gray-dark-v5--checked,
input[type=radio]:checked + * .g-brd-gray-dark-v5--checked {
  border-color: #999 !important;
}

.g-brd-gray-dark-v5--checked.g-checked,
.g-checked .g-brd-gray-dark-v5--checked {
  border-color: #999 !important;
}

input[type=checkbox]:checked + .g-brd-gray-light-v1--checked,
input[type=radio]:checked + .g-brd-gray-light-v1--checked,
input[type=checkbox]:checked + * .g-brd-gray-light-v1--checked,
input[type=radio]:checked + * .g-brd-gray-light-v1--checked {
  border-color: #bbb !important;
}

.g-brd-gray-light-v1--checked.g-checked,
.g-checked .g-brd-gray-light-v1--checked {
  border-color: #bbb !important;
}

input[type=checkbox]:checked + .g-brd-gray-light-v2--checked,
input[type=radio]:checked + .g-brd-gray-light-v2--checked,
input[type=checkbox]:checked + * .g-brd-gray-light-v2--checked,
input[type=radio]:checked + * .g-brd-gray-light-v2--checked {
  border-color: #ccc !important;
}

.g-brd-gray-light-v2--checked.g-checked,
.g-checked .g-brd-gray-light-v2--checked {
  border-color: #ccc !important;
}

input[type=checkbox]:checked + .g-brd-gray-light-v3--checked,
input[type=radio]:checked + .g-brd-gray-light-v3--checked,
input[type=checkbox]:checked + * .g-brd-gray-light-v3--checked,
input[type=radio]:checked + * .g-brd-gray-light-v3--checked {
  border-color: #ddd !important;
}

.g-brd-gray-light-v3--checked.g-checked,
.g-checked .g-brd-gray-light-v3--checked {
  border-color: #ddd !important;
}

input[type=checkbox]:checked + .g-brd-gray-light-v4--checked,
input[type=radio]:checked + .g-brd-gray-light-v4--checked,
input[type=checkbox]:checked + * .g-brd-gray-light-v4--checked,
input[type=radio]:checked + * .g-brd-gray-light-v4--checked {
  border-color: #eee !important;
}

.g-brd-gray-light-v4--checked.g-checked,
.g-checked .g-brd-gray-light-v4--checked {
  border-color: #eee !important;
}

input[type=checkbox]:checked + .g-brd-gray-light-v5--checked,
input[type=radio]:checked + .g-brd-gray-light-v5--checked,
input[type=checkbox]:checked + * .g-brd-gray-light-v5--checked,
input[type=radio]:checked + * .g-brd-gray-light-v5--checked {
  border-color: #f7f7f7 !important;
}

.g-brd-gray-light-v5--checked.g-checked,
.g-checked .g-brd-gray-light-v5--checked {
  border-color: #f7f7f7 !important;
}

/* Transparent */

input[type=checkbox]:checked + .g-brd-transparent--checked,
input[type=radio]:checked + .g-brd-transparent--checked,
input[type=checkbox]:checked + * .g-brd-transparent--checked,
input[type=radio]:checked + * .g-brd-transparent--checked {
  border-color: transparent !important;
}

.g-brd-transparent--checked.g-checked,
.g-checked .g-brd-transparent--checked {
  border-color: transparent !important;
}

/* Color Red */

input[type=checkbox]:checked + .g-brd-red--checked,
input[type=radio]:checked + .g-brd-red--checked,
input[type=checkbox]:checked + * .g-brd-red--checked,
input[type=radio]:checked + * .g-brd-red--checked {
  border-color: #f00 !important;
}

.g-brd-red--checked.g-checked,
.g-checked .g-brd-red--checked {
  border-color: #f00 !important;
}

/*------------------------------------
  Focus state border
------------------------------------*/

/* Primary Colors */

.g-brd-primary--focus:focus,
.g-brd-primary--focus.g-state-focus *,
.g-brd-primary--focus.g-state-focus *:focus {
  border-color: #CAD105 !important;
}

/* Black Colors */

.g-brd-black--focus:focus,
.g-brd-black--focus.g-state-focus *,
.g-brd-black--focus.g-state-focus *:focus {
  border-color: #000 !important;
}

/* White */

.g-brd-white--focus:focus,
.g-brd-white--focus.g-state-focus *,
.g-brd-white--focus.g-state-focus *:focus {
  border-color: #fff !important;
}

/* Gray Colors */

.g-brd-gray-dark-v1--focus:focus,
.g-brd-gray-dark-v1--focus.g-state-focus *,
.g-brd-gray-dark-v1--focus.g-state-focus *:focus {
  border-color: #111 !important;
}

.g-brd-gray-dark-v2--focus:focus,
.g-brd-gray-dark-v2--focus.g-state-focus *,
.g-brd-gray-dark-v2--focus.g-state-focus *:focus {
  border-color: #333 !important;
}

.g-brd-gray-dark-v3--focus:focus,
.g-brd-gray-dark-v3--focus.g-state-focus *,
.g-brd-gray-dark-v3--focus.g-state-focus *:focus {
  border-color: #555 !important;
}

.g-brd-gray-dark-v4--focus:focus,
.g-brd-gray-dark-v4--focus.g-state-focus *,
.g-brd-gray-dark-v4--focus.g-state-focus *:focus {
  border-color: #777 !important;
}

.g-brd-gray-dark-v5--focus:focus,
.g-brd-gray-dark-v5--focus.g-state-focus *,
.g-brd-gray-dark-v5--focus.g-state-focus *:focus {
  border-color: #999 !important;
}

.g-brd-gray-dark-light-v1--focus:focus,
.g-brd-gray-dark-light-v1--focus.g-state-focus *,
.g-brd-gray-dark-light-v1--focus.g-state-focus *:focus {
  border-color: #bbb !important;
}

.g-brd-gray-dark-light-v2--focus:focus,
.g-brd-gray-dark-light-v2--focus.g-state-focus *,
.g-brd-gray-dark-light-v2--focus.g-state-focus *:focus {
  border-color: #ccc !important;
}

.g-brd-gray-dark-light-v3--focus:focus,
.g-brd-gray-dark-light-v3--focus.g-state-focus *,
.g-brd-gray-dark-light-v3--focus.g-state-focus *:focus {
  border-color: #ddd !important;
}

.g-brd-gray-dark-light-v4--focus:focus,
.g-brd-gray-dark-light-v4--focus.g-state-focus *,
.g-brd-gray-dark-light-v4--focus.g-state-focus *:focus {
  border-color: #eee !important;
}

.g-brd-gray-dark-light-v5--focus:focus,
.g-brd-gray-dark-light-v5--focus.g-state-focus *,
.g-brd-gray-dark-light-v5--focus.g-state-focus *:focus {
  border-color: #f7f7f7 !important;
}

/* Transparent */

.g-brd-transparent--focus:focus,
.g-brd-transparent--focus.g-state-focus *,
.g-brd-transparent--focus.g-state-focus *:focus {
  border-color: transparent !important;
}

/* Color Red */

.g-brd-red--focus:focus,
.g-brd-red--focus.g-state-focus *,
.g-brd-red--focus.g-state-focus *:focus {
  border-color: #f00 !important;
}

/*------------------------------------
  Checked state box shadow
------------------------------------*/

input[type=checkbox]:checked + .u-shadow-v1-5--checked,
input[type=radio]:checked + .u-shadow-v1-5--checked,
input[type=checkbox]:checked + * .u-shadow-v1-5--checked,
input[type=radio]:checked + * .u-shadow-v1-5--checked {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-5--checked.g-checked,
.g-checked .u-shadow-v1-5--checked {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

input[type=checkbox]:checked + .u-shadow-v1-v6--checked,
input[type=radio]:checked + .u-shadow-v1-v6--checked,
input[type=checkbox]:checked + * .u-shadow-v1-v6--checked,
input[type=radio]:checked + * .u-shadow-v1-v6--checked {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.u-shadow-v1-v6--checked.g-checked,
.g-checked .u-shadow-v1-v6--checked {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*------------------------------------
  Checked state opacity
------------------------------------*/

input[type=checkbox]:checked + .g-opacity-1--checked,
input[type=radio]:checked + .g-opacity-1--checked,
input[type=checkbox]:checked + * .g-opacity-1--checked,
input[type=radio]:checked + * .g-opacity-1--checked {
  opacity: 1;
}

.g-opacity-1--checked.g-checked,
.g-checked .g-opacity-1--checked {
  opacity: 1;
}

/*------------------------------------
  Checked state overlay
------------------------------------*/

input[type=checkbox]:checked + .g-overlay-black-0_5--checked::after,
input[type=radio]:checked + .g-overlay-black-0_5--checked::after,
input[type=checkbox]:checked + * > .g-overlay-black-0_5--checked::after,
input[type=radio]:checked + * > .g-overlay-black-0_5--checked::after {
  background-color: rgba(0, 0, 0, 0.5);
}

input[type=checkbox]:checked + .g-overlay-black-0_7--checked::after,
input[type=radio]:checked + .g-overlay-black-0_7--checked::after,
input[type=checkbox]:checked + * > .g-overlay-black-0_7--checked::after,
input[type=radio]:checked + * > .g-overlay-black-0_7--checked::after {
  background-color: rgba(0, 0, 0, 0.7);
}

input[type=checkbox]:checked + .g-overlay-black-gradient-v1--checked::after,
input[type=radio]:checked + .g-overlay-black-gradient-v1--checked::after,
input[type=checkbox]:checked + * > .g-overlay-black-gradient-v1--checked::after,
input[type=radio]:checked + * > .g-overlay-black-gradient-v1--checked::after {
  background-image: linear-gradient(to bottom, transparent 40%, #000 100%);
}

input[type=checkbox]:checked + .g-overlay-primary-0_5--checked::after,
input[type=radio]:checked + .g-overlay-primary-0_5--checked::after,
input[type=checkbox]:checked + * .g-overlay-primary-0_5--checked::after,
input[type=radio]:checked + * .g-overlay-primary-0_5--checked::after {
  background-color: rgba(202, 209, 5, 0.5);
}

.g-overlay-primary-0_5--checked.g-checked::after,
.g-checked .g-overlay-primary-0_5--checked::after {
  background-color: rgba(202, 209, 5, 0.5);
}

input[type=checkbox]:checked + .g-overlay-primary-0_9--checked::after,
input[type=radio]:checked + .g-overlay-primary-0_9--checked::after,
input[type=checkbox]:checked + * .g-overlay-primary-0_9--checked::after,
input[type=radio]:checked + * .g-overlay-primary-0_9--checked::after {
  background-color: rgba(202, 209, 5, 0.9);
}

.g-overlay-primary-0_9--checked.g-checked::after,
.g-checked .g-overlay-primary-0_9--checked::after {
  background-color: rgba(202, 209, 5, 0.9);
}

/*------------------------------------
  Fields
------------------------------------*/

[data-capitalize] {
  text-transform: uppercase;
}

label.error {
  color: #d9534f;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

input:not([type=checkbox]):not([type=radio]).error,
textarea.error,
select.error {
  border-color: #d9534f !important;
}

.js-autocomplete--ajax {
  position: relative;
  z-index: 10;
}

/*------------------------------------
  Fields Group v1
------------------------------------*/

.u-input-group-v1 {
  position: relative;
}

.u-input-group-v1 input:not([type=checkbox]):not([type=radio]),
.u-input-group-v1 textarea,
.u-input-group-v1 [class*=u-select] {
  line-height: 1.75rem;
  padding: 40px 15px 10px;
}

.u-input-group-v1 input:not([type=checkbox]):not([type=radio]):focus + label,
.u-input-group-v1 input:not([type=checkbox]):not([type=radio])[value] + label,
.u-input-group-v1 input:not([type=checkbox]):not([type=radio])[placeholder] + label,
.u-input-group-v1 input:not([type=checkbox]):not([type=radio]).g-state-not-empty + label,
.u-input-group-v1 textarea:focus + label,
.u-input-group-v1 textarea[value] + label,
.u-input-group-v1 textarea[placeholder] + label,
.u-input-group-v1 textarea.g-state-not-empty + label,
.u-input-group-v1 [class*=u-select]:focus + label,
.u-input-group-v1 [class*=u-select][value] + label,
.u-input-group-v1 [class*=u-select][placeholder] + label,
.u-input-group-v1 [class*=u-select].g-state-not-empty + label {
  top: 20px;
  font-size: 90%;
}

.u-input-group-v1 label {
  position: absolute;
  top: 50%;
  left: 15px;
  transition-property: top, font-size;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transform: translateY(-50%);
  margin-bottom: 0;
}

/*------------------------------------
  Fields Group v2
------------------------------------*/

.u-input-group-v2 {
  position: relative;
}

.u-input-group-v2 input:not([type=checkbox]):not([type=radio]),
.u-input-group-v2 textarea,
.u-input-group-v2 [class*=u-select] {
  line-height: 1.75rem;
  padding: 10px 15px;
}

.u-input-group-v2 input:not([type=checkbox]):not([type=radio]):focus + label,
.u-input-group-v2 input:not([type=checkbox]):not([type=radio])[value] + label,
.u-input-group-v2 input:not([type=checkbox]):not([type=radio])[placeholder] + label,
.u-input-group-v2 input:not([type=checkbox]):not([type=radio]).g-state-not-empty + label,
.u-input-group-v2 textarea:focus + label,
.u-input-group-v2 textarea[value] + label,
.u-input-group-v2 textarea[placeholder] + label,
.u-input-group-v2 textarea.g-state-not-empty + label,
.u-input-group-v2 [class*=u-select]:focus + label,
.u-input-group-v2 [class*=u-select][value] + label,
.u-input-group-v2 [class*=u-select][placeholder] + label,
.u-input-group-v2 [class*=u-select].g-state-not-empty + label {
  top: 0;
  font-size: 90%;
}

.u-input-group-v2 label {
  position: absolute;
  top: 50%;
  left: 10px;
  background-color: #fff;
  padding: 0 5px;
  margin-bottom: 0;
  transition-property: top, font-size;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transform: translateY(-50%);
}

.u-input-group-v2 textarea + label {
  top: 20px;
}

/*------------------------------------
  Fields Group v3
------------------------------------*/

.u-input-group-v3 input:not([type=checkbox]):not([type=radio]),
.u-input-group-v3 textarea,
.u-input-group-v3 [class*=u-select] {
  margin-top: -5px;
  border-color: rgba(204, 204, 204, 0.5);
  border-style: solid;
  border-width: 0 0 1px;
  transition: all 0.3s ease 0s;
}

.u-input-group-v3 input:not([type=checkbox]):not([type=radio]):focus,
.u-input-group-v3 textarea:focus,
.u-input-group-v3 [class*=u-select]:focus {
  border-color: rgba(202, 209, 5, 0.5);
  box-shadow: 0 1px 0 0 #CAD105;
}

.u-input-group-v3 label {
  margin-bottom: 0;
}

/*------------------------------------
  Fields Group v4
------------------------------------*/

.u-input-group-v4 {
  position: relative;
}

.u-input-group-v4 input:not([type=checkbox]):not([type=radio]),
.u-input-group-v4 textarea,
.u-input-group-v4 [class*=u-select] {
  background-color: transparent;
  border-color: rgba(204, 204, 204, 0.5);
  border-style: solid;
  border-width: 0 0 1px;
}

.u-input-group-v4 input:not([type=checkbox]):not([type=radio]):focus,
.u-input-group-v4 input:not([type=checkbox]):not([type=radio])[value],
.u-input-group-v4 input:not([type=checkbox]):not([type=radio])[placeholder],
.u-input-group-v4 input:not([type=checkbox]):not([type=radio]).g-state-not-empty,
.u-input-group-v4 textarea:focus,
.u-input-group-v4 textarea[value],
.u-input-group-v4 textarea[placeholder],
.u-input-group-v4 textarea.g-state-not-empty,
.u-input-group-v4 [class*=u-select]:focus,
.u-input-group-v4 [class*=u-select][value],
.u-input-group-v4 [class*=u-select][placeholder],
.u-input-group-v4 [class*=u-select].g-state-not-empty {
  background-color: transparent;
  border-color: rgba(202, 209, 5, 0.5);
  box-shadow: 0 1px 0 0 #CAD105;
}

.u-input-group-v4 input:not([type=checkbox]):not([type=radio]):focus + label,
.u-input-group-v4 input:not([type=checkbox]):not([type=radio])[value] + label,
.u-input-group-v4 input:not([type=checkbox]):not([type=radio])[placeholder] + label,
.u-input-group-v4 input:not([type=checkbox]):not([type=radio]).g-state-not-empty + label,
.u-input-group-v4 textarea:focus + label,
.u-input-group-v4 textarea[value] + label,
.u-input-group-v4 textarea[placeholder] + label,
.u-input-group-v4 textarea.g-state-not-empty + label,
.u-input-group-v4 [class*=u-select]:focus + label,
.u-input-group-v4 [class*=u-select][value] + label,
.u-input-group-v4 [class*=u-select][placeholder] + label,
.u-input-group-v4 [class*=u-select].g-state-not-empty + label {
  top: 0;
  font-size: 90%;
}

.u-input-group-v4 label {
  position: absolute;
  top: 50%;
  left: 0;
  margin-bottom: 0;
  background-color: transparent;
  color: #999;
  transition-property: top, font-size;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transform: translateY(-50%);
}

.u-input-group-v4 textarea + label {
  top: 20px;
}

/*------------------------------------
  Checkboxes
------------------------------------*/

.u-check {
  position: relative;
  cursor: pointer;
}

.u-check-icon-font {
  display: inline-block;
  font-size: 0;
  padding-left: 1px;
  padding-right: 1px;
}

.u-check-icon-font i {
  font-size: 22px;
  color: #ccc;
}

.u-check-icon-checkbox,
.u-check-icon-radio {
  display: inline-block;
}

.u-check input[type=checkbox]:checked + .u-check-icon-font i,
.u-check input[type=checkbox]:checked + * .u-check-icon-font i,
.u-check input[type=radio]:checked + .u-check-icon-font i,
.u-check input[type=radio]:checked + * .u-check-icon-font i {
  color: #CAD105;
}

.g-hide-check {
  display: block !important;
}

.g-checked > * .g-hide-check,
input[type=checkbox]:checked + .g-hide-check,
input[type=radio]:checked + .g-hide-check,
input[type=checkbox]:checked + * .g-hide-check,
input[type=radio]:checked + * .g-hide-check {
  display: none !important;
}

.g-show-check {
  display: none !important;
}

.g-checked > * .g-show-check,
input[type=checkbox]:checked + .g-show-check,
input[type=radio]:checked + .g-show-check,
input[type=checkbox]:checked + * .g-show-check,
input[type=radio]:checked + * .g-show-check {
  display: block !important;
}

/*------------------------------------
  Checkboxes v1
------------------------------------*/

.u-check-icon-checkbox-v1,
.u-check-icon-radio-v1 {
  background-color: #fff;
  border: solid 1px #ccc;
}

.u-check-icon-checkbox-v1 {
  border-radius: 1px;
}

.u-check-icon-radio-v1 {
  border-radius: 50%;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v1,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v1,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v1,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v1 {
  color: #fff;
  background-color: #CAD105;
  border-color: #CAD105;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v1::before,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v1::before,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v1::before,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v1::before {
  content: attr(data-check-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.u-check input[type=checkbox]:checked + .u-check-icon-radio-v1,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v1,
.u-check input[type=radio]:checked + .u-check-icon-radio-v1,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v1 {
  border-width: 4px;
  border-color: #CAD105;
}

/*------------------------------------
  Checkboxes v2
------------------------------------*/

.u-check-icon-checkbox-v2,
.u-check-icon-radio-v2 {
  width: 20px;
  height: 20px;
  border: solid 1px #CAD105;
}

.u-check-icon-checkbox-v2 {
  border-radius: 1px;
}

.u-check-icon-radio-v2 {
  border-radius: 50%;
}

/*------------------------------------
  Checkboxes v3
------------------------------------*/

.u-check-icon-checkbox-v3,
.u-check-icon-radio-v3 {
  width: 40px;
  height: 40px;
  border: solid 1px #CAD105;
  border-radius: 50%;
}

/*------------------------------------
  Checkboxes v4
------------------------------------*/

.u-check-icon-checkbox-v4,
.u-check-icon-radio-v4 {
  width: 18px;
  height: 18px;
  font-size: 12px;
  border: solid 1px #ccc;
}

.u-check-icon-checkbox-v4 i::before,
.u-check-icon-radio-v4 i::before {
  content: attr(data-uncheck-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-check-icon-radio-v4 {
  border-radius: 50%;
}

.u-check-icon-radio-v4 i {
  border-radius: 50%;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v4,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v4,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v4,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v4,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v4,
.u-check input[type=radio]:checked + .u-check-icon-radio-v4,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v4,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v4 {
  color: #CAD105;
  border-color: #CAD105;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v4 i::before,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v4 i::before,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v4 i::before,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v4 i::before,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v4 i::before,
.u-check input[type=radio]:checked + .u-check-icon-radio-v4 i::before,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v4 i::before,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v4 i::before {
  content: attr(data-check-icon);
}

/*------------------------------------
  Checkboxes v5
------------------------------------*/

.u-check-icon-checkbox-v5,
.u-check-icon-radio-v5 {
  width: 18px;
  height: 18px;
}

.u-check-icon-checkbox-v5 i,
.u-check-icon-radio-v5 i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 1px #ccc;
  transform: translate(-50%, -50%);
}

.u-check-icon-checkbox-v5 {
  border-radius: 1px;
}

.u-check-icon-radio-v5 {
  border-radius: 50%;
}

.u-check-icon-radio-v5 i {
  border-radius: 50%;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v5 i,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v5 i,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v5 i,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v5 i,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v5 i,
.u-check input[type=radio]:checked + .u-check-icon-radio-v5 i,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v5 i,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v5 i {
  border-width: 4px;
  border-color: #CAD105;
}

/*------------------------------------
  Checkboxes v6
------------------------------------*/

.u-check-icon-checkbox-v6,
.u-check-icon-radio-v6 {
  width: 18px;
  height: 18px;
  font-size: 12px;
}

.u-check-icon-checkbox-v6 i,
.u-check-icon-radio-v6 i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #ccc;
  transform: translate(-50%, -50%);
  color: transparent;
}

.u-check-icon-checkbox-v6 i::before,
.u-check-icon-radio-v6 i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-check-icon-radio-v6 {
  border-radius: 50%;
}

.u-check-icon-radio-v6 i {
  border-radius: 50%;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v6 i,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v6 i,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v6 i,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v6 i,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v6 i,
.u-check input[type=radio]:checked + .u-check-icon-radio-v6 i,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v6 i,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v6 i {
  color: #fff;
  background-color: #CAD105;
  border-color: #CAD105;
}

/*------------------------------------
  Checkboxes v7
------------------------------------*/

.u-check-icon-checkbox-v7,
.u-check-icon-radio-v7 {
  cursor: pointer;
  display: block;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #ddd;
  border: solid 1px #ddd;
  border-radius: 12px;
}

.u-check-icon-checkbox-v7 i::before,
.u-check-icon-checkbox-v7 i::after,
.u-check-icon-radio-v7 i::before,
.u-check-icon-radio-v7 i::after {
  content: "";
  display: block;
  position: absolute;
}

.u-check-icon-checkbox-v7 i::before,
.u-check-icon-radio-v7 i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: right;
  padding: 2px 7px;
}

.u-check-icon-checkbox-v7 i::after,
.u-check-icon-radio-v7 i::after {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border-radius: 50%;
  transform: translateY(-50%);
  transition-property: left;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v7,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v7,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v7,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v7,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v7,
.u-check input[type=radio]:checked + .u-check-icon-radio-v7,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v7,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v7 {
  color: #fff;
  background-color: #CAD105;
  border-color: #CAD105;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v7 i:before,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v7 i:before,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v7 i:before,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v7 i:before,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v7 i:before,
.u-check input[type=radio]:checked + .u-check-icon-radio-v7 i:before,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v7 i:before,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v7 i:before {
  content: attr(data-check-icon);
  text-align: left;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v7 i::after,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v7 i::after,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v7 i::after,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v7 i::after,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v7 i::after,
.u-check input[type=radio]:checked + .u-check-icon-radio-v7 i::after,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v7 i::after,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v7 i::after {
  left: calc(100% - 19px);
  background-color: #fff;
}

/*------------------------------------
  Checkboxes v7
------------------------------------*/

.u-check-icon-checkbox-v8,
.u-check-icon-radio-v8 {
  cursor: pointer;
  display: block;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #ddd;
  border: solid 1px #ddd;
  border-radius: 12px;
}

.u-check-icon-checkbox-v8 i::before,
.u-check-icon-checkbox-v8 i::after,
.u-check-icon-radio-v8 i::before,
.u-check-icon-radio-v8 i::after {
  content: "";
  display: block;
  position: absolute;
}

.u-check-icon-checkbox-v8 i::before,
.u-check-icon-radio-v8 i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: right;
  padding: 2px 7px;
}

.u-check-icon-checkbox-v8 i::after,
.u-check-icon-radio-v8 i::after {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border-radius: 50%;
  transform: translateY(-50%);
  transition-property: left;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v8,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v8,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v8,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v8,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v8,
.u-check input[type=radio]:checked + .u-check-icon-radio-v8,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v8,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v8 {
  color: #CAD105;
  border-color: #CAD105;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v8 i:before,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v8 i:before,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v8 i:before,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v8 i:before,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v8 i:before,
.u-check input[type=radio]:checked + .u-check-icon-radio-v8 i:before,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v8 i:before,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v8 i:before {
  content: attr(data-check-icon);
  text-align: left;
}

.u-check input[type=checkbox]:checked + .u-check-icon-checkbox-v8 i::after,
.u-check input[type=checkbox]:checked + .u-check-icon-radio-v8 i::after,
.u-check input[type=checkbox]:checked + * .u-check-icon-checkbox-v8 i::after,
.u-check input[type=checkbox]:checked + * .u-check-icon-radio-v8 i::after,
.u-check input[type=radio]:checked + .u-check-icon-checkbox-v8 i::after,
.u-check input[type=radio]:checked + .u-check-icon-radio-v8 i::after,
.u-check input[type=radio]:checked + * .u-check-icon-checkbox-v8 i::after,
.u-check input[type=radio]:checked + * .u-check-icon-radio-v8 i::after {
  left: calc(100% - 19px);
  background-color: #CAD105;
}

/* P */

[class*=u-checkbox-v1] {
  display: none;
}

[class*=u-checkbox-v1] + label {
  cursor: pointer;
}

.u-checkbox-v1--checked-color-primary:checked + label {
  color: #CAD105 !important;
}

.u-checkbox-v1--checked-brd-primary:checked + label {
  border-color: #CAD105 !important;
}

/*------------------------------------
  File Attachments
------------------------------------*/

/*------------------------------------
  File Attachments v1
------------------------------------*/

.u-file-attach-v1 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.u-file-attach-v1 input[type=file] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer;
}

.u-file-attach-v1 input[readonly] {
  background-color: transparent;
}

/*------------------------------------
  File Attachments v2
------------------------------------*/

.u-file-attach-v2 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.u-file-attach-v2 input[type=file] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer;
}

/*------------------------------------
  File Attachments v2
------------------------------------*/

.u-file-attach-v3 {
  cursor: pointer;
  position: relative;
  text-align: center;
  background-color: #f7f7f7;
  overflow: hidden;
  border: 1px dashed #ccc;
  padding: 60px;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.u-file-attach-v3 input[type=file] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer;
}

.u-file-attach-v3:hover {
  background-color: #eee;
}

/*------------------------------------
  Selects
------------------------------------*/

.input-group select {
  -webkit-appearance: none;
}

/*------------------------------------
  Selects v1
------------------------------------*/

.u-select-v1 {
  position: relative;
  max-width: 100%;
  font-size: 1rem;
  color: rgba(70, 76, 94, 0.3);
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: 0.4rem 1rem;
}

.u-select-v1 .chosen-single {
  position: static;
  height: auto;
  color: inherit;
  background-image: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  line-height: inherit;
}

.u-select-v1 .chosen-single span {
  margin-right: 0;
}

.u-select-v1 .chosen-single span img {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.u-select-v1 .chosen-single div {
  width: 40px;
}

.u-select-v1 .chosen-single div b {
  background: none !important;
}

.u-select-v1 .chosen-single div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-select-v1 .chosen-single div b i:first-child {
  display: inline-block;
}

.u-select-v1 .chosen-single div b i:last-child {
  display: none;
}

.u-select-v1 .chosen-single:focus {
  outline: 0 none;
}

.u-select-v1 .chosen-drop {
  width: calc(100% + 2px);
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 0;
  border-top-width: 1px;
  margin-left: -1px;
}

.u-select-v1 .chosen-results {
  padding: 0;
  margin: 0;
}

.u-select-v1 .chosen-results > li {
  position: relative;
  font-size: inherit;
  color: #999;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 12px 16px;
}

.u-select-v1 .chosen-results > li img {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.u-select-v1 .chosen-results > li div {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
}

.u-select-v1 .chosen-results > li div b {
  display: block;
  width: 100%;
  height: 100%;
}

.u-select-v1 .chosen-results > li div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
}

.u-select-v1 .chosen-results > li:last-child {
  border-bottom-width: 0;
}

.u-select-v1 .chosen-results > li.highlighted {
  color: #999;
  background-image: none;
  background-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.u-select-v1 .chosen-results > li.highlighted.g-color-white--active {
  color: #fff !important;
}

.u-select-v1 .chosen-results > li.highlighted.g-bg-primary--active {
  background-color: #CAD105 !important;
}

.u-select-v1 .chosen-results > li.result-selected {
  color: #999;
  background-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.u-select-v1 .chosen-results > li.result-selected div b i {
  display: inline-block;
}

.u-select-v1.chosen-container-active .chosen-single {
  background-image: none;
  box-shadow: none;
}

.u-select-v1.chosen-with-drop .chosen-single {
  border: none;
  border-radius: 0;
}

.u-select-v1.chosen-with-drop .chosen-single div b i:first-child {
  display: none;
}

.u-select-v1.chosen-with-drop .chosen-single div b i:last-child {
  display: inline-block;
}

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices {
  background-image: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice {
  font-size: 12px;
  color: #999;
  background-image: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0;
  padding: 5px 20px 5px 5px;
}

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice-close {
  top: 50%;
  transform: translateY(-50%);
}

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field {
  height: 22px;
}

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field input[type=text] {
  height: 22px;
  margin: 0;
}

.u-select-v1.u-select-multiple-custom .chosen-choices {
  display: none;
}

.u-select-v1.u-select-multiple-custom .chosen-drop {
  width: 100%;
  position: static;
  top: auto;
  left: auto;
  z-index: 3;
  border: none;
  box-shadow: none;
  margin-left: 0;
}

.u-select-v1.u-dropdown-sm {
  padding: 0.1rem 0.5rem;
  font-size: 0.875rem;
}

.u-select-v1.u-dropdown-sm .chosen-results > li {
  padding: 6px 8px;
}

.u-select-v1.u-dropdown-lg {
  padding: 0.55rem 1.5rem;
  font-size: 1.25rem;
}

.u-select-v1.u-dropdown-lg .chosen-results > li {
  padding: 14px 18px;
}

/*------------------------------------
  Selects v2
------------------------------------*/

.u-select-v2 {
  position: relative;
  max-width: 100%;
  font-size: 1rem;
  color: rgba(70, 76, 94, 0.3);
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: 0.4rem 1rem;
}

.u-select-v2 .chosen-single {
  position: static;
  height: auto;
  color: inherit;
  background-image: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  line-height: inherit;
}

.u-select-v2 .chosen-single span {
  margin-right: 0;
}

.u-select-v2 .chosen-single span img {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.u-select-v2 .chosen-single div {
  width: 50px;
}

.u-select-v2 .chosen-single div b {
  background: none !important;
}

.u-select-v2 .chosen-single div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-select-v2 .chosen-single div b i:first-child {
  display: inline-block;
}

.u-select-v2 .chosen-single div b i:last-child {
  display: none;
}

.u-select-v2 .chosen-single:focus {
  outline: 0 none;
}

.u-select-v2 .chosen-drop,
.u-select-v2 .chosen-results {
  border-radius: 3px;
}

.u-select-v2 .chosen-drop {
  width: calc(100% + 2px);
  box-sizing: border-box;
  border: none;
  box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
  margin-left: -1px;
  margin-top: 7px;
}

.u-select-v2 .chosen-results {
  padding: 0;
  margin: 0;
}

.u-select-v2 .chosen-results > li {
  position: relative;
  font-size: inherit;
  color: #999;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 12px 16px;
}

.u-select-v2 .chosen-results > li img {
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.u-select-v2 .chosen-results > li div {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
}

.u-select-v2 .chosen-results > li div b {
  display: block;
  width: 100%;
  height: 100%;
}

.u-select-v2 .chosen-results > li div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  transform: translate(-50%, -50%);
}

.u-select-v2 .chosen-results > li:last-child {
  border-bottom-width: 0;
}

.u-select-v2 .chosen-results > li.highlighted {
  color: #999;
  background-image: none;
  background-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.u-select-v2 .chosen-results > li.highlighted.g-color-white--active {
  color: #fff !important;
}

.u-select-v2 .chosen-results > li.highlighted.g-bg-primary--active {
  background-color: #CAD105 !important;
}

.u-select-v2 .chosen-results > li.result-selected {
  color: #999;
  background-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.u-select-v2 .chosen-results > li.result-selected div b i {
  display: inline-block;
}

.u-select-v2.chosen-container-active .chosen-single {
  background-image: none;
  box-shadow: none;
}

.u-select-v2.chosen-with-drop .chosen-single {
  border: none;
  border-radius: 0;
}

.u-select-v2.chosen-with-drop .chosen-single div b i:first-child {
  display: none;
}

.u-select-v2.chosen-with-drop .chosen-single div b i:last-child {
  display: inline-block;
}

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices {
  background-image: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice {
  font-size: 12px;
  color: #999;
  background-image: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0;
  padding: 5px 20px 5px 5px;
}

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice-close {
  top: 50%;
  transform: translateY(-50%);
}

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field {
  height: 22px;
}

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field input[type=text] {
  height: 22px;
  margin: 0;
}

.u-select-v2.u-select-multiple-custom .chosen-choices {
  display: none;
}

.u-select-v2.u-select-multiple-custom .chosen-drop {
  width: 100%;
  position: static;
  top: auto;
  left: auto;
  z-index: 3;
  border: none;
  box-shadow: none;
  margin-left: 0;
}

.u-select-v2.u-dropdown-sm {
  padding: 0.1rem 0.5rem;
  font-size: 0.875rem;
}

.u-select-v2.u-dropdown-sm .chosen-results > li {
  padding: 6px 8px;
}

.u-select-v2.u-dropdown-lg {
  padding: 0.55rem 1.5rem;
  font-size: 1.25rem;
}

.u-select-v2.u-dropdown-lg .chosen-results > li {
  padding: 14px 18px;
}

/*------------------------------------
  Sliders
------------------------------------*/

/*------------------------------------
  Sliders v1
------------------------------------*/

.u-slider-v1.ui-slider,
.u-slider-v1-2.ui-slider,
.u-slider-v1-3.ui-slider {
  position: relative;
  background: #eee;
  border: none;
  border-radius: 0;
  margin-top: 12px;
  margin-left: 6px;
  margin-right: 6px;
}

.u-slider-v1.ui-slider .ui-slider-range,
.u-slider-v1-2.ui-slider .ui-slider-range,
.u-slider-v1-3.ui-slider .ui-slider-range {
  height: 100%;
}

.u-slider-v1.ui-slider .ui-slider-handle,
.u-slider-v1-2.ui-slider .ui-slider-handle,
.u-slider-v1-3.ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  border-style: solid;
  outline: none;
  background: #fff;
  border-radius: 0;
  cursor: pointer;
  transition-property: border-color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.u-slider-v1.ui-slider.ui-slider-content,
.u-slider-v1-2.ui-slider.ui-slider-content,
.u-slider-v1-3.ui-slider.ui-slider-content {
  border-color: #eee;
}

.u-slider-v1.ui-slider {
  height: 2px;
}

.u-slider-v1.ui-slider .ui-slider-range {
  background: #CAD105;
}

.u-slider-v1.ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-width: 2px;
  border-color: #CAD105;
}

.u-slider-v1-2.ui-slider,
.u-slider-v1-3.ui-slider {
  height: 4px;
}

.u-slider-v1-2.ui-slider .ui-slider-range,
.u-slider-v1-3.ui-slider .ui-slider-range {
  background: #ddd;
}

.u-slider-v1-2.ui-slider .ui-slider-handle,
.u-slider-v1-3.ui-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border-width: 2px;
  border-color: #CAD105;
}

.u-slider-v1-3.ui-slider .ui-slider-handle {
  border-radius: 50%;
}

/*------------------------------------
  Sliders v2
------------------------------------*/

.u-slider-v2.ui-slider,
.u-slider-v2-2.ui-slider,
.u-slider-v2-3.ui-slider {
  position: relative;
  background: rgba(202, 209, 5, 0.5);
  border: none;
  border-radius: 0;
  margin-top: 12px;
  margin-left: 6px;
  margin-right: 6px;
}

.u-slider-v2.ui-slider .ui-slider-range,
.u-slider-v2-2.ui-slider .ui-slider-range,
.u-slider-v2-3.ui-slider .ui-slider-range {
  height: 100%;
}

.u-slider-v2.ui-slider .ui-slider-handle,
.u-slider-v2-2.ui-slider .ui-slider-handle,
.u-slider-v2-3.ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  border-style: solid;
  outline: none;
  background: #CAD105;
  border-radius: 0;
  cursor: pointer;
  transition-property: border-color, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.u-slider-v2.ui-slider .ui-slider-handle.ui-state-active,
.u-slider-v2-2.ui-slider .ui-slider-handle.ui-state-active,
.u-slider-v2-3.ui-slider .ui-slider-handle.ui-state-active {
  transform: scale(1.5);
}

.u-slider-v2.ui-slider {
  height: 2px;
}

.u-slider-v2.ui-slider .ui-slider-range {
  background: #cad105;
}

.u-slider-v2.ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-width: 2px;
  border-color: #CAD105;
}

.u-slider-v2-2.ui-slider,
.u-slider-v2-3.ui-slider {
  height: 4px;
}

.u-slider-v2-2.ui-slider .ui-slider-range,
.u-slider-v2-3.ui-slider .ui-slider-range {
  background: #cad105;
}

.u-slider-v2-2.ui-slider .ui-slider-handle,
.u-slider-v2-3.ui-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border-width: 2px;
  border-color: #CAD105;
}

.u-slider-v2-3.ui-slider .ui-slider-handle {
  border-radius: 50%;
}

/*------------------------------------
  Datepickers
------------------------------------*/

.u-has-dropdowns-in-popup .ui-autocomplete,
.u-has-dropdowns-in-popup .ui-datepicker {
  z-index: 100000 !important;
}

/*------------------------------------
  Datepickers v1
------------------------------------*/

.u-datepicker-v1 {
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  z-index: 2 !important;
}

.u-datepicker-v1.ui-datepicker-inline {
  width: 100%;
}

.u-datepicker-v1.ui-datepicker {
  width: initial;
  padding: initial;
}

.u-datepicker-v1 .ui-datepicker {
  width: 100%;
  padding: 0;
  border: none;
}

.u-datepicker-v1 .ui-datepicker-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 0;
}

.u-datepicker-v1 .ui-datepicker-title {
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: #464c5e;
  margin-left: 45px;
  margin-right: 45px;
}

.u-datepicker-v1 .ui-datepicker-prev,
.u-datepicker-v1 .ui-datepicker-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  top: 0;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
}

.u-datepicker-v1 .ui-datepicker-prev > span,
.u-datepicker-v1 .ui-datepicker-next > span {
  position: static;
  top: 0;
  left: 0;
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 18px;
  color: #464c5e;
  background-image: none;
  text-indent: 0;
  margin-top: 0;
  margin-left: 0;
}

.u-datepicker-v1 .ui-datepicker-prev-hover,
.u-datepicker-v1 .ui-datepicker-next-hover {
  top: 0;
  background-color: transparent;
}

.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover,
.u-datepicker-v1 .ui-datepicker-next.ui-state-hover {
  border: none;
}

.u-datepicker-v1 .ui-datepicker-prev {
  left: 0;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc;
}

.u-datepicker-v1 .ui-datepicker-prev-hover {
  left: 0;
}

.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc;
}

.u-datepicker-v1 .ui-datepicker-next {
  right: 0;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc;
}

.u-datepicker-v1 .ui-datepicker-next-hover {
  right: 0;
}

.u-datepicker-v1 .ui-datepicker-next.ui-state-hover {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc;
}

.u-datepicker-v1 .ui-datepicker-calendar {
  margin-bottom: 0;
}

.u-datepicker-v1 .ui-datepicker-calendar th,
.u-datepicker-v1 .ui-datepicker-calendar td {
  text-align: center;
  padding: 3px;
}

.u-datepicker-v1 .ui-datepicker-calendar th span,
.u-datepicker-v1 .ui-datepicker-calendar th a,
.u-datepicker-v1 .ui-datepicker-calendar td span,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #555;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  padding: 0;
}

.u-datepicker-v1 .ui-datepicker-calendar th a,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  border-radius: 50%;
  transition: all 0.2s;
}

.u-datepicker-v1 .ui-datepicker-calendar th a:hover,
.u-datepicker-v1 .ui-datepicker-calendar th a.ui-state-active,
.u-datepicker-v1 .ui-datepicker-calendar td a:hover,
.u-datepicker-v1 .ui-datepicker-calendar td a.ui-state-active {
  color: #fff;
  background-color: #CAD105;
  border-color: #CAD105;
  transition: all 0.2s;
}

.u-datepicker-v1 .ui-datepicker-calendar th span,
.u-datepicker-v1 .ui-datepicker-calendar th a {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  text-transform: uppercase;
}

.u-datepicker-v1 .ui-datepicker-calendar td span,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  font-size: 14px;
}

@media (min-width: 768px) {
  .u-datepicker-v1 .ui-datepicker-title {
    height: 50px;
    line-height: 50px;
    margin-left: 50px;
    margin-right: 50px;
  }

  .u-datepicker-v1 .ui-datepicker-prev,
  .u-datepicker-v1 .ui-datepicker-next {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .u-datepicker-v1 .ui-datepicker-calendar {
    border-collapse: separate;
    border-spacing: 4px;
  }

  .u-datepicker-v1 .ui-datepicker-calendar th,
  .u-datepicker-v1 .ui-datepicker-calendar td {
    padding: 5px;
  }

  .u-datepicker-v1 .ui-datepicker-calendar th span,
  .u-datepicker-v1 .ui-datepicker-calendar th a,
  .u-datepicker-v1 .ui-datepicker-calendar td span,
  .u-datepicker-v1 .ui-datepicker-calendar td a {
    font-size: 14px;
  }
}

/*------------------------------------
  Quantity
------------------------------------*/

.u-quantity-v1 input:not([type=checkbox], [type=radio]) {
  background-color: #fff !important;
}

.js-plus,
.js-minus {
  cursor: pointer;
}

/*------------------------------------
  Carousel indicators
------------------------------------*/

[class*=u-carousel-indicators] {
  display: block;
  position: absolute;
  padding-left: 0;
  margin-bottom: 0;
}

[class*=u-carousel-indicators] li {
  list-style: none;
}

[class*=u-carousel-indicators] span {
  display: block;
  cursor: pointer;
}

/*------------------------------------
  Carousel indicators v1
------------------------------------*/

.u-carousel-indicators-v1,
.u-carousel-indicators-v1--white {
  display: flex !important;
}

.u-carousel-indicators-v1 li,
.u-carousel-indicators-v1--white li {
  margin: 0 5px;
}

.u-carousel-indicators-v1 li.slick-active span,
.u-carousel-indicators-v1--white li.slick-active span {
  background-color: #CAD105;
}

.u-carousel-indicators-v1 span,
.u-carousel-indicators-v1--white span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #777;
  opacity: 1;
}

.u-carousel-indicators-v1 span {
  background-color: #777;
}

.u-carousel-indicators-v1--white li.slick-active span {
  background-color: #fff;
}

/*------------------------------------
  Carousel indicators v2
------------------------------------*/

.u-carousel-indicators-v2 li {
  margin: 0 5px;
}

.u-carousel-indicators-v2 li.slick-active span {
  opacity: 1;
}

.u-carousel-indicators-v2 span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.3;
}

/*------------------------------------
  Carousel indicators v3
------------------------------------*/

.u-carousel-indicators-v3 li {
  margin: 0 3px;
}

.u-carousel-indicators-v3 li.slick-active span {
  width: 12px;
  height: 12px;
  background-color: #fff;
}

.u-carousel-indicators-v3 span {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
}

/*------------------------------------
  Carousel indicators v4
------------------------------------*/

.u-carousel-indicators-v4 li {
  margin: 0 7px;
}

.u-carousel-indicators-v4 li.slick-active span {
  background-color: #CAD105;
}

.u-carousel-indicators-v4 span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
}

/*------------------------------------
  Carousel indicators v5
------------------------------------*/

.u-carousel-indicators-v5 {
  bottom: auto;
  left: auto;
  right: 15px;
  top: 15px;
  width: auto;
}

.u-carousel-indicators-v5 li {
  margin: 0 3px;
}

.u-carousel-indicators-v5 li.slick-active span {
  width: 9px;
  height: 9px;
  background-color: #fff;
}

.u-carousel-indicators-v5 span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 1;
  position: relative;
}

/*------------------------------------
  Carousel indicators v6
------------------------------------*/

.u-carousel-indicators-v6 {
  display: block;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
}

.u-carousel-indicators-v6::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  right: 50%;
  display: none;
  width: calc(100% - 130px);
  height: 0;
  border-bottom: 1px solid #111;
  transform: translate(-50%, 0px);
}

.u-carousel-indicators-v6 span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 1px solid #111;
  background-color: #fff;
  opacity: 1;
  margin: 4px auto 0;
}

.u-carousel-indicators-v6 li {
  display: table-cell;
  width: 1%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  color: #111;
  vertical-align: top;
  cursor: pointer;
  float: none;
}

.u-carousel-indicators-v6 li.slick-active {
  color: #CAD105;
}

.u-carousel-indicators-v6 li.slick-active span {
  display: block;
  width: 17px;
  height: 17px;
  border: 3px solid #CAD105;
  border-radius: 10px;
  margin: 0 auto;
}

.u-carousel-indicators-v6 .u-dot-title {
  display: none;
}

@media (min-width: 768px) {
  .u-carousel-indicators-v6 {
    top: 0;
    bottom: auto;
  }

  .u-carousel-indicators-v6::before {
    display: block;
  }

  .u-carousel-indicators-v6 span {
    margin: 3px auto 19px;
  }

  .u-carousel-indicators-v6 li.slick-active span {
    margin: 0 auto 15px;
  }

  .u-carousel-indicators-v6 .u-dot-title {
    display: block;
  }
}

/*------------------------------------
  Carousel indicators v7
------------------------------------*/

.u-carousel-indicators-v7 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  transform: translateY(-50%);
}

.u-carousel-indicators-v7 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.3;
}

.u-carousel-indicators-v7 li {
  display: block;
  margin: 15px 0;
  float: none;
}

.u-carousel-indicators-v7 li.slick-active span {
  opacity: 1;
}

/*------------------------------------
  Carousel indicators v8
------------------------------------*/

.u-carousel-indicators-v8 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  transform: translateY(-50%);
}

.u-carousel-indicators-v8 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
}

.u-carousel-indicators-v8 li {
  display: block;
  margin: 15px 0;
}

.u-carousel-indicators-v8 li.slick-active span {
  background-color: #CAD105;
}

/*------------------------------------
  Carousel indicators v9
------------------------------------*/

.u-carousel-indicators-v9 {
  padding-left: 0;
}

.u-carousel-indicators-v9 li {
  display: block;
  color: #000;
  text-transform: uppercase;
  background-color: #bbb;
  border-top-width: 0;
  border-top-style: solid;
  border-top-color: #fff;
  vertical-align: top;
  cursor: pointer;
  padding: 10px;
}

.u-carousel-indicators-v9 li + li {
  border-top-width: 1px;
}

.u-carousel-indicators-v9 li.slick-active {
  color: #fff;
  background-color: #CAD105;
}

@media (min-width: 576px) {
  .u-carousel-indicators-v9 li {
    display: table-cell;
    width: 1%;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-left-width: 0;
    border-right-width: 0;
    float: none;
    vertical-align: top;
    cursor: pointer;
    padding: 10px;
  }

  .u-carousel-indicators-v9 li + li {
    border-left-width: 1px;
  }
}

/*------------------------------------
  Carousel indicators v10
------------------------------------*/

.u-carousel-indicators-v10 {
  padding-left: 0;
}

.u-carousel-indicators-v10 li {
  display: block;
  color: #000;
  text-transform: uppercase;
  background-color: #bbb;
  border-top-width: 0;
  border-top-style: solid;
  border-top-color: #fff;
  vertical-align: top;
  cursor: pointer;
  padding: 10px;
}

.u-carousel-indicators-v10 li + li {
  border-top-width: 1px;
}

.u-carousel-indicators-v10 li.slick-active {
  color: #fff;
  background-color: #CAD105;
}

@media (min-width: 576px) {
  .u-carousel-indicators-v10 {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
  }

  .u-carousel-indicators-v10 li {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/*------------------------------------
  Carousel indicators v11
------------------------------------*/

.u-carousel-indicators-v11 span {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background-color: transparent;
}

.u-carousel-indicators-v11 li {
  margin: 0 3px;
}

.u-carousel-indicators-v11 li.slick-active span {
  background-color: #bbb;
}

/*------------------------------------
  Carousel indicators v12
------------------------------------*/

.u-carousel-indicators-v12,
.u-carousel-indicators-v12--white {
  white-space: nowrap;
}

.u-carousel-indicators-v12 li,
.u-carousel-indicators-v12--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v12 li span,
.u-carousel-indicators-v12--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background 0.3s ease;
}

.u-carousel-indicators-v12 li span::before,
.u-carousel-indicators-v12 li span::after,
.u-carousel-indicators-v12--white li span::before,
.u-carousel-indicators-v12--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v12 li span::before,
.u-carousel-indicators-v12--white li span::before {
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.3s ease;
}

.u-carousel-indicators-v12 li span:hover,
.u-carousel-indicators-v12 li span:focus,
.u-carousel-indicators-v12--white li span:hover,
.u-carousel-indicators-v12--white li span:focus {
  background-color: rgba(0, 0, 0, 0.2);
}

.u-carousel-indicators-v12 li.slick-active span::before,
.u-carousel-indicators-v12--white li.slick-active span::before {
  height: 100%;
}

.u-carousel-indicators-v12--white li span {
  box-shadow: inset 0 0 0 2px #fff;
}

.u-carousel-indicators-v12--white li span::before {
  background-color: #fff;
  box-shadow: 0 0 1px #fff;
}

/*------------------------------------
  Carousel indicators v13
------------------------------------*/

.u-carousel-indicators-v13,
.u-carousel-indicators-v13--white {
  white-space: nowrap;
}

.u-carousel-indicators-v13 li,
.u-carousel-indicators-v13--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v13 li span,
.u-carousel-indicators-v13--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.u-carousel-indicators-v13 li span::before,
.u-carousel-indicators-v13 li span::after,
.u-carousel-indicators-v13--white li span::before,
.u-carousel-indicators-v13--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v13 li.slick-active span,
.u-carousel-indicators-v13--white li.slick-active span {
  transform: scale(1.5);
}

.u-carousel-indicators-v13--white li span {
  background: rgba(255, 255, 255, 0.5);
}

.u-carousel-indicators-v13--white li span:hover,
.u-carousel-indicators-v13--white li span:focus {
  background-color: #fff;
}

.u-carousel-indicators-v13--white li.slick-active span {
  background-color: #fff;
}

/*------------------------------------
  Carousel indicators v14
------------------------------------*/

.u-carousel-indicators-v14,
.u-carousel-indicators-v14--white {
  white-space: nowrap;
}

.u-carousel-indicators-v14 li,
.u-carousel-indicators-v14--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v14 li span,
.u-carousel-indicators-v14--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.u-carousel-indicators-v14 li span::before,
.u-carousel-indicators-v14 li span::after,
.u-carousel-indicators-v14--white li span::before,
.u-carousel-indicators-v14--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v14--white li span {
  background: rgba(255, 255, 255, 0.5);
}

.u-carousel-indicators-v14--white li span:hover,
.u-carousel-indicators-v14--white li span:focus {
  background-color: #fff;
}

.u-carousel-indicators-v14--white li.slick-active span {
  background-color: transparent;
  box-shadow: 0 0 0 2px #fff;
}

/*------------------------------------
  Carousel indicators v15
------------------------------------*/

.u-carousel-indicators-v15,
.u-carousel-indicators-v15--white {
  white-space: nowrap;
}

.u-carousel-indicators-v15 li,
.u-carousel-indicators-v15--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v15 li span,
.u-carousel-indicators-v15--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow 0.3s ease;
}

.u-carousel-indicators-v15 li span::before,
.u-carousel-indicators-v15 li span::after,
.u-carousel-indicators-v15--white li span::before,
.u-carousel-indicators-v15--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v15--white li span {
  box-shadow: inset 0 0 0 2px #fff;
}

.u-carousel-indicators-v15--white li span:hover,
.u-carousel-indicators-v15--white li span:focus {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.u-carousel-indicators-v15--white li.slick-active span {
  box-shadow: inset 0 0 0 8px #fff;
}

/*------------------------------------
  Carousel indicators v16
------------------------------------*/

.u-carousel-indicators-v16,
.u-carousel-indicators-v16--white {
  white-space: nowrap;
}

.u-carousel-indicators-v16 li,
.u-carousel-indicators-v16--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v16 li span,
.u-carousel-indicators-v16--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -9999px;
  transition: opacity 0.3s ease;
}

.u-carousel-indicators-v16 li span::before,
.u-carousel-indicators-v16 li span::after,
.u-carousel-indicators-v16--white li span::before,
.u-carousel-indicators-v16--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v16 li span::before,
.u-carousel-indicators-v16--white li span::before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease;
}

.u-carousel-indicators-v16 li span:hover,
.u-carousel-indicators-v16 li span:focus,
.u-carousel-indicators-v16--white li span:hover,
.u-carousel-indicators-v16--white li span:focus {
  opacity: 0.7;
}

.u-carousel-indicators-v16 li.slick-active span::before,
.u-carousel-indicators-v16--white li.slick-active span::before {
  transform: scale(1);
}

.u-carousel-indicators-v16--white li span {
  box-shadow: inset 0 0 0 2px #fff;
}

.u-carousel-indicators-v16--white li span::before {
  background-color: #fff;
}

.u-carousel-indicators-v16--sm li {
  width: 8px;
  height: 8px;
}

.u-carousel-indicators-v16--sm li span {
  box-shadow: inset 0 0 0 1px #fff;
}

/*------------------------------------
  Carousel indicators v17
------------------------------------*/

.u-carousel-indicators-v17,
.u-carousel-indicators-v17--white {
  white-space: nowrap;
}

.u-carousel-indicators-v17 li,
.u-carousel-indicators-v17--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v17 li span,
.u-carousel-indicators-v17--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow 0.3s ease;
}

.u-carousel-indicators-v17 li span::before,
.u-carousel-indicators-v17 li span::after,
.u-carousel-indicators-v17--white li span::before,
.u-carousel-indicators-v17--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v17--white li span {
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.u-carousel-indicators-v17--white li span:hover,
.u-carousel-indicators-v17--white li span:focus {
  box-shadow: inset 0 0 0 8px #fff;
}

.u-carousel-indicators-v17--white li.slick-active span {
  box-shadow: inset 0 0 0 2px #fff;
}

/*------------------------------------
  Carousel indicators v18
------------------------------------*/

.u-carousel-indicators-v18,
.u-carousel-indicators-v18--white {
  white-space: nowrap;
}

.u-carousel-indicators-v18 li,
.u-carousel-indicators-v18--white li {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 5px;
}

.u-carousel-indicators-v18 li span,
.u-carousel-indicators-v18--white li span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  text-indent: -9999px;
  transition: opacity 0.3s ease;
}

.u-carousel-indicators-v18 li span::before,
.u-carousel-indicators-v18 li span::after,
.u-carousel-indicators-v18--white li span::before,
.u-carousel-indicators-v18--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v18 li span:hover,
.u-carousel-indicators-v18 li span:focus,
.u-carousel-indicators-v18--white li span:hover,
.u-carousel-indicators-v18--white li span:focus {
  opacity: 0.5;
}

.u-carousel-indicators-v18 li svg,
.u-carousel-indicators-v18 li i,
.u-carousel-indicators-v18--white li svg,
.u-carousel-indicators-v18--white li i {
  z-index: 10;
  width: 100%;
  height: 100%;
}

.u-carousel-indicators-v18 li svg circle,
.u-carousel-indicators-v18 li svg path,
.u-carousel-indicators-v18 li svg polygon,
.u-carousel-indicators-v18 li i circle,
.u-carousel-indicators-v18 li i path,
.u-carousel-indicators-v18 li i polygon,
.u-carousel-indicators-v18--white li svg circle,
.u-carousel-indicators-v18--white li svg path,
.u-carousel-indicators-v18--white li svg polygon,
.u-carousel-indicators-v18--white li i circle,
.u-carousel-indicators-v18--white li i path,
.u-carousel-indicators-v18--white li i polygon {
  opacity: 0;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 39 39;
  stroke-dashoffset: 39;
  transition: stroke-dashoffset 0.3s, opacity 0.3s;
}

.u-carousel-indicators-v18 li.slick-active span,
.u-carousel-indicators-v18--white li.slick-active span {
  opacity: 0.5;
}

.u-carousel-indicators-v18 li.slick-active svg circle,
.u-carousel-indicators-v18 li.slick-active svg path,
.u-carousel-indicators-v18 li.slick-active svg polygon,
.u-carousel-indicators-v18 li.slick-active i circle,
.u-carousel-indicators-v18 li.slick-active i path,
.u-carousel-indicators-v18 li.slick-active i polygon,
.u-carousel-indicators-v18--white li.slick-active svg circle,
.u-carousel-indicators-v18--white li.slick-active svg path,
.u-carousel-indicators-v18--white li.slick-active svg polygon,
.u-carousel-indicators-v18--white li.slick-active i circle,
.u-carousel-indicators-v18--white li.slick-active i path,
.u-carousel-indicators-v18--white li.slick-active i polygon {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s, opacity 0.15s;
}

.u-carousel-indicators-v18--white li span {
  background-color: #CAD105;
}

.u-carousel-indicators-v18--white li svg circle,
.u-carousel-indicators-v18--white li svg path,
.u-carousel-indicators-v18--white li svg polygon,
.u-carousel-indicators-v18--white li i circle,
.u-carousel-indicators-v18--white li i path,
.u-carousel-indicators-v18--white li i polygon {
  stroke: #fff;
}

/*------------------------------------
  Carousel indicators v19
------------------------------------*/

.u-carousel-indicators-v19,
.u-carousel-indicators-v19--white {
  white-space: nowrap;
}

.u-carousel-indicators-v19 li,
.u-carousel-indicators-v19--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 5px;
  transition: box-shadow 0.3s ease;
}

.u-carousel-indicators-v19 li span,
.u-carousel-indicators-v19--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.u-carousel-indicators-v19 li span::before,
.u-carousel-indicators-v19 li span::after,
.u-carousel-indicators-v19--white li span::before,
.u-carousel-indicators-v19--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v19 li.slick-active span,
.u-carousel-indicators-v19--white li.slick-active span {
  background-color: #fff;
  transform: scale(0.4);
}

.u-carousel-indicators-v19--white li {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
}

.u-carousel-indicators-v19--white li span {
  background-color: rgba(255, 255, 255, 0.7);
}

.u-carousel-indicators-v19--white li span:hover,
.u-carousel-indicators-v19--white li span:focus {
  background-color: #fff;
}

.u-carousel-indicators-v19--white li.slick-active {
  box-shadow: 0 0 0 2px #fff;
}

/*------------------------------------
  Carousel indicators v20
------------------------------------*/

.u-carousel-indicators-v20,
.u-carousel-indicators-v20--white {
  white-space: nowrap;
}

.u-carousel-indicators-v20 li,
.u-carousel-indicators-v20--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v20 li span,
.u-carousel-indicators-v20--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: border-color 0.3s ease;
}

.u-carousel-indicators-v20 li span::before,
.u-carousel-indicators-v20 li span::after,
.u-carousel-indicators-v20--white li span::before,
.u-carousel-indicators-v20--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v20 li span::before,
.u-carousel-indicators-v20--white li span::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transform: scale(3);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.u-carousel-indicators-v20 li span:hover,
.u-carousel-indicators-v20 li span:focus,
.u-carousel-indicators-v20--white li span:hover,
.u-carousel-indicators-v20--white li span:focus {
  border-color: #CAD105;
}

.u-carousel-indicators-v20 li.slick-active span,
.u-carousel-indicators-v20--white li.slick-active span {
  border-color: #CAD105;
}

.u-carousel-indicators-v20 li.slick-active span::before,
.u-carousel-indicators-v20--white li.slick-active span::before {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.u-carousel-indicators-v20--white li span {
  border: 2px solid #fff;
}

.u-carousel-indicators-v20--white li span::before {
  background: #CAD105;
  box-shadow: 0 0 1px #CAD105;
}

/*------------------------------------
  Carousel indicators v21
------------------------------------*/

.u-carousel-indicators-v21,
.u-carousel-indicators-v21--white {
  white-space: nowrap;
}

.u-carousel-indicators-v21 li,
.u-carousel-indicators-v21--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
  perspective: 1000px;
}

.u-carousel-indicators-v21 li span,
.u-carousel-indicators-v21--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.u-carousel-indicators-v21 li span::before,
.u-carousel-indicators-v21 li span::after,
.u-carousel-indicators-v21--white li span::before,
.u-carousel-indicators-v21--white li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.u-carousel-indicators-v21 li span::after,
.u-carousel-indicators-v21--white li span::after {
  transform: rotateY(180deg);
}

.u-carousel-indicators-v21 li span:hover,
.u-carousel-indicators-v21--white li span:hover {
  opacity: 0.8;
}

.u-carousel-indicators-v21 li.slick-active span,
.u-carousel-indicators-v21--white li.slick-active span {
  transform: rotateY(180deg);
}

.u-carousel-indicators-v21--white li span::before {
  background-color: #fff;
}

.u-carousel-indicators-v21--white li span::after {
  background-color: #CAD105;
}

/*------------------------------------
  Carousel indicators v22
------------------------------------*/

.u-carousel-indicators-v22,
.u-carousel-indicators-v22--white {
  white-space: nowrap;
}

.u-carousel-indicators-v22 li,
.u-carousel-indicators-v22--white li {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  transition: border-color 0.3s ease;
}

.u-carousel-indicators-v22 li span,
.u-carousel-indicators-v22--white li span {
  position: absolute;
  bottom: 250%;
  left: 50%;
  width: auto;
  height: auto;
  line-height: 2;
  opacity: 0;
  white-space: nowrap;
  visibility: hidden;
  border-radius: 0;
  padding: 0 10px;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s ease;
}

.u-carousel-indicators-v22 li span::before,
.u-carousel-indicators-v22 li span::after,
.u-carousel-indicators-v22--white li span::before,
.u-carousel-indicators-v22--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v22 li span::before,
.u-carousel-indicators-v22--white li span::before {
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: 10px solid transparent;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: opacity 0.3s ease;
}

.u-carousel-indicators-v22 li span:hover,
.u-carousel-indicators-v22--white li span:hover {
  z-index: 11;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.u-carousel-indicators-v22 li.slick-active span,
.u-carousel-indicators-v22--white li.slick-active span {
  z-index: 100;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.u-carousel-indicators-v22 li.slick-active:hover span,
.u-carousel-indicators-v22--white li.slick-active:hover span {
  opacity: 1 !important;
}

.u-carousel-indicators-v22 li:hover,
.u-carousel-indicators-v22--white li:hover {
  z-index: 11;
}

.u-carousel-indicators-v22:hover li.slick-active span,
.u-carousel-indicators-v22--white:hover li.slick-active span {
  opacity: 0.2;
}

.u-carousel-indicators-v22--white li {
  border: 2px solid #fff;
}

.u-carousel-indicators-v22--white li span {
  color: #fff;
  background-color: #CAD105;
}

.u-carousel-indicators-v22--white li span::before {
  border-top-color: #CAD105;
}

.u-carousel-indicators-v22--white li.slick-active {
  border-color: #CAD105;
}

/*------------------------------------
  Carousel indicators v23
------------------------------------*/

.u-carousel-indicators-v23,
.u-carousel-indicators-v23--white {
  white-space: nowrap;
}

.u-carousel-indicators-v23 li,
.u-carousel-indicators-v23--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v23 li span,
.u-carousel-indicators-v23--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background-color 0.3s ease;
}

.u-carousel-indicators-v23 li span::before,
.u-carousel-indicators-v23 li span::after,
.u-carousel-indicators-v23--white li span::before,
.u-carousel-indicators-v23--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v23 li.slick-active:first-child ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:first-child ~ .u-dots-helper {
  transform: translateX(0);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(2) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(2) ~ .u-dots-helper {
  transform: translateX(100%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(3) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(3) ~ .u-dots-helper {
  transform: translateX(200%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(4) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(4) ~ .u-dots-helper {
  transform: translateX(300%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(5) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(5) ~ .u-dots-helper {
  transform: translateX(400%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(6) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(6) ~ .u-dots-helper {
  transform: translateX(500%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(7) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(7) ~ .u-dots-helper {
  transform: translateX(600%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(8) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(8) ~ .u-dots-helper {
  transform: translateX(700%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(9) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(9) ~ .u-dots-helper {
  transform: translateX(800%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(10) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(10) ~ .u-dots-helper {
  transform: translateX(900%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(11) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(11) ~ .u-dots-helper {
  transform: translateX(1000%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(12) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(12) ~ .u-dots-helper {
  transform: translateX(1100%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(13) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(13) ~ .u-dots-helper {
  transform: translateX(1200%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(14) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(14) ~ .u-dots-helper {
  transform: translateX(1300%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(15) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(15) ~ .u-dots-helper {
  transform: translateX(1400%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(16) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(16) ~ .u-dots-helper {
  transform: translateX(1500%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(17) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(17) ~ .u-dots-helper {
  transform: translateX(1600%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(18) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(18) ~ .u-dots-helper {
  transform: translateX(1700%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(19) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(19) ~ .u-dots-helper {
  transform: translateX(1800%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(20) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(20) ~ .u-dots-helper {
  transform: translateX(1900%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(21) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(21) ~ .u-dots-helper {
  transform: translateX(2000%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(22) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(22) ~ .u-dots-helper {
  transform: translateX(2100%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(23) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(23) ~ .u-dots-helper {
  transform: translateX(2200%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(24) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(24) ~ .u-dots-helper {
  transform: translateX(2300%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(25) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(25) ~ .u-dots-helper {
  transform: translateX(2400%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(26) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(26) ~ .u-dots-helper {
  transform: translateX(2500%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(27) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(27) ~ .u-dots-helper {
  transform: translateX(2600%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(28) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(28) ~ .u-dots-helper {
  transform: translateX(2700%);
}

.u-carousel-indicators-v23 li.slick-active:nth-child(29) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(29) ~ .u-dots-helper {
  transform: translateX(2800%);
}

.u-carousel-indicators-v23 .u-dots-helper,
.u-carousel-indicators-v23--white .u-dots-helper {
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  transition: transform 0.3s ease;
}

.u-carousel-indicators-v23 .u-dots-helper::before,
.u-carousel-indicators-v23--white .u-dots-helper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.u-carousel-indicators-v23--white li span {
  background: rgba(255, 255, 255, 0.5);
}

.u-carousel-indicators-v23--white li span:hover,
.u-carousel-indicators-v23--white li span:focus {
  background-color: #fff;
}

.u-carousel-indicators-v23--white .u-dots-helper::before {
  background: #CAD105;
}

/*------------------------------------
  Carousel indicators v24
------------------------------------*/

.u-carousel-indicators-v24,
.u-carousel-indicators-v24--white {
  white-space: nowrap;
}

.u-carousel-indicators-v24 li,
.u-carousel-indicators-v24--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v24 li span,
.u-carousel-indicators-v24--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  text-indent: -9999px;
}

.u-carousel-indicators-v24 li span::before,
.u-carousel-indicators-v24 li span::after,
.u-carousel-indicators-v24--white li span::before,
.u-carousel-indicators-v24--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v24 li span::before,
.u-carousel-indicators-v24--white li span::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease 0.3s, opacity 0.3s ease, visibility 0s 0.3s ease;
  transform-origin: -200% 50%;
  transform: rotate(-100deg);
}

.u-carousel-indicators-v24 li.slick-active-right span::before,
.u-carousel-indicators-v24--white li.slick-active-right span::before {
  transition: none;
  transform-origin: 300% 50%;
  transform: rotate(100deg);
}

.u-carousel-indicators-v24 li.slick-current span::before,
.u-carousel-indicators-v24--white li.slick-current span::before {
  visibility: visible;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: rotate(0deg);
}

.u-carousel-indicators-v24--white li span {
  border: 2px solid #CAD105;
}

.u-carousel-indicators-v24--white li span::before {
  background: #fff;
}

.u-carousel-indicators-v24--white li span:focus {
  background: rgba(255, 255, 255, 0.2);
}

/*------------------------------------
  Carousel indicators v25
------------------------------------*/

.u-carousel-indicators-v25,
.u-carousel-indicators-v25--white {
  white-space: nowrap;
}

.u-carousel-indicators-v25 li,
.u-carousel-indicators-v25--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
}

.u-carousel-indicators-v25 li::before,
.u-carousel-indicators-v25--white li::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-200%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
}

.u-carousel-indicators-v25 li span,
.u-carousel-indicators-v25--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.u-carousel-indicators-v25 li span::before,
.u-carousel-indicators-v25 li span::after,
.u-carousel-indicators-v25--white li span::before,
.u-carousel-indicators-v25--white li span::after {
  content: "";
  display: none;
}

.u-carousel-indicators-v25 li.slick-active::before,
.u-carousel-indicators-v25--white li.slick-active::before {
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
}

.u-carousel-indicators-v25 li.slick-active span,
.u-carousel-indicators-v25--white li.slick-active span {
  opacity: 0;
  transform: translateY(200%);
}

.u-carousel-indicators-v25--white li::before {
  background-color: #CAD105;
}

.u-carousel-indicators-v25--white li span {
  background: rgba(255, 255, 255, 0.5);
}

.u-carousel-indicators-v25--white li span::before {
  background-color: #CAD105;
}

.u-carousel-indicators-v25--white li span:focus {
  background-color: #CAD105;
}

.u-carousel-indicators-v25--white li:hover span {
  background-color: #fff;
}

.u-carousel-indicators-v25--white li.slick-active span {
  background-color: #CAD105;
}

/*------------------------------------
  Carousel indicators v26
------------------------------------*/

.u-carousel-indicators-v26 li,
.u-carousel-indicators-v26--white li,
.u-carousel-indicators-v26--vertical li,
.u-carousel-indicators-v26--vertical--white li {
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 40px;
}

.u-carousel-indicators-v26 li::before,
.u-carousel-indicators-v26--white li::before,
.u-carousel-indicators-v26--vertical li::before,
.u-carousel-indicators-v26--vertical--white li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 50%;
  transition: width 0.3s, height 0.3s, border-color 0.3s, border-width 0.3s, background 0.3s;
  transform: translateX(-50%) translateY(-50%);
}

.u-carousel-indicators-v26 li::after,
.u-carousel-indicators-v26--white li::after,
.u-carousel-indicators-v26--vertical li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: -1;
  display: block;
  width: 44px;
  height: 0;
  border-top: 2px solid;
  transform: translateY(-50%);
  margin-left: -2px;
}

.u-carousel-indicators-v26 li span,
.u-carousel-indicators-v26--white li span,
.u-carousel-indicators-v26--vertical li span,
.u-carousel-indicators-v26--vertical--white li span {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.3;
  transition: opacity 0.3s, color 0.3s;
  transform: translateX(-50%);
  padding: 0 0 15px 0;
}

.u-carousel-indicators-v26 li.slick-active::before,
.u-carousel-indicators-v26--white li.slick-active::before,
.u-carousel-indicators-v26--vertical li.slick-active::before,
.u-carousel-indicators-v26--vertical--white li.slick-active::before {
  width: 20px;
  height: 20px;
}

.u-carousel-indicators-v26 li.slick-active span,
.u-carousel-indicators-v26--white li.slick-active span,
.u-carousel-indicators-v26--vertical li.slick-active span,
.u-carousel-indicators-v26--vertical--white li.slick-active span {
  opacity: 1;
}

.u-carousel-indicators-v26 li:last-child,
.u-carousel-indicators-v26--white li:last-child,
.u-carousel-indicators-v26--vertical li:last-child,
.u-carousel-indicators-v26--vertical--white li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.u-carousel-indicators-v26 li:last-child::after,
.u-carousel-indicators-v26--white li:last-child::after,
.u-carousel-indicators-v26--vertical li:last-child::after,
.u-carousel-indicators-v26--vertical--white li:last-child::after {
  display: none;
}

.u-carousel-indicators-v26--vertical,
.u-carousel-indicators-v26--vertical--white {
  width: 20px;
}

.u-carousel-indicators-v26--vertical li,
.u-carousel-indicators-v26--vertical--white li {
  display: block;
  float: none;
  margin-bottom: 15px;
  margin-right: 0;
}

.u-carousel-indicators-v26--vertical li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 0;
  height: 19px;
  border-left: 2px solid;
  transform: translateX(-50%) translateY(0);
  margin-top: -2px;
  margin-left: 0;
}

.u-carousel-indicators-v26--vertical li span,
.u-carousel-indicators-v26--vertical--white li span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0.3;
  transition: opacity 0.3s, color 0.3s;
  transform: translateX(0) translateY(-50%);
  padding: 0 0 0 15px;
}

.u-carousel-indicators-v26--white li::before,
.u-carousel-indicators-v26--vertical--white li::before {
  border-color: #CAD105;
}

.u-carousel-indicators-v26--white li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  border-color: #CAD105;
}

.u-carousel-indicators-v26--white li span,
.u-carousel-indicators-v26--vertical--white li span {
  color: #fff;
}

.u-carousel-indicators-v26--white li:not(.slick-active):hover::before,
.u-carousel-indicators-v26--vertical--white li:not(.slick-active):hover::before {
  border-color: #fff;
  background-color: #fff;
}

.u-carousel-indicators-v26--white li.slick-active::before,
.u-carousel-indicators-v26--vertical--white li.slick-active::before {
  border-color: #fff;
}

.u-carousel-indicators-v26--white li.slick-active span,
.u-carousel-indicators-v26--vertical--white li.slick-active span {
  color: #fff;
}

/*------------------------------------
  Carousel indicators v27
------------------------------------*/

.u-carousel-indicators-v27 li,
.u-carousel-indicators-v27--white li,
.u-carousel-indicators-v27--vertical li,
.u-carousel-indicators-v27--vertical--white li {
  position: relative;
  width: 40px;
  height: 4px;
  float: left;
  margin: 0 5px;
}

.u-carousel-indicators-v27 li span,
.u-carousel-indicators-v27--white li span,
.u-carousel-indicators-v27--vertical li span,
.u-carousel-indicators-v27--vertical--white li span {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  opacity: 0.7;
  overflow: hidden;
  transition: opacity 0.3s;
}

.u-carousel-indicators-v27 li span::before,
.u-carousel-indicators-v27--white li span::before,
.u-carousel-indicators-v27--vertical li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.u-carousel-indicators-v27 li strong,
.u-carousel-indicators-v27--white li strong,
.u-carousel-indicators-v27--vertical li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  position: absolute;
  bottom: 105%;
  left: 0;
  display: block;
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  transform: translate3d(1em, 0, 0);
  transform-origin: 0 0;
  transition: transform 0.5s, opacity 0.5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.u-carousel-indicators-v27 li:not(.slick-active):hover span,
.u-carousel-indicators-v27 li:not(.slick-active):focus span,
.u-carousel-indicators-v27--white li:not(.slick-active):hover span,
.u-carousel-indicators-v27--white li:not(.slick-active):focus span,
.u-carousel-indicators-v27--vertical li:not(.slick-active):hover span,
.u-carousel-indicators-v27--vertical li:not(.slick-active):focus span,
.u-carousel-indicators-v27--vertical--white li:not(.slick-active):hover span,
.u-carousel-indicators-v27--vertical--white li:not(.slick-active):focus span {
  opacity: 1;
}

.u-carousel-indicators-v27 li.slick-active span::before,
.u-carousel-indicators-v27--white li.slick-active span::before,
.u-carousel-indicators-v27--vertical li.slick-active span::before,
.u-carousel-indicators-v27--vertical--white li.slick-active span::before {
  transform: translate3d(0, 0, 0);
}

.u-carousel-indicators-v27 li.slick-active strong,
.u-carousel-indicators-v27--white li.slick-active strong,
.u-carousel-indicators-v27--vertical li.slick-active strong,
.u-carousel-indicators-v27--vertical--white li.slick-active strong {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
}

.u-carousel-indicators-v27--vertical li,
.u-carousel-indicators-v27--vertical--white li {
  display: block;
  width: 40px;
  height: 40px;
  float: none;
  margin: 15px 0;
}

.u-carousel-indicators-v27--vertical li span,
.u-carousel-indicators-v27--vertical--white li span {
  position: relative;
  display: block;
  width: 4px;
  height: 100%;
  opacity: 0.7;
  overflow: hidden;
  transition: opacity 0.3s;
}

.u-carousel-indicators-v27--vertical li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.u-carousel-indicators-v27--vertical li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 105%;
  display: block;
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  transform: rotate3d(0, 0, 1, 90deg) translate3d(1em, 0, 0);
  transform-origin: 0 0;
  transition: transform 0.5s, opacity 0.5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.u-carousel-indicators-v27--vertical li.slick-active span::before,
.u-carousel-indicators-v27--vertical--white li.slick-active span::before {
  transform: translate3d(0, 0, 0);
}

.u-carousel-indicators-v27--vertical li.slick-active strong,
.u-carousel-indicators-v27--vertical--white li.slick-active strong {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 90deg);
}

.u-carousel-indicators-v27--white li span,
.u-carousel-indicators-v27--vertical--white li span {
  background: #fff;
}

.u-carousel-indicators-v27--white li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  background: #CAD105;
}

.u-carousel-indicators-v27--white li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  color: #fff;
}

/*------------------------------------
  Carousel indicators v28
------------------------------------*/

.u-carousel-indicators-v28 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  transform: translateY(-50%);
}

.u-carousel-indicators-v28 li {
  display: block;
  margin: 15px 0;
  float: none;
}

.u-carousel-indicators-v28 li.slick-active span {
  background-color: #CAD105;
  opacity: 1;
}

.u-carousel-indicators-v28 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #777;
  opacity: 0.3;
}

/*------------------------------------
  Carousel indicators v29
------------------------------------*/

.u-carousel-indicators-v29 {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.u-carousel-indicators-v29 li {
  display: inline-block;
  min-width: 30px;
  cursor: pointer;
  float: none;
  border-top: 3px solid #fff;
  margin: -2px 20px 0;
}

.u-carousel-indicators-v29 li.slick-active {
  color: #CAD105;
  border-top-color: #CAD105;
}

.u-carousel-indicators-v29 .u-dot-title {
  display: none;
}

@media (min-width: 576px) {
  .u-carousel-indicators-v29 {
    border-top: 1px solid;
  }

  .u-carousel-indicators-v29 li {
    border-top: 3px solid transparent;
    padding-top: 10px;
    margin: -2px 20px 0;
  }

  .u-carousel-indicators-v29 .u-dot-title {
    display: block;
  }
}

/*------------------------------------
  Carousel indicators v30
------------------------------------*/

.u-carousel-indicators-v30 {
  display: block;
  width: 100%;
}

.u-carousel-indicators-v30 > li {
  display: table-cell;
  width: 1%;
  text-align: center;
  float: none;
}

.u-carousel-indicators-v30 span {
  display: inline-block;
}

@media (min-width: 576px) {
  .u-carousel-indicators-v30 {
    display: block;
    width: 100%;
  }

  .u-carousel-indicators-v30 > li {
    display: table-cell;
    width: 1%;
    text-align: center;
    float: none;
  }

  .u-carousel-indicators-v30 span {
    display: inline-block;
  }
}

/*------------------------------------
  Carousel indicators v31
------------------------------------*/

.u-carousel-indicators-v31,
.u-carousel-indicators-v31--white {
  display: flex !important;
}

.u-carousel-indicators-v31 li,
.u-carousel-indicators-v31--white li {
  margin: 0 5px;
}

.u-carousel-indicators-v31 li.slick-active span,
.u-carousel-indicators-v31--white li.slick-active span {
  position: relative;
  top: 1px;
  width: 13px;
  height: 13px;
  background-color: #CAD105;
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 0.4s;
}

.u-carousel-indicators-v31 span,
.u-carousel-indicators-v31--white span {
  position: relative;
  top: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: 0.4s;
  background-color: #ddd;
}

/*------------------------------------
  Carousel Indicators v32
------------------------------------*/

.u-carousel-indicators-v32 .slick-slide {
  align-items: center !important;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: 0.5s;
}

.u-carousel-indicators-v32 .slick-slide .u-carousel-indicators-v32-img {
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0);
}

.u-carousel-indicators-v32 .slick-center {
  width: 70px;
  height: 70px;
  -webkit-transform: scale(1.35);
}

.u-carousel-indicators-v32 .slick-center .u-carousel-indicators-v32-img {
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-color: #fff;
}

/*------------------------------------
  Carousel indicators v33
------------------------------------*/

.u-carousel-indicators-v33 {
  position: relative;
  padding-top: 15px;
  padding-left: 0;
}

.u-carousel-indicators-v33 li {
  display: block;
  color: #eee;
  cursor: pointer;
  padding: 10px 0;
}

.u-carousel-indicators-v33 li:hover {
  color: rgba(202, 209, 5, 0.5);
}

.u-carousel-indicators-v33 li.slick-active {
  color: #CAD105;
}

.u-carousel-indicators-v33 li span {
  display: none;
}

/*------------------------------------
  Carousel indicators v34
------------------------------------*/

.u-carousel-indicators-v34 li {
  display: block;
  margin: 10px 0;
}

.u-carousel-indicators-v34 li.slick-active span {
  background-color: #CAD105;
  transform: scale(1);
}

.u-carousel-indicators-v34 span {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: scale(0.7);
  transition: all 0.3s ease;
}

/*------------------------------------
  Carousel indicators v35
------------------------------------*/

.u-carousel-indicators-v35 li,
.u-carousel-indicators-v35--white li,
.u-carousel-indicators-v35--main li {
  display: inline-block;
  margin: 0 5px;
}

.u-carousel-indicators-v35 li.slick-active span,
.u-carousel-indicators-v35--white li.slick-active span,
.u-carousel-indicators-v35--main li.slick-active span {
  opacity: 1;
}

.u-carousel-indicators-v35 span,
.u-carousel-indicators-v35--white span,
.u-carousel-indicators-v35--main span {
  width: 13px;
  height: 13px;
  background-color: #CAD105;
  border: 2px solid transparent;
  opacity: 0.7;
  border-radius: 50%;
  transform: scale(0.6);
  transition: all 0.3s ease;
}

.u-carousel-indicators-v35 li.slick-active span,
.u-carousel-indicators-v35--white li.slick-active span,
.u-carousel-indicators-v35--main li.slick-active span {
  background-color: transparent;
  border-color: #CAD105;
  opacity: 0.5;
  transform: scale(0.9);
}

.u-carousel-indicators-v35--white li span {
  background-color: #fff;
}

.u-carousel-indicators-v35--white li.slick-active span {
  border-color: #fff;
}

.u-carousel-indicators-v35--main li span {
  background-color: #000;
}

.u-carousel-indicators-v35--main li.slick-active span {
  border-color: #000;
}

/*------------------------------------
  Breadcrumbs v1
------------------------------------*/

.u-breadcrumbs-v1 {
  padding-left: 0;
  margin-bottom: 0;
}

.u-breadcrumbs-v1 > * {
  display: inline-block;
  vertical-align: middle;
}

.u-breadcrumbs-v1 a:hover {
  text-decoration: none;
}

/*------------------------------------
  Breadcrumbs v2
------------------------------------*/

.u-breadcrumbs-v2 {
  padding-left: 0;
  margin-bottom: 0;
}

.u-breadcrumbs-v2 > * {
  display: inline-block;
  vertical-align: middle;
}

.u-breadcrumbs-v2 > * > * {
  display: block;
  border-radius: 3px;
}

.u-breadcrumbs-v2 a:hover {
  text-decoration: none;
}

.u-breadcrumbs-v2 [class*=u-triangle]:not([class*=__front], [class*=__back]) {
  display: none;
}

@media (min-width: 768px) {
  .u-breadcrumbs-v2 > * {
    position: relative;
    background-color: #fff;
  }

  .u-breadcrumbs-v2 > * > * {
    border-radius: 0;
  }

  .u-breadcrumbs-v2 > *:first-child > * {
    border-radius: 5px 0 0 5px;
  }

  .u-breadcrumbs-v2 > *:last-child > * {
    border-radius: 0 5px 5px 0;
  }

  .u-breadcrumbs-v2 [class*=u-triangle]:not([class*=__front], [class*=__back]) {
    top: 0;
    z-index: 2;
    display: block;
    width: 20px;
    height: 100%;
    margin-left: -0.05em;
  }
}

/*------------------------------------
  Dot line v1
------------------------------------*/

.u-dot-line-v1,
.u-dot-line-v1-2 {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
}

.u-dot-line-v1::before,
.u-dot-line-v1::after,
.u-dot-line-v1-2::before,
.u-dot-line-v1-2::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px;
}

.u-dot-line-v1::before,
.u-dot-line-v1-2::before {
  left: -30px;
}

li:first-child .u-dot-line-v1::before,
li:first-child .u-dot-line-v1-2::before {
  display: none;
}

.u-dot-line-v1::after,
.u-dot-line-v1-2::after {
  right: -30px;
}

li:last-child .u-dot-line-v1::after,
li:last-child .u-dot-line-v1-2::after {
  display: none;
}

.u-dot-line-v1__inner,
.u-dot-line-v1-2__inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
}

.u-dot-line-v1__inner::before,
.u-dot-line-v1-2__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.u-dot-line-v1-2::before,
.u-dot-line-v1-2::after,
.u-dot-line-v1-2-2::before,
.u-dot-line-v1-2-2::after {
  display: none;
}

@media (min-width: 992px) {
  .u-dot-line-v1-2::before,
  .u-dot-line-v1-2::after {
    display: block;
  }
}

/*------------------------------------
  Dot line v2
------------------------------------*/

.u-dot-line-v2,
.u-dot-line-v2-2 {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0;
}

.u-dot-line-v2::before,
.u-dot-line-v2::after,
.u-dot-line-v2-2::before,
.u-dot-line-v2-2::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px;
}

.u-dot-line-v2::before,
.u-dot-line-v2-2::before {
  left: -30px;
}

li:first-child .u-dot-line-v2::before,
li:first-child .u-dot-line-v2-2::before {
  display: none;
}

.u-dot-line-v2::after,
.u-dot-line-v2-2::after {
  right: -30px;
}

li:last-child .u-dot-line-v2::after,
li:last-child .u-dot-line-v2-2::after {
  display: none;
}

.u-dot-line-v2__inner,
.u-dot-line-v2-2__inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.u-dot-line-v2__inner::before,
.u-dot-line-v2-2__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
}

.u-dot-line-v2-2::before,
.u-dot-line-v2-2::after,
.u-dot-line-v2-2-2::before,
.u-dot-line-v2-2-2::after {
  display: none;
}

@media (min-width: 992px) {
  .u-dot-line-v2-2::before,
  .u-dot-line-v2-2::after {
    display: block;
  }
}

/*------------------------------------
  Heading-v1
------------------------------------*/

[class*=u-heading-v1-] {
  position: relative;
}

[class*=u-heading-v1-]::before,
[class*=u-heading-v1-]::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 100%;
  height: 0;
  border-top-width: 1px;
  border-color: inherit;
}

[class*=u-heading-v1-].text-center::before,
[class*=u-heading-v1-].text-center::after {
  left: 0;
  right: 0;
}

[class*=u-heading-v1-].text-right::before,
[class*=u-heading-v1-].text-right::after {
  left: 0;
  right: auto;
}

.u-heading-v1__title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-right: 1.0714285714rem;
  background-color: inherit;
  z-index: 2;
}

.text-right .u-heading-v1__title {
  padding-left: 1.0714285714rem;
  padding-right: 0;
}

.text-center .u-heading-v1__title {
  padding-left: 1.0714285714rem;
  padding-right: 1.0714285714rem;
}

/*------------------------------------
  Heading-v1-1
------------------------------------*/

.u-heading-v1-1::before {
  top: 48%;
  border-top-style: solid;
}

.u-heading-v1-1::after {
  top: 58%;
  border-top-style: solid;
}

/*------------------------------------
  Heading-v1-2
------------------------------------*/

.u-heading-v1-2::before {
  top: 48%;
  border-top-style: dashed;
}

.u-heading-v1-2::after {
  top: 58%;
  border-top-style: dashed;
}

/*------------------------------------
  Heading-v1-3
------------------------------------*/

.u-heading-v1-3::before {
  top: 48%;
  border-top-style: dotted;
}

.u-heading-v1-3::after {
  top: 58%;
  border-top-style: dotted;
}

/*------------------------------------
  Heading-v1-4
------------------------------------*/

.u-heading-v1-4::before {
  top: 50%;
  border-top-style: solid;
}

/*------------------------------------
  Heading-v1-5
------------------------------------*/

.u-heading-v1-5::before {
  top: 50%;
  border-top-style: dashed;
}

/*------------------------------------
  Heading-v1-6
------------------------------------*/

.u-heading-v1-6::before {
  top: 50%;
  border-top-style: dotted;
}

/*------------------------------------
  Heading-v1-7
------------------------------------*/

.u-heading-v1-7 {
  background: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="9px" height="6px"><polygon opacity="0.2" points="4.5,4.5 0,0 0,1.208 4.5,5.708 9,1.208 9,0 "/></svg>') 0 50% repeat-x;
}

/*------------------------------------
  Heading-v2
------------------------------------*/

.u-heading-v2-7--top::before,
.u-heading-v2-7--bottom::after,
.u-heading-v2-6--top::before,
.u-heading-v2-6--bottom::after,
.u-heading-v2-5--top::before,
.u-heading-v2-5--bottom::after,
.u-heading-v2-4--top::before,
.u-heading-v2-4--bottom::after,
.u-heading-v2-3--top::before,
.u-heading-v2-3--bottom::after,
.u-heading-v2-2--top::before,
.u-heading-v2-2--bottom::after,
.u-heading-v2-1--top::before,
.u-heading-v2-1--bottom::after {
  content: "";
  display: inline-block;
  border-top-style: solid;
  border-color: inherit;
}

/*------------------------------------
  Heading-v2-1
------------------------------------*/

.u-heading-v2-1--top::before,
.u-heading-v2-1--bottom::after {
  width: 3.1428571429rem;
  border-top-width: 2px;
}

.u-heading-v2-1--bottom::after {
  margin-top: 1.7857142857rem;
}

.u-heading-v2-1--top::before {
  margin-bottom: 1.7857142857rem;
}

/*------------------------------------
  Heading-v2-2
------------------------------------*/

.u-heading-v2-2--top::before,
.u-heading-v2-2--bottom::after {
  width: 2.7142857143rem;
  border-top-width: 5px;
}

.u-heading-v2-2--bottom::after {
  margin-top: 1.7857142857rem;
}

.u-heading-v2-2--top::before {
  margin-bottom: 1.7857142857rem;
}

/*------------------------------------
  Heading-v2-3
------------------------------------*/

.u-heading-v2-3--top::before,
.u-heading-v2-3--bottom::after {
  width: 5rem;
  border-top-width: 1px;
}

.u-heading-v2-3--bottom::after {
  margin-top: 1.0714285714rem;
}

.u-heading-v2-3--top::before {
  margin-bottom: 1.0714285714rem;
}

/*------------------------------------
  Heading-v2-4
------------------------------------*/

.u-heading-v2-4--top::before,
.u-heading-v2-4--bottom::after {
  width: 5rem;
  border-top-width: 10px;
}

.u-heading-v2-4--bottom::after {
  margin-top: 2.1428571429rem;
}

.u-heading-v2-4--top::before {
  margin-bottom: 2.1428571429rem;
}

/*------------------------------------
  Heading-v2-5
------------------------------------*/

.u-heading-v2-5--top::before,
.u-heading-v2-5--bottom::after {
  width: 5rem;
  border-top-width: 2px;
}

.u-heading-v2-5--bottom::after {
  margin-top: 1.4285714286rem;
}

.u-heading-v2-5--top::before {
  margin-bottom: 1.4285714286rem;
}

/*------------------------------------
  Heading-v2-6
------------------------------------*/

.u-heading-v2-6--top::before,
.u-heading-v2-6--bottom::after {
  width: 2.1428571429rem;
  border-top-width: 1px;
}

.u-heading-v2-6--bottom::after {
  margin-top: 0.7142857143rem;
}

.u-heading-v2-6--top::before {
  margin-bottom: 0.7142857143rem;
}

/*------------------------------------
  Heading-v2-7
------------------------------------*/

.u-heading-v2-7--top::before,
.u-heading-v2-7--bottom::after {
  width: 12rem;
  border-top-width: 10px;
}

.u-heading-v2-7--bottom::after {
  margin-top: 2.8571428571rem;
}

.u-heading-v2-7--top::before {
  margin-bottom: 2.8571428571rem;
}

/*------------------------------------
  Heading-v3
------------------------------------*/

[class*=u-heading-v3-] {
  border-bottom: 1px dotted #ccc;
}

.u-heading-v3__title {
  position: relative;
  top: 1px;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.7142857143rem;
  border-bottom: 1px solid #555;
}

/*------------------------------------
  Heading-v4
------------------------------------*/

[class*=u-heading-v4-] {
  padding: 0.1428571429rem 0 0.2142857143rem 1.4285714286rem;
  border-left-width: 4px;
  border-left-style: solid;
  border-color: inherit;
}

[class*=u-heading-v4-].text-right {
  padding: 0.1428571429rem 1.4285714286rem 0.2142857143rem 0;
  border-left-width: 0;
  border-right-width: 4px;
  border-right-style: solid;
}

/*------------------------------------
  Heading-v5
------------------------------------*/

.u-heading-v5__title {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.u-heading-v5__title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.8571428571rem;
  height: 0.8571428571rem;
  background: #464c5e;
}

.u-heading-v5-color-primary .u-heading-v5__title::before {
  background: #CAD105;
}

.u-heading-v5-color-gray-light-v2 .u-heading-v5__title::before {
  background: #ccc;
}

.u-heading-v5-color-white .u-heading-v5__title::before {
  background: #fff;
}

.u-heading-v5-rounded-50x .u-heading-v5__title::before {
  border-radius: 50%;
}

/*------------------------------------
  Heading-v5-1
------------------------------------*/

.u-heading-v5-1 .u-heading-v5__title {
  padding-top: 1.7857142857rem;
}

.u-heading-v5-1 .u-heading-v5__title::before {
  top: 0;
  left: 2px;
}

.u-heading-v5-1.text-center .u-heading-v5__title::before {
  left: 50%;
  margin-left: -6px;
}

.u-heading-v5-1.text-right .u-heading-v5__title::before {
  left: auto;
  right: 2px;
}

/*------------------------------------
  Heading-v5-2
------------------------------------*/

.u-heading-v5-2 .u-heading-v5__title::before {
  left: 0;
  bottom: 3px;
}

.u-heading-v5-2.text-right .u-heading-v5__title::before {
  left: auto;
  right: 0;
}

.u-heading-v5-2 .u-heading-v5__title {
  padding-left: 1.7857142857rem;
}

.u-heading-v5-2.text-right .u-heading-v5__title {
  padding-right: 1.7857142857rem;
}

/*------------------------------------
  Heading-v5-3
------------------------------------*/

.u-heading-v5-3 .u-heading-v5__title::before {
  left: 2px;
  bottom: 0;
}

.u-heading-v5-3.text-center .u-heading-v5__title::before {
  left: 50%;
  margin-left: -6px;
}

.u-heading-v5-3.text-right .u-heading-v5__title::before {
  left: auto;
  right: 2px;
}

.u-heading-v5-3 .u-heading-v5__title {
  padding-bottom: 1.7857142857rem;
}

/*------------------------------------
  Heading-v6
------------------------------------*/

.u-heading-v6__title {
  display: inline-block;
  position: relative;
}

.u-heading-v6-2.text-right .u-heading-v6__title::before,
.u-heading-v6-2.text-center .u-heading-v6__title::before,
.u-heading-v6-2 .u-heading-v6__title::after,
.u-heading-v6-1.text-right .u-heading-v6__title::before,
.u-heading-v6-1.text-center .u-heading-v6__title::before,
.u-heading-v6-1 .u-heading-v6__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 5rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: inherit;
}

/*------------------------------------
  Heading-v6-1
------------------------------------*/

.u-heading-v6-1 .u-heading-v6__title,
.u-heading-v6-1 .u-heading-v6__subtitle {
  padding-right: 6.4285714286rem;
}

.u-heading-v6-1.text-center .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-center .u-heading-v6__subtitle,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
  padding-left: 6.4285714286rem;
}

.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
  padding-right: 0;
}

.u-heading-v6-1 .u-heading-v6__title::after {
  right: 0;
}

.u-heading-v6-1.text-center .u-heading-v6__title::before {
  left: 0;
}

.u-heading-v6-1.text-right .u-heading-v6__title::before {
  left: 0;
}

.u-heading-v6-1.text-right .u-heading-v6__title::after {
  display: none;
}

/*------------------------------------
  Heading-v6-1
------------------------------------*/

.u-heading-v6-2 .u-heading-v6__title,
.u-heading-v6-2 .u-heading-v6__subtitle {
  padding-left: 6.4285714286rem;
}

.u-heading-v6-2.text-center .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-center .u-heading-v6__subtitle,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
  padding-right: 6.4285714286rem;
}

.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
  padding-left: 0;
}

.u-heading-v6-2 .u-heading-v6__title::after {
  left: 0;
}

.u-heading-v6-2.text-center .u-heading-v6__title::before {
  right: 0;
}

.u-heading-v6-2.text-right .u-heading-v6__title::before {
  right: 0;
}

.u-heading-v6-2.text-right .u-heading-v6__title::after {
  display: none;
}

/*------------------------------------
  Heading-v7
------------------------------------*/

.text-right .u-heading-v7-divider::before,
.text-center .u-heading-v7-divider::before,
.u-heading-v7-divider::after {
  content: "";
  position: absolute;
  top: 52%;
  display: inline-block;
  width: 2.8571428571rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: inherit;
}

.u-heading-v7-divider {
  position: relative;
  display: inline-block;
}

.u-heading-v7-divider::after {
  right: -3.9285714286rem;
}

.text-center .u-heading-v7-divider::before {
  left: -3.9285714286rem;
}

.text-right .u-heading-v7-divider::before {
  left: -3.9285714286rem;
}

.text-right .u-heading-v7-divider::after {
  display: none;
}

.u-heading-v7-divider__icon {
  display: inline-block;
  font-size: 1.4rem;
}

/*------------------------------------
  Heading-v7-1
------------------------------------*/

.u-heading-v7-1 .u-heading-v7-divider__icon {
  font-size: 0.6rem;
}

/*------------------------------------
  Heading-v7-3
------------------------------------*/

.u-heading-v7-3 .u-heading-v7-divider::after,
.u-heading-v7-3 .u-heading-v7-divider::before {
  display: none;
}

/*------------------------------------
  Heading-v8
------------------------------------*/

.u-heading-v8-2 .u-heading-v8__title strong,
.u-heading-v8-1 .u-heading-v8__title strong {
  display: inline-block;
  font-weight: inherit;
}

/*------------------------------------
  Heading-v8-1
------------------------------------*/

.u-heading-v8-1 .u-heading-v8__title strong {
  padding: 0.0714285714rem 0.5rem;
}

/*------------------------------------
  Heading-v8-2
------------------------------------*/

.u-heading-v8-2 .u-heading-v8__title strong {
  padding: 0.7142857143rem 1.0714285714rem;
}

/*------------------------------------
  Heading-v9
------------------------------------*/

.u-heading-v9 {
  position: relative;
  text-align: center;
}

.u-heading-v9::before {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  margin-left: -35px;
  width: 70px;
  height: 96px;
  border: 2px solid #CAD105;
}

.u-heading-v9--left {
  padding-left: 35px;
  text-align: left;
}

.u-heading-v9--left::before {
  left: 0;
  margin-left: 0;
}

.u-heading-v9--right {
  padding-right: 35px;
  text-align: right;
}

.u-heading-v9--right::before {
  left: auto;
  right: 0;
  margin-left: 0;
}

.u-heading-v9 * {
  position: relative;
  z-index: 3;
}

/*------------------------------------
  Heading-v10
------------------------------------*/

.u-heading-v10 {
  position: relative;
  text-align: center;
}

.u-heading-v10__downer {
  font-size: 115px;
  line-height: 1;
  opacity: 0.04;
}

.u-heading-v10__upper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #CAD105;
}

/*------------------------------------
  Headings
------------------------------------*/

/* Massive Underline */

.u-heading-massive-underline {
  position: relative;
}

.u-heading-massive-underline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2em;
  height: 0.3em;
  background-color: var(--primary-color);
  z-index: -1;
}

/* Heading With Dot */

.u-header-title-dot::after {
  content: ".";
  color: #CAD105;
  display: inline-block;
  font-size: 35px;
}

/*------------------------------------
  Nonstandart BG's
------------------------------------*/

.u-triangle-v1,
.u-triangle-v1-2,
.u-triangle-v2,
.u-triangle-v3,
.u-triangle-v4,
.u-triangle-v5,
.u-triangle-v6 {
  position: relative;
}

.u-triangle-v1::before,
.u-triangle-v1-2::before,
.u-triangle-v2::before,
.u-triangle-v3::before,
.u-triangle-v4::before,
.u-triangle-v5::before,
.u-triangle-v6::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 10;
}

.u-triangle-v1::before,
.u-triangle-v1-2::before,
.u-triangle-v2::before,
.u-triangle-v5::before,
.u-triangle-v6::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-v1.u-triangle-top.g-bg-primary::before,
.u-triangle-v1.u-triangle-left.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-top.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-left.g-bg-primary::before,
.u-triangle-v2.u-triangle-top.g-bg-primary::before,
.u-triangle-v2.u-triangle-left.g-bg-primary::before,
.u-triangle-v5.u-triangle-top.g-bg-primary::before,
.u-triangle-v5.u-triangle-left.g-bg-primary::before,
.u-triangle-v6.u-triangle-top.g-bg-primary::before,
.u-triangle-v6.u-triangle-left.g-bg-primary::before {
  border-bottom-color: #CAD105;
}

.u-triangle-v1.u-triangle-top.g-bg-white::before,
.u-triangle-v1.u-triangle-left.g-bg-white::before,
.u-triangle-v1-2.u-triangle-top.g-bg-white::before,
.u-triangle-v1-2.u-triangle-left.g-bg-white::before,
.u-triangle-v2.u-triangle-top.g-bg-white::before,
.u-triangle-v2.u-triangle-left.g-bg-white::before,
.u-triangle-v5.u-triangle-top.g-bg-white::before,
.u-triangle-v5.u-triangle-left.g-bg-white::before,
.u-triangle-v6.u-triangle-top.g-bg-white::before,
.u-triangle-v6.u-triangle-left.g-bg-white::before {
  border-bottom-color: #fff;
}

.u-triangle-v1.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before,
.u-triangle-v2.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v2.u-triangle-left.g-bg-gray-light-v9::before,
.u-triangle-v5.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v5.u-triangle-left.g-bg-gray-light-v9::before,
.u-triangle-v6.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v6.u-triangle-left.g-bg-gray-light-v9::before {
  border-bottom-color: #f7f7f7;
}

.u-triangle-v1.u-triangle-top.g-bg-black::before,
.u-triangle-v1.u-triangle-left.g-bg-black::before,
.u-triangle-v1-2.u-triangle-top.g-bg-black::before,
.u-triangle-v1-2.u-triangle-left.g-bg-black::before,
.u-triangle-v2.u-triangle-top.g-bg-black::before,
.u-triangle-v2.u-triangle-left.g-bg-black::before,
.u-triangle-v5.u-triangle-top.g-bg-black::before,
.u-triangle-v5.u-triangle-left.g-bg-black::before,
.u-triangle-v6.u-triangle-top.g-bg-black::before,
.u-triangle-v6.u-triangle-left.g-bg-black::before {
  border-bottom-color: #000;
}

.u-triangle-v1.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v1.u-triangle-right.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-right.g-bg-primary::before,
.u-triangle-v2.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v2.u-triangle-right.g-bg-primary::before,
.u-triangle-v5.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v5.u-triangle-right.g-bg-primary::before,
.u-triangle-v6.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v6.u-triangle-right.g-bg-primary::before {
  border-top-color: #CAD105;
}

.u-triangle-v1.u-triangle-bottom.g-bg-white::before,
.u-triangle-v1.u-triangle-right.g-bg-white::before,
.u-triangle-v1-2.u-triangle-bottom.g-bg-white::before,
.u-triangle-v1-2.u-triangle-right.g-bg-white::before,
.u-triangle-v2.u-triangle-bottom.g-bg-white::before,
.u-triangle-v2.u-triangle-right.g-bg-white::before,
.u-triangle-v5.u-triangle-bottom.g-bg-white::before,
.u-triangle-v5.u-triangle-right.g-bg-white::before,
.u-triangle-v6.u-triangle-bottom.g-bg-white::before,
.u-triangle-v6.u-triangle-right.g-bg-white::before {
  border-top-color: #fff;
}

.u-triangle-v1.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before,
.u-triangle-v2.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v2.u-triangle-right.g-bg-gray-light-v9::before,
.u-triangle-v5.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v5.u-triangle-right.g-bg-gray-light-v9::before,
.u-triangle-v6.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v6.u-triangle-right.g-bg-gray-light-v9::before {
  border-top-color: #f7f7f7;
}

.u-triangle-v1.u-triangle-bottom.g-bg-black::before,
.u-triangle-v1.u-triangle-right.g-bg-black::before,
.u-triangle-v1-2.u-triangle-bottom.g-bg-black::before,
.u-triangle-v1-2.u-triangle-right.g-bg-black::before,
.u-triangle-v2.u-triangle-bottom.g-bg-black::before,
.u-triangle-v2.u-triangle-right.g-bg-black::before,
.u-triangle-v5.u-triangle-bottom.g-bg-black::before,
.u-triangle-v5.u-triangle-right.g-bg-black::before,
.u-triangle-v6.u-triangle-bottom.g-bg-black::before,
.u-triangle-v6.u-triangle-right.g-bg-black::before {
  border-top-color: #000;
}

.u-triangle-v1.u-triangle-top::before,
.u-triangle-v1.u-triangle-bottom::before,
.u-triangle-v1.u-triangle-left::before,
.u-triangle-v1.u-triangle-right::before {
  left: 50%;
  margin-left: -20px;
}

.u-triangle-v1.u-triangle-top::before,
.u-triangle-v1.u-triangle-left::before {
  top: -25px;
  border-width: 0 20px 25px 20px;
}

.u-triangle-v1.u-triangle-bottom::before,
.u-triangle-v1.u-triangle-right::before {
  bottom: -25px;
  border-width: 25px 20px 0 20px;
}

.u-triangle-v1-2.u-triangle-left.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-left.g-bg-white::before,
.u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-left.g-bg-black::before,
.u-triangle-v1-2.u-triangle-right.g-bg-primary::before,
.u-triangle-v1-2.u-triangle-right.g-bg-white::before,
.u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before,
.u-triangle-v1-2.u-triangle-right.g-bg-black::before {
  border-bottom-color: transparent;
  border-top-color: transparent;
}

.u-triangle-v1-2.u-triangle-left::before,
.u-triangle-v1-2.u-triangle-right::before {
  top: 50%;
  bottom: auto;
  left: auto;
  margin-top: -5px;
  margin-left: 0;
}

.u-triangle-v1-2.u-triangle-left::before {
  left: -5px;
  border-width: 5px 5px 5px 0;
}

.u-triangle-v1-2.u-triangle-left.g-bg-primary::before {
  border-right-color: #CAD105;
}

.u-triangle-v1-2.u-triangle-left.g-bg-white::before {
  border-right-color: #fff;
}

.u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before {
  border-right-color: #f7f7f7;
}

.u-triangle-v1-2.u-triangle-left.g-bg-black::before {
  border-right-color: #000;
}

.u-triangle-v1-2.u-triangle-right::before {
  right: -5px;
  border-width: 5px 0 5px 5px;
}

.u-triangle-v1-2.u-triangle-right.g-bg-primary::before {
  border-left-color: #CAD105;
}

.u-triangle-v1-2.u-triangle-right.g-bg-white::before {
  border-left-color: #fff;
}

.u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before {
  border-left-color: #f7f7f7;
}

.u-triangle-v1-2.u-triangle-right.g-bg-black::before {
  border-left-color: #000;
}

.u-triangle-v2.u-triangle-top::before,
.u-triangle-v2.u-triangle-bottom::before {
  left: 45px;
}

.u-triangle-v2.u-triangle-left::before,
.u-triangle-v2.u-triangle-right::before {
  top: 23px;
}

.u-triangle-v2.u-triangle-top::before {
  top: -15px;
  border-width: 0 17px 15px 17px;
}

.u-triangle-v2.u-triangle-bottom::before {
  bottom: -15px;
  border-width: 15px 17px 0 17px;
}

.u-triangle-v2.u-triangle-left::before {
  left: -15px;
  border-width: 17px 15px 17px 0;
}

.u-triangle-v2.u-triangle-right::before {
  right: -15px;
  border-width: 17px 0 17px 15px;
}

.u-triangle-v3::before,
.u-triangle-v4::before {
  background-repeat: no-repeat;
}

.u-triangle-v3.u-triangle-top::before,
.u-triangle-v3.u-triangle-bottom::before,
.u-triangle-v3.u-triangle-left::before,
.u-triangle-v3.u-triangle-right::before,
.u-triangle-v4.u-triangle-top::before,
.u-triangle-v4.u-triangle-bottom::before,
.u-triangle-v4.u-triangle-left::before,
.u-triangle-v4.u-triangle-right::before {
  height: 50px;
  left: 0;
}

.u-triangle-v3.u-triangle-top::before,
.u-triangle-v3.u-triangle-left::before,
.u-triangle-v4.u-triangle-top::before,
.u-triangle-v4.u-triangle-left::before {
  top: -50px;
}

.u-triangle-v3.u-triangle-bottom::before,
.u-triangle-v3.u-triangle-right::before,
.u-triangle-v4.u-triangle-bottom::before,
.u-triangle-v4.u-triangle-right::before {
  bottom: -50px;
}

.u-triangle-v3.u-triangle-top::before,
.u-triangle-v3.u-triangle-left::before {
  width: 100%;
  background-size: 100%;
  background-position: top right;
}

.u-triangle-v3.u-triangle-top.g-bg-primary::before,
.u-triangle-v3.u-triangle-left.g-bg-primary::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #CAD105 50%);
}

.u-triangle-v3.u-triangle-top.g-bg-white::before,
.u-triangle-v3.u-triangle-left.g-bg-white::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%);
}

.u-triangle-v3.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%);
}

.u-triangle-v3.u-triangle-top.g-bg-black::before,
.u-triangle-v3.u-triangle-left.g-bg-black::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%);
}

.u-triangle-v3.u-triangle-bottom::before,
.u-triangle-v3.u-triangle-right::before {
  width: 100%;
  background-size: 100%;
  background-position: top right;
}

.u-triangle-v3.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v3.u-triangle-right.g-bg-primary::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #CAD105 50%);
}

.u-triangle-v3.u-triangle-bottom.g-bg-white::before,
.u-triangle-v3.u-triangle-right.g-bg-white::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%);
}

.u-triangle-v3.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%);
}

.u-triangle-v3.u-triangle-bottom.g-bg-black::before,
.u-triangle-v3.u-triangle-right.g-bg-black::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #000 50%);
}

.u-triangle-v4.u-triangle-top::before,
.u-triangle-v4.u-triangle-left::before {
  width: 100%;
  background-size: 50.2% 100%;
  background-position: top left, top right;
}

.u-triangle-v4.u-triangle-top.g-bg-primary::before,
.u-triangle-v4.u-triangle-left.g-bg-primary::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #CAD105 50%), linear-gradient(to bottom left, transparent 49.6%, #CAD105 50%);
}

.u-triangle-v4.u-triangle-top.g-bg-white::before,
.u-triangle-v4.u-triangle-left.g-bg-white::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to bottom left, transparent 49.6%, #fff 50%);
}

.u-triangle-v4.u-triangle-top.g-bg-gray-light-v9::before,
.u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%);
}

.u-triangle-v4.u-triangle-top.g-bg-black::before,
.u-triangle-v4.u-triangle-left.g-bg-black::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to bottom left, transparent 49.6%, #000 50%);
}

.u-triangle-v4.u-triangle-bottom::before,
.u-triangle-v4.u-triangle-right::before {
  width: 100%;
  background-size: 50.2% 100%;
  background-position: top left, top right;
}

.u-triangle-v4.u-triangle-bottom.g-bg-primary::before,
.u-triangle-v4.u-triangle-right.g-bg-primary::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #CAD105 50%), linear-gradient(to top left, transparent 49.6%, #CAD105 50%);
}

.u-triangle-v4.u-triangle-bottom.g-bg-white::before,
.u-triangle-v4.u-triangle-right.g-bg-white::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%);
}

.u-triangle-v4.u-triangle-bottom.g-bg-gray-light-v9::before,
.u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%);
}

.u-triangle-v4.u-triangle-bottom.g-bg-black::before,
.u-triangle-v4.u-triangle-right.g-bg-black::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%);
}

.u-triangle-v5.u-triangle-top::before,
.u-triangle-v5.u-triangle-bottom::before {
  left: 80px;
}

.u-triangle-v5.u-triangle-left::before,
.u-triangle-v5.u-triangle-right::before {
  top: 23px;
}

.u-triangle-v5.u-triangle-top::before {
  top: -22px;
  border-width: 22px 0 0 22px;
}

.u-triangle-v5.u-triangle-bottom::before {
  bottom: -22px;
  border-width: 22px 22px 0 0;
}

.u-triangle-v5.u-triangle-left::before {
  left: -22px;
  border-width: 0 22px 22px 0;
}

.u-triangle-v5.u-triangle-right::before {
  right: -22px;
  border-width: 22px 22px 0 0;
}

.u-triangle-v6.u-triangle-top::before,
.u-triangle-v6.u-triangle-bottom::before {
  left: 8%;
}

.u-triangle-v6.u-triangle-left::before,
.u-triangle-v6.u-triangle-right::before {
  top: 8%;
}

.u-triangle-v6.u-triangle-top::before {
  top: -22px;
  border-width: 22px 22px 0 0;
}

.u-triangle-v6.u-triangle-bottom::before {
  bottom: -22px;
  border-width: 22px 0 0 22px;
}

.u-triangle-v6.u-triangle-left::before {
  left: -22px;
  border-width: 22px 22px 0 0;
}

.u-triangle-v6.u-triangle-right::before {
  right: -22px;
  border-width: 0 22px 22px 0;
}

[class*=u-triangle-inclusive-v1]:not([class*=__front], [class*=__back]),
[class*=u-triangle-inclusive-v2]:not([class*=__front], [class*=__back]) {
  position: absolute;
}

.u-triangle-inclusive-v1--left {
  right: -14px;
}

.u-triangle-inclusive-v1--left__front {
  position: absolute;
  top: 1px;
  left: 0;
}

.u-triangle-inclusive-v1--left__front {
  border-width: 14px 0 14px 14px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--left__back {
  border-width: 15px 0 15px 15px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--right {
  left: -14px;
}

.u-triangle-inclusive-v1--right__front {
  position: absolute;
  top: 1px;
  right: 0;
}

.u-triangle-inclusive-v1--right__front {
  border-width: 14px 14px 14px 0;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--right__back {
  border-width: 15px 15px 15px 0;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--top {
  top: -14px;
}

.u-triangle-inclusive-v1--top__front {
  position: absolute;
  left: 1px;
  bottom: 0;
}

.u-triangle-inclusive-v1--top__front {
  border-width: 0 14px 14px 14px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--top__back {
  border-width: 0 15px 15px 15px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--bottom {
  bottom: -14px;
}

.u-triangle-inclusive-v1--bottom__front {
  position: absolute;
  left: 1px;
  bottom: 1px;
}

.u-triangle-inclusive-v1--bottom__front {
  border-width: 14px 14px 0 14px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v1--bottom__back {
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: transparent;
}

.u-triangle-inclusive-v2--left {
  left: 100%;
}

.u-triangle-inclusive-v2--left__front,
.u-triangle-inclusive-v2--left__back {
  position: absolute;
  left: 0;
  height: 100%;
}

.u-triangle-inclusive-v2--left__front svg,
.u-triangle-inclusive-v2--left__back svg {
  height: 100%;
  vertical-align: middle;
}

.u-triangle-inclusive-v2--left__front {
  z-index: 2;
}

.u-triangle-inclusive-v2--left__front svg polygon {
  fill: #eee;
}

.u-triangle-inclusive-v2--left__back {
  z-index: 1;
}

.u-triangle-inclusive-v2--left__back svg polygon {
  fill: #fff;
}

.u-triangle-inclusive-v2--right {
  right: 100%;
}

.u-triangle-inclusive-v2--right__front,
.u-triangle-inclusive-v2--right__back {
  position: absolute;
  right: 0;
  height: 100%;
}

.u-triangle-inclusive-v2--right__front svg,
.u-triangle-inclusive-v2--right__back svg {
  height: 100%;
  vertical-align: middle;
}

.u-triangle-inclusive-v2--right__front {
  z-index: 2;
}

.u-triangle-inclusive-v2--right__front svg polygon {
  fill: #eee;
}

.u-triangle-inclusive-v2--right__back {
  z-index: 1;
}

.u-triangle-inclusive-v2--right__back svg polygon {
  fill: #fff;
}

.u-triangle-inclusive-v2--top {
  bottom: 100%;
}

.u-triangle-inclusive-v2--top__front,
.u-triangle-inclusive-v2--top__back {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.u-triangle-inclusive-v2--top__front svg,
.u-triangle-inclusive-v2--top__back svg {
  width: 100%;
  vertical-align: bottom;
}

.u-triangle-inclusive-v2--top__front {
  z-index: 2;
}

.u-triangle-inclusive-v2--top__front svg polygon {
  fill: #eee;
}

.u-triangle-inclusive-v2--top__back {
  z-index: 1;
}

.u-triangle-inclusive-v2--top__back svg polygon {
  fill: #fff;
}

.u-triangle-inclusive-v2--bottom {
  top: 100%;
}

.u-triangle-inclusive-v2--bottom__front,
.u-triangle-inclusive-v2--bottom__back {
  position: absolute;
  top: 0;
  width: 100%;
}

.u-triangle-inclusive-v2--bottom__front svg,
.u-triangle-inclusive-v2--bottom__back svg {
  width: 100%;
  vertical-align: top;
}

.u-triangle-inclusive-v2--bottom__front {
  z-index: 2;
}

.u-triangle-inclusive-v2--bottom__front svg polygon {
  fill: #eee;
}

.u-triangle-inclusive-v2--bottom__back {
  z-index: 1;
}

.u-triangle-inclusive-v2--bottom__back svg polygon {
  fill: #fff;
}

.u-semicircle-v1 {
  position: relative;
  z-index: 10;
}

.u-semicircle-v1::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 150%;
  height: 150%;
  border-radius: 50%;
}

.u-semicircle-v1.g-bg-primary::before {
  background: #CAD105;
}

.u-semicircle-v1.g-bg-white::before {
  background: #fff;
}

.u-semicircle-v1.g-bg-gray-light-v9::before {
  background: #f7f7f7;
}

.u-semicircle-v1.g-bg-black::before {
  background: #000;
}

.u-semicircle-top::before,
.u-semicircle-right::before {
  top: -20%;
  left: -25%;
}

.u-semicircle-bottom::before,
.u-semicircle-left::before {
  bottom: -20%;
  left: -25%;
}

@media (max-width: 576px-1) {
  .u-triangle-none--xs::before,
  .u-semicircle-none--xs::before {
    display: none;
  }
}

@media (min-width: 576px) {
  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-top::before,
  .u-triangle-v4.u-triangle-bottom::before {
    height: 75px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-left::before,
  .u-triangle-v4.u-triangle-right::before {
    width: 75px;
  }

  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v4.u-triangle-top::before {
    top: -75px;
  }

  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-bottom::before {
    bottom: -75px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v4.u-triangle-left::before {
    left: -75px;
  }

  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-right::before {
    right: -75px;
  }
}

@media (max-width: 768px-1) {
  .u-triangle-none--sm::before,
  .u-semicircle-none--sm::before {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-triangle-v1.u-triangle-left.g-bg-primary::before,
  .u-triangle-v1.u-triangle-left.g-bg-white::before,
  .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before,
  .u-triangle-v1.u-triangle-left.g-bg-black::before,
  .u-triangle-v1.u-triangle-right.g-bg-primary::before,
  .u-triangle-v1.u-triangle-right.g-bg-white::before,
  .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before,
  .u-triangle-v1.u-triangle-right.g-bg-black::before {
    border-bottom-color: transparent;
    border-top-color: transparent;
  }

  .u-triangle-v1.u-triangle-left::before,
  .u-triangle-v1.u-triangle-right::before {
    top: 50%;
    bottom: auto;
    left: auto;
    margin-top: -20px;
    margin-left: 0;
  }

  .u-triangle-v1.u-triangle-left::before {
    left: -25px;
    border-width: 20px 25px 20px 0;
  }

  .u-triangle-v1.u-triangle-left.g-bg-primary::before {
    border-right-color: #CAD105;
  }

  .u-triangle-v1.u-triangle-left.g-bg-white::before {
    border-right-color: #fff;
  }

  .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before {
    border-right-color: #f7f7f7;
  }

  .u-triangle-v1.u-triangle-left.g-bg-black::before {
    border-right-color: #000;
  }

  .u-triangle-v1.u-triangle-right::before {
    right: -25px;
    border-width: 20px 0 20px 25px;
  }

  .u-triangle-v1.u-triangle-right.g-bg-primary::before {
    border-left-color: #CAD105;
  }

  .u-triangle-v1.u-triangle-right.g-bg-white::before {
    border-left-color: #fff;
  }

  .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before {
    border-left-color: #f7f7f7;
  }

  .u-triangle-v1.u-triangle-right.g-bg-black::before {
    border-left-color: #000;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-left::before,
  .u-triangle-v4.u-triangle-right::before {
    height: 100%;
    left: auto;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v4.u-triangle-left::before {
    top: 0;
  }

  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-right::before {
    top: 0;
    bottom: auto;
  }

  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-top::before,
  .u-triangle-v4.u-triangle-bottom::before {
    height: 100px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-left::before,
  .u-triangle-v4.u-triangle-right::before {
    width: 100px;
  }

  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v4.u-triangle-top::before {
    top: -100px;
  }

  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-bottom::before {
    bottom: -100px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v4.u-triangle-left::before {
    left: -100px;
  }

  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-right::before {
    right: -100px;
  }

  .u-triangle-v3.u-triangle-left.g-bg-primary::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #CAD105 50%);
  }

  .u-triangle-v3.u-triangle-left.g-bg-white::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%);
  }

  .u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%);
  }

  .u-triangle-v3.u-triangle-left.g-bg-black::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%);
  }

  .u-triangle-v3.u-triangle-right.g-bg-primary::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #CAD105 50%);
  }

  .u-triangle-v3.u-triangle-right.g-bg-white::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%);
  }

  .u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%);
  }

  .u-triangle-v3.u-triangle-right.g-bg-black::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%);
  }

  .u-triangle-v4.u-triangle-left::before {
    height: 100%;
    background-size: 100% 50.2%;
    background-position: top right, bottom left;
  }

  .u-triangle-v4.u-triangle-left.g-bg-primary::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #CAD105 50%), linear-gradient(to top right, transparent 49.6%, #CAD105 50%);
  }

  .u-triangle-v4.u-triangle-left.g-bg-white::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to top right, transparent 49.6%, #fff 50%);
  }

  .u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%);
  }

  .u-triangle-v4.u-triangle-left.g-bg-black::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to top right, transparent 49.6%, #000 50%);
  }

  .u-triangle-v4.u-triangle-right::before {
    height: 100%;
    background-size: 100% 50.2%;
    background-position: top right, bottom left;
  }

  .u-triangle-v4.u-triangle-right.g-bg-primary::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #CAD105 50%), linear-gradient(to top left, transparent 49.6%, #CAD105 50%);
  }

  .u-triangle-v4.u-triangle-right.g-bg-white::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%);
  }

  .u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%);
  }

  .u-triangle-v4.u-triangle-right.g-bg-black::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%);
  }

  .u-semicircle-left::before {
    top: -25%;
    left: -20%;
  }

  .u-semicircle-right::before {
    top: -25%;
    bottom: auto;
    left: auto;
    right: -20%;
  }
}

@media (max-width: 992px-1) {
  .u-triangle-none--md::before,
  .u-semicircle-none--md::before {
    display: none;
  }
}

@media (min-width: 992px) {
  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-top::before,
  .u-triangle-v4.u-triangle-bottom::before {
    height: 150px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-left::before,
  .u-triangle-v4.u-triangle-right::before {
    width: 150px;
  }

  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v4.u-triangle-top::before {
    top: -150px;
  }

  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-bottom::before {
    bottom: -150px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v4.u-triangle-left::before {
    left: -150px;
  }

  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-right::before {
    right: -150px;
  }
}

@media (max-width: 1200px) {
  .u-triangle-none--lg::before,
  .u-semicircle-none--lg::before {
    display: none;
  }
}

@media (min-width: 1200px) {
  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-top::before,
  .u-triangle-v4.u-triangle-bottom::before {
    height: 200px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-left::before,
  .u-triangle-v4.u-triangle-right::before {
    width: 200px;
  }

  .u-triangle-v3.u-triangle-top::before,
  .u-triangle-v4.u-triangle-top::before {
    top: -200px;
  }

  .u-triangle-v3.u-triangle-bottom::before,
  .u-triangle-v4.u-triangle-bottom::before {
    bottom: -200px;
  }

  .u-triangle-v3.u-triangle-left::before,
  .u-triangle-v4.u-triangle-left::before {
    left: -200px;
  }

  .u-triangle-v3.u-triangle-right::before,
  .u-triangle-v4.u-triangle-right::before {
    right: -200px;
  }
}

.u-triangle-none--xl::before,
.u-semicircle-none--xl::before {
  display: none;
}

.u-zigzag-top {
  position: relative;
  background: #f7f7f7;
  z-index: 1;
}

.u-zigzag-top::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #f7f7f7 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

.u-zigzag-bottom {
  position: relative;
  background: #f7f7f7;
  z-index: 1;
}

.u-zigzag-bottom::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(315deg, #f7f7f7 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

.u-zigzag-top-white {
  position: relative;
  background: #fff;
  z-index: 1;
}

.u-zigzag-top-white::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #fff 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #fff 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

.u-zigzag-top-primary {
  position: relative;
  background: #CAD105;
  z-index: 1;
}

.u-zigzag-top-primary::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #CAD105 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #CAD105 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

.u-zigzag-top-black {
  position: relative;
  background: #000;
  z-index: 1;
}

.u-zigzag-top-black::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #000 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #000 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

.u-zigzag-top-gray-dark-v1 {
  position: relative;
  background: #111;
  z-index: 1;
}

.u-zigzag-top-gray-dark-v1::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #111 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #111 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px;
}

/*------------------------------------
  Nonstandard-bg
------------------------------------*/

[class*=u-ns-bg-v] {
  position: relative;
}

[class*=u-ns-bg-v]::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 3;
}

/*------------------------------------
  Nonstandard Background v1
------------------------------------*/

[class*=u-ns-bg-v1] {
  position: relative;
}

[class*=u-ns-bg-v1]::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v1-top::before,
.u-ns-bg-v1-bottom::before {
  left: 50%;
  margin-left: -20px;
}

.u-ns-bg-v1-left::before,
.u-ns-bg-v1-right::before {
  top: 50%;
  margin-top: -20px;
}

.u-ns-bg-v1-top::before {
  top: -25px;
  border-width: 0 20px 25px 20px;
}

.u-ns-bg-v1-top.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-top::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v1-top.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-top::before {
  border-bottom-color: #fff;
}

.u-ns-bg-v1-top.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-top::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v1-top.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-top::before {
  border-bottom-color: #000;
}

.u-ns-bg-v1-bottom::before {
  bottom: -25px;
  border-width: 25px 20px 0 20px;
}

.u-ns-bg-v1-bottom.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-bottom::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v1-bottom.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-bottom::before {
  border-top-color: #fff;
}

.u-ns-bg-v1-bottom.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-bottom::before {
  border-top-color: #ccc;
}

.u-ns-bg-v1-bottom.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-bottom::before {
  border-top-color: #000;
}

.u-ns-bg-v1-left::before {
  left: -25px;
  border-width: 20px 25px 20px 0;
}

.u-ns-bg-v1-left.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-left::before {
  border-right-color: #CAD105;
}

.u-ns-bg-v1-left.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-left::before {
  border-right-color: #fff;
}

.u-ns-bg-v1-left.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-left::before {
  border-right-color: #ccc;
}

.u-ns-bg-v1-left.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-left::before {
  border-right-color: #000;
}

.u-ns-bg-v1-right::before {
  right: -25px;
  border-width: 20px 0 20px 25px;
}

.u-ns-bg-v1-right.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-right::before {
  border-left-color: #CAD105;
}

.u-ns-bg-v1-right.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-right::before {
  border-left-color: #fff;
}

.u-ns-bg-v1-right.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-right::before {
  border-left-color: #ccc;
}

.u-ns-bg-v1-right.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-right::before {
  border-left-color: #000;
}

@media (min-width: 768px) {
  .u-ns-bg-v1-top--md::before,
  .u-ns-bg-v1-bottom--md::before,
  .u-ns-bg-v1-left--md::before,
  .u-ns-bg-v1-right--md::before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .u-ns-bg-v1-top--md.g-bg-primary::before,
  .u-ns-bg-v1-top--md.g-bg-white::before,
  .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v1-top--md.g-bg-black::before,
  .u-ns-bg-v1-bottom--md.g-bg-primary::before,
  .u-ns-bg-v1-bottom--md.g-bg-white::before,
  .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v1-bottom--md.g-bg-black::before,
  .u-ns-bg-v1-left--md.g-bg-primary::before,
  .u-ns-bg-v1-left--md.g-bg-white::before,
  .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v1-left--md.g-bg-black::before,
  .u-ns-bg-v1-right--md.g-bg-primary::before,
  .u-ns-bg-v1-right--md.g-bg-white::before,
  .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v1-right--md.g-bg-black::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .u-ns-bg-v1-top--md::before,
  .u-ns-bg-v1-bottom--md::before {
    left: 50%;
    margin-left: -20px;
  }

  .u-ns-bg-v1-left--md::before,
  .u-ns-bg-v1-right--md::before {
    top: 50%;
    margin-top: -20px;
  }

  .u-ns-bg-v1-top--md::before {
    top: -25px;
    border-width: 0 20px 25px 20px;
  }

  .u-ns-bg-v1-top--md.g-bg-primary::before {
    border-bottom-color: #CAD105;
  }

  .u-ns-bg-v1-top--md.g-bg-white::before {
    border-bottom-color: #fff;
  }

  .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before {
    border-bottom-color: #ccc;
  }

  .u-ns-bg-v1-top--md.g-bg-black::before {
    border-bottom-color: #000;
  }

  .u-ns-bg-v1-bottom--md::before {
    bottom: -25px;
    border-width: 25px 20px 0 20px;
  }

  .u-ns-bg-v1-bottom--md.g-bg-primary::before {
    border-top-color: #CAD105;
  }

  .u-ns-bg-v1-bottom--md.g-bg-white::before {
    border-top-color: #fff;
  }

  .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before {
    border-top-color: #ccc;
  }

  .u-ns-bg-v1-bottom--md.g-bg-black::before {
    border-top-color: #000;
  }

  .u-ns-bg-v1-left--md::before {
    left: -25px;
    border-width: 20px 25px 20px 0;
  }

  .u-ns-bg-v1-left--md.g-bg-primary::before {
    border-right-color: #CAD105;
  }

  .u-ns-bg-v1-left--md.g-bg-white::before {
    border-right-color: #fff;
  }

  .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before {
    border-right-color: #ccc;
  }

  .u-ns-bg-v1-left--md.g-bg-black::before {
    border-right-color: #000;
  }

  .u-ns-bg-v1-right--md::before {
    right: -25px;
    border-width: 20px 0 20px 25px;
  }

  .u-ns-bg-v1-right--md.g-bg-primary::before {
    border-left-color: #CAD105;
  }

  .u-ns-bg-v1-right--md.g-bg-white::before {
    border-left-color: #fff;
  }

  .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before {
    border-left-color: #ccc;
  }

  .u-ns-bg-v1-right--md.g-bg-black::before {
    border-left-color: #000;
  }
}

/*------------------------------------
  Nonstandard Background v2
------------------------------------*/

[class*=u-ns-bg-v2] {
  position: relative;
}

[class*=u-ns-bg-v2]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v2-top::before,
.u-ns-bg-v2-bottom::before,
.u-ns-bg-v2-2-top::before,
.u-ns-bg-v2-2-bottom::before {
  left: 45px;
}

.u-ns-bg-v2-left::before,
.u-ns-bg-v2-right::before,
.u-ns-bg-v2-2-left::before,
.u-ns-bg-v2-2-right::before {
  top: 23px;
}

.u-ns-bg-v2-top::before,
.u-ns-bg-v2-2-top::before {
  top: -15px;
  border-width: 0 17px 15px 17px;
}

.u-ns-bg-v2-top.g-bg-primary::before,
.u-ns-bg-v2-2-top.g-bg-primary::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v2-top.g-bg-white::before,
.u-ns-bg-v2-2-top.g-bg-white::before {
  border-bottom-color: #fff;
}

.u-ns-bg-v2-top.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-top.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v2-top.g-bg-gray-light-v5::before,
.u-ns-bg-v2-2-top.g-bg-gray-light-v5::before {
  border-bottom-color: #f7f7f7;
}

.u-ns-bg-v2-top.g-bg-black::before,
.u-ns-bg-v2-2-top.g-bg-black::before {
  border-bottom-color: #000;
}

.u-ns-bg-v2-bottom::before,
.u-ns-bg-v2-2-bottom::before {
  bottom: -15px;
  border-width: 15px 17px 0 17px;
}

.u-ns-bg-v2-bottom.g-bg-primary::before,
.u-ns-bg-v2-2-bottom.g-bg-primary::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v2-bottom.g-bg-white::before,
.u-ns-bg-v2-2-bottom.g-bg-white::before {
  border-top-color: #fff;
}

.u-ns-bg-v2-bottom.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-bottom.g-bg-gray-light-v2::before {
  border-top-color: #ccc;
}

.u-ns-bg-v2-bottom.g-bg-black::before,
.u-ns-bg-v2-2-bottom.g-bg-black::before {
  border-top-color: #000;
}

.u-ns-bg-v2-left::before,
.u-ns-bg-v2-2-left::before {
  left: -15px;
  border-width: 17px 15px 17px 0;
}

.u-ns-bg-v2-left.g-bg-primary::before,
.u-ns-bg-v2-2-left.g-bg-primary::before {
  border-right-color: #CAD105;
}

.u-ns-bg-v2-left.g-bg-white::before,
.u-ns-bg-v2-2-left.g-bg-white::before {
  border-right-color: #fff;
}

.u-ns-bg-v2-left.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-left.g-bg-gray-light-v2::before {
  border-right-color: #ccc;
}

.u-ns-bg-v2-left.g-bg-black::before,
.u-ns-bg-v2-2-left.g-bg-black::before {
  border-right-color: #000;
}

.u-ns-bg-v2-right::before,
.u-ns-bg-v2-2-right::before {
  right: -15px;
  border-width: 17px 0 17px 15px;
}

.u-ns-bg-v2-right.g-bg-primary::before,
.u-ns-bg-v2-2-right.g-bg-primary::before {
  border-left-color: #CAD105;
}

.u-ns-bg-v2-right.g-bg-white::before,
.u-ns-bg-v2-2-right.g-bg-white::before {
  border-left-color: #fff;
}

.u-ns-bg-v2-right.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-right.g-bg-gray-light-v2::before {
  border-left-color: #ccc;
}

.u-ns-bg-v2-right.g-bg-black::before,
.u-ns-bg-v2-2-right.g-bg-black::before {
  border-left-color: #000;
}

.u-ns-bg-v2-2-top::before,
.u-ns-bg-v2-2-bottom::before,
.u-ns-bg-v2-2-2-top::before,
.u-ns-bg-v2-2-2-bottom::before {
  left: 20px;
}

.u-ns-bg-v2-2-left::before,
.u-ns-bg-v2-2-right::before,
.u-ns-bg-v2-2-2-left::before,
.u-ns-bg-v2-2-2-right::before {
  top: 30px;
}

.u-ns-bg-v2-2-top::before,
.u-ns-bg-v2-2-2-top::before {
  border-width: 0 15px 15px 15px;
}

.u-ns-bg-v2-2-bottom::before,
.u-ns-bg-v2-2-2-bottom::before {
  border-width: 15px 15px 0 15px;
}

.u-ns-bg-v2-2-left::before,
.u-ns-bg-v2-2-2-left::before {
  border-width: 15px 15px 15px 0;
}

.u-ns-bg-v2-2-right::before,
.u-ns-bg-v2-2-2-right::before {
  border-width: 15px 0 15px 15px;
}

@media (min-width: 768px) {
  .u-ns-bg-v2-top--md::before,
  .u-ns-bg-v2-bottom--md::before,
  .u-ns-bg-v2-left--md::before,
  .u-ns-bg-v2-right--md::before,
  .u-ns-bg-v2-2-top--md::before,
  .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-left--md::before,
  .u-ns-bg-v2-2-right--md::before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .u-ns-bg-v2-top--md.g-bg-primary::before,
  .u-ns-bg-v2-top--md.g-bg-white::before,
  .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-top--md.g-bg-black::before,
  .u-ns-bg-v2-bottom--md.g-bg-primary::before,
  .u-ns-bg-v2-bottom--md.g-bg-white::before,
  .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-bottom--md.g-bg-black::before,
  .u-ns-bg-v2-left--md.g-bg-primary::before,
  .u-ns-bg-v2-left--md.g-bg-white::before,
  .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-left--md.g-bg-black::before,
  .u-ns-bg-v2-right--md.g-bg-primary::before,
  .u-ns-bg-v2-right--md.g-bg-white::before,
  .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-right--md.g-bg-black::before,
  .u-ns-bg-v2-2-top--md.g-bg-primary::before,
  .u-ns-bg-v2-2-top--md.g-bg-white::before,
  .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-top--md.g-bg-black::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-primary::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-white::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-black::before,
  .u-ns-bg-v2-2-left--md.g-bg-primary::before,
  .u-ns-bg-v2-2-left--md.g-bg-white::before,
  .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-left--md.g-bg-black::before,
  .u-ns-bg-v2-2-right--md.g-bg-primary::before,
  .u-ns-bg-v2-2-right--md.g-bg-white::before,
  .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-right--md.g-bg-black::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .u-ns-bg-v2-top--md::before,
  .u-ns-bg-v2-2-top--md::before {
    top: -15px;
    border-width: 0 17px 15px 17px;
  }

  .u-ns-bg-v2-top--md.g-bg-primary::before,
  .u-ns-bg-v2-2-top--md.g-bg-primary::before {
    border-bottom-color: #CAD105;
  }

  .u-ns-bg-v2-top--md.g-bg-white::before,
  .u-ns-bg-v2-2-top--md.g-bg-white::before {
    border-bottom-color: #fff;
  }

  .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before {
    border-bottom-color: #ccc;
  }

  .u-ns-bg-v2-top--md.g-bg-black::before,
  .u-ns-bg-v2-2-top--md.g-bg-black::before {
    border-bottom-color: #000;
  }

  .u-ns-bg-v2-bottom--md::before,
  .u-ns-bg-v2-2-bottom--md::before {
    bottom: -15px;
    border-width: 15px 17px 0 17px;
  }

  .u-ns-bg-v2-bottom--md.g-bg-primary::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-primary::before {
    border-top-color: #CAD105;
  }

  .u-ns-bg-v2-bottom--md.g-bg-white::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-white::before {
    border-top-color: #fff;
  }

  .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before {
    border-top-color: #ccc;
  }

  .u-ns-bg-v2-bottom--md.g-bg-black::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-black::before {
    border-top-color: #000;
  }

  .u-ns-bg-v2-left--md::before,
  .u-ns-bg-v2-2-left--md::before {
    left: -15px;
    border-width: 17px 15px 17px 0;
  }

  .u-ns-bg-v2-left--md.g-bg-primary::before,
  .u-ns-bg-v2-2-left--md.g-bg-primary::before {
    border-right-color: #CAD105;
  }

  .u-ns-bg-v2-left--md.g-bg-white::before,
  .u-ns-bg-v2-2-left--md.g-bg-white::before {
    border-right-color: #fff;
  }

  .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before {
    border-right-color: #ccc;
  }

  .u-ns-bg-v2-left--md.g-bg-black::before,
  .u-ns-bg-v2-2-left--md.g-bg-black::before {
    border-right-color: #000;
  }

  .u-ns-bg-v2-right--md::before,
  .u-ns-bg-v2-2-right--md::before {
    right: -15px;
    border-width: 17px 0 17px 15px;
  }

  .u-ns-bg-v2-right--md.g-bg-primary::before,
  .u-ns-bg-v2-2-right--md.g-bg-primary::before {
    border-left-color: #CAD105;
  }

  .u-ns-bg-v2-right--md.g-bg-white::before,
  .u-ns-bg-v2-2-right--md.g-bg-white::before {
    border-left-color: #fff;
  }

  .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before {
    border-left-color: #ccc;
  }

  .u-ns-bg-v2-right--md.g-bg-black::before,
  .u-ns-bg-v2-2-right--md.g-bg-black::before {
    border-left-color: #000;
  }

  .u-ns-bg-v2-2-top--md::before,
  .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-2-top--md::before,
  .u-ns-bg-v2-2-2-bottom--md::before {
    left: 20px;
  }

  .u-ns-bg-v2-2-left--md::before,
  .u-ns-bg-v2-2-right--md::before,
  .u-ns-bg-v2-2-2-left--md::before,
  .u-ns-bg-v2-2-2-right--md::before {
    top: 30px;
  }

  .u-ns-bg-v2-2-top--md::before,
  .u-ns-bg-v2-2-2-top--md::before {
    border-width: 0 15px 15px 15px;
  }

  .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-2-bottom--md::before {
    border-width: 15px 15px 0 15px;
  }

  .u-ns-bg-v2-2-left--md::before,
  .u-ns-bg-v2-2-2-left--md::before {
    border-width: 15px 15px 15px 0;
  }

  .u-ns-bg-v2-2-right--md::before,
  .u-ns-bg-v2-2-2-right--md::before {
    border-width: 15px 0 15px 15px;
  }
}

/*------------------------------------
  Nonstandard Background v3
------------------------------------*/

[class*=u-ns-bg-v3] {
  position: relative;
}

[class*=u-ns-bg-v3]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v3-top::before,
.u-ns-bg-v3-bottom::before {
  left: 80px;
}

.u-ns-bg-v3-left::before,
.u-ns-bg-v3-right::before {
  top: 23px;
}

.u-ns-bg-v3-top.g-bg-primary::before,
.u-ns-bg-v3-left.g-bg-primary::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v3-top.g-bg-white::before,
.u-ns-bg-v3-left.g-bg-white::before {
  border-bottom-color: #fff;
}

.u-ns-bg-v3-top.g-bg-gray-light-v2::before,
.u-ns-bg-v3-left.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v3-top.g-bg-black::before,
.u-ns-bg-v3-left.g-bg-black::before {
  border-bottom-color: #000;
}

.u-ns-bg-v3-top.g-bg-facebook::before,
.u-ns-bg-v3-left.g-bg-facebook::before {
  border-bottom-color: #3b5998;
}

.u-ns-bg-v3-bottom.g-bg-primary::before,
.u-ns-bg-v3-right.g-bg-primary::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v3-bottom.g-bg-white::before,
.u-ns-bg-v3-right.g-bg-white::before {
  border-top-color: #fff;
}

.u-ns-bg-v3-bottom.g-bg-gray-light-v2::before,
.u-ns-bg-v3-right.g-bg-gray-light-v2::before {
  border-top-color: #ccc;
}

.u-ns-bg-v3-bottom.g-bg-black::before,
.u-ns-bg-v3-right.g-bg-black::before {
  border-top-color: #000;
}

.u-ns-bg-v3-bottom.g-bg-lightred::before,
.u-ns-bg-v3-right.g-bg-lightred::before {
  border-top-color: #e64b3b;
}

.u-ns-bg-v3-bottom.g-bg-blue::before,
.u-ns-bg-v3-right.g-bg-blue::before {
  border-top-color: #355c76;
}

.u-ns-bg-v3-bottom.g-bg-purple::before,
.u-ns-bg-v3-right.g-bg-purple::before {
  border-top-color: #9a69cb;
}

.u-ns-bg-v3-bottom.g-bg-cyan::before,
.u-ns-bg-v3-right.g-bg-cyan::before {
  border-top-color: #00bed6;
}

.u-ns-bg-v3-bottom.g-bg-teal::before,
.u-ns-bg-v3-right.g-bg-teal::before {
  border-top-color: #18ba9b;
}

.u-ns-bg-v3-bottom.g-bg-pink::before,
.u-ns-bg-v3-right.g-bg-pink::before {
  border-top-color: #e81c62;
}

.u-ns-bg-v3-bottom.g-bg-red::before,
.u-ns-bg-v3-right.g-bg-red::before {
  border-top-color: #f00;
}

.u-ns-bg-v3-bottom.g-bg-facebook::before,
.u-ns-bg-v3-right.g-bg-facebook::before {
  border-top-color: #3b5998;
}

.u-ns-bg-v3-top::before {
  top: -22px;
  border-width: 22px 0 0 22px;
}

.u-ns-bg-v3-bottom::before {
  bottom: -22px;
  border-width: 22px 22px 0 0;
}

.u-ns-bg-v3-left::before {
  left: -22px;
  border-width: 0 22px 22px 0;
}

.u-ns-bg-v3-right::before {
  right: -22px;
  border-width: 22px 22px 0 0;
}

/*------------------------------------
  Nonstandard Background v4
------------------------------------*/

[class*=u-ns-bg-v4] {
  position: relative;
}

[class*=u-ns-bg-v4]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v4-top::before,
.u-ns-bg-v4-bottom::before {
  left: 8%;
}

.u-ns-bg-v4-left::before,
.u-ns-bg-v4-right::before {
  top: 8%;
}

.u-ns-bg-v4-top.g-bg-primary::before,
.u-ns-bg-v4-left.g-bg-primary::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v4-top.g-bg-white::before,
.u-ns-bg-v4-left.g-bg-white::before {
  border-bottom-color: #fff;
}

.u-ns-bg-v4-top.g-bg-gray-light-v2::before,
.u-ns-bg-v4-left.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v4-top.g-bg-black::before,
.u-ns-bg-v4-left.g-bg-black::before {
  border-bottom-color: #000;
}

.u-ns-bg-v4-bottom.g-bg-primary::before,
.u-ns-bg-v4-right.g-bg-primary::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v4-bottom.g-bg-white::before,
.u-ns-bg-v4-right.g-bg-white::before {
  border-top-color: #fff;
}

.u-ns-bg-v4-bottom.g-bg-gray-light-v2::before,
.u-ns-bg-v4-right.g-bg-gray-light-v2::before {
  border-top-color: #ccc;
}

.u-ns-bg-v4-bottom.g-bg-black::before,
.u-ns-bg-v4-right.g-bg-black::before {
  border-top-color: #000;
}

.u-ns-bg-v4-top::before {
  top: -22px;
  border-width: 22px 22px 0 0;
}

.u-ns-bg-v4-bottom::before {
  bottom: -22px;
  border-width: 22px 0 0 22px;
}

.u-ns-bg-v4-left::before {
  left: -22px;
  border-width: 22px 22px 0 0;
}

.u-ns-bg-v4-right::before {
  right: -22px;
  border-width: 0 22px 22px 0;
}

/*------------------------------------
  Nonstandard Background v5
------------------------------------*/

[class*=u-ns-bg-v5] {
  position: relative;
}

[class*=u-ns-bg-v5] .u-ns-bg-before {
  position: absolute;
  z-index: 2;
}

[class*=u-ns-bg-v5].g-bg-primary svg polygon,
[class*=u-ns-bg-v5].g-bg-primary svg path {
  fill: #CAD105;
}

[class*=u-ns-bg-v5].g-bg-white svg polygon,
[class*=u-ns-bg-v5].g-bg-white svg path {
  fill: #fff;
}

[class*=u-ns-bg-v5].g-bg-gray-light-v2 svg polygon,
[class*=u-ns-bg-v5].g-bg-gray-light-v2 svg path {
  fill: #ccc;
}

[class*=u-ns-bg-v5].g-bg-black svg polygon,
[class*=u-ns-bg-v5].g-bg-black svg path {
  fill: #000;
}

.u-ns-bg-v5-top .u-ns-bg-before,
.u-ns-bg-v5-bottom .u-ns-bg-before {
  width: 100%;
}

.u-ns-bg-v5-top svg,
.u-ns-bg-v5-bottom svg {
  width: 100%;
}

.u-ns-bg-v5-left .u-ns-bg-before,
.u-ns-bg-v5-right .u-ns-bg-before {
  height: 100%;
}

.u-ns-bg-v5-left svg,
.u-ns-bg-v5-right svg {
  height: 100%;
  vertical-align: middle;
}

.u-ns-bg-v5-top .u-ns-bg-before {
  bottom: 100%;
}

.u-ns-bg-v5-top svg {
  vertical-align: bottom;
}

.u-ns-bg-v5-bottom .u-ns-bg-before {
  top: 100%;
}

.u-ns-bg-v5-bottom svg {
  vertical-align: top;
}

.u-ns-bg-v5-left .u-ns-bg-before {
  left: 100%;
}

.u-ns-bg-v5-right .u-ns-bg-before {
  right: 100%;
}

@media (min-width: 768px) {
  .u-ns-bg-v5-top--md .u-ns-bg-before,
  .u-ns-bg-v5-bottom--md .u-ns-bg-before,
  .u-ns-bg-v5-left--md .u-ns-bg-before,
  .u-ns-bg-v5-right--md .u-ns-bg-before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    height: auto;
  }

  .u-ns-bg-v5-top--md svg,
  .u-ns-bg-v5-bottom--md svg,
  .u-ns-bg-v5-left--md svg,
  .u-ns-bg-v5-right--md svg {
    width: auto;
    height: auto;
  }

  .u-ns-bg-v5-top--md .u-ns-bg-before,
  .u-ns-bg-v5-bottom--md .u-ns-bg-before {
    width: 100%;
  }

  .u-ns-bg-v5-top--md svg,
  .u-ns-bg-v5-bottom--md svg {
    width: 100%;
  }

  .u-ns-bg-v5-left--md .u-ns-bg-before,
  .u-ns-bg-v5-right--md .u-ns-bg-before {
    height: 100%;
  }

  .u-ns-bg-v5-left--md svg,
  .u-ns-bg-v5-right--md svg {
    height: 100%;
    vertical-align: middle;
  }

  .u-ns-bg-v5-top--md .u-ns-bg-before {
    bottom: 100%;
  }

  .u-ns-bg-v5-top--md svg {
    vertical-align: bottom;
  }

  .u-ns-bg-v5-bottom--md .u-ns-bg-before {
    top: 100%;
  }

  .u-ns-bg-v5-bottom--md svg {
    vertical-align: top;
  }

  .u-ns-bg-v5-left--md .u-ns-bg-before {
    left: 100%;
  }

  .u-ns-bg-v5-right--md .u-ns-bg-before {
    right: 100%;
  }
}

/*------------------------------------
  Nonstandard Background v6
------------------------------------*/

[class*=u-ns-bg-v6] {
  position: relative;
}

[class*=u-ns-bg-v6] .u-ns-bg-before {
  position: absolute;
  z-index: 2;
}

.u-ns-bg-v6-top .u-ns-bg-before::before,
.u-ns-bg-v6-top .u-ns-bg-before::after,
.u-ns-bg-v6-bottom .u-ns-bg-before::before,
.u-ns-bg-v6-bottom .u-ns-bg-before::after,
.u-ns-bg-v6-left .u-ns-bg-before::before,
.u-ns-bg-v6-left .u-ns-bg-before::after,
.u-ns-bg-v6-right .u-ns-bg-before::before,
.u-ns-bg-v6-right .u-ns-bg-before::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v6-top .u-ns-bg-before::after,
.u-ns-bg-v6-bottom .u-ns-bg-before::after,
.u-ns-bg-v6-left .u-ns-bg-before::after,
.u-ns-bg-v6-right .u-ns-bg-before::after {
  position: absolute;
}

.u-ns-bg-v6-top .u-ns-bg-before,
.u-ns-bg-v6-bottom .u-ns-bg-before {
  left: 20px;
}

.u-ns-bg-v6-left .u-ns-bg-before,
.u-ns-bg-v6-right .u-ns-bg-before {
  top: 30px;
}

.u-ns-bg-v6-top .u-ns-bg-before {
  top: -15px;
}

.u-ns-bg-v6-top .u-ns-bg-before::before {
  border-width: 0 15px 15px 15px;
}

.u-ns-bg-v6-top .u-ns-bg-before::after {
  bottom: 0;
  left: 1px;
  border-width: 0 14px 14px 14px;
}

.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::after {
  border-bottom-color: #fff;
}

.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-bottom-color: #fff;
}

.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::before {
  border-bottom-color: #000;
}

.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::after {
  border-bottom-color: #fff;
}

.u-ns-bg-v6-bottom .u-ns-bg-before {
  bottom: -15px;
}

.u-ns-bg-v6-bottom .u-ns-bg-before::before {
  border-width: 15px 15px 0 15px;
}

.u-ns-bg-v6-bottom .u-ns-bg-before::after {
  bottom: 1px;
  left: 1px;
  border-width: 14px 14px 0 14px;
}

.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::after {
  border-top-color: #fff;
}

.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-top-color: #ccc;
}

.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-top-color: #fff;
}

.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::before {
  border-top-color: #000;
}

.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::after {
  border-top-color: #fff;
}

.u-ns-bg-v6-left .u-ns-bg-before {
  left: -15px;
}

.u-ns-bg-v6-left .u-ns-bg-before::before {
  border-width: 15px 15px 15px 0;
}

.u-ns-bg-v6-left .u-ns-bg-before::after {
  top: 1px;
  right: 0;
  border-width: 14px 14px 14px 0;
}

.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::before {
  border-right-color: #CAD105;
}

.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::after {
  border-right-color: #fff;
}

.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-right-color: #ccc;
}

.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-right-color: #fff;
}

.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::before {
  border-right-color: #000;
}

.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::after {
  border-right-color: #fff;
}

.u-ns-bg-v6-right .u-ns-bg-before {
  right: -15px;
}

.u-ns-bg-v6-right .u-ns-bg-before::before {
  border-width: 15px 0 15px 15px;
}

.u-ns-bg-v6-right .u-ns-bg-before::after {
  top: 1px;
  left: 0;
  border-width: 14px 0 14px 14px;
}

.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::before {
  border-left-color: #ccc;
}

.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::after {
  border-left-color: #fff;
}

.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-left-color: #ccc;
}

.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-left-color: #fff;
}

.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::before {
  border-left-color: #ccc;
}

.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::after {
  border-left-color: #fff;
}

@media (min-width: 768px) {
  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before,
  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before,
  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before,
  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before,
  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before,
  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before,
  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before,
  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before,
  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before,
  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before,
  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before,
  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after,
  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after,
  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after,
  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after,
  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after,
  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after,
  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after,
  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after,
  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after,
  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after,
  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after,
  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .u-ns-bg-v6-top--md .u-ns-bg-before,
  .u-ns-bg-v6-bottom--md .u-ns-bg-before {
    left: 20px;
  }

  .u-ns-bg-v6-left--md .u-ns-bg-before,
  .u-ns-bg-v6-right--md .u-ns-bg-before {
    top: 30px;
  }

  .u-ns-bg-v6-top--md .u-ns-bg-before {
    bottom: auto;
    top: -15px;
  }

  .u-ns-bg-v6-top--md .u-ns-bg-before::before {
    border-width: 0 15px 15px 15px;
  }

  .u-ns-bg-v6-top--md .u-ns-bg-before::after {
    top: auto;
    bottom: 0;
    left: 1px;
    border-width: 0 14px 14px 14px;
  }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before {
    border-bottom-color: #CAD105;
  }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after {
    border-bottom-color: #fff;
  }

  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-bottom-color: #ccc;
  }

  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-bottom-color: #fff;
  }

  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before {
    border-bottom-color: #000;
  }

  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after {
    border-bottom-color: #fff;
  }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before {
    top: auto;
    bottom: -15px;
  }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before::before {
    border-width: 15px 15px 0 15px;
  }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before::after {
    top: auto;
    bottom: 1px;
    left: 1px;
    border-width: 14px 14px 0 14px;
  }

  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before {
    border-top-color: #CAD105;
  }

  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after {
    border-top-color: #fff;
  }

  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-top-color: #ccc;
  }

  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-top-color: #fff;
  }

  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before {
    border-top-color: #000;
  }

  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after {
    border-top-color: #fff;
  }

  .u-ns-bg-v6-left--md .u-ns-bg-before {
    left: -15px;
    right: auto;
  }

  .u-ns-bg-v6-left--md .u-ns-bg-before::before {
    border-width: 15px 15px 15px 0;
  }

  .u-ns-bg-v6-left--md .u-ns-bg-before::after {
    top: 1px;
    bottom: auto;
    right: 0;
    border-width: 14px 14px 14px 0;
  }

  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before {
    border-right-color: #CAD105;
  }

  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after {
    border-right-color: #fff;
  }

  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-right-color: #ccc;
  }

  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-right-color: #fff;
  }

  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before {
    border-right-color: #000;
  }

  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after {
    border-right-color: #fff;
  }

  .u-ns-bg-v6-right--md .u-ns-bg-before {
    left: auto;
    right: -15px;
  }

  .u-ns-bg-v6-right--md .u-ns-bg-before::before {
    border-width: 15px 0 15px 15px;
  }

  .u-ns-bg-v6-right--md .u-ns-bg-before::after {
    top: 1px;
    bottom: auto;
    left: 0;
    border-width: 14px 0 14px 14px;
  }

  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before {
    border-left-color: #CAD105;
  }

  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after {
    border-left-color: #fff;
  }

  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-left-color: #ccc;
  }

  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-left-color: #fff;
  }

  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before {
    border-left-color: #000;
  }

  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after {
    border-left-color: #fff;
  }
}

/*------------------------------------
  Nonstandard Background v7
------------------------------------*/

[class*=u-ns-bg-v7] {
  position: relative;
}

[class*=u-ns-bg-v7]::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
}

.u-ns-bg-v7-top::before,
.u-ns-bg-v7-bottom::before {
  left: 50%;
  margin-left: -5px;
}

.u-ns-bg-v7-left::before,
.u-ns-bg-v7-right::before {
  top: 50%;
  margin-top: -5px;
}

.u-ns-bg-v7-top::before {
  top: -5px;
  border-width: 0 5px 5px 5px;
}

.u-ns-bg-v7-top.g-bg-primary::before {
  border-bottom-color: #CAD105;
}

.u-ns-bg-v7-top.g-bg-white::before {
  border-bottom-color: #fff;
}

.u-ns-bg-v7-top.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc;
}

.u-ns-bg-v7-top.g-bg-black::before {
  border-bottom-color: #000;
}

.u-ns-bg-v7-bottom::before {
  bottom: -5px;
  border-width: 5px 5px 0 5px;
}

.u-ns-bg-v7-bottom.g-bg-primary::before {
  border-top-color: #CAD105;
}

.u-ns-bg-v7-bottom.g-bg-white::before {
  border-top-color: #fff;
}

.u-ns-bg-v7-bottom.g-bg-gray-light-v2::before {
  border-top-color: #ccc;
}

.u-ns-bg-v7-bottom.g-bg-black::before {
  border-top-color: #000;
}

.u-ns-bg-v7-left::before {
  left: -5px;
  border-width: 5px 5px 5px 0;
}

.u-ns-bg-v7-left.g-bg-primary::before {
  border-right-color: #CAD105;
}

.u-ns-bg-v7-left.g-bg-white::before {
  border-right-color: #fff;
}

.u-ns-bg-v7-left.g-bg-gray-light-v2::before {
  border-right-color: #ccc;
}

.u-ns-bg-v7-left.g-bg-black::before {
  border-right-color: #000;
}

.u-ns-bg-v7-right::before {
  right: -5px;
  border-width: 5px 0 5px 5px;
}

.u-ns-bg-v7-right.g-bg-primary::before {
  border-left-color: #CAD105;
}

.u-ns-bg-v7-right.g-bg-white::before {
  border-left-color: #fff;
}

.u-ns-bg-v7-right.g-bg-gray-light-v2::before {
  border-left-color: #ccc;
}

.u-ns-bg-v7-right.g-bg-black::before {
  border-left-color: #000;
}

/*------------------------------------
  Progress Bars
------------------------------------*/

.progress-bar {
  min-height: 0 !important;
  display: block;
  line-height: 1.4;
  height: 1rem;
}

.u-progress__pointer-v1 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 42px;
  margin: -21px -21px 0 0;
  background-color: transparent;
  line-height: 42px;
  z-index: 1;
}

.u-progress__pointer-v2 {
  position: absolute;
  bottom: 100%;
  right: 0;
  min-width: 46px;
  white-space: nowrap;
  padding-left: 5px;
  padding-right: 5px;
  transform: translateX(50%);
  margin-bottom: 5px;
  background-color: transparent;
  z-index: 1;
}

.u-progress__pointer-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  border-style: solid;
  border-color: #CAD105 transparent;
  border-width: 5px 5px 0;
}

.u-progress__pointer-v3 {
  position: relative;
  float: right;
  white-space: nowrap;
  line-height: 1.2;
}

.u-progress__pointer-v3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -10px;
  margin-right: -5px;
  border-style: solid;
  border-color: #CAD105 transparent;
  border-width: 5px 5px 0;
}

[class*=u-progress-bar-vertical] {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}

.u-progress-bar-vertical-v1 {
  height: 200px;
}

/*------------------------------------
  Progress Bars Sizes
------------------------------------*/

.u-progress-bar--2xs {
  min-height: 1px !important;
}

.u-progress-bar--xs {
  min-height: 3px !important;
}

.u-progress-bar--sm {
  min-height: 7px !important;
}

.u-progress-bar--lg {
  min-height: 18px !important;
}

.u-progress-bar--xl {
  min-height: 22px !important;
}

.u-progress-bar--2xl {
  min-height: 33px !important;
}

/*------------------------------------
  Rating v1
------------------------------------*/

.u-rating-v1 {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
}

.u-rating-v1 > * {
  float: left;
  list-style: none;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.u-rating-v1 > * + * {
  padding-left: 6px;
}

/*------------------------------------
  Searchform v1
------------------------------------*/

.u-searchform-v1,
.u-searchform-v1--align-left {
  min-width: initial;
  width: 21.4285714286rem;
  position: absolute;
  right: -1.0714285714rem;
  top: 100%;
  box-shadow: 0 1px 3px #ddd;
}

.u-searchform-v1 .form-control,
.u-searchform-v1--align-left .form-control {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 0.8571428571rem;
}

.u-searchform-v1--align-left,
.u-searchform-v1--align-left--align-left {
  position: absolute;
  left: -1.0714285714rem;
}

.u-searchform-v1 .input-group-addon,
.u-searchform-v1--align-left .input-group-addon {
  border: 0;
}

.u-searchform-v1 .input-group-addon button[type=submit],
.u-searchform-v1--align-left .input-group-addon button[type=submit] {
  height: 100%;
}

/*------------------------------------
  Searchform v2
------------------------------------*/

.u-searchform-v2 .form-control {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.8571428571rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  height: 4.7142857143rem;
  padding: 0.8571428571rem 0;
  background-color: transparent;
  border: none;
}

.u-searchform-v2 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control:-ms-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control::-ms-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control::placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v2 .input-group-addon {
  border: 0;
}

.u-searchform-v2 .input-group-addon button {
  cursor: pointer;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
}

/*------------------------------------
  Searchform v3
------------------------------------*/

.u-searchform-v3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.u-searchform-v3 .container {
  height: 100%;
}

.u-searchform-v3 .input-group {
  align-items: center;
  height: 100%;
}

.u-searchform-v3 .form-control {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: inherit;
  color: inherit;
  text-transform: uppercase;
  height: 4.7142857143rem;
  padding: 0.8571428571rem 0;
  background-color: transparent;
  border: none;
}

.u-searchform-v3 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control:-ms-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control::-ms-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control::placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: 0.85;
}

.u-searchform-v3 .input-group-addon {
  border: 0;
}

.u-searchform-v3 .input-group-addon button {
  cursor: pointer;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
}

/*------------------------------------
  Searchform v4
------------------------------------*/

.u-searchform-v4 .form-control {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 0.8571428571rem;
  width: 20rem;
  padding: 0.7142857143rem 2.8571428571rem 0.7142857143rem 0.7142857143rem;
}

.u-searchform-v4 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control:-ms-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control::-ms-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control::placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v4 .form-control:not(:last-child) {
  border-right: none;
}

.u-searchform-v4 .input-group-addon {
  border-left: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2;
}

.u-searchform-v4 .input-group-addon button[type=submit] {
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}

/*------------------------------------
  Searchform v5
------------------------------------*/

.u-searchform-v5 .input-group {
  border: solid 1px #eee;
}

.u-searchform-v5 .form-control {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-size: 0.8571428571rem;
  text-transform: uppercase;
  color: #777;
  height: 3.0714285714rem;
  padding: 0.3571428571rem 0.3571428571rem 0.3571428571rem 2rem;
  border-color: transparent;
}

.u-searchform-v5 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control:-ms-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control::-ms-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control::placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1;
}

.u-searchform-v5 .form-control:focus {
  border-color: transparent;
}

.u-searchform-v5 .input-group-addon {
  border-color: transparent;
}

.u-searchform-v5 .input-group-addon button[type=submit] {
  font-size: 1.3571428571rem;
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent;
}

/*------------------------------------
  Steps v1
------------------------------------*/

.u-steps-v1 {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: 0.25rem;
}

.u-steps-v1::after {
  content: "";
  display: table;
  width: 100%;
}

.u-steps-v1 > * {
  display: inline-block;
  vertical-align: middle;
}

.u-steps-v1__item {
  float: left;
  margin-right: 15px;
}

.u-steps-v1__item a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .u-steps-v1 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
  }

  .u-steps-v1__item {
    list-style: none;
    margin-right: 40px;
  }

  .u-steps-v1__item a,
  .u-steps-v1__item span {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
  }

  .u-steps-v1__item a::before,
  .u-steps-v1__item span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    display: block;
    width: 70px;
    height: 4px;
    transform: translateY(-50%);
  }

  .u-steps-v1__item a {
    color: #fff;
    background-color: #CAD105;
  }

  .u-steps-v1__item a::before {
    background-color: #CAD105;
  }

  .u-steps-v1__item a:hover {
    background-color: #333;
  }

  .u-steps-v1__item span {
    background-color: #eee;
  }

  .u-steps-v1__item span::before {
    background-color: #eee;
  }

  .u-steps-v1__item > i {
    font-size: 10px;
  }

  .u-steps-v1__item:last-child {
    margin-right: 0;
  }

  .u-steps-v1__item:last-child a::before,
  .u-steps-v1__item:last-child span::before {
    display: none;
  }

  .u-steps-v1__item + .u-breadcrumb-v1__item::before {
    display: none;
  }

  .u-steps-v1__item.active a,
  .u-steps-v1__item.active span {
    color: #fff;
    background-color: #CAD105;
  }

  .u-steps-v1 a:hover {
    text-decoration: none;
  }
}

/*------------------------------------
  Steps v2
------------------------------------*/

.u-steps-v2 {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: 0.25rem;
}

.u-steps-v2::after {
  content: "";
  display: table;
  width: 100%;
}

.u-steps-v2 > * {
  display: inline-block;
  vertical-align: middle;
}

.u-steps-v2__item {
  float: left;
  margin-right: 15px;
}

.u-steps-v2__item a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .u-steps-v2 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
  }

  .u-steps-v2__indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CAD105;
    box-shadow: 0;
    transform: translateX(-50%);
    transition-property: box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
  }

  .u-steps-v2__item {
    text-align: center;
    list-style: none;
    margin-right: 40px;
  }

  .u-steps-v2__item a,
  .u-steps-v2__item span {
    position: relative;
    display: block;
    color: #333;
    padding-bottom: 20px;
    transition-property: color;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
  }

  .u-steps-v2__item a::before,
  .u-steps-v2__item span::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    display: block;
    width: 120px;
    height: 4px;
    margin-left: 6px;
  }

  .u-steps-v2__item a::before {
    background-color: #CAD105;
  }

  .u-steps-v2__item a .u-steps-v2__indicator {
    background-color: #CAD105;
  }

  .u-steps-v2__item a:hover {
    text-decoration: none;
  }

  .u-steps-v2__item span::before {
    background-color: #eee;
  }

  .u-steps-v2__item span .u-steps-v2__indicator {
    background-color: #eee;
  }

  .u-steps-v2__item:last-child a::before,
  .u-steps-v2__item:last-child span::before {
    display: none;
  }

  .u-steps-v2__item:hover a {
    color: #CAD105;
  }

  .u-steps-v2__item:hover a .u-steps-v2__indicator {
    box-shadow: 0 0 0 3px rgba(202, 209, 5, 0.3);
  }

  .u-steps-v2__item.active a .u-steps-v2__indicator,
  .u-steps-v2__item.active span .u-steps-v2__indicator {
    background-color: #CAD105;
  }
}

/*------------------------------------
  Steps v3
------------------------------------*/

.u-steps-v3 {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: 0.25rem;
}

.u-steps-v3::after {
  content: "";
  display: table;
  width: 100%;
}

.u-steps-v3 > * {
  display: inline-block;
  vertical-align: middle;
}

.u-steps-v3__item {
  float: left;
  margin-right: 15px;
}

.u-steps-v3__item a:hover {
  text-decoration: none;
}

.u-steps-v3__indicator {
  font-style: normal;
}

.u-steps-v3__indicator::after {
  content: " - ";
}

@media (min-width: 768px) {
  .u-steps-v3 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
  }

  .u-steps-v3__indicator {
    position: absolute;
    top: 0;
    left: 50%;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background-color: #CAD105;
    box-shadow: 0;
    border-radius: 50%;
    transform: translateX(-50%);
    transition-property: box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
  }

  .u-steps-v3__indicator::after {
    display: none;
  }

  .u-steps-v3__item {
    text-align: center;
    float: left;
    list-style: none;
    margin-right: 40px;
  }

  .u-steps-v3__item a,
  .u-steps-v3__item span {
    position: relative;
    display: block;
    color: #333;
    padding-top: 40px;
    transition-property: color;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
  }

  .u-steps-v3__item a::before,
  .u-steps-v3__item span::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    display: block;
    width: 120px;
    height: 4px;
    margin-left: 13px;
  }

  .u-steps-v3__item a::before {
    background-color: #CAD105;
  }

  .u-steps-v3__item a .u-steps-v3__indicator {
    color: #fff;
    background-color: #CAD105;
  }

  .u-steps-v3__item a:hover {
    text-decoration: none;
  }

  .u-steps-v3__item span::before {
    background-color: #eee;
  }

  .u-steps-v3__item span .u-steps-v3__indicator {
    color: #333;
    background-color: #eee;
  }

  .u-steps-v3__item:last-child a::before,
  .u-steps-v3__item:last-child span::before {
    display: none;
  }

  .u-steps-v3__item:hover a {
    color: #CAD105;
  }

  .u-steps-v3__item:hover a .u-steps-v3__indicator {
    box-shadow: 0 0 0 3px rgba(202, 209, 5, 0.3);
  }

  .u-steps-v3__item.active a .u-steps-v3__indicator,
  .u-steps-v3__item.active span .u-steps-v3__indicator {
    color: #fff;
    background-color: #CAD105;
  }
}

/*------------------------------------
  Time Lines
------------------------------------*/

[class*=u-timeline-v1-wrap],
[class*=u-timeline-v2-wrap],
[class*=u-timeline-v3-wrap] {
  position: relative;
}

[class*=u-timeline-v1-wrap]::before,
[class*=u-timeline-v2-wrap]::before,
[class*=u-timeline-v3-wrap]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
}

/*------------------------------------
  Time Lines v1
------------------------------------*/

.u-timeline-v1 {
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #eee;
}

.u-timeline-v1-wrap::before {
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #f7f7f7;
  margin-left: 20px;
}

.u-timeline-v1__icon {
  position: absolute;
  top: 30px;
  font-size: 20px;
  z-index: 3;
}

.g-orientation-bottom .u-timeline-v1__icon,
.g-orientation-right .u-timeline-v1__icon,
.g-orientation-left .u-timeline-v1__icon {
  left: 0;
}

@media (min-width: 768px) {
  .u-timeline-v1-wrap:not([class*="--horizontal"])::before {
    left: 50%;
    margin-left: -2px;
  }

  .u-timeline-v1-wrap--horizontal::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    margin-left: 0;
    margin-top: -2px;
  }

  .g-orientation-bottom .u-timeline-v1__icon {
    top: 100%;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
  }

  .g-orientation-left .u-timeline-v1__icon {
    right: 100%;
    left: auto;
  }

  .g-orientation-right .u-timeline-v1__icon {
    right: auto;
    left: 100%;
  }
}

/*------------------------------------
  Time Lines v2
------------------------------------*/

@media (min-width: 768px) {
  .u-timeline-v2-wrap::before {
    left: 25%;
    width: 3px;
    height: 100%;
    margin-left: -1px;
    background-color: #f7f7f7;
  }

  .u-timeline-v2__icon {
    font-size: 16px;
    position: absolute;
  }

  .g-orientation-right .u-timeline-v2__icon {
    left: 100%;
    transform: translateX(-50%);
  }

  .g-orientation-left .u-timeline-v2__icon {
    right: 100%;
    transform: translateX(50%);
  }

  .g-orientation-bottom .u-timeline-v2__icon {
    top: 100%;
    transform: translateY(-50%);
  }
}

/*------------------------------------
  Time Lines v3
------------------------------------*/

.u-timeline-v3-wrap::before {
  left: 21%;
  width: 1px;
  height: 100%;
  display: none;
  background-color: #eee;
}

.u-timeline-v3 {
  position: relative;
}

.u-timeline-v3__icon {
  left: 21%;
}

@media (min-width: 768px) {
  .u-timeline-v3-wrap::before {
    display: block;
  }
}

@media (min-width: 992px) {
  .u-timeline-v3-wrap::before {
    left: 18%;
  }

  .u-timeline-v3__icon {
    left: 18%;
  }
}

/*------------------------------------
  Background Colors
------------------------------------*/

.u-label {
  display: inline-block;
  padding: 0.35rem 0.58rem;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  /* Label Size
  ------------------------------------*/
  /* Label Styles
  ------------------------------------*/
  /* Label Num
  ------------------------------------*/
}

.u-label:empty {
  display: none;
}

.btn .u-label {
  position: relative;
  top: -1px;
}

.u-label-default {
  background-color: #777;
}

.u-label-default[href]:hover,
.u-label-default[href]:focus {
  background-color: #555;
}

.u-label-primary {
  background-color: #5cb85c;
}

.u-label-primary[href]:hover,
.u-label-primary[href]:focus {
  background-color: #55b555;
}

.u-label-success {
  background-color: #5cb85c;
}

.u-label-success[href]:hover,
.u-label-success[href]:focus {
  background-color: #55b555;
}

.u-label-info {
  background-color: #5bc0de;
}

.u-label-info[href]:hover,
.u-label-info[href]:focus {
  background-color: #53bddc;
}

.u-label-warning {
  background-color: #f0ad4e;
}

.u-label-warning[href]:hover,
.u-label-warning[href]:focus {
  background-color: #efa945;
}

.u-label-danger {
  background-color: #d9534f;
}

.u-label-danger[href]:hover,
.u-label-danger[href]:focus {
  background-color: #d74b47;
}

.u-label.g-rounded-10 {
  padding: 0.35rem 0.7rem;
}

.u-label--sm {
  font-size: 0.8rem;
}

.u-label--lg {
  font-size: 1.1rem;
}

.u-label.u-label-with-icon {
  padding: 0.5rem 0.85rem;
}

.u-label.u-label-with-icon i {
  margin-right: 0.5rem;
}

.u-label-num {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  line-height: 2rem;
}

.u-label-num.u-label--sm {
  min-width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
}

.u-label-num.u-label--lg {
  min-width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
}

/*------------------------------------
  Link Styles
------------------------------------*/

.u-link-v1 {
  border-bottom: solid 1px;
}

.u-link-v1:hover,
.u-link-v1:focus {
  border-bottom: none;
  text-decoration: none;
}

.u-link-v2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}

.u-link-v3 {
  text-decoration: underline;
}

.u-link-v3:hover {
  text-decoration: none;
}

.u-link-v4 {
  transition: all 0.3s;
}

.u-link-v4:hover {
  opacity: 0.8;
}

.u-link-v5 {
  text-decoration: none;
  transition: all 0.2s;
}

.u-link-v5:hover,
.u-link-v5:focus {
  text-decoration: none;
}

.u-link-v6 {
  display: block;
  overflow: hidden;
}

.u-link-v6-arrow {
  margin-left: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}

.u-link .u-block-hover:hover-v6-arrow,
.u-link-v6:hover-v6-arrow {
  margin-left: 5px;
  visibility: visible;
  opacity: 1;
}

.u-link-v7 {
  margin-right: 30px;
  transition: all 0.4s;
}

.u-link-v7-arrow {
  margin-left: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}

.u-link .u-block-hover:hover,
.u-link-v7:hover {
  margin-right: 0;
}

.u-link .u-block-hover:hover-v7-arrow,
.u-link-v7:hover-v7-arrow {
  margin-left: 10px;
  visibility: visible;
  opacity: 1;
}

/*------------------------------------
  List Styles
------------------------------------*/

.u-list-inline {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.img-bordered {
  border: solid 6px #777;
}

.g-order-1 {
  order: 1;
}

.g-order-2 {
  order: 2;
}

@media (min-width: 576px) {
  .g-order-1--sm {
    order: 1;
  }

  .g-order-2--sm {
    order: 2;
  }
}

@media (min-width: 768px) {
  .g-order-1--md {
    order: 1;
  }

  .g-order-2--md {
    order: 2;
  }
}

@media (min-width: 992px) {
  .g-order-1--lg {
    order: 1;
  }

  .g-order-2--lg {
    order: 2;
  }
}

/*------------------------------------
  Paginations
------------------------------------*/

/* Pagination v1 */

.u-pagination-v1__item {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: solid 1px transparent;
  transition: all 0.3s ease;
}

.u-pagination-v1__item--active,
.u-pagination-v1__item:hover,
.u-pagination-v1__item:focus {
  text-decoration: none;
  cursor: pointer;
}

.u-pagination-v1__item-info {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.u-pagination-v1__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Pagination Style v1 */

.u-pagination-v1-1 {
  color: #999;
  border-color: #999;
}

.u-pagination-v1-1--active,
.u-pagination-v1-1:hover,
.u-pagination-v1-1:focus {
  background-color: #CAD105;
  color: #fff;
  border-color: #CAD105;
}

/* Pagination Style v2 */

.u-pagination-v1-2 {
  color: #555;
  border-color: #555;
}

.u-pagination-v1-2:hover,
.u-pagination-v1-2:focus {
  color: #CAD105;
  border-color: #CAD105;
}

.u-pagination-v1-2--active,
.u-pagination-v1-2--nav {
  background-color: #CAD105;
  color: #fff;
  border-color: #CAD105;
}

.u-pagination-v1-2--active:hover,
.u-pagination-v1-2--active:focus,
.u-pagination-v1-2--nav:hover,
.u-pagination-v1-2--nav:focus {
  color: #fff;
}

.u-pagination-v1-2--nav:hover {
  background-color: rgba(202, 209, 5, 0.8);
}

/* Pagination Style v3 */

.u-pagination-v1-3 {
  color: #333;
  border-color: #333;
}

.u-pagination-v1-3--active,
.u-pagination-v1-3:hover,
.u-pagination-v1-3:focus {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

/* Pagination Style v4 */

.u-pagination-v1-4 {
  color: #333;
  border-color: transparent;
}

.u-pagination-v1-4:hover,
.u-pagination-v1-4:focus {
  color: #CAD105;
  border-color: #CAD105;
}

.u-pagination-v1-4--active {
  color: #fff;
  background-color: #CAD105;
  border-color: #CAD105;
}

.u-pagination-v1-4--active:hover,
.u-pagination-v1-4--active:focus {
  color: #fff;
}

/* Pagination Style v5 */

.u-pagination-v1-5 {
  color: #999;
  border-color: #ccc;
}

.u-pagination-v1-5--active,
.u-pagination-v1-5:hover,
.u-pagination-v1-5:focus {
  background-color: #CAD105;
  color: #fff;
  border-color: #CAD105;
}

/*------------------------------------
  Ribbons
------------------------------------*/

.u-ribbon-v2,
.u-ribbon-v1 {
  position: absolute;
  font-size: 0.9rem;
}

.u-ribbon-center {
  left: 50%;
  transform: translateX(-50%);
}

.u-ribbon--sm {
  font-size: 0.7rem;
}

.u-ribbon--lg {
  font-size: 1.1rem;
}

/* Ribbon Style Type 1
------------------------------------*/

.u-ribbon-v1 {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  /* Ribbon Type 1 With icon */
}

.u-ribbon-v1.u-ribbon-with-icon {
  padding: 0.5rem 0.85rem;
}

.u-ribbon-v1 .u-ribbon-icon--left {
  margin-right: 0.5rem;
}

.u-ribbon-v1 .u-ribbon-icon--right {
  margin-left: 0.5rem;
}

/* Ribbon Style Type 2
------------------------------------*/

.u-ribbon-v2 {
  display: inline-block;
  padding: 1rem 1.1rem;
}

.u-ribbon-v2.u-ribbon--sm {
  padding: 1rem 1.2rem;
}

.u-ribbon-v2.u-ribbon--lg {
  padding: 1.2rem 1.1rem;
}

/* Bookmarked Ribbon
------------------------------------*/

.u-ribbon-bookmark::after {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  width: 100%;
  height: 0;
  border-style: solid;
  border-left-width: 1.5rem;
  border-right-width: 1.5rem;
  border-bottom: 1rem solid transparent !important;
}

.u-ribbon--lg.u-ribbon-bookmark::after {
  border-right-width: 1.4rem;
}

/* Ribbon Colors
------------------------------------*/

.u-ribbon-bookmark.g-bg-primary::after {
  border-color: #CAD105;
}

.u-ribbon-bookmark.g-bg-black::after {
  border-color: #000;
}

.u-ribbon-bookmark.g-bg-white::after {
  border-color: #fff;
}

.u-ribbon-bookmark.g-bg-light-opacity::after {
  border-color: rgba(255, 255, 255, 0.7);
}

.u-ribbon-bookmark.g-bg-dark-opacity::after {
  border-color: rgba(30, 30, 30, 0.7);
}

.u-ribbon-bookmark.g-color-gray-light-v3::after {
  border-color: #ddd;
}

.u-ribbon-bookmark.g-color-gray-light-v4::after {
  border-color: #eee;
}

.u-ribbon-bookmark.g-color-gray-dark-v5::after {
  border-color: #999;
}

.u-ribbon-bookmark.g-bg-green::after {
  border-color: #8ac54d;
}

.u-ribbon-bookmark.g-bg-blue::after {
  border-color: #355c76;
}

.u-ribbon-bookmark.g-bg-lightblue::after {
  border-color: #edf2f8;
}

.u-ribbon-bookmark.g-bg-lightblue-v1::after {
  border-color: #d6e2ee;
}

.u-ribbon-bookmark.g-bg-darkblue::after {
  border-color: #009;
}

.u-ribbon-bookmark.g-bg-indigo::after {
  border-color: #8b0048;
}

.u-ribbon-bookmark.g-bg-red::after {
  border-color: #f00;
}

.u-ribbon-bookmark.g-bg-lightred::after {
  border-color: #e64b3b;
}

.u-ribbon-bookmark.g-bg-darkred::after {
  border-color: #a10f2b;
}

.u-ribbon-bookmark.g-bg-purple::after {
  border-color: #9a69cb;
}

.u-ribbon-bookmark.g-bg-darkpurple::after {
  border-color: #6639b6;
}

.u-ribbon-bookmark.g-bg-pink::after {
  border-color: #e81c62;
}

.u-ribbon-bookmark.g-bg-orange::after {
  border-color: #a10f2b;
}

.u-ribbon-bookmark.g-bg-deeporange::after {
  border-color: #fe541e;
}

.u-ribbon-bookmark.g-bg-yellow::after {
  border-color: #a10f2b;
}

.u-ribbon-bookmark.g-bg-aqua::after {
  border-color: #29d6e6;
}

.u-ribbon-bookmark.g-bg-cyan::after {
  border-color: #00bed6;
}

.u-ribbon-bookmark.g-bg-teal::after {
  border-color: #18ba9b;
}

.u-ribbon-bookmark.g-bg-brown::after {
  border-color: #a10f2b;
}

.u-ribbon-bookmark.g-bg-bluegray::after {
  border-color: #585f69;
}

/* Clipped-v1 Ribbon
------------------------------------*/

.u-ribbon-clip-v1::before,
.u-ribbon-clip-v2::before {
  content: "";
  position: absolute;
  bottom: -0.7142857143rem;
  border-style: solid;
}

.u-ribbon--left.u-ribbon-clip-v1::before,
.u-ribbon--left.u-ribbon-clip-v2::before {
  left: 0;
  border-width: 0 0.7142857143rem 0.7142857143rem 0;
  border-right-color: #999;
}

.u-ribbon--right.u-ribbon-clip-v1::before,
.u-ribbon--right.u-ribbon-clip-v2::before {
  right: 0;
  border-width: 0 0 0.7142857143rem 0.7142857143rem;
  border-left-color: #999;
}

/* Clipped-v2 Ribbon
------------------------------------*/

.u-ribbon-clip-v2 {
  padding: 0.35rem 1.35rem;
  transform: skewX(-10deg) translateZ(1px);
}

.u-ribbon-clip-v2.u-ribbon-with-icon {
  padding: 0.5rem 1.35rem;
}

.u-ribbon-clip-v2__inner {
  display: inline-block;
  transform: skewX(10deg) translateZ(1px);
}

.u-ribbon-clip-v2::before {
  transform: skewX(10deg);
}

.u-ribbon--left.u-ribbon-clip-v2::before {
  left: 0.0714285714rem;
}

.u-ribbon--right.u-ribbon-clip-v2::before {
  right: -0.0714285714rem;
}

/* Clipped-v3 Ribbon
------------------------------------*/

.u-ribbon-clip-v3 {
  width: calc(100% + 20px);
  text-align: center;
}

.u-ribbon-clip-v3::before,
.u-ribbon-clip-v3::after {
  content: "";
  position: absolute;
}

.u-ribbon-clip-v3::before {
  left: 0;
  bottom: -0.7142857143rem;
  width: 0;
  height: 0;
  border-top: 10px solid #999;
  border-left: 10px solid transparent;
}

.u-ribbon-clip-v3::after {
  right: 0;
  bottom: -0.7142857143rem;
  width: 0;
  height: 0;
  border-top: 10px solid #999;
  border-right: 10px solid transparent;
}

/* Clipped-v4 Ribbon
------------------------------------*/

.u-ribbon-clip-v4 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.u-ribbon-clip-v4::before,
.u-ribbon-clip-v4::after {
  content: "";
  position: absolute;
}

.u-ribbon-clip-v4::before {
  top: 0;
  width: 2.8571428571rem;
  height: 0.4285714286rem;
  background: #999;
  border-radius: 0.5714285714rem 0.5714285714rem 0 0;
}

.u-ribbon-clip-v4.u-ribbon--left::before {
  left: 7.1428571429rem;
}

.u-ribbon-clip-v4.u-ribbon--right::before {
  right: 7.1428571429rem;
}

.u-ribbon-clip-v4::after {
  top: 7.1428571429rem;
  width: 0.4285714286rem;
  height: 2.8571428571rem;
  background: #999;
}

.u-ribbon-clip-v4.u-ribbon--left::after {
  left: 0;
  border-radius: 0.5714285714rem 0 0 0.5714285714rem;
}

.u-ribbon-clip-v4.u-ribbon--right::after {
  right: 0;
  border-radius: 0 0.5714285714rem 0.5714285714rem 0;
}

.u-ribbon-clip-v4__inner {
  position: absolute;
  top: 2.1428571429rem;
  width: 14.2857142857rem;
  height: 2.8571428571rem;
  line-height: 2.8571428571rem;
  overflow: hidden;
  transform: rotate(45deg);
  text-align: center;
  z-index: 2;
}

.u-ribbon--left .u-ribbon-clip-v4__inner {
  left: -3.5714285714rem;
  transform: rotate(-45deg);
}

.u-ribbon--right .u-ribbon-clip-v4__inner {
  right: -3.5714285714rem;
  transform: rotate(45deg);
}

.u-ribbon-clip-v4__inner--bordered {
  border: 1px dashed rgba(255, 255, 255, 0.7);
}

.u-ribbon-clip-v4__inner.g-bg-primary {
  box-shadow: 0 0 0 3px #CAD105, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-black {
  box-shadow: 0 0 0 3px #000, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-white {
  box-shadow: 0 0 0 3px #fff, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-light-opacity {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-dark-opacity {
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-color-gray-light-v3 {
  box-shadow: 0 0 0 3px #ddd, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-color-gray-light-v4 {
  box-shadow: 0 0 0 3px #eee, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-color-gray-dark-v5 {
  box-shadow: 0 0 0 3px #999, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-green {
  box-shadow: 0 0 0 3px #8ac54d, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-blue {
  box-shadow: 0 0 0 3px #355c76, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-lightblue {
  box-shadow: 0 0 0 3px #edf2f8, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-lightblue-v1 {
  box-shadow: 0 0 0 3px #d6e2ee, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-darkblue {
  box-shadow: 0 0 0 3px #009, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-indigo {
  box-shadow: 0 0 0 3px #8b0048, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-red {
  box-shadow: 0 0 0 3px #f00, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-lightred {
  box-shadow: 0 0 0 3px #e64b3b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-darkred {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-purple {
  box-shadow: 0 0 0 3px #9a69cb, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-darkpurple {
  box-shadow: 0 0 0 3px #6639b6, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-pink {
  box-shadow: 0 0 0 3px #e81c62, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-orange {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-deeporange {
  box-shadow: 0 0 0 3px #fe541e, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-yellow {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-aqua {
  box-shadow: 0 0 0 3px #29d6e6, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-cyan {
  box-shadow: 0 0 0 3px #00bed6, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-teal {
  box-shadow: 0 0 0 3px #18ba9b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-brown {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

.u-ribbon-clip-v4__inner.g-bg-bluegray {
  box-shadow: 0 0 0 3px #585f69, 0 21px 5px -18px rgba(0, 0, 0, 0.6);
}

/*------------------------------------
  Animation on the scroll
------------------------------------*/

[data-animation]:not(.u-in-viewport) {
  visibility: hidden;
}

[data-animation].js-carousel {
  visibility: visible;
}

.u-in-viewport {
  visibility: visible;
}

/*------------------------------------
  Stickers
------------------------------------*/

.u-sticker {
  position: absolute;
}

/* Sticker Position
------------------------------------*/

.u-sticker-center {
  left: 50%;
  transform: translateX(-50%);
}

/*------------------------------------
  Sticky blocks
------------------------------------*/

[class*=sticky-block] {
  max-width: 100%;
}

/*------------------------------------
  Tables
------------------------------------*/

[class*=text][class*=center] td,
[class*=text][class*=center] th {
  text-align: center;
}

.u-table--v1 td,
.u-table--v1 th {
  padding: 8px;
}

.u-table--v1 thead th {
  border-bottom-width: 1px;
}

.u-table--v2 td,
.u-table--v2 th {
  padding: 15px;
}

.u-table--v2 thead th {
  background-color: inherit;
  border-bottom-width: 1px;
}

.g-col-border-top-0 td,
.g-col-border-top-0 th {
  border-top-width: 0;
}

.g-col-border-side-0 td,
.g-col-border-side-0 th {
  border-left-width: 0;
  border-right-width: 0;
}

/*------------------------------------
  Tabs
------------------------------------*/

/* Colors
------------------------------------*/

.g-color-primary--active.active {
  color: #CAD105;
}

.g-color-black--active.active {
  color: #000;
}

.g-color-gray-dark-v2--active.active {
  color: #333;
}

.g-color-white--active.active {
  color: #fff;
}

/* Style for Icons
------------------------------------*/

.u-tab-line-icon-pro {
  position: relative;
  top: 2px;
}

/* HZ
------------------------------------*/

.nav-item > a,
.nav-item > .nav-link,
[class*=u-tab-link]:not([class*=-icon]) {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) {
  display: block;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .nav-item {
  display: inline-block;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .js-tabs-mobile {
  position: relative;
  display: none;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .js-tabs-mobile-control {
  position: relative;
  display: block;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .js-tabs-mobile-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 5px 3.5px 0 3.5px;
  border-style: solid;
  border-color: #777 transparent transparent transparent;
  margin-top: -1px;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .js-tabs-mobile .nav-inner {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  display: none;
  background-color: #fff;
  border: 1px solid;
  padding-left: 0;
}

[role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion],
[data-scroll]) .js-tabs-mobile .nav-inner .nav-item {
  display: block;
  white-space: nowrap;
}

[data-scroll]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) {
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
}

[data-scroll]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion])::-webkit-scrollbar {
  display: none;
}

@-moz-document url-prefix()  {
  [data-scroll]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) {
    padding-bottom: 15px;
  }
}

@media (min-width: 768px) {
  [data-scroll] {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
  }

  [data-scroll]::-webkit-scrollbar {
    display: none;
  }

@-moz-document url-prefix()  {
    [data-scroll] {
      padding-bottom: 15px;
    }
}
}

/*------------------------------------
  Tabs v1
------------------------------------*/

/* Tabs v1
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v1].u-nav-rounded-3 .nav-link {
    border-radius: 3px;
  }

  [class*=u-nav-v1].u-nav-rounded-5 .nav-link {
    border-radius: 5px;
  }

  [class*=u-nav-v1].u-nav-rounded-7 .nav-link {
    border-radius: 7px;
  }

  [class*=u-nav-v1].u-nav-rounded-10 .nav-link {
    border-radius: 10px;
  }

  .u-nav-v1-1 .nav-link.active {
    background-color: #eee;
  }

  .u-nav-v1-1.u-nav-primary .nav-link.active {
    color: #fff;
    background-color: #CAD105;
  }

  .u-nav-v1-1.u-nav-dark .nav-link.active {
    color: #fff;
    background-color: #333;
  }

  .u-nav-v1-1.u-nav-light .nav-link {
    color: #fff;
  }

  .u-nav-v1-1.u-nav-light .nav-link.active {
    color: #333;
    background-color: #fff;
  }

  .u-nav-v1-2 .nav-link {
    border: solid 1px transparent;
  }

  .u-nav-v1-2 .nav-link.active {
    border-color: #eee;
  }

  .u-nav-v1-2.u-nav-primary .nav-link.active {
    border-color: #CAD105;
  }

  .u-nav-v1-2.u-nav-dark .nav-link.active {
    border-color: #333;
  }

  .u-nav-v1-2.u-nav-light .nav-link {
    color: #fff;
  }

  .u-nav-v1-2.u-nav-light .nav-link.active {
    border-color: #fff;
  }
}

/*------------------------------------
  Tabs v2
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v2] .nav-link {
    border-style: solid;
    border-color: #eee;
    border-width: 1px;
    margin-left: -1px;
  }

  [class*=u-nav-v2] .nav-item:first-child .nav-link {
    margin-left: 0;
  }

  [class*=u-nav-v2].flex-column .nav-link {
    margin: -1px 0 0;
  }

  [class*=u-nav-v2].flex-column .nav-item:first-child .nav-link {
    margin-top: 0;
  }

  [class*=u-nav-v2].u-nav-primary .nav-link {
    border-color: #CAD105;
  }

  [class*=u-nav-v2].u-nav-primary .nav-link.active,
  [class*=u-nav-v2].u-nav-primary .cbp-filter-item-active .nav-link {
    border-color: #CAD105 !important;
  }

  [class*=u-nav-v2].u-nav-dark .nav-link {
    border-color: #333;
  }

  [class*=u-nav-v2].u-nav-dark .nav-link.active,
  [class*=u-nav-v2].u-nav-dark .cbp-filter-item-active .nav-link {
    border-color: #333 !important;
  }

  [class*=u-nav-v2].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff;
  }

  [class*=u-nav-v2].u-nav-light .nav-link.active,
  [class*=u-nav-v2].u-nav-light .cbp-filter-item-active .nav-link {
    border-color: #fff !important;
  }

  [class*=u-nav-v2].u-nav-rounded-3 .nav-item:first-child .nav-link {
    border-radius: 3px 0 0 3px;
  }

  [class*=u-nav-v2].u-nav-rounded-3 .nav-item:last-child .nav-link {
    border-radius: 0 3px 3px 0;
  }

  [class*=u-nav-v2].u-nav-rounded-3.flex-column .nav-item:first-child .nav-link {
    border-radius: 3px 3px 0 0;
  }

  [class*=u-nav-v2].u-nav-rounded-3.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 3px 3px;
  }

  [class*=u-nav-v2].u-nav-rounded-5 .nav-item:first-child .nav-link {
    border-radius: 5px 0 0 5px;
  }

  [class*=u-nav-v2].u-nav-rounded-5 .nav-item:last-child .nav-link {
    border-radius: 0 5px 5px 0;
  }

  [class*=u-nav-v2].u-nav-rounded-5.flex-column .nav-item:first-child .nav-link {
    border-radius: 5px 5px 0 0;
  }

  [class*=u-nav-v2].u-nav-rounded-5.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 5px 5px;
  }

  [class*=u-nav-v2].u-nav-rounded-7 .nav-item:first-child .nav-link {
    border-radius: 7px 0 0 7px;
  }

  [class*=u-nav-v2].u-nav-rounded-7 .nav-item:last-child .nav-link {
    border-radius: 0 7px 7px 0;
  }

  [class*=u-nav-v2].u-nav-rounded-7.flex-column .nav-item:first-child .nav-link {
    border-radius: 7px 7px 0 0;
  }

  [class*=u-nav-v2].u-nav-rounded-7.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 7px 7px;
  }

  [class*=u-nav-v2].u-nav-rounded-10 .nav-item:first-child .nav-link {
    border-radius: 10px 0 0 10px;
  }

  [class*=u-nav-v2].u-nav-rounded-10 .nav-item:last-child .nav-link {
    border-radius: 0 10px 10px 0;
  }

  [class*=u-nav-v2].u-nav-rounded-10.flex-column .nav-item:first-child .nav-link {
    border-radius: 10px 10px 0 0;
  }

  [class*=u-nav-v2].u-nav-rounded-10.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 10px 10px;
  }

  .u-nav-v2-1 .nav-link.active,
  .u-nav-v2-1 .cbp-filter-item-active .nav-link {
    background-color: #eee;
  }

  .u-nav-v2-1.u-nav-primary .nav-link.active,
  .u-nav-v2-1.u-nav-primary .cbp-filter-item-active .nav-link {
    color: #fff;
    background-color: #CAD105;
  }

  .u-nav-v2-1.u-nav-dark .nav-link.active,
  .u-nav-v2-1.u-nav-dark .nav-link.cbp-filter-item-active {
    color: #fff;
    background-color: #333;
  }

  .u-nav-v2-1.u-nav-light .nav-link.active,
  .u-nav-v2-1.u-nav-light .nav-link.cbp-filter-item-active {
    color: #333;
    background-color: #fff;
  }

  .u-nav-v2-2 .nav-link.active,
  .u-nav-v2-2 .cbp-filter-item-active .nav-link {
    color: #CAD105;
  }
}

/*------------------------------------
  Tabs v3
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v3] .nav-link {
    border-style: solid;
    border-width: 1px 0;
    border-color: #eee;
  }

  [class*=u-nav-v3].flex-column .nav-link {
    margin: -1px 0 0;
  }

  [class*=u-nav-v3].flex-column .nav-item:first-child .nav-link {
    margin-top: 0;
  }

  [class*=u-nav-v3] .nav-link.active {
    color: #CAD105;
  }

  [class*=u-nav-v3].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff;
  }

  [class*=u-nav-v3].u-nav-light .nav-link.active {
    color: #CAD105;
    border-color: #fff !important;
  }

  .u-nav-v3-2 .nav-link {
    z-index: 1;
  }

  .u-nav-v3-2 .nav-link.active {
    border-color: #CAD105;
    z-index: 2;
    position: relative;
  }
}

/*------------------------------------
  Tabs v4
------------------------------------*/

@media (min-width: 768px) {
  .u-nav-v4-1 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #eee;
  }

  .u-nav-v4-1 .nav-item {
    margin-bottom: -1px;
  }

  .u-nav-v4-1 .nav-link {
    border-style: solid;
    border-width: 2px 1px 1px;
    border-color: transparent;
  }

  .u-nav-v4-1 .nav-link.active {
    border-color: #ccc #eee #fff;
  }

  .u-nav-v4-1.u-nav-light .nav-link {
    color: #fff;
  }

  .u-nav-v4-1.u-nav-light .nav-link.active {
    color: #fff;
    border-color: #ccc #eee transparent;
    background-color: #333;
  }

  .u-nav-v4-1.u-nav-light.flex-column .nav-link.active {
    border-color: #ccc transparent #ccc #eee;
    border-width: 1px 0 1px 1px;
    background-color: #333;
  }

  .u-nav-v4-1.u-nav-primary .nav-link.active {
    border-color: #CAD105 #eee #fff;
  }

  .u-nav-v4-1.u-nav-dark .nav-link.active {
    border-color: #333 #eee #fff;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .u-nav-v4-1-column {
    display: flex;
  }

  .u-nav-v4-1-column .u-nav-v4-1 {
    border-bottom: none;
  }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-item {
    margin: 0 -1px 0 0;
    z-index: 2;
  }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-link {
    border-style: solid;
    border-width: 1px 1px 1px 2px;
    border-color: transparent;
  }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-link.active {
    border-color: #eee #fff #eee #ccc;
  }

  .u-nav-v4-1-column .u-nav-v4-1.u-nav-primary .nav-link.active {
    border-color: #eee #fff #eee #CAD105;
  }

  .u-nav-v4-1-column .u-nav-v4-1.u-nav-dark .nav-link.active {
    border-color: #eee #fff #eee #333;
  }

  .u-nav-v4-1-column .nav {
    width: 30%;
  }

  .u-nav-v4-1-column .tab-content {
    width: 70%;
  }
}

/*------------------------------------
  Tabs v5
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v5] .nav-item {
    margin-bottom: -1px;
  }

  [class*=u-nav-v5] .nav-link {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: transparent;
  }

  [class*=u-nav-v5] .nav-link.active {
    border-color: #ccc;
  }

  [class*=u-nav-v5].u-nav-primary .nav-link.active {
    border-color: #CAD105;
    color: #CAD105;
  }

  [class*=u-nav-v5].u-nav-dark .nav-link.active {
    border-color: #333;
    color: #333;
  }

  [class*=u-nav-v5].u-nav-light .nav-link {
    color: #fff;
  }

  [class*=u-nav-v5].u-nav-light .nav-link.active {
    color: #fff;
    border-color: #fff;
  }

  .u-nav-v5-2 .nav-link {
    border-bottom-width: 2px;
  }

  .u-nav-v5-3 .nav-link {
    border-bottom-width: 5px;
  }
}

/*------------------------------------
  Tabs v6
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v6] .nav-link {
    position: relative;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
    transition: none;
  }

  [class*=u-nav-v6] .nav-link:after,
  [class*=u-nav-v6] .nav-link:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  [class*=u-nav-v6] .nav-link:after {
    border-top-color: #fff;
    border-width: 4px;
    margin-left: -4px;
  }

  [class*=u-nav-v6] .nav-link:before {
    border-width: 6px;
    margin-left: -6px;
  }

  [class*=u-nav-v6] .nav-link.active {
    border-color: #CAD105;
  }

  [class*=u-nav-v6] .nav-link.active::after,
  [class*=u-nav-v6] .nav-link.active::before {
    opacity: 1;
  }

  [class*=u-nav-v6] .nav-link.active::before {
    border-top-color: #CAD105;
  }

  [class*=u-nav-v6].u-nav-light .nav-link {
    color: #fff;
  }

  [class*=u-nav-v6].u-nav-light .nav-link::after {
    border-top-color: #333;
  }

  [class*=u-nav-v6].u-nav-light .nav-link.active {
    color: #fff;
    border-color: #fff;
  }

  [class*=u-nav-v6].u-nav-light .nav-link.active:before {
    border-top-color: #fff;
  }

  [class*=u-nav-v6].u-nav-light .nav-link.active::after {
    border-top-color: #333;
  }

  [class*=u-nav-v6].flex-column .nav-link {
    border-bottom: none;
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: transparent;
  }

  [class*=u-nav-v6].flex-column .nav-link:after,
  [class*=u-nav-v6].flex-column .nav-link:before {
    top: 50%;
    left: auto;
  }

  [class*=u-nav-v6].flex-column .nav-link:after {
    border-top-color: transparent;
    border-left-color: #fff;
    border-width: 4px;
    margin-left: 0;
    margin-top: -5px;
    right: -8px;
  }

  [class*=u-nav-v6].flex-column .nav-link:before {
    border-top-color: transparent;
    border-left-color: #fff;
    border-width: 6px;
    margin-left: 0;
    margin-top: -7px;
    right: -13px;
  }

  [class*=u-nav-v6].flex-column .nav-link.active {
    border-color: #CAD105;
  }

  [class*=u-nav-v6].flex-column .nav-link.active::before {
    border-left-color: #CAD105;
  }
}

/*------------------------------------
  Tabs v7
------------------------------------*/

@media (min-width: 768px) {
  [class*=u-nav-v7] .nav-item {
    position: relative;
  }

  [class*=u-nav-v7] .nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 0;
    height: 35%;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #ccc;
    transform: translateY(-50%);
  }

  [class*=u-nav-v7] .nav-item:last-child::after {
    border-right-color: transparent;
  }

  [class*=u-nav-v7] .nav-link.active {
    color: #CAD105;
  }

  [class*=u-nav-v7].u-nav-dark .nav-link.active {
    color: #333;
  }

  [class*=u-nav-v7].u-nav-light .nav-link {
    color: #fff;
  }

  [class*=u-nav-v7].u-nav-light .nav-link.active {
    color: #fff;
    opacity: 0.5;
  }

  [class*=u-nav-v7].flex-column .nav-item::after {
    top: 100%;
    left: 0;
    right: auto;
    width: 35%;
    height: 0;
    border-right: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ccc;
    transform: translateY(0);
  }

  [class*=u-nav-v7].flex-column .nav-item:last-child::after {
    border-bottom-color: transparent;
  }

  [class*=u-nav-v7].flex-column .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  [class*=u-nav-v7].flex-column.text-center .nav-item::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*------------------------------------
  Tabs v8
------------------------------------*/

[class*=u-nav-v8] .nav-link {
  position: relative;
  min-height: 100%;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  transition: none;
}

[class*=u-nav-v8] .nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(to left, #333 0%, rgba(17, 17, 17, 0.2) 100%);
  background-repeat: repeat-y;
  z-index: 1;
}

[class*=u-nav-v8] .nav-link.active {
  background-color: #CAD105;
}

[class*=u-nav-v8] .nav-link.active::after {
  display: none;
}

[class*=u-nav-v8] .nav-link.active .u-nav-v8__icon {
  background-color: #CAD105;
}

[class*=u-nav-v8] .nav-link.active .u-nav-v8__description {
  color: rgba(255, 255, 255, 0.7);
}

[class*=u-nav-v8].u-nav-light .nav-link {
  color: #333;
}

[class*=u-nav-v8].u-nav-light .nav-link.active {
  color: #464c5e;
  background-color: #fff;
}

[class*=u-nav-v8].u-nav-light .nav-link.active .u-nav-v8__icon {
  color: #fff;
  background-color: #CAD105;
}

[class*=u-nav-v8].u-nav-light .nav-link.active .u-nav-v8__title,
[class*=u-nav-v8].u-nav-light .nav-link.active .u-nav-v8__description {
  color: #464c5e;
}

[class*=u-nav-v8].u-nav-light .u-nav-v8__icon {
  background-color: #fff;
  color: #fff;
}

[class*=u-nav-v8].u-nav-light .u-nav-v8__title,
[class*=u-nav-v8].u-nav-light .u-nav-v8__description {
  color: #fff;
}

.u-nav-v8__icon,
.u-nav-v8__title,
.u-nav-v8__description {
  position: relative;
  z-index: 3;
}

.u-nav-v8__icon {
  display: none;
  background-color: #333;
  color: #fff;
  transform: translateY(-51%);
  transition: none;
}

.u-nav-v8__title {
  display: block;
}

.u-nav-v8__description {
  color: inherit;
  font-style: normal;
}

@media (min-width: 768px) {
  [class*=u-nav-v8] .nav-link {
    padding: 0 20px 25px;
  }

  [class*=u-nav-v8].u-nav-light .nav-link {
    background-color: #fff;
  }

  [class*=u-nav-v8].u-nav-light .nav-link::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%);
  }

  [class*=u-nav-v8].u-nav-light .nav-link::after {
    background-image: linear-gradient(to left, #fff 0%, rgba(204, 204, 204, 0.2) 100%);
  }

  [class*=u-nav-v8].u-nav-light .nav-link.active {
    color: #fff;
    background-color: #CAD105;
  }

  [class*=u-nav-v8].u-nav-light .nav-link.active::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #CAD105 50%), linear-gradient(to top left, transparent 49.6%, #CAD105 50%);
  }

  [class*=u-nav-v8].u-nav-light .nav-link.active .u-nav-v8__title {
    color: #fff;
  }

  [class*=u-nav-v8].u-nav-light .nav-link.active .u-nav-v8__description {
    color: rgba(255, 255, 255, 0.7);
  }

  [class*=u-nav-v8].u-nav-light .u-nav-v8__icon,
  [class*=u-nav-v8].u-nav-light .u-nav-v8__title,
  [class*=u-nav-v8].u-nav-light .u-nav-v8__description {
    color: #464c5e;
  }

  [class*=u-nav-v8].justify-content-end .nav-item:first-child .nav-link::before,
  [class*=u-nav-v8].text-right .nav-item:first-child .nav-link::before {
    display: none;
  }

  [class*=u-nav-v8].justify-content-end .nav-item:last-child .nav-link,
  [class*=u-nav-v8].text-right .nav-item:last-child .nav-link {
    padding: 0 20px 25px;
  }

  [class*=u-nav-v8].justify-content-end .nav-item:last-child .nav-link::before,
  [class*=u-nav-v8].text-right .nav-item:last-child .nav-link::before {
    display: block;
  }

  [class*=u-nav-v8].justify-content-end .nav-link::before,
  [class*=u-nav-v8].text-right .nav-link::before {
    left: -26px;
    right: auto;
    background-position: top right, bottom left;
    background-image: linear-gradient(to bottom right, transparent 49.6%, #333 50%), linear-gradient(to top right, transparent 49.6%, #333 50%);
  }

  [class*=u-nav-v8].justify-content-end .nav-link::after,
  [class*=u-nav-v8].text-right .nav-link::after {
    left: auto;
    right: 0;
    background-image: linear-gradient(to right, #333 0%, rgba(17, 17, 17, 0.2) 100%);
  }

  [class*=u-nav-v8].justify-content-end .nav-link.active::before,
  [class*=u-nav-v8].text-right .nav-link.active::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #CAD105 50%), linear-gradient(to top right, transparent 49.6%, #CAD105 50%);
  }

  [class*=u-nav-v8].flex-column .nav-item {
    margin-bottom: 1px;
  }

  [class*=u-nav-v8].flex-column .nav-item:first-child .nav-link {
    padding: 20px 20px 20px 50px;
  }

  [class*=u-nav-v8].flex-column .nav-item:last-child .nav-link::before {
    display: block;
  }

  [class*=u-nav-v8].flex-column .nav-link {
    padding: 20px 20px 20px 50px;
  }

  [class*=u-nav-v8].flex-column .nav-link::before {
    opacity: 0;
  }

  [class*=u-nav-v8].flex-column .nav-link.active::before {
    opacity: 1;
  }

  [class*=u-nav-v8].flex-column .u-nav-v8__icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(-50%) translateY(-50%);
  }

  .u-nav-v8__icon {
    display: inline-block;
  }

  .u-nav-v8__description {
    color: rgba(255, 255, 255, 0.5);
  }

  .u-nav-v8-2 .nav-item:first-child .nav-link {
    padding: 0 20px 25px;
  }

  .u-nav-v8-2 .nav-item:last-child .nav-link::before {
    display: none;
  }

  .u-nav-v8-2 .nav-link {
    padding: 0 20px 25px 50px;
  }

  .u-nav-v8-2 .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    right: -26px;
    display: block;
    width: 26px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 50.8%;
    background-position: top right, bottom left;
    background-image: linear-gradient(to bottom left, transparent 49.6%, #333 50%), linear-gradient(to top left, transparent 49.6%, #333 50%);
    z-index: 2;
  }

  .u-nav-v8-2 .nav-link.active::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #CAD105 50%), linear-gradient(to top left, transparent 49.6%, #CAD105 50%);
  }

  .u-nav-v8-2.justify-content-end .nav-item:first-child .nav-link,
  .u-nav-v8-2.text-right .nav-item:first-child .nav-link {
    padding: 0 50px 25px 20px;
  }

  .u-nav-v8-2.justify-content-end .nav-link,
  .u-nav-v8-2.text-right .nav-link {
    padding: 0 50px 25px 20px;
  }
}

@media (max-width: 768px-1) {
  [data-tabs-mobile-type=slide-up-down],
  [data-tabs-mobile-type=accordion] {
    display: none;
  }

  [data-tabs-mobile-type=accordion] {
    display: none;
  }

  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) {
    border-color: #CAD105;
  }

  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) .nav-item > a,
  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) .nav-item > .nav-link,
  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) [class*=u-tab-link]:not([class*=-icon]) {
    white-space: nowrap;
    padding: 5px 10px;
  }

  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) .nav-item > a,
  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) .nav-item > .nav-link,
  [role=tablist]:not([data-tabs-mobile-type=slide-up-down],
[data-tabs-mobile-type=accordion]) [class*=u-tab-link]:not([class*=-icon],
[class*=js-tabs-mobile-control]) {
    display: block;
  }

  [data-tabs-mobile-type=slide-up-down] {
    width: 100%;
    padding-top: 10px;
    border-bottom: none !important;
  }

  [data-tabs-mobile-type=slide-up-down] .nav-item {
    margin: 0;
  }

  [data-tabs-mobile-type=slide-up-down] .nav-link {
    text-align: center;
    border-style: solid !important;
    border-color: #eee !important;
    border-width: 1px !important;
    border-radius: 0 !important;
    margin: -1px 0 0;
  }

  [data-tabs-mobile-type=slide-up-down] .nav-item:first-child .nav-link {
    margin-top: 0;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-primary .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-pills .nav-link {
    border-color: #CAD105 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-primary .nav-link.active,
  [data-tabs-mobile-type=slide-up-down].u-nav-primary .nav-item.show .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-pills .nav-link.active,
  [data-tabs-mobile-type=slide-up-down].nav-pills .nav-item.show .nav-link {
    border-color: #CAD105 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-dark .nav-link {
    border-color: #333 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-dark .nav-link.active,
  [data-tabs-mobile-type=slide-up-down].u-nav-dark .nav-item.show .nav-link {
    border-color: #333 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-light .nav-item.show .nav-link {
    border-color: #fff;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-light .nav-link.active {
    color: #464c5e;
    background-color: #fff;
    border-color: #fff;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-3 .nav-item:first-child .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-tabs .nav-item:first-child .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-pills .nav-item:first-child .nav-link {
    border-radius: 3px 3px 0 0 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-3 .nav-item:last-child .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-tabs .nav-item:last-child .nav-link,
  [data-tabs-mobile-type=slide-up-down].nav-pills .nav-item:last-child .nav-link {
    border-radius: 0 0 3px 3px !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-5 .nav-item:first-child .nav-link {
    border-radius: 5px 5px 0 0 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-5 .nav-item:last-child .nav-link {
    border-radius: 0 0 5px 5px !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-7 .nav-item:first-child .nav-link {
    border-radius: 7px 7px 0 0 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-7 .nav-item:last-child .nav-link {
    border-radius: 0 0 7px 7px !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-10 .nav-item:first-child .nav-link {
    border-radius: 10px 10px 0 0 !important;
  }

  [data-tabs-mobile-type=slide-up-down].u-nav-rounded-10 .nav-item:last-child .nav-link {
    border-radius: 0 0 10px 10px !important;
  }

  .tab-content {
    order: 2;
  }
}

/*------------------------------------
  Tags
------------------------------------*/

/* Pagination v1 */

.u-tags-v1 {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.u-tags-v1:hover,
.u-tags-v1:focus {
  text-decoration: none;
  cursor: pointer;
}

.u-tags-v1:focus {
  color: inherit;
}

/*------------------------------------
  Text Animation Slideshow
------------------------------------*/

.u-text-slideshow {
  position: relative;
  overflow: visible !important;
  vertical-align: inherit;
}

.u-text-slideshow__slide {
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  transition: 0.3s ease;
}

.u-text-slideshow__slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.u-text-slideshow__slide--current {
  z-index: 2;
  opacity: 1;
}

.u-text-slideshow__slide-target {
  flex-wrap: nowrap;
}

/*------------------------------------
  Text-shadow
------------------------------------*/

.u-txt-shadow-v1 {
  text-shadow: 1px 1px rgba(67, 70, 72, 0.05), 2px 2px rgba(147, 150, 152, 0.07), 3px 3px rgba(178, 182, 183, 0.086), 4px 4px rgba(195, 199, 200, 0.106), 5px 5px rgba(206, 210, 211, 0.125), 6px 6px rgba(213, 217, 218, 0.145), 7px 7px rgba(218, 222, 223, 0.165), 8px 8px rgba(222, 226, 227, 0.184), 9px 9px rgba(226, 230, 231, 0.204), 10px 10px rgba(228, 232, 233, 0.22), 11px 11px rgba(230, 234, 235, 0.24), 12px 12px rgba(232, 236, 237, 0.26), 13px 13px rgba(233, 237, 238, 0.28), 14px 14px rgba(235, 239, 240, 0.298), 15px 15px rgba(236, 240, 241, 0.318), 16px 16px rgba(237, 241, 242, 0.333), 17px 17px rgba(238, 242, 243, 0.353), 18px 18px rgba(238, 242, 243, 0.373), 19px 19px rgba(239, 243, 244, 0.392), 20px 20px rgba(240, 244, 245, 0.41), 21px 21px rgba(240, 244, 245, 0.43), 22px 22px rgba(241, 245, 246, 0.447), 23px 23px rgba(241, 245, 246, 0.467), 24px 24px rgba(242, 246, 247, 0.486), 25px 25px rgba(242, 246, 247, 0.506), 26px 26px rgba(242, 246, 247, 0.525), 27px 27px rgba(243, 247, 248, 0.545), 28px 28px rgba(243, 247, 248, 0.565), 29px 29px rgba(243, 247, 248, 0.58), 30px 30px rgba(244, 248, 249, 0.6), 31px 31px rgba(244, 248, 249, 0.62), 32px 32px rgba(244, 248, 249, 0.64), 33px 33px rgba(244, 248, 249, 0.66), 34px 34px rgba(245, 249, 250, 0.68), 35px 35px rgba(245, 249, 250, 0.694), 36px 36px rgba(245, 249, 250, 0.714), 37px 37px rgba(245, 249, 250, 0.733), 38px 38px rgba(245, 249, 250, 0.753), 39px 39px rgba(246, 250, 251, 0.773), 40px 40px rgba(246, 250, 251, 0.792), 41px 41px rgba(246, 250, 251, 0.81), 42px 42px rgba(246, 250, 251, 0.827), 43px 43px rgba(246, 250, 251, 0.847), 44px 44px rgba(246, 250, 251, 0.867), 45px 45px rgba(246, 250, 251, 0.886), 46px 46px rgba(246, 250, 251, 0.906), 47px 47px rgba(247, 251, 252, 0.925), 48px 48px rgba(247, 251, 252, 0.94), 49px 49px rgba(247, 251, 252, 0.96), 50px 50px rgba(247, 251, 252, 0.98);
}

.u-txt-shadow-v2 {
  text-shadow: 0 6px 55px #999;
}

/*------------------------------------
  Marker-bg
------------------------------------*/

.u-marker-bg-primary,
.u-marker-bg-green,
.u-marker-bg-black,
.u-marker-bg-white,
.u-marker-bg-red,
.u-marker-bg-yellow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% 70%;
  white-space: nowrap;
}

.u-marker-bg-primary {
  background-image: url(/unify/bg/marker/marker-bg-primary.png);
}

.u-marker-bg-green {
  background-image: url(/unify/bg/marker/marker-bg-green.png);
}

.u-marker-bg-black {
  background-image: url(/unify/bg/marker/marker-bg-black.png);
}

.u-marker-bg-white {
  background-image: url(/unify/bg/marker/marker-bg-white.png);
}

.u-marker-bg-red {
  background-image: url(/unify/bg/marker/marker-bg-red.png);
}

.u-marker-bg-yellow {
  background-image: url(/unify/bg/marker/marker-bg-yellow.png);
}

/*------------------------------------
  Tooltips
------------------------------------*/

.u-tooltip--v1 {
  color: #fff;
  background-color: #000;
  padding: 2px 8px 3px;
}

.u-tooltip--v1:after {
  content: "";
  position: absolute;
  display: block;
}

.u-tooltip--v1.tooltip-top-left,
.u-tooltip--v1.tooltip-top-right {
  bottom: 100%;
  margin-bottom: 5px;
}

.u-tooltip--v1.tooltip-top-left:after,
.u-tooltip--v1.tooltip-top-right:after {
  top: 100%;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.u-tooltip--v1.tooltip-bottom-left,
.u-tooltip--v1.tooltip-bottom-right {
  top: 100%;
  margin-top: 5px;
}

.u-tooltip--v1.tooltip-bottom-left:after,
.u-tooltip--v1.tooltip-bottom-right:after {
  bottom: 100%;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.u-tooltip--v1.tooltip-top-left,
.u-tooltip--v1.tooltip-bottom-left {
  left: 0;
}

.u-tooltip--v1.tooltip-top-left:after,
.u-tooltip--v1.tooltip-bottom-left:after {
  left: 16px;
}

.u-tooltip--v1.tooltip-top-right,
.u-tooltip--v1.tooltip-bottom-right {
  right: 0;
}

.u-tooltip--v1.tooltip-top-right:after,
.u-tooltip--v1.tooltip-bottom-right:after {
  right: 16px;
}

.u-tooltip--v1.tooltip-left,
.u-tooltip--v1.tooltip-right {
  top: 50%;
  transform: translateY(-50%);
}

.u-tooltip--v1.tooltip-left:after,
.u-tooltip--v1.tooltip-right:after {
  top: 50%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: translateY(-50%);
}

.u-tooltip--v1.tooltip-left {
  right: 100%;
  margin-right: 5px;
}

.u-tooltip--v1.tooltip-left:after {
  right: -4px;
  border-left: 4px solid rgba(0, 0, 0, 0.9);
}

.u-tooltip--v1.tooltip-right {
  left: 100%;
  margin-left: 5px;
}

.u-tooltip--v1.tooltip-right:after {
  left: -4px;
  border-right: 4px solid rgba(0, 0, 0, 0.9);
}

input:focus + .u-tooltip--v1,
textarea:focus + .u-tooltip--v1 {
  opacity: 1;
}

/*------------------------------------
  Typography
------------------------------------*/

.popovers--no-title .popover-title {
  display: none;
}

.g-nowrap {
  white-space: nowrap;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

video {
  max-width: 100%;
}

.u-video-v1 {
  margin-bottom: 15px;
}

.u-video-v1-info {
  display: none;
  padding-left: 0;
}

.u-video-v1-info__item {
  display: inline-block;
  list-style: none;
}

.u-audio-v1 {
  margin-bottom: 15px;
}

.u-audio-v1-info {
  display: none;
  padding-left: 0;
}

.u-audio-v1-info__item {
  display: inline-block;
  list-style: none;
}

.u-audio-v2 .plyr__controls {
  background-color: transparent;
  border: none;
}

.u-audio-v2 .plyr__controls button {
  color: #fff;
}

/*------------------------------------
  Navigation
------------------------------------*/

/* Base Abstractions */

.navbar .u-main-nav-v9 .nav-link,
.navbar .u-main-nav-v8 .nav-link,
.navbar .u-main-nav-v7 .nav-link,
.navbar .u-main-nav-v6 .nav-link,
.navbar .u-main-nav-v5 .nav-link,
.navbar .u-main-nav-v4 .nav-link,
.navbar .u-main-nav-v3 .nav-link,
.navbar .u-main-nav-v2 .nav-link,
.navbar .u-main-nav-v1 .nav-link {
  display: block;
}

.navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v8 .nav-item.dropdown > a,
.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v7 .nav-item.dropdown > a,
.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v6 .nav-item.dropdown > a,
.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v5 .nav-item.dropdown > a,
.navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v4 .nav-item.dropdown > a,
.navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v3 .nav-item.dropdown > a,
.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v2 .nav-item.dropdown > a,
.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v1 .nav-item.dropdown > a {
  position: relative;
  z-index: 1;
  padding-right: 1.4285714286rem;
}

.navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v8 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v7 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v6 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v5 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v4 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v3 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v2 .nav-item.dropdown > a::after,
.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v1 .nav-item.dropdown > a::after {
  content: "\E900";
  font-family: "hs-icons";
  font-weight: inherit;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1.0714285714rem;
  transform: translate3d(0, -50%, 0);
}

/* Base stylesheets */

.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-link {
  color: #fff;
}

.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item.active > .nav-link,
.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item:hover > .nav-link,
.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item:focus > .nav-link,
.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item.show > .nav-link,
.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item.hs-sub-menu-opened > .nav-link,
.u-header__section--dark .navbar [class*=u-main-nav-v] .nav-item .nav-link:focus {
  color: #fff;
}

/* Import */

/* Main navigation styles */

/*------------------------------------
  Navigation Style v1
------------------------------------*/

.navbar .u-main-nav-v1 .nav-link {
  color: #333;
  padding: 0.7857142857rem 2.1428571429rem;
  border-radius: 1.5714285714rem;
}

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v1 .nav-item.dropdown > a {
  padding-right: 3.2142857143rem;
}

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v1 .nav-item.dropdown > a::after {
  right: 1.7857142857rem;
}

.navbar .u-main-nav-v1 .nav-item.active > .nav-link,
.navbar .u-main-nav-v1 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v1 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v1 .nav-item.show > .nav-link,
.navbar .u-main-nav-v1 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v1 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v1 .nav-link {
    padding: 0.6428571429rem 1.4285714286rem;
  }

  .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a,
  .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a,
  .navbar .u-main-nav-v1 .nav-item.dropdown > a {
    padding-right: 2.5rem;
  }

  .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after,
  .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after,
  .navbar .u-main-nav-v1 .nav-item.dropdown > a::after {
    right: 1.0714285714rem;
  }
}

/*------------------------------------
  Navigation Style v2
------------------------------------*/

.navbar .u-main-nav-v2 .nav-link {
  color: #333;
  padding: 0.6428571429rem 2.1428571429rem;
  border-radius: 1.5714285714rem;
  border: 2px solid transparent;
}

.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v2 .nav-item.dropdown > a {
  padding-right: 3.2142857143rem;
}

.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v2 .nav-item.dropdown > a::after {
  right: 1.7857142857rem;
}

.navbar .u-main-nav-v2 .nav-item.active > .nav-link,
.navbar .u-main-nav-v2 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v2 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v2 .nav-item.show > .nav-link,
.navbar .u-main-nav-v2 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v2 .nav-item .nav-link:focus {
  color: #333;
  border-color: #CAD105;
  background-color: transparent;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v2 .nav-link {
    padding: 0.5rem 1.4285714286rem;
  }

  .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a,
  .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a,
  .navbar .u-main-nav-v2 .nav-item.dropdown > a {
    padding-right: 2.5rem;
  }

  .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after,
  .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after,
  .navbar .u-main-nav-v2 .nav-item.dropdown > a::after {
    right: 1.0714285714rem;
  }
}

/*------------------------------------
  Navigation Style v3
------------------------------------*/

.navbar .u-main-nav-v3 .nav-link {
  color: #333;
  padding: 2.8571428571rem 2.5714285714rem 2.5714285714rem;
  border-bottom: 4px solid transparent;
}

.navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v3 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.7142857143rem;
  transform: none;
}

.navbar .u-main-nav-v3 .nav-item.active > .nav-link,
.navbar .u-main-nav-v3 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v3 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v3 .nav-item.show > .nav-link,
.navbar .u-main-nav-v3 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v3 .nav-item .nav-link:focus {
  border-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v3 .nav-link {
    padding: 2.1428571429rem 1.7857142857rem;
  }
}

@media all and (max-width: 992px-1) {
  .navbar .u-main-nav-v3 .nav-link {
    padding: 0.7142857143rem 1.4285714286rem;
  }
}

/*------------------------------------
  Navigation Style v4
------------------------------------*/

.navbar .u-main-nav-v4 .nav-link {
  color: #333;
  padding: 2.5714285714rem 2.5714285714rem 2.8571428571rem;
  border-top: 4px solid transparent;
}

.navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v4 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.7142857143rem;
  transform: none;
}

.navbar .u-main-nav-v4 .nav-item.active > .nav-link,
.navbar .u-main-nav-v4 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v4 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v4 .nav-item.show > .nav-link,
.navbar .u-main-nav-v4 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v4 .nav-item .nav-link:focus {
  border-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v4 .nav-link {
    padding: 2.1428571429rem 1.7857142857rem;
  }
}

@media all and (max-width: 992px-1) {
  .navbar .u-main-nav-v4 .nav-link {
    padding: 0.7142857143rem 1.4285714286rem;
  }
}

/*------------------------------------
  Navigation Style v5
------------------------------------*/

.navbar .u-main-nav-v5 .nav-link {
  color: #333;
  padding: 0.2857142857rem 0;
  border-bottom: 2px solid transparent;
}

.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v5 .nav-item.dropdown > a {
  padding-right: 1.4285714286rem;
}

.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v5 .nav-item.dropdown > a::after {
  right: 0;
}

.navbar .u-main-nav-v5 .nav-item.active > .nav-link,
.navbar .u-main-nav-v5 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v5 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v5 .nav-item.show > .nav-link,
.navbar .u-main-nav-v5 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v5 .nav-item .nav-link:focus {
  border-color: #CAD105;
}

/*------------------------------------
  Navigation Style v6
------------------------------------*/

.navbar .u-main-nav-v6 .nav-link {
  color: #333;
  height: 100%;
  padding: 2.8571428571rem 2.7142857143rem;
}

.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v6 .nav-item.dropdown > a {
  padding-right: 2.7142857143rem;
}

.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v6 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.7142857143rem;
  transform: none;
}

.navbar .u-main-nav-v6 .nav-item.active > .nav-link,
.navbar .u-main-nav-v6 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v6 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v6 .nav-item.show > .nav-link,
.navbar .u-main-nav-v6 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v6 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v6 .nav-link {
    padding: 2.1428571429rem 1.4285714286rem;
  }

  .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a,
  .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a,
  .navbar .u-main-nav-v6 .nav-item.dropdown > a {
    padding-right: 1.4285714286rem;
  }
}

/*------------------------------------
  Navigation Style v7
------------------------------------*/

.navbar .u-main-nav-v7 .nav-link {
  color: #333;
  padding: 0.7142857143rem 2.1428571429rem;
  border: 2px solid transparent;
}

.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v7 .nav-item.dropdown > a {
  padding-right: 3.2142857143rem;
}

.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v7 .nav-item.dropdown > a::after {
  right: 1.7857142857rem;
}

.navbar .u-main-nav-v7 .nav-item.active > .nav-link,
.navbar .u-main-nav-v7 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v7 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v7 .nav-item.show > .nav-link,
.navbar .u-main-nav-v7 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v7 .nav-item .nav-link:focus {
  border-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v7 .nav-link {
    padding: 0.6428571429rem 1.4285714286rem;
  }

  .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a,
  .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a,
  .navbar .u-main-nav-v7 .nav-item.dropdown > a {
    padding-right: 2.1428571429rem;
  }

  .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after,
  .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after,
  .navbar .u-main-nav-v7 .nav-item.dropdown > a::after {
    right: 1.0714285714rem;
  }
}

/*------------------------------------
  Navigation Style v8
------------------------------------*/

.navbar .u-main-nav-v8 .nav-link {
  color: #333;
  padding: 0.7857142857rem 2.1428571429rem;
}

.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a,
.navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a,
.navbar .u-main-nav-v8 .nav-item.dropdown > a {
  padding-right: 3.2142857143rem;
}

.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after,
.navbar .u-main-nav-v8 .nav-item.dropdown > a::after {
  right: 1.7857142857rem;
}

.navbar .u-main-nav-v8 .nav-item.active > .nav-link,
.navbar .u-main-nav-v8 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v8 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v8 .nav-item.show > .nav-link,
.navbar .u-main-nav-v8 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v8 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #CAD105;
}

@media all and (max-width: 1200px-1) {
  .navbar .u-main-nav-v8 .nav-link {
    padding: 0.6428571429rem 1.4285714286rem;
  }

  .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a,
  .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a,
  .navbar .u-main-nav-v8 .nav-item.dropdown > a {
    padding-right: 2.1428571429rem;
  }

  .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after,
  .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after,
  .navbar .u-main-nav-v8 .nav-item.dropdown > a::after {
    right: 1.0714285714rem;
  }
}

/*------------------------------------
  Navigation Style v9
------------------------------------*/

.navbar .u-main-nav-v9 .nav-link {
  color: #777;
  padding: 0 1.4285714286rem 0 0;
}

.navbar .u-main-nav-v9 .nav-item > a {
  padding: 1.4285714286rem 0;
}

.navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after,
.navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after {
  font-size: 1.2857142857rem;
  right: 0;
}

.navbar .u-main-nav-v9 .nav-item.active > .nav-link,
.navbar .u-main-nav-v9 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v9 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v9 .nav-item .nav-link:focus {
  color: #000;
}

.navbar .u-main-nav-v9 .nav-item.active > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item:hover > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item:focus > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item .nav-link:focus::after {
  color: #CAD105;
}

/* Dropdown navigation styles */

/*------------------------------------
  Navigation Dropdown Style v1
------------------------------------*/

.navbar .u-sub-menu-v1 .hs-sub-menu a:active,
.navbar .u-sub-menu-v1 .hs-sub-menu a:focus,
.navbar .u-sub-menu-v1 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v1 .dropdown-menu a:active,
.navbar .u-sub-menu-v1 .dropdown-menu a:focus,
.navbar .u-sub-menu-v1 .dropdown-menu a:hover,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:hover > a {
  color: #CAD105 !important;
  background-color: transparent;
  border: none;
}

.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\E902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -50%, 0);
}

.navbar .u-sub-menu-v1 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\E902";
}

.navbar .u-sub-menu-v1 .hs-sub-menu,
.navbar .u-sub-menu-v1 .dropdown-menu {
  font-size: 0.9285714286rem;
  min-width: 16.4285714286rem;
  padding: 0.7142857143rem 0;
}

.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0;
}

.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus,
.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover {
  border: none;
  background-color: transparent;
}

.navbar .u-sub-menu-v1 .hs-sub-menu a,
.navbar .u-sub-menu-v1 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.4285714286rem 1.7857142857rem;
}

.navbar .u-sub-menu-v1 .hs-sub-menu,
.navbar .u-sub-menu-v1 .hs-mega-menu,
.navbar .u-sub-menu-v1 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  margin-top: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 3px 0 0 0;
  border-style: solid;
  border-color: #CAD105;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.navbar .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v1 .dropdown-menu .hs-sub-menu {
  margin-top: -1.0714285714rem;
}

.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu {
  width: auto;
}

.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu {
  width: auto;
}

.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

/*------------------------------------
  Navigation Dropdown Style v2
------------------------------------*/

.navbar .u-sub-menu-v2 .hs-sub-menu a:active,
.navbar .u-sub-menu-v2 .hs-sub-menu a:focus,
.navbar .u-sub-menu-v2 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v2 .dropdown-menu a:active,
.navbar .u-sub-menu-v2 .dropdown-menu a:focus,
.navbar .u-sub-menu-v2 .dropdown-menu a:hover,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:hover > a {
  color: #777 !important;
  background-color: #eee;
  border: none;
}

.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\E902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -50%, 0);
}

.navbar .u-sub-menu-v2 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\E902";
}

.navbar .u-sub-menu-v2 .hs-sub-menu,
.navbar .u-sub-menu-v2 .dropdown-menu {
  font-size: 0.9285714286rem;
  min-width: 16.4285714286rem;
  padding: 0.7142857143rem 0;
}

.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0;
}

.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus,
.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover {
  border-color: #eee;
  background-color: transparent;
}

.navbar .u-sub-menu-v2 .hs-sub-menu a,
.navbar .u-sub-menu-v2 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.4285714286rem 1.7857142857rem;
}

.navbar .u-sub-menu-v2 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v2 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.navbar .u-sub-menu-v2 .hs-sub-menu,
.navbar .u-sub-menu-v2 .hs-mega-menu,
.navbar .u-sub-menu-v2 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.2857142857rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #CAD105;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.navbar .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v2 .dropdown-menu .hs-sub-menu {
  margin-top: -1.0714285714rem;
}

.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu {
  width: auto;
}

.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu {
  width: auto;
}

.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

/*------------------------------------
  Navigation Dropdown Style v3
------------------------------------*/

.navbar .u-sub-menu-v3 .hs-sub-menu a:active,
.navbar .u-sub-menu-v3 .hs-sub-menu a:focus,
.navbar .u-sub-menu-v3 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v3 .dropdown-menu a:active,
.navbar .u-sub-menu-v3 .dropdown-menu a:focus,
.navbar .u-sub-menu-v3 .dropdown-menu a:hover,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:hover > a {
  color: #fff !important;
  background-color: #CAD105;
  border: none;
}

.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\E902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -50%, 0);
}

.navbar .u-sub-menu-v3 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\E902";
}

.navbar .u-sub-menu-v3 .hs-sub-menu,
.navbar .u-sub-menu-v3 .dropdown-menu {
  font-size: 0.9285714286rem;
  min-width: 16.4285714286rem;
  padding: 0.7142857143rem 0;
}

.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0;
}

.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus,
.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover {
  border-color: #eee;
  background-color: transparent;
}

.navbar .u-sub-menu-v3 .hs-sub-menu a,
.navbar .u-sub-menu-v3 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.4285714286rem 1.7857142857rem;
}

.navbar .u-sub-menu-v3 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v3 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.navbar .u-sub-menu-v3 .hs-sub-menu,
.navbar .u-sub-menu-v3 .hs-mega-menu,
.navbar .u-sub-menu-v3 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.2857142857rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #CAD105;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.navbar .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v3 .dropdown-menu .hs-sub-menu {
  margin-top: -1.0714285714rem;
}

.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu {
  width: auto;
}

.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu {
  width: auto;
}

.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

/*------------------------------------
  Navigation Dropdown Style v4
------------------------------------*/

.navbar .u-sub-menu-v4 .hs-sub-menu a:active,
.navbar .u-sub-menu-v4 .hs-sub-menu a:focus,
.navbar .u-sub-menu-v4 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v4 .dropdown-menu a:active,
.navbar .u-sub-menu-v4 .dropdown-menu a:focus,
.navbar .u-sub-menu-v4 .dropdown-menu a:hover,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:hover > a {
  color: #fff !important;
  background-color: #CAD105;
  border: none;
}

.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\E902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate3d(0, -50%, 0);
}

.navbar .u-sub-menu-v4 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\E902";
}

.navbar .u-sub-menu-v4 .hs-sub-menu,
.navbar .u-sub-menu-v4 .dropdown-menu {
  font-size: 0.9285714286rem;
  min-width: 16.4285714286rem;
  padding: 0.7142857143rem 0;
}

.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0;
}

.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus,
.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover {
  border: none;
  background-color: transparent;
}

.navbar .u-sub-menu-v4 .hs-sub-menu a,
.navbar .u-sub-menu-v4 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.4285714286rem 1.7857142857rem;
}

.navbar .u-sub-menu-v4 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v4 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.navbar .u-sub-menu-v4 .hs-sub-menu,
.navbar .u-sub-menu-v4 .hs-mega-menu,
.navbar .u-sub-menu-v4 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.2857142857rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #CAD105;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.navbar .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v4 .dropdown-menu .hs-sub-menu {
  margin-top: -1.0714285714rem;
}

.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu {
  width: auto;
}

.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu {
  width: auto;
}

.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.2142857143rem;
}

/*------------------------------------
  Navigation Dropdown Style v5
------------------------------------*/

.u-dropdown-v5 {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s, max-height 0.3s;
}

.u-dropdown-v5.show {
  max-height: 200px;
  opacity: 1;
}

/*------------------------------------
  Navigation Dropdown Style Inline
------------------------------------*/

.u-navbar--inline-submenu .dropdown-menu {
  white-space: nowrap;
  top: 98%;
  left: 50%;
  border-radius: 0;
  overflow: visible !important;
  border-left: none;
  border-right: none;
  transform: translate3d(-50%, 0, 0);
}

.u-navbar--inline-submenu .dropdown-menu::after,
.u-navbar--inline-submenu .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  width: 2000%;
  border-top: inherit;
  border-bottom: inherit;
  background-color: inherit;
}

.u-navbar--inline-submenu .dropdown-menu::after {
  left: 100%;
}

.u-navbar--inline-submenu .dropdown-menu::before {
  right: 100%;
}

.u-navbar--inline-submenu .dropdown-menu > li {
  display: inline-block;
}

.u-navbar--inline-submenu.u-navbar--overflow .dropdown,
.u-navbar--inline-submenu.u-navbar--overflow .container {
  position: static;
}

.u-navbar--inline-submenu.u-navbar--overflow .dropdown-menu {
  white-space: normal;
  left: 0;
  transform: translate3d(0, 0, 0);
  margin-top: 0;
}

@media all and (min-width: 1200px) {
  .u-navbar--inline-submenu--xl .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    transform: translate3d(-50%, 0, 0);
  }

  .u-navbar--inline-submenu--xl .dropdown-menu::after,
  .u-navbar--inline-submenu--xl .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit;
  }

  .u-navbar--inline-submenu--xl .dropdown-menu::after {
    left: 100%;
  }

  .u-navbar--inline-submenu--xl .dropdown-menu::before {
    right: 100%;
  }

  .u-navbar--inline-submenu--xl .dropdown-menu > li {
    display: inline-block;
  }

  .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--xl.u-navbar--overflow .container {
    position: static;
  }

  .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    transform: translate3d(0, 0, 0);
    margin-top: 0;
  }
}

@media all and (min-width: 992px) {
  .u-navbar--inline-submenu--lg .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    transform: translate3d(-50%, 0, 0);
  }

  .u-navbar--inline-submenu--lg .dropdown-menu::after,
  .u-navbar--inline-submenu--lg .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit;
  }

  .u-navbar--inline-submenu--lg .dropdown-menu::after {
    left: 100%;
  }

  .u-navbar--inline-submenu--lg .dropdown-menu::before {
    right: 100%;
  }

  .u-navbar--inline-submenu--lg .dropdown-menu > li {
    display: inline-block;
  }

  .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--lg.u-navbar--overflow .container {
    position: static;
  }

  .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    transform: translate3d(0, 0, 0);
    margin-top: 0;
  }
}

@media all and (min-width: 768px) {
  .u-navbar--inline-submenu--md .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    transform: translate3d(-50%, 0, 0);
  }

  .u-navbar--inline-submenu--md .dropdown-menu::after,
  .u-navbar--inline-submenu--md .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit;
  }

  .u-navbar--inline-submenu--md .dropdown-menu::after {
    left: 100%;
  }

  .u-navbar--inline-submenu--md .dropdown-menu::before {
    right: 100%;
  }

  .u-navbar--inline-submenu--md .dropdown-menu > li {
    display: inline-block;
  }

  .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--md.u-navbar--overflow .container {
    position: static;
  }

  .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    transform: translate3d(0, 0, 0);
    margin-top: 0;
  }
}

@media all and (min-width: 576px) {
  .u-navbar--inline-submenu--sm .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    transform: translate3d(-50%, 0, 0);
  }

  .u-navbar--inline-submenu--sm .dropdown-menu::after,
  .u-navbar--inline-submenu--sm .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit;
  }

  .u-navbar--inline-submenu--sm .dropdown-menu::after {
    left: 100%;
  }

  .u-navbar--inline-submenu--sm .dropdown-menu::before {
    right: 100%;
  }

  .u-navbar--inline-submenu--sm .dropdown-menu > li {
    display: inline-block;
  }

  .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--sm.u-navbar--overflow .container {
    position: static;
  }

  .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    transform: translate3d(0, 0, 0);
    margin-top: 0;
  }
}

/*------------------------------------
  Navigation Dropdown With Columns
------------------------------------*/

@media (min-width: 992px) {
  [class*=u-dropdown-col-] {
    -moz-column-gap: 1px;
         column-gap: 1px;
  }

  .hs-sub-menu-opened [class*=u-dropdown-col-] {
    -moz-column-rule: 1px solid #f7f7f7;
         column-rule: 1px solid #f7f7f7;
  }

  [class*=u-dropdown-col-] > * {
    min-width: 200px;
    column-break-inside: avoid;
  }

  .u-dropdown-col-2 {
    -moz-columns: 2;
         columns: 2;
  }

  .u-dropdown-col-3 {
    -moz-columns: 3;
         columns: 3;
  }
}

/*------------------------------------
  Navigation Dropdown Static
------------------------------------*/

.u-dropdown-static {
  position: static !important;
  display: block;
  max-height: 0;
  margin: 0 1.0714285714rem;
  padding: 0.3571428571rem 0;
  transform: translate3d(0, 0, 0) !important;
  border: none;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s, max-height 0.3s;
}

.u-dropdown-static.show {
  max-height: 100%;
  opacity: 1;
}

/* Main navigation behaviors */

/*------------------------------------
  Navigation Behavior (Overlay)
------------------------------------*/

body.u-main-nav--overlay-left .u-main-nav__overlay,
body.u-main-nav--overlay-right .u-main-nav__overlay {
  overflow: hidden;
}

body.u-main-nav--overlay-right .u-main-nav--overlay {
  right: -21.4285714286rem;
}

body.u-main-nav--overlay-right .u-main-nav__overlay {
  right: 100%;
}

body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav--overlay {
  right: 0;
}

body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible;
}

body.u-main-nav--overlay-left .u-main-nav--overlay {
  left: -21.4285714286rem;
}

body.u-main-nav--overlay-left .u-main-nav__overlay {
  left: 100%;
}

body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav--overlay {
  left: 0;
}

body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible;
}

.navbar-collapse.u-main-nav--overlay {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 5;
  margin: 0 !important;
  width: 21.4285714286rem;
  align-items: flex-start !important;
}

.navbar-collapse.u-main-nav--overlay .navbar-nav {
  width: 100%;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.navbar-collapse.u-main-nav--overlay .dropdown-menu {
  position: static;
  width: 100%;
}

.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 2.1428571429rem 0.7142857143rem;
  width: 100%;
  height: 100%;
}

.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper .navbar-nav {
  padding: 0.7142857143rem;
}

/*------------------------------------
  Navigation Behavior (Push)
------------------------------------*/

body.u-main-nav--push-left,
body.u-main-nav--push-right {
  width: 100%;
}

body.u-main-nav--push-left .u-main-nav__push,
body.u-main-nav--push-right .u-main-nav__push {
  overflow: hidden;
}

body.u-main-nav--push-right .u-main-nav--push {
  right: -21.4285714286rem;
}

body.u-main-nav--push-right .u-main-nav__overlay {
  right: 100%;
}

body.u-main-nav--push-right.u-main-nav--overlay-opened {
  margin-right: 21.4285714286rem;
}

body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav--push {
  right: 0;
}

body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible;
}

body.u-main-nav--push-left .u-main-nav--push {
  left: -21.4285714286rem;
}

body.u-main-nav--push-left .u-main-nav__overlay {
  left: 100%;
}

body.u-main-nav--push-left.u-main-nav--overlay-opened {
  margin-left: 21.4285714286rem;
}

body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav--push {
  left: 0;
}

body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible;
}

.navbar-collapse.u-main-nav--push {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 5;
  margin: 0 !important;
  width: 21.4285714286rem;
  max-width: 85%;
  align-items: flex-start !important;
}

.navbar-collapse.u-main-nav--push .navbar-nav {
  width: 100%;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.navbar-collapse.u-main-nav--push .dropdown-menu {
  position: static;
  width: 100%;
}

.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 2.1428571429rem 0.7142857143rem;
  width: 100%;
  height: 100%;
}

.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper .navbar-nav {
  padding: 0.7142857143rem;
}

/*------------------------------------
  Navigation Behavior (Smart)
------------------------------------*/

.u-smart-nav {
  position: fixed;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: scale3d(0.2, 0.2, 0.2);
}

.u-smart-nav .navbar {
  position: absolute;
  width: 21.4285714286rem;
  opacity: 0;
  visibility: hidden;
}

.u-smart-nav .navbar .dropdown {
  z-index: 1;
}

.u-smart-nav .navbar .dropdown-menu {
  position: relative;
  width: 100%;
}

.u-smart-nav .navbar li {
  transform: translate3d(30px, 0, 0);
  transition: all 0.3s ease;
}

.u-smart-nav .navbar li:nth-child(1) {
  transition-delay: 60ms;
}

.u-smart-nav .navbar li:nth-child(2) {
  transition-delay: 90ms;
}

.u-smart-nav .navbar li:nth-child(3) {
  transition-delay: 120ms;
}

.u-smart-nav .navbar li:nth-child(4) {
  transition-delay: 150ms;
}

.u-smart-nav .navbar li:nth-child(5) {
  transition-delay: 180ms;
}

.u-smart-nav .navbar li:nth-child(6) {
  transition-delay: 210ms;
}

.u-smart-nav .navbar li:nth-child(7) {
  transition-delay: 240ms;
}

.u-smart-nav .navbar li:nth-child(8) {
  transition-delay: 270ms;
}

.u-smart-nav .navbar li:nth-child(9) {
  transition-delay: 300ms;
}

.u-smart-nav .navbar li:nth-child(10) {
  transition-delay: 330ms;
}

.u-smart-nav .navbar li:nth-child(11) {
  transition-delay: 360ms;
}

.u-smart-nav .navbar li:nth-child(12) {
  transition-delay: 390ms;
}

.u-smart-nav .navbar li:nth-child(13) {
  transition-delay: 420ms;
}

.u-smart-nav .navbar li:nth-child(14) {
  transition-delay: 450ms;
}

.u-smart-nav .navbar li:nth-child(15) {
  transition-delay: 480ms;
}

.u-smart-nav .navbar li:nth-child(16) {
  transition-delay: 510ms;
}

.u-smart-nav .navbar li:nth-child(17) {
  transition-delay: 540ms;
}

.u-smart-nav .navbar li:nth-child(18) {
  transition-delay: 570ms;
}

.u-smart-nav .navbar li:nth-child(19) {
  transition-delay: 600ms;
}

.u-smart-nav__toggler {
  position: relative;
  z-index: 1;
}

.u-smart-nav--opened .navbar {
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1) !important;
}

.u-smart-nav--opened .navbar li {
  transform: translate3d(0, 0, 0);
}

.u-smart-nav--shown {
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1);
}

.u-smart-nav--bottom-right {
  right: 0.7142857143rem;
  bottom: 0.7142857143rem;
}

.u-smart-nav--bottom-right .navbar {
  bottom: 0;
  right: 0;
  transform: scale3d(0.1, 0.1, 0.1);
  transform-origin: 100% 100%;
  padding-right: 5.7142857143rem;
}

.u-smart-nav--bottom-left {
  left: 0.7142857143rem;
  bottom: 0.7142857143rem;
}

.u-smart-nav--bottom-left .navbar {
  text-align: right;
  bottom: 0;
  left: 0;
  transform: scale3d(0.1, 0.1, 0.1);
  transform-origin: 0% 100%;
  padding-left: 5.7142857143rem;
}

.u-smart-nav--top-left {
  left: 0.7142857143rem;
  top: 0.7142857143rem;
}

.u-smart-nav--top-left .navbar {
  text-align: right;
  top: 0;
  left: 0;
  transform: scale3d(0.1, 0.1, 0.1);
  transform-origin: 0% 0%;
  padding-left: 5.7142857143rem;
}

.u-smart-nav--top-right {
  right: 0.7142857143rem;
  top: 0.7142857143rem;
}

.u-smart-nav--top-right .navbar {
  top: 0;
  right: 0;
  transform: scale3d(0.1, 0.1, 0.1);
  transform-origin: 100% 0%;
  padding-right: 5.7142857143rem;
}

/* Secondary navigation styles */

/*------------------------------------
  Secondary Navigation
------------------------------------*/

.u-secondary-navigation {
  z-index: 3;
}

.u-secondary-navigation .active a {
  color: #CAD105;
}

/* Sidebar shortcode navigation styles */

/*------------------------------------
  Sidebar Navigation
------------------------------------*/

@media all and (min-width: 992px) {
  .u-sidebar-navigation {
    position: fixed;
    top: 0;
    left: -21.4285714286rem;
    width: 300px;
  }
}

.u-sidebar-navigation-inner {
  background-color: #1c2434;
  color: #fff;
  padding: 20px 0;
}

.u-sidebar-navigation__search-input {
  border-radius: 3px;
  border: none;
}

.u-sidebar-navigation .nav-link {
  color: #fff;
  padding: 0.5rem 1.4285714286rem;
}

.u-sidebar-navigation .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.u-sidebar-navigation .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.u-sidebar-navigation__toggler {
  position: fixed;
  top: 120px;
  left: 0;
  width: 53px;
  height: 53px;
  background-color: #1c2434;
  color: #fff;
  border-radius: 0 3px 3px 0;
  font-size: 22px;
  z-index: 2;
}

.u-sidebar-navigation__toggler:hover,
.u-sidebar-navigation__toggler:focus {
  color: #fff;
}

.u-sidebar-navigation__closer {
  position: absolute;
  top: 22px;
  right: 15px;
  width: 25px;
  height: 25px;
  padding: 0;
  color: #fff;
  background-color: transparent;
  z-index: 3;
}

.u-sidebar-navigation__closer:hover,
.u-sidebar-navigation__closer:focus {
  color: #fff;
}

@media all and (max-width: 992px-1) {
  .u-sidebar-navigation-list {
    display: block;
    -moz-columns: 4;
         columns: 4;
  }

  .u-sidebar-navigation-list .dropdown-toggle {
    display: none;
  }

  .u-sidebar-navigation-list .dropdown-menu {
    display: block;
    max-height: 100%;
    margin: 0;
    float: none;
    opacity: 1;
  }
}

@media all and (max-width: 768px-1) {
  .u-sidebar-navigation-list {
    -moz-columns: 3;
         columns: 3;
  }
}

@media all and (max-width: 576px-1) {
  .u-sidebar-navigation-list {
    -moz-columns: 1;
         columns: 1;
  }
}

.u-has-sidebar-navigation .u-header__overlay {
  display: none;
}

/* Override vendor stylesheets */

.hamburger-inner::before,
.hamburger-inner::after {
  background-color: inherit;
}

[class*=u-main-nav-] .dropdown-toggle::after {
  width: auto;
  height: auto;
  vertical-align: inherit;
  border: none;
}

/* Overlay */

.u-main-nav__overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2000%;
  opacity: 0;
  visibility: hidden;
}

/* Override necessary navigation styles in side-header pages */

body.u-body--header-side-static-left .navbar [class*=u-main-nav-] .dropdown-toggle::after,
body.u-body--header-side-static-left .navbar [class*=u-main-nav-] > .hs-has-sub-menu > a::after,
body.u-body--header-side-static-left .navbar [class*=u-main-nav-] > .hs-has-mega-menu > a::after {
  content: "\E900";
}

body.u-body--header-side-static-right .navbar [class*=u-main-nav-] .dropdown-toggle::after,
body.u-body--header-side-static-right .navbar [class*=u-main-nav-] > .hs-has-sub-menu > a::after,
body.u-body--header-side-static-right .navbar [class*=u-main-nav-] > .hs-has-mega-menu > a::after {
  content: "\E901";
}

/* Scroll on mobile devices */

@media (max-width: 992px-1) {
  .u-nav-mobile-scroll {
    overflow-y: auto;
  }
}

/*------------------------------------
  Basket Bar
------------------------------------*/

/* Container */

.u-basket {
  position: relative;
  z-index: 1;
}

/* Bar */

.u-basket__bar {
  position: absolute;
  right: 0;
  top: 100%;
  text-align: left;
  width: 21.4285714286rem;
  background-color: #fff;
  box-shadow: 0 5px 5px 0px rgba(90, 90, 90, 0.075);
}

/* Product */

.u-basket__product {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.7142857143rem;
  border-bottom: solid 1px #eee;
}

/* Product Image */

.u-basket__product-img {
  width: 7.1428571429rem;
}

.u-basket__product-img img {
  width: 100%;
}

/* Product Remove Button */

.u-basket__product-remove {
  position: absolute;
  top: 1.4285714286rem;
  right: 1.4285714286rem;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.2;
}

.u-basket__product-remove:hover,
.u-basket__product-remove:focus {
  opacity: 1;
}

/*------------------------------------
	Dropdowns
------------------------------------*/

[class*=u-dropdown--] [class*=u-dropdown--] {
  left: 100%;
  top: 0;
}

[class*=u-dropdown--] [class*=u-dropdown--].u-dropdown--reverse-x {
  left: auto;
  right: 100%;
}

.u-dropdown--simple.u-dropdown--reverse-y,
.u-dropdown--jquery-slide.u-dropdown--reverse-y,
.u-dropdown--css-animation.u-dropdown--reverse-y {
  top: auto;
  bottom: 100%;
  margin-top: 0 !important;
  margin-bottom: 1.4285714286rem;
}

/* Simple Dropdown */

.u-dropdown--simple.u-dropdown--hidden {
  display: none;
}

/* CSS Animation Dropdown */

.u-dropdown--css-animation {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.u-dropdown--css-animation.u-dropdown--hidden {
  opacity: 0;
  visibility: hidden;
}

/* jQuery Slide */

.u-dropdown--jquery-slide.u-dropdown--hidden {
  opacity: 0;
  visibility: hidden;
}

.u-dropdown--hidden:not(.hs-sub-menu-opened) * {
  transition: none !important;
}

.u-dropdown--hidden:not(.hs-sub-menu-opened) *::before,
.u-dropdown--hidden:not(.hs-sub-menu-opened) *::after {
  transition: none !important;
}

/*------------------------------------
  Compressed Form
------------------------------------*/

.u-compressed-form {
  display: inline-block;
  overflow: hidden;
  width: 20rem;
  transition: all 0.35s ease;
}

.u-compressed-form--hidden {
  width: 5.7142857143rem;
}

.u-compressed-form .input-group {
  display: block;
  float: right;
}

/*------------------------------------
  Dropcaps
------------------------------------*/

.u-dropcap-bordered,
.u-dropcap-bg,
.u-dropcap-underline,
.u-dropcap {
  float: left;
  font-size: 3.57rem;
  line-height: 1;
}

.u-dropcap-underline {
  padding-bottom: 0.3571428571rem;
  border-bottom: 2px solid;
}

.u-dropcap-bg {
  width: 5rem;
  height: 5rem;
  margin-top: 0.3571428571rem;
  text-align: center;
  line-height: 4.78rem;
}

.u-dropcap-bordered {
  width: 5rem;
  height: 5rem;
  margin-top: 0.3571428571rem;
  text-align: center;
  line-height: 4.35rem;
  border: 3px solid;
}

/*------------------------------------
  BG Angles
------------------------------------*/

.u-angle-v1--top-left--bg-light,
.u-angle-v1--top-right--bg-light,
.u-angle-v1--bottom-left--bg-light,
.u-angle-v1--bottom-right--bg-light,
.u-angle-v1--top-left--bg-dark,
.u-angle-v1--top-right--bg-dark,
.u-angle-v1--bottom-left--bg-dark,
.u-angle-v1--bottom-right--bg-dark,
.u-angle-v2--top-left--bg-light,
.u-angle-v2--top-right--bg-light,
.u-angle-v2--bottom-left--bg-light,
.u-angle-v2--bottom-right--bg-light,
.u-angle-v2--top-left--bg-dark,
.u-angle-v2--top-right--bg-dark,
.u-angle-v2--bottom-left--bg-dark,
.u-angle-v2--bottom-right--bg-dark {
  position: relative;
  overflow: hidden;
}

/* V-1
------------------------------------*/

/* Light */

.u-angle-v1--top-left--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
}

.u-angle-v1--top-right--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
}

.u-angle-v1--bottom-left--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
}

.u-angle-v1--bottom-right--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dark */

.u-angle-v1--top-left--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
}

.u-angle-v1--top-right--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
}

.u-angle-v1--bottom-left--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
}

.u-angle-v1--bottom-right--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* V-2
------------------------------------*/

/* Light */

.u-angle-v2--top-left--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.u-angle-v2--top-right--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.u-angle-v2--bottom-left--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.u-angle-v2--bottom-right--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Dark */

.u-angle-v2--top-left--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.u-angle-v2--top-right--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.u-angle-v2--bottom-left--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.u-angle-v2--bottom-right--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

/*------------------------------------
  Block Hovers
------------------------------------*/

[class*=u-block-hover] {
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

[class*=u-block-hover],
[class*=u-block-hover]::before,
[class*=u-block-hover]::after {
  transition: all 0.3s ease;
}

.u-block-hover--uncroped {
  overflow: visible;
}

.u-block-hover--uncroped:hover {
  z-index: 2;
}

.u-block-hover__img {
  max-width: 100%;
  vertical-align: top;
}

.u-block-hover__block {
  min-height: 100%;
}

[class*=u-block-hover__additional] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

[class*=u-block-hover__additional--v1] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 15px;
  opacity: 0;
}

.u-block-hover:hover .u-block-hover__additional--v1 {
  opacity: 1;
}

.u-block-hover--shadow:hover,
.u-block-hover--shadow:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 10px #777;
}

.u-block-hover--shadow-v2:hover,
.u-block-hover--shadow-v2:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 15px #ddd;
}

.u-block-hover--shadow-v3:hover,
.u-block-hover--shadow-v3:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 3px #ddd;
}

.u-block-hover--scale:hover,
.u-block-hover--scale-img:hover .u-block-hover__img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.u-block-hover__additional-scale {
  z-index: -1;
  max-width: initial;
}

.u-block-hover:hover .u-block-hover__additional-scale {
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
}

.u-block-hover--scale-down:hover,
.u-block-hover--scale-down-img:hover .u-block-hover__img {
  transform: scale3d(0.9, 0.9, 0.9);
}

.u-block-hover__additional-scale-down {
  z-index: -1;
  max-width: initial;
}

.u-block-hover:hover .u-block-hover__additional-scale-down {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.u-block-hover__main--zoom-v1,
.u-block-hover__main--zoom-v2 {
  -webkit-transform: scale(1.01);
}

.u-block-hover:hover .u-block-hover__main--zoom-v1 {
  transform: scale(1.1);
}

.u-block-hover:hover .u-block-hover__main--zoom-v2 {
  transform: scale(1.04);
}

.u-block-hover [class*=icon-] {
  padding: 1px;
}

.u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  -webkit-filter: grayscale(100%);
}

.u-block-hover:hover .u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
}

.u-block-hover__main--white {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.u-block-hover__additional--blur {
  opacity: 0;
}

.u-block-hover:hover .u-block-hover__additional--blur {
  opacity: 1;
  transition-delay: 0.11s;
}

.u-block-hover:hover .u-block-hover__main--blur {
  -webkit-filter: blur(30px);
          filter: blur(30px);
  transform: scale(1.2);
  opacity: 0;
}

[class*=u-block-hover-image-overlay]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.35s ease;
}

.u-block-hover:hover .u-block-hover-image-overlay::after {
  opacity: 1;
}

.u-block-hover__additional--fade {
  opacity: 0;
}

.u-block-hover:hover .u-block-hover__additional--fade {
  opacity: 1;
  transform: translate(0, 0);
}

.u-block-hover__additional--fade-up {
  transform: translate(0, 15%);
}

.u-block-hover__additional--fade-down {
  transform: translate(0, -15%);
}

.u-block-hover__additional--fade-left {
  transform: translate(-15%, 0);
}

.u-block-hover__additional--fade-right {
  transform: translate(15%, 0);
}

.u-block-hover:hover [class*=u-block-hover__additional--push] {
  transform: translate(0, 0);
}

.u-block-hover:hover .u-block-hover__main--push-up {
  transform: translateY(-100%);
}

.u-block-hover__additional--push-up {
  transform: translateY(100%);
}

.u-block-hover:hover .u-block-hover__main--push-down {
  transform: translateY(100%);
}

.u-block-hover__additional--push-down {
  transform: translateY(-100%);
}

.u-block-hover:hover .u-block-hover__main--push-left {
  transform: translateX(-100%);
}

.u-block-hover__additional--push-left {
  transform: translateX(100%);
}

.u-block-hover:hover .u-block-hover__main--push-right {
  transform: translateX(100%);
}

.u-block-hover__additional--push-right {
  transform: translateX(-100%);
}

.u-block-hover:hover [class*=u-block-hover__additional--slide],
.u-block-hover:hover [class*=u-block-hover__additional--partially-slide] {
  transform: translate(0, 0);
}

.u-block-hover__additional--slide-up {
  transform: translateY(100%);
}

.u-block-hover__additional--slide-down {
  transform: translateY(-100%);
}

.u-block-hover__additional--slide-left {
  transform: translateX(100%);
}

.u-block-hover__additional--slide-right {
  transform: translateX(-100%);
}

.u-block-hover__additional--slide-bottom-right {
  transform: translate(-100%, -100%);
}

.u-block-hover__additional--slide-bottom-left {
  transform: translate(100%, -100%);
}

.u-block-hover__additional--slide-top-right {
  transform: translate(-100%, 100%);
}

.u-block-hover__additional--slide-top-left {
  transform: translate(100%, 100%);
}

.u-block-hover__additional--partially-slide-up {
  top: auto;
  transform: translate3d(0, 100%, 0);
  overflow: visible;
}

.u-block-hover__additional--partially-slide-up .u-block-hover__visible {
  position: absolute;
  bottom: 100%;
  margin-bottom: -1px;
  left: 0;
  right: 0;
  padding-left: inherit;
  padding-right: inherit;
  background: inherit;
}

.u-block-hover__additional--partially-slide-down {
  bottom: auto;
  transform: translate3d(0, -100%, 0);
  overflow: visible;
}

.u-block-hover__additional--partially-slide-down .u-block-hover__visible {
  position: absolute;
  top: 100%;
  margin-top: -1px;
  left: 0;
  right: 0;
  padding-left: inherit;
  padding-right: inherit;
  background: inherit;
}

.u-block-hover--cot {
  perspective: 50em;
}

[class*=u-block-hover__additional--cot] {
  opacity: 0;
  z-index: 1;
}

.u-block-hover--cot:hover [class*=u-block-hover__main--cot] {
  opacity: 0;
}

.u-block-hover--cot:hover [class*=u-block-hover__additional--cot] {
  opacity: 1;
  transition-delay: 0.21s;
}

.u-block-hover__main--cot-up {
  transform-origin: 50% 0;
}

.u-block-hover__additional--cot-up {
  transform: rotateX(90deg);
  transform-origin: 50% 100%;
}

.u-block-hover--cot:hover .u-block-hover__main--cot-up {
  transform: rotateX(-90deg);
}

.u-block-hover--cot:hover .u-block-hover__additional--cot-up {
  transform: rotateX(0deg);
}

.u-block-hover__main--cot-down {
  transform-origin: 50% 100%;
}

.u-block-hover__additional--cot-down {
  transform: rotateX(-90deg);
  transform-origin: 50% -50%;
}

.u-block-hover--cot:hover .u-block-hover__main--cot-down {
  transform: rotateX(90deg);
  opacity: 0;
}

.u-block-hover--cot:hover .u-block-hover__additional--cot-down {
  transform: rotateX(0deg);
}

.u-block-hover__main--cot-left {
  transform-origin: 0% 50%;
}

.u-block-hover__additional--cot-left {
  transform: rotateY(-90deg);
  transform-origin: 100% 50%;
}

.u-block-hover--cot:hover .u-block-hover__main--cot-left {
  transform: rotateY(90deg);
}

.u-block-hover--cot:hover .u-block-hover__additional--cot-left {
  transform: rotateY(0deg);
}

.u-block-hover__main--cot-right {
  transform-origin: 100% 50%;
}

.u-block-hover__additional--cot-right {
  transform: rotateY(90deg);
  transform-origin: 0 50%;
}

.u-block-hover--cot:hover .u-block-hover__main--cot-right {
  transform: rotateY(-90deg);
}

.u-block-hover--cot:hover .u-block-hover__additional--cot-right {
  transform: rotateY(0deg);
}

.u-block-hover--flip {
  perspective: 50em;
}

[class*=u-block-hover__main--flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

[class*=u-block-hover__additional--flip] {
  opacity: 0;
}

.u-block-hover--flip:hover [class*=u-block-hover__main--flip] {
  opacity: 0;
}

.u-block-hover--flip:hover [class*=u-block-hover__additional--flip] {
  opacity: 1;
  transition-delay: 0.14s;
}

.u-block-hover__additional--flip-horiz {
  transform: rotateX(90deg);
  transform-origin: 0 50%;
}

.u-block-hover--flip:hover .u-block-hover__main--flip-horiz {
  transform: rotateX(-180deg);
}

.u-block-hover--flip:hover .u-block-hover__additional--flip-horiz {
  transform: rotateX(0deg);
}

.u-block-hover__additional--flip-vert {
  transform: rotateY(90deg);
  transform-origin: 50% 0%;
}

.u-block-hover--flip:hover .u-block-hover__main--flip-vert {
  transform: rotateY(-180deg);
}

.u-block-hover--flip:hover .u-block-hover__additional--flip-vert {
  transform: rotateY(0deg);
}

.u-block-hover__additional--flip-diag-1 {
  transform: rotate3d(1, 1, 0, 100deg);
}

.u-block-hover--flip:hover .u-block-hover__main--flip-diag-1 {
  transform: rotate3d(-1, -1, 0, 100deg);
}

.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-1 {
  transform: rotate3d(0, 0, 0, 0deg);
}

.u-block-hover__additional--flip-diag-2 {
  transform: rotate3d(1, -1, 0, 100deg);
}

.u-block-hover--flip:hover .u-block-hover__main--flip-diag-2 {
  transform: rotate3d(-1, 1, 0, 100deg);
}

.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-2 {
  transform: rotate3d(0, 0, 0, 0deg);
}

.u-block-hover--fold {
  perspective: 50em;
}

[class*=u-block-hover__main--fold] {
  transform-origin: 50% 0;
}

[class*=u-block-hover__additional--fold] {
  z-index: 1;
  opacity: 0;
}

.u-block-hover--fold:hover [class*=u-block-hover__main--fold] {
  opacity: 0;
  transition-delay: 0;
}

.u-block-hover--fold:hover [class*=u-block-hover__additional--fold] {
  transform: rotateX(0deg) translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition-delay: 0.21s;
}

.u-block-hover__main--fold-up {
  transform-origin: 50% 0;
}

.u-block-hover__additional--fold-up {
  transform: rotateX(-90deg) translate3d(0, -50%, 0) scale(0.6);
  transform-origin: 50% 100%;
}

.u-block-hover--fold:hover .u-block-hover__main--fold-up {
  transform: rotateX(90deg) scale(0.6) translateY(50%);
}

.u-block-hover__main--fold-down {
  transform-origin: 50% 100%;
}

.u-block-hover__additional--fold-down {
  transform: rotateX(90deg) translate3d(0, 50%, 0) scale(0.6);
  transform-origin: 50% 0;
}

.u-block-hover--fold:hover .u-block-hover__main--fold-down {
  transform: rotateX(-90deg) scale(0.6) translateY(-50%);
}

.u-block-hover__main--fold-left {
  transform-origin: 0 50%;
}

.u-block-hover__additional--fold-left {
  transform: rotateY(90deg) translate3d(-50%, 0, 0) scale(0.6);
  transform-origin: 100% 50%;
}

.u-block-hover--fold:hover .u-block-hover__main--fold-left {
  transform: rotateY(-90deg) scale(0.6) translateX(50%);
}

.u-block-hover__main--fold-right {
  transform-origin: 100% 50%;
}

.u-block-hover__additional--fold-right {
  transform: rotateY(-90deg) translate3d(50%, 0, 0) scale(0.6);
  transform-origin: 0 50%;
}

.u-block-hover--fold:hover .u-block-hover__main--fold-right {
  transform: rotateY(90deg) scale(0.6) translateX(-50%);
}

.u-block-hover__additional--zoom-in {
  opacity: 0;
  transform: scale(0.5);
}

.u-block-hover:hover .u-block-hover__additional--zoom-in {
  transform: scale(1);
  opacity: 1;
}

.u-block-hover__additional--zoom-out {
  transform: scale(0.5);
  transform-origin: 50% 50%;
  opacity: 0;
}

.u-block-hover:hover .u-block-hover__main--zoom-out {
  transform: scale(0.5);
  opacity: 0;
}

.u-block-hover:hover .u-block-hover__additional--zoom-out {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.35s;
}

[class*=u-block-hover--shutter-out]::after {
  content: "";
  position: absolute;
  transition-delay: 0.105s;
  z-index: 1;
}

.u-block-hover__additional--shutter-out {
  opacity: 0;
  transition-delay: 0s;
  z-index: 2;
}

[class*=u-block-hover--shutter-out]:hover::after {
  transition-delay: 0s;
}

[class*=u-block-hover--shutter-out]:hover .u-block-hover__additional--shutter-out {
  opacity: 1;
  transition-delay: 0.105s;
}

.u-block-hover--shutter-out-horiz::after {
  left: 50%;
  right: 50%;
  top: 0;
  bottom: 0;
}

.u-block-hover--shutter-out-horiz:hover::after {
  left: 0;
  right: 0;
}

.u-block-hover--shutter-out-vert::after {
  top: 50%;
  bottom: 50%;
  left: 0;
  right: 0;
}

.u-block-hover--shutter-out-vert:hover::after {
  top: 0;
  bottom: 0;
}

.u-block-hover--shutter-out-diag-1::after {
  top: 50%;
  bottom: 50%;
  left: -35%;
  right: -35%;
  transform: rotate(45deg);
}

.u-block-hover--shutter-out-diag-1:hover::after {
  top: -35%;
  bottom: -35%;
}

.u-block-hover--shutter-out-diag-2::after {
  top: 50%;
  bottom: 50%;
  left: -35%;
  right: -35%;
  transform: rotate(-45deg);
}

.u-block-hover--shutter-out-diag-2:hover::after {
  top: -35%;
  bottom: -35%;
}

[class*=u-block-hover--shutter-in]::after,
[class*=u-block-hover--shutter-in]::before {
  content: "";
  position: absolute;
  z-index: 1;
}

[class*=u-block-hover--shutter-in]::after {
  top: 0;
  left: 0;
}

[class*=u-block-hover--shutter-in]::before {
  right: 0;
  bottom: 0;
}

.u-block-hover__additional--shutter-in {
  opacity: 0;
  z-index: 2;
}

[class*=u-block-hover--shutter-in]:hover .u-block-hover__additional--shutter-in {
  opacity: 1;
  transition-delay: 0.21s;
}

.u-block-hover--shutter-in-horiz::after,
.u-block-hover--shutter-in-horiz::before {
  width: 0;
  height: 100%;
}

.u-block-hover--shutter-in-horiz:hover::after,
.u-block-hover--shutter-in-horiz:hover::before {
  width: 100%;
}

.u-block-hover--shutter-in-vert::after,
.u-block-hover--shutter-in-vert::before {
  height: 0;
  width: 100%;
}

.u-block-hover--shutter-in-vert:hover::after,
.u-block-hover--shutter-in-vert:hover::before {
  height: 100%;
}

.u-block-hover--shutter-in-diag-1::after,
.u-block-hover--shutter-in-diag-1::before {
  width: 200%;
  height: 200%;
  transition: all 0.6s ease;
}

.u-block-hover--shutter-in-diag-1::after {
  transform: skew(-45deg) translateX(-150%);
}

.u-block-hover--shutter-in-diag-1::before {
  transform: skew(-45deg) translateX(150%);
}

.u-block-hover--shutter-in-diag-1:hover::after {
  transform: skew(-45deg) translateX(-50%);
}

.u-block-hover--shutter-in-diag-1:hover::before {
  transform: skew(-45deg) translateX(50%);
}

.u-block-hover--shutter-in-diag-2::after,
.u-block-hover--shutter-in-diag-2::before {
  width: 200%;
  height: 200%;
  transition: all 0.6s ease;
}

.u-block-hover--shutter-in-diag-2::after {
  transform: skew(45deg) translateX(-100%);
}

.u-block-hover--shutter-in-diag-2::before {
  transform: skew(45deg) translateX(100%);
}

.u-block-hover--shutter-in-diag-2:hover::after {
  transform: skew(45deg) translateX(0);
}

.u-block-hover--shutter-in-diag-2:hover::before {
  transform: skew(45deg) translateX(0);
}

[class*=u-block-hover--shutter-in-out]::after,
[class*=u-block-hover--shutter-in-out]::before {
  content: "";
  position: absolute;
  z-index: 1;
}

[class*=u-block-hover--shutter-in-out]::after {
  top: 0;
  left: 0;
}

[class*=u-block-hover--shutter-in-out]::before {
  right: 0;
  bottom: 0;
}

.u-block-hover__additional--shutter-in-out {
  opacity: 0;
  z-index: 2;
}

[class*=u-block-hover--shutter-in-out]:hover .u-block-hover__additional--shutter-in-out {
  opacity: 1;
  transition-delay: 0.21s;
}

.u-block-hover--shutter-in-out-horiz::after,
.u-block-hover--shutter-in-out-horiz::before {
  width: 0;
  height: 100%;
}

.u-block-hover--shutter-in-out-horiz:hover::after,
.u-block-hover--shutter-in-out-horiz:hover::before {
  width: 100%;
  opacity: 0.75;
}

.u-block-hover--shutter-in-out-vert::after,
.u-block-hover--shutter-in-out-vert::before {
  height: 0;
  width: 100%;
}

.u-block-hover--shutter-in-out-vert:hover::after,
.u-block-hover--shutter-in-out-vert:hover::before {
  height: 100%;
  opacity: 0.75;
}

.u-block-hover--shutter-in-out-diag-1::after,
.u-block-hover--shutter-in-out-diag-1::before {
  width: 200%;
  height: 200%;
  transition: all 0.6s ease;
  opacity: 0.75;
}

.u-block-hover--shutter-in-out-diag-1::after {
  transform: skew(-45deg) translateX(-150%);
}

.u-block-hover--shutter-in-out-diag-1::before {
  transform: skew(-45deg) translateX(150%);
}

.u-block-hover--shutter-in-out-diag-1:hover::after {
  transform: skew(-45deg) translateX(-50%);
}

.u-block-hover--shutter-in-out-diag-1:hover::before {
  transform: skew(-45deg) translateX(50%);
}

.u-block-hover--shutter-in-out-diag-2::after,
.u-block-hover--shutter-in-out-diag-2::before {
  width: 200%;
  height: 200%;
  transition: all 0.6s ease;
  opacity: 0.75;
}

.u-block-hover--shutter-in-out-diag-2::after {
  transform: skew(45deg) translateX(-100%);
}

.u-block-hover--shutter-in-out-diag-2::before {
  transform: skew(45deg) translateX(100%);
}

.u-block-hover--shutter-in-out-diag-2:hover::after {
  transform: skew(45deg) translateX(0);
}

.u-block-hover--shutter-in-out-diag-2:hover::before {
  transform: skew(45deg) translateX(0);
}

.u-block-hover--strip-shutter::before,
.u-block-hover--strip-shutter::after,
.u-block-hover__additional--strip-shutter::before,
.u-block-hover__additional--strip-shutter::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  transform: scaleY(0);
  opacity: 0;
}

.u-block-hover--strip-shutter::before,
.u-block-hover--strip-shutter::after {
  z-index: 1;
}

.u-block-hover--strip-shutter::before {
  left: 0;
  transition-delay: 0s;
}

.u-block-hover--strip-shutter::after {
  left: 25%;
  transition-delay: 0.105s;
}

.u-block-hover__additional--strip-shutter {
  z-index: 3;
}

.u-block-hover__additional--strip-shutter::before,
.u-block-hover__additional--strip-shutter::after {
  z-index: -1;
}

.u-block-hover__additional--strip-shutter::before {
  left: 50%;
  transition-delay: 0.21s;
}

.u-block-hover__additional--strip-shutter::after {
  left: 75%;
  transition-delay: 0.35s;
}

.u-block-hover--strip-shutter:hover::before,
.u-block-hover--strip-shutter:hover::after,
.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::before,
.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::after {
  transform: scale(1);
  opacity: 1;
}

.u-block-hover__additional--strip-shutter__inner {
  opacity: 0;
}

.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter__inner {
  opacity: 1;
  transition-delay: 0.35s;
}

.u-block-hover--tile::before,
.u-block-hover--tile::after,
.u-block-hover__additional--tile::before,
.u-block-hover__additional--tile::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  transform: scale(0);
  opacity: 0;
}

.u-block-hover--tile::before,
.u-block-hover--tile::after {
  z-index: 1;
}

.u-block-hover--tile::before {
  top: 0;
  left: 0;
  transition-delay: 0s;
}

.u-block-hover--tile::after {
  top: 0;
  left: 50%;
  transition-delay: 0.105s;
}

.u-block-hover__additional--tile {
  z-index: 3;
}

.u-block-hover__additional--tile::before,
.u-block-hover__additional--tile::after {
  z-index: -1;
}

.u-block-hover__additional--tile::before {
  top: 50%;
  left: 0;
  transition-delay: 0.21s;
}

.u-block-hover__additional--tile::after {
  top: 50%;
  left: 50%;
  transition-delay: 0.35s;
}

.u-block-hover--tile:hover::before,
.u-block-hover--tile:hover::after,
.u-block-hover--tile:hover .u-block-hover__additional--tile::before,
.u-block-hover--tile:hover .u-block-hover__additional--tile::after {
  transform: scale(1);
  opacity: 1;
}

.u-block-hover__additional--tile__inner {
  opacity: 0;
}

.u-block-hover--tile:hover .u-block-hover__additional--tile__inner {
  opacity: 1;
  transition-delay: 0.35s;
}

.u-block-hover--cube {
  overflow: visible;
  background-color: transparent;
  perspective: 50em;
  transform-style: preserve-3d;
}

[class*=u-block-hover__main--cube] {
  transition-delay: 0.05s;
}

[class*=u-block-hover__additional--cube] {
  opacity: 0;
  transition-delay: 0s;
}

.u-block-hover--cube:hover [class*=u-block-hover__main--cube] {
  opacity: 0;
  transition-delay: 0s;
}

.u-block-hover--cube:hover [class*=u-block-hover__additional--cube] {
  opacity: 1;
  transform: translateY(0%) rotateX(0deg);
  transition-delay: 0.05s;
}

.u-block-hover__additional--cube-up {
  transform: translateY(50%) rotateX(-90deg);
}

.u-block-hover--cube:hover .u-block-hover__main--cube-up {
  transform: translateY(-50%) rotateX(90deg);
}

.u-block-hover__additional--cube-down {
  transform: translateY(-50%) rotateX(90deg);
}

.u-block-hover--cube:hover .u-block-hover__main--cube-down {
  transform: translateY(50%) rotateX(-90deg);
}

.u-block-hover__additional--cube-left {
  transform: translateX(-50%) rotateY(-90deg);
}

.u-block-hover--cube:hover .u-block-hover__main--cube-left {
  transform: translateX(50%) rotateY(90deg);
}

.u-block-hover__additional--cube-right {
  transform: translateX(50%) rotateY(90deg);
}

.u-block-hover--cube:hover .u-block-hover__main--cube-right {
  transform: translateX(-50%) rotateY(-90deg);
}

.u-block-hover--border-reveal::before,
.u-block-hover--border-reveal::after,
.u-block-hover__additional--border-reveal::before,
.u-block-hover__additional--border-reveal::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transform-origin: 0 0;
}

.u-block-hover--border-reveal::before,
.u-block-hover--border-reveal::after {
  left: 5px;
  right: 5px;
  height: 4px;
  z-index: 1;
  transform: scaleX(0);
}

.u-block-hover--border-reveal::before {
  top: 5px;
  transition-delay: 0.28s;
}

.u-block-hover--border-reveal:hover::before {
  transition-delay: 0s;
}

.u-block-hover--border-reveal::after {
  bottom: 5px;
  transition-delay: 0s;
}

.u-block-hover--border-reveal:hover::after {
  transition-delay: 0.28s;
}

.u-block-hover__additional--border-reveal {
  background-color: transparent;
  z-index: 3;
}

.u-block-hover__additional--border-reveal__inner {
  opacity: 0;
}

.u-block-hover__additional--border-reveal::before,
.u-block-hover__additional--border-reveal::after {
  top: 5px;
  bottom: 5px;
  width: 4px;
  z-index: -1;
  transform: scaleY(0);
}

.u-block-hover__additional--border-reveal::before {
  left: 5px;
  transition-delay: 0.28s;
}

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before {
  transition-delay: 0s;
}

.u-block-hover__additional--border-reveal::after {
  right: 5px;
  transition-delay: 0s;
}

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after {
  transition-delay: 0.28s;
}

.u-block-hover--border-reveal:hover .u-block-hover__main--border-reveal {
  opacity: 0;
}

.u-block-hover--border-reveal:hover::before,
.u-block-hover--border-reveal:hover::after,
.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before,
.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after {
  transform: scale(1);
}

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal__inner {
  opacity: 1;
  transition-delay: 0.35s;
}

.u-block-hover:hover img[class*=u-block-hover__main--mover-],
.u-block-hover:hover [class*=u-block-hover__additional--mover-] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

img[class*=u-block-hover__main--mover-] {
  max-width: initial;
  width: calc(100% + 60px);
  transition-duration: 0.5s;
  transform-origin: 50% 50%;
}

[class*=u-block-hover__additional--mover-] {
  opacity: 0;
  transition-duration: 0.5s;
}

img.u-block-hover__main--mover-left {
  transform: translate3d(-60px, 0, 0);
}

.u-block-hover__additional--mover-left {
  transform: translate3d(10px, 0, 0);
}

img.u-block-hover__main--mover-right {
  transform: translate3d(-60px, 0, 0);
}

.u-block-hover__additional--mover-right {
  transform: translate3d(-10px, 0, 0);
}

img.u-block-hover__main--mover-up {
  transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1);
}

.u-block-hover__additional--mover-up {
  transform: translate3d(0, 10px, 0);
}

img.u-block-hover__main--mover-down {
  transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1);
}

.u-block-hover__additional--mover-down {
  transform: translate3d(0, -10px, 0);
}

.u-block-hover__additional--focuser-element {
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: 0.3;
  box-shadow: 0 0 0 31px rgba(0, 0, 0, 0.5);
  transform: scale3d(1.4, 1.4, 1.4);
  transition-duration: 0.5s;
}

.u-block-hover__additional--focuser-target {
  position: static;
  opacity: 0;
  transform: scale3d(1.4, 1.4, 1.4);
  transition-duration: 0.5s;
}

.u-block-hover:hover .u-block-hover__additional--focuser-target,
.u-block-hover:hover .u-block-hover__additional--focuser-element {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition-duration: 0.3s;
}

img[class*=u-block-hover__main--magnifier] {
  max-width: initial;
  width: calc(100% + 10px);
  margin: -10px 0;
}

[class*=u-block-hover__additional--magnifier-element] {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 0 0 4000px rgba(255, 255, 255, 0.3);
  z-index: 2;
  opacity: 0;
  transform: scale3d(0.7, 0.7, 0.7);
  transform-origin: 50% 50%;
}

.u-block-hover:hover [class*=u-block-hover__additional--magnifier-element] {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

[class*=u-block-hover__additional--magnifier-description] {
  max-width: 115px;
  z-index: 3;
  opacity: 0;
}

.u-block-hover:hover [class*=u-block-hover__additional--magnifier-description] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.u-block-hover__additional--magnifier-element-bottom-right {
  top: auto;
  left: auto;
  bottom: -180px;
  right: -180px;
}

.u-block-hover__additional--magnifier-description-bottom-right {
  top: auto;
  right: 30px;
  bottom: 30px;
  left: auto;
  transform: translate3d(20px, 20px, 0);
}

.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-right {
  transform: translate3d(-10px, -10px, 0);
}

.u-block-hover__additional--magnifier-element-top-right {
  top: -180px;
  right: -180px;
  bottom: auto;
  left: auto;
}

.u-block-hover__additional--magnifier-description-top-right {
  top: 30px;
  right: 30px;
  bottom: auto;
  left: auto;
  transform: translate3d(20px, -20px, 0);
}

.u-block-hover:hover img.u-block-hover__main--magnifier-top-right {
  transform: translate3d(-10px, 10px, 0);
}

img.u-block-hover__main--magnifier-bottom-left {
  transform: translate3d(-10px, 0, 0);
}

.u-block-hover__additional--magnifier-element-bottom-left {
  top: auto;
  left: -180px;
  bottom: -180px;
  right: auto;
}

.u-block-hover__additional--magnifier-description-bottom-left {
  top: auto;
  right: auto;
  bottom: 30px;
  left: 30px;
  transform: translate3d(-20px, 20px, 0);
}

.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-left {
  transform: translate3d(0, -10px, 0);
}

img.u-block-hover__main--magnifier-top-left {
  transform: translate3d(-10px, 0, 0);
}

.u-block-hover__additional--magnifier-element-top-left {
  top: -180px;
  left: -180px;
  bottom: auto;
  right: auto;
}

.u-block-hover__additional--magnifier-description-top-left {
  top: 30px;
  right: auto;
  bottom: auto;
  left: 30px;
  transform: translate3d(-20px, -20px, 0);
}

.u-block-hover:hover img.u-block-hover__main--magnifier-top-left {
  transform: translate3d(0, 10px, 0);
}

[class*=u-block-hover__additional--pappercuter] {
  transform-origin: 50% 50%;
}

.u-block-hover__additional--pappercuter-inner {
  width: 100%;
  transform: rotate3d(0, 0, 1, 5deg);
}

.u-block-hover__additional--pappercuter-front,
.u-block-hover__additional--pappercuter-back {
  max-width: initial;
  width: 120%;
  top: -60px;
  bottom: -60px;
  left: -10%;
  z-index: 2;
  background-position: center;
  background-size: cover;
  transform: rotate3d(0, 0, 1, -5deg);
}

.u-block-hover__additional--pappercuter-front {
  clip: rect(0px, auto, 246px, 0px);
}

.u-block-hover__additional--pappercuter-back {
  top: -61px;
  clip: rect(246px, auto, auto, 0px);
}

.u-block-hover:hover .u-block-hover__additional--pappercuter-front {
  transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, -45%, 0);
}

.u-block-hover:hover .u-block-hover__additional--pappercuter-back {
  transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, 45%, 0);
}

[class*=u-block-hover__additional--outside] {
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.7, -1.2, 0.8, 1.2);
}

.u-block-hover:hover [class*=u-block-hover__additional--outside] {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.25, 1.8, 0.8, 1);
}

.u-block-hover__additional--outside-down {
  transform: translate3d(0, -100%, 0);
}

.u-block-hover__additional--outside-up {
  transform: translate3d(0, 100%, 0);
}

.u-block-hover__additional--outside-left {
  transform: translate3d(100%, 0, 0);
}

.u-block-hover__additional--outside-right {
  transform: translate3d(-100%, 0, 0);
}

[class*=u-block-hover__additional--lightspeed] {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.75, -1.2, 0.8, 2);
}

.u-block-hover:hover [class*=u-block-hover__additional--lightspeed] {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) skew(0deg, 0deg);
  transition-timing-function: cubic-bezier(0.25, 2, 0.75, 1);
}

.u-block-hover__additional--lightspeed-left {
  transform-origin: 50% 0%;
  transform: translate3d(150%, 0, 0) skew(-35deg, 0deg);
}

.u-block-hover__additional--lightspeed-right {
  transform-origin: 50% 100%;
  transform: translate3d(-150%, 0, 0) skew(35deg, 0deg);
}

.u-block-hover__additional--lightspeed-down {
  transform-origin: 50% 50%;
  transform: translate3d(0, -150%, 0) skew(0deg, -35deg);
}

.u-block-hover__additional--lightspeed-up {
  transform-origin: 100% 50%;
  transform: translate3d(0, 150%, 0) skew(0deg, -35deg);
}

[class*=u-block-hover__additional--rotate] {
  opacity: 0;
  visibility: hidden;
}

.u-block-hover:hover [class*=u-block-hover__additional--rotate] {
  opacity: 1;
  visibility: visible;
  transform: rotate3d(0, 0, 0, 0deg) scale3d(1, 1, 1);
}

.u-block-hover__additional--rotate-in {
  opacity: 1;
  transition-property: transform, opacity, visibility;
  transition-duration: 0.4s;
  transform: rotate3d(0, 0, 1, 720deg) scale3d(0, 0, 0);
}

.u-block-hover__additional--rotate-down-left {
  transform-origin: 0 100%;
  transform: rotate3d(0, 0, 1, -45deg);
}

.u-block-hover__additional--rotate-down-right {
  transform-origin: 100% 100%;
  transform: rotate3d(0, 0, 1, 45deg);
}

.u-block-hover__additional--rotate-up-left {
  transform-origin: 0 100%;
  transform: rotate3d(0, 0, 1, 45deg);
}

.u-block-hover__additional--rotate-up-right {
  transform-origin: 100% 100%;
  transform: rotate3d(0, 0, 1, -45deg);
}

.u-block-hover__additional--jump {
  position: static;
}

.u-block-hover:hover .u-block-hover__additional--jump,
.u-block-hover.u-block-hover__additional--jump:hover {
  transform: translate3d(0, -10px, 0);
}

/*------------------------------------
  Dedicated Properties
------------------------------------*/

.u-block-hover:hover,
.u-block-hover:focus {
  /* Opacity */
  /* Colors */
  /* Background-colors */
}

.u-block-hover:hover .u-block-hover__prop-opacity-1,
.u-block-hover:focus .u-block-hover__prop-opacity-1 {
  opacity: 1;
}

.u-block-hover:hover .u-block-hover__prop-color-white,
.u-block-hover:focus .u-block-hover__prop-color-white {
  color: #fff;
}

.u-block-hover:hover .u-block-hover__prop-bg-primary,
.u-block-hover:focus .u-block-hover__prop-bg-primary {
  background-color: #CAD105;
}

.u-block-hover:hover .u-block-hover__prop-bg-primary-opacity-0_9,
.u-block-hover:focus .u-block-hover__prop-bg-primary-opacity-0_9 {
  background-color: rgba(202, 209, 5, 0.9);
}

/*------------------------------------
  Blockquotes
------------------------------------*/

.u-blockquote-v1 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15);
}

.u-blockquote-v1::before {
  content: "\201C";
  position: absolute;
  width: 60px;
  color: #CAD105;
  font-size: 60px;
  margin: -25px 0 0 -40px;
}

.u-blockquote-v1::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 80px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
}

.u-blockquote-v2::before,
.u-blockquote-v2::after {
  position: relative;
  top: 5px;
  font-size: 22px;
  line-height: 10px;
}

.u-blockquote-v2::before {
  content: "\201C";
  padding-right: 5px;
}

.u-blockquote-v2::after {
  content: "\201D";
  padding-left: 5px;
}

.u-blockquote-v3 {
  position: relative;
}

.u-blockquote-v3::before {
  content: "\201C";
  position: absolute;
  font-size: 60px;
  color: #CAD105;
  margin: -30px 0 0 -40px;
}

.u-blockquote-v4::before,
.u-blockquote-v4::after {
  content: "\201C";
  position: absolute;
  font-size: 50px;
  margin-top: -12px;
}

.u-blockquote-v4::before {
  margin-left: -30px;
}

.u-blockquote-v4::after {
  margin-left: 13px;
}

.u-blockquote-v5::before {
  content: "\201C";
  position: absolute;
  width: 60px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 70px;
  margin: -25px 0 0 -40px;
}

.u-blockquote-v6::before,
.u-blockquote-v6::after {
  content: '"';
  font-family: inherit;
  color: inherit;
}

.u-blockquote-v7 {
  position: relative;
  padding-top: 55px;
}

.u-blockquote-v7::before {
  content: "\F10D";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 35px;
  height: 35px;
  font-size: 12px;
  font-family: "FontAwesome";
  color: #fff;
  line-height: 35px;
  background: #CAD105;
  border-radius: 50%;
  margin-left: -18px;
}

.u-blockquote-v8 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(70, 76, 94, 0.08);
}

.u-blockquote-v8::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -15px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05));
}

/*------------------------------------
  Accordions
------------------------------------*/

.u-accordion__header {
  padding: 0.7142857143rem 1.0714285714rem;
}

.u-accordion__body {
  padding: 1.0714285714rem;
}

.u-accordion__control-icon i:nth-child(1) {
  display: none;
}

.collapsed .u-accordion__control-icon i:nth-child(1) {
  display: inline;
}

.u-accordion__control-icon i:nth-child(2) {
  display: inline;
}

.collapsed .u-accordion__control-icon i:nth-child(2) {
  display: none;
}

[aria-expanded=false] .u-accordion__control-icon i:nth-child(1) {
  display: inline;
}

[aria-expanded=false] .u-accordion__control-icon i:nth-child(2) {
  display: none;
}

[aria-expanded=true] .u-accordion__control-icon i:nth-child(1) {
  display: none;
}

[aria-expanded=true] .u-accordion__control-icon i:nth-child(2) {
  display: inline;
}

.u-accordion [class*=et-icon-],
.u-accordion-line-icon-pro {
  position: relative;
  top: 3px;
}

.u-accordion-color-primary .u-accordion__header [aria-expanded=true] {
  color: #CAD105 !important;
}

.u-accordion-color-white .u-accordion__header [aria-expanded=true] {
  color: #fff !important;
}

.u-accordion-bg-primary .u-accordion__header [aria-expanded=true] {
  background-color: #CAD105 !important;
  border-color: #CAD105 !important;
}

.u-accordion-bg-white .u-accordion__header [aria-expanded=true] {
  background-color: #fff !important;
  border-color: #fff !important;
}

.u-accordion-brd-primary .u-accordion__header [aria-expanded=true] {
  border-color: #CAD105 !important;
}

.u-accordion-brd-white .u-accordion__header [aria-expanded=true] {
  border-color: #fff !important;
}

/*------------------------------------
  Carousels
------------------------------------*/

.u-carousel-v1 .js-prev,
.u-carousel-v1 .js-next {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.u-carousel-v1:hover .js-prev,
.u-carousel-v1:hover .js-next {
  opacity: 1;
}

.u-carousel-v2 .slick-slide {
  padding-top: 4px;
  padding-bottom: 4px;
  opacity: 0.5;
  transform: scale(1);
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
}

.u-carousel-v2 .slick-center {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 1;
  transform: scale(1.1);
}

.u-carousel-v3 .slick-slide {
  opacity: 0.5;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
}

.u-carousel-v3 .slick-center {
  opacity: 1;
}

.u-carousel-v4 .js-pagination {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.u-carousel-v4:hover .js-pagination {
  opacity: 1;
}

.u-carousel-v5 .slick-list {
  height: 100%;
}

.u-carousel-v5 .slick-track {
  display: flex;
  height: 100%;
}

.u-carousel-v5 .slick-track .slick-slide {
  display: flex;
  height: auto;
}

.u-carousel-v6 .slick-list.draggable {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.u-carousel-v11 .slick-slide {
  opacity: 0.5;
}

.u-carousel-v11 .slick-slide.slick-current {
  opacity: 1;
}

/*------------------------------------
  Slick Carousel v12
------------------------------------*/

.u-carousel-v12 .slick-current .g-opacity-1--active {
  opacity: 1 !important;
}

.u-carousel-v12 .slick-current .u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item,
.swiper-wrapper,
.swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.single-slide {
  opacity: 0 !important;
}

.single-slide.set-position {
  opacity: 1 !important;
}

.js-origin {
  perspective: 1200px;
  perspective-origin: 50% 50%;
}

/* backSlide */

.js-back-slide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.js-back-slide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

.swiper-carousel {
  overflow: hidden;
}

@-webkit-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-400px);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-400px) translateX(-200%);
  }

  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-400px) translateX(-200%);
  }
}

@keyframes backSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-400px);
  }

  75% {
    opacity: 0.5;
    transform: translateZ(-400px) translateX(-200%);
  }

  100% {
    opacity: 0.5;
    transform: translateZ(-400px) translateX(-200%);
  }
}

@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-400px) translateX(200%);
  }

  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-400px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}

@keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    transform: translateZ(-400px) translateX(200%);
  }

  75% {
    opacity: 0.5;
    transform: translateZ(-400px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}

/*--------------------------------------------------
  Chart Pie v1
----------------------------------------------------*/

.u-chart-pie-v1 {
  position: relative;
  line-height: 1em;
}

.u-chart-pie-v1::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 10px;
  bottom: 11px;
  left: 10px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}

/*------------------------------------
  Charts
------------------------------------*/

/* Sparkline chart's tooltip */

.jqstooltip {
  width: auto !important;
  height: auto !important;
}

/*--------------------------------------------------
  Counter v1
----------------------------------------------------*/

.u-counter-v3 {
  position: relative;
}

.u-counter-v3::after {
  content: "";
  position: absolute;
  left: -9px;
  right: -9px;
  bottom: -9px;
  top: -9px;
  display: block;
  border-radius: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
}

/*--------------------------------------------------
  Counter v6
----------------------------------------------------*/

.u-counter-v6 {
  position: relative;
  width: 120px;
  height: 120px;
}

.u-counter-v6::after {
  content: "";
  position: absolute;
  top: -11px;
  right: -11px;
  bottom: -11px;
  left: -11px;
  display: block;
  border-radius: inherit;
  border-width: 2px;
  border-style: inherit;
  border-color: inherit;
  clip: rect(auto, 71px, 142px, auto);
}

/*------------------------------------
  Credit cards
------------------------------------*/

.u-card--v1 {
  position: relative;
}

.u-card--v1-front {
  position: relative;
  margin-bottom: 220px;
  z-index: 2;
}

.u-card--v1-back {
  position: absolute;
  bottom: -70%;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 80%;
  padding-left: 0;
}

@media (min-width: 768px) {
  .u-card--v1-front {
    margin-bottom: 30px;
  }

  .u-card--v1-back {
    bottom: auto;
    top: 30px;
    right: -30%;
    height: 100%;
    padding-left: 70%;
  }
}

/*------------------------------------
  Dropdowns v1
------------------------------------*/

.u-dropdown-v1 {
  position: relative;
  line-height: normal;
  font-size: 16px;
  color: #777;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: 11px 40px 11px 14px;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.u-dropdown-v1::after {
  display: none;
}

.u-dropdown-v1-menu {
  padding: 0;
  border-color: #ccc;
  border-radius: 3px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}

.u-dropdown-v1-menu__item {
  line-height: normal;
  font-size: 16px;
  color: #777;
  padding: 9px 20px;
}

.u-dropdown-v1-menu__item:hover {
  color: #777;
}

.u-dropdown-v1__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 100%;
}

.u-dropdown-v1__icon-open,
.u-dropdown-v1__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-dropdown-v1__icon-open {
  opacity: 1;
}

.u-dropdown-v1__icon-close {
  opacity: 0;
}

.u-dropdown-v1[aria-expanded=true] {
  background-color: rgba(204, 204, 204, 0.1);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}

.u-dropdown-v1[aria-expanded=true] [class*=__icon-open] {
  opacity: 0;
}

.u-dropdown-v1[aria-expanded=true] [class*=__icon-close] {
  opacity: 1;
}

.u-dropdown-v1:focus {
  outline: 0 none;
}

/*------------------------------------
  Covers
------------------------------------*/

.u-bg-overlay {
  position: relative;
}

.u-bg-overlay::before,
.u-bg-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.u-bg-overlay--v1::after {
  position: absolute;
  top: 0.3571428571rem;
  right: 0.3571428571rem;
  bottom: 0.3571428571rem;
  left: 0.3571428571rem;
}

.u-bg-overlay__inner {
  z-index: 3;
  position: relative;
}

.u-bg-overlay--reverse::before {
  z-index: 2;
}

.u-bg-overlay--reverse::after {
  z-index: 1;
}

/*------------------------------------
  Material: Waves
------------------------------------*/

.u-waves-effect {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  transition: 0.3s ease-out;
}

.u-waves-effect .u-waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 1.4285714286rem;
  height: 1.4285714286rem;
  margin-top: -0.7142857143rem;
  margin-left: -0.7142857143rem;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.7s ease-out;
  transition-property: transform, opacity;
  transform: scale(0);
  pointer-events: none;
}

.u-waves-effect.u-waves-light .u-waves-ripple {
  background-color: rgba(255, 255, 255, 0.45);
}

.u-waves-effect.u-waves-dark .u-waves-ripple {
  background-color: rgba(0, 0, 0, 0.15);
}

.u-waves-effect input[type=button],
.u-waves-effect input[type=reset],
.u-waves-effect input[type=submit] {
  border: 0;
  font-style: normal;
  font-size: inherit;
  text-transform: inherit;
  background: none;
}

.u-waves-effect img {
  position: relative;
  z-index: -1;
}

.u-waves-notransition {
  transition: none !important;
}

.u-waves-circle {
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.u-waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom;
}

.u-waves-input-wrapper .u-waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}

.u-waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none;
}

.u-waves-block {
  display: block;
}

/* Firefox Bug: link not triggered */

.u-waves-effect .u-waves-ripple {
  z-index: -1;
}

/*------------------------------------
  Material: FAB
------------------------------------*/

.u-fixed-action-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 997;
}

.u-fixed-action-btn ul {
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  bottom: 60px;
  margin: 0;
  visibility: hidden;
  list-style-type: none;
  padding-left: 0;
}

.u-fixed-action-btn ul li {
  margin-bottom: 1.0714285714rem;
}

.u-fixed-action-btn ul a.u-btn-floating {
  opacity: 0;
}

.u-fixed-action-btn.active ul {
  visibility: visible;
}

.u-fixed-action-btn-horizontal {
  padding: 0 0 0 1.0714285714rem;
}

.u-fixed-action-btn-horizontal ul {
  text-align: right;
  right: 4.5714285714rem;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  left: auto;
  width: 500px;
  /*width 100% only goes to width of button container */
}

.u-fixed-action-btn-horizontal ul li {
  display: inline-block;
  margin: 0.7142857143rem 1.0714285714rem 0 0;
}

.u-fixed-action-btn-toolbar {
  padding: 0;
  height: 4rem;
}

.u-fixed-action-btn-toolbar.active > a i {
  opacity: 0;
}

.u-fixed-action-btn-toolbar ul {
  display: flex;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.u-fixed-action-btn-toolbar ul li {
  flex: 1;
  display: inline-block;
  margin: 0;
  height: 100%;
  transition: none;
}

.u-fixed-action-btn-toolbar ul li a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  box-shadow: none;
  color: #fff;
  line-height: 4rem;
  z-index: 1;
}

.u-fixed-action-btn-toolbar ul li a i {
  line-height: inherit;
}

.u-fixed-action-btn .u-fab-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 2.8571428571rem;
  height: 2.8571428571rem;
  border-radius: 50%;
  transform: scale(0);
}

/*------------------------------------
  Chips
------------------------------------*/

.u-chip {
  display: inline-block;
  height: 2.2857142857rem;
  margin: 0.1428571429rem 0;
  padding: 0 0.8571428571rem;
  font-size: 0;
  white-space: nowrap;
  line-height: 2.2857142857rem;
  color: rgba(0, 0, 0, 0.87);
  border-radius: 1.1428571429rem;
  background-color: #eee;
}

.u-chip:focus {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.u-chip--deletable {
  padding-right: 0.2857142857rem;
}

.u-chip--contact {
  padding-left: 0;
}

.u-chip__contact {
  display: inline-block;
  width: 2.2857142857rem;
  height: 2.2857142857rem;
  margin-right: 0.5714285714rem;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 1.1428571429rem;
  text-align: center;
  font-size: 1.2857142857rem;
  line-height: 2.2857142857rem;
}

.u-chip__text {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.9285714286rem;
}

.u-chip__action {
  display: inline-block;
  width: 1.7142857143rem;
  height: 1.7142857143rem;
  margin: 0 0 0 0.2857142857rem;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border: none;
  font-size: 0.9285714286rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.3);
  background: transparent;
  opacity: 0.54;
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.u-outer-spaces-helper {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  overflow: hidden;
}

.u-outer-spaces-helper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #f7f7f7;
  background-position: center;
  background-repeat: repeat;
}

.g-dark-theme .u-outer-spaces-helper::after {
  background-color: #000;
}

[class*=g-bgi-v] .u-outer-spaces-helper::after {
  background-color: transparent;
}

.u-outer-space-v1 .u-outer-spaces-helper,
.u-outer-space-v2 .u-outer-spaces-helper {
  display: block;
}

.u-outer-space-v1 .u-outer-spaces-helper {
  height: 20px;
}

.u-outer-space-v2 .u-outer-spaces-helper {
  height: 40px;
}

/*------------------------------------
  Info Block v1-1
------------------------------------*/

.u-info-v1-1 {
  overflow: hidden;
  position: relative;
}

.u-info-v1-1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
}

/*--------------------------------------------------
  Info Block v1-2
----------------------------------------------------*/

.u-info-v1-2__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.7857142857rem;
}

.u-info-v1-2__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #bbb;
  transition: all 0.4s ease-in-out;
}

.u-info-v1-2:hover .u-info-v1-2__item::after {
  width: 100%;
  background: #CAD105;
}

/*------------------------------------
  Info Block v1-3
------------------------------------*/

.u-info-v1-3__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.9285714286rem;
}

.u-info-v1-3__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.1428571429rem;
  height: 1px;
  margin-left: -1.0714285714rem;
  background: #777;
}

/*------------------------------------
  Info Block v1-4
------------------------------------*/

.u-info-v1-4__item-hidden {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 61px;
  overflow: hidden;
  transform: translate3d(0, 61px, 0);
}

.u-info-v1-4:hover .u-info-v1-4__item-hidden {
  transform: translate3d(0, 0, 0);
}

.u-info-v1-4:hover .u-info-v1-4__item-regular {
  transform: translate3d(0, -61px, 0);
}

/*------------------------------------
  Info Block v1-5
------------------------------------*/

.u-info-v1-5__item {
  position: relative;
  padding-bottom: 19px;
}

.u-info-v1-5__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  display: block;
  width: 28px;
  border-bottom: 1px solid #CAD105;
}

/*------------------------------------
  Info Block v2-1
------------------------------------*/

.u-info-v2-1__item {
  height: 65px;
  transition: 0.3s ease-out;
}

.u-info-v2-1__item:hover {
  height: 80px;
  margin-top: -15px;
}

/*------------------------------------
  Info Block v2-2
------------------------------------*/

.u-info-v2-2__item {
  position: relative;
  border-left: solid 1px;
  border-right: solid 1px;
  border-bottom: solid 1px;
}

.u-info-v2-2__item::after,
.u-info-v2-2__item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  border-top: solid 1px;
  z-index: 1;
}

.u-info-v2-2__item::before {
  left: 0;
}

.u-info-v2-2__item::after {
  right: 0;
}

.u-info-v2-2__item.g-brd-white-dark-v3 {
  border-color: rgba(255, 255, 255, 0.3);
}

.u-info-v2-2__item.g-brd-white-dark-v3::before,
.u-info-v2-2__item.g-brd-white-dark-v3::after {
  border-color: rgba(255, 255, 255, 0.3);
}

.u-info-v2-2__item.g-brd-black-dark-v3 {
  border-color: rgba(0, 0, 0, 0.3);
}

.u-info-v2-2__item.g-brd-black-dark-v3::before,
.u-info-v2-2__item.g-brd-black-dark-v3::after {
  border-color: rgba(0, 0, 0, 0.3);
}

/*------------------------------------
  Info Block v2-3
------------------------------------*/

.u-info-v2-3:hover .u-info-v2-3__title {
  color: #000;
}

/*------------------------------------
  Info Block v3-1
------------------------------------*/

/* Title */

.info-v3-1__title {
  position: relative;
  display: inline-block;
  margin-left: 4.2857142857rem;
  margin-right: 4.2857142857rem;
}

.info-v3-1__title::before,
.info-v3-1__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 3.5714285714rem;
  margin-top: -1px;
  height: 2px;
  background-color: #fff;
}

.info-v3-1__title::before {
  right: 100%;
  margin-right: 10px;
}

.info-v3-1__title::after {
  left: 100%;
  margin-left: 10px;
}

/*------------------------------------
  Info Block v3-2
------------------------------------*/

.info-v3-2 {
  position: relative;
  background-position: center;
}

.info-v3-2::before {
  content: "";
  position: absolute;
  top: 1.4285714286rem;
  right: 1.4285714286rem;
  bottom: 1.4285714286rem;
  left: 1.4285714286rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.info-v3-2:hover {
  background-position: center 0;
}

/*------------------------------------
  Info Block v3-3
------------------------------------*/

.info-v3-3 {
  overflow: hidden;
}

.info-v3-3:hover .info-v3-3__title {
  color: #fff;
}

.info-v3-3:hover .info-v3-3__img,
.info-v3-3:hover .info-v3-3__description {
  transform: translate3d(0, 0, 0);
}

.info-v3-3:hover .info-v3-3__content {
  display: block;
}

.info-v3-3:hover .info-v3-3__category {
  display: none;
}

.info-v3-3:hover::after {
  opacity: 1;
}

.info-v3-3::after {
  opacity: 0;
  transition: opacity 0.5s;
}

/* Image */

.info-v3-3__img {
  transform: translate3d(70%, 0, 0);
  transition: transform 0.5s;
}

/* Content */

.info-v3-3__content {
  display: none;
}

/* Description */

.info-v3-3__description {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate3d(-20%, 0, 0);
  transition: transform 0.5s;
  z-index: 1;
}

/*------------------------------------
  Info Block v3-4
------------------------------------*/

.info-v3-4 {
  position: relative;
}

.info-v3-4::before {
  content: "";
  position: absolute;
  top: 0.7142857143rem;
  right: 0.7142857143rem;
  bottom: 0.7142857143rem;
  left: 0.7142857143rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 1;
}

/*------------------------------------
  Info Block v5-1
------------------------------------*/

/* Title */

.info-v5-1__title {
  position: relative;
  display: inline-block;
}

.info-v5-1__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 3000%;
  margin-left: 15px;
  border-bottom: 1px solid #eee;
}

/*------------------------------------
  Info Block v5-2
------------------------------------*/

/* Product Image */

.info-v5-2__image {
  width: calc(100% + 1px);
}

/*------------------------------------
  Info Block v5-3
------------------------------------*/

.info-v5-3__info-price {
  opacity: 0;
}

.info-v5-3__info-title {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  margin-bottom: 4.6428571429rem;
  transform: translate3d(0, 70px, 0);
}

.info-v5-3:hover .info-v5-3__info {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(202, 209, 5, 0.9);
}

.info-v5-3:hover .info-v5-3__info-price {
  opacity: 1;
}

.info-v5-3:hover .info-v5-3__info-list {
  color: #fff;
}

.info-v5-3:hover .info-v5-3__info-list .fa {
  color: #fff;
}

.info-v5-3:hover .info-v5-3__info-title {
  transform: translate3d(0, 0, 0);
  margin-bottom: 3.2142857143rem;
}

/*------------------------------------
  Info Block v5-4
------------------------------------*/

/* Actions */

.info-v5-4__action .fa {
  opacity: 0.75;
}

.info-v5-4__action:hover .fa {
  opacity: 1;
}

/*------------------------------------
  Info Block v5-5
------------------------------------*/

.info-v5-5__header::after,
.info-v5-5__content::after {
  transition: inherit;
}

.info-v5-5__content::after {
  opacity: 0;
}

.info-v5-5:hover .info-v5-5__header::after,
.info-v5-5:hover .info-v5-5__content::after {
  opacity: 0.8;
}

/*------------------------------------
  Info Block v5-6
------------------------------------*/

.info-v5-6:hover .info-v5-6__rating {
  color: #333;
}

.info-v5-6:hover .info-v5-6__price {
  background-color: #333;
}

.info-v5-6 .g-color-gray-light-v5--hover .g-rating,
.info-v5-6 .g-bg-white--hover,
.info-v5-6 .g-color-primary--hover {
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: 0.3s;
}

.info-v5-6:hover .g-color-gray-light-v5--hover .g-rating {
  color: #f7f7f7;
}

.info-v5-6:hover .g-bg-white--hover {
  background: #fff;
}

.info-v5-6:hover .g-color-primary--hover {
  color: #CAD105;
}

/*--------------------------------------------------
  Info Block v6-1
----------------------------------------------------*/

.u-info-v6-1__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.7857142857rem;
}

.u-info-v6-1__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1px;
  background-image: linear-gradient(to right, #CAD105 0%, transparent 100%);
  background-repeat: repeat-x;
  transition: all 0.4s ease-in-out;
}

.u-info-v6-1:hover .u-info-v6-1__item::after {
  width: 100%;
  background-image: linear-gradient(to right, #CAD105 0%, transparent 100%);
  background-repeat: repeat-x;
}

/*--------------------------------------------------
  Info Block v7-1
----------------------------------------------------*/

.u-info-v7-1__item {
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.u-info-v7-1__item-child-v1 {
  border: 5px solid transparent;
  transition: all 0.2s ease-in-out;
}

.u-info-v7-1__item-child-v2 {
  transition: all 0.2s ease-in-out;
}

.u-info-v7-1:hover {
  border-color: #eee;
}

.u-info-v7-1:hover .u-info-v7-1__item {
  border-color: #ddd;
}

.u-info-v7-1:hover .u-info-v7-1__item-child-v1 {
  border-color: #ddd;
}

.u-info-v7-1:hover .u-info-v7-1__item-child-v2 {
  color: #fff;
  background: #CAD105;
}

/*--------------------------------------------------
  Info Block v8-1
----------------------------------------------------*/

.u-hs-filter {
  padding: 20px;
  margin-bottom: 0;
}

.u-hs-filter a {
  padding: 0.5rem 1.0714285714rem;
  color: rgba(255, 255, 255, 0.8);
  border: solid 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
}

.u-hs-filter a:hover,
.u-hs-filter a:focus {
  text-decoration: none;
}

.u-hs-filter a:hover {
  color: #585f69;
  background-color: white;
}

.u-hs-filter .active a {
  color: #585f69;
  background-color: white;
}

/*--------------------------------------------------
  Info Block v9-1
----------------------------------------------------*/

@media (min-width: 768px) {
  .u-info-v9-1 {
    position: relative;
  }

  .u-info-v9-1::before {
    position: absolute;
    top: 111px;
    left: 17%;
    width: 66%;
    border-top: 1px dotted #ddd;
    content: " ";
  }
}

/*--------------------------------------------------
  Info Block v10-1
----------------------------------------------------*/

.u-info-v10-1 {
  position: relative;
  display: inline-block;
}

.u-info-v10-1::before,
.u-info-v10-1::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 1000px;
  height: 1px;
  background: #f7f7f7;
  content: " ";
  margin-top: 0.5px;
}

.u-info-v10-1::before {
  right: 100%;
  margin-right: 25px;
}

.u-info-v10-1::after {
  left: 100%;
  margin-left: 25px;
}

/*------------------------------------
  Info v11-1
------------------------------------*/

.u-info-v11-1-img {
  border: 0 solid #eee;
  transform: scale(1);
  transition: all 0.3s ease;
}

.u-info-v11-1:hover .u-info-v11-1-img {
  border-width: 5px;
  transform: scale(0.95);
}

/*------------------------------------
  Custom Bootstrap
------------------------------------*/

.container-semiboxed {
  box-sizing: border-box;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .container-semiboxed {
    width: 540px;
  }
}

@media (min-width: 768px) {
  .container-semiboxed {
    width: 720px;
  }
}

@media (min-width: 992px) {
  .container-semiboxed {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-semiboxed {
    width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-semiboxed {
    width: 1340px;
  }
}

.text-muted {
  color: #999 !important;
}

.list-group-item {
  border-color: #eee;
}

.list-group-item-action:hover {
  background-color: #f7f7f7;
}

.list-group-item.active {
  background-color: #CAD105;
  border-color: #CAD105;
}

.list-group-border-0 .list-group-item:first-child,
.list-group-border-0 .list-group-item:last-child {
  border-radius: 0;
}

/* Paginations */

.page-link {
  color: #CAD105;
}

.page-link:focus,
.page-link:hover {
  color: #CAD105;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
  border-color: #CAD105;
  background-color: #CAD105;
}

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #CAD105;
}

.nav-tabs {
  border-bottom: 1px solid #eee;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #464c5e;
  border-color: #eee #eee #fff;
}

.progress {
  font-size: 1rem;
  line-height: inherit;
  height: inherit;
  background-color: #eee;
}

.progress-bar {
  height: auto;
  min-height: 12px;
  background-color: #CAD105;
}

.btn-primary {
  background-color: #CAD105;
  border-color: #CAD105;
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 2px rgba(202, 209, 5, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #CAD105;
  border-color: #CAD105;
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary {
  color: #CAD105;
  border-color: #CAD105;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 2px rgba(202, 209, 5, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #CAD105;
}

.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.card,
.card-header {
  border-color: #eee;
}

.card-header {
  padding: 0.7142857143rem 1.0714285714rem;
}

.card-block {
  padding: 1.0714285714rem;
}

.form-control {
  border-color: #ccc;
  height: auto;
}

.form-control-md {
  padding: 0.8rem 1rem 0.6rem;
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(3.75rem + 2px);
}

.form-control,
.form-control:focus {
  color: #464c5e;
}

.form-control:focus,
.custom-select:focus {
  border-color: #CAD105;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.form-control::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

.form-control:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.form-control::-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

.form-control::placeholder {
  color: inherit;
  opacity: 0.5;
}

.has-success .col-form-label,
.has-success .custom-control,
.has-success .form-check-label,
.has-success .form-control-feedback,
.has-success .form-control-label {
  color: #5cb85c;
}

.has-success .form-control {
  border-color: #5cb85c;
}

.has-warning .col-form-label,
.has-warning .custom-control,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
  color: #f0ad4e;
}

.has-warning .form-control {
  border-color: #f0ad4e;
}

.has-danger .col-form-label,
.has-danger .custom-control,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
  color: #d9534f;
}

.has-danger .form-control {
  border-color: #d9534f;
}

[class*=input-group-] {
  min-width: 38px;
  background-color: transparent;
  border-color: #ccc;
  transition: border-color 0.15s ease-in-out 0s;
}

[class*=input-group-] > * {
  white-space: normal;
}

[class*=input-group-] i {
  margin: 0 auto;
}

.input-group .form-control:active,
.input-group .form-control:focus,
.input-group .form-control:hover {
  z-index: auto;
}

.btn-group {
  display: block;
}

.input-group-addon + .input-group-addon {
  border-left: solid 1px #ccc;
}

.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: #f7f7f7;
}

.table-striped tbody td {
  border-top: none;
}

@media (min-width: 768px) {
  .btn-group {
    display: inline-flex;
  }

  .justified-content {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .justified-content > * {
    display: table-cell;
    width: 1%;
    float: none;
  }
}

.dropdown-menu {
  min-width: 15rem;
  padding: 0;
}

.dropdown-toggle::before {
  display: none;
}

.dropdown-toggle::after {
  content: "\E900";
  position: relative;
  top: 0.2142857143rem;
  font-family: "hs-icons" !important;
  font-size: 10px;
  display: inline;
  border: none;
  margin-left: 0.5rem;
}

.dropdown-item {
  padding: 0.2142857143rem 1.0714285714rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.dropdown-item.active,
.dropdown-item:active {
  background: rgba(0, 0, 0, 0.05);
  color: inherit !important;
}

.dropdown-item.active > a,
.dropdown-item:active > a {
  color: inherit !important;
}

.dropdown-item.active > a::before,
.dropdown-item.active > a::after,
.dropdown-item:active > a::before,
.dropdown-item:active > a::after {
  background-color: #fff;
}

.u-header__section--dark .dropdown-item.active > a,
.u-header__section--dark .dropdown-item:active > a {
  color: #fff !important;
}

.chosen-container-single .chosen-single div b {
  position: relative;
}

.chosen-container-single .chosen-search input[type=text] {
  padding: 0.8rem 1rem 0.6rem;
  border-color: #ccc;
}

.chosen-container-single.u-dropdown-sm .chosen-search input[type=text] {
  padding: 0.25rem 0.5rem 0.1rem;
}

.chosen-container-single.u-dropdown-lg .chosen-search input[type=text] {
  padding: 0.75rem 1.5rem 0.55rem;
}

.chosen-container-single.u-select-above .chosen-drop {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
}

[data-animation].cbp {
  visibility: visible;
}

.cbp-slider-next::after,
.cbp-slider-prev::after {
  display: none;
}

.cbp-filter-item {
  cursor: pointer;
}

.cbp-item-off {
  opacity: 0;
}

/*------------------------------------
  Border Colors
------------------------------------*/

/* Primary Colors */

.g-brd-primary--active.cbp-filter-item-active {
  border-color: #CAD105 !important;
}

.g-brd-primary-opacity-0_3--active.cbp-filter-item-active {
  border-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-dark-dark-v1--active.cbp-filter-item-active {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2--active.cbp-filter-item-active {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3--active.cbp-filter-item-active {
  border-color: var(--primary-color) !important;
}

/* Black Colors */

.g-brd-black--active.cbp-filter-item-active {
  border-color: #000 !important;
}

/* White Colors */

.g-brd-white--active.cbp-filter-item-active {
  border-color: #fff !important;
}

.g-brd-white-opacity-0_1--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_2--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_3--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_4--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_5--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_6--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Gray Colors */

.g-brd-gray-dark-v1--active.cbp-filter-item-active {
  border-color: #111 !important;
}

.g-brd-gray-dark-v2--active.cbp-filter-item-active {
  border-color: #333 !important;
}

.g-brd-gray-dark-v3--active.cbp-filter-item-active {
  border-color: #555 !important;
}

.g-brd-gray-dark-v4--active.cbp-filter-item-active {
  border-color: #777 !important;
}

.g-brd-gray-dark-v5--active.cbp-filter-item-active {
  border-color: #999 !important;
}

.g-brd-gray-light-v1--active.cbp-filter-item-active {
  border-color: #bbb !important;
}

.g-brd-gray-light-v2--active.cbp-filter-item-active {
  border-color: #ccc !important;
}

.g-brd-gray-light-v3--active.cbp-filter-item-active {
  border-color: #ddd !important;
}

.g-brd-gray-light-v4--active.cbp-filter-item-active {
  border-color: #eee !important;
}

.g-brd-gray-light-v5--active.cbp-filter-item-active {
  border-color: #f7f7f7 !important;
}

/* Transparent */

.g-brd-transparent--active.cbp-filter-item-active {
  border-color: transparent !important;
}

/*------------------------------------
  Background Colors
------------------------------------*/

/* Primary Colors */

.g-bg-primary--active.cbp-filter-item-active {
  background-color: #CAD105 !important;
}

/*------------------------------------
  Colors
------------------------------------*/

/* Primary Colors */

.g-color-primary--active.cbp-filter-item-active {
  color: #CAD105 !important;
}

/* Black Colors */

.g-color-black--active.cbp-filter-item-active {
  color: #000 !important;
}

/* White Colors */

.g-color-white--active.cbp-filter-item-active {
  color: #fff !important;
}

/* Gray Colors */

.g-color-gray-light-v1--active.cbp-filter-item-active {
  color: #bbb !important;
}

.g-color-gray-light-v2--active.cbp-filter-item-active {
  color: #ccc !important;
}

.g-color-gray-light-v3--active.cbp-filter-item-active {
  color: #ddd !important;
}

.g-color-gray-light-v4--active.cbp-filter-item-active {
  color: #eee !important;
}

.g-color-gray-light-v5--active.cbp-filter-item-active {
  color: #f7f7f7 !important;
}

.g-color-gray-dark-v1--active.cbp-filter-item-active {
  color: #111 !important;
}

.g-color-gray-dark-v2--active.cbp-filter-item-active {
  color: #333 !important;
}

.g-color-gray-dark-v3--active.cbp-filter-item-active {
  color: #555 !important;
}

.g-color-gray-dark-v4--active.cbp-filter-item-active {
  color: #777 !important;
}

.g-color-gray-dark-v5--active.cbp-filter-item-active {
  color: #999 !important;
}

/*--------------------------------------------------
  Fancybox
----------------------------------------------------*/

/* Blur bg container */

/*--------------------------------------------------
     Fancybox
     ----------------------------------------------------*/

.u-fancybox-theme .fancybox-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.u-fancybox-theme .fancybox-slide--iframe .fancybox-content {
  position: static;
}

.u-fancybox-theme.fancybox-show-thumbs .fancybox-content {
  right: 220px;
}

.u-fancybox-theme .fancybox-button,
.u-fancybox-theme .fancybox-arrow {
  font-size: 1.42857rem;
  line-height: 2.92857rem;
  width: 3.14286rem;
  height: 3.14286rem;
  text-align: center;
  background-color: transparent;
  border-width: 0.07143rem;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  outline: none;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.u-fancybox-theme .fancybox-button::before,
.u-fancybox-theme .fancybox-arrow::before {
  font-family: FontAwesome;
  position: static;
  opacity: 1;
  background-color: transparent;
  border: none;
  box-shadow: none;
  transform: none;
  width: auto;
  height: auto;
}

.u-fancybox-theme .fancybox-button::after,
.u-fancybox-theme .fancybox-arrow::after {
  display: none;
}

.u-fancybox-theme .fancybox-button:hover,
.u-fancybox-theme .fancybox-button:focus,
.u-fancybox-theme .fancybox-arrow:hover,
.u-fancybox-theme .fancybox-arrow:focus {
  opacity: 1;
}

.u-fancybox-theme .fancybox-button {
  display: inline-block;
}

.u-fancybox-theme .fancybox-button--close::before {
  content: "\F00D";
}

.u-fancybox-theme .fancybox-button--play::before {
  content: "\F04B";
}

.u-fancybox-theme .fancybox-button--fullscreen::before {
  content: "\F0B2";
}

.u-fancybox-theme .fancybox-button--thumbs::before {
  content: "\F087";
}

.u-fancybox-theme .fancybox-arrow--left,
.u-fancybox-theme .fancybox-arrow--right {
  margin-top: -1.57143rem;
  position: absolute;
  top: 50%;
  z-index: 100000;
  display: none;
}

.u-fancybox-theme.fancybox-show-nav .fancybox-arrow--left,
.u-fancybox-theme.fancybox-show-nav .fancybox-arrow--right {
  display: block;
}

.u-fancybox-theme .fancybox-arrow--left::before,
.u-fancybox-theme .fancybox-arrow--right::before {
  content: "\E902";
}

.u-fancybox-theme .fancybox-arrow--left {
  left: 1.42857rem;
}

.u-fancybox-theme .fancybox-arrow--right {
  right: 1.42857rem;
}

.u-fancybox-theme .fancybox-toolbar {
  top: 1.42857rem;
  right: 1.42857rem;
  margin-left: -0.35714rem;
  margin-right: -0.35714rem;
}

.u-fancybox-theme .fancybox-toolbar .fancybox-button {
  margin-left: 0.35714rem;
  margin-right: 0.35714rem;
}

.u-fancybox-theme .fancybox-thumbs {
  background-color: #000;
}

.u-fancybox-theme .fancybox-thumbs > ul > li {
  border-color: #000;
}

.u-fancybox-theme .fancybox-thumbs > ul > li::before {
  border-color: #72c02c;
}

.fancybox-controls--canzoomIn .fancybox-placeholder,
.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: inherit;
}

.fancybox-slide.has-animation {
  display: block;
}

.fancybox-is-sliding .fancybox-slide.has-animation,
.fancybox-slide--current.has-animation,
.fancybox-slide--next.has-animation,
.fancybox-slide--previous.has-animation {
  display: none;
}

.fancybox-is-sliding .fancybox-slide.has-animation.animated,
.fancybox-slide--current.has-animation.animated,
.fancybox-slide--next.has-animation.animated,
.fancybox-slide--previous.has-animation.animated {
  display: block;
}

/*--------------------------------------------------
  Hamburgers
----------------------------------------------------*/

.hamburger {
  padding: 10px;
}

.hamburger-box {
  width: 37px;
  height: 25px;
}

.hamburger-inner {
  margin-top: 1px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
  width: 100%;
  height: 1px;
  border-radius: 0;
}

.u-header__section--light .hamburger-inner,
.u-header__section--light .hamburger-inner::after,
.u-header__section--light .hamburger-inner::before {
  background: #464c5e;
}

.u-header__section--dark .hamburger-inner,
.u-header__section--dark .hamburger-inner::after,
.u-header__section--dark .hamburger-inner::before {
  background: #fff;
}

.hs-has-mega-menu:not(.hs-mega-menu-opened) *,
.hs-has-sub-menu:not(.hs-sub-menu-opened) * {
  transition: none !important;
}

.hs-has-mega-menu:not(.hs-mega-menu-opened) *::before,
.hs-has-mega-menu:not(.hs-mega-menu-opened) *::after,
.hs-has-sub-menu:not(.hs-sub-menu-opened) *::before,
.hs-has-sub-menu:not(.hs-sub-menu-opened) *::after {
  transition: none !important;
}

.jFiler-jProgressBar {
  height: auto;
  margin-top: 0;
}

.jFiler-item-thumb-image img {
  max-width: 100%;
}

/*------------------------------------
  jQuery UI
------------------------------------*/

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
  z-index: 991;
}

.ui-autocomplete .left {
  float: left;
}

.ui-autocomplete .right {
  float: right;
}

.ui-autocomplete .ui-menu-item {
  padding: 0;
}

.ui-autocomplete .ui-menu-item-wrapper {
  display: block;
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  padding: 7px 15px;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper:hover {
  color: #fff;
  background-color: #CAD105;
  text-decoration: none;
}

.ui-autocomplete .ui-menu-item:hover {
  color: #fff;
  background-color: #CAD105;
}

.ui-autocomplete .ui-menu-item:hover .ui-menu-item-wrapper {
  background-color: transparent;
  border-color: transparent;
}

.ui-autocomplete-category {
  padding: 5px 15px;
  margin: 0;
  font-weight: bold;
}

.jvectormap-container {
  width: 100%;
  height: 100%;
}

/*------------------------------------
  Pin Map
------------------------------------*/

.point {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.point::before,
.point::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}

.point::before {
  top: 5px;
  left: 5px;
  width: 11px;
  height: 11px;
  background: #CAD105;
}

.point::after {
  top: 8px;
  left: 8px;
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
}

.mwp-wrap {
  box-shadow: 0 1px 9px -1px;
  left: -82px;
  bottom: 35px !important;
}

.mwp-wrap::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border-width: 14px 14px 0 14px;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}

.embed-responsive .plyr--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.plyr--full-ui input[type=range] {
  color: #CAD105;
}

pre[class*=language-] {
  position: relative;
  margin: 0;
}

pre[class*=language-] .toolbar {
  position: absolute;
  top: -1px;
  right: -1px;
}

pre[class*=language-] .toolbar-item a {
  display: block;
  z-index: 10;
  padding: 5px 8px;
  font-size: 12px;
  color: #111;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0 0 0 4px;
}

.select2-container .select2-selection--single {
  height: 2.5rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding: 0.5rem 0.75rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  vertical-align: middle;
  border: none;
  margin-top: 0;
  margin-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\F0DC";
}

.g-rounded-0 + .select2-container--default .select2-selection--single {
  border-radius: 0;
}

.select2-results__option {
  position: relative;
}

.select2-results__option img:first-child {
  margin-right: 10px;
}

.select2-results__option img:last-child {
  margin-left: 10px;
}

.select2-results__option:hover .u-option-icons--v1 {
  opacity: 1;
}

.u-select-v1 {
  position: relative;
}

.select2-container--default .u-select-v1 {
  height: auto;
  border-radius: 0;
}

.select2-container--default .u-select-v1 .select2-selection__rendered {
  padding: 0;
}

.select2-container--default .u-select-v1 .select2-selection__arrow {
  line-height: 22px;
}

.select2-container--default .u-select-v1:focus {
  outline: 0 none;
}

.slick-transform-off .slick-track {
  transform: none !important;
}

.slick-slide:focus {
  outline: 0 none;
}

[data-lazy] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
}

.js-carousel {
  background: url(/unify/preloaders/preloader-black.svg) no-repeat 50% 50%;
}

.js-carousel .js-next,
.js-carousel .js-prev {
  opacity: 0;
}

.js-carousel.slick-initialized {
  background: none;
}

.js-carousel.slick-initialized .js-slide,
.js-carousel.slick-initialized .js-thumb {
  visibility: visible;
  height: auto;
  overflow: visible;
}

.js-carousel.slick-initialized .js-next,
.js-carousel.slick-initialized .js-prev {
  opacity: 1;
}

.js-slide,
.js-thumb {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.js-slide:first-child,
.js-thumb:first-child {
  height: auto;
}

.slick-vertical .slick-slide {
  border: none;
}

/*------------------------------------
  Border Colors
------------------------------------*/

/* Primary Colors */

.slick-active .g-brd-primary--before--active::before {
  border-color: #CAD105 !important;
}

.slick-active .g-brd-primary--active {
  border-color: #CAD105 !important;
}

.js-pagination .g-brd-primary--before--hover:hover::before {
  border-color: #CAD105 !important;
}

/*------------------------------------
  Border Width
------------------------------------*/

.slick-active .g-brd-3--before--active::before {
  border-width: 3px !important;
}

/*------------------------------------
  Box shadows
------------------------------------*/

.g-parent.slick-current .u-shadow-v24--active {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06);
}

/*------------------------------------
  Dot line v1
------------------------------------*/

.slick-active .u-dot-line-v1__inner::before,
.slick-active .u-dot-line-v1-2__inner::before {
  width: 100%;
  height: 100%;
}

/*------------------------------------
  Dot line v2
------------------------------------*/

.slick-active .u-dot-line-v2__inner::before,
.slick-active .u-dot-line-v2-2__inner::before {
  width: 100%;
  height: 100%;
}

.u-has-sidebar-navigation .custombox-content,
.u-has-sidebar-navigation .custombox-overlay {
  left: 0;
  right: 0;
}

/*------------------------------------
  JS
------------------------------------*/

.js-carousel_single-item {
  max-width: 100%;
  position: relative;
}

.js-next,
.js-prev,
.js-thumb {
  cursor: pointer;
}

.js-next,
.js-prev {
  z-index: 10;
}

.js-thumb img {
  display: inline-block;
}

.js-carousel_single-item-thumbs5__thumbs .js-thumb {
  opacity: 0.3;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.js-carousel_single-item-thumbs5__thumbs .slick-center {
  opacity: 1;
}

.js-carousel_single-item-thumbs5--v2__thumbs .js-thumb {
  opacity: 0.4;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.js-carousel_single-item-thumbs5--v2__thumbs .slick-center {
  opacity: 1;
}

.js-carousel_single-item-thumbs5--v3__thumbs .js-thumb {
  opacity: 0.4;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.js-carousel_single-item-thumbs5--v3__thumbs .slick-center {
  opacity: 1;
}

.u-pagi-control--v2 {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: #ddd;
  opacity: 0.3;
  cursor: pointer;
}

.slick-active .u-pagi-control-red {
  background-color: #f00;
}

.slick-active .u-pagi-control-grey {
  opacity: 1;
}

.u-carousel--v3 .js-prev,
.u-carousel--v3 .js-next {
  top: 50%;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

.u-carousel--v3 .g-height-40.js-prev,
.u-carousel--v3 .g-height-40.js-next {
  margin-top: -20px;
  left: 50%;
}

.u-carousel--v3 .g-height-40.js-prev {
  margin-left: -99px;
}

.u-carousel--v3 .g-height-40.js-next {
  margin-left: 65px;
}

.u-carousel--v3:hover .js-prev,
.u-carousel--v3:hover .js-next {
  opacity: 1;
}

.u-carousel--v4 {
  margin-left: -15px;
  margin-right: -15px;
}

.u-carousel--v4 .js-prev,
.u-carousel--v4 .js-next {
  top: 50%;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
}

.u-carousel--v4 .g-height-40.js-prev,
.u-carousel--v4 .g-height-40.js-next {
  margin-top: -20px;
  left: 50%;
}

.u-carousel--v4 .g-height-40.js-prev {
  margin-left: -160px;
}

.u-carousel--v4 .g-height-40.js-next {
  margin-left: 125px;
}

.u-carousel--v4:hover .js-prev,
.u-carousel--v4:hover .js-next {
  opacity: 1;
}

/*--------------------------------------------------
  Filter v1
----------------------------------------------------*/

.u-filter-v1 > li:not(:last-child)::after {
  content: "|";
  font-size: 0.7142857143rem;
  margin: 0 7px 0 14px;
  position: relative;
  top: -2px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  color: #ddd;
}

.u-filter-v1 > li:hover,
.u-filter-v1 [class*=active] {
  color: #CAD105;
}

/*--------------------------------------------------
  Carousel v10
----------------------------------------------------*/

.u-carousel-v10 .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: auto;
  visibility: hidden;
  margin: 0;
  padding: 0;
}

.u-carousel-v10 .slick-dots li {
  display: block;
  margin-bottom: 5px;
}

.u-carousel-v10 .slick-dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: transparent;
  background: #ccc;
  border: none;
  outline: none;
}

.u-carousel-v10 .slick-dots .slick-active button {
  background: #CAD105;
}

.u-carousel-v10-nav {
  margin-top: -135px;
}

.u-carousel-v10-nav .js-slide {
  position: relative;
  cursor: pointer;
  height: 100%;
}

.u-carousel-v10-nav .js-slide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out;
}

.u-carousel-v10-nav .js-slide.slick-current::after {
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .u-carousel-v10 .slick-dots {
    visibility: visible;
  }

  .u-carousel-v10-nav {
    display: none;
  }
}

/*------------------------------------
  Internet Explorer (IE)
------------------------------------*/

/* Text Gradients */

.IE .g-color-cyan-gradient-opacity-v1,
.IE .g-color-blue-gradient-opacity-v1 {
  background: transparent;
  -webkit-text-fill-color: initial;
}

.IE .g-color-cyan-gradient-opacity-v1 {
  color: #00bed6;
}

.IE .g-color-blue-gradient-opacity-v1 {
  color: #8654da;
}

.IE .form-control:-ms-input-placeholder {
  opacity: 1;
}

/*------------------------------------
  Demo of Icons
------------------------------------*/

.u-icons-demo__item {
  border: solid 1px #eee;
  margin: 0 -1px -1px 0;
  padding: 20px 15px;
}

.u-icons-demo-item__value,
.u-icons-demo-item__value:focus {
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
}

/* Add here all your css styles (customizations) */

/*------------------------------------
  Globals
------------------------------------*/

/* Text */

.g-word-break {
  word-wrap: break-word;
}

/* Puller */

.g-pull-50x-up {
  transform: translateY(-51%);
}

.g-pull-50x-bottom {
  transform: translateY(51%);
}

.g-pull-50x-left {
  transform: translateX(-51%);
}

.g-pull-50x-right {
  transform: translateX(51%);
}

/* Link overlay */

/*------------------------------------
  Background Attachment
------------------------------------*/

.g-bg-attachment-fixed {
  background-attachment: fixed;
}

/*------------------------------------
  Background Gradient Colors
------------------------------------*/

/* Simple Linear Gradients
------------------------------------*/

/* Gray Light v1 */

.g-bg-gray-light-gradient-v1--after::after {
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0.5), #f7f7f7);
}

/* White v1 */

.g-bg-white-gradient-v1--after::after {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
}

/* Linear Gradients
------------------------------------*/

/* Gray Gradient */

.g-bg-gray-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(180deg, #fff, #dbdbdb);
}

/* Blue Pink Gradient */

.g-bg-bluepink-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(50deg, #2b7cb6, #f62d51);
}

/* Blue Gradient */

.g-bg-blue-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(0deg, #73bec7, #4e66b0);
}

.g-bg-blue-lineargradient-v2 {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #429edc, #00629e);
}

.g-bg-blue-lineargradient-v3 {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #3266a2, #98cfbf);
}

.g-bg-blue-lineargradient-v4 {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #5b85df, #3ec2e3);
}

.g-bg-blue-lineargradient-v5 {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #0050c2, #5180fa);
}

/* Orange Gradient */

.g-bg-orange-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #be1715, #ed6d0f);
}

.g-bg-orange-lineargradient-v2 {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #f5cd21, #c22821);
}

/* Yellow Gradient */

.g-bg-yellow-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #f59b00, #f5d400);
}

/* Dark Purple Gradient */

.g-bg-darkpurple-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #0b011d, #330c3c);
}

/* Blue Gray Gradient */

.g-bg-bluegray-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #1d253c, #3e4757);
}

/* Pink Gradient */

.g-bg-pink-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #b6003b, #ed1261);
}

/* Pink-v2 Gradient */

.g-bg-pink-lineargradient-v2 {
  background-image: linear-gradient(to right top, #fc7279 10%, #ff7b9c 65%, #ffc019 125%);
  background-repeat: no-repeat;
}

/* Red Gradient */

.g-bg-red-lineargradient {
  background-repeat: repeat-x;
  background-image: linear-gradient(225deg, #d70417, #9f041b);
}

/* Black Gradient */

.g-bg-black-gradient-opacity-v1,
.g-bg-black-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-repeat: repeat-x;
}

/* Green Gradient */

.g-bg-green-gradient-opacity-v1,
.g-bg-green-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to bottom, rgba(51, 152, 220, 0.5) 0%, rgba(114, 192, 44, 0.8) 100%);
  background-repeat: repeat-x;
}

/* Purple Gradient */

.g-bg-purple-gradient-opacity-v1,
.g-bg-purple-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to bottom, rgba(114, 192, 44, 0.5) 0%, rgba(154, 105, 203, 0.8) 100%);
  background-repeat: repeat-x;
}

/* Pink Light Gradient */

.g-bg-pink-gradient-opacity-v1,
.g-bg-pink-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to bottom, rgba(114, 192, 44, 0.5) 0%, rgba(232, 28, 98, 0.8) 100%);
  background-repeat: repeat-x;
}

/* Cyan Gradient */

.g-bg-cyan-gradient-opacity-v1,
.g-bg-cyan-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 153, 0.5) 0%, rgba(0, 190, 214, 0.6) 100%);
  background-repeat: repeat-x;
}

/* Purple Gradient */

.g-bg-purple-gradient-opacity-v1,
.g-bg-purple-gradient-opacity-v1--after::after {
  background-repeat: repeat-x;
  background-image: linear-gradient(150deg, #b7ebf6, rgba(228, 97, 210, 0.7));
}

/* Primary Gradient */

.g-bg-primary-gradient-opacity-v1,
.g-bg-primary-gradient-opacity-v1--after::after {
  background-repeat: repeat-x;
  background-image: linear-gradient(150deg, #72c02c, rgba(51, 152, 220, 0.7));
}

/* Gray Gradient */

.g-bg-gray-gradient-opacity-v1,
.g-bg-gray-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to top, #f7f7f7 0%, white 100%);
  background-repeat: repeat-x;
}

/* White Gradient */

.g-bg-white-gradient-opacity-v1,
.g-bg-white-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
}

/* White Gradient */

.g-bg-white-gradient-opacity-v2,
.g-bg-white-gradient-opacity-v2--after::after {
  background-image: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background-repeat: repeat-x;
}

/* White Gradient */

.g-bg-white-gradient-opacity-v3,
.g-bg-white-gradient-opacity-v3--after::after {
  background-image: linear-gradient(to left, white 30%, rgba(255, 255, 255, 0.3) 100%);
  background-repeat: repeat-x;
}

/* White Gradient */

.g-bg-white-gradient-opacity-v4,
.g-bg-white-gradient-opacity-v4--after::after {
  background-image: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0.3) 100%);
  background-repeat: repeat-x;
}

/* White Gradient */

.g-bg-white-gradient-opacity-v5,
.g-bg-white-gradient-opacity-v5--after::after {
  background-image: linear-gradient(to right, white 47%, rgba(255, 255, 255, 0) 75%);
  background-repeat: repeat-x;
}

/* Bluegray Gradient */

.g-bg-bluegray-gradient-opacity-v1,
.g-bg-bluegray-gradient-opacity-v1--after::after {
  background-image: linear-gradient(to top, rgba(88, 95, 105, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
}

/* Bluegray Gradient */

.g-bg-bluegray-gradient-opacity-v2,
.g-bg-bluegray-gradient-opacity-v2--after::after {
  background-image: linear-gradient(to top, rgba(88, 95, 105, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
}

/* Bluegray Gradient */

.g-bg-bluegray-gradient-opacity-v3,
.g-bg-bluegray-gradient-opacity-v3--after::after {
  background-repeat: repeat-x;
  background-image: linear-gradient(150deg, rgba(107, 125, 224, 0.85), #2a2734);
}

/* Secondary Gradient v1 */

.g-bg-secondary-gradient-v1,
.g-bg-secondary-gradient-v1--after::after {
  background-image: linear-gradient(to top, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
  background-repeat: repeat-x;
}

/* Secondary Gradient v2 */

.g-bg-secondary-gradient-v2,
.g-bg-secondary-gradient-v2--after::after {
  background-image: linear-gradient(to top, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  background-repeat: repeat-x;
}

/* Radial Gradients (Ellipse)
------------------------------------*/

/* Lightblue Gradient */

.g-bg-lightblue-radialgradient-ellipse {
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #fff 22%, #d6e2ee);
  background-repeat: no-repeat;
}

/* Gray Gradient */

.g-bg-gray-radialgradient-ellipse {
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #dbdbdb 22%, #bbb);
  background-repeat: no-repeat;
}

/* Gray Gradient */

.g-bg-graylight-radialgradient-ellipse {
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #fff 25%, #eee);
  background-repeat: no-repeat;
}

/*  Radial Gradients (Circle)
------------------------------------*/

/* Lightblue Gradient */

.g-bg-lightblue-radialgradient-circle {
  background-image: radial-gradient(circle farthest-corner at 75% 95%, #fff, #d6e2ee);
  background-repeat: no-repeat;
}

/* Blue Gradient */

.g-bg-blue-radialgradient-circle {
  background-image: radial-gradient(circle farthest-side at 50% 50%, #2294d7, #275296);
  background-repeat: no-repeat;
}

/* Dark Gray Gradient */

.g-bg-darkgray-radialgradient-circle {
  background-image: radial-gradient(circle farthest-side at 110% 0, #596070, #31353e);
  background-repeat: no-repeat;
}

.g-bg-blue-radialgradient-circle-endless {
  background-image: repeating-radial-gradient(circle at 50% 50%, #b9ecfe, #b9ecfe 10px, #82ddff 10px, #82ddff 20px);
}

.g-bg-gray-verticalstripes-endless {
  background: repeating-linear-gradient(to bottom, #fff, #fff 5px, #eee 5px, #eee 10px);
}

/*------------------------------------
  Background Colors
------------------------------------*/

/* Basic Colors
------------------------------------*/

/* Main Colors */

.g-bg-main {
  background-color: #fff !important;
}

/* Main Secondary */

.g-bg-secondary {
  background-color: #fafafa !important;
}

/* Primary Colors */

.g-bg-primary {
  background-color: #CAD105 !important;
}

.g-bg-primary--hover:hover {
  background-color: #CAD105 !important;
}

.u-block-hover:hover .g-bg-primary--hover {
  background-color: #CAD105;
}

.g-parent:hover .g-bg-primary--parent-hover {
  background-color: #CAD105 !important;
}

.g-bg-primary--active.active,
.active .g-bg-primary--active {
  background-color: #CAD105 !important;
}

.g-parent.active .g-bg-primary--parent-active {
  background-color: #CAD105 !important;
}

.g-bg-primary--before::before,
.g-bg-primary--after::after {
  background-color: #CAD105 !important;
}

.g-bg-primary-dark-v1 {
  background-color: var(--primary-color) !important;
}

.g-bg-primary-dark-v2 {
  background-color: var(--primary-color) !important;
}

.g-bg-primary-dark-v3 {
  background-color: var(--primary-color) !important;
}

.g-bg-primary-opacity-0_1 {
  background-color: rgba(202, 209, 5, 0.1) !important;
}

.g-bg-primary-opacity-0_2 {
  background-color: rgba(202, 209, 5, 0.2) !important;
}

.g-bg-primary-opacity-0_2--hover:hover {
  background-color: rgba(202, 209, 5, 0.2) !important;
}

.g-bg-primary-opacity-0_2--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.2) !important;
}

.active .g-bg-primary-opacity-0_2--active {
  background-color: rgba(202, 209, 5, 0.2) !important;
}

.g-bg-primary-opacity-0_2--before::before,
.g-bg-primary-opacity-0_2--after::after {
  background-color: rgba(202, 209, 5, 0.2) !important;
}

.g-bg-primary-opacity-0_3 {
  background-color: rgba(202, 209, 5, 0.3) !important;
}

.g-bg-primary-opacity-0_3--hover:hover {
  background-color: rgba(202, 209, 5, 0.3) !important;
}

.g-bg-primary-opacity-0_3--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.3) !important;
}

.active .g-bg-primary-opacity-0_3--active {
  background-color: rgba(202, 209, 5, 0.3) !important;
}

.g-bg-primary-opacity-0_3--before::before,
.g-bg-primary-opacity-0_3--after::after {
  background-color: rgba(202, 209, 5, 0.3) !important;
}

.g-bg-primary-opacity-0_4 {
  background-color: rgba(202, 209, 5, 0.4) !important;
}

.g-bg-primary-opacity-0_4--hover:hover {
  background-color: rgba(202, 209, 5, 0.4) !important;
}

.g-bg-primary-opacity-0_4--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.4) !important;
}

.g-bg-primary-opacity-0_4--after::after {
  background-color: rgba(202, 209, 5, 0.4) !important;
}

.g-bg-primary-opacity-0_6 {
  background-color: rgba(202, 209, 5, 0.6) !important;
}

.g-bg-primary-opacity-0_6--hover:hover {
  background-color: rgba(202, 209, 5, 0.6) !important;
}

.g-bg-primary-opacity-0_6--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.6) !important;
}

.g-bg-primary-opacity-0_6--after::after {
  background-color: rgba(202, 209, 5, 0.6) !important;
}

.g-bg-primary-opacity-0_8 {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-primary-opacity-0_8--hover:hover {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-primary-opacity-0_8--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-primary-opacity-0_8--before::after,
.g-bg-primary-opacity-0_8--after::after {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-primary-opacity-0_8--before--hover:hover::after,
.g-bg-primary-opacity-0_8--after--hover:hover::after {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-primary-opacity-0_9 {
  background-color: rgba(202, 209, 5, 0.9) !important;
}

.g-bg-primary-opacity-0_9--hover:hover {
  background-color: rgba(202, 209, 5, 0.9) !important;
}

.g-bg-primary-opacity-0_9--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.9) !important;
}

.g-bg-primary-opacity-0_9--before::after,
.g-bg-primary-opacity-0_9--after::after {
  background-color: rgba(202, 209, 5, 0.9) !important;
}

.g-bg-primary-opacity-0_9--before--hover:hover::after,
.g-bg-primary-opacity-0_9--after--hover:hover::after {
  background-color: rgba(202, 209, 5, 0.9) !important;
}

/* Black Colors */

.g-bg-black {
  background-color: #000 !important;
}

.g-bg-black--hover:hover {
  background-color: #000 !important;
}

.g-bg-black--after::after {
  background-color: #000 !important;
}

.g-bg-black-opacity-0_1 {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.g-bg-black-opacity-0_1--after::after {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.g-bg-black-opacity-0_2 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.g-bg-black-opacity-0_2--after::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.g-bg-black-opacity-0_3 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--hover:hover {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--after::after,
.g-bg-black-opacity-0_3--before::before {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_3--hover--after:hover::after {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.g-bg-black-opacity-0_4 {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.g-bg-black-opacity-0_4--after::after {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.g-bg-black-opacity-0_5 {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_5--hover:hover {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_5--after::after {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.g-bg-black-opacity-0_6 {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.g-bg-black-opacity-0_6--hover:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_6--after::after {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.g-bg-black-opacity-0_7 {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_7--hover:hover {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_7--after::after {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.g-bg-black-opacity-0_8 {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_8--after::after {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_8--hover:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.g-bg-black-opacity-0_9 {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.g-bg-black-opacity-0_9--after::after {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.g-bg-black-opacity-0_9--hover:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.u-block-hover:hover .g-bg-black--hover {
  background-color: #000 !important;
}

/* White Colors */

.g-bg-white {
  background-color: #fff !important;
}

.g-bg-white--before::before,
.g-bg-white--after::after {
  background-color: #fff !important;
}

.g-bg-white--hover:hover,
.g-bg-white--active.active {
  background-color: #fff !important;
}

.g-parent:hover .g-bg-white--parent-hover {
  background-color: #fff !important;
}

.g-bg-white--disabled:disabled {
  background-color: #fff !important;
}

.g-bg-white--before::before,
.g-bg-white--after::after {
  background-color: #fff !important;
}

.g-parent:hover .g-bg-white-opacity-0--after--parent-hover::after {
  background-color: rgba(255, 255, 255, 0) !important;
}

.g-bg-white-opacity-0_05 {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.g-bg-white-opacity-0_1 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.g-bg-white-opacity-0_1--after::after {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.g-bg-white-opacity-0_2 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.g-bg-white-opacity-0_2--hover:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.g-bg-white-opacity-0_3 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.g-bg-white-opacity-0_3--hover:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.g-bg-white-opacity-0_3--after::after {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.g-bg-white-opacity-0_4 {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.g-bg-white-opacity-0_4--hover:hover {
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.g-bg-white-opacity-0_5 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.g-bg-white-opacity-0_5--after::after {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.g-bg-white-opacity-0_7 {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.g-bg-white-opacity-0_7--hover:hover {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.g-bg-white-opacity-0_7--after::after {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

.g-bg-white-opacity-0_8 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.g-bg-white-opacity-0_8--hover:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.g-bg-white-opacity-0_8--after::after {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.g-bg-white-opacity-0_8--hover--after:hover::after {
  background-color: rgba(202, 209, 5, 0.8) !important;
}

.g-bg-white-opacity-0_9 {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.g-bg-white-opacity-0_9--hover:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.g-bg-white-opacity-0_9--after::after {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Gray Colors */

.g-bg-gray-dark-v1 {
  background-color: #111 !important;
}

.g-bg-gray-dark-v1--hover:hover {
  background-color: #111 !important;
}

.g-bg-gray-dark-v2 {
  background-color: #333 !important;
}

.g-bg-gray-dark-v2--hover:hover {
  background-color: #333 !important;
}

.g-bg-gray-dark-v3 {
  background-color: #555 !important;
}

.g-bg-gray-dark-v3--hover:hover {
  background-color: #555 !important;
}

.g-bg-gray-dark-v4 {
  background-color: #777 !important;
}

.g-bg-gray-dark-v4--hover:hover {
  background-color: #777 !important;
}

.g-bg-gray-dark-v5 {
  background-color: #999 !important;
}

.g-bg-gray-dark-v5--hover:hover {
  background-color: #999 !important;
}

.g-bg-gray-light-v1 {
  background-color: #bbb !important;
}

.g-bg-gray-light-v1--hover:hover {
  background-color: #bbb !important;
}

.g-bg-gray-light-v2 {
  background-color: #ccc !important;
}

.g-bg-gray-light-v2--hover:hover {
  background-color: #ccc !important;
}

.g-bg-gray-light-v3 {
  background-color: #ddd !important;
}

.g-bg-gray-light-v3--hover:hover {
  background-color: #ddd !important;
}

.g-bg-gray-light-v4 {
  background-color: #eee !important;
}

.g-bg-gray-light-v4--hover:hover {
  background-color: #eee !important;
}

.g-bg-gray-light-v5 {
  background-color: #f7f7f7 !important;
}

.g-bg-gray-light-v5--hover:hover {
  background-color: #f7f7f7 !important;
}

.g-bg-gray-light-v5--active.active,
.active .g-bg-gray-light-v5--active {
  background-color: #f7f7f7 !important;
}

/* Transparent */

.g-bg-transparent {
  background-color: transparent !important;
}

.g-bg-transparent--hover:hover {
  background-color: transparent !important;
}

.g-bg-transparent--hover--after:hover::after {
  background-color: transparent !important;
}

.g-parent:hover .g-bg-transparent--parent-hover {
  background-color: transparent !important;
}

/* Complementary Colors
------------------------------------*/

/* Beige Colors */

.g-bg-beige {
  background-color: #e5e1de !important;
}

/* Color Green */

.g-bg-green {
  background-color: #8ac54d !important;
}

.g-bg-green-opacity-0_1 {
  background-color: rgba(138, 197, 77, 0.1) !important;
}

.g-bg-green--hover:hover {
  background-color: #8ac54d !important;
}

/* Color Blue */

.g-bg-blue {
  background-color: #355c76 !important;
}

.g-bg-blue-opacity-0_1 {
  background-color: rgba(53, 92, 118, 0.1) !important;
}

.g-bg-blue-opacity-0_7 {
  background-color: rgba(53, 92, 118, 0.7) !important;
}

.g-bg-blue-opacity-0_9 {
  background-color: rgba(53, 92, 118, 0.9) !important;
}

.g-bg-blue--hover:hover {
  background-color: #355c76 !important;
}

/* Color Light Blue */

.g-bg-lightblue {
  background-color: #edf2f8 !important;
}

.g-bg-lightblue-opacity-0_1 {
  background-color: rgba(237, 242, 248, 0.1) !important;
}

.g-bg-lightblue-v1 {
  background-color: #d6e2ee !important;
}

.g-bg-lightblue-v1-opacity-0_1 {
  background-color: rgba(214, 226, 238, 0.1) !important;
}

/* Color Dark Blue */

.g-bg-darkblue {
  background-color: #009 !important;
}

.g-bg-darkblue-opacity-0_1 {
  background-color: rgba(0, 0, 153, 0.1) !important;
}

/* Color Indigo */

.g-bg-indigo {
  background-color: #8b0048 !important;
}

.g-bg-indigo-opacity-0_1 {
  background-color: rgba(139, 0, 72, 0.1) !important;
}

/* Color Red */

.g-bg-red {
  background-color: #f00 !important;
}

.g-bg-red-opacity-0_1 {
  background-color: rgba(255, 0, 0, 0.1) !important;
}

.g-bg-red-opacity-0_2 {
  background-color: rgba(255, 0, 0, 0.2) !important;
}

.g-bg-red-opacity-0_5 {
  background-color: rgba(255, 0, 0, 0.5) !important;
}

.g-bg-red-opacity-0_8 {
  background-color: rgba(255, 0, 0, 0.8) !important;
}

.g-bg-red--hover:hover {
  background-color: #f00 !important;
}

/* Color Light Red */

.g-bg-lightred {
  background-color: #e64b3b !important;
}

.g-bg-lightred-opacity-0_1 {
  background-color: rgba(230, 75, 59, 0.1) !important;
}

.g-bg-lightred--hover:hover {
  background-color: #e64b3b !important;
}

/* Color Dark Red */

.g-bg-darkred {
  background-color: #a10f2b !important;
}

.g-bg-darkred-opacity-0_1 {
  background-color: rgba(161, 15, 43, 0.1) !important;
}

/* Color Purple */

.g-bg-purple {
  background-color: #9a69cb !important;
}

.g-bg-purple-opacity-0_1 {
  background-color: rgba(154, 105, 203, 0.1) !important;
}

.g-bg-purple-opacity-0_7 {
  background-color: rgba(154, 105, 203, 0.7) !important;
}

.g-bg-purple-opacity-0_9 {
  background-color: rgba(154, 105, 203, 0.9) !important;
}

.g-bg-purple-opacity-0_9--after::after {
  background-color: rgba(154, 105, 203, 0.9) !important;
}

.g-bg-purple--hover:hover {
  background-color: #9a69cb !important;
}

/* Color Dark Purple */

.g-bg-darkpurple {
  background-color: #6639b6 !important;
}

.g-bg-darkpurple-opacity-0_1 {
  background-color: rgba(102, 57, 182, 0.1) !important;
}

/* Color Pink */

.g-bg-pink {
  background-color: #e81c62 !important;
}

.g-bg-pink-opacity-0_1 {
  background-color: rgba(232, 28, 98, 0.1) !important;
}

.g-bg-pink-opacity-0_9 {
  background-color: rgba(232, 28, 98, 0.9) !important;
}

.g-bg-pink--hover:hover {
  background-color: #e81c62 !important;
}

.g-bg-pink--before::after,
.g-bg-pink--after::after {
  background-color: #e81c62 !important;
}

.g-bg-pink--before--hover:hover::after,
.g-bg-pink--after--hover:hover::after {
  background-color: #e81c62 !important;
}

/* Color Orange */

.g-bg-orange {
  background-color: #e57d20 !important;
}

.g-bg-orange-opacity-0_1 {
  background-color: rgba(229, 125, 32, 0.1) !important;
}

.g-bg-orange-opacity-0_2 {
  background-color: rgba(229, 125, 32, 0.2) !important;
}

.g-bg-orange--hover:hover {
  background-color: #e57d20 !important;
}

/* Color Deep Orange */

.g-bg-deeporange {
  background-color: #fe541e !important;
}

.g-bg-deeporange-opacity-0_1 {
  background-color: rgba(254, 84, 30, 0.1) !important;
}

.g-bg-deeporange--hover:hover {
  background-color: #fe541e !important;
}

/* Color Yellow */

.g-bg-yellow {
  background-color: #ebc71d !important;
}

.g-bg-yellow-opacity-0_1 {
  background-color: rgba(235, 199, 29, 0.1) !important;
}

.g-bg-yellow-opacity-0_7 {
  background: rgba(235, 199, 29, 0.7) !important;
}

.g-bg-yellow--hover:hover {
  background-color: #ebc71d !important;
}

/* Color Aqua */

.g-bg-aqua {
  background-color: #29d6e6 !important;
}

.g-bg-aqua-opacity-0_1 {
  background-color: rgba(41, 214, 230, 0.1) !important;
}

.g-bg-aqua-opacity-0_9 {
  background-color: rgba(41, 214, 230, 0.9) !important;
}

.g-bg-aqua--hover:hover {
  background-color: #29d6e6 !important;
}

/* Color Cyan */

.g-bg-cyan {
  background-color: #00bed6 !important;
}

.g-bg-cyan-opacity-0_1 {
  background-color: rgba(0, 190, 214, 0.1) !important;
}

.g-bg-cyan-opacity-0_9 {
  background-color: rgba(0, 190, 214, 0.9) !important;
}

.g-bg-cyan-opacity-0_9--after::after {
  background-color: rgba(0, 190, 214, 0.9) !important;
}

.g-bg-cyan--hover:hover {
  background-color: #00bed6 !important;
}

/* Color Teal */

.g-bg-teal {
  background-color: #18ba9b !important;
}

.g-bg-teal-opacity-0_1 {
  background-color: rgba(24, 186, 155, 0.1) !important;
}

.g-bg-teal-opacity-0_9 {
  background-color: rgba(24, 186, 155, 0.9) !important;
}

.g-bg-teal-opacity-0_9--after::after {
  background-color: rgba(24, 186, 155, 0.9) !important;
}

.g-bg-teal--hover:hover {
  background-color: #18ba9b !important;
}

/* Color Brown */

.g-bg-brown {
  background-color: #9c8061 !important;
}

.g-bg-brown-opacity-0_1 {
  background-color: rgba(156, 128, 97, 0.1) !important;
}

.g-bg-brown--hover:hover {
  background-color: #9c8061 !important;
}

/* Color Blue Gray */

.g-bg-bluegray {
  background-color: #585f69 !important;
}

.g-bg-bluegray-opacity-0_1 {
  background-color: rgba(88, 95, 105, 0.1) !important;
}

.g-bg-bluegray-opacity-0_2--before::before,
.g-bg-bluegray-opacity-0_2--after::after {
  background-color: rgba(88, 95, 105, 0.2) !important;
}

.g-bg-bluegray-opacity-0_3--before::before,
.g-bg-bluegray-opacity-0_3--after::after {
  background-color: rgba(88, 95, 105, 0.3) !important;
}

.g-bg-bluegray-opacity-0_5,
.g-bg-bluegray-opacity-0_5--after::after {
  background-color: rgba(88, 95, 105, 0.5) !important;
}

.g-bg-bluegray-opacity-0_7 {
  background-color: rgba(88, 95, 105, 0.7) !important;
}

.g-bg-bluegray--hover:hover {
  background-color: #585f69 !important;
}

.g-grayscale-100x {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  -webkit-filter: grayscale(100%);
}

.g-parent:hover .g-grayscale-0--parent-hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
}

.g-grayscale-0--hover:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
}

/* O */

@media (min-width: 576px) {
  .g-bg-transparent--sm {
    background-color: transparent !important;
  }
}

/*------------------------------------
  Background Colors Extended
------------------------------------*/

.js-header-change-moment .g-bg-primary--scrolling {
  background-color: #CAD105 !important;
}

/*------------------------------------
  Social Background Colors
------------------------------------*/

/* Facebook */

.g-bg-facebook {
  background-color: #3b5998;
}

.u-block-hover:hover .g-bg-facebook--hover,
.g-bg-facebook--hover:hover {
  background-color: #344e86 !important;
}

/* Twitter */

.g-bg-twitter {
  background-color: #00acee;
}

.u-block-hover:hover .g-bg-twitter--hover,
.g-bg-twitter--hover:hover {
  background-color: #009ad5 !important;
}

/* Skype */

.g-bg-skype {
  background-color: #00aff0;
}

.u-block-hover:hover .g-bg-skype--hover,
.g-bg-skype--hover:hover {
  background-color: #009cd7 !important;
}

/* Pinterest */

.g-bg-pinterest {
  background-color: #c8232c;
}

.u-block-hover:hover .g-bg-pinterest--hover,
.g-bg-pinterest--hover:hover {
  background-color: #b21f27 !important;
}

/* Vine */

.g-bg-vine {
  background-color: #00bf8f;
}

.u-block-hover:hover .g-bg-vine--hover,
.g-bg-vine--hover:hover {
  background-color: #00a67c !important;
}

/* Youtube */

.g-bg-youtube {
  background-color: #c4302b;
}

.u-block-hover:hover .g-bg-youtube--hover,
.g-bg-youtube--hover:hover {
  background-color: #af2b26 !important;
}

/* Google plus */

.g-bg-google-plus {
  background-color: #dd4b39;
}

.u-block-hover:hover .g-bg-google-plus--hover,
.g-bg-google-plus--hover:hover {
  background-color: #d73925 !important;
}

/* Dribbble */

.g-bg-dribbble {
  background-color: #ea4c89;
}

.u-block-hover:hover .g-bg-dribbble--hover,
.g-bg-dribbble--hover:hover {
  background-color: #e7357a !important;
}

/* VK */

.g-bg-vk {
  background-color: #2b587a;
}

.u-block-hover:hover .g-bg-vk--hover,
.g-bg-vk--hover:hover {
  background-color: #244a67 !important;
}

/* Linkedin */

.g-bg-linkedin {
  background-color: #0e76a8;
}

.u-block-hover:hover .g-bg-linkedin--hover,
.g-bg-linkedin--hover:hover {
  background-color: #0c6590 !important;
}

/* Instagram */

.g-bg-instagram {
  background-color: #3f729b;
}

.u-block-hover:hover .g-bg-instagram--hover,
.g-bg-instagram--hover:hover {
  background-color: #386589 !important;
}

/*------------------------------------
  Images Grid
------------------------------------*/

.g-bg-grid-v1--before::before {
  background-image: url(/unify/bg/grid/wave.png);
}

.g-bg-grid-v2--before::after {
  background-image: url(/unify/bg/grid/tile-left.png);
}

.g-bg-grid-v3--before::after {
  background-image: url(/unify/bg/grid/tile-right.png);
}

.g-bg-grid-v4--before::after {
  background-image: url(/unify/bg/grid/diagonal-left.png);
}

.g-bg-grid-v5--before::after {
  background-image: url(/unify/bg/grid/diagonal-right.png);
}

.g-bg-grid-v6--before::after {
  background-image: url(/unify/bg/grid/zigzag-left.png);
}

.g-bg-grid-v7--before::after {
  background-image: url(/unify/bg/grid/zigzag-right.png);
}

/*------------------------------------
  Covers
------------------------------------*/

.g-bg-cover {
  position: relative;
}

.g-bg-cover::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.g-bg-cover-v1::after {
  position: absolute;
  top: 0.3571428571rem;
  right: 0.3571428571rem;
  bottom: 0.3571428571rem;
  left: 0.3571428571rem;
}

.g-bg-cover__inner {
  z-index: 1;
  position: relative;
}

/*------------------------------------
  Background Image Style
------------------------------------*/

.g-bg-img-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/*------------------------------------
  Background Patterns
------------------------------------*/

.g-bg-pattern-green {
  background-image: url("/unify/bg/pattern--green.png");
}

/*------------------------------------
  Background Position
------------------------------------*/

.g-bg-pos-center {
  background-position: center;
}

.g-bg-pos-left-center {
  background-position: left center;
}

.g-bg-pos-top-left {
  background-position: top left;
}

.g-bg-pos-top-right {
  background-position: top right;
}

.g-bg-pos-top-center {
  background-position: top center;
}

.g-bg-pos-bottom-center {
  background-position: bottom center;
}

/*------------------------------------
  Background Repeat
------------------------------------*/

.g-bg-no-repeat {
  background-repeat: no-repeat;
}

/*------------------------------------
  Background Size
------------------------------------*/

.g-bg-size-cover {
  background-size: cover !important;
}

.g-bg-size-100x {
  background-size: 100% !important;
}

.g-bg-size-100x--hover:hover {
  background-size: 100% !important;
}

.g-parent:hover .g-bg-size-100x--parent-hover {
  background-size: 100% !important;
}

.g-bg-size-120x {
  background-size: 120% !important;
}

.g-bg-size-120x--hover {
  background-size: 120% !important;
}

.g-parent:hover .g-bg-size-120x--parent-hover {
  background-size: 120% !important;
}

.g-bg-repeat {
  background-repeat: repeat !important;
  /* P */
  background-size: auto !important;
}

/* Primary Colors */

.g-fill-primary {
  fill: #CAD105 !important;
}

.g-fill-primary path,
.g-fill-primary polygon {
  fill: #CAD105 !important;
}

.g-fill-primary--hover:hover path,
.g-fill-primary--hover:hover polygon {
  fill: #CAD105 !important;
}

*:hover > * > .g-fill-primary--hover-parent svg path,
*:hover > * > .g-fill-primary--hover-parent svg polygon {
  fill: #CAD105 !important;
}

.g-fill-white {
  fill: #fff !important;
}

.g-fill-white path,
.g-fill-white polygon {
  fill: #fff !important;
}

.g-fill-white--opened-menu:not(.collapsed) path,
.g-fill-white--opened-menu:not(.collapsed) polygon {
  fill: #fff !important;
}

*:not(.collapsed) > .g-fill-white--parent-opened-menu path,
*:not(.collapsed) > .g-fill-white--parent-opened-menu polygon {
  fill: #fff !important;
}

.g-fill-white--hover:hover path,
.g-fill-white--hover:hover polygon {
  fill: #fff !important;
}

*:hover > * > .g-fill-white--hover-parent svg path,
*:hover > * > .g-fill-white--hover-parent svg polygon {
  fill: #fff !important;
}

.g-fill-main {
  fill: #464c5e !important;
}

.g-fill-main path,
.g-fill-main polygon {
  fill: #464c5e !important;
}

.g-fill-main--opened-menu:not(.collapsed) path,
.g-fill-main--opened-menu:not(.collapsed) polygon {
  fill: #464c5e !important;
}

*:not(.collapsed) > .g-fill-main--parent-opened-menu path,
*:not(.collapsed) > .g-fill-main--parent-opened-menu polygon {
  fill: #464c5e !important;
}

.g-fill-main--hover:hover path,
.g-fill-main--hover:hover polygon {
  fill: #464c5e !important;
}

*:hover > * > .g-fill-main--hover-parent svg path,
*:hover > * > .g-fill-main--hover-parent svg polygon {
  fill: #fff !important;
}

.g-fill-gray-light-v4 path,
.g-fill-gray-light-v4 polygon {
  fill: #eee !important;
}

.g-fill-gray-light-v4--hover:hover path,
.g-fill-gray-light-v4--hover:hover polygon {
  fill: #eee !important;
}

*:hover > * > .g-fill-gray-light-v4--hover-parent svg path,
*:hover > * > .g-fill-gray-light-v4--hover-parent svg polygon {
  fill: #eee !important;
}

.g-fill-red path,
.g-fill-red polygon {
  fill: #f00 !important;
}

.g-fill-red--hover:hover path,
.g-fill-red--hover:hover polygon {
  fill: #f00 !important;
}

*:hover > * > .g-fill-red--hover-parent path,
*:hover > * > .g-fill-red--hover-parent polygon {
  fill: #f00 !important;
}

*:hover > .g-fill-red--parent-hover path,
*:hover > .g-fill-red--parent-hover polygon {
  fill: #f00 !important;
}

*:hover > * > * > .g-fill-red--parent-parent-parent-hover path,
*:hover > * > * > .g-fill-red--parent-parent-parent-hover polygon {
  fill: #f00 !important;
}

/*------------------------------------
  Borders Default (solid)
------------------------------------*/

.g-brd-none {
  /* P */
  border: none !important;
}

.g-brd-x {
  border-left: solid 1px transparent !important;
  border-right: solid 1px transparent !important;
}

.g-brd-y {
  border-top: solid 1px transparent !important;
  border-bottom: solid 1px transparent !important;
}

.g-brd-around {
  border: solid 1px transparent !important;
}

.g-brd-top {
  border-top: solid 1px transparent !important;
}

.g-brd-right {
  border-right: solid 1px transparent !important;
}

.g-brd-bottom {
  border-bottom: solid 1px transparent !important;
}

.g-brd-left {
  border-left: solid 1px transparent !important;
}

.g-brd-left-none {
  border-left: none !important;
}

@media (min-width: 576px) {
  .g-brd-around--sm {
    border: solid 1px transparent !important;
  }

  .g-brd-top--sm {
    border-top: solid 1px transparent !important;
  }

  .g-brd-right--sm {
    border-right: solid 1px transparent !important;
  }

  .g-brd-bottom--sm {
    border-bottom: solid 1px transparent !important;
  }

  .g-brd-left--sm {
    border-left: solid 1px transparent !important;
  }
}

@media (min-width: 768px) {
  .g-brd-x--md {
    border-left: solid 1px transparent !important;
    border-right: solid 1px transparent !important;
  }

  .g-brd-around--md {
    border: solid 1px transparent !important;
  }

  .g-brd-top--md {
    border-top: solid 1px transparent !important;
  }

  .g-brd-right--md {
    border-right: solid 1px transparent !important;
  }

  .g-brd-bottom--md {
    border-bottom: solid 1px transparent !important;
  }

  .g-brd-left--md {
    border-left: solid 1px transparent !important;
  }
}

@media (min-width: 992px) {
  /* P */

  .g-brd-around--lg {
    border: solid 1px transparent !important;
  }

  .g-brd-top--lg {
    border-top: solid 1px transparent !important;
  }

  .g-brd-right--lg {
    border-right: solid 1px transparent !important;
  }

  .g-brd-bottom--lg {
    border-bottom: solid 1px transparent !important;
  }

  .g-brd-left--lg {
    border-left: solid 1px transparent !important;
  }

  .g-brd-left-none--lg {
    border-left: none !important;
  }

  .g-brd-x--lg {
    border-left: solid 1px transparent;
    border-right: solid 1px transparent;
  }

  .g-brd-none--lg {
    border: none !important;
  }
}

/*------------------------------------
  Borders None
------------------------------------*/

.g-brd-around-none {
  border-width: 0 !important;
}

.g-brd-y-none {
  border-top: none !important;
  border-bottom: none !important;
}

.g-brd-top-none {
  border-top: none !important;
}

.g-brd-bottom-none {
  border-bottom: none !important;
}

.g-brd-x-none {
  border-left: none !important;
  border-right: none !important;
}

.g-brd-left-none {
  border-left: none !important;
}

.g-brd-right-none {
  border-right: none !important;
}

@media (min-width: 576px) {
  .g-brd-around-none--sm {
    border-width: 0 !important;
  }

  .g-brd-y-none--sm {
    border-top: none !important;
    border-bottom: none !important;
  }

  .g-brd-top-none--sm {
    border-top: none !important;
  }

  .g-brd-bottom-none--sm {
    border-bottom: none !important;
  }

  .g-brd-x-none--sm {
    border-left: none !important;
    border-right: none !important;
  }

  .g-brd-left-none--sm {
    border-left: none !important;
  }

  .g-brd-right-none--sm {
    border-right: none !important;
  }
}

@media (min-width: 768px) {
  .g-brd-around-none--md {
    border-width: 0 !important;
  }

  .g-brd-y-none--md {
    border-top: none !important;
    border-bottom: none !important;
  }

  .g-brd-top-none--md {
    border-top: none !important;
  }

  .g-brd-bottom-none--md {
    border-bottom: none !important;
  }

  .g-brd-x-none--md {
    border-left: none !important;
    border-right: none !important;
  }

  .g-brd-left-none--md {
    border-left: none !important;
  }

  .g-brd-right-none--md {
    border-right: none !important;
  }
}

@media (min-width: 992px) {
  .g-brd-around-none--lg {
    border-width: 0 !important;
  }

  .g-brd-y-none--lg {
    border-top: none !important;
    border-bottom: none !important;
  }

  .g-brd-top-none--lg {
    border-top: none !important;
  }

  .g-brd-bottom-none--lg {
    border-bottom: none !important;
  }

  .g-brd-x-none--lg {
    border-left: none !important;
    border-right: none !important;
  }

  .g-brd-left-none--lg {
    border-left: none !important;
  }

  .g-brd-right-none--lg {
    border-right: none !important;
  }
}

@media (min-width: 1200px) {
  .g-brd-around-none--xl {
    border-width: 0 !important;
  }

  .g-brd-y-none--xl {
    border-top: none !important;
    border-bottom: none !important;
  }

  .g-brd-top-none--xl {
    border-top: none !important;
  }

  .g-brd-bottom-none--xl {
    border-bottom: none !important;
  }

  .g-brd-x-none--xl {
    border-left: none !important;
    border-right: none !important;
  }

  .g-brd-left-none--xl {
    border-left: none !important;
  }

  .g-brd-right-none--xl {
    border-right: none !important;
  }
}

/*------------------------------------
  Border Style
------------------------------------*/

.g-brd-style-solid {
  border-style: solid !important;
}

.g-brd-style-dashed {
  border-style: dashed !important;
}

.g-brd-style-dotted {
  border-style: dotted !important;
}

/*------------------------------------
  Border Radius (Rounded Styles)
------------------------------------*/

/* Rounded Around */

.rounded-0 {
  border-radius: 0 !important;
}

.g-rounded-50x {
  border-radius: 50%;
}

.g-rounded-1 {
  border-radius: 1px !important;
}

.g-rounded-2 {
  border-radius: 2px !important;
}

.g-rounded-3 {
  border-radius: 3px !important;
}

.g-rounded-4 {
  border-radius: 4px !important;
}

.g-rounded-5 {
  border-radius: 5px !important;
}

.g-rounded-6 {
  border-radius: 6px !important;
}

.g-rounded-7 {
  border-radius: 7px !important;
}

.g-rounded-10 {
  border-radius: 10px !important;
}

.g-rounded-15 {
  border-radius: 15px !important;
}

.g-rounded-20 {
  border-radius: 20px !important;
}

.g-rounded-25 {
  border-radius: 25px !important;
}

.g-rounded-30 {
  border-radius: 30px !important;
}

.g-rounded-50 {
  border-radius: 50px !important;
}

.g-rounded-100 {
  border-radius: 100px !important;
}

.g-rounded-100--after::after {
  border-radius: 100px !important;
}

/* Rounded Top */

.g-rounded-top-5 {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

/* Rounded Right */

.g-rounded-right-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.g-rounded-right-3 {
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.g-rounded-right-4 {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.g-rounded-right-5 {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.g-rounded-right-10 {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.g-rounded-right-20 {
  border-bottom-right-radius: 20px !important;
  border-top-right-radius: 20px !important;
}

.g-rounded-right-25 {
  border-bottom-right-radius: 25px !important;
  border-top-right-radius: 25px !important;
}

.g-rounded-right-30 {
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}

.g-rounded-right-50 {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

/* Rounded Bottom */

.g-rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.g-rounded-bottom-3 {
  border-bottom-left-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.g-rounded-bottom-4 {
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.g-rounded-bottom-5 {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

/* Rounded Left */

.g-rounded-left-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.g-rounded-left-3 {
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.g-rounded-left-4 {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.g-rounded-left-5 {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.g-rounded-left-10 {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.g-rounded-left-20 {
  border-bottom-left-radius: 20px !important;
  border-top-left-radius: 20px !important;
}

.g-rounded-left-25 {
  border-bottom-left-radius: 25px !important;
  border-top-left-radius: 25px !important;
}

.g-rounded-left-30 {
  border-top-left-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}

.g-rounded-left-50 {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}

.g-rounded-circle--before::before {
  border-radius: 50% !important;
}

.g-rounded-circle--after::after {
  border-radius: 50% !important;
}

@media (min-width: 768px) {
  .g-rounded-0--md {
    border-radius: 0 !important;
  }

  .g-rounded-left-0--md {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .g-rounded-right-0--md {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

@media (min-width: 992px) {
  .g-rounded-left-5--lg-up {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
  }

  .g-rounded-right-5--lg-up {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
  }
}

/*------------------------------------
  Borders Default (dashed)
------------------------------------*/

.g-brd-around--dashed {
  border: dashed 1px transparent;
}

.g-brd-top--dashed {
  border-top: dashed 1px transparent;
}

.g-brd-bottom--dashed {
  border-bottom: dashed 1px transparent;
}

.g-brd-right--dashed {
  border-right: dashed 1px transparent;
}

.g-brd-left--dashed {
  border-left: dashed 1px transparent;
}

@media (min-width: 576px) {
  .g-brd-around--dashed--sm {
    border: dashed 1px transparent;
  }

  .g-brd-top--dashed--sm {
    border-top: dashed 1px transparent;
  }

  .g-brd-bottom--dashed--sm {
    border-bottom: dashed 1px transparent;
  }

  .g-brd-right--dashed--sm {
    border-right: dashed 1px transparent;
  }

  .g-brd-left--dashed--sm {
    border-left: dashed 1px transparent;
  }
}

@media (min-width: 768px) {
  .g-brd-around--dashed--md {
    border: dashed 1px transparent;
  }

  .g-brd-top--dashed--md {
    border-top: dashed 1px transparent;
  }

  .g-brd-bottom--dashed--md {
    border-bottom: dashed 1px transparent;
  }

  .g-brd-right--dashed--md {
    border-right: dashed 1px transparent;
  }

  .g-brd-left--dashed--md {
    border-left: dashed 1px transparent;
  }
}

/*------------------------------------
  Borders Default (dotted)
------------------------------------*/

.g-brd-around--dotted {
  border: dotted 1px transparent;
}

.g-brd-top--dotted {
  border-top: dotted 1px transparent;
}

.g-brd-bottom--dotted {
  border-bottom: dotted 1px transparent;
}

.g-brd-right--dotted {
  border-right: dotted 1px transparent;
}

.g-brd-left--dotted {
  border-left: dotted 1px transparent;
}

@media (min-width: 576px) {
  .g-brd-around--dotted--sm {
    border: dotted 1px transparent;
  }

  .g-brd-top--dotted--sm {
    border-top: dotted 1px transparent;
  }

  .g-brd-bottom--dotted--sm {
    border-bottom: dotted 1px transparent;
  }

  .g-brd-right--dotted--sm {
    border-right: dotted 1px transparent;
  }

  .g-brd-left--dotted--sm {
    border-left: dotted 1px transparent;
  }
}

@media (min-width: 768px) {
  .g-brd-around--dotted--md {
    border: dotted 1px transparent;
  }

  .g-brd-top--dotted--md {
    border-top: dotted 1px transparent;
  }

  .g-brd-bottom--dotted--md {
    border-bottom: dotted 1px transparent;
  }

  .g-brd-right--dotted--md {
    border-right: dotted 1px transparent;
  }

  .g-brd-left--dotted--md {
    border-left: dotted 1px transparent;
  }
}

/*------------------------------------
  Border Width
------------------------------------*/

.g-brd-0 {
  border-width: 0 !important;
}

.g-brd-1 {
  border-width: 1px !important;
}

.g-brd-2 {
  border-width: 2px !important;
}

.g-brd-3 {
  border-width: 3px !important;
}

.g-brd-3--before::before {
  border-width: 3px !important;
}

.g-brd-3--before--active.active::before {
  border-width: 3px !important;
}

.g-brd-4 {
  border-width: 4px !important;
}

.g-brd-5 {
  border-width: 5px !important;
}

.g-brd-6 {
  border-width: 6px !important;
}

.g-brd-7 {
  border-width: 7px !important;
}

.g-brd-10 {
  border-width: 10px !important;
}

.g-brd-12 {
  border-width: 12px !important;
}

.g-brd-top-0 {
  border-top-width: 0 !important;
}

.g-brd-top-2 {
  border-top-width: 2px !important;
}

.g-brd-top-3 {
  border-top-width: 3px !important;
}

.g-brd-top-5 {
  border-top-width: 5px !important;
}

.g-brd-bottom-0 {
  border-bottom-width: 0 !important;
}

.g-brd-bottom-2 {
  border-bottom-width: 2px !important;
}

.g-brd-bottom-2--hover:hover {
  border-bottom-width: 2px !important;
}

.g-parent:hover .g-brd-bottom-2--parent-hover {
  border-bottom-width: 2px !important;
}

.g-brd-bottom-5 {
  border-bottom-width: 5px !important;
}

.g-brd-left-0 {
  border-left-width: 0 !important;
}

.g-brd-left-1 {
  border-left-width: 1px !important;
}

.g-brd-left-2 {
  border-left-width: 2px !important;
}

.g-brd-left-3 {
  border-left-width: 3px !important;
}

.g-brd-left-4 {
  border-left-width: 4px !important;
}

.g-brd-right-0 {
  border-right-width: 0 !important;
}

.g-brd-right-1 {
  border-right-width: 1px !important;
}

.g-brd-right-2 {
  border-right-width: 2px !important;
}

.g-brd-right-3 {
  border-right-width: 3px !important;
}

.g-brd-right-4 {
  border-right-width: 4px !important;
}

@media (min-width: 768px) {
  .g-brd-0--md {
    border-width: 0 !important;
  }

  .g-brd-1--md {
    border-width: 1px !important;
  }

  .g-brd-2--md {
    border-width: 2px !important;
  }

  .g-brd-3--md {
    border-width: 3px !important;
  }

  .g-brd-4--md {
    border-width: 4px !important;
  }

  .g-brd-5--md {
    border-width: 5px !important;
  }

  .g-brd-6--md {
    border-width: 6px !important;
  }

  .g-brd-10--md {
    border-width: 10px !important;
  }

  .g-brd-top-0--md {
    border-top-width: 0 !important;
  }

  .g-brd-top-2--md {
    border-top-width: 2px !important;
  }

  .g-brd-top-3--md {
    border-top-width: 3px !important;
  }

  .g-brd-top-5--md {
    border-top-width: 5px !important;
  }

  .g-brd-bottom-0--md {
    border-bottom-width: 0 !important;
  }

  .g-brd-bottom-2--md {
    border-bottom-width: 2px !important;
  }

  .g-brd-bottom-5--md {
    border-bottom-width: 5px !important;
  }

  .g-brd-left-0--md {
    border-left-width: 0 !important;
  }

  .g-brd-left-1--md {
    border-left-width: 1px !important;
  }

  .g-brd-left-2--md {
    border-left-width: 2px !important;
  }

  .g-brd-left-3--md {
    border-left-width: 3px !important;
  }

  .g-brd-left-4--md {
    border-left-width: 4px !important;
  }

  .g-brd-right-0--md {
    border-right-width: 0 !important;
  }

  .g-brd-right-1--md {
    border-right-width: 1px !important;
  }
}

@media (min-width: 992px) {
  .g-brd-0--lg {
    border-width: 0 !important;
  }

  .g-brd-1--lg {
    border-width: 1px !important;
  }

  .g-brd-top-0--lg {
    border-top-width: 0 !important;
  }

  .g-brd-top-1--lg {
    border-top-width: 1px !important;
  }

  .g-brd-bottom-0--lg {
    border-bottom-width: 0 !important;
  }

  .g-brd-bottom-1--lg {
    border-bottom-width: 1px !important;
  }

  .g-brd-left-0--lg {
    border-left-width: 0 !important;
  }

  .g-brd-left-1--lg {
    border-left-width: 1px !important;
  }

  .g-brd-right-0--lg {
    border-right-width: 0 !important;
  }

  .g-brd-right-1--lg {
    border-right-width: 1px !important;
  }
}

/*------------------------------------
  Border Colors
------------------------------------*/

/* Basic Colors
------------------------------------*/

/* Primary Colors */

.g-brd-primary {
  border-color: #CAD105 !important;
}

.g-brd-primary--before::before {
  border-color: #CAD105 !important;
}

.g-brd-primary--before--active.active::before {
  border-color: #CAD105 !important;
}

.g-brd-primary--hover:hover,
.g-brd-primary--active.active {
  border-color: #CAD105 !important;
}

.g-brd-primary--active.active,
.active .g-brd-primary--active {
  border-color: #CAD105 !important;
}

*:hover > .g-brd-primary--hover-parent {
  border-color: #CAD105 !important;
}

.g-brd-primary-opacity-0_3 {
  border-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-opacity-0_3--hover:hover,
.g-brd-primary-opacity-0_3--active.active {
  border-color: rgba(202, 209, 5, 0.3) !important;
}

*:hover > .g-brd-primary-opacity-0_3--hover-parent {
  border-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-dark-dark-v1 {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v1--hover:hover,
.g-brd-primary-dark-dark-v1--active.active {
  border-color: var(--primary-color) !important;
}

*:hover > .g-brd-primary-dark-dark-v1--hover-parent {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2 {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2--hover:hover,
.g-brd-primary-dark-dark-v2--active.active {
  border-color: var(--primary-color) !important;
}

*:hover > .g-brd-primary-dark-dark-v2--hover-parent {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3 {
  border-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3--hover:hover,
.g-brd-primary-dark-dark-v3--active.active {
  border-color: var(--primary-color) !important;
}

*:hover > .g-brd-primary-dark-dark-v3--hover-parent {
  border-color: var(--primary-color) !important;
}

.g-brd-bottom-primary--hover:hover {
  border-bottom-color: #CAD105 !important;
}

/* Main Colors */

.g-brd-main {
  border-color: #464c5e !important;
}

.g-brd-main--hover:hover {
  border-color: #464c5e !important;
}

/* Black Colors */

.g-brd-black {
  border-color: #000 !important;
}

.g-brd-black--hover:hover,
.g-brd-black--active.active {
  border-color: #000 !important;
}

*:hover > .g-brd-black--hover-parent {
  border-color: #000 !important;
}

.g-brd-black-opacity-0_4 {
  border-color: rgba(0, 0, 0, 0.4) !important;
}

/* White Colors */

.g-brd-white {
  border-color: #fff !important;
}

.g-brd-white--hover:hover,
.g-brd-white--active.active {
  border-color: #fff !important;
}

*:hover > .g-brd-white--hover-parent {
  border-color: #fff !important;
}

.g-brd-white-opacity-0_1 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_1--hover:hover,
.g-brd-white-opacity-0_1--active.active {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

*:hover > .g-brd-white-opacity-0_1--hover-parent {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_2 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_2--hover:hover,
.g-brd-white-opacity-0_2--active.active {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

*:hover > .g-brd-white-opacity-0_2--hover-parent {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_3 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_3--hover:hover,
.g-brd-white-opacity-0_3--active.active {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

*:hover > .g-brd-white-opacity-0_3--hover-parent {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_4 {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_4--hover:hover,
.g-brd-white-opacity-0_4--active.active {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

*:hover > .g-brd-white-opacity-0_4--hover-parent {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_5 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_5--hover:hover,
.g-brd-white-opacity-0_5--active.active {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

*:hover > .g-brd-white-opacity-0_5--hover-parent {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_6 {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.g-brd-white-opacity-0_6--hover:hover,
.g-brd-white-opacity-0_6--active.active {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

*:hover > .g-brd-white-opacity-0_6--hover-parent {
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.g-brd-white-opacity-0_8 {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.g-brd-white-opacity-0_8--hover:hover,
.g-brd-white-opacity-0_8--active.active {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

*:hover > .g-brd-white-opacity-0_8--hover-parent {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Gray Colors */

.g-brd-gray-dark-v1 {
  border-color: #111 !important;
}

.g-brd-gray-dark-v1--hover:hover,
.g-brd-gray-dark-v1--active.active {
  border-color: #111 !important;
}

*:hover > .g-brd-gray-dark-v1--hover-parent {
  border-color: #111 !important;
}

.g-brd-gray-dark-v2 {
  border-color: #333 !important;
}

.g-brd-gray-dark-v2--hover:hover,
.g-brd-gray-dark-v2--active.active {
  border-color: #333 !important;
}

*:hover > .g-brd-gray-dark-v2--hover-parent {
  border-color: #333 !important;
}

.g-brd-gray-dark-v3 {
  border-color: #555 !important;
}

.g-brd-gray-dark-v3--hover:hover,
.g-brd-gray-dark-v3--active.active {
  border-color: #555 !important;
}

*:hover > .g-brd-gray-dark-v3--hover-parent {
  border-color: #555 !important;
}

.g-brd-gray-dark-v4 {
  border-color: #777 !important;
}

.g-brd-gray-dark-v4--hover:hover,
.g-brd-gray-dark-v4--active.active {
  border-color: #777 !important;
}

*:hover > .g-brd-gray-dark-v4--hover-parent {
  border-color: #777 !important;
}

.g-brd-gray-dark-v5 {
  border-color: #999 !important;
}

.g-brd-gray-dark-v5--hover:hover,
.g-brd-gray-dark-v5--active.active {
  border-color: #999 !important;
}

*:hover > .g-brd-gray-dark-v5--hover-parent {
  border-color: #999 !important;
}

.g-brd-gray-light-v1 {
  border-color: #bbb !important;
}

.g-brd-gray-light-v1--hover:hover,
.g-brd-gray-light-v1--focus:focus,
.g-brd-gray-light-v1--active.active {
  border-color: #bbb !important;
}

*:hover > .g-brd-gray-light-v1--hover-parent {
  border-color: #bbb !important;
}

.g-brd-gray-light-v2 {
  border-color: #ccc !important;
}

.g-brd-gray-light-v2--before::before {
  border-color: #ccc !important;
}

.g-brd-gray-light-v2--after::after {
  border-color: #ccc !important;
}

.g-brd-gray-light-v2--hover:hover,
.g-brd-gray-light-v2--active.active {
  border-color: #ccc !important;
}

*:hover > .g-brd-gray-light-v2--hover-parent {
  border-color: #ccc !important;
}

.g-brd-gray-light-v3 {
  border-color: #ddd !important;
}

.g-brd-gray-light-v3--hover:hover,
.g-brd-gray-light-v3--active.active,
.g-brd-gray-light-v3--focus:focus {
  border-color: #ddd !important;
}

*:hover > .g-brd-gray-light-v3--hover-parent {
  border-color: #ddd !important;
}

.g-brd-gray-light-v4 {
  border-color: #eee !important;
}

.g-brd-gray-light-v4--hover:hover,
.g-brd-gray-light-v4--active.active {
  border-color: #eee !important;
}

*:hover > .g-brd-gray-light-v4--hover-parent {
  border-color: #eee !important;
}

.g-brd-gray-light-v5 {
  border-color: #f7f7f7 !important;
}

.g-brd-gray-light-v5--hover:hover,
.g-brd-gray-light-v5--active.active {
  border-color: #f7f7f7 !important;
}

*:hover > .g-brd-gray-light-v5--hover-parent {
  border-color: #f7f7f7 !important;
}

/* Transparent */

.g-brd-transparent {
  border-color: transparent !important;
}

.g-brd-transparent--before::before {
  border-color: transparent !important;
}

.g-brd-transparent--after::after {
  border-color: transparent !important;
}

.g-brd-transparent--hover:hover,
.g-brd-transparent--active.active {
  border-color: transparent !important;
}

*:hover > .g-brd-transparent--hover-parent {
  border-color: transparent !important;
}

/* Complementary Colors
------------------------------------*/

/* Color Green */

.g-brd-green {
  border-color: #8ac54d !important;
}

.g-brd-green--hover:hover,
.g-brd-green--active.active {
  border-color: #8ac54d !important;
}

*:hover > .g-brd-green--hover-parent {
  border-color: #8ac54d !important;
}

/* Color Blue */

.g-brd-blue {
  border-color: #355c76 !important;
}

.g-brd-blue--hover:hover,
.g-brd-blue--active.active {
  border-color: #355c76 !important;
}

*:hover > .g-brd-blue--hover-parent {
  border-color: #355c76 !important;
}

.g-brd-blue-opacity-0_1 {
  border-color: rgba(53, 92, 118, 0.1) !important;
}

/* Color Light Blue */

.g-brd-lightblue {
  border-color: #edf2f8 !important;
}

.g-brd-lightblue--hover:hover,
.g-brd-lightblue--active.active {
  border-color: #edf2f8 !important;
}

*:hover > .g-brd-lightblue--hover-parent {
  border-color: #edf2f8 !important;
}

.g-brd-lightblue-v1 {
  border-color: #d6e2ee !important;
}

.g-brd-lightblue-v1--hover:hover,
.g-brd-lightblue-v1--active.active {
  border-color: #d6e2ee !important;
}

*:hover > .g-brd-lightblue-v1--hover-parent {
  border-color: #d6e2ee !important;
}

/* Color Dark Blue */

.g-brd-darkblue {
  border-color: #009 !important;
}

.g-brd-darkblue--hover:hover,
.g-brd-darkblue--active.active {
  border-color: #009 !important;
}

*:hover > .g-brd-darkblue--hover-parent {
  border-color: #009 !important;
}

/* Color Indigo */

.g-brd-indigo {
  border-color: #8b0048 !important;
}

.g-brd-indigo--hover:hover,
.g-brd-indigo--active.active {
  border-color: #8b0048 !important;
}

*:hover > .g-brd-indigo--hover-parent {
  border-color: #8b0048 !important;
}

/* Color Red */

.g-brd-red {
  border-color: #f00 !important;
}

.g-brd-red--hover:hover,
.g-brd-red--active.active {
  border-color: #f00 !important;
}

*:hover > .g-brd-red--hover-parent {
  border-color: #f00 !important;
}

/* Color Light Red */

.g-brd-lightred {
  border-color: #e64b3b !important;
}

.g-brd-lightred--hover:hover,
.g-brd-lightred--active.active {
  border-color: #e64b3b !important;
}

*:hover > .g-brd-lightred--hover-parent {
  border-color: #e64b3b !important;
}

/* Color Dark Red */

.g-brd-darkred {
  border-color: #a10f2b !important;
}

.g-brd-darkred--hover:hover,
.g-brd-darkred--active.active {
  border-color: #a10f2b !important;
}

*:hover > .g-brd-darkred--hover-parent {
  border-color: #a10f2b !important;
}

/* Color Purple */

.g-brd-purple {
  border-color: #9a69cb !important;
}

.g-brd-purple--hover:hover,
.g-brd-purple--active.active {
  border-color: #9a69cb !important;
}

*:hover > .g-brd-purple--hover-parent {
  border-color: #9a69cb !important;
}

.g-brd-purple-opacity-0_1 {
  border-color: rgba(154, 105, 203, 0.1) !important;
}

/* Color Dark Purple */

.g-brd-darkpurple {
  border-color: #6639b6 !important;
}

.g-brd-darkpurple--hover:hover,
.g-brd-darkpurple--active.active {
  border-color: #6639b6 !important;
}

*:hover > .g-brd-darkpurple--hover-parent {
  border-color: #6639b6 !important;
}

/* Color Pink */

.g-brd-pink {
  border-color: #e81c62 !important;
}

.g-brd-pink--hover:hover,
.g-brd-pink--active.active {
  border-color: #e81c62 !important;
}

*:hover > .g-brd-pink--hover-parent {
  border-color: #e81c62 !important;
}

/* Color Orange */

.g-brd-orange {
  border-color: #e57d20 !important;
}

.g-brd-orange--hover:hover,
.g-brd-orange--active.active {
  border-color: #e57d20 !important;
}

*:hover > .g-brd-orange--hover-parent {
  border-color: #e57d20 !important;
}

/* Color Deep Orange */

.g-brd-deeporange {
  border-color: #fe541e !important;
}

.g-brd-deeporange--hover:hover,
.g-brd-deeporange--active.active {
  border-color: #fe541e !important;
}

*:hover > .g-brd-deeporange--hover-parent {
  border-color: #fe541e !important;
}

/* Color Yellow */

.g-brd-yellow {
  border-color: #ebc71d !important;
}

.g-brd-yellow--hover:hover,
.g-brd-yellow--active.active {
  border-color: #ebc71d !important;
}

*:hover > .g-brd-yellow--hover-parent {
  border-color: #ebc71d !important;
}

/* Color Aqua */

.g-brd-aqua {
  border-color: #29d6e6 !important;
}

.g-brd-aqua--hover:hover,
.g-brd-aqua--active.active {
  border-color: #29d6e6 !important;
}

*:hover > .g-brd-aqua--hover-parent {
  border-color: #29d6e6 !important;
}

/* Color Cyan */

.g-brd-cyan {
  border-color: #00bed6 !important;
}

.g-brd-cyan--hover:hover,
.g-brd-cyan--active.active {
  border-color: #00bed6 !important;
}

*:hover > .g-brd-cyan--hover-parent {
  border-color: #00bed6 !important;
}

/* Color Teal */

.g-brd-teal {
  border-color: #18ba9b !important;
}

.g-brd-teal--hover:hover,
.g-brd-teal--active.active {
  border-color: #18ba9b !important;
}

*:hover > .g-brd-teal--hover-parent {
  border-color: #18ba9b !important;
}

/* Color Brown */

.g-brd-brown {
  border-color: #9c8061 !important;
}

.g-brd-brown--hover:hover,
.g-brd-brown--active.active {
  border-color: #9c8061 !important;
}

*:hover > .g-brd-brown--hover-parent {
  border-color: #9c8061 !important;
}

/* Color Blue Gray */

.g-brd-bluegray {
  border-color: #585f69 !important;
}

.g-brd-bluegray--hover:hover,
.g-brd-bluegray--active.active {
  border-color: #585f69 !important;
}

*:hover > .g-brd-bluegray--hover-parent {
  border-color: #585f69 !important;
}

/* Primary Colors */

.g-brd-primary-top {
  border-top-color: #CAD105 !important;
}

.g-brd-primary-top--before::before {
  border-top-color: #CAD105 !important;
}

.g-brd-primary-bottom {
  border-bottom-color: #CAD105 !important;
}

.g-brd-primary-bottom--before:before {
  border-bottom-color: #CAD105 !important;
}

.g-brd-primary-left {
  border-left-color: #CAD105 !important;
}

.g-brd-primary-left--before:before {
  border-left-color: #CAD105 !important;
}

.g-brd-primary-right {
  border-right-color: #CAD105 !important;
}

.g-brd-primary-right--before:before {
  border-right-color: #CAD105 !important;
}

.g-brd-primary-opacity-0_3-top {
  border-top-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-opacity-0_3-bottom {
  border-bottom-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-opacity-0_3-left {
  border-left-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-opacity-0_3-right {
  border-right-color: rgba(202, 209, 5, 0.3) !important;
}

.g-brd-primary-dark-dark-v1-top {
  border-top-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v1-bottom {
  border-bottom-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v1-left {
  border-left-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v1-right {
  border-right-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2-top {
  border-top-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2-bottom {
  border-bottom-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2-left {
  border-left-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v2-right {
  border-right-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3-top {
  border-top-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3-bottom {
  border-bottom-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3-left {
  border-left-color: var(--primary-color) !important;
}

.g-brd-primary-dark-dark-v3-right {
  border-right-color: var(--primary-color) !important;
}

/* Black Colors */

.g-brd-black-top {
  border-top-color: #000 !important;
}

.g-brd-black-bottom {
  border-bottom-color: #000 !important;
}

.g-brd-black-left {
  border-left-color: #000 !important;
}

.g-brd-black-right {
  border-right-color: #000 !important;
}

/* White */

.g-brd-white-top {
  border-top-color: #fff !important;
}

.g-brd-white-bottom {
  border-bottom-color: #fff !important;
}

.g-brd-white-left {
  border-left-color: #fff !important;
}

.g-brd-white-right {
  border-right-color: #fff !important;
}

.g-brd-white-opacity-0_1-top {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_1-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_1-left {
  border-left-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_1-right {
  border-right-color: rgba(255, 255, 255, 0.1) !important;
}

.g-brd-white-opacity-0_2-top {
  border-top-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_2-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_2-left {
  border-left-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_2-right {
  border-right-color: rgba(255, 255, 255, 0.2) !important;
}

.g-brd-white-opacity-0_3-top {
  border-top-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_3-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_3-left {
  border-left-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_3-right {
  border-right-color: rgba(255, 255, 255, 0.3) !important;
}

.g-brd-white-opacity-0_4-top {
  border-top-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_4-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_4-left {
  border-left-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_4-right {
  border-right-color: rgba(255, 255, 255, 0.4) !important;
}

.g-brd-white-opacity-0_5-top {
  border-top-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_5-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_5-left {
  border-left-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_5-right {
  border-right-color: rgba(255, 255, 255, 0.5) !important;
}

.g-brd-white-opacity-0_6-top {
  border-top-color: rgba(255, 255, 255, 0.6) !important;
}

.g-brd-white-opacity-0_6-bottom {
  border-bottom-color: rgba(255, 255, 255, 0.6) !important;
}

.g-brd-white-opacity-0_6-left {
  border-left-color: rgba(255, 255, 255, 0.6) !important;
}

.g-brd-white-opacity-0_6-right {
  border-right-color: rgba(255, 255, 255, 0.6) !important;
}

/* Gray Colors */

.g-brd-gray-dark-v1-top {
  border-top-color: #111 !important;
}

.g-brd-gray-dark-v1-bottom {
  border-bottom-color: #111 !important;
}

.g-brd-gray-dark-v1-left {
  border-left-color: #111 !important;
}

.g-brd-gray-dark-v1-right {
  border-right-color: #111 !important;
}

.g-brd-gray-dark-v2-top {
  border-top-color: #333 !important;
}

.g-brd-gray-dark-v2-bottom {
  border-bottom-color: #333 !important;
}

.g-brd-gray-dark-v2-left {
  border-left-color: #333 !important;
}

.g-brd-gray-dark-v2-right {
  border-right-color: #333 !important;
}

.g-brd-gray-dark-v3-top {
  border-top-color: #555 !important;
}

.g-brd-gray-dark-v3-bottom {
  border-bottom-color: #555 !important;
}

.g-brd-gray-dark-v3-left {
  border-left-color: #555 !important;
}

.g-brd-gray-dark-v3-right {
  border-right-color: #555 !important;
}

.g-brd-gray-dark-v4-top {
  border-top-color: #777 !important;
}

.g-brd-gray-dark-v4-bottom {
  border-bottom-color: #777 !important;
}

.g-brd-gray-dark-v4-left {
  border-left-color: #777 !important;
}

.g-brd-gray-dark-v4-right {
  border-right-color: #777 !important;
}

.g-brd-gray-dark-v5-top {
  border-top-color: #999 !important;
}

.g-brd-gray-dark-v5-bottom {
  border-bottom-color: #999 !important;
}

.g-brd-gray-dark-v5-left {
  border-left-color: #999 !important;
}

.g-brd-gray-dark-v5-right {
  border-right-color: #999 !important;
}

.g-brd-gray-light-v1-top {
  border-top-color: #bbb !important;
}

.g-brd-gray-light-v1-bottom {
  border-bottom-color: #bbb !important;
}

.g-brd-gray-light-v1-left {
  border-left-color: #bbb !important;
}

.g-brd-gray-light-v1-right {
  border-right-color: #bbb !important;
}

.g-brd-gray-light-v2-top {
  border-top-color: #ccc !important;
}

.g-brd-gray-light-v2-bottom {
  border-bottom-color: #ccc !important;
}

.g-brd-gray-light-v2-left {
  border-left-color: #ccc !important;
}

.g-brd-gray-light-v2-right {
  border-right-color: #ccc !important;
}

.g-brd-gray-light-v3-top {
  border-top-color: #ddd !important;
}

.g-brd-gray-light-v3-bottom {
  border-bottom-color: #ddd !important;
}

.g-brd-gray-light-v3-left {
  border-left-color: #ddd !important;
}

.g-brd-gray-light-v3-right {
  border-right-color: #ddd !important;
}

.g-brd-gray-light-v4-top {
  border-top-color: #eee !important;
}

.g-brd-gray-light-v4-bottom {
  border-bottom-color: #eee !important;
}

.g-brd-gray-light-v4-left {
  border-left-color: #eee !important;
}

.g-brd-gray-light-v4-right {
  border-right-color: #eee !important;
}

.g-brd-gray-light-v5-top {
  border-top-color: #f7f7f7 !important;
}

.g-brd-gray-light-v5-bottom {
  border-bottom-color: #f7f7f7 !important;
}

.g-brd-gray-light-v5-left {
  border-left-color: #f7f7f7 !important;
}

.g-brd-gray-light-v5-right {
  border-right-color: #f7f7f7 !important;
}

/* Transparent */

.g-brd-transparent-top {
  border-top-color: transparent !important;
}

.g-brd-transparent-bottom {
  border-bottom-color: transparent !important;
}

.g-brd-transparent-left {
  border-left-color: transparent !important;
}

.g-brd-transparent-right {
  border-right-color: transparent !important;
}

/* Complementary Colors
------------------------------------*/

/* Color Green */

.g-brd-green-top {
  border-top-color: #8ac54d !important;
}

.g-brd-green-bottom {
  border-bottom-color: #8ac54d !important;
}

.g-brd-green-left {
  border-left-color: #8ac54d !important;
}

.g-brd-green-right {
  border-right-color: #8ac54d !important;
}

/* Color Blue */

.g-brd-blue-top {
  border-top-color: #355c76 !important;
}

.g-brd-blue-bottom {
  border-bottom-color: #355c76 !important;
}

.g-brd-blue-left {
  border-left-color: #355c76 !important;
}

.g-brd-blue-right {
  border-right-color: #355c76 !important;
}

/* Color Light Blue */

.g-brd-lightblue-top {
  border-top-color: #edf2f8 !important;
}

.g-brd-lightblue-bottom {
  border-bottom-color: #edf2f8 !important;
}

.g-brd-lightblue-left {
  border-left-color: #edf2f8 !important;
}

.g-brd-lightblue-right {
  border-right-color: #edf2f8 !important;
}

.g-brd-lightblue-v1-top {
  border-top-color: #d6e2ee !important;
}

.g-brd-lightblue-v1-bottom {
  border-bottom-color: #d6e2ee !important;
}

.g-brd-lightblue-v1-left {
  border-left-color: #d6e2ee !important;
}

.g-brd-lightblue-v1-right {
  border-right-color: #d6e2ee !important;
}

/* Color Dark Blue */

.g-brd-darkblue-top {
  border-top-color: #009 !important;
}

.g-brd-darkblue-bottom {
  border-bottom-color: #009 !important;
}

.g-brd-darkblue-left {
  border-left-color: #009 !important;
}

.g-brd-darkblue-right {
  border-right-color: #009 !important;
}

/* Color Indigo */

.g-brd-indigo-top {
  border-top-color: #8b0048 !important;
}

.g-brd-indigo-bottom {
  border-bottom-color: #8b0048 !important;
}

.g-brd-indigo-left {
  border-left-color: #8b0048 !important;
}

.g-brd-indigo-right {
  border-right-color: #8b0048 !important;
}

/* Color Red */

.g-brd-red-top {
  border-top-color: #f00 !important;
}

.g-brd-red-bottom {
  border-bottom-color: #f00 !important;
}

.g-brd-red-left {
  border-left-color: #f00 !important;
}

.g-brd-red-right {
  border-right-color: #f00 !important;
}

/* Color Light Red */

.g-brd-lightred-top {
  border-top-color: #e64b3b !important;
}

.g-brd-lightred-bottom {
  border-bottom-color: #e64b3b !important;
}

.g-brd-lightred-left {
  border-left-color: #e64b3b !important;
}

.g-brd-lightred-right {
  border-right-color: #e64b3b !important;
}

/* Color Dark Red */

.g-brd-darkred-top {
  border-top-color: #a10f2b !important;
}

.g-brd-darkred-bottom {
  border-bottom-color: #a10f2b !important;
}

.g-brd-darkred-left {
  border-left-color: #a10f2b !important;
}

.g-brd-darkred-right {
  border-right-color: #a10f2b !important;
}

/* Color Purple */

.g-brd-purple-top {
  border-top-color: #9a69cb !important;
}

.g-brd-purple-bottom {
  border-bottom-color: #9a69cb !important;
}

.g-brd-purple-left {
  border-left-color: #9a69cb !important;
}

.g-brd-purple-right {
  border-right-color: #9a69cb !important;
}

/* Color Dark Purple */

.g-brd-darkpurple-top {
  border-top-color: #6639b6 !important;
}

.g-brd-darkpurple-bottom {
  border-bottom-color: #6639b6 !important;
}

.g-brd-darkpurple-left {
  border-left-color: #6639b6 !important;
}

.g-brd-darkpurple-right {
  border-right-color: #6639b6 !important;
}

/* Color Pink */

.g-brd-pink-top {
  border-top-color: #e81c62 !important;
}

.g-brd-pink-bottom {
  border-bottom-color: #e81c62 !important;
}

.g-brd-pink-left {
  border-left-color: #e81c62 !important;
}

.g-brd-pink-right {
  border-right-color: #e81c62 !important;
}

/* Color Orange */

.g-brd-orange-top {
  border-top-color: #e57d20 !important;
}

.g-brd-orange-bottom {
  border-bottom-color: #e57d20 !important;
}

.g-brd-orange-left {
  border-left-color: #e57d20 !important;
}

.g-brd-orange-right {
  border-right-color: #e57d20 !important;
}

/* Color Deep Orange */

.g-brd-deeporange-top {
  border-top-color: #fe541e !important;
}

.g-brd-deeporange-bottom {
  border-bottom-color: #fe541e !important;
}

.g-brd-deeporange-left {
  border-left-color: #fe541e !important;
}

.g-brd-deeporange-right {
  border-right-color: #fe541e !important;
}

/* Color Yellow */

.g-brd-yellow-top {
  border-top-color: #ebc71d !important;
}

.g-brd-yellow-bottom {
  border-bottom-color: #ebc71d !important;
}

.g-brd-yellow-left {
  border-left-color: #ebc71d !important;
}

.g-brd-yellow-right {
  border-right-color: #ebc71d !important;
}

/* Color Aqua */

.g-brd-aqua-top {
  border-top-color: #29d6e6 !important;
}

.g-brd-aqua-bottom {
  border-bottom-color: #29d6e6 !important;
}

.g-brd-aqua-left {
  border-left-color: #29d6e6 !important;
}

.g-brd-aqua-right {
  border-right-color: #29d6e6 !important;
}

/* Color Cyan */

.g-brd-cyan-top {
  border-top-color: #00bed6 !important;
}

.g-brd-cyan-bottom {
  border-bottom-color: #00bed6 !important;
}

.g-brd-cyan-left {
  border-left-color: #00bed6 !important;
}

.g-brd-cyan-right {
  border-right-color: #00bed6 !important;
}

/* Color Teal */

.g-brd-teal-top {
  border-top-color: #18ba9b !important;
}

.g-brd-teal-bottom {
  border-bottom-color: #18ba9b !important;
}

.g-brd-teal-left {
  border-left-color: #18ba9b !important;
}

.g-brd-teal-right {
  border-right-color: #18ba9b !important;
}

/* Color Brown */

.g-brd-brown-top {
  border-top-color: #9c8061 !important;
}

.g-brd-brown-bottom {
  border-bottom-color: #9c8061 !important;
}

.g-brd-brown-left {
  border-left-color: #9c8061 !important;
}

.g-brd-brown-right {
  border-right-color: #9c8061 !important;
}

/* Color Blue Gray */

.g-brd-bluegray-top {
  border-top-color: #585f69 !important;
}

.g-brd-bluegray-bottom {
  border-bottom-color: #585f69 !important;
}

.g-brd-bluegray-left {
  border-left-color: #585f69 !important;
}

.g-brd-bluegray-right {
  border-right-color: #585f69 !important;
}

/* O */

.g-brd-primary-top--hover:hover {
  border-top-color: #CAD105 !important;
}

.g-brd-primary-top--hover:hover::after {
  border-top-color: #CAD105;
}

.g-brd-primary-top--active.active {
  border-top-color: #CAD105 !important;
}

.g-brd-primary-top--active.active::after {
  border-top-color: #CAD105;
}

.g-brd-primary-bottom--hover:hover {
  border-bottom-color: #CAD105 !important;
}

.g-brd-primary-bottom--hover:hover::after {
  border-bottom-color: #CAD105;
}

.g-brd-primary-bottom--active.active {
  border-bottom-color: #CAD105 !important;
}

.g-brd-primary-bottom--active.active::after {
  border-bottom-color: #CAD105;
}

.g-brd-pinterest {
  border-color: #c8232c !important;
}

.g-brd-pinterest::after {
  border-color: #c8232c !important;
}

.g-brd-pinterest-top--hover:hover {
  border-top-color: #c8232c !important;
}

.g-brd-pinterest-top--hover:hover::after {
  border-top-color: #c8232c;
}

.g-brd-pinterest-top--active.active {
  border-top-color: #c8232c !important;
}

.g-brd-pinterest-top--active.active::after {
  border-top-color: #c8232c;
}

.g-brd-pinterest-bottom--hover:hover {
  border-bottom-color: #c8232c !important;
}

.g-brd-pinterest-bottom--hover:hover::after {
  border-bottom-color: #c8232c;
}

.g-brd-pinterest-bottom--active.active {
  border-bottom-color: #c8232c !important;
}

.g-brd-pinterest-bottom--active.active::after {
  border-bottom-color: #c8232c;
}

/*------------------------------------
  Social Border Colors
------------------------------------*/

/* Facebook */

.g-brd-facebook {
  border-color: #3b5998;
}

.g-brd-facebook--hover:hover {
  border-color: #3b5998 !important;
}

/* Twitter */

.g-brd-twitter {
  border-color: #00acee;
}

.g-brd-twitter--hover:hover {
  border-color: #00acee !important;
}

/* Skype */

.g-brd-skype {
  border-color: #00aff0;
}

.g-brd-skype--hover:hover {
  border-color: #00aff0 !important;
}

/* Pinterest */

.g-brd-pinterest {
  border-color: #c8232c;
}

.g-brd-pinterest--hover:hover {
  border-color: #c8232c !important;
}

/* Vine */

.g-brd-vine {
  border-color: #00bf8f;
}

.g-brd-vine--hover:hover {
  border-color: #00bf8f !important;
}

/* Youtube */

.g-brd-youtube {
  border-color: #c4302b;
}

.g-brd-youtube--hover:hover {
  border-color: #c4302b !important;
}

/* Google plus */

.g-brd-google-plus {
  border-color: #dd4b39;
}

.g-brd-google-plus--hover:hover {
  border-color: #dd4b39 !important;
}

/* Dribbble */

.g-brd-dribbble {
  border-color: #ea4c89;
}

.g-brd-dribbble--hover:hover {
  border-color: #ea4c89 !important;
}

/* VK */

.g-brd-vk {
  border-color: #2b587a;
}

.g-brd-vk--hover:hover {
  border-color: #2b587a !important;
}

/* Linkedin */

.g-brd-linkedin {
  border-color: #0e76a8;
}

.g-brd-linkedin--hover:hover {
  border-color: #0e76a8 !important;
}

/* Instagram */

.g-brd-instagram {
  border-color: #3f729b;
}

.g-brd-instagram--hover:hover {
  border-color: #3f729b !important;
}

/*------------------------------------
  Border Gradient Colors
------------------------------------*/

/* Cyan Gradient */

.g-brd-cyan-gradient-opacity-v1 {
  -o-border-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%);
     border-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55) 0%, rgba(0, 190, 214, 0.6) 100%);
  border-image-slice: 1;
}

/*------------------------------------
  Typography Font Family
------------------------------------*/

.g-font-secondary {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.g-font-code {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.g-font-niconne {
  font-family: "Niconne", cursive;
}

/*------------------------------------
  Typography Font Size
------------------------------------*/

.g-font-size-default {
  font-size: 1rem !important;
}

.g-font-size-70x {
  font-size: 70% !important;
}

.g-font-size-75x {
  font-size: 75% !important;
}

.g-font-size-80x {
  font-size: 80% !important;
}

.g-font-size-85x {
  font-size: 85% !important;
}

.g-font-size-90x {
  font-size: 90% !important;
}

.g-font-size-95x {
  font-size: 95% !important;
}

.g-font-size-0 {
  font-size: 0;
}

.g-font-size-5 {
  font-size: 0.3571428571rem !important;
}

.g-font-size-8 {
  font-size: 0.5714285714rem !important;
}

.g-font-size-9 {
  font-size: 0.6428571429rem !important;
}

.g-font-size-10 {
  font-size: 0.7142857143rem !important;
}

.g-font-size-11 {
  font-size: 0.7857142857rem !important;
}

.g-font-size-12 {
  font-size: 0.8571428571rem !important;
}

.g-font-size-13 {
  font-size: 0.9285714286rem !important;
}

.g-font-size-14 {
  font-size: 1rem !important;
}

.g-font-size-15 {
  font-size: 1.0714285714rem !important;
}

.g-font-size-16 {
  font-size: 1.1428571429rem !important;
}

.g-font-size-17 {
  font-size: 1.2142857143rem !important;
}

.g-font-size-18 {
  font-size: 1.2857142857rem !important;
}

.g-font-size-20 {
  font-size: 1.4285714286rem !important;
}

.g-font-size-22 {
  font-size: 1.5714285714rem !important;
}

.g-font-size-23 {
  font-size: 1.6428571429rem !important;
}

.g-font-size-24 {
  font-size: 1.7142857143rem !important;
}

.g-font-size-25 {
  font-size: 1.7857142857rem !important;
}

.g-font-size-26 {
  font-size: 1.8571428571rem !important;
}

.g-font-size-27 {
  font-size: 1.9285714286rem !important;
}

.g-font-size-28 {
  font-size: 2rem !important;
}

.g-font-size-30 {
  font-size: 2.1428571429rem !important;
}

.g-font-size-32 {
  font-size: 2.2857142857rem !important;
}

.g-font-size-33 {
  font-size: 2.3571428571rem !important;
}

.g-font-size-35 {
  font-size: 2.5rem !important;
}

.g-font-size-36 {
  font-size: 2.5714285714rem !important;
}

.g-font-size-38 {
  font-size: 2.7142857143rem !important;
}

.g-font-size-40 {
  font-size: 2.8571428571rem !important;
}

.g-font-size-42 {
  font-size: 3rem !important;
}

.g-font-size-45 {
  font-size: 3.2142857143rem !important;
}

.g-font-size-46 {
  font-size: 3.2857142857rem !important;
}

.g-font-size-48 {
  font-size: 3.4285714286rem !important;
}

.g-font-size-50 {
  font-size: 3.5714285714rem !important;
}

.g-font-size-55 {
  font-size: 3.9285714286rem !important;
}

.g-font-size-56 {
  font-size: 4rem !important;
}

.g-font-size-60 {
  font-size: 4.2857142857rem !important;
}

.g-font-size-65 {
  font-size: 4.6428571429rem !important;
}

.g-font-size-70 {
  line-height: 70px;
  font-size: 5rem !important;
}

.g-font-size-75 {
  font-size: 5.3571428571rem !important;
}

.g-font-size-76 {
  font-size: 5.4285714286rem !important;
}

.g-font-size-80 {
  font-size: 5.7142857143rem !important;
}

.g-font-size-86 {
  font-size: 6.1428571429rem !important;
}

.g-font-size-90 {
  font-size: 6.4285714286rem !important;
}

.g-font-size-120 {
  font-size: 8.5714285714rem !important;
}

.g-font-size-200 {
  line-height: 210px;
  font-size: 14.2857142857rem !important;
}

.g-font-size-180 {
  font-size: 12.8571428571rem !important;
}

@media (min-width: 576px) {
  .g-font-size-20--sm {
    font-size: 1.4285714286rem !important;
  }

  .g-font-size-25--sm {
    font-size: 1.7857142857rem !important;
  }

  .g-font-size-40--sm {
    font-size: 2.8571428571rem !important;
  }

  .g-font-size-50--sm {
    font-size: 3.5714285714rem !important;
  }

  .g-font-size-240--sm {
    font-size: 17.1428571429rem !important;
  }
}

@media (min-width: 768px) {
  .g-font-size-default--md {
    font-size: 1rem !important;
  }

  .g-font-size-12--md {
    font-size: 0.8571428571rem !important;
  }

  .g-font-size-16--md {
    font-size: 1.1428571429rem !important;
  }

  .g-font-size-18--md {
    font-size: 1.2857142857rem !important;
  }

  .g-font-size-20--md {
    font-size: 1.4285714286rem !important;
  }

  .g-font-size-24--md {
    font-size: 1.7142857143rem !important;
  }

  .g-font-size-25--md {
    font-size: 1.7857142857rem !important;
  }

  .g-font-size-26--md {
    font-size: 1.8571428571rem !important;
  }

  .g-font-size-27--md {
    font-size: 1.9285714286rem !important;
  }

  .g-font-size-28--md {
    font-size: 2rem !important;
  }

  .g-font-size-30--md {
    font-size: 2.1428571429rem !important;
  }

  .g-font-size-32--md {
    font-size: 2.2857142857rem !important;
  }

  .g-font-size-35--md {
    font-size: 2.5rem !important;
  }

  .g-font-size-36--md {
    font-size: 2.5714285714rem !important;
  }

  .g-font-size-40--md {
    font-size: 2.8571428571rem !important;
  }

  .g-font-size-45--md {
    font-size: 3.2142857143rem !important;
  }

  .g-font-size-46--md {
    font-size: 3.2857142857rem !important;
  }

  .g-font-size-48--md {
    font-size: 3.4285714286rem !important;
  }

  .g-font-size-50--md {
    font-size: 3.5714285714rem !important;
  }

  .g-font-size-55--md {
    font-size: 3.9285714286rem !important;
  }

  .g-font-size-56--md {
    font-size: 4rem !important;
  }

  .g-font-size-60--md {
    font-size: 4.2857142857rem !important;
  }

  .g-font-size-65--md {
    font-size: 4.6428571429rem !important;
  }

  .g-font-size-70--md {
    font-size: 5rem !important;
  }

  .g-font-size-75--md {
    font-size: 5.3571428571rem !important;
  }

  .g-font-size-76--md {
    font-size: 5.4285714286rem !important;
  }

  .g-font-size-90--md {
    font-size: 6.4285714286rem !important;
  }

  .g-font-size-130--md {
    font-size: 9.2857142857rem !important;
  }
}

@media (min-width: 992px) {
  .g-font-size-default--lg {
    font-size: 1rem !important;
  }

  .g-font-size-16--lg {
    font-size: 1.1428571429rem !important;
  }

  .g-font-size-18--lg {
    font-size: 1.2857142857rem !important;
  }

  .g-font-size-26--lg {
    font-size: 1.8571428571rem !important;
  }

  .g-font-size-32--lg {
    font-size: 2.2857142857rem !important;
  }

  .g-font-size-35--lg {
    font-size: 2.5rem !important;
  }

  .g-font-size-36--lg {
    font-size: 2.5714285714rem !important;
  }

  .g-font-size-42--lg {
    font-size: 3rem !important;
  }

  .g-font-size-60--lg {
    font-size: 4.2857142857rem !important;
  }

  .g-font-size-75--lg {
    font-size: 5.3571428571rem !important;
  }

  .g-font-size-76--lg {
    font-size: 5.4285714286rem !important;
  }

  .g-font-size-420--lg {
    font-size: 30rem !important;
  }
}

@media (min-width: 1200px) {
  .g-font-size-17--xl {
    font-size: 1.2142857143rem !important;
  }
}

@media (max-width: 576px-1) {
  .g-font-size-25 {
    font-size: 1.7857142857rem !important;
  }
}

/*------------------------------------
  Typography Font Weight
------------------------------------*/

.g-font-weight-100 {
  font-weight: 100 !important;
}

.g-font-weight-200 {
  font-weight: 200 !important;
}

.g-font-weight-300 {
  font-weight: 300 !important;
}

.g-font-weight-400 {
  font-weight: 400 !important;
}

.g-font-weight-500 {
  font-weight: 500 !important;
}

.g-font-weight-600 {
  font-weight: 600 !important;
}

.g-font-weight-700 {
  font-weight: 700 !important;
}

.g-font-weight-800 {
  font-weight: 800 !important;
}

.g-font-weight-900 {
  font-weight: 900 !important;
}

@media (min-width: 768px) {
  .g-font-weight-100--md {
    font-weight: 100 !important;
  }

  .g-font-weight-200--md {
    font-weight: 200 !important;
  }

  .g-font-weight-300--md {
    font-weight: 300 !important;
  }

  .g-font-weight-400--md {
    font-weight: 400 !important;
  }

  .g-font-weight-500--md {
    font-weight: 500 !important;
  }

  .g-font-weight-600--md {
    font-weight: 600 !important;
  }

  .g-font-weight-700--md {
    font-weight: 700 !important;
  }

  .g-font-weight-800--md {
    font-weight: 800 !important;
  }

  .g-font-weight-900--md {
    font-weight: 900 !important;
  }
}

/*------------------------------------
  Typography Text Transform
------------------------------------*/

.g-text-transform-none {
  text-transform: none !important;
}

/*------------------------------------
  Typography Text Decoration
------------------------------------*/

.g-text-underline {
  text-decoration: underline;
}

.g-text-underline--none--hover:focus,
.g-text-underline--none--hover:hover {
  text-decoration: none;
}

.g-text-strike {
  text-decoration: line-through;
}

/*------------------------------------
  Typography Letter Spacing
------------------------------------*/

.g-letter-spacing-minus-2 {
  letter-spacing: -0.1428571429rem;
}

.g-letter-spacing-0_5 {
  letter-spacing: 0.0357142857rem;
}

.g-letter-spacing-1_5 {
  letter-spacing: 0.1071428571rem;
}

.g-letter-spacing-0 {
  letter-spacing: 0px;
}

.g-letter-spacing-1 {
  letter-spacing: 0.0714285714rem;
}

.g-letter-spacing-2 {
  letter-spacing: 0.1428571429rem;
}

.g-letter-spacing-3 {
  letter-spacing: 0.2142857143rem;
}

.g-letter-spacing-4 {
  letter-spacing: 0.2857142857rem;
}

.g-letter-spacing-5 {
  letter-spacing: 0.3571428571rem;
}

.g-letter-spacing-6 {
  letter-spacing: 0.4285714286rem;
}

.g-letter-spacing-7 {
  letter-spacing: 0.5rem;
}

.g-letter-spacing-8 {
  letter-spacing: 0.5714285714rem;
}

.g-letter-spacing-9 {
  letter-spacing: 0.6428571429rem;
}

.g-letter-spacing-10 {
  letter-spacing: 0.7142857143rem;
}

.g-letter-spacing-11 {
  letter-spacing: 0.7857142857rem;
}

.g-letter-spacing-12 {
  letter-spacing: 0.8571428571rem;
}

/*------------------------------------
  Typography Line Height
------------------------------------*/

.g-line-height-0 {
  line-height: 0 !important;
}

.g-line-height-0_7 {
  line-height: 0.7 !important;
}

.g-line-height-0_8 {
  line-height: 0.8 !important;
}

.g-line-height-0_9 {
  line-height: 0.9 !important;
}

.g-line-height-1 {
  line-height: 1 !important;
}

.g-line-height-1_1 {
  line-height: 1.1 !important;
}

.g-line-height-1_2 {
  line-height: 1.2 !important;
}

.g-line-height-1_3 {
  line-height: 1.3 !important;
}

.g-line-height-1_4 {
  line-height: 1.4 !important;
}

.g-line-height-1_5 {
  line-height: 1.5 !important;
}

.g-line-height-1_6 {
  line-height: 1.6 !important;
}

.g-line-height-1_8 {
  line-height: 1.8 !important;
}

.g-line-height-2 {
  line-height: 2 !important;
}

/*------------------------------------
  Typography Font Style
------------------------------------*/

.g-font-style-normal {
  font-style: normal;
}

.g-font-style-italic {
  font-style: italic;
}

/*------------------------------------
  List Style Types
------------------------------------*/

.g-list-style-circle {
  list-style-type: circle;
}

.g-list-style-disc {
  list-style-type: disc;
}

.g-list-style-square {
  list-style-type: square;
}

.g-list-style-lower-roman {
  list-style-type: lower-roman;
}

.g-list-style-upper-roman {
  list-style-type: upper-roman;
}

.g-list-style-lower-latin {
  list-style-type: lower-latin;
}

.g-list-style-upper-latin {
  list-style-type: upper-latin;
}

/*------------------------------------
  Text Types
------------------------------------*/

.g-text-break-word {
  word-wrap: break-word;
}

/*------------------------------------
  Quotes
------------------------------------*/

/* Quote v1 */

.u-quote-v1::before {
  content: "\201C";
  font-size: 36px;
  line-height: 0.75em;
  text-align: center;
  font-weight: 600;
  display: block;
}

.u-quote-v1::after {
  display: none;
}

/*------------------------------------
  Positions
------------------------------------*/

.g-pos-rel {
  position: relative !important;
}

.g-pos-abs {
  position: absolute !important;
}

.g-pos-stc {
  position: static !important;
}

.g-pos-fix {
  position: fixed !important;
}

@media (min-width: 576px) {
  .g-pos-rel--sm {
    position: relative !important;
  }

  .g-pos-fix--sm {
    position: fixed !important;
  }

  .g-pos-abs--sm {
    position: absolute !important;
  }

  .g-pos-stc--sm {
    position: static !important;
  }
}

@media (min-width: 768px) {
  .g-pos-rel--md {
    position: relative !important;
  }

  .g-pos-fix--md {
    position: fixed !important;
  }

  .g-pos-abs--md {
    position: absolute !important;
  }

  .g-pos-stc--sm {
    position: static !important;
  }
}

@media (min-width: 992px) {
  .g-pos-rel--lg {
    position: relative !important;
  }

  .g-pos-fix--lg {
    position: fixed !important;
  }

  .g-pos-abs--lg {
    position: absolute !important;
  }

  .g-pos-stc--lg {
    position: static !important;
  }
}

/*------------------------------------
  Position Spaces
------------------------------------*/

/* Top */

.g-top-auto {
  /* P */
  top: auto;
}

.g-parent:hover .g-top-auto--parent-hover {
  top: auto;
}

.g-top-0 {
  top: 0 !important;
}

.g-top-0--hover:hover {
  top: 0 !important;
}

.g-parent:hover .g-top-0--parent-hover {
  top: 0 !important;
}

.g-top-1 {
  top: 0.0714285714rem;
}

.g-top-2 {
  top: 0.1428571429rem;
}

.g-top-3 {
  top: 0.2142857143rem;
}

.g-top-5 {
  top: 0.3571428571rem !important;
}

.g-top-7 {
  top: 0.5rem !important;
}

.g-top-10 {
  top: 0.7142857143rem !important;
}

.g-top-12 {
  top: 0.8571428571rem !important;
}

.g-top-15 {
  top: 1.0714285714rem;
}

.g-top-18 {
  top: 1.2857142857rem;
}

.g-top-20 {
  top: 1.4285714286rem;
}

.g-top-25 {
  top: 1.7857142857rem;
}

.g-top-30 {
  top: 2.1428571429rem;
}

.g-top-35 {
  top: 2.5rem;
}

.g-top-55 {
  top: 3.9285714286rem;
}

.g-top-65 {
  top: 4.6428571429rem;
}

.g-top-100 {
  top: 7.1428571429rem;
}

.g-top-15x {
  top: 15%;
}

.g-top-20x {
  top: 20%;
}

.g-top-25x {
  top: 25%;
}

.g-top-30x {
  top: 30%;
}

.g-top-35x {
  top: 35%;
}

.g-top-50x {
  top: 50%;
}

.g-top-100x {
  top: 100%;
}

/* Top Minis */

.g-top-minus-1 {
  top: -0.0714285714rem;
}

.g-top-minus-2 {
  top: -0.1428571429rem;
}

.g-top-minus-3 {
  top: -0.2142857143rem !important;
}

.g-top-minus-4 {
  top: -0.2857142857rem;
}

.g-top-minus-5 {
  top: -0.3571428571rem;
}

.g-top-minus-6 {
  top: -0.4285714286rem;
}

.g-top-minus-8 {
  top: -0.5714285714rem;
}

.g-top-minus-10 {
  top: -0.7142857143rem;
}

.g-top-minus-15 {
  top: -1.0714285714rem;
}

.g-top-minus-20 {
  top: -1.4285714286rem;
}

.g-top-minus-30 {
  top: -2.1428571429rem;
}

.g-top-minus-35 {
  top: -2.5rem;
}

.g-top-minus-40 {
  top: -2.8571428571rem;
}

.g-top-minus-70 {
  top: -5rem;
}

.g-top-minus-120 {
  top: -8.5714285714rem;
}

.g-top-minus-25x {
  top: -25%;
}

.g-top-minus-80x {
  top: -80%;
}

/* Left */

.g-left-auto {
  /* P */
  left: auto !important;
}

.g-left-0 {
  left: 0;
}

.g-left-0--hover:hover {
  left: 0;
}

.g-parent:hover .g-left-0--parent-hover {
  left: 0;
}

.g-left-2 {
  left: 0.1428571429rem;
}

.g-left-5 {
  left: 0.3571428571rem;
}

.g-left-10 {
  left: 0.7142857143rem;
}

.g-left-15 {
  left: 1.0714285714rem !important;
}

.g-left-20 {
  left: 1.4285714286rem;
}

.g-left-30 {
  left: 2.1428571429rem;
}

.g-left-40 {
  left: 2.8571428571rem;
  /* O */
}

.g-left-45 {
  left: 3.2142857143rem;
  /* P */
}

.g-left-75 {
  left: 5.3571428571rem;
}

.g-left-110 {
  left: 7.8571428571rem;
}

.g-left-130 {
  left: 9.2857142857rem;
}

.g-left-200 {
  left: 14.2857142857rem;
}

.g-left-15x {
  left: 15%;
}

.g-left-35x {
  left: 35%;
}

.g-left-50x {
  left: 50%;
}

.g-left-100x {
  left: 100%;
}

/* Left Minus */

.g-left-minus-3 {
  left: -0.2142857143rem;
}

.g-left-minus-6 {
  left: -0.4285714286rem;
}

.g-left-minus-7 {
  left: -0.5rem;
}

.g-left-minus-10 {
  left: -0.7142857143rem;
}

.g-left-minus-15 {
  left: -1.0714285714rem;
}

.g-left-minus-20 {
  left: -1.4285714286rem;
}

.g-left-minus-25 {
  left: -1.7857142857rem;
}

.g-left-minus-30 {
  left: -2.1428571429rem;
}

.g-left-minus-40 {
  left: -2.8571428571rem;
}

.g-left-minus-50 {
  left: -3.5714285714rem;
}

.g-parent:hover .g-left-minus-50--parent-hover {
  left: -3.5714285714rem;
}

/* Right */

.g-right-auto {
  /* P */
  right: auto;
}

.g-right-0 {
  right: 0 !important;
}

.g-right-0--hover:hover {
  right: 0 !important;
}

.g-parent:hover .g-right-0--parent-hover {
  right: 0 !important;
}

.g-right-5 {
  right: 0.3571428571rem !important;
}

.g-right-7 {
  right: 0.5rem !important;
}

.g-right-10 {
  right: 0.7142857143rem !important;
}

.g-right-12 {
  right: 0.8571428571rem !important;
}

.g-right-14 {
  right: 1rem !important;
}

.g-right-15 {
  right: 1.0714285714rem !important;
}

.g-right-20 {
  right: 1.4285714286rem;
}

.g-right-30 {
  right: 2.1428571429rem;
}

.g-right-40 {
  right: 2.8571428571rem;
}

.g-right-45 {
  right: 3.2142857143rem;
  /* P */
}

.g-right-55 {
  right: 3.9285714286rem;
  /* O */
}

.g-right-65 {
  right: 4.6428571429rem;
}

.g-right-100 {
  right: 7.1428571429rem;
}

.g-right-110 {
  right: 7.8571428571rem;
}

.g-right-130 {
  right: 9.2857142857rem;
}

.g-right-15x {
  right: 15%;
}

.g-right-35x {
  right: 35%;
}

.g-right-50x {
  right: 50%;
}

.g-right-100x {
  right: 100%;
}

/* Right Minus */

.g-right-minus-3 {
  right: -0.2142857143rem !important;
}

.g-right-minus-6 {
  right: -0.4285714286rem;
}

.g-right-minus-5 {
  right: -0.3571428571rem;
}

.g-right-minus-10 {
  right: -0.7142857143rem;
}

.g-right-minus-13 {
  right: -0.9285714286rem;
}

.g-right-minus-15 {
  right: -1.0714285714rem;
}

.g-right-minus-20 {
  right: -1.4285714286rem;
}

.g-right-minus-25 {
  right: -1.7857142857rem;
}

.g-right-minus-40 {
  right: -2.8571428571rem;
}

.g-right-minus-50 {
  right: -3.5714285714rem;
}

/* Bottom */

.g-bottom-auto {
  /* P */
  bottom: auto;
}

.g-bottom-0 {
  bottom: 0;
}

.g-bottom-0--hover:hover {
  bottom: 0;
}

.g-parent:hover .g-bottom-0--parent-hover {
  bottom: 0;
}

.g-bottom-6 {
  bottom: 0.4285714286rem;
}

.g-bottom-10 {
  bottom: 0.7142857143rem;
}

.g-bottom-20 {
  bottom: 1.4285714286rem;
}

.g-bottom-30 {
  bottom: 2.1428571429rem;
}

.g-bottom-40 {
  bottom: 2.8571428571rem;
}

.g-bottom-50 {
  bottom: 3.5714285714rem;
}

.g-parent:hover .g-bottom-50--parent-hover {
  bottom: 3.5714285714rem;
}

.g-bottom-60 {
  bottom: 4.2857142857rem;
}

.g-bottom-80 {
  bottom: 5.7142857143rem;
}

.g-bottom-minus-20 {
  bottom: -1.4285714286rem;
}

.g-bottom-minus-30 {
  bottom: -2.1428571429rem;
}

.g-bottom-minus-40 {
  bottom: -2.8571428571rem;
}

.g-bottom-minus-70 {
  bottom: -5rem;
}

.g-bottom-minus-35x {
  bottom: -35%;
}

.g-bottom-15x {
  bottom: 15%;
}

.g-bottom-minus-25x {
  bottom: -25%;
}

.g-bottom-100x {
  bottom: 100%;
}

/* Z */

@media (min-width: 576px) {
  .g-top-auto--sm {
    top: auto;
  }

  .g-left-auto--sm {
    left: auto;
  }

  .g-left-minus-20--sm {
    left: -20px;
  }

  .g-right-minus-20--sm {
    right: -20px;
  }
}

/* O */

@media (min-width: 768px) {
  .g-right-0--md {
    right: 0 !important;
  }

  .g-left-0--md {
    left: 0 !important;
  }

  .g-right-minus-15--md {
    right: -1.0714285714rem;
  }

  .g-left-minus-15--md {
    left: -1.0714285714rem;
  }

  .g-top-minus-20--md {
    top: -1.4285714286rem;
  }

  .g-right-minus-25--md {
    right: -1.7857142857rem;
  }

  .g-right-100--md {
    right: 7.1428571429rem;
  }

  .g-bottom-minus-50--md {
    bottom: -3.5714285714rem;
  }

  .g-left-auto--md {
    left: auto !important;
  }

  .g-right-auto--md {
    right: auto !important;
  }

  .g-left-minus-25--md {
    left: -1.7857142857rem;
  }

  .g-left-130--md {
    left: 9.2857142857rem !important;
  }

  .g-left-35x--md {
    left: 35%;
  }

  .g-left-50x--md {
    left: 50%;
  }

  .g-right-130--md {
    right: 9.2857142857rem !important;
  }

  .g-right-35x--md {
    right: 35%;
  }

  .g-right-50x--md {
    right: 50%;
  }
}

@media (min-width: 992px) {
  .g-top-0--lg {
    top: 0 !important;
  }

  .g-right-0--lg {
    right: 0;
  }

  .g-left-minus-35--lg {
    left: -2.5rem;
  }

  .g-left-40--lg {
    left: 2.8571428571rem;
  }

  .g-right-minus-35--lg {
    right: -2.5rem;
  }

  .g-right-40--lg {
    right: 2.8571428571rem;
  }
}

/*------------------------------------
  Block Alignments
------------------------------------*/

/* Absolute (Position, X, Y) */

.g-absolute-centered {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
}

.g-absolute-centered--x {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
}

@media (min-width: 576px) {
  .g-absolute-centered--x--sm {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-backface-visibility: hidden;
  }
}

@media (min-width: 768px) {
  .g-absolute-centered--x--md {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-backface-visibility: hidden;
  }
}

.g-absolute-centered--y {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}

@media (min-width: 768px) {
  .g-absolute-centered--y--md {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}

@media (min-width: 992px) {
  .g-absolute-centered--y--lg {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    -webkit-backface-visibility: hidden;
  }
}

/* O */

.g-transform-origin--top-left {
  transform-origin: top left;
}

.g-transform-origin--top-right {
  transform-origin: top right;
}

.g-absolute-centered--y--scl-0_6 {
  position: absolute;
  top: 50%;
  transform: scale(0.6) translateY(-50%);
}

/* Relative (Position, X, Y) */

.g-relative-centered {
  position: relative;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
}

.g-relative-centered--x {
  position: relative;
  left: 50% !important;
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
}

.g-relative-centered--y {
  position: relative;
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-backface-visibility: hidden;
}

/* Flex centered */

.g-flex-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-flex-centered-item {
  flex: 1;
}

.g-flex-centered-item--top {
  align-self: flex-start;
}

.g-flex-centered-item--bottom {
  align-self: flex-end;
}

/* Flex right */

.g-flex-right--xs {
  justify-content: flex-end;
}

/* Flex middle */

.g-flex-middle {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.g-flex-middle-item {
  margin-top: auto;
  margin-bottom: auto;
}

.g-flex-middle-item--top {
  margin-top: 0;
  margin-bottom: 0;
}

.g-flex-middle-item--bottom {
  margin-top: auto;
  margin-bottom: 0;
}

.g-flex-middle-item--fixed {
  flex: none;
  max-width: 50%;
}

@media (min-width: 768px) {
  /* Flex right */

  .g-flex-right--md {
    justify-content: flex-end;
  }

  .g-flex-centered--md {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-absolute-centered--y--scl-1--md {
    position: absolute;
    top: 50%;
    transform: scale(1) translateY(-50%);
  }
}

@media (min-width: 576px) {
  .g-absolute-centered--sm {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
  }

  .g-absolute-centered--x-sm--reset {
    position: static !important;
    left: auto !important;
    transform: translateX(0) !important;
  }
}

@media (min-width: 768px) {
  .g-absolute-centered--md {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
  }
}

@media (min-width: 992px) {
  .g-absolute-centered--x--lg {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-backface-visibility: hidden;
  }

  .g-flex-centered--lg {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*------------------------------------
  Alignments
------------------------------------*/

.g-valign-super {
  vertical-align: super !important;
}

.g-valign-sub {
  vertical-align: sub !important;
}

.g-valign-top {
  vertical-align: top !important;
}

.g-valign-middle {
  vertical-align: middle !important;
}

.g-valign-bottom {
  vertical-align: bottom !important;
}

/*------------------------------------
  Blur
------------------------------------*/

.g-blur-30 {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

.g-blur-30--hover:hover {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

.g-parent:hover .g-blur-30--parent-hover {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

/*------------------------------------
  Box-shadows
------------------------------------*/

.g-box-shadow-none {
  box-shadow: none !important;
}

/*------------------------------------
  Clear
------------------------------------*/

.g-clear {
  clear: both;
}

.g-clear--left {
  clear: left;
}

.g-clear--right {
  clear: right;
}

/*------------------------------------
  Cursors
------------------------------------*/

.g-cursor-pointer {
  cursor: pointer;
}

/*------------------------------------
  Overflows
------------------------------------*/

.g-overflow-hidden {
  overflow: hidden !important;
}

.g-overflow-visible {
  overflow: visible;
}

.g-overflow-x-hidden {
  overflow-x: hidden;
}

.g-overflow-x-auto {
  overflow-x: auto !important;
}

.g-overflow-x-scroll {
  overflow-x: scroll;
}

.g-overflow-y-auto {
  overflow-y: auto;
}

.g-overflow-y-hidden {
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .g-overflow-x-visible--md {
    overflow-x: visible;
  }
}

@media (min-width: 992px) {
  .g-overflow-x-visible--lg {
    overflow-x: visible;
  }
}

/*------------------------------------
  Transitions
------------------------------------*/

/*.g-transition {
  &-0_2 {
    transition: .2s ease-out;
  }
  &-0_3 {
    transition: .3s ease-out;
  }
  &-0_6 {
    transition: .6s ease-out;
    &-ease {
      transition: .6s ease;
    }
  }
}

[class*="g-color-"][class*="--hover"] {
  transition: color .2s ease-out;
}
[class*="g-bg-"][class*="--hover"] {
  transition: background-color .3s ease-out;
}
[class*="g-color-"][class*="--hover"][class*="g-bg-"][class*="--hover"] {
  transition: .3s ease-out;
}*/

[class*=g-transition] {
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
}

[class*=g-transition]::before,
[class*=g-transition]::after {
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
}

svg[class*=g-transition] path,
svg[class*=g-transition] polygon {
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
}

.g-transition-0 {
  transition-duration: 0s;
}

.g-transition-0::before,
.g-transition-0::after {
  transition-duration: 0s;
}

svg.g-transition-0 path,
svg.g-transition-0 polygon {
  transition-duration: 0s;
}

.g-transition-0_2 {
  transition-duration: 0.2s;
}

.g-transition-0_2::before,
.g-transition-0_2::after {
  transition-duration: 0.2s;
}

svg.g-transition-0_2 path,
svg.g-transition-0_2 polygon {
  transition-duration: 0.2s;
}

.g-transition-0_3 {
  transition-duration: 0.3s;
}

.g-transition-0_3::before,
.g-transition-0_3::after {
  transition-duration: 0.3s;
}

svg.g-transition-0_3 path,
svg.g-transition-0_3 polygon {
  transition-duration: 0.3s;
}

.g-transition-0_5 {
  transition-duration: 0.5s;
}

.g-transition-0_5::before,
.g-transition-0_5::after {
  transition-duration: 0.5s;
}

svg.g-transition-0_5 path,
svg.g-transition-0_5 polygon {
  transition-duration: 0.5s;
}

.g-transition-0_6 {
  transition-duration: 0.6s;
}

.g-transition-0_6::before,
.g-transition-0_6::after {
  transition-duration: 0.6s;
}

svg.g-transition-0_6 path,
svg.g-transition-0_6 polygon {
  transition-duration: 0.6s;
}

.g-transition-delay-0_11 {
  transition-delay: 0.11s;
}

.g-transition-delay-0_11::before,
.g-transition-delay-0_11::after {
  transition-delay: 0.11s;
}

svg.g-transition-0_11 path,
svg.g-transition-0_11 polygon {
  transition-duration: 0.11s;
}

.g-transition-delay-0_2 {
  transition-delay: 0.2s;
}

.g-transition-delay-0_2::before,
.g-transition-delay-0_2::after {
  transition-delay: 0.2s;
}

svg.g-transition-delay-0_2 path,
svg.g-transition-delay-0_2 polygon {
  transition-delay: 0.2s;
}

.g-transition-delay-0_45 {
  transition-delay: 0.45s;
}

.g-transition-delay-0_45::before,
.g-transition-delay-0_45::after {
  transition-delay: 0.45s;
}

svg.g-transition-delay-0_45 path,
svg.g-transition-delay-0_45 polygon {
  transition-delay: 0.45s;
}

.g-transition--ease-out {
  transition-timing-function: ease-out;
}

.g-transition--ease-out::before,
.g-transition--ease-out::after {
  transition-timing-function: ease-out;
}

svg.g-transition--ease-out path,
svg.g-transition--ease-out polygon {
  transition-timing-function: ease-out;
}

.g-transition--ease-in {
  transition-timing-function: ease-in;
}

.g-transition--ease-in::before,
.g-transition--ease-in::after {
  transition-timing-function: ease-in;
}

svg.g-transition--ease-in path,
svg.g-transition--ease-in polygon {
  transition-timing-function: ease-in;
}

.g-transition--ease-in-out {
  transition-timing-function: ease-in-out;
}

.g-transition--ease-in-out::before,
.g-transition--ease-in-out::after {
  transition-timing-function: ease-in-out;
}

svg.g-transition--ease-in-out path,
svg.g-transition--ease-in-out polygon {
  transition-timing-function: ease-in-out;
}

.g-transition--linear {
  transition-timing-function: linear;
}

.g-transition--linear::before,
.g-transition--linear::after {
  transition-timing-function: linear;
}

svg.g-transition--linear path,
svg.g-transition--linear polygon {
  transition-timing-function: linear;
}

/*------------------------------------
  Transforms
------------------------------------*/

.g-transform-scale-0_5 {
  transform: scale(0.5);
}

.g-transform-scale-0_5--hover:hover {
  transform: scale(0.5);
}

.g-parent:hover .g-transform-scale-0_5--parent-hover {
  transform: scale(0.5);
}

.g-transform-scale-0_8 {
  transform: scale(0.8);
}

.g-transform-scale-0_8--hover:hover {
  transform: scale(0.8);
}

.g-parent:hover .g-transform-scale-0_8--parent-hover {
  transform: scale(0.8);
}

.g-transform-scale-0_85 {
  transform: scale(0.85);
}

.g-transform-scale-0_85--hover:hover {
  transform: scale(0.85);
}

.g-parent:hover .g-transform-scale-0_85--parent-hover {
  transform: scale(0.85);
}

.g-transform-scale-0_9 {
  transform: scale(0.9);
}

.g-transform-scale-0_9--hover:hover {
  transform: scale(0.9);
}

.g-parent:hover .g-transform-scale-0_9--parent-hover {
  transform: scale(0.9);
}

.g-transform-scale-1 {
  transform: scale(1);
}

.g-transform-scale-1--hover:hover {
  transform: scale(1);
}

.g-parent:hover .g-transform-scale-1--parent-hover {
  transform: scale(1);
}

.g-transform-scale-1_05 {
  transform: scale3d(1.05, 1.05, 1.05);
}

.g-transform-scale-1_05--hover:hover {
  transform: scale3d(1.05, 1.05, 1.05);
  z-index: 2;
}

.g-parent:hover .g-transform-scale-1_05--parent-hover {
  transform: scale3d(1.1, 1.1, 1.1);
}

.g-transform-scale-1_1 {
  transform: scale3d(1.1, 1.1, 1.1);
}

.g-transform-scale-1_1--hover:hover {
  transform: scale3d(1.1, 1.1, 1.1);
  z-index: 2;
}

.g-parent:hover .g-transform-scale-1_1--parent-hover {
  transform: scale3d(1.1, 1.1, 1.1);
}

.g-transform-scale-1_2 {
  transform: scale(1.2);
}

.g-transform-scale-1_2--hover:hover {
  transform: scale(1.2);
}

.g-parent:hover .g-transform-scale-1_2--parent-hover {
  transform: scale(1.2);
}

.g-transform-translate-x-100x {
  transform: translateX(100%);
}

.g-transform-translate-x-100x--hover:hover {
  transform: translateX(100%);
}

.g-parent:hover .g-transform-translate-x-100x--parent-hover {
  transform: translateX(100%);
}

.g-transform-translate-x-minus-100x {
  transform: translateX(-100%);
}

.g-transform-translate-x-minus-100x--hover:hover {
  transform: translateX(-100%);
}

.g-parent:hover .g-transform-translate-x-minus-100x--parent-hover {
  transform: translateX(-100%);
}

.g-transform-translate-y-5 {
  transform: translateY(5px);
}

.g-transform-translate-y-5--hover:hover {
  transform: translateY(5px);
}

.g-parent:hover .g-transform-translate-y-5--parent-hover {
  transform: translateY(5px);
}

.g-transform-translate-y-100x {
  transform: translateY(100%);
}

.g-transform-translate-y-100x--hover:hover {
  transform: translateY(100%);
}

.g-parent:hover .g-transform-translate-y-100x--parent-hover {
  transform: translateY(100%);
}

.g-transform-translate-y-minus-5 {
  transform: translateY(-5px);
}

.g-transform-translate-y-minus-5--hover:hover {
  transform: translateY(-5px);
}

.g-parent:hover .g-transform-translate-y-minus-5--parent-hover {
  transform: translateY(-5px);
}

.g-transform-translate-y-minus-70 {
  transform: translateY(-70px);
}

.g-transform-translate-y-minus-70--hover:hover {
  transform: translateY(-70px);
}

.g-parent:hover .g-transform-translate-y-minus-70--parent-hover {
  transform: translateY(-70px);
}

.g-transform-translate-y-minus-100x {
  transform: translateY(-100%);
}

.g-transform-translate-y-minus-100x--hover:hover {
  transform: translateY(-100%);
}

.g-parent:hover .g-transform-translate-y-minus-100x--parent-hover {
  transform: translateY(-100%);
}

/*------------------------------------
  Opacity
------------------------------------*/

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

.g-opacity-0_3 {
  opacity: 0.3 !important;
}

.g-opacity-0_4 {
  opacity: 0.4 !important;
}

.g-opacity-0_5 {
  opacity: 0.5 !important;
}

.g-opacity-0_6 {
  opacity: 0.6 !important;
}

.g-opacity-0_7 {
  opacity: 0.7 !important;
}

.g-opacity-0_8 {
  opacity: 0.8 !important;
}

.g-opacity-1 {
  opacity: 1 !important;
}

.opacity-0--hover:hover {
  opacity: 0 !important;
}

.g-parent:hover .opacity-0--parent-hover {
  opacity: 0 !important;
}

.g-opacity-0_3--hover:hover {
  opacity: 0.3 !important;
}

.g-parent:hover .g-opacity-0_3--parent-hover {
  opacity: 0.3 !important;
}

.g-opacity-0_5--hover:hover {
  opacity: 0.5 !important;
}

.g-parent:hover .g-opacity-0_5--parent-hover {
  opacity: 0.5 !important;
}

.g-opacity-0_6--hover:hover {
  opacity: 0.6 !important;
}

.g-parent:hover .g-opacity-0_6--parent-hover {
  opacity: 0.6 !important;
}

.g-opacity-0_7--hover:hover {
  opacity: 0.7 !important;
}

.g-parent:hover .g-opacity-0_7--parent-hover {
  opacity: 0.7 !important;
}

.g-opacity-0_8--hover:hover {
  opacity: 0.8 !important;
}

.g-parent:hover .g-opacity-0_8--parent-hover {
  opacity: 0.8 !important;
}

.u-block-hover:hover .g-opacity-1--hover,
.g-opacity-1--hover:hover {
  opacity: 1 !important;
}

.g-parent:hover .g-opacity-1--parent-hover {
  opacity: 1 !important;
}

.selected .g-opacity-1--parents-selected {
  opacity: 1 !important;
}

/*------------------------------------
  Z-Index
------------------------------------*/

.g-z-index-auto {
  z-index: auto;
}

.g-z-index-1 {
  z-index: 1;
}

.g-z-index-2 {
  z-index: 2;
}

.g-z-index-3 {
  z-index: 3;
}

.g-z-index-3--hover:hover {
  z-index: 3;
}

.g-z-index-4 {
  z-index: 4;
}

.g-z-index-4--hover:hover {
  z-index: 4;
}

.g-z-index-99 {
  z-index: 99;
}

.g-z-index-9999 {
  z-index: 9999;
}

.g-z-index-minus-1 {
  z-index: -1;
}

/*------------------------------------
  Resize
------------------------------------*/

.g-resize-none {
  resize: none;
}

/*------------------------------------
  Placeholder
------------------------------------*/

.g-placeholder-white::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white::-moz-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white:-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white::-ms-input-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white::placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white::-moz-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-white::-webkit-input-placeholder {
  opacity: 1;
  color: #fff;
}

.g-placeholder-primary::-webkit-input-placeholder {
  color: #fff;
}

.g-placeholder-primary::-moz-placeholder {
  color: #fff;
}

.g-placeholder-primary:-ms-input-placeholder {
  color: #fff;
}

.g-placeholder-primary::-ms-input-placeholder {
  color: #fff;
}

.g-placeholder-primary::placeholder {
  color: #fff;
}

.g-placeholder-inherit::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit::placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

.g-placeholder-inherit::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

/*------------------------------------
  Offsets
------------------------------------*/

@media (min-width: 768px) {
  .g-offset-md-1 {
    margin-left: 8.333333%;
  }
}

@media (min-width: 992px) {
  .g-offset-lg-1 {
    margin-left: 8.333333%;
  }

  .g-offset-lg-4 {
    margin-left: 33.333333%;
  }
}

/*------------------------------------
  Colors
------------------------------------*/

/* Basic Colors
------------------------------------*/

/* Inherit Colors */

.g-color-inherit {
  color: inherit !important;
}

/* Main Colors */

.g-color-main {
  color: #464c5e !important;
}

.g-color-main--hover:hover {
  color: #464c5e !important;
}

/* Primary Colors */

.g-color-primary {
  color: #CAD105 !important;
}

.u-block-hover:hover .g-color-primary--hover,
.g-color-primary--hover:hover {
  color: #CAD105 !important;
}

.g-parent:hover .g-color-primary--parent-hover {
  color: #CAD105 !important;
}

.g-color-primary-opacity-0_3 {
  color: rgba(202, 209, 5, 0.3) !important;
}

.g-color-primary-opacity-0_4 {
  color: rgba(202, 209, 5, 0.4) !important;
}

.g-color-primary--active.active {
  color: #CAD105 !important;
}

.active .g-color-primary--parent-active {
  color: #CAD105 !important;
}

.g-color-primary--before::before,
.g-color-primary--after::after {
  color: #CAD105;
}

/* Secondary Colors */

.g-color-secondary {
  color: var(--secondary-color) !important;
}

.u-block-hover:hover .g-color-secondary--hover,
.g-color-secondary--hover:hover {
  color: var(--secondary-color) !important;
}

.g-parent:hover .g-color-secondary--parent-hover {
  color: var(--secondary-color) !important;
}

/* Black Colors */

.g-color-black {
  color: #000 !important;
}

.g-color-black--hover:hover {
  color: #000 !important;
}

.g-parent:hover .g-color-black--parent-hover {
  color: #000 !important;
}

.g-color-black--active.active {
  color: #000 !important;
}

.g-color-black-opacity-0_1 {
  color: rgba(0, 0, 0, 0.1) !important;
}

.g-color-black-opacity-0_3 {
  color: rgba(0, 0, 0, 0.3) !important;
}

.g-color-black-opacity-0_5 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.g-color-black-opacity-0_6 {
  color: rgba(0, 0, 0, 0.6) !important;
}

.g-color-black-opacity-0_7 {
  color: rgba(0, 0, 0, 0.7) !important;
}

.g-color-black-opacity-0_8 {
  color: rgba(0, 0, 0, 0.8) !important;
}

.g-color-black-opacity-0_8--child * {
  color: rgba(0, 0, 0, 0.8) !important;
}

.g-color-black-opacity-0_9 {
  color: rgba(0, 0, 0, 0.9) !important;
}

/* White Colors */

.g-color-white {
  color: #fff !important;
}

.g-color-white--opened-menu:not(.collapsed) {
  color: #fff !important;
}

.u-block-hover:hover .g-color-white--hover,
.g-color-white--hover:hover {
  color: #fff !important;
}

.g-parent:hover .g-color-white--parent-hover {
  color: #fff !important;
}

.g-color-white--active.active {
  color: #fff !important;
}

.active .g-color-white--parent-active {
  color: #fff !important;
}

.g-color-white--child * {
  color: #fff !important;
}

.g-color-white-opacity-0_1 {
  color: rgba(255, 255, 255, 0.1) !important;
}

.g-color-white-opacity-0_2 {
  color: rgba(255, 255, 255, 0.2) !important;
}

.g-color-white-opacity-0_3 {
  color: rgba(255, 255, 255, 0.3) !important;
}

.g-color-white-opacity-0_5,
.g-color-white-opacity-0_5--hover:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.g-color-white-opacity-0_6 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.g-parent:hover .g-color-white-opacity-0_6--parent-hover {
  color: rgba(255, 255, 255, 0.6) !important;
}

.g-color-white-opacity-0_7,
.g-color-white-opacity-0_7--hover:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.g-color-white-opacity-0_75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.g-color-white-opacity-0_8 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.g-color-white-opacity-0_8--child * {
  color: rgba(255, 255, 255, 0.8) !important;
}

.g-color-white-opacity-0_9,
.g-color-white-opacity-0_9--hover:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

.u-block-hover:hover .g-color-white-opacity-0_7--hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Gray Colors */

.g-color-gray-light-v1 {
  color: #bbb !important;
}

.g-color-gray-light-v1--hover:hover {
  color: #bbb !important;
}

.g-color-gray-light-v2 {
  color: #ccc !important;
}

.g-color-gray-light-v2--hover:hover {
  color: #ccc !important;
}

.g-color-gray-light-v3 {
  color: #ddd !important;
}

.g-color-gray-light-v3--hover:hover {
  color: #ddd !important;
}

.g-color-gray-light-v4 {
  color: #eee !important;
}

.g-color-gray-light-v4--hover:hover {
  color: #eee !important;
}

.g-color-gray-light-v4-opacity-0_6 {
  color: rgba(238, 238, 238, 0.6) !important;
}

.g-color-gray-light-v5 {
  color: #f7f7f7 !important;
}

.g-color-gray-light-v5--hover:hover {
  color: #f7f7f7 !important;
}

.g-color-gray-dark-v1 {
  color: #111 !important;
}

.g-color-gray-dark-v1--hover:hover {
  color: #111 !important;
}

.g-color-gray-dark-v2 {
  color: #333 !important;
}

.g-color-gray-dark-v2--hover:hover {
  color: #333 !important;
}

.g-color-gray-dark-v2-opacity-0_75 {
  color: rgba(51, 51, 51, 0.75) !important;
}

.g-color-gray-dark-v3 {
  color: #555 !important;
}

.g-color-gray-dark-v3--hover:hover {
  color: #555 !important;
}

.g-color-gray-dark-v4 {
  color: #777 !important;
}

.g-color-gray-dark-v4--hover:hover {
  color: #777 !important;
}

.g-color-gray-dark-v5 {
  color: #999 !important;
}

.g-color-gray-dark-v5--hover:hover {
  color: #999 !important;
}

.g-parent:hover .g-color-gray-dark-v5--parent-hover {
  color: #999 !important;
}

/* Complementary Colors
------------------------------------*/

/* Color Green */

.g-color-green {
  color: #8ac54d !important;
}

.g-color-green--hover:hover {
  color: #8ac54d !important;
}

/* Color Blue */

.g-color-blue {
  color: #355c76 !important;
}

.g-color-blue--hover:hover {
  color: #355c76 !important;
}

.g-color-blue-dark-v1 {
  color: #122029 !important;
}

/* Color Light Blue */

.g-color-lightblue {
  color: #edf2f8 !important;
}

.g-color-lightblue--hover:hover {
  color: #edf2f8 !important;
}

.g-color-lightblue-v1 {
  color: #d6e2ee !important;
}

.g-color-lightblue-v1--hover:hover {
  color: #d6e2ee !important;
}

/* Color Dark Blue */

.g-color-darkblue {
  color: #009 !important;
}

.g-color-darkblue--hover:hover {
  color: #009 !important;
}

/* Color Indigo */

.g-color-indigo {
  color: #8b0048 !important;
}

.g-color-indigo--hover:hover {
  color: #8b0048 !important;
}

/* Color Red */

.g-color-red {
  color: #f00 !important;
}

.g-color-red--hover:hover {
  color: #f00 !important;
}

*:hover > .g-color-red--parent-hover {
  color: #f00 !important;
}

/* Color Light Red */

.g-color-lightred {
  color: #e64b3b !important;
}

.g-color-lightred--hover:hover {
  color: #e64b3b !important;
}

/* Color Dark Red */

.g-color-darkred {
  color: #a10f2b !important;
}

.g-color-darkred--hover:hover {
  color: #a10f2b !important;
}

/* Color Purple */

.g-color-purple {
  color: #9a69cb;
}

.g-color-purple--hover:hover {
  color: #9a69cb !important;
}

.g-color-purple-dark-v1 {
  color: #552c7e !important;
}

/* Color Dark Purple */

.g-color-darkpurple {
  color: #6639b6 !important;
}

.g-color-darkpurple--hover:hover {
  color: #6639b6 !important;
}

/* Color Pink */

.g-color-pink {
  color: #e81c62;
}

.g-color-pink--hover:hover {
  color: #e81c62 !important;
}

.g-color-pink-dark-v1 {
  color: #6f0b2d !important;
}

/* Color Orange */

.g-color-orange {
  color: #e57d20 !important;
}

.g-color-orange--hover:hover {
  color: #e57d20 !important;
}

/* Color Deep Orange */

.g-color-deeporange {
  color: #fe541e !important;
}

.g-color-deeporange--hover:hover {
  color: #fe541e !important;
}

/* Color Yellow */

.g-color-yellow {
  color: #ebc71d !important;
}

.g-color-yellow--hover:hover {
  color: #ebc71d !important;
}

/* Color Aqua */

.g-color-aqua {
  color: #29d6e6;
}

.g-color-aqua--hover:hover {
  color: #29d6e6 !important;
}

.g-color-aqua-dark-v1 {
  color: #11848e !important;
}

/* Color Cyan */

.g-color-cyan {
  color: #00bed6 !important;
}

.g-color-cyan--hover:hover {
  color: #00bed6 !important;
}

/* Color Teal */

.g-color-teal {
  color: #18ba9b !important;
}

.g-color-teal--hover:hover {
  color: #18ba9b !important;
}

/* Color Brown */

.g-color-brown {
  color: #9c8061 !important;
}

.g-color-brown--hover:hover {
  color: #9c8061 !important;
}

/* Color Blue Gray */

.g-color-bluegray {
  color: #585f69 !important;
}

.g-color-bluegray--hover:hover {
  color: #585f69 !important;
}

/*------------------------------------
  Social Colors
------------------------------------*/

/* Facebook */

.g-color-facebook {
  color: #3b5998;
}

.g-color-facebook:hover {
  color: #344e86;
}

.g-color-facebook--hover:hover {
  color: #3b5998 !important;
}

/* Twitter */

.g-color-twitter {
  color: #00acee;
}

.g-color-twitter:hover {
  color: #009ad5;
}

.g-color-twitter--hover:hover {
  color: #00acee !important;
}

/* Skype */

.g-color-skype {
  color: #00aff0;
}

.g-color-skype:hover {
  color: #009cd7;
}

.g-color-skype--hover:hover {
  color: #00aff0 !important;
}

/* Pinterest */

.g-color-pinterest {
  color: #c8232c;
}

.g-color-pinterest:hover {
  color: #b21f27;
}

.g-color-pinterest--hover:hover {
  color: #c8232c !important;
}

/* Vine */

.g-color-vine {
  color: #00bf8f;
}

.g-color-vine:hover {
  color: #00a67c;
}

.g-color-vine--hover:hover {
  color: #00bf8f !important;
}

/* Youtube */

.g-color-youtube {
  color: #c4302b;
}

.g-color-youtube:hover {
  color: #af2b26;
}

.g-color-youtube--hover:hover {
  color: #c4302b !important;
}

/* Google plus */

.g-color-google-plus {
  color: #dd4b39;
}

.g-color-google-plus:hover {
  color: #d73925;
}

.g-color-google-plus--hover:hover {
  color: #dd4b39 !important;
}

/* Dribbble */

.g-color-dribbble {
  color: #ea4c89;
}

.g-color-dribbble:hover {
  color: #e7357a;
}

.g-color-dribbble--hover:hover {
  color: #ea4c89 !important;
}

/* VK */

.g-color-vk {
  color: #2b587a;
}

.g-color-vk:hover {
  color: #244a67;
}

.g-color-vk--hover:hover {
  color: #2b587a !important;
}

/* Linkedin */

.g-color-linkedin {
  color: #0e76a8;
}

.g-color-linkedin:hover {
  color: #0c6590;
}

.g-color-linkedin--hover:hover {
  color: #0e76a8 !important;
}

/* Instagram */

.g-color-instagram {
  color: #3f729b;
}

.g-color-instagram:hover {
  color: #386589;
}

.g-color-instagram--hover:hover {
  color: #3f729b !important;
}

/*------------------------------------
  Gradient Colors
------------------------------------*/

/* Cyan Gradient */

.g-color-cyan-gradient-opacity-v1 {
  background-repeat: repeat-x;
  background-image: linear-gradient(160deg, rgba(0, 0, 153, 0.55), rgba(0, 190, 214, 0.6));
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Blue Gradient */

.g-color-blue-gradient-opacity-v1 {
  background-repeat: repeat-x;
  background-image: linear-gradient(-260deg, #8654da, rgba(66, 229, 248, 0.8));
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

/*------------------------------------
  Widths
------------------------------------*/

/* Width in Percentage (%) */

.g-width-30x {
  width: 30% !important;
  /* P */
}

.g-width-40x {
  width: 40% !important;
  /* P */
}

.g-width-50x {
  width: 50% !important;
  /* P */
}

.g-width-60x {
  width: 60% !important;
  /* P */
}

.g-width-70x {
  width: 70% !important;
  /* P */
}

.g-width-80x {
  width: 80% !important;
  /* P */
}

.g-width-90x {
  width: 90% !important;
  /* P */
}

@media (max-width: 446px-1) {
  .w-100--2xs {
    width: 100% !important;
  }
}

@media (min-width: 576px) {
  .g-width-20x--sm {
    width: 20% !important;
  }

  .g-width-25x--sm {
    width: 25% !important;
  }

  .g-width-33_3x--sm {
    width: 33.333333% !important;
  }

  .g-width-40x--sm {
    width: 40% !important;
  }

  .g-width-60x--sm {
    width: 60% !important;
  }

  .g-width-16_6x--sm {
    width: 16.666666% !important;
  }

  .g-width-66_6x--sm {
    width: 66.666666% !important;
  }
}

@media (min-width: 768px) {
  /* P */

  .g-width-20x--md {
    width: 20% !important;
    /* P */
  }

  .g-width-25x--md {
    width: 25% !important;
    /* P */
  }

  .g-width-30x--md {
    width: 30% !important;
    /* P */
  }

  .g-width-35x--md {
    width: 35% !important;
    /* P */
  }

  .g-width-40x--md {
    width: 40% !important;
    /* P */
  }

  .g-width-45x--md {
    width: 45% !important;
    /* P */
  }

  .g-width-50x--md {
    width: 50% !important;
    /* P */
  }

  .g-width-55x--md {
    width: 55% !important;
    /* P */
  }

  .g-width-60x--md {
    width: 60% !important;
    /* P */
  }

  .g-width-65x--md {
    width: 65% !important;
    /* P */
  }

  .g-width-70x--md {
    width: 70% !important;
    /* P */
  }

  .g-width-75x--md {
    width: 75% !important;
    /* P */
  }

  .g-width-80x--md {
    width: 80% !important;
    /* P */
  }

  .g-width-85x--md {
    width: 85% !important;
    /* P */
  }

  .g-width-90x--md {
    width: 90% !important;
    /* P */
  }

  .g-width-33_3x--md {
    /* P */
    width: 33.333333% !important;
  }

  .g-width-16_6x--md {
    /* P */
    width: 16.666666% !important;
  }

  .g-width-66_6x--md {
    /* P */
    width: 66.666666% !important;
  }
}

.g-width-auto {
  width: auto !important;
  /* P */
}

/* Max Width in Percentage (%) */

.g-width-1x {
  max-width: 1%;
}

.g-width-80x {
  max-width: 80%;
}

.g-width-90x {
  max-width: 90%;
}

.g-width-95x {
  width: 95%;
}

.g-max-width-60x {
  max-width: 60%;
}

.g-max-width-100x {
  max-width: 100%;
}

/* Min Width in Percentage (%) */

.g-min-width-100x {
  min-width: 100%;
}

/* Width Viewport Width (vw) */

.g-width-50vw {
  width: 50vw !important;
  /* P */
}

.g-width-100vw {
  width: 100vw !important;
  /* P */
}

/* Width in Pixels (px) */

.g-width-3 {
  width: 3px !important;
  /* O */
}

.g-width-10 {
  width: 10px !important;
  /* O */
}

.g-width-12 {
  width: 12px !important;
  /* Z */
}

.g-width-16 {
  width: 16px !important;
  /* O */
}

.g-width-18 {
  width: 18px !important;
  /* O */
}

.g-width-20 {
  width: 20px !important;
  /* O */
}

.g-width-24 {
  width: 24px !important;
  /* O */
}

.g-width-25 {
  width: 25px !important;
}

.g-width-26 {
  width: 26px !important;
  /* P */
}

.g-width-28 {
  width: 28px !important;
  /* O */
}

.g-width-30 {
  width: 30px !important;
  /* P */
}

.g-width-32 {
  width: 32px !important;
  /* O */
}

.g-width-35 {
  width: 35px !important;
  /* P */
}

.g-width-36 {
  width: 36px !important;
  /* O */
}

.g-width-40 {
  width: 40px !important;
  /* P */
}

.g-width-45 {
  width: 45px !important;
  /* P */
}

.g-width-48 {
  width: 48px !important;
  /* P */
}

.g-width-50 {
  width: 50px !important;
  /* P */
}

.g-width-54 {
  width: 54px !important;
  /* P */
}

.g-width-55 {
  width: 55px !important;
  /* P */
}

.g-width-60 {
  width: 60px !important;
  /* P */
}

.g-width-64 {
  width: 64px !important;
  /* P */
}

.g-width-70 {
  width: 70px !important;
  /* P */
}

.g-width-75 {
  width: 75px !important;
  /* O */
}

.g-width-80 {
  width: 80px !important;
  /* P */
}

.g-width-85 {
  width: 85px !important;
  /* P */
}

.g-width-95 {
  width: 95px !important;
  /* P */
}

.g-width-100 {
  width: 100px !important;
  /* P */
}

.g-width-105 {
  width: 105px;
}

.g-width-110 {
  width: 110px !important;
  /* O */
}

.g-width-115 {
  width: 115px !important;
  /* O */
}

.g-width-120 {
  width: 120px !important;
  /* P */
}

.g-width-125 {
  width: 125px !important;
  /* P */
}

.g-width-130 {
  width: 130px !important;
  /* P */
}

.g-width-135 {
  width: 135px !important;
  /* O */
}

.g-width-140 {
  width: 140px !important;
  /* P */
}

.g-width-150 {
  width: 150px !important;
}

.g-width-160 {
  width: 160px !important;
  /* P */
}

.g-width-170 {
  width: 170px !important;
  /* P */
}

.g-width-180 {
  width: 180px !important;
  /* O */
}

.g-width-200 {
  width: 200px !important;
  /* P */
}

.g-width-220 {
  width: 220px !important;
}

.g-width-215 {
  width: 215px !important;
}

.g-width-235 {
  width: 235px !important;
}

.g-width-250 {
  /* RG-Q */
  width: 250px !important;
  /* P */
  max-width: 100%;
}

.g-width-270 {
  width: 270px !important;
  /* O */
  max-width: 100%;
}

.g-width-300 {
  width: 300px !important;
  /* P */
  max-width: 100%;
}

.g-width-400 {
  width: 400px !important;
  /* O */
  max-width: 100%;
}

.g-width-340 {
  width: 340px !important;
  /* O */
  max-width: 100%;
}

.g-width-360 {
  width: 360px !important;
  /* O */
  max-width: 100%;
}

.g-width-370 {
  width: 370px !important;
  /* P */
  max-width: 100%;
}

.g-width-380 {
  width: 380px !important;
  /* O */
  max-width: 100%;
}

.g-width-410 {
  width: 410px !important;
  /* O */
}

.g-width-460 {
  width: 460px !important;
  /* O */
  max-width: 100%;
}

.g-width-465 {
  width: 465px !important;
  /* O */
  max-width: 100%;
}

.g-width-485 {
  width: 485px !important;
  /* O */
  max-width: 100%;
}

.g-width-560 {
  width: 560px !important;
  /* O */
  max-width: 100%;
}

.g-width-590 {
  width: 590px !important;
  max-width: 100%;
}

.g-width-600 {
  width: 600px !important;
  /* O */
  max-width: 100%;
}

.g-width-630 {
  width: 630px !important;
  /* O */
  max-width: 100%;
}

.g-width-680 {
  width: 680px !important;
  /* O */
  max-width: 100%;
}

.g-width-720 {
  width: 720px !important;
  /* O */
  max-width: 100%;
}

.g-width-760 {
  width: 760px !important;
  max-width: 100%;
}

.g-width-770 {
  width: 770px !important;
  max-width: 100%;
}

.g-width-780 {
  /* RG-Q */
  width: 780px !important;
  /* P */
  max-width: 100%;
}

.g-width-900 {
  width: 900px !important;
  /* P */
  max-width: 100%;
}

.g-width-945 {
  width: 945px !important;
  max-width: 100%;
}

.g-width-1025 {
  width: 1025px !important;
  max-width: 100%;
}

/* Max Width in Pixels (px) */

.g-max-width-100 {
  max-width: 100px;
}

.g-max-width-120 {
  max-width: 120px;
}

.g-max-width-170 {
  max-width: 170px;
  /* O */
}

.g-max-width-190 {
  max-width: 190px;
}

.g-max-width-200 {
  max-width: 200px;
}

.g-max-width-250 {
  max-width: 250px;
}

.g-max-width-300 {
  max-width: 300px;
}

.g-max-width-400 {
  max-width: 400px;
}

.g-max-width-500 {
  max-width: 500px;
}

.g-max-width-540 {
  max-width: 540px;
}

.g-max-width-550 {
  max-width: 550px;
}

.g-max-width-570 {
  max-width: 570px;
}

.g-max-width-600 {
  max-width: 600px;
}

.g-max-width-645 {
  max-width: 645px;
}

.g-max-width-670 {
  max-width: 670px;
}

.g-max-width-700 {
  max-width: 700px;
}

.g-max-width-750 {
  max-width: 750px;
}

.g-max-width-770 {
  max-width: 770px;
}

.g-max-width-780 {
  max-width: 780px;
}

.g-max-width-800 {
  max-width: 800px;
}

.g-max-width-840 {
  max-width: 840px;
}

.g-max-width-870 {
  max-width: 870px;
}

.g-max-width-960 {
  max-width: 960px;
}

/* Min Width in Pixels (px) */

.g-min-width-35 {
  min-width: 35px;
}

.g-min-width-40 {
  min-width: 40px;
}

.g-min-width-65 {
  min-width: 65px;
}

.g-min-width-110 {
  min-width: 110px;
}

.g-min-width-130 {
  min-width: 130px;
}

.g-min-width-150 {
  min-width: 150px;
}

.g-min-width-170 {
  min-width: 170px;
}

.g-min-width-200 {
  min-width: 200px;
}

.g-min-width-220 {
  min-width: 220px;
}

.g-min-width-300 {
  min-width: 300px;
}

.g-min-width-400 {
  min-width: 400px;
}

@media (min-width: 576px) {
  .g-width-50x--sm {
    width: 50% !important;
    /* P */
  }

  .g-width-80x--sm {
    width: 80% !important;
    /* R */
  }

  .g-width-100--sm {
    width: 100px !important;
    /* P */
  }

  .g-width-150--sm {
    width: 150px !important;
    /* O */
  }

  .g-width-170--sm {
    width: 170px !important;
    /* O */
  }

  .g-width-180--sm {
    width: 180px !important;
  }

  .g-min-width-180--sm {
    min-width: 180px;
  }

  .g-width-485--sm {
    width: 485px !important;
    /* O */
    max-width: 100%;
  }

  .g-width-auto--sm {
    width: auto !important;
  }

  .g-max-width-300--sm {
    max-width: 300px;
  }
}

@media (min-width: 768px) {
  .g-width-40--md {
    width: 40px !important;
    /* O */
  }

  .g-width-45--md {
    width: 45px !important;
    /* O */
  }

  .g-width-60--md {
    width: 60px !important;
    /* O */
  }

  .g-width-80--md {
    width: 80px !important;
    /* O */
  }

  .g-width-50x--md {
    width: 50% !important;
    /* P */
  }

  .g-width-60x--md {
    width: 60% !important;
    /* P */
  }

  .g-width-80x--md {
    width: 80% !important;
    /* R */
  }

  .g-width-45--md {
    width: 45px !important;
  }

  .g-width-100--md {
    width: 100px !important;
    /* O */
  }

  .g-width-125--md {
    width: 125px !important;
    /* P */
  }

  .g-width-135--md {
    width: 135px !important;
  }

  .g-width-140--md {
    width: 140px !important;
    /* R */
  }

  .g-width-155--md {
    width: 155px !important;
    /* R */
  }

  .g-width-180--md {
    width: 180px !important;
  }

  .g-width-225--md {
    width: 225px !important;
  }

  .g-width-160--md {
    width: 160px !important;
  }

  .g-width-165--md {
    width: 165px !important;
  }

  .g-width-170--md {
    width: 170px !important;
    /* P */
  }

  .g-width-185--md {
    width: 185px !important;
    /* O */
  }

  .g-width-280--md {
    width: 280px !important;
    /* O */
  }

  .g-width-780--md {
    width: 780px !important;
    /* O */
    max-width: 100%;
  }

  .g-max-width-200--md {
    max-width: 200px;
  }

  .g-max-width-400--md {
    max-width: 400px;
  }

  .g-min-width-110--md {
    min-width: 110px;
  }

  .g-width-auto--md {
    width: auto !important;
    /* P */
  }
}

@media (min-width: 992px) {
  .g-width-60x--lg {
    width: 60% !important;
    /* J */
  }

  .g-width-100x--lg {
    width: 100% !important;
    /* P */
  }

  .g-width-155--lg {
    width: 155px !important;
    /* O */
  }

  .g-width-165--lg {
    width: 165px !important;
  }

  .g-width-200--lg {
    width: 200px !important;
    /* O */
    max-width: 100%;
  }

  .g-width-250--lg {
    /* RG-Q */
    width: 250px !important;
    /* P */
    max-width: 100%;
  }

  .g-width-485--lg {
    width: 485px !important;
    /* O */
    max-width: 100%;
  }

  .g-width-auto--lg {
    width: auto !important;
    /* P */
  }

  .g-max-width-200--lg {
    max-width: 200px;
  }
}

@media (min-width: 1200px) {
  .g-min-width-315--xl {
    min-width: 315px;
  }
}

* > .g-width-70--hover {
  transition-property: width;
  transition-duration: 0.2s;
  transition-timing-function: ease-in;
}

*:hover > .g-width-70--hover {
  width: 70px;
}

/*------------------------------------
  Heights
------------------------------------*/

/* Height in Percentage (%) */

.g-height-50x {
  height: 50%;
}

.g-height-80x {
  height: 80%;
}

.g-height-90x {
  height: 90%;
}

.g-height-95x {
  height: 95%;
}

.g-height-100x {
  height: 100%;
}

/* Max Height in Percentage (%) */

.g-max-height-100x {
  max-height: 100%;
}

/* Max Height in Viewport Height (vh) */

.g-max-height-70vh {
  max-height: 70vh !important;
}

.g-max-height-90vh {
  height: 90vh !important;
}

/* Min Height in Percentage (%) */

.g-min-height-100x {
  min-height: 100%;
}

/* Height  in Viewport Height (vh) */

.g-height-50vh {
  height: 50vh !important;
}

.g-height-70vh {
  height: 70vh;
}

.g-height-75vh {
  height: 75vh;
}

.g-height-100vh {
  height: 100vh !important;
}

/* Min Height in Viewport Height (vh) */

.g-min-height-50vh {
  min-height: 50vh;
}

.g-min-height-60vh {
  min-height: 60vh;
}

.g-min-height-70vh {
  min-height: 70vh;
}

.g-min-height-80vh {
  min-height: 80vh;
}

.g-min-height-90vh {
  min-height: 90vh;
}

.g-min-height-100vh {
  min-height: 100vh;
}

/* Auto Height */

.g-height-auto {
  height: auto;
}

@media (min-width: 576px) {
  .g-height-100vh--sm {
    height: 100vh !important;
  }

  .g-height-auto--sm {
    height: auto;
  }

  .g-height-100x--sm {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .g-height-auto--md {
    height: auto;
  }

  .g-min-height-100vh--md {
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .g-min-height-90vh--lg {
    min-height: 90vh;
  }

  .g-height-100vh--lg {
    height: 100vh !important;
  }

  .g-height-auto--lg {
    height: auto;
  }
}

@media (min-width: 1200px) {
  .g-height-auto--xl {
    height: auto;
  }
}

/* Height in Pixels (px) */

.g-height-1 {
  height: 1px;
}

.g-height-2 {
  height: 2px;
}

.g-height-4 {
  height: 4px;
}

.g-height-5 {
  height: 5px !important;
}

.g-height-6 {
  height: 6px !important;
}

.g-height-10 {
  height: 10px !important;
}

.g-height-12 {
  height: 12px !important;
}

.g-height-16 {
  height: 16px !important;
}

.g-height-18 {
  height: 18px;
}

.g-height-20 {
  height: 20px !important;
}

.g-height-22 {
  height: 22px !important;
}

.g-height-24 {
  height: 24px;
}

.g-height-25 {
  height: 25px;
}

.g-height-26 {
  height: 26px;
}

.g-height-28 {
  height: 28px !important;
  /* O */
}

.g-height-30 {
  height: 30px !important;
}

.g-height-32 {
  height: 32px;
  /* O */
}

.g-height-35 {
  height: 35px !important;
}

.g-height-40 {
  height: 40px;
}

.g-height-45 {
  height: 45px;
}

.g-height-48 {
  height: 48px;
  /* O */
}

.g-height-50 {
  height: 50px;
}

.g-height-55 {
  height: 55px;
}

.g-height-60 {
  height: 60px;
}

.g-height-64 {
  height: 64px;
}

.g-height-70 {
  height: 70px;
}

.g-height-75 {
  height: 75px;
  /* O */
}

.g-height-80 {
  height: 80px !important;
}

.g-height-85 {
  height: 85px;
}

.g-height-88 {
  height: 88px;
}

.g-height-90 {
  height: 90px;
}

.g-height-95 {
  height: 95px !important;
}

.g-height-100 {
  height: 100px !important;
}

.g-height-105 {
  height: 105px;
}

.g-height-115 {
  height: 115px !important;
  /* O */
}

.g-height-120 {
  height: 120px;
}

.g-height-125 {
  height: 125px;
}

.g-height-130 {
  height: 130px;
}

.g-height-140 {
  height: 140px;
}

.g-height-150 {
  height: 150px;
}

.g-height-160 {
  height: 160px;
}

.g-height-170 {
  height: 170px;
  /* O */
}

.g-height-180 {
  height: 180px !important;
  /* O */
}

.g-height-200 {
  height: 200px;
}

.g-height-220 {
  height: 220px;
}

.g-height-250 {
  height: 250px;
}

.g-height-280 {
  height: 280px;
}

.g-height-300 {
  height: 300px;
}

.g-height-350 {
  height: 350px;
}

.g-height-400 {
  height: 400px;
}

.g-height-450 {
  height: 450px;
}

.g-height-460 {
  height: 460px;
  /* O */
  max-height: 100% !important;
}

.g-height-500 {
  height: 500px;
}

.g-height-600 {
  height: 600px;
}

.g-height-680 {
  height: 680px;
}

/* Min Height in Pixels (px) */

.g-min-height-4 {
  min-height: 4px;
}

.g-min-height-35 {
  min-height: 35px;
}

.g-min-height-170 {
  min-height: 170px;
}

.g-min-height-200 {
  min-height: 200px;
}

.g-min-height-250 {
  min-height: 250px;
}

.g-min-height-275 {
  min-height: 275px;
}

.g-min-height-300 {
  min-height: 300px;
}

.g-min-height-312 {
  min-height: 312px;
}

.g-min-height-360 {
  min-height: 360px;
}

.g-min-height-400 {
  min-height: 400px;
}

.g-min-height-450 {
  min-height: 450px;
}

.g-min-height-500 {
  min-height: 500px;
}

.g-min-height-600 {
  min-height: 600px;
}

@media (min-width: 576px) {
  .g-height-350--sm {
    height: 350px;
  }

  .g-height-680--sm {
    height: 680px;
  }
}

@media (min-width: 768px) {
  .g-height-40--md {
    height: 40px !important;
  }

  .g-height-45--md {
    height: 45px !important;
  }

  .g-height-60--md {
    height: 60px !important;
  }

  .g-height-100--md {
    height: 100px !important;
  }

  .g-height-170--md {
    height: 170px !important;
  }

  .g-height-350--md {
    height: 350px;
  }

  .g-height-500--md {
    height: 500px;
  }

  .g-height-680--md {
    height: 680px;
  }

  .g-height-100x--md {
    height: 100%;
  }

  .g-height-100vh--md {
    height: 100vh;
  }

  .g-min-height-230--md {
    min-height: 230px;
  }

  .g-min-height-500--md {
    min-height: 500px;
  }
}

@media (min-width: 992px) {
  .g-height-80--lg {
    height: 80px !important;
  }

  .g-height-200--lg {
    height: 200px !important;
  }

  .g-height-230--lg {
    height: 230px;
  }

  .g-height-350--lg {
    height: 350px;
  }

  .g-height-680--lg {
    height: 680px;
  }
}

@media (min-width: 1200px) {
  .g-height-350--xl {
    height: 350px;
  }

  .g-height-680--xl {
    height: 680px;
  }
}

/*------------------------------------
  Margin Spaces
------------------------------------*/

/* Margin Spaces (xs)
------------------------------------*/

@media (min-width: 0) {
  .g-ma-0 {
    margin: 0 !important;
  }

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

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

  .g-ml-0 {
    margin-left: 0 !important;
  }

  .g-mr-0 {
    margin-right: 0 !important;
  }

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

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

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

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

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

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

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

  .g-mx-6 {
    margin-left: 0.4285714286rem !important;
    margin-right: 0.4285714286rem !important;
  }

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

  .g-mx-8 {
    margin-left: 0.5714285714rem !important;
    margin-right: 0.5714285714rem !important;
  }

  .g-mx-9 {
    margin-left: 0.6428571429rem !important;
    margin-right: 0.6428571429rem !important;
  }

  .g-mx-10 {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-10 {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-15 {
    margin-left: 1.0714285714rem !important;
    margin-right: 1.0714285714rem !important;
  }

  .g-mx-20 {
    margin-left: 1.4285714286rem !important;
    margin-right: 1.4285714286rem !important;
  }

  .g-mx-25 {
    margin-left: 1.7857142857rem !important;
    margin-right: 1.7857142857rem !important;
  }

  .g-mx-30 {
    margin-left: 2.1428571429rem !important;
    margin-right: 2.1428571429rem !important;
  }

  .g-mx-35 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .g-mx-40 {
    margin-left: 2.8571428571rem !important;
    margin-right: 2.8571428571rem !important;
  }

  .g-mx-45 {
    margin-left: 3.2142857143rem !important;
    margin-right: 3.2142857143rem !important;
  }

  .g-mx-50 {
    margin-left: 3.5714285714rem !important;
    margin-right: 3.5714285714rem !important;
  }

  .g-mx-55 {
    margin-left: 3.9285714286rem !important;
    margin-right: 3.9285714286rem !important;
  }

  .g-mx-60 {
    margin-left: 4.2857142857rem !important;
    margin-right: 4.2857142857rem !important;
  }

  .g-mx-65 {
    margin-left: 4.6428571429rem !important;
    margin-right: 4.6428571429rem !important;
  }

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

  .g-mx-75 {
    margin-left: 5.3571428571rem !important;
    margin-right: 5.3571428571rem !important;
  }

  .g-mx-80 {
    margin-left: 5.7142857143rem !important;
    margin-right: 5.7142857143rem !important;
  }

  .g-mx-85 {
    margin-left: 6.0714285714rem !important;
    margin-right: 6.0714285714rem !important;
  }

  .g-mx-90 {
    margin-left: 6.4285714286rem !important;
    margin-right: 6.4285714286rem !important;
  }

  .g-mx-95 {
    margin-left: 6.7857142857rem !important;
    margin-right: 6.7857142857rem !important;
  }

  .g-mx-100 {
    margin-left: 7.1428571429rem !important;
    margin-right: 7.1428571429rem !important;
  }

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

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

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

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

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

  .g-my-6 {
    margin-top: 0.4285714286rem !important;
    margin-bottom: 0.4285714286rem !important;
  }

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

  .g-my-8 {
    margin-top: 0.5714285714rem !important;
    margin-bottom: 0.5714285714rem !important;
  }

  .g-my-9 {
    margin-top: 0.6428571429rem !important;
    margin-bottom: 0.6428571429rem !important;
  }

  .g-my-10 {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-10 {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-15 {
    margin-top: 1.0714285714rem !important;
    margin-bottom: 1.0714285714rem !important;
  }

  .g-my-20 {
    margin-top: 1.4285714286rem !important;
    margin-bottom: 1.4285714286rem !important;
  }

  .g-my-25 {
    margin-top: 1.7857142857rem !important;
    margin-bottom: 1.7857142857rem !important;
  }

  .g-my-30 {
    margin-top: 2.1428571429rem !important;
    margin-bottom: 2.1428571429rem !important;
  }

  .g-my-35 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .g-my-40 {
    margin-top: 2.8571428571rem !important;
    margin-bottom: 2.8571428571rem !important;
  }

  .g-my-45 {
    margin-top: 3.2142857143rem !important;
    margin-bottom: 3.2142857143rem !important;
  }

  .g-my-50 {
    margin-top: 3.5714285714rem !important;
    margin-bottom: 3.5714285714rem !important;
  }

  .g-my-55 {
    margin-top: 3.9285714286rem !important;
    margin-bottom: 3.9285714286rem !important;
  }

  .g-my-60 {
    margin-top: 4.2857142857rem !important;
    margin-bottom: 4.2857142857rem !important;
  }

  .g-my-65 {
    margin-top: 4.6428571429rem !important;
    margin-bottom: 4.6428571429rem !important;
  }

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

  .g-my-75 {
    margin-top: 5.3571428571rem !important;
    margin-bottom: 5.3571428571rem !important;
  }

  .g-my-80 {
    margin-top: 5.7142857143rem !important;
    margin-bottom: 5.7142857143rem !important;
  }

  .g-my-85 {
    margin-top: 6.0714285714rem !important;
    margin-bottom: 6.0714285714rem !important;
  }

  .g-my-90 {
    margin-top: 6.4285714286rem !important;
    margin-bottom: 6.4285714286rem !important;
  }

  .g-my-95 {
    margin-top: 6.7857142857rem !important;
    margin-bottom: 6.7857142857rem !important;
  }

  .g-my-100 {
    margin-top: 7.1428571429rem !important;
    margin-bottom: 7.1428571429rem !important;
  }

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

  .g-mt-minus-1 {
    margin-top: -0.0714285714rem !important;
  }

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

  .g-mt-minus-2 {
    margin-top: -0.1428571429rem !important;
  }

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

  .g-mt-minus-3 {
    margin-top: -0.2142857143rem !important;
  }

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

  .g-mt-minus-4 {
    margin-top: -0.2857142857rem !important;
  }

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

  .g-mt-minus-5 {
    margin-top: -0.3571428571rem !important;
  }

  .g-mt-6 {
    margin-top: 0.4285714286rem !important;
  }

  .g-mt-minus-6 {
    margin-top: -0.4285714286rem !important;
  }

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

  .g-mt-minus-7 {
    margin-top: -0.5rem !important;
  }

  .g-mt-8 {
    margin-top: 0.5714285714rem !important;
  }

  .g-mt-minus-8 {
    margin-top: -0.5714285714rem !important;
  }

  .g-mt-9 {
    margin-top: 0.6428571429rem !important;
  }

  .g-mt-minus-9 {
    margin-top: -0.6428571429rem !important;
  }

  .g-mt-10 {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10 {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-11 {
    margin-top: 0.7857142857rem !important;
  }

  .g-mt-minus-11 {
    margin-top: -0.7857142857rem !important;
  }

  .g-mt-12 {
    margin-top: 0.8571428571rem !important;
  }

  .g-mt-minus-12 {
    margin-top: -0.8571428571rem !important;
  }

  .g-mt-13 {
    margin-top: 0.9285714286rem !important;
  }

  .g-mt-minus-13 {
    margin-top: -0.9285714286rem !important;
  }

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

  .g-mt-minus-14 {
    margin-top: -1rem !important;
  }

  .g-mt-15 {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15 {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-16 {
    margin-top: 1.1428571429rem !important;
  }

  .g-mt-minus-16 {
    margin-top: -1.1428571429rem !important;
  }

  .g-mt-17 {
    margin-top: 1.2142857143rem !important;
  }

  .g-mt-minus-17 {
    margin-top: -1.2142857143rem !important;
  }

  .g-mt-18 {
    margin-top: 1.2857142857rem !important;
  }

  .g-mt-minus-18 {
    margin-top: -1.2857142857rem !important;
  }

  .g-mt-19 {
    margin-top: 1.3571428571rem !important;
  }

  .g-mt-minus-19 {
    margin-top: -1.3571428571rem !important;
  }

  .g-mt-20 {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20 {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-10 {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10 {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-15 {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15 {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-20 {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20 {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-25 {
    margin-top: 1.7857142857rem !important;
  }

  .g-mt-minus-25 {
    margin-top: -1.7857142857rem !important;
  }

  .g-mt-30 {
    margin-top: 2.1428571429rem !important;
  }

  .g-mt-minus-30 {
    margin-top: -2.1428571429rem !important;
  }

  .g-mt-35 {
    margin-top: 2.5rem !important;
  }

  .g-mt-minus-35 {
    margin-top: -2.5rem !important;
  }

  .g-mt-40 {
    margin-top: 2.8571428571rem !important;
  }

  .g-mt-minus-40 {
    margin-top: -2.8571428571rem !important;
  }

  .g-mt-45 {
    margin-top: 3.2142857143rem !important;
  }

  .g-mt-minus-45 {
    margin-top: -3.2142857143rem !important;
  }

  .g-mt-50 {
    margin-top: 3.5714285714rem !important;
  }

  .g-mt-minus-50 {
    margin-top: -3.5714285714rem !important;
  }

  .g-mt-55 {
    margin-top: 3.9285714286rem !important;
  }

  .g-mt-minus-55 {
    margin-top: -3.9285714286rem !important;
  }

  .g-mt-60 {
    margin-top: 4.2857142857rem !important;
  }

  .g-mt-minus-60 {
    margin-top: -4.2857142857rem !important;
  }

  .g-mt-65 {
    margin-top: 4.6428571429rem !important;
  }

  .g-mt-minus-65 {
    margin-top: -4.6428571429rem !important;
  }

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

  .g-mt-minus-70 {
    margin-top: -5rem !important;
  }

  .g-mt-75 {
    margin-top: 5.3571428571rem !important;
  }

  .g-mt-minus-75 {
    margin-top: -5.3571428571rem !important;
  }

  .g-mt-80 {
    margin-top: 5.7142857143rem !important;
  }

  .g-mt-minus-80 {
    margin-top: -5.7142857143rem !important;
  }

  .g-mt-85 {
    margin-top: 6.0714285714rem !important;
  }

  .g-mt-minus-85 {
    margin-top: -6.0714285714rem !important;
  }

  .g-mt-90 {
    margin-top: 6.4285714286rem !important;
  }

  .g-mt-minus-90 {
    margin-top: -6.4285714286rem !important;
  }

  .g-mt-95 {
    margin-top: 6.7857142857rem !important;
  }

  .g-mt-minus-95 {
    margin-top: -6.7857142857rem !important;
  }

  .g-mt-100 {
    margin-top: 7.1428571429rem !important;
  }

  .g-mt-minus-100 {
    margin-top: -7.1428571429rem !important;
  }

  .g-mt-105 {
    margin-top: 7.5rem !important;
  }

  .g-mt-minus-105 {
    margin-top: -7.5rem !important;
  }

  .g-mt-110 {
    margin-top: 7.8571428571rem !important;
  }

  .g-mt-minus-110 {
    margin-top: -7.8571428571rem !important;
  }

  .g-mt-115 {
    margin-top: 8.2142857143rem !important;
  }

  .g-mt-minus-115 {
    margin-top: -8.2142857143rem !important;
  }

  .g-mt-120 {
    margin-top: 8.5714285714rem !important;
  }

  .g-mt-minus-120 {
    margin-top: -8.5714285714rem !important;
  }

  .g-mt-125 {
    margin-top: 8.9285714286rem !important;
  }

  .g-mt-minus-125 {
    margin-top: -8.9285714286rem !important;
  }

  .g-mt-130 {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-130 {
    margin-top: -9.2857142857rem !important;
  }

  .g-mt-135 {
    margin-top: 9.6428571429rem !important;
  }

  .g-mt-minus-135 {
    margin-top: -9.6428571429rem !important;
  }

  .g-mt-140 {
    margin-top: 10rem !important;
  }

  .g-mt-minus-140 {
    margin-top: -10rem !important;
  }

  .g-mt-145 {
    margin-top: 10.3571428571rem !important;
  }

  .g-mt-minus-145 {
    margin-top: -10.3571428571rem !important;
  }

  .g-mt-150 {
    margin-top: 10.7142857143rem !important;
  }

  .g-mt-minus-150 {
    margin-top: -10.7142857143rem !important;
  }

  .g-mt-155 {
    margin-top: 11.0714285714rem !important;
  }

  .g-mt-minus-155 {
    margin-top: -11.0714285714rem !important;
  }

  .g-mt-160 {
    margin-top: 11.4285714286rem !important;
  }

  .g-mt-minus-160 {
    margin-top: -11.4285714286rem !important;
  }

  .g-mt-165 {
    margin-top: 11.7857142857rem !important;
  }

  .g-mt-minus-165 {
    margin-top: -11.7857142857rem !important;
  }

  .g-mt-170 {
    margin-top: 12.1428571429rem !important;
  }

  .g-mt-minus-170 {
    margin-top: -12.1428571429rem !important;
  }

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

  .g-mb-minus-1 {
    margin-bottom: -0.0714285714rem !important;
  }

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

  .g-mb-minus-2 {
    margin-bottom: -0.1428571429rem !important;
  }

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

  .g-mb-minus-3 {
    margin-bottom: -0.2142857143rem !important;
  }

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

  .g-mb-minus-4 {
    margin-bottom: -0.2857142857rem !important;
  }

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

  .g-mb-minus-5 {
    margin-bottom: -0.3571428571rem !important;
  }

  .g-mb-6 {
    margin-bottom: 0.4285714286rem !important;
  }

  .g-mb-minus-6 {
    margin-bottom: -0.4285714286rem !important;
  }

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

  .g-mb-minus-7 {
    margin-bottom: -0.5rem !important;
  }

  .g-mb-8 {
    margin-bottom: 0.5714285714rem !important;
  }

  .g-mb-minus-8 {
    margin-bottom: -0.5714285714rem !important;
  }

  .g-mb-9 {
    margin-bottom: 0.6428571429rem !important;
  }

  .g-mb-minus-9 {
    margin-bottom: -0.6428571429rem !important;
  }

  .g-mb-10 {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-minus-10 {
    margin-bottom: -0.7142857143rem !important;
  }

  .g-mb-11 {
    margin-bottom: 0.7857142857rem !important;
  }

  .g-mb-minus-11 {
    margin-bottom: -0.7857142857rem !important;
  }

  .g-mb-12 {
    margin-bottom: 0.8571428571rem !important;
  }

  .g-mb-minus-12 {
    margin-bottom: -0.8571428571rem !important;
  }

  .g-mb-13 {
    margin-bottom: 0.9285714286rem !important;
  }

  .g-mb-minus-13 {
    margin-bottom: -0.9285714286rem !important;
  }

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

  .g-mb-minus-14 {
    margin-bottom: -1rem !important;
  }

  .g-mb-15 {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-minus-15 {
    margin-bottom: -1.0714285714rem !important;
  }

  .g-mb-16 {
    margin-bottom: 1.1428571429rem !important;
  }

  .g-mb-minus-16 {
    margin-bottom: -1.1428571429rem !important;
  }

  .g-mb-17 {
    margin-bottom: 1.2142857143rem !important;
  }

  .g-mb-minus-17 {
    margin-bottom: -1.2142857143rem !important;
  }

  .g-mb-18 {
    margin-bottom: 1.2857142857rem !important;
  }

  .g-mb-minus-18 {
    margin-bottom: -1.2857142857rem !important;
  }

  .g-mb-19 {
    margin-bottom: 1.3571428571rem !important;
  }

  .g-mb-minus-19 {
    margin-bottom: -1.3571428571rem !important;
  }

  .g-mb-20 {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-minus-20 {
    margin-bottom: -1.4285714286rem !important;
  }

  .g-mb-10 {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-15 {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-20 {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-25 {
    margin-bottom: 1.7857142857rem !important;
  }

  .g-mb-30 {
    margin-bottom: 2.1428571429rem !important;
  }

  .g-mb-35 {
    margin-bottom: 2.5rem !important;
  }

  .g-mb-40 {
    margin-bottom: 2.8571428571rem !important;
  }

  .g-mb-45 {
    margin-bottom: 3.2142857143rem !important;
  }

  .g-mb-50 {
    margin-bottom: 3.5714285714rem !important;
  }

  .g-mb-55 {
    margin-bottom: 3.9285714286rem !important;
  }

  .g-mb-60 {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-mb-65 {
    margin-bottom: 4.6428571429rem !important;
  }

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

  .g-mb-75 {
    margin-bottom: 5.3571428571rem !important;
  }

  .g-mb-80 {
    margin-bottom: 5.7142857143rem !important;
  }

  .g-mb-85 {
    margin-bottom: 6.0714285714rem !important;
  }

  .g-mb-90 {
    margin-bottom: 6.4285714286rem !important;
  }

  .g-mb-95 {
    margin-bottom: 6.7857142857rem !important;
  }

  .g-mb-100 {
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mb-105 {
    margin-bottom: 7.5rem !important;
  }

  .g-mb-110 {
    margin-bottom: 7.8571428571rem !important;
  }

  .g-mb-115 {
    margin-bottom: 8.2142857143rem !important;
  }

  .g-mb-120 {
    margin-bottom: 8.5714285714rem !important;
  }

  .g-mb-125 {
    margin-bottom: 8.9285714286rem !important;
  }

  .g-mb-130 {
    margin-bottom: 9.2857142857rem !important;
  }

  .g-mb-135 {
    margin-bottom: 9.6428571429rem !important;
  }

  .g-mb-140 {
    margin-bottom: 10rem !important;
  }

  .g-mb-145 {
    margin-bottom: 10.3571428571rem !important;
  }

  .g-mb-150 {
    margin-bottom: 10.7142857143rem !important;
  }

  .g-mb-155 {
    margin-bottom: 11.0714285714rem !important;
  }

  .g-mb-160 {
    margin-bottom: 11.4285714286rem !important;
  }

  .g-mb-165 {
    margin-bottom: 11.7857142857rem !important;
  }

  .g-mb-170 {
    margin-bottom: 12.1428571429rem !important;
  }

  .g-ml-1 {
    margin-left: 0.0714285714rem !important;
  }

  .g-ml-minus-1 {
    margin-left: -0.0714285714rem !important;
  }

  .g-ml-2 {
    margin-left: 0.1428571429rem !important;
  }

  .g-ml-minus-2 {
    margin-left: -0.1428571429rem !important;
  }

  .g-ml-3 {
    margin-left: 0.2142857143rem !important;
  }

  .g-ml-minus-3 {
    margin-left: -0.2142857143rem !important;
  }

  .g-ml-4 {
    margin-left: 0.2857142857rem !important;
  }

  .g-ml-minus-4 {
    margin-left: -0.2857142857rem !important;
  }

  .g-ml-5 {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5 {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-6 {
    margin-left: 0.4285714286rem !important;
  }

  .g-ml-minus-6 {
    margin-left: -0.4285714286rem !important;
  }

  .g-ml-7 {
    margin-left: 0.5rem !important;
  }

  .g-ml-minus-7 {
    margin-left: -0.5rem !important;
  }

  .g-ml-8 {
    margin-left: 0.5714285714rem !important;
  }

  .g-ml-minus-8 {
    margin-left: -0.5714285714rem !important;
  }

  .g-ml-9 {
    margin-left: 0.6428571429rem !important;
  }

  .g-ml-minus-9 {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-10 {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10 {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-5 {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5 {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-10 {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10 {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-15 {
    margin-left: 1.0714285714rem !important;
  }

  .g-ml-minus-15 {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-20 {
    margin-left: 1.4285714286rem !important;
  }

  .g-ml-minus-20 {
    margin-left: -1.4285714286rem !important;
  }

  .g-ml-25 {
    margin-left: 1.7857142857rem !important;
  }

  .g-ml-minus-25 {
    margin-left: -1.7857142857rem !important;
  }

  .g-ml-30 {
    margin-left: 2.1428571429rem !important;
  }

  .g-ml-minus-30 {
    margin-left: -2.1428571429rem !important;
  }

  .g-ml-35 {
    margin-left: 2.5rem !important;
  }

  .g-ml-minus-35 {
    margin-left: -2.5rem !important;
  }

  .g-ml-40 {
    margin-left: 2.8571428571rem !important;
  }

  .g-ml-minus-40 {
    margin-left: -2.8571428571rem !important;
  }

  .g-ml-45 {
    margin-left: 3.2142857143rem !important;
  }

  .g-ml-minus-45 {
    margin-left: -3.2142857143rem !important;
  }

  .g-ml-50 {
    margin-left: 3.5714285714rem !important;
  }

  .g-ml-minus-50 {
    margin-left: -3.5714285714rem !important;
  }

  .g-mr-1 {
    margin-right: 0.0714285714rem !important;
  }

  .g-mr-minus-1 {
    margin-right: -0.0714285714rem !important;
  }

  .g-mr-2 {
    margin-right: 0.1428571429rem !important;
  }

  .g-mr-minus-2 {
    margin-right: -0.1428571429rem !important;
  }

  .g-mr-3 {
    margin-right: 0.2142857143rem !important;
  }

  .g-mr-minus-3 {
    margin-right: -0.2142857143rem !important;
  }

  .g-mr-4 {
    margin-right: 0.2857142857rem !important;
  }

  .g-mr-minus-4 {
    margin-right: -0.2857142857rem !important;
  }

  .g-mr-5 {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-minus-5 {
    margin-right: -0.3571428571rem !important;
  }

  .g-mr-6 {
    margin-right: 0.4285714286rem !important;
  }

  .g-mr-minus-6 {
    margin-right: -0.4285714286rem !important;
  }

  .g-mr-7 {
    margin-right: 0.5rem !important;
  }

  .g-mr-minus-7 {
    margin-right: -0.5rem !important;
  }

  .g-mr-8 {
    margin-right: 0.5714285714rem !important;
  }

  .g-mr-minus-8 {
    margin-right: -0.5714285714rem !important;
  }

  .g-mr-9 {
    margin-right: 0.6428571429rem !important;
  }

  .g-mr-minus-9 {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-10 {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-minus-10 {
    margin-right: -0.7142857143rem !important;
  }

  .g-mr-5 {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-10 {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-15 {
    margin-right: 1.0714285714rem !important;
  }

  .g-mr-20 {
    margin-right: 1.4285714286rem !important;
  }

  .g-mr-25 {
    margin-right: 1.7857142857rem !important;
  }

  .g-mr-30 {
    margin-right: 2.1428571429rem !important;
  }

  .g-mr-35 {
    margin-right: 2.5rem !important;
  }

  .g-mr-40 {
    margin-right: 2.8571428571rem !important;
  }

  .g-mr-45 {
    margin-right: 3.2142857143rem !important;
  }

  .g-mr-50 {
    margin-right: 3.5714285714rem !important;
  }
}

/* Margin Spaces (sm)
------------------------------------*/

@media (min-width: 576px) {
  .g-ma-0--sm {
    margin: 0 !important;
  }

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

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

  .g-ml-0--sm {
    margin-left: 0 !important;
  }

  .g-mr-0--sm {
    margin-right: 0 !important;
  }

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

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

  .g-mx-1--sm {
    margin-left: 0.0714285714rem !important;
    margin-right: 0.0714285714rem !important;
  }

  .g-mx-2--sm {
    margin-left: 0.1428571429rem !important;
    margin-right: 0.1428571429rem !important;
  }

  .g-mx-3--sm {
    margin-left: 0.2142857143rem !important;
    margin-right: 0.2142857143rem !important;
  }

  .g-mx-4--sm {
    margin-left: 0.2857142857rem !important;
    margin-right: 0.2857142857rem !important;
  }

  .g-mx-5--sm {
    margin-left: 0.3571428571rem !important;
    margin-right: 0.3571428571rem !important;
  }

  .g-mx-6--sm {
    margin-left: 0.4285714286rem !important;
    margin-right: 0.4285714286rem !important;
  }

  .g-mx-7--sm {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .g-mx-8--sm {
    margin-left: 0.5714285714rem !important;
    margin-right: 0.5714285714rem !important;
  }

  .g-mx-9--sm {
    margin-left: 0.6428571429rem !important;
    margin-right: 0.6428571429rem !important;
  }

  .g-mx-10--sm {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-10--sm {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-15--sm {
    margin-left: 1.0714285714rem !important;
    margin-right: 1.0714285714rem !important;
  }

  .g-mx-20--sm {
    margin-left: 1.4285714286rem !important;
    margin-right: 1.4285714286rem !important;
  }

  .g-mx-25--sm {
    margin-left: 1.7857142857rem !important;
    margin-right: 1.7857142857rem !important;
  }

  .g-mx-30--sm {
    margin-left: 2.1428571429rem !important;
    margin-right: 2.1428571429rem !important;
  }

  .g-mx-35--sm {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .g-mx-40--sm {
    margin-left: 2.8571428571rem !important;
    margin-right: 2.8571428571rem !important;
  }

  .g-mx-45--sm {
    margin-left: 3.2142857143rem !important;
    margin-right: 3.2142857143rem !important;
  }

  .g-mx-50--sm {
    margin-left: 3.5714285714rem !important;
    margin-right: 3.5714285714rem !important;
  }

  .g-mx-55--sm {
    margin-left: 3.9285714286rem !important;
    margin-right: 3.9285714286rem !important;
  }

  .g-mx-60--sm {
    margin-left: 4.2857142857rem !important;
    margin-right: 4.2857142857rem !important;
  }

  .g-mx-65--sm {
    margin-left: 4.6428571429rem !important;
    margin-right: 4.6428571429rem !important;
  }

  .g-mx-70--sm {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .g-mx-75--sm {
    margin-left: 5.3571428571rem !important;
    margin-right: 5.3571428571rem !important;
  }

  .g-mx-80--sm {
    margin-left: 5.7142857143rem !important;
    margin-right: 5.7142857143rem !important;
  }

  .g-mx-85--sm {
    margin-left: 6.0714285714rem !important;
    margin-right: 6.0714285714rem !important;
  }

  .g-mx-90--sm {
    margin-left: 6.4285714286rem !important;
    margin-right: 6.4285714286rem !important;
  }

  .g-mx-95--sm {
    margin-left: 6.7857142857rem !important;
    margin-right: 6.7857142857rem !important;
  }

  .g-mx-100--sm {
    margin-left: 7.1428571429rem !important;
    margin-right: 7.1428571429rem !important;
  }

  .g-my-1--sm {
    margin-top: 0.0714285714rem !important;
    margin-bottom: 0.0714285714rem !important;
  }

  .g-my-2--sm {
    margin-top: 0.1428571429rem !important;
    margin-bottom: 0.1428571429rem !important;
  }

  .g-my-3--sm {
    margin-top: 0.2142857143rem !important;
    margin-bottom: 0.2142857143rem !important;
  }

  .g-my-4--sm {
    margin-top: 0.2857142857rem !important;
    margin-bottom: 0.2857142857rem !important;
  }

  .g-my-5--sm {
    margin-top: 0.3571428571rem !important;
    margin-bottom: 0.3571428571rem !important;
  }

  .g-my-6--sm {
    margin-top: 0.4285714286rem !important;
    margin-bottom: 0.4285714286rem !important;
  }

  .g-my-7--sm {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .g-my-8--sm {
    margin-top: 0.5714285714rem !important;
    margin-bottom: 0.5714285714rem !important;
  }

  .g-my-9--sm {
    margin-top: 0.6428571429rem !important;
    margin-bottom: 0.6428571429rem !important;
  }

  .g-my-10--sm {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-10--sm {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-15--sm {
    margin-top: 1.0714285714rem !important;
    margin-bottom: 1.0714285714rem !important;
  }

  .g-my-20--sm {
    margin-top: 1.4285714286rem !important;
    margin-bottom: 1.4285714286rem !important;
  }

  .g-my-25--sm {
    margin-top: 1.7857142857rem !important;
    margin-bottom: 1.7857142857rem !important;
  }

  .g-my-30--sm {
    margin-top: 2.1428571429rem !important;
    margin-bottom: 2.1428571429rem !important;
  }

  .g-my-35--sm {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .g-my-40--sm {
    margin-top: 2.8571428571rem !important;
    margin-bottom: 2.8571428571rem !important;
  }

  .g-my-45--sm {
    margin-top: 3.2142857143rem !important;
    margin-bottom: 3.2142857143rem !important;
  }

  .g-my-50--sm {
    margin-top: 3.5714285714rem !important;
    margin-bottom: 3.5714285714rem !important;
  }

  .g-my-55--sm {
    margin-top: 3.9285714286rem !important;
    margin-bottom: 3.9285714286rem !important;
  }

  .g-my-60--sm {
    margin-top: 4.2857142857rem !important;
    margin-bottom: 4.2857142857rem !important;
  }

  .g-my-65--sm {
    margin-top: 4.6428571429rem !important;
    margin-bottom: 4.6428571429rem !important;
  }

  .g-my-70--sm {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .g-my-75--sm {
    margin-top: 5.3571428571rem !important;
    margin-bottom: 5.3571428571rem !important;
  }

  .g-my-80--sm {
    margin-top: 5.7142857143rem !important;
    margin-bottom: 5.7142857143rem !important;
  }

  .g-my-85--sm {
    margin-top: 6.0714285714rem !important;
    margin-bottom: 6.0714285714rem !important;
  }

  .g-my-90--sm {
    margin-top: 6.4285714286rem !important;
    margin-bottom: 6.4285714286rem !important;
  }

  .g-my-95--sm {
    margin-top: 6.7857142857rem !important;
    margin-bottom: 6.7857142857rem !important;
  }

  .g-my-100--sm {
    margin-top: 7.1428571429rem !important;
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mt-1--sm {
    margin-top: 0.0714285714rem !important;
  }

  .g-mt-minus-1--sm {
    margin-top: -0.0714285714rem !important;
  }

  .g-mt-2--sm {
    margin-top: 0.1428571429rem !important;
  }

  .g-mt-minus-2--sm {
    margin-top: -0.1428571429rem !important;
  }

  .g-mt-3--sm {
    margin-top: 0.2142857143rem !important;
  }

  .g-mt-minus-3--sm {
    margin-top: -0.2142857143rem !important;
  }

  .g-mt-4--sm {
    margin-top: 0.2857142857rem !important;
  }

  .g-mt-minus-4--sm {
    margin-top: -0.2857142857rem !important;
  }

  .g-mt-5--sm {
    margin-top: 0.3571428571rem !important;
  }

  .g-mt-minus-5--sm {
    margin-top: -0.3571428571rem !important;
  }

  .g-mt-6--sm {
    margin-top: 0.4285714286rem !important;
  }

  .g-mt-minus-6--sm {
    margin-top: -0.4285714286rem !important;
  }

  .g-mt-7--sm {
    margin-top: 0.5rem !important;
  }

  .g-mt-minus-7--sm {
    margin-top: -0.5rem !important;
  }

  .g-mt-8--sm {
    margin-top: 0.5714285714rem !important;
  }

  .g-mt-minus-8--sm {
    margin-top: -0.5714285714rem !important;
  }

  .g-mt-9--sm {
    margin-top: 0.6428571429rem !important;
  }

  .g-mt-minus-9--sm {
    margin-top: -0.6428571429rem !important;
  }

  .g-mt-10--sm {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--sm {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-11--sm {
    margin-top: 0.7857142857rem !important;
  }

  .g-mt-minus-11--sm {
    margin-top: -0.7857142857rem !important;
  }

  .g-mt-12--sm {
    margin-top: 0.8571428571rem !important;
  }

  .g-mt-minus-12--sm {
    margin-top: -0.8571428571rem !important;
  }

  .g-mt-13--sm {
    margin-top: 0.9285714286rem !important;
  }

  .g-mt-minus-13--sm {
    margin-top: -0.9285714286rem !important;
  }

  .g-mt-14--sm {
    margin-top: 1rem !important;
  }

  .g-mt-minus-14--sm {
    margin-top: -1rem !important;
  }

  .g-mt-15--sm {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--sm {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-16--sm {
    margin-top: 1.1428571429rem !important;
  }

  .g-mt-minus-16--sm {
    margin-top: -1.1428571429rem !important;
  }

  .g-mt-17--sm {
    margin-top: 1.2142857143rem !important;
  }

  .g-mt-minus-17--sm {
    margin-top: -1.2142857143rem !important;
  }

  .g-mt-18--sm {
    margin-top: 1.2857142857rem !important;
  }

  .g-mt-minus-18--sm {
    margin-top: -1.2857142857rem !important;
  }

  .g-mt-19--sm {
    margin-top: 1.3571428571rem !important;
  }

  .g-mt-minus-19--sm {
    margin-top: -1.3571428571rem !important;
  }

  .g-mt-20--sm {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--sm {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-10--sm {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--sm {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-15--sm {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--sm {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-20--sm {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--sm {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-25--sm {
    margin-top: 1.7857142857rem !important;
  }

  .g-mt-minus-25--sm {
    margin-top: -1.7857142857rem !important;
  }

  .g-mt-30--sm {
    margin-top: 2.1428571429rem !important;
  }

  .g-mt-minus-30--sm {
    margin-top: -2.1428571429rem !important;
  }

  .g-mt-35--sm {
    margin-top: 2.5rem !important;
  }

  .g-mt-minus-35--sm {
    margin-top: -2.5rem !important;
  }

  .g-mt-40--sm {
    margin-top: 2.8571428571rem !important;
  }

  .g-mt-minus-40--sm {
    margin-top: -2.8571428571rem !important;
  }

  .g-mt-45--sm {
    margin-top: 3.2142857143rem !important;
  }

  .g-mt-minus-45--sm {
    margin-top: -3.2142857143rem !important;
  }

  .g-mt-50--sm {
    margin-top: 3.5714285714rem !important;
  }

  .g-mt-minus-50--sm {
    margin-top: -3.5714285714rem !important;
  }

  .g-mt-55--sm {
    margin-top: 3.9285714286rem !important;
  }

  .g-mt-minus-55--sm {
    margin-top: -3.9285714286rem !important;
  }

  .g-mt-60--sm {
    margin-top: 4.2857142857rem !important;
  }

  .g-mt-minus-60--sm {
    margin-top: -4.2857142857rem !important;
  }

  .g-mt-65--sm {
    margin-top: 4.6428571429rem !important;
  }

  .g-mt-minus-65--sm {
    margin-top: -4.6428571429rem !important;
  }

  .g-mt-70--sm {
    margin-top: 5rem !important;
  }

  .g-mt-minus-70--sm {
    margin-top: -5rem !important;
  }

  .g-mt-75--sm {
    margin-top: 5.3571428571rem !important;
  }

  .g-mt-minus-75--sm {
    margin-top: -5.3571428571rem !important;
  }

  .g-mt-80--sm {
    margin-top: 5.7142857143rem !important;
  }

  .g-mt-minus-80--sm {
    margin-top: -5.7142857143rem !important;
  }

  .g-mt-85--sm {
    margin-top: 6.0714285714rem !important;
  }

  .g-mt-minus-85--sm {
    margin-top: -6.0714285714rem !important;
  }

  .g-mt-90--sm {
    margin-top: 6.4285714286rem !important;
  }

  .g-mt-minus-90--sm {
    margin-top: -6.4285714286rem !important;
  }

  .g-mt-95--sm {
    margin-top: 6.7857142857rem !important;
  }

  .g-mt-minus-95--sm {
    margin-top: -6.7857142857rem !important;
  }

  .g-mt-100--sm {
    margin-top: 7.1428571429rem !important;
  }

  .g-mt-minus-100--sm {
    margin-top: -7.1428571429rem !important;
  }

  .g-mt-105--sm {
    margin-top: 7.5rem !important;
  }

  .g-mt-minus-105--sm {
    margin-top: -7.5rem !important;
  }

  .g-mt-110--sm {
    margin-top: 7.8571428571rem !important;
  }

  .g-mt-minus-110--sm {
    margin-top: -7.8571428571rem !important;
  }

  .g-mt-115--sm {
    margin-top: 8.2142857143rem !important;
  }

  .g-mt-minus-115--sm {
    margin-top: -8.2142857143rem !important;
  }

  .g-mt-120--sm {
    margin-top: 8.5714285714rem !important;
  }

  .g-mt-minus-120--sm {
    margin-top: -8.5714285714rem !important;
  }

  .g-mt-125--sm {
    margin-top: 8.9285714286rem !important;
  }

  .g-mt-minus-125--sm {
    margin-top: -8.9285714286rem !important;
  }

  .g-mt-130--sm {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-130--sm {
    margin-top: -9.2857142857rem !important;
  }

  .g-mt-135--sm {
    margin-top: 9.6428571429rem !important;
  }

  .g-mt-minus-135--sm {
    margin-top: -9.6428571429rem !important;
  }

  .g-mt-140--sm {
    margin-top: 10rem !important;
  }

  .g-mt-minus-140--sm {
    margin-top: -10rem !important;
  }

  .g-mt-145--sm {
    margin-top: 10.3571428571rem !important;
  }

  .g-mt-minus-145--sm {
    margin-top: -10.3571428571rem !important;
  }

  .g-mt-150--sm {
    margin-top: 10.7142857143rem !important;
  }

  .g-mt-minus-150--sm {
    margin-top: -10.7142857143rem !important;
  }

  .g-mt-155--sm {
    margin-top: 11.0714285714rem !important;
  }

  .g-mt-minus-155--sm {
    margin-top: -11.0714285714rem !important;
  }

  .g-mt-160--sm {
    margin-top: 11.4285714286rem !important;
  }

  .g-mt-minus-160--sm {
    margin-top: -11.4285714286rem !important;
  }

  .g-mt-165--sm {
    margin-top: 11.7857142857rem !important;
  }

  .g-mt-minus-165--sm {
    margin-top: -11.7857142857rem !important;
  }

  .g-mt-170--sm {
    margin-top: 12.1428571429rem !important;
  }

  .g-mt-minus-170--sm {
    margin-top: -12.1428571429rem !important;
  }

  .g-mb-1--sm {
    margin-bottom: 0.0714285714rem !important;
  }

  .g-mb-minus-1--sm {
    margin-bottom: -0.0714285714rem !important;
  }

  .g-mb-2--sm {
    margin-bottom: 0.1428571429rem !important;
  }

  .g-mb-minus-2--sm {
    margin-bottom: -0.1428571429rem !important;
  }

  .g-mb-3--sm {
    margin-bottom: 0.2142857143rem !important;
  }

  .g-mb-minus-3--sm {
    margin-bottom: -0.2142857143rem !important;
  }

  .g-mb-4--sm {
    margin-bottom: 0.2857142857rem !important;
  }

  .g-mb-minus-4--sm {
    margin-bottom: -0.2857142857rem !important;
  }

  .g-mb-5--sm {
    margin-bottom: 0.3571428571rem !important;
  }

  .g-mb-minus-5--sm {
    margin-bottom: -0.3571428571rem !important;
  }

  .g-mb-6--sm {
    margin-bottom: 0.4285714286rem !important;
  }

  .g-mb-minus-6--sm {
    margin-bottom: -0.4285714286rem !important;
  }

  .g-mb-7--sm {
    margin-bottom: 0.5rem !important;
  }

  .g-mb-minus-7--sm {
    margin-bottom: -0.5rem !important;
  }

  .g-mb-8--sm {
    margin-bottom: 0.5714285714rem !important;
  }

  .g-mb-minus-8--sm {
    margin-bottom: -0.5714285714rem !important;
  }

  .g-mb-9--sm {
    margin-bottom: 0.6428571429rem !important;
  }

  .g-mb-minus-9--sm {
    margin-bottom: -0.6428571429rem !important;
  }

  .g-mb-10--sm {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-minus-10--sm {
    margin-bottom: -0.7142857143rem !important;
  }

  .g-mb-11--sm {
    margin-bottom: 0.7857142857rem !important;
  }

  .g-mb-minus-11--sm {
    margin-bottom: -0.7857142857rem !important;
  }

  .g-mb-12--sm {
    margin-bottom: 0.8571428571rem !important;
  }

  .g-mb-minus-12--sm {
    margin-bottom: -0.8571428571rem !important;
  }

  .g-mb-13--sm {
    margin-bottom: 0.9285714286rem !important;
  }

  .g-mb-minus-13--sm {
    margin-bottom: -0.9285714286rem !important;
  }

  .g-mb-14--sm {
    margin-bottom: 1rem !important;
  }

  .g-mb-minus-14--sm {
    margin-bottom: -1rem !important;
  }

  .g-mb-15--sm {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-minus-15--sm {
    margin-bottom: -1.0714285714rem !important;
  }

  .g-mb-16--sm {
    margin-bottom: 1.1428571429rem !important;
  }

  .g-mb-minus-16--sm {
    margin-bottom: -1.1428571429rem !important;
  }

  .g-mb-17--sm {
    margin-bottom: 1.2142857143rem !important;
  }

  .g-mb-minus-17--sm {
    margin-bottom: -1.2142857143rem !important;
  }

  .g-mb-18--sm {
    margin-bottom: 1.2857142857rem !important;
  }

  .g-mb-minus-18--sm {
    margin-bottom: -1.2857142857rem !important;
  }

  .g-mb-19--sm {
    margin-bottom: 1.3571428571rem !important;
  }

  .g-mb-minus-19--sm {
    margin-bottom: -1.3571428571rem !important;
  }

  .g-mb-20--sm {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-minus-20--sm {
    margin-bottom: -1.4285714286rem !important;
  }

  .g-mb-10--sm {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-15--sm {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-20--sm {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-25--sm {
    margin-bottom: 1.7857142857rem !important;
  }

  .g-mb-30--sm {
    margin-bottom: 2.1428571429rem !important;
  }

  .g-mb-35--sm {
    margin-bottom: 2.5rem !important;
  }

  .g-mb-40--sm {
    margin-bottom: 2.8571428571rem !important;
  }

  .g-mb-45--sm {
    margin-bottom: 3.2142857143rem !important;
  }

  .g-mb-50--sm {
    margin-bottom: 3.5714285714rem !important;
  }

  .g-mb-55--sm {
    margin-bottom: 3.9285714286rem !important;
  }

  .g-mb-60--sm {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-mb-65--sm {
    margin-bottom: 4.6428571429rem !important;
  }

  .g-mb-70--sm {
    margin-bottom: 5rem !important;
  }

  .g-mb-75--sm {
    margin-bottom: 5.3571428571rem !important;
  }

  .g-mb-80--sm {
    margin-bottom: 5.7142857143rem !important;
  }

  .g-mb-85--sm {
    margin-bottom: 6.0714285714rem !important;
  }

  .g-mb-90--sm {
    margin-bottom: 6.4285714286rem !important;
  }

  .g-mb-95--sm {
    margin-bottom: 6.7857142857rem !important;
  }

  .g-mb-100--sm {
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mb-105--sm {
    margin-bottom: 7.5rem !important;
  }

  .g-mb-110--sm {
    margin-bottom: 7.8571428571rem !important;
  }

  .g-mb-115--sm {
    margin-bottom: 8.2142857143rem !important;
  }

  .g-mb-120--sm {
    margin-bottom: 8.5714285714rem !important;
  }

  .g-mb-125--sm {
    margin-bottom: 8.9285714286rem !important;
  }

  .g-mb-130--sm {
    margin-bottom: 9.2857142857rem !important;
  }

  .g-mb-135--sm {
    margin-bottom: 9.6428571429rem !important;
  }

  .g-mb-140--sm {
    margin-bottom: 10rem !important;
  }

  .g-mb-145--sm {
    margin-bottom: 10.3571428571rem !important;
  }

  .g-mb-150--sm {
    margin-bottom: 10.7142857143rem !important;
  }

  .g-mb-155--sm {
    margin-bottom: 11.0714285714rem !important;
  }

  .g-mb-160--sm {
    margin-bottom: 11.4285714286rem !important;
  }

  .g-mb-165--sm {
    margin-bottom: 11.7857142857rem !important;
  }

  .g-mb-170--sm {
    margin-bottom: 12.1428571429rem !important;
  }

  .g-ml-1--sm {
    margin-left: 0.0714285714rem !important;
  }

  .g-ml-minus-1--sm {
    margin-left: -0.0714285714rem !important;
  }

  .g-ml-2--sm {
    margin-left: 0.1428571429rem !important;
  }

  .g-ml-minus-2--sm {
    margin-left: -0.1428571429rem !important;
  }

  .g-ml-3--sm {
    margin-left: 0.2142857143rem !important;
  }

  .g-ml-minus-3--sm {
    margin-left: -0.2142857143rem !important;
  }

  .g-ml-4--sm {
    margin-left: 0.2857142857rem !important;
  }

  .g-ml-minus-4--sm {
    margin-left: -0.2857142857rem !important;
  }

  .g-ml-5--sm {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--sm {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-6--sm {
    margin-left: 0.4285714286rem !important;
  }

  .g-ml-minus-6--sm {
    margin-left: -0.4285714286rem !important;
  }

  .g-ml-7--sm {
    margin-left: 0.5rem !important;
  }

  .g-ml-minus-7--sm {
    margin-left: -0.5rem !important;
  }

  .g-ml-8--sm {
    margin-left: 0.5714285714rem !important;
  }

  .g-ml-minus-8--sm {
    margin-left: -0.5714285714rem !important;
  }

  .g-ml-9--sm {
    margin-left: 0.6428571429rem !important;
  }

  .g-ml-minus-9--sm {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-10--sm {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--sm {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-5--sm {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--sm {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-10--sm {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--sm {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-15--sm {
    margin-left: 1.0714285714rem !important;
  }

  .g-ml-minus-15--sm {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-20--sm {
    margin-left: 1.4285714286rem !important;
  }

  .g-ml-minus-20--sm {
    margin-left: -1.4285714286rem !important;
  }

  .g-ml-25--sm {
    margin-left: 1.7857142857rem !important;
  }

  .g-ml-minus-25--sm {
    margin-left: -1.7857142857rem !important;
  }

  .g-ml-30--sm {
    margin-left: 2.1428571429rem !important;
  }

  .g-ml-minus-30--sm {
    margin-left: -2.1428571429rem !important;
  }

  .g-ml-35--sm {
    margin-left: 2.5rem !important;
  }

  .g-ml-minus-35--sm {
    margin-left: -2.5rem !important;
  }

  .g-ml-40--sm {
    margin-left: 2.8571428571rem !important;
  }

  .g-ml-minus-40--sm {
    margin-left: -2.8571428571rem !important;
  }

  .g-ml-45--sm {
    margin-left: 3.2142857143rem !important;
  }

  .g-ml-minus-45--sm {
    margin-left: -3.2142857143rem !important;
  }

  .g-ml-50--sm {
    margin-left: 3.5714285714rem !important;
  }

  .g-ml-minus-50--sm {
    margin-left: -3.5714285714rem !important;
  }

  .g-mr-1--sm {
    margin-right: 0.0714285714rem !important;
  }

  .g-mr-minus-1--sm {
    margin-right: -0.0714285714rem !important;
  }

  .g-mr-2--sm {
    margin-right: 0.1428571429rem !important;
  }

  .g-mr-minus-2--sm {
    margin-right: -0.1428571429rem !important;
  }

  .g-mr-3--sm {
    margin-right: 0.2142857143rem !important;
  }

  .g-mr-minus-3--sm {
    margin-right: -0.2142857143rem !important;
  }

  .g-mr-4--sm {
    margin-right: 0.2857142857rem !important;
  }

  .g-mr-minus-4--sm {
    margin-right: -0.2857142857rem !important;
  }

  .g-mr-5--sm {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-minus-5--sm {
    margin-right: -0.3571428571rem !important;
  }

  .g-mr-6--sm {
    margin-right: 0.4285714286rem !important;
  }

  .g-mr-minus-6--sm {
    margin-right: -0.4285714286rem !important;
  }

  .g-mr-7--sm {
    margin-right: 0.5rem !important;
  }

  .g-mr-minus-7--sm {
    margin-right: -0.5rem !important;
  }

  .g-mr-8--sm {
    margin-right: 0.5714285714rem !important;
  }

  .g-mr-minus-8--sm {
    margin-right: -0.5714285714rem !important;
  }

  .g-mr-9--sm {
    margin-right: 0.6428571429rem !important;
  }

  .g-mr-minus-9--sm {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-10--sm {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-minus-10--sm {
    margin-right: -0.7142857143rem !important;
  }

  .g-mr-5--sm {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-10--sm {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-15--sm {
    margin-right: 1.0714285714rem !important;
  }

  .g-mr-20--sm {
    margin-right: 1.4285714286rem !important;
  }

  .g-mr-25--sm {
    margin-right: 1.7857142857rem !important;
  }

  .g-mr-30--sm {
    margin-right: 2.1428571429rem !important;
  }

  .g-mr-35--sm {
    margin-right: 2.5rem !important;
  }

  .g-mr-40--sm {
    margin-right: 2.8571428571rem !important;
  }

  .g-mr-45--sm {
    margin-right: 3.2142857143rem !important;
  }

  .g-mr-50--sm {
    margin-right: 3.5714285714rem !important;
  }
}

/* Margin Spaces (md)
------------------------------------*/

@media (min-width: 768px) {
  .g-ma-0--md {
    margin: 0 !important;
  }

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

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

  .g-ml-0--md {
    margin-left: 0 !important;
  }

  .g-mr-0--md {
    margin-right: 0 !important;
  }

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

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

  .g-mx-1--md {
    margin-left: 0.0714285714rem !important;
    margin-right: 0.0714285714rem !important;
  }

  .g-mx-2--md {
    margin-left: 0.1428571429rem !important;
    margin-right: 0.1428571429rem !important;
  }

  .g-mx-3--md {
    margin-left: 0.2142857143rem !important;
    margin-right: 0.2142857143rem !important;
  }

  .g-mx-4--md {
    margin-left: 0.2857142857rem !important;
    margin-right: 0.2857142857rem !important;
  }

  .g-mx-5--md {
    margin-left: 0.3571428571rem !important;
    margin-right: 0.3571428571rem !important;
  }

  .g-mx-6--md {
    margin-left: 0.4285714286rem !important;
    margin-right: 0.4285714286rem !important;
  }

  .g-mx-7--md {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .g-mx-8--md {
    margin-left: 0.5714285714rem !important;
    margin-right: 0.5714285714rem !important;
  }

  .g-mx-9--md {
    margin-left: 0.6428571429rem !important;
    margin-right: 0.6428571429rem !important;
  }

  .g-mx-10--md {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-10--md {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-15--md {
    margin-left: 1.0714285714rem !important;
    margin-right: 1.0714285714rem !important;
  }

  .g-mx-20--md {
    margin-left: 1.4285714286rem !important;
    margin-right: 1.4285714286rem !important;
  }

  .g-mx-25--md {
    margin-left: 1.7857142857rem !important;
    margin-right: 1.7857142857rem !important;
  }

  .g-mx-30--md {
    margin-left: 2.1428571429rem !important;
    margin-right: 2.1428571429rem !important;
  }

  .g-mx-35--md {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .g-mx-40--md {
    margin-left: 2.8571428571rem !important;
    margin-right: 2.8571428571rem !important;
  }

  .g-mx-45--md {
    margin-left: 3.2142857143rem !important;
    margin-right: 3.2142857143rem !important;
  }

  .g-mx-50--md {
    margin-left: 3.5714285714rem !important;
    margin-right: 3.5714285714rem !important;
  }

  .g-mx-55--md {
    margin-left: 3.9285714286rem !important;
    margin-right: 3.9285714286rem !important;
  }

  .g-mx-60--md {
    margin-left: 4.2857142857rem !important;
    margin-right: 4.2857142857rem !important;
  }

  .g-mx-65--md {
    margin-left: 4.6428571429rem !important;
    margin-right: 4.6428571429rem !important;
  }

  .g-mx-70--md {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .g-mx-75--md {
    margin-left: 5.3571428571rem !important;
    margin-right: 5.3571428571rem !important;
  }

  .g-mx-80--md {
    margin-left: 5.7142857143rem !important;
    margin-right: 5.7142857143rem !important;
  }

  .g-mx-85--md {
    margin-left: 6.0714285714rem !important;
    margin-right: 6.0714285714rem !important;
  }

  .g-mx-90--md {
    margin-left: 6.4285714286rem !important;
    margin-right: 6.4285714286rem !important;
  }

  .g-mx-95--md {
    margin-left: 6.7857142857rem !important;
    margin-right: 6.7857142857rem !important;
  }

  .g-mx-100--md {
    margin-left: 7.1428571429rem !important;
    margin-right: 7.1428571429rem !important;
  }

  .g-my-1--md {
    margin-top: 0.0714285714rem !important;
    margin-bottom: 0.0714285714rem !important;
  }

  .g-my-2--md {
    margin-top: 0.1428571429rem !important;
    margin-bottom: 0.1428571429rem !important;
  }

  .g-my-3--md {
    margin-top: 0.2142857143rem !important;
    margin-bottom: 0.2142857143rem !important;
  }

  .g-my-4--md {
    margin-top: 0.2857142857rem !important;
    margin-bottom: 0.2857142857rem !important;
  }

  .g-my-5--md {
    margin-top: 0.3571428571rem !important;
    margin-bottom: 0.3571428571rem !important;
  }

  .g-my-6--md {
    margin-top: 0.4285714286rem !important;
    margin-bottom: 0.4285714286rem !important;
  }

  .g-my-7--md {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .g-my-8--md {
    margin-top: 0.5714285714rem !important;
    margin-bottom: 0.5714285714rem !important;
  }

  .g-my-9--md {
    margin-top: 0.6428571429rem !important;
    margin-bottom: 0.6428571429rem !important;
  }

  .g-my-10--md {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-10--md {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-15--md {
    margin-top: 1.0714285714rem !important;
    margin-bottom: 1.0714285714rem !important;
  }

  .g-my-20--md {
    margin-top: 1.4285714286rem !important;
    margin-bottom: 1.4285714286rem !important;
  }

  .g-my-25--md {
    margin-top: 1.7857142857rem !important;
    margin-bottom: 1.7857142857rem !important;
  }

  .g-my-30--md {
    margin-top: 2.1428571429rem !important;
    margin-bottom: 2.1428571429rem !important;
  }

  .g-my-35--md {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .g-my-40--md {
    margin-top: 2.8571428571rem !important;
    margin-bottom: 2.8571428571rem !important;
  }

  .g-my-45--md {
    margin-top: 3.2142857143rem !important;
    margin-bottom: 3.2142857143rem !important;
  }

  .g-my-50--md {
    margin-top: 3.5714285714rem !important;
    margin-bottom: 3.5714285714rem !important;
  }

  .g-my-55--md {
    margin-top: 3.9285714286rem !important;
    margin-bottom: 3.9285714286rem !important;
  }

  .g-my-60--md {
    margin-top: 4.2857142857rem !important;
    margin-bottom: 4.2857142857rem !important;
  }

  .g-my-65--md {
    margin-top: 4.6428571429rem !important;
    margin-bottom: 4.6428571429rem !important;
  }

  .g-my-70--md {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .g-my-75--md {
    margin-top: 5.3571428571rem !important;
    margin-bottom: 5.3571428571rem !important;
  }

  .g-my-80--md {
    margin-top: 5.7142857143rem !important;
    margin-bottom: 5.7142857143rem !important;
  }

  .g-my-85--md {
    margin-top: 6.0714285714rem !important;
    margin-bottom: 6.0714285714rem !important;
  }

  .g-my-90--md {
    margin-top: 6.4285714286rem !important;
    margin-bottom: 6.4285714286rem !important;
  }

  .g-my-95--md {
    margin-top: 6.7857142857rem !important;
    margin-bottom: 6.7857142857rem !important;
  }

  .g-my-100--md {
    margin-top: 7.1428571429rem !important;
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mt-1--md {
    margin-top: 0.0714285714rem !important;
  }

  .g-mt-minus-1--md {
    margin-top: -0.0714285714rem !important;
  }

  .g-mt-2--md {
    margin-top: 0.1428571429rem !important;
  }

  .g-mt-minus-2--md {
    margin-top: -0.1428571429rem !important;
  }

  .g-mt-3--md {
    margin-top: 0.2142857143rem !important;
  }

  .g-mt-minus-3--md {
    margin-top: -0.2142857143rem !important;
  }

  .g-mt-4--md {
    margin-top: 0.2857142857rem !important;
  }

  .g-mt-minus-4--md {
    margin-top: -0.2857142857rem !important;
  }

  .g-mt-5--md {
    margin-top: 0.3571428571rem !important;
  }

  .g-mt-minus-5--md {
    margin-top: -0.3571428571rem !important;
  }

  .g-mt-6--md {
    margin-top: 0.4285714286rem !important;
  }

  .g-mt-minus-6--md {
    margin-top: -0.4285714286rem !important;
  }

  .g-mt-7--md {
    margin-top: 0.5rem !important;
  }

  .g-mt-minus-7--md {
    margin-top: -0.5rem !important;
  }

  .g-mt-8--md {
    margin-top: 0.5714285714rem !important;
  }

  .g-mt-minus-8--md {
    margin-top: -0.5714285714rem !important;
  }

  .g-mt-9--md {
    margin-top: 0.6428571429rem !important;
  }

  .g-mt-minus-9--md {
    margin-top: -0.6428571429rem !important;
  }

  .g-mt-10--md {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--md {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-11--md {
    margin-top: 0.7857142857rem !important;
  }

  .g-mt-minus-11--md {
    margin-top: -0.7857142857rem !important;
  }

  .g-mt-12--md {
    margin-top: 0.8571428571rem !important;
  }

  .g-mt-minus-12--md {
    margin-top: -0.8571428571rem !important;
  }

  .g-mt-13--md {
    margin-top: 0.9285714286rem !important;
  }

  .g-mt-minus-13--md {
    margin-top: -0.9285714286rem !important;
  }

  .g-mt-14--md {
    margin-top: 1rem !important;
  }

  .g-mt-minus-14--md {
    margin-top: -1rem !important;
  }

  .g-mt-15--md {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--md {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-16--md {
    margin-top: 1.1428571429rem !important;
  }

  .g-mt-minus-16--md {
    margin-top: -1.1428571429rem !important;
  }

  .g-mt-17--md {
    margin-top: 1.2142857143rem !important;
  }

  .g-mt-minus-17--md {
    margin-top: -1.2142857143rem !important;
  }

  .g-mt-18--md {
    margin-top: 1.2857142857rem !important;
  }

  .g-mt-minus-18--md {
    margin-top: -1.2857142857rem !important;
  }

  .g-mt-19--md {
    margin-top: 1.3571428571rem !important;
  }

  .g-mt-minus-19--md {
    margin-top: -1.3571428571rem !important;
  }

  .g-mt-20--md {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--md {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-10--md {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--md {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-15--md {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--md {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-20--md {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--md {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-25--md {
    margin-top: 1.7857142857rem !important;
  }

  .g-mt-minus-25--md {
    margin-top: -1.7857142857rem !important;
  }

  .g-mt-30--md {
    margin-top: 2.1428571429rem !important;
  }

  .g-mt-minus-30--md {
    margin-top: -2.1428571429rem !important;
  }

  .g-mt-35--md {
    margin-top: 2.5rem !important;
  }

  .g-mt-minus-35--md {
    margin-top: -2.5rem !important;
  }

  .g-mt-40--md {
    margin-top: 2.8571428571rem !important;
  }

  .g-mt-minus-40--md {
    margin-top: -2.8571428571rem !important;
  }

  .g-mt-45--md {
    margin-top: 3.2142857143rem !important;
  }

  .g-mt-minus-45--md {
    margin-top: -3.2142857143rem !important;
  }

  .g-mt-50--md {
    margin-top: 3.5714285714rem !important;
  }

  .g-mt-minus-50--md {
    margin-top: -3.5714285714rem !important;
  }

  .g-mt-55--md {
    margin-top: 3.9285714286rem !important;
  }

  .g-mt-minus-55--md {
    margin-top: -3.9285714286rem !important;
  }

  .g-mt-60--md {
    margin-top: 4.2857142857rem !important;
  }

  .g-mt-minus-60--md {
    margin-top: -4.2857142857rem !important;
  }

  .g-mt-65--md {
    margin-top: 4.6428571429rem !important;
  }

  .g-mt-minus-65--md {
    margin-top: -4.6428571429rem !important;
  }

  .g-mt-70--md {
    margin-top: 5rem !important;
  }

  .g-mt-minus-70--md {
    margin-top: -5rem !important;
  }

  .g-mt-75--md {
    margin-top: 5.3571428571rem !important;
  }

  .g-mt-minus-75--md {
    margin-top: -5.3571428571rem !important;
  }

  .g-mt-80--md {
    margin-top: 5.7142857143rem !important;
  }

  .g-mt-minus-80--md {
    margin-top: -5.7142857143rem !important;
  }

  .g-mt-85--md {
    margin-top: 6.0714285714rem !important;
  }

  .g-mt-minus-85--md {
    margin-top: -6.0714285714rem !important;
  }

  .g-mt-90--md {
    margin-top: 6.4285714286rem !important;
  }

  .g-mt-minus-90--md {
    margin-top: -6.4285714286rem !important;
  }

  .g-mt-95--md {
    margin-top: 6.7857142857rem !important;
  }

  .g-mt-minus-95--md {
    margin-top: -6.7857142857rem !important;
  }

  .g-mt-100--md {
    margin-top: 7.1428571429rem !important;
  }

  .g-mt-minus-100--md {
    margin-top: -7.1428571429rem !important;
  }

  .g-mt-105--md {
    margin-top: 7.5rem !important;
  }

  .g-mt-minus-105--md {
    margin-top: -7.5rem !important;
  }

  .g-mt-110--md {
    margin-top: 7.8571428571rem !important;
  }

  .g-mt-minus-110--md {
    margin-top: -7.8571428571rem !important;
  }

  .g-mt-115--md {
    margin-top: 8.2142857143rem !important;
  }

  .g-mt-minus-115--md {
    margin-top: -8.2142857143rem !important;
  }

  .g-mt-120--md {
    margin-top: 8.5714285714rem !important;
  }

  .g-mt-minus-120--md {
    margin-top: -8.5714285714rem !important;
  }

  .g-mt-125--md {
    margin-top: 8.9285714286rem !important;
  }

  .g-mt-minus-125--md {
    margin-top: -8.9285714286rem !important;
  }

  .g-mt-130--md {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-130--md {
    margin-top: -9.2857142857rem !important;
  }

  .g-mt-135--md {
    margin-top: 9.6428571429rem !important;
  }

  .g-mt-minus-135--md {
    margin-top: -9.6428571429rem !important;
  }

  .g-mt-140--md {
    margin-top: 10rem !important;
  }

  .g-mt-minus-140--md {
    margin-top: -10rem !important;
  }

  .g-mt-145--md {
    margin-top: 10.3571428571rem !important;
  }

  .g-mt-minus-145--md {
    margin-top: -10.3571428571rem !important;
  }

  .g-mt-150--md {
    margin-top: 10.7142857143rem !important;
  }

  .g-mt-minus-150--md {
    margin-top: -10.7142857143rem !important;
  }

  .g-mt-155--md {
    margin-top: 11.0714285714rem !important;
  }

  .g-mt-minus-155--md {
    margin-top: -11.0714285714rem !important;
  }

  .g-mt-160--md {
    margin-top: 11.4285714286rem !important;
  }

  .g-mt-minus-160--md {
    margin-top: -11.4285714286rem !important;
  }

  .g-mt-165--md {
    margin-top: 11.7857142857rem !important;
  }

  .g-mt-minus-165--md {
    margin-top: -11.7857142857rem !important;
  }

  .g-mt-170--md {
    margin-top: 12.1428571429rem !important;
  }

  .g-mt-minus-170--md {
    margin-top: -12.1428571429rem !important;
  }

  .g-mb-1--md {
    margin-bottom: 0.0714285714rem !important;
  }

  .g-mb-minus-1--md {
    margin-bottom: -0.0714285714rem !important;
  }

  .g-mb-2--md {
    margin-bottom: 0.1428571429rem !important;
  }

  .g-mb-minus-2--md {
    margin-bottom: -0.1428571429rem !important;
  }

  .g-mb-3--md {
    margin-bottom: 0.2142857143rem !important;
  }

  .g-mb-minus-3--md {
    margin-bottom: -0.2142857143rem !important;
  }

  .g-mb-4--md {
    margin-bottom: 0.2857142857rem !important;
  }

  .g-mb-minus-4--md {
    margin-bottom: -0.2857142857rem !important;
  }

  .g-mb-5--md {
    margin-bottom: 0.3571428571rem !important;
  }

  .g-mb-minus-5--md {
    margin-bottom: -0.3571428571rem !important;
  }

  .g-mb-6--md {
    margin-bottom: 0.4285714286rem !important;
  }

  .g-mb-minus-6--md {
    margin-bottom: -0.4285714286rem !important;
  }

  .g-mb-7--md {
    margin-bottom: 0.5rem !important;
  }

  .g-mb-minus-7--md {
    margin-bottom: -0.5rem !important;
  }

  .g-mb-8--md {
    margin-bottom: 0.5714285714rem !important;
  }

  .g-mb-minus-8--md {
    margin-bottom: -0.5714285714rem !important;
  }

  .g-mb-9--md {
    margin-bottom: 0.6428571429rem !important;
  }

  .g-mb-minus-9--md {
    margin-bottom: -0.6428571429rem !important;
  }

  .g-mb-10--md {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-minus-10--md {
    margin-bottom: -0.7142857143rem !important;
  }

  .g-mb-11--md {
    margin-bottom: 0.7857142857rem !important;
  }

  .g-mb-minus-11--md {
    margin-bottom: -0.7857142857rem !important;
  }

  .g-mb-12--md {
    margin-bottom: 0.8571428571rem !important;
  }

  .g-mb-minus-12--md {
    margin-bottom: -0.8571428571rem !important;
  }

  .g-mb-13--md {
    margin-bottom: 0.9285714286rem !important;
  }

  .g-mb-minus-13--md {
    margin-bottom: -0.9285714286rem !important;
  }

  .g-mb-14--md {
    margin-bottom: 1rem !important;
  }

  .g-mb-minus-14--md {
    margin-bottom: -1rem !important;
  }

  .g-mb-15--md {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-minus-15--md {
    margin-bottom: -1.0714285714rem !important;
  }

  .g-mb-16--md {
    margin-bottom: 1.1428571429rem !important;
  }

  .g-mb-minus-16--md {
    margin-bottom: -1.1428571429rem !important;
  }

  .g-mb-17--md {
    margin-bottom: 1.2142857143rem !important;
  }

  .g-mb-minus-17--md {
    margin-bottom: -1.2142857143rem !important;
  }

  .g-mb-18--md {
    margin-bottom: 1.2857142857rem !important;
  }

  .g-mb-minus-18--md {
    margin-bottom: -1.2857142857rem !important;
  }

  .g-mb-19--md {
    margin-bottom: 1.3571428571rem !important;
  }

  .g-mb-minus-19--md {
    margin-bottom: -1.3571428571rem !important;
  }

  .g-mb-20--md {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-minus-20--md {
    margin-bottom: -1.4285714286rem !important;
  }

  .g-mb-10--md {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-15--md {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-20--md {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-25--md {
    margin-bottom: 1.7857142857rem !important;
  }

  .g-mb-30--md {
    margin-bottom: 2.1428571429rem !important;
  }

  .g-mb-35--md {
    margin-bottom: 2.5rem !important;
  }

  .g-mb-40--md {
    margin-bottom: 2.8571428571rem !important;
  }

  .g-mb-45--md {
    margin-bottom: 3.2142857143rem !important;
  }

  .g-mb-50--md {
    margin-bottom: 3.5714285714rem !important;
  }

  .g-mb-55--md {
    margin-bottom: 3.9285714286rem !important;
  }

  .g-mb-60--md {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-mb-65--md {
    margin-bottom: 4.6428571429rem !important;
  }

  .g-mb-70--md {
    margin-bottom: 5rem !important;
  }

  .g-mb-75--md {
    margin-bottom: 5.3571428571rem !important;
  }

  .g-mb-80--md {
    margin-bottom: 5.7142857143rem !important;
  }

  .g-mb-85--md {
    margin-bottom: 6.0714285714rem !important;
  }

  .g-mb-90--md {
    margin-bottom: 6.4285714286rem !important;
  }

  .g-mb-95--md {
    margin-bottom: 6.7857142857rem !important;
  }

  .g-mb-100--md {
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mb-105--md {
    margin-bottom: 7.5rem !important;
  }

  .g-mb-110--md {
    margin-bottom: 7.8571428571rem !important;
  }

  .g-mb-115--md {
    margin-bottom: 8.2142857143rem !important;
  }

  .g-mb-120--md {
    margin-bottom: 8.5714285714rem !important;
  }

  .g-mb-125--md {
    margin-bottom: 8.9285714286rem !important;
  }

  .g-mb-130--md {
    margin-bottom: 9.2857142857rem !important;
  }

  .g-mb-135--md {
    margin-bottom: 9.6428571429rem !important;
  }

  .g-mb-140--md {
    margin-bottom: 10rem !important;
  }

  .g-mb-145--md {
    margin-bottom: 10.3571428571rem !important;
  }

  .g-mb-150--md {
    margin-bottom: 10.7142857143rem !important;
  }

  .g-mb-155--md {
    margin-bottom: 11.0714285714rem !important;
  }

  .g-mb-160--md {
    margin-bottom: 11.4285714286rem !important;
  }

  .g-mb-165--md {
    margin-bottom: 11.7857142857rem !important;
  }

  .g-mb-170--md {
    margin-bottom: 12.1428571429rem !important;
  }

  .g-ml-1--md {
    margin-left: 0.0714285714rem !important;
  }

  .g-ml-minus-1--md {
    margin-left: -0.0714285714rem !important;
  }

  .g-ml-2--md {
    margin-left: 0.1428571429rem !important;
  }

  .g-ml-minus-2--md {
    margin-left: -0.1428571429rem !important;
  }

  .g-ml-3--md {
    margin-left: 0.2142857143rem !important;
  }

  .g-ml-minus-3--md {
    margin-left: -0.2142857143rem !important;
  }

  .g-ml-4--md {
    margin-left: 0.2857142857rem !important;
  }

  .g-ml-minus-4--md {
    margin-left: -0.2857142857rem !important;
  }

  .g-ml-5--md {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--md {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-6--md {
    margin-left: 0.4285714286rem !important;
  }

  .g-ml-minus-6--md {
    margin-left: -0.4285714286rem !important;
  }

  .g-ml-7--md {
    margin-left: 0.5rem !important;
  }

  .g-ml-minus-7--md {
    margin-left: -0.5rem !important;
  }

  .g-ml-8--md {
    margin-left: 0.5714285714rem !important;
  }

  .g-ml-minus-8--md {
    margin-left: -0.5714285714rem !important;
  }

  .g-ml-9--md {
    margin-left: 0.6428571429rem !important;
  }

  .g-ml-minus-9--md {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-10--md {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--md {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-5--md {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--md {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-10--md {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--md {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-15--md {
    margin-left: 1.0714285714rem !important;
  }

  .g-ml-minus-15--md {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-20--md {
    margin-left: 1.4285714286rem !important;
  }

  .g-ml-minus-20--md {
    margin-left: -1.4285714286rem !important;
  }

  .g-ml-25--md {
    margin-left: 1.7857142857rem !important;
  }

  .g-ml-minus-25--md {
    margin-left: -1.7857142857rem !important;
  }

  .g-ml-30--md {
    margin-left: 2.1428571429rem !important;
  }

  .g-ml-minus-30--md {
    margin-left: -2.1428571429rem !important;
  }

  .g-ml-35--md {
    margin-left: 2.5rem !important;
  }

  .g-ml-minus-35--md {
    margin-left: -2.5rem !important;
  }

  .g-ml-40--md {
    margin-left: 2.8571428571rem !important;
  }

  .g-ml-minus-40--md {
    margin-left: -2.8571428571rem !important;
  }

  .g-ml-45--md {
    margin-left: 3.2142857143rem !important;
  }

  .g-ml-minus-45--md {
    margin-left: -3.2142857143rem !important;
  }

  .g-ml-50--md {
    margin-left: 3.5714285714rem !important;
  }

  .g-ml-minus-50--md {
    margin-left: -3.5714285714rem !important;
  }

  .g-mr-1--md {
    margin-right: 0.0714285714rem !important;
  }

  .g-mr-minus-1--md {
    margin-right: -0.0714285714rem !important;
  }

  .g-mr-2--md {
    margin-right: 0.1428571429rem !important;
  }

  .g-mr-minus-2--md {
    margin-right: -0.1428571429rem !important;
  }

  .g-mr-3--md {
    margin-right: 0.2142857143rem !important;
  }

  .g-mr-minus-3--md {
    margin-right: -0.2142857143rem !important;
  }

  .g-mr-4--md {
    margin-right: 0.2857142857rem !important;
  }

  .g-mr-minus-4--md {
    margin-right: -0.2857142857rem !important;
  }

  .g-mr-5--md {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-minus-5--md {
    margin-right: -0.3571428571rem !important;
  }

  .g-mr-6--md {
    margin-right: 0.4285714286rem !important;
  }

  .g-mr-minus-6--md {
    margin-right: -0.4285714286rem !important;
  }

  .g-mr-7--md {
    margin-right: 0.5rem !important;
  }

  .g-mr-minus-7--md {
    margin-right: -0.5rem !important;
  }

  .g-mr-8--md {
    margin-right: 0.5714285714rem !important;
  }

  .g-mr-minus-8--md {
    margin-right: -0.5714285714rem !important;
  }

  .g-mr-9--md {
    margin-right: 0.6428571429rem !important;
  }

  .g-mr-minus-9--md {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-10--md {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-minus-10--md {
    margin-right: -0.7142857143rem !important;
  }

  .g-mr-5--md {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-10--md {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-15--md {
    margin-right: 1.0714285714rem !important;
  }

  .g-mr-20--md {
    margin-right: 1.4285714286rem !important;
  }

  .g-mr-25--md {
    margin-right: 1.7857142857rem !important;
  }

  .g-mr-30--md {
    margin-right: 2.1428571429rem !important;
  }

  .g-mr-35--md {
    margin-right: 2.5rem !important;
  }

  .g-mr-40--md {
    margin-right: 2.8571428571rem !important;
  }

  .g-mr-45--md {
    margin-right: 3.2142857143rem !important;
  }

  .g-mr-50--md {
    margin-right: 3.5714285714rem !important;
  }
}

/* Margin Spaces (lg)
------------------------------------*/

@media (min-width: 992px) {
  .g-ma-0--lg {
    margin: 0 !important;
  }

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

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

  .g-ml-0--lg {
    margin-left: 0 !important;
  }

  .g-mr-0--lg {
    margin-right: 0 !important;
  }

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

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

  .g-mx-1--lg {
    margin-left: 0.0714285714rem !important;
    margin-right: 0.0714285714rem !important;
  }

  .g-mx-2--lg {
    margin-left: 0.1428571429rem !important;
    margin-right: 0.1428571429rem !important;
  }

  .g-mx-3--lg {
    margin-left: 0.2142857143rem !important;
    margin-right: 0.2142857143rem !important;
  }

  .g-mx-4--lg {
    margin-left: 0.2857142857rem !important;
    margin-right: 0.2857142857rem !important;
  }

  .g-mx-5--lg {
    margin-left: 0.3571428571rem !important;
    margin-right: 0.3571428571rem !important;
  }

  .g-mx-6--lg {
    margin-left: 0.4285714286rem !important;
    margin-right: 0.4285714286rem !important;
  }

  .g-mx-7--lg {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .g-mx-8--lg {
    margin-left: 0.5714285714rem !important;
    margin-right: 0.5714285714rem !important;
  }

  .g-mx-9--lg {
    margin-left: 0.6428571429rem !important;
    margin-right: 0.6428571429rem !important;
  }

  .g-mx-10--lg {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-10--lg {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-15--lg {
    margin-left: 1.0714285714rem !important;
    margin-right: 1.0714285714rem !important;
  }

  .g-mx-20--lg {
    margin-left: 1.4285714286rem !important;
    margin-right: 1.4285714286rem !important;
  }

  .g-mx-25--lg {
    margin-left: 1.7857142857rem !important;
    margin-right: 1.7857142857rem !important;
  }

  .g-mx-30--lg {
    margin-left: 2.1428571429rem !important;
    margin-right: 2.1428571429rem !important;
  }

  .g-mx-35--lg {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .g-mx-40--lg {
    margin-left: 2.8571428571rem !important;
    margin-right: 2.8571428571rem !important;
  }

  .g-mx-45--lg {
    margin-left: 3.2142857143rem !important;
    margin-right: 3.2142857143rem !important;
  }

  .g-mx-50--lg {
    margin-left: 3.5714285714rem !important;
    margin-right: 3.5714285714rem !important;
  }

  .g-mx-55--lg {
    margin-left: 3.9285714286rem !important;
    margin-right: 3.9285714286rem !important;
  }

  .g-mx-60--lg {
    margin-left: 4.2857142857rem !important;
    margin-right: 4.2857142857rem !important;
  }

  .g-mx-65--lg {
    margin-left: 4.6428571429rem !important;
    margin-right: 4.6428571429rem !important;
  }

  .g-mx-70--lg {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .g-mx-75--lg {
    margin-left: 5.3571428571rem !important;
    margin-right: 5.3571428571rem !important;
  }

  .g-mx-80--lg {
    margin-left: 5.7142857143rem !important;
    margin-right: 5.7142857143rem !important;
  }

  .g-mx-85--lg {
    margin-left: 6.0714285714rem !important;
    margin-right: 6.0714285714rem !important;
  }

  .g-mx-90--lg {
    margin-left: 6.4285714286rem !important;
    margin-right: 6.4285714286rem !important;
  }

  .g-mx-95--lg {
    margin-left: 6.7857142857rem !important;
    margin-right: 6.7857142857rem !important;
  }

  .g-mx-100--lg {
    margin-left: 7.1428571429rem !important;
    margin-right: 7.1428571429rem !important;
  }

  .g-my-1--lg {
    margin-top: 0.0714285714rem !important;
    margin-bottom: 0.0714285714rem !important;
  }

  .g-my-2--lg {
    margin-top: 0.1428571429rem !important;
    margin-bottom: 0.1428571429rem !important;
  }

  .g-my-3--lg {
    margin-top: 0.2142857143rem !important;
    margin-bottom: 0.2142857143rem !important;
  }

  .g-my-4--lg {
    margin-top: 0.2857142857rem !important;
    margin-bottom: 0.2857142857rem !important;
  }

  .g-my-5--lg {
    margin-top: 0.3571428571rem !important;
    margin-bottom: 0.3571428571rem !important;
  }

  .g-my-6--lg {
    margin-top: 0.4285714286rem !important;
    margin-bottom: 0.4285714286rem !important;
  }

  .g-my-7--lg {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .g-my-8--lg {
    margin-top: 0.5714285714rem !important;
    margin-bottom: 0.5714285714rem !important;
  }

  .g-my-9--lg {
    margin-top: 0.6428571429rem !important;
    margin-bottom: 0.6428571429rem !important;
  }

  .g-my-10--lg {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-10--lg {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-15--lg {
    margin-top: 1.0714285714rem !important;
    margin-bottom: 1.0714285714rem !important;
  }

  .g-my-20--lg {
    margin-top: 1.4285714286rem !important;
    margin-bottom: 1.4285714286rem !important;
  }

  .g-my-25--lg {
    margin-top: 1.7857142857rem !important;
    margin-bottom: 1.7857142857rem !important;
  }

  .g-my-30--lg {
    margin-top: 2.1428571429rem !important;
    margin-bottom: 2.1428571429rem !important;
  }

  .g-my-35--lg {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .g-my-40--lg {
    margin-top: 2.8571428571rem !important;
    margin-bottom: 2.8571428571rem !important;
  }

  .g-my-45--lg {
    margin-top: 3.2142857143rem !important;
    margin-bottom: 3.2142857143rem !important;
  }

  .g-my-50--lg {
    margin-top: 3.5714285714rem !important;
    margin-bottom: 3.5714285714rem !important;
  }

  .g-my-55--lg {
    margin-top: 3.9285714286rem !important;
    margin-bottom: 3.9285714286rem !important;
  }

  .g-my-60--lg {
    margin-top: 4.2857142857rem !important;
    margin-bottom: 4.2857142857rem !important;
  }

  .g-my-65--lg {
    margin-top: 4.6428571429rem !important;
    margin-bottom: 4.6428571429rem !important;
  }

  .g-my-70--lg {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .g-my-75--lg {
    margin-top: 5.3571428571rem !important;
    margin-bottom: 5.3571428571rem !important;
  }

  .g-my-80--lg {
    margin-top: 5.7142857143rem !important;
    margin-bottom: 5.7142857143rem !important;
  }

  .g-my-85--lg {
    margin-top: 6.0714285714rem !important;
    margin-bottom: 6.0714285714rem !important;
  }

  .g-my-90--lg {
    margin-top: 6.4285714286rem !important;
    margin-bottom: 6.4285714286rem !important;
  }

  .g-my-95--lg {
    margin-top: 6.7857142857rem !important;
    margin-bottom: 6.7857142857rem !important;
  }

  .g-my-100--lg {
    margin-top: 7.1428571429rem !important;
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mt-1--lg {
    margin-top: 0.0714285714rem !important;
  }

  .g-mt-minus-1--lg {
    margin-top: -0.0714285714rem !important;
  }

  .g-mt-2--lg {
    margin-top: 0.1428571429rem !important;
  }

  .g-mt-minus-2--lg {
    margin-top: -0.1428571429rem !important;
  }

  .g-mt-3--lg {
    margin-top: 0.2142857143rem !important;
  }

  .g-mt-minus-3--lg {
    margin-top: -0.2142857143rem !important;
  }

  .g-mt-4--lg {
    margin-top: 0.2857142857rem !important;
  }

  .g-mt-minus-4--lg {
    margin-top: -0.2857142857rem !important;
  }

  .g-mt-5--lg {
    margin-top: 0.3571428571rem !important;
  }

  .g-mt-minus-5--lg {
    margin-top: -0.3571428571rem !important;
  }

  .g-mt-6--lg {
    margin-top: 0.4285714286rem !important;
  }

  .g-mt-minus-6--lg {
    margin-top: -0.4285714286rem !important;
  }

  .g-mt-7--lg {
    margin-top: 0.5rem !important;
  }

  .g-mt-minus-7--lg {
    margin-top: -0.5rem !important;
  }

  .g-mt-8--lg {
    margin-top: 0.5714285714rem !important;
  }

  .g-mt-minus-8--lg {
    margin-top: -0.5714285714rem !important;
  }

  .g-mt-9--lg {
    margin-top: 0.6428571429rem !important;
  }

  .g-mt-minus-9--lg {
    margin-top: -0.6428571429rem !important;
  }

  .g-mt-10--lg {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--lg {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-11--lg {
    margin-top: 0.7857142857rem !important;
  }

  .g-mt-minus-11--lg {
    margin-top: -0.7857142857rem !important;
  }

  .g-mt-12--lg {
    margin-top: 0.8571428571rem !important;
  }

  .g-mt-minus-12--lg {
    margin-top: -0.8571428571rem !important;
  }

  .g-mt-13--lg {
    margin-top: 0.9285714286rem !important;
  }

  .g-mt-minus-13--lg {
    margin-top: -0.9285714286rem !important;
  }

  .g-mt-14--lg {
    margin-top: 1rem !important;
  }

  .g-mt-minus-14--lg {
    margin-top: -1rem !important;
  }

  .g-mt-15--lg {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--lg {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-16--lg {
    margin-top: 1.1428571429rem !important;
  }

  .g-mt-minus-16--lg {
    margin-top: -1.1428571429rem !important;
  }

  .g-mt-17--lg {
    margin-top: 1.2142857143rem !important;
  }

  .g-mt-minus-17--lg {
    margin-top: -1.2142857143rem !important;
  }

  .g-mt-18--lg {
    margin-top: 1.2857142857rem !important;
  }

  .g-mt-minus-18--lg {
    margin-top: -1.2857142857rem !important;
  }

  .g-mt-19--lg {
    margin-top: 1.3571428571rem !important;
  }

  .g-mt-minus-19--lg {
    margin-top: -1.3571428571rem !important;
  }

  .g-mt-20--lg {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--lg {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-10--lg {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--lg {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-15--lg {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--lg {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-20--lg {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--lg {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-25--lg {
    margin-top: 1.7857142857rem !important;
  }

  .g-mt-minus-25--lg {
    margin-top: -1.7857142857rem !important;
  }

  .g-mt-30--lg {
    margin-top: 2.1428571429rem !important;
  }

  .g-mt-minus-30--lg {
    margin-top: -2.1428571429rem !important;
  }

  .g-mt-35--lg {
    margin-top: 2.5rem !important;
  }

  .g-mt-minus-35--lg {
    margin-top: -2.5rem !important;
  }

  .g-mt-40--lg {
    margin-top: 2.8571428571rem !important;
  }

  .g-mt-minus-40--lg {
    margin-top: -2.8571428571rem !important;
  }

  .g-mt-45--lg {
    margin-top: 3.2142857143rem !important;
  }

  .g-mt-minus-45--lg {
    margin-top: -3.2142857143rem !important;
  }

  .g-mt-50--lg {
    margin-top: 3.5714285714rem !important;
  }

  .g-mt-minus-50--lg {
    margin-top: -3.5714285714rem !important;
  }

  .g-mt-55--lg {
    margin-top: 3.9285714286rem !important;
  }

  .g-mt-minus-55--lg {
    margin-top: -3.9285714286rem !important;
  }

  .g-mt-60--lg {
    margin-top: 4.2857142857rem !important;
  }

  .g-mt-minus-60--lg {
    margin-top: -4.2857142857rem !important;
  }

  .g-mt-65--lg {
    margin-top: 4.6428571429rem !important;
  }

  .g-mt-minus-65--lg {
    margin-top: -4.6428571429rem !important;
  }

  .g-mt-70--lg {
    margin-top: 5rem !important;
  }

  .g-mt-minus-70--lg {
    margin-top: -5rem !important;
  }

  .g-mt-75--lg {
    margin-top: 5.3571428571rem !important;
  }

  .g-mt-minus-75--lg {
    margin-top: -5.3571428571rem !important;
  }

  .g-mt-80--lg {
    margin-top: 5.7142857143rem !important;
  }

  .g-mt-minus-80--lg {
    margin-top: -5.7142857143rem !important;
  }

  .g-mt-85--lg {
    margin-top: 6.0714285714rem !important;
  }

  .g-mt-minus-85--lg {
    margin-top: -6.0714285714rem !important;
  }

  .g-mt-90--lg {
    margin-top: 6.4285714286rem !important;
  }

  .g-mt-minus-90--lg {
    margin-top: -6.4285714286rem !important;
  }

  .g-mt-95--lg {
    margin-top: 6.7857142857rem !important;
  }

  .g-mt-minus-95--lg {
    margin-top: -6.7857142857rem !important;
  }

  .g-mt-100--lg {
    margin-top: 7.1428571429rem !important;
  }

  .g-mt-minus-100--lg {
    margin-top: -7.1428571429rem !important;
  }

  .g-mt-105--lg {
    margin-top: 7.5rem !important;
  }

  .g-mt-minus-105--lg {
    margin-top: -7.5rem !important;
  }

  .g-mt-110--lg {
    margin-top: 7.8571428571rem !important;
  }

  .g-mt-minus-110--lg {
    margin-top: -7.8571428571rem !important;
  }

  .g-mt-115--lg {
    margin-top: 8.2142857143rem !important;
  }

  .g-mt-minus-115--lg {
    margin-top: -8.2142857143rem !important;
  }

  .g-mt-120--lg {
    margin-top: 8.5714285714rem !important;
  }

  .g-mt-minus-120--lg {
    margin-top: -8.5714285714rem !important;
  }

  .g-mt-125--lg {
    margin-top: 8.9285714286rem !important;
  }

  .g-mt-minus-125--lg {
    margin-top: -8.9285714286rem !important;
  }

  .g-mt-130--lg {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-130--lg {
    margin-top: -9.2857142857rem !important;
  }

  .g-mt-135--lg {
    margin-top: 9.6428571429rem !important;
  }

  .g-mt-minus-135--lg {
    margin-top: -9.6428571429rem !important;
  }

  .g-mt-140--lg {
    margin-top: 10rem !important;
  }

  .g-mt-minus-140--lg {
    margin-top: -10rem !important;
  }

  .g-mt-145--lg {
    margin-top: 10.3571428571rem !important;
  }

  .g-mt-minus-145--lg {
    margin-top: -10.3571428571rem !important;
  }

  .g-mt-150--lg {
    margin-top: 10.7142857143rem !important;
  }

  .g-mt-minus-150--lg {
    margin-top: -10.7142857143rem !important;
  }

  .g-mt-155--lg {
    margin-top: 11.0714285714rem !important;
  }

  .g-mt-minus-155--lg {
    margin-top: -11.0714285714rem !important;
  }

  .g-mt-160--lg {
    margin-top: 11.4285714286rem !important;
  }

  .g-mt-minus-160--lg {
    margin-top: -11.4285714286rem !important;
  }

  .g-mt-165--lg {
    margin-top: 11.7857142857rem !important;
  }

  .g-mt-minus-165--lg {
    margin-top: -11.7857142857rem !important;
  }

  .g-mt-170--lg {
    margin-top: 12.1428571429rem !important;
  }

  .g-mt-minus-170--lg {
    margin-top: -12.1428571429rem !important;
  }

  .g-mb-1--lg {
    margin-bottom: 0.0714285714rem !important;
  }

  .g-mb-minus-1--lg {
    margin-bottom: -0.0714285714rem !important;
  }

  .g-mb-2--lg {
    margin-bottom: 0.1428571429rem !important;
  }

  .g-mb-minus-2--lg {
    margin-bottom: -0.1428571429rem !important;
  }

  .g-mb-3--lg {
    margin-bottom: 0.2142857143rem !important;
  }

  .g-mb-minus-3--lg {
    margin-bottom: -0.2142857143rem !important;
  }

  .g-mb-4--lg {
    margin-bottom: 0.2857142857rem !important;
  }

  .g-mb-minus-4--lg {
    margin-bottom: -0.2857142857rem !important;
  }

  .g-mb-5--lg {
    margin-bottom: 0.3571428571rem !important;
  }

  .g-mb-minus-5--lg {
    margin-bottom: -0.3571428571rem !important;
  }

  .g-mb-6--lg {
    margin-bottom: 0.4285714286rem !important;
  }

  .g-mb-minus-6--lg {
    margin-bottom: -0.4285714286rem !important;
  }

  .g-mb-7--lg {
    margin-bottom: 0.5rem !important;
  }

  .g-mb-minus-7--lg {
    margin-bottom: -0.5rem !important;
  }

  .g-mb-8--lg {
    margin-bottom: 0.5714285714rem !important;
  }

  .g-mb-minus-8--lg {
    margin-bottom: -0.5714285714rem !important;
  }

  .g-mb-9--lg {
    margin-bottom: 0.6428571429rem !important;
  }

  .g-mb-minus-9--lg {
    margin-bottom: -0.6428571429rem !important;
  }

  .g-mb-10--lg {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-minus-10--lg {
    margin-bottom: -0.7142857143rem !important;
  }

  .g-mb-11--lg {
    margin-bottom: 0.7857142857rem !important;
  }

  .g-mb-minus-11--lg {
    margin-bottom: -0.7857142857rem !important;
  }

  .g-mb-12--lg {
    margin-bottom: 0.8571428571rem !important;
  }

  .g-mb-minus-12--lg {
    margin-bottom: -0.8571428571rem !important;
  }

  .g-mb-13--lg {
    margin-bottom: 0.9285714286rem !important;
  }

  .g-mb-minus-13--lg {
    margin-bottom: -0.9285714286rem !important;
  }

  .g-mb-14--lg {
    margin-bottom: 1rem !important;
  }

  .g-mb-minus-14--lg {
    margin-bottom: -1rem !important;
  }

  .g-mb-15--lg {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-minus-15--lg {
    margin-bottom: -1.0714285714rem !important;
  }

  .g-mb-16--lg {
    margin-bottom: 1.1428571429rem !important;
  }

  .g-mb-minus-16--lg {
    margin-bottom: -1.1428571429rem !important;
  }

  .g-mb-17--lg {
    margin-bottom: 1.2142857143rem !important;
  }

  .g-mb-minus-17--lg {
    margin-bottom: -1.2142857143rem !important;
  }

  .g-mb-18--lg {
    margin-bottom: 1.2857142857rem !important;
  }

  .g-mb-minus-18--lg {
    margin-bottom: -1.2857142857rem !important;
  }

  .g-mb-19--lg {
    margin-bottom: 1.3571428571rem !important;
  }

  .g-mb-minus-19--lg {
    margin-bottom: -1.3571428571rem !important;
  }

  .g-mb-20--lg {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-minus-20--lg {
    margin-bottom: -1.4285714286rem !important;
  }

  .g-mb-10--lg {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-15--lg {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-20--lg {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-25--lg {
    margin-bottom: 1.7857142857rem !important;
  }

  .g-mb-30--lg {
    margin-bottom: 2.1428571429rem !important;
  }

  .g-mb-35--lg {
    margin-bottom: 2.5rem !important;
  }

  .g-mb-40--lg {
    margin-bottom: 2.8571428571rem !important;
  }

  .g-mb-45--lg {
    margin-bottom: 3.2142857143rem !important;
  }

  .g-mb-50--lg {
    margin-bottom: 3.5714285714rem !important;
  }

  .g-mb-55--lg {
    margin-bottom: 3.9285714286rem !important;
  }

  .g-mb-60--lg {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-mb-65--lg {
    margin-bottom: 4.6428571429rem !important;
  }

  .g-mb-70--lg {
    margin-bottom: 5rem !important;
  }

  .g-mb-75--lg {
    margin-bottom: 5.3571428571rem !important;
  }

  .g-mb-80--lg {
    margin-bottom: 5.7142857143rem !important;
  }

  .g-mb-85--lg {
    margin-bottom: 6.0714285714rem !important;
  }

  .g-mb-90--lg {
    margin-bottom: 6.4285714286rem !important;
  }

  .g-mb-95--lg {
    margin-bottom: 6.7857142857rem !important;
  }

  .g-mb-100--lg {
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mb-105--lg {
    margin-bottom: 7.5rem !important;
  }

  .g-mb-110--lg {
    margin-bottom: 7.8571428571rem !important;
  }

  .g-mb-115--lg {
    margin-bottom: 8.2142857143rem !important;
  }

  .g-mb-120--lg {
    margin-bottom: 8.5714285714rem !important;
  }

  .g-mb-125--lg {
    margin-bottom: 8.9285714286rem !important;
  }

  .g-mb-130--lg {
    margin-bottom: 9.2857142857rem !important;
  }

  .g-mb-135--lg {
    margin-bottom: 9.6428571429rem !important;
  }

  .g-mb-140--lg {
    margin-bottom: 10rem !important;
  }

  .g-mb-145--lg {
    margin-bottom: 10.3571428571rem !important;
  }

  .g-mb-150--lg {
    margin-bottom: 10.7142857143rem !important;
  }

  .g-mb-155--lg {
    margin-bottom: 11.0714285714rem !important;
  }

  .g-mb-160--lg {
    margin-bottom: 11.4285714286rem !important;
  }

  .g-mb-165--lg {
    margin-bottom: 11.7857142857rem !important;
  }

  .g-mb-170--lg {
    margin-bottom: 12.1428571429rem !important;
  }

  .g-ml-1--lg {
    margin-left: 0.0714285714rem !important;
  }

  .g-ml-minus-1--lg {
    margin-left: -0.0714285714rem !important;
  }

  .g-ml-2--lg {
    margin-left: 0.1428571429rem !important;
  }

  .g-ml-minus-2--lg {
    margin-left: -0.1428571429rem !important;
  }

  .g-ml-3--lg {
    margin-left: 0.2142857143rem !important;
  }

  .g-ml-minus-3--lg {
    margin-left: -0.2142857143rem !important;
  }

  .g-ml-4--lg {
    margin-left: 0.2857142857rem !important;
  }

  .g-ml-minus-4--lg {
    margin-left: -0.2857142857rem !important;
  }

  .g-ml-5--lg {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--lg {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-6--lg {
    margin-left: 0.4285714286rem !important;
  }

  .g-ml-minus-6--lg {
    margin-left: -0.4285714286rem !important;
  }

  .g-ml-7--lg {
    margin-left: 0.5rem !important;
  }

  .g-ml-minus-7--lg {
    margin-left: -0.5rem !important;
  }

  .g-ml-8--lg {
    margin-left: 0.5714285714rem !important;
  }

  .g-ml-minus-8--lg {
    margin-left: -0.5714285714rem !important;
  }

  .g-ml-9--lg {
    margin-left: 0.6428571429rem !important;
  }

  .g-ml-minus-9--lg {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-10--lg {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--lg {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-5--lg {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--lg {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-10--lg {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--lg {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-15--lg {
    margin-left: 1.0714285714rem !important;
  }

  .g-ml-minus-15--lg {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-20--lg {
    margin-left: 1.4285714286rem !important;
  }

  .g-ml-minus-20--lg {
    margin-left: -1.4285714286rem !important;
  }

  .g-ml-25--lg {
    margin-left: 1.7857142857rem !important;
  }

  .g-ml-minus-25--lg {
    margin-left: -1.7857142857rem !important;
  }

  .g-ml-30--lg {
    margin-left: 2.1428571429rem !important;
  }

  .g-ml-minus-30--lg {
    margin-left: -2.1428571429rem !important;
  }

  .g-ml-35--lg {
    margin-left: 2.5rem !important;
  }

  .g-ml-minus-35--lg {
    margin-left: -2.5rem !important;
  }

  .g-ml-40--lg {
    margin-left: 2.8571428571rem !important;
  }

  .g-ml-minus-40--lg {
    margin-left: -2.8571428571rem !important;
  }

  .g-ml-45--lg {
    margin-left: 3.2142857143rem !important;
  }

  .g-ml-minus-45--lg {
    margin-left: -3.2142857143rem !important;
  }

  .g-ml-50--lg {
    margin-left: 3.5714285714rem !important;
  }

  .g-ml-minus-50--lg {
    margin-left: -3.5714285714rem !important;
  }

  .g-mr-1--lg {
    margin-right: 0.0714285714rem !important;
  }

  .g-mr-minus-1--lg {
    margin-right: -0.0714285714rem !important;
  }

  .g-mr-2--lg {
    margin-right: 0.1428571429rem !important;
  }

  .g-mr-minus-2--lg {
    margin-right: -0.1428571429rem !important;
  }

  .g-mr-3--lg {
    margin-right: 0.2142857143rem !important;
  }

  .g-mr-minus-3--lg {
    margin-right: -0.2142857143rem !important;
  }

  .g-mr-4--lg {
    margin-right: 0.2857142857rem !important;
  }

  .g-mr-minus-4--lg {
    margin-right: -0.2857142857rem !important;
  }

  .g-mr-5--lg {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-minus-5--lg {
    margin-right: -0.3571428571rem !important;
  }

  .g-mr-6--lg {
    margin-right: 0.4285714286rem !important;
  }

  .g-mr-minus-6--lg {
    margin-right: -0.4285714286rem !important;
  }

  .g-mr-7--lg {
    margin-right: 0.5rem !important;
  }

  .g-mr-minus-7--lg {
    margin-right: -0.5rem !important;
  }

  .g-mr-8--lg {
    margin-right: 0.5714285714rem !important;
  }

  .g-mr-minus-8--lg {
    margin-right: -0.5714285714rem !important;
  }

  .g-mr-9--lg {
    margin-right: 0.6428571429rem !important;
  }

  .g-mr-minus-9--lg {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-10--lg {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-minus-10--lg {
    margin-right: -0.7142857143rem !important;
  }

  .g-mr-5--lg {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-10--lg {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-15--lg {
    margin-right: 1.0714285714rem !important;
  }

  .g-mr-20--lg {
    margin-right: 1.4285714286rem !important;
  }

  .g-mr-25--lg {
    margin-right: 1.7857142857rem !important;
  }

  .g-mr-30--lg {
    margin-right: 2.1428571429rem !important;
  }

  .g-mr-35--lg {
    margin-right: 2.5rem !important;
  }

  .g-mr-40--lg {
    margin-right: 2.8571428571rem !important;
  }

  .g-mr-45--lg {
    margin-right: 3.2142857143rem !important;
  }

  .g-mr-50--lg {
    margin-right: 3.5714285714rem !important;
  }
}

/* Margin Spaces (xl)
------------------------------------*/

/* P */

@media (min-width: 1200px) {
  .g-ma-0--xl {
    margin: 0 !important;
  }

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

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

  .g-ml-0--xl {
    margin-left: 0 !important;
  }

  .g-mr-0--xl {
    margin-right: 0 !important;
  }

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

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

  .g-mx-1--xl {
    margin-left: 0.0714285714rem !important;
    margin-right: 0.0714285714rem !important;
  }

  .g-mx-2--xl {
    margin-left: 0.1428571429rem !important;
    margin-right: 0.1428571429rem !important;
  }

  .g-mx-3--xl {
    margin-left: 0.2142857143rem !important;
    margin-right: 0.2142857143rem !important;
  }

  .g-mx-4--xl {
    margin-left: 0.2857142857rem !important;
    margin-right: 0.2857142857rem !important;
  }

  .g-mx-5--xl {
    margin-left: 0.3571428571rem !important;
    margin-right: 0.3571428571rem !important;
  }

  .g-mx-6--xl {
    margin-left: 0.4285714286rem !important;
    margin-right: 0.4285714286rem !important;
  }

  .g-mx-7--xl {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .g-mx-8--xl {
    margin-left: 0.5714285714rem !important;
    margin-right: 0.5714285714rem !important;
  }

  .g-mx-9--xl {
    margin-left: 0.6428571429rem !important;
    margin-right: 0.6428571429rem !important;
  }

  .g-mx-10--xl {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-10--xl {
    margin-left: 0.7142857143rem !important;
    margin-right: 0.7142857143rem !important;
  }

  .g-mx-15--xl {
    margin-left: 1.0714285714rem !important;
    margin-right: 1.0714285714rem !important;
  }

  .g-mx-20--xl {
    margin-left: 1.4285714286rem !important;
    margin-right: 1.4285714286rem !important;
  }

  .g-mx-25--xl {
    margin-left: 1.7857142857rem !important;
    margin-right: 1.7857142857rem !important;
  }

  .g-mx-30--xl {
    margin-left: 2.1428571429rem !important;
    margin-right: 2.1428571429rem !important;
  }

  .g-mx-35--xl {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .g-mx-40--xl {
    margin-left: 2.8571428571rem !important;
    margin-right: 2.8571428571rem !important;
  }

  .g-mx-45--xl {
    margin-left: 3.2142857143rem !important;
    margin-right: 3.2142857143rem !important;
  }

  .g-mx-50--xl {
    margin-left: 3.5714285714rem !important;
    margin-right: 3.5714285714rem !important;
  }

  .g-mx-55--xl {
    margin-left: 3.9285714286rem !important;
    margin-right: 3.9285714286rem !important;
  }

  .g-mx-60--xl {
    margin-left: 4.2857142857rem !important;
    margin-right: 4.2857142857rem !important;
  }

  .g-mx-65--xl {
    margin-left: 4.6428571429rem !important;
    margin-right: 4.6428571429rem !important;
  }

  .g-mx-70--xl {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .g-mx-75--xl {
    margin-left: 5.3571428571rem !important;
    margin-right: 5.3571428571rem !important;
  }

  .g-mx-80--xl {
    margin-left: 5.7142857143rem !important;
    margin-right: 5.7142857143rem !important;
  }

  .g-mx-85--xl {
    margin-left: 6.0714285714rem !important;
    margin-right: 6.0714285714rem !important;
  }

  .g-mx-90--xl {
    margin-left: 6.4285714286rem !important;
    margin-right: 6.4285714286rem !important;
  }

  .g-mx-95--xl {
    margin-left: 6.7857142857rem !important;
    margin-right: 6.7857142857rem !important;
  }

  .g-mx-100--xl {
    margin-left: 7.1428571429rem !important;
    margin-right: 7.1428571429rem !important;
  }

  .g-my-1--xl {
    margin-top: 0.0714285714rem !important;
    margin-bottom: 0.0714285714rem !important;
  }

  .g-my-2--xl {
    margin-top: 0.1428571429rem !important;
    margin-bottom: 0.1428571429rem !important;
  }

  .g-my-3--xl {
    margin-top: 0.2142857143rem !important;
    margin-bottom: 0.2142857143rem !important;
  }

  .g-my-4--xl {
    margin-top: 0.2857142857rem !important;
    margin-bottom: 0.2857142857rem !important;
  }

  .g-my-5--xl {
    margin-top: 0.3571428571rem !important;
    margin-bottom: 0.3571428571rem !important;
  }

  .g-my-6--xl {
    margin-top: 0.4285714286rem !important;
    margin-bottom: 0.4285714286rem !important;
  }

  .g-my-7--xl {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .g-my-8--xl {
    margin-top: 0.5714285714rem !important;
    margin-bottom: 0.5714285714rem !important;
  }

  .g-my-9--xl {
    margin-top: 0.6428571429rem !important;
    margin-bottom: 0.6428571429rem !important;
  }

  .g-my-10--xl {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-10--xl {
    margin-top: 0.7142857143rem !important;
    margin-bottom: 0.7142857143rem !important;
  }

  .g-my-15--xl {
    margin-top: 1.0714285714rem !important;
    margin-bottom: 1.0714285714rem !important;
  }

  .g-my-20--xl {
    margin-top: 1.4285714286rem !important;
    margin-bottom: 1.4285714286rem !important;
  }

  .g-my-25--xl {
    margin-top: 1.7857142857rem !important;
    margin-bottom: 1.7857142857rem !important;
  }

  .g-my-30--xl {
    margin-top: 2.1428571429rem !important;
    margin-bottom: 2.1428571429rem !important;
  }

  .g-my-35--xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .g-my-40--xl {
    margin-top: 2.8571428571rem !important;
    margin-bottom: 2.8571428571rem !important;
  }

  .g-my-45--xl {
    margin-top: 3.2142857143rem !important;
    margin-bottom: 3.2142857143rem !important;
  }

  .g-my-50--xl {
    margin-top: 3.5714285714rem !important;
    margin-bottom: 3.5714285714rem !important;
  }

  .g-my-55--xl {
    margin-top: 3.9285714286rem !important;
    margin-bottom: 3.9285714286rem !important;
  }

  .g-my-60--xl {
    margin-top: 4.2857142857rem !important;
    margin-bottom: 4.2857142857rem !important;
  }

  .g-my-65--xl {
    margin-top: 4.6428571429rem !important;
    margin-bottom: 4.6428571429rem !important;
  }

  .g-my-70--xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .g-my-75--xl {
    margin-top: 5.3571428571rem !important;
    margin-bottom: 5.3571428571rem !important;
  }

  .g-my-80--xl {
    margin-top: 5.7142857143rem !important;
    margin-bottom: 5.7142857143rem !important;
  }

  .g-my-85--xl {
    margin-top: 6.0714285714rem !important;
    margin-bottom: 6.0714285714rem !important;
  }

  .g-my-90--xl {
    margin-top: 6.4285714286rem !important;
    margin-bottom: 6.4285714286rem !important;
  }

  .g-my-95--xl {
    margin-top: 6.7857142857rem !important;
    margin-bottom: 6.7857142857rem !important;
  }

  .g-my-100--xl {
    margin-top: 7.1428571429rem !important;
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mt-1--xl {
    margin-top: 0.0714285714rem !important;
  }

  .g-mt-minus-1--xl {
    margin-top: -0.0714285714rem !important;
  }

  .g-mt-2--xl {
    margin-top: 0.1428571429rem !important;
  }

  .g-mt-minus-2--xl {
    margin-top: -0.1428571429rem !important;
  }

  .g-mt-3--xl {
    margin-top: 0.2142857143rem !important;
  }

  .g-mt-minus-3--xl {
    margin-top: -0.2142857143rem !important;
  }

  .g-mt-4--xl {
    margin-top: 0.2857142857rem !important;
  }

  .g-mt-minus-4--xl {
    margin-top: -0.2857142857rem !important;
  }

  .g-mt-5--xl {
    margin-top: 0.3571428571rem !important;
  }

  .g-mt-minus-5--xl {
    margin-top: -0.3571428571rem !important;
  }

  .g-mt-6--xl {
    margin-top: 0.4285714286rem !important;
  }

  .g-mt-minus-6--xl {
    margin-top: -0.4285714286rem !important;
  }

  .g-mt-7--xl {
    margin-top: 0.5rem !important;
  }

  .g-mt-minus-7--xl {
    margin-top: -0.5rem !important;
  }

  .g-mt-8--xl {
    margin-top: 0.5714285714rem !important;
  }

  .g-mt-minus-8--xl {
    margin-top: -0.5714285714rem !important;
  }

  .g-mt-9--xl {
    margin-top: 0.6428571429rem !important;
  }

  .g-mt-minus-9--xl {
    margin-top: -0.6428571429rem !important;
  }

  .g-mt-10--xl {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--xl {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-11--xl {
    margin-top: 0.7857142857rem !important;
  }

  .g-mt-minus-11--xl {
    margin-top: -0.7857142857rem !important;
  }

  .g-mt-12--xl {
    margin-top: 0.8571428571rem !important;
  }

  .g-mt-minus-12--xl {
    margin-top: -0.8571428571rem !important;
  }

  .g-mt-13--xl {
    margin-top: 0.9285714286rem !important;
  }

  .g-mt-minus-13--xl {
    margin-top: -0.9285714286rem !important;
  }

  .g-mt-14--xl {
    margin-top: 1rem !important;
  }

  .g-mt-minus-14--xl {
    margin-top: -1rem !important;
  }

  .g-mt-15--xl {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--xl {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-16--xl {
    margin-top: 1.1428571429rem !important;
  }

  .g-mt-minus-16--xl {
    margin-top: -1.1428571429rem !important;
  }

  .g-mt-17--xl {
    margin-top: 1.2142857143rem !important;
  }

  .g-mt-minus-17--xl {
    margin-top: -1.2142857143rem !important;
  }

  .g-mt-18--xl {
    margin-top: 1.2857142857rem !important;
  }

  .g-mt-minus-18--xl {
    margin-top: -1.2857142857rem !important;
  }

  .g-mt-19--xl {
    margin-top: 1.3571428571rem !important;
  }

  .g-mt-minus-19--xl {
    margin-top: -1.3571428571rem !important;
  }

  .g-mt-20--xl {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--xl {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-10--xl {
    margin-top: 0.7142857143rem !important;
  }

  .g-mt-minus-10--xl {
    margin-top: -0.7142857143rem !important;
  }

  .g-mt-15--xl {
    margin-top: 1.0714285714rem !important;
  }

  .g-mt-minus-15--xl {
    margin-top: -1.0714285714rem !important;
  }

  .g-mt-20--xl {
    margin-top: 1.4285714286rem !important;
  }

  .g-mt-minus-20--xl {
    margin-top: -1.4285714286rem !important;
  }

  .g-mt-25--xl {
    margin-top: 1.7857142857rem !important;
  }

  .g-mt-minus-25--xl {
    margin-top: -1.7857142857rem !important;
  }

  .g-mt-30--xl {
    margin-top: 2.1428571429rem !important;
  }

  .g-mt-minus-30--xl {
    margin-top: -2.1428571429rem !important;
  }

  .g-mt-35--xl {
    margin-top: 2.5rem !important;
  }

  .g-mt-minus-35--xl {
    margin-top: -2.5rem !important;
  }

  .g-mt-40--xl {
    margin-top: 2.8571428571rem !important;
  }

  .g-mt-minus-40--xl {
    margin-top: -2.8571428571rem !important;
  }

  .g-mt-45--xl {
    margin-top: 3.2142857143rem !important;
  }

  .g-mt-minus-45--xl {
    margin-top: -3.2142857143rem !important;
  }

  .g-mt-50--xl {
    margin-top: 3.5714285714rem !important;
  }

  .g-mt-minus-50--xl {
    margin-top: -3.5714285714rem !important;
  }

  .g-mt-55--xl {
    margin-top: 3.9285714286rem !important;
  }

  .g-mt-minus-55--xl {
    margin-top: -3.9285714286rem !important;
  }

  .g-mt-60--xl {
    margin-top: 4.2857142857rem !important;
  }

  .g-mt-minus-60--xl {
    margin-top: -4.2857142857rem !important;
  }

  .g-mt-65--xl {
    margin-top: 4.6428571429rem !important;
  }

  .g-mt-minus-65--xl {
    margin-top: -4.6428571429rem !important;
  }

  .g-mt-70--xl {
    margin-top: 5rem !important;
  }

  .g-mt-minus-70--xl {
    margin-top: -5rem !important;
  }

  .g-mt-75--xl {
    margin-top: 5.3571428571rem !important;
  }

  .g-mt-minus-75--xl {
    margin-top: -5.3571428571rem !important;
  }

  .g-mt-80--xl {
    margin-top: 5.7142857143rem !important;
  }

  .g-mt-minus-80--xl {
    margin-top: -5.7142857143rem !important;
  }

  .g-mt-85--xl {
    margin-top: 6.0714285714rem !important;
  }

  .g-mt-minus-85--xl {
    margin-top: -6.0714285714rem !important;
  }

  .g-mt-90--xl {
    margin-top: 6.4285714286rem !important;
  }

  .g-mt-minus-90--xl {
    margin-top: -6.4285714286rem !important;
  }

  .g-mt-95--xl {
    margin-top: 6.7857142857rem !important;
  }

  .g-mt-minus-95--xl {
    margin-top: -6.7857142857rem !important;
  }

  .g-mt-100--xl {
    margin-top: 7.1428571429rem !important;
  }

  .g-mt-minus-100--xl {
    margin-top: -7.1428571429rem !important;
  }

  .g-mt-105--xl {
    margin-top: 7.5rem !important;
  }

  .g-mt-minus-105--xl {
    margin-top: -7.5rem !important;
  }

  .g-mt-110--xl {
    margin-top: 7.8571428571rem !important;
  }

  .g-mt-minus-110--xl {
    margin-top: -7.8571428571rem !important;
  }

  .g-mt-115--xl {
    margin-top: 8.2142857143rem !important;
  }

  .g-mt-minus-115--xl {
    margin-top: -8.2142857143rem !important;
  }

  .g-mt-120--xl {
    margin-top: 8.5714285714rem !important;
  }

  .g-mt-minus-120--xl {
    margin-top: -8.5714285714rem !important;
  }

  .g-mt-125--xl {
    margin-top: 8.9285714286rem !important;
  }

  .g-mt-minus-125--xl {
    margin-top: -8.9285714286rem !important;
  }

  .g-mt-130--xl {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-130--xl {
    margin-top: -9.2857142857rem !important;
  }

  .g-mt-135--xl {
    margin-top: 9.6428571429rem !important;
  }

  .g-mt-minus-135--xl {
    margin-top: -9.6428571429rem !important;
  }

  .g-mt-140--xl {
    margin-top: 10rem !important;
  }

  .g-mt-minus-140--xl {
    margin-top: -10rem !important;
  }

  .g-mt-145--xl {
    margin-top: 10.3571428571rem !important;
  }

  .g-mt-minus-145--xl {
    margin-top: -10.3571428571rem !important;
  }

  .g-mt-150--xl {
    margin-top: 10.7142857143rem !important;
  }

  .g-mt-minus-150--xl {
    margin-top: -10.7142857143rem !important;
  }

  .g-mt-155--xl {
    margin-top: 11.0714285714rem !important;
  }

  .g-mt-minus-155--xl {
    margin-top: -11.0714285714rem !important;
  }

  .g-mt-160--xl {
    margin-top: 11.4285714286rem !important;
  }

  .g-mt-minus-160--xl {
    margin-top: -11.4285714286rem !important;
  }

  .g-mt-165--xl {
    margin-top: 11.7857142857rem !important;
  }

  .g-mt-minus-165--xl {
    margin-top: -11.7857142857rem !important;
  }

  .g-mt-170--xl {
    margin-top: 12.1428571429rem !important;
  }

  .g-mt-minus-170--xl {
    margin-top: -12.1428571429rem !important;
  }

  .g-mb-1--xl {
    margin-bottom: 0.0714285714rem !important;
  }

  .g-mb-minus-1--xl {
    margin-bottom: -0.0714285714rem !important;
  }

  .g-mb-2--xl {
    margin-bottom: 0.1428571429rem !important;
  }

  .g-mb-minus-2--xl {
    margin-bottom: -0.1428571429rem !important;
  }

  .g-mb-3--xl {
    margin-bottom: 0.2142857143rem !important;
  }

  .g-mb-minus-3--xl {
    margin-bottom: -0.2142857143rem !important;
  }

  .g-mb-4--xl {
    margin-bottom: 0.2857142857rem !important;
  }

  .g-mb-minus-4--xl {
    margin-bottom: -0.2857142857rem !important;
  }

  .g-mb-5--xl {
    margin-bottom: 0.3571428571rem !important;
  }

  .g-mb-minus-5--xl {
    margin-bottom: -0.3571428571rem !important;
  }

  .g-mb-6--xl {
    margin-bottom: 0.4285714286rem !important;
  }

  .g-mb-minus-6--xl {
    margin-bottom: -0.4285714286rem !important;
  }

  .g-mb-7--xl {
    margin-bottom: 0.5rem !important;
  }

  .g-mb-minus-7--xl {
    margin-bottom: -0.5rem !important;
  }

  .g-mb-8--xl {
    margin-bottom: 0.5714285714rem !important;
  }

  .g-mb-minus-8--xl {
    margin-bottom: -0.5714285714rem !important;
  }

  .g-mb-9--xl {
    margin-bottom: 0.6428571429rem !important;
  }

  .g-mb-minus-9--xl {
    margin-bottom: -0.6428571429rem !important;
  }

  .g-mb-10--xl {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-minus-10--xl {
    margin-bottom: -0.7142857143rem !important;
  }

  .g-mb-11--xl {
    margin-bottom: 0.7857142857rem !important;
  }

  .g-mb-minus-11--xl {
    margin-bottom: -0.7857142857rem !important;
  }

  .g-mb-12--xl {
    margin-bottom: 0.8571428571rem !important;
  }

  .g-mb-minus-12--xl {
    margin-bottom: -0.8571428571rem !important;
  }

  .g-mb-13--xl {
    margin-bottom: 0.9285714286rem !important;
  }

  .g-mb-minus-13--xl {
    margin-bottom: -0.9285714286rem !important;
  }

  .g-mb-14--xl {
    margin-bottom: 1rem !important;
  }

  .g-mb-minus-14--xl {
    margin-bottom: -1rem !important;
  }

  .g-mb-15--xl {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-minus-15--xl {
    margin-bottom: -1.0714285714rem !important;
  }

  .g-mb-16--xl {
    margin-bottom: 1.1428571429rem !important;
  }

  .g-mb-minus-16--xl {
    margin-bottom: -1.1428571429rem !important;
  }

  .g-mb-17--xl {
    margin-bottom: 1.2142857143rem !important;
  }

  .g-mb-minus-17--xl {
    margin-bottom: -1.2142857143rem !important;
  }

  .g-mb-18--xl {
    margin-bottom: 1.2857142857rem !important;
  }

  .g-mb-minus-18--xl {
    margin-bottom: -1.2857142857rem !important;
  }

  .g-mb-19--xl {
    margin-bottom: 1.3571428571rem !important;
  }

  .g-mb-minus-19--xl {
    margin-bottom: -1.3571428571rem !important;
  }

  .g-mb-20--xl {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-minus-20--xl {
    margin-bottom: -1.4285714286rem !important;
  }

  .g-mb-10--xl {
    margin-bottom: 0.7142857143rem !important;
  }

  .g-mb-15--xl {
    margin-bottom: 1.0714285714rem !important;
  }

  .g-mb-20--xl {
    margin-bottom: 1.4285714286rem !important;
  }

  .g-mb-25--xl {
    margin-bottom: 1.7857142857rem !important;
  }

  .g-mb-30--xl {
    margin-bottom: 2.1428571429rem !important;
  }

  .g-mb-35--xl {
    margin-bottom: 2.5rem !important;
  }

  .g-mb-40--xl {
    margin-bottom: 2.8571428571rem !important;
  }

  .g-mb-45--xl {
    margin-bottom: 3.2142857143rem !important;
  }

  .g-mb-50--xl {
    margin-bottom: 3.5714285714rem !important;
  }

  .g-mb-55--xl {
    margin-bottom: 3.9285714286rem !important;
  }

  .g-mb-60--xl {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-mb-65--xl {
    margin-bottom: 4.6428571429rem !important;
  }

  .g-mb-70--xl {
    margin-bottom: 5rem !important;
  }

  .g-mb-75--xl {
    margin-bottom: 5.3571428571rem !important;
  }

  .g-mb-80--xl {
    margin-bottom: 5.7142857143rem !important;
  }

  .g-mb-85--xl {
    margin-bottom: 6.0714285714rem !important;
  }

  .g-mb-90--xl {
    margin-bottom: 6.4285714286rem !important;
  }

  .g-mb-95--xl {
    margin-bottom: 6.7857142857rem !important;
  }

  .g-mb-100--xl {
    margin-bottom: 7.1428571429rem !important;
  }

  .g-mb-105--xl {
    margin-bottom: 7.5rem !important;
  }

  .g-mb-110--xl {
    margin-bottom: 7.8571428571rem !important;
  }

  .g-mb-115--xl {
    margin-bottom: 8.2142857143rem !important;
  }

  .g-mb-120--xl {
    margin-bottom: 8.5714285714rem !important;
  }

  .g-mb-125--xl {
    margin-bottom: 8.9285714286rem !important;
  }

  .g-mb-130--xl {
    margin-bottom: 9.2857142857rem !important;
  }

  .g-mb-135--xl {
    margin-bottom: 9.6428571429rem !important;
  }

  .g-mb-140--xl {
    margin-bottom: 10rem !important;
  }

  .g-mb-145--xl {
    margin-bottom: 10.3571428571rem !important;
  }

  .g-mb-150--xl {
    margin-bottom: 10.7142857143rem !important;
  }

  .g-mb-155--xl {
    margin-bottom: 11.0714285714rem !important;
  }

  .g-mb-160--xl {
    margin-bottom: 11.4285714286rem !important;
  }

  .g-mb-165--xl {
    margin-bottom: 11.7857142857rem !important;
  }

  .g-mb-170--xl {
    margin-bottom: 12.1428571429rem !important;
  }

  .g-ml-1--xl {
    margin-left: 0.0714285714rem !important;
  }

  .g-ml-minus-1--xl {
    margin-left: -0.0714285714rem !important;
  }

  .g-ml-2--xl {
    margin-left: 0.1428571429rem !important;
  }

  .g-ml-minus-2--xl {
    margin-left: -0.1428571429rem !important;
  }

  .g-ml-3--xl {
    margin-left: 0.2142857143rem !important;
  }

  .g-ml-minus-3--xl {
    margin-left: -0.2142857143rem !important;
  }

  .g-ml-4--xl {
    margin-left: 0.2857142857rem !important;
  }

  .g-ml-minus-4--xl {
    margin-left: -0.2857142857rem !important;
  }

  .g-ml-5--xl {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--xl {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-6--xl {
    margin-left: 0.4285714286rem !important;
  }

  .g-ml-minus-6--xl {
    margin-left: -0.4285714286rem !important;
  }

  .g-ml-7--xl {
    margin-left: 0.5rem !important;
  }

  .g-ml-minus-7--xl {
    margin-left: -0.5rem !important;
  }

  .g-ml-8--xl {
    margin-left: 0.5714285714rem !important;
  }

  .g-ml-minus-8--xl {
    margin-left: -0.5714285714rem !important;
  }

  .g-ml-9--xl {
    margin-left: 0.6428571429rem !important;
  }

  .g-ml-minus-9--xl {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-10--xl {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--xl {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-5--xl {
    margin-left: 0.3571428571rem !important;
  }

  .g-ml-minus-5--xl {
    margin-left: -0.3571428571rem !important;
  }

  .g-ml-10--xl {
    margin-left: 0.7142857143rem !important;
  }

  .g-ml-minus-10--xl {
    margin-left: -0.7142857143rem !important;
  }

  .g-ml-15--xl {
    margin-left: 1.0714285714rem !important;
  }

  .g-ml-minus-15--xl {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-20--xl {
    margin-left: 1.4285714286rem !important;
  }

  .g-ml-minus-20--xl {
    margin-left: -1.4285714286rem !important;
  }

  .g-ml-25--xl {
    margin-left: 1.7857142857rem !important;
  }

  .g-ml-minus-25--xl {
    margin-left: -1.7857142857rem !important;
  }

  .g-ml-30--xl {
    margin-left: 2.1428571429rem !important;
  }

  .g-ml-minus-30--xl {
    margin-left: -2.1428571429rem !important;
  }

  .g-ml-35--xl {
    margin-left: 2.5rem !important;
  }

  .g-ml-minus-35--xl {
    margin-left: -2.5rem !important;
  }

  .g-ml-40--xl {
    margin-left: 2.8571428571rem !important;
  }

  .g-ml-minus-40--xl {
    margin-left: -2.8571428571rem !important;
  }

  .g-ml-45--xl {
    margin-left: 3.2142857143rem !important;
  }

  .g-ml-minus-45--xl {
    margin-left: -3.2142857143rem !important;
  }

  .g-ml-50--xl {
    margin-left: 3.5714285714rem !important;
  }

  .g-ml-minus-50--xl {
    margin-left: -3.5714285714rem !important;
  }

  .g-mr-1--xl {
    margin-right: 0.0714285714rem !important;
  }

  .g-mr-minus-1--xl {
    margin-right: -0.0714285714rem !important;
  }

  .g-mr-2--xl {
    margin-right: 0.1428571429rem !important;
  }

  .g-mr-minus-2--xl {
    margin-right: -0.1428571429rem !important;
  }

  .g-mr-3--xl {
    margin-right: 0.2142857143rem !important;
  }

  .g-mr-minus-3--xl {
    margin-right: -0.2142857143rem !important;
  }

  .g-mr-4--xl {
    margin-right: 0.2857142857rem !important;
  }

  .g-mr-minus-4--xl {
    margin-right: -0.2857142857rem !important;
  }

  .g-mr-5--xl {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-minus-5--xl {
    margin-right: -0.3571428571rem !important;
  }

  .g-mr-6--xl {
    margin-right: 0.4285714286rem !important;
  }

  .g-mr-minus-6--xl {
    margin-right: -0.4285714286rem !important;
  }

  .g-mr-7--xl {
    margin-right: 0.5rem !important;
  }

  .g-mr-minus-7--xl {
    margin-right: -0.5rem !important;
  }

  .g-mr-8--xl {
    margin-right: 0.5714285714rem !important;
  }

  .g-mr-minus-8--xl {
    margin-right: -0.5714285714rem !important;
  }

  .g-mr-9--xl {
    margin-right: 0.6428571429rem !important;
  }

  .g-mr-minus-9--xl {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-10--xl {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-minus-10--xl {
    margin-right: -0.7142857143rem !important;
  }

  .g-mr-5--xl {
    margin-right: 0.3571428571rem !important;
  }

  .g-mr-10--xl {
    margin-right: 0.7142857143rem !important;
  }

  .g-mr-15--xl {
    margin-right: 1.0714285714rem !important;
  }

  .g-mr-20--xl {
    margin-right: 1.4285714286rem !important;
  }

  .g-mr-25--xl {
    margin-right: 1.7857142857rem !important;
  }

  .g-mr-30--xl {
    margin-right: 2.1428571429rem !important;
  }

  .g-mr-35--xl {
    margin-right: 2.5rem !important;
  }

  .g-mr-40--xl {
    margin-right: 2.8571428571rem !important;
  }

  .g-mr-45--xl {
    margin-right: 3.2142857143rem !important;
  }

  .g-mr-50--xl {
    margin-right: 3.5714285714rem !important;
  }
}

/* Margins Around
------------------------------------*/

.g-ma-1 {
  margin: 0.0714285714rem !important;
}

.g-ma-3 {
  margin: 0.2142857143rem !important;
}

.g-ma-5 {
  margin: 0.3571428571rem !important;
}

.g-ma-10 {
  margin: 0.7142857143rem !important;
}

.g-ma-20 {
  margin: 1.4285714286rem !important;
}

.g-ma-minus-1 {
  margin: -0.0714285714rem !important;
}

/* Minus Margins
------------------------------------*/

/* Minus Margin Top */

.g-mt-minus-1 {
  margin-top: -0.0714285714rem;
}

.g-mt-minus-20 {
  margin-top: -1.4285714286rem;
}

.g-mt-minus-25 {
  margin-top: -1.7857142857rem;
}

.g-mt-minus-30 {
  margin-top: -2.1428571429rem;
}

.g-mt-minus-40 {
  margin-top: -2.8571428571rem;
}

.g-mt-minus-70 {
  margin-top: -5rem;
}

.g-mt-minus-73 {
  margin-top: -5.1428571429rem !important;
}

.g-mt-minus-120 {
  margin-top: -8.5714285714rem;
}

.g-mt-minus-200 {
  margin-top: -14.2857142857rem;
}

.g-mt-minus-300 {
  margin-top: -21.4285714286rem;
}

/* Minus Margin Bottom */

.g-mb-minus-70 {
  margin-bottom: -5rem;
}

/* Minus Margin Left */

.g-ml-minus-20 {
  margin-left: -1.4285714286rem;
}

.g-ml-minus-23 {
  margin-left: -1.6428571429rem;
}

.g-ml-minus-35 {
  margin-left: -2.5rem;
}

.g-ml-minus-55 {
  margin-left: -3.9285714286rem;
}

.g-ml-minus-25 {
  margin-left: -1.7857142857rem;
}

.g-ml-minus-82 {
  margin-left: -5.8571428571rem;
}

.g-ml-minus-90 {
  margin-left: -6.4285714286rem;
}

.g-ml-minus-100 {
  margin-left: -7.1428571429rem;
}

.g-ml-minus-118 {
  margin-left: -8.4285714286rem;
}

.g-ml-minus-142 {
  margin-left: -10.1428571429rem;
}

/* Minus Margin Right */

.g-mr-minus-50 {
  margin-right: -3.5714285714rem;
}

.g-mr-minus-100 {
  margin-right: -7.1428571429rem;
}

/* Margin Left and Right */

.g-mx-minus-1 {
  margin-left: -0.0714285714rem;
  margin-right: -0.0714285714rem;
}

.g-mx-minus-2 {
  margin-left: -0.1428571429rem;
  margin-right: -0.1428571429rem;
}

.g-mx-minus-4 {
  margin-left: -0.2857142857rem;
  margin-right: -0.2857142857rem;
}

.g-mx-minus-5 {
  margin-left: -0.3571428571rem;
  margin-right: -0.3571428571rem;
}

.g-mx-minus-15 {
  margin-left: -1.0714285714rem;
  margin-right: -1.0714285714rem;
}

.g-mx-minus-25 {
  margin-left: -1.7857142857rem;
  margin-right: -1.7857142857rem;
}

.g-mx-minus-30 {
  margin-left: -2.1428571429rem;
  margin-right: -2.1428571429rem;
}

/* Custon Spaces
------------------------------------*/

/* Margin Top */

.g-mt-10x {
  margin-top: 10%;
  /* O */
}

.g-mt-21 {
  margin-top: 1.5rem;
}

.g-mt-22 {
  margin-top: 1.5714285714rem;
}

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

.g-mt-32 {
  margin-top: 2.2857142857rem !important;
}

.g-mt-57 {
  margin-top: 4.0714285714rem !important;
}

.g-mt-500 {
  margin-top: 35.7142857143rem;
}

/* Margin Bottom */

.g-mb-23 {
  margin-bottom: 1.6428571429rem;
}

.g-mb-28 {
  margin-bottom: 2rem;
}

.g-mb-500 {
  margin-bottom: 35.7142857143rem;
}

/* Margin Left */

.g-ml-10x {
  margin-left: 10%;
  /* O */
}

.g-ml-12 {
  margin-left: 0.8571428571rem;
}

.g-ml-13 {
  margin-left: 0.9285714286rem;
}

.g-ml-20 {
  margin-left: 1.4285714286rem;
}

.g-ml-25 {
  margin-left: 1.7857142857rem;
}

.g-ml-35 {
  margin-left: 2.5rem;
}

.g-ml-43 {
  margin-left: 3.0714285714rem;
}

.g-mr-43 {
  margin-right: 3.0714285714rem;
}

.g-ml-50 {
  margin-left: 3.5714285714rem;
}

.g-ml-60 {
  margin-left: 4.2857142857rem;
}

.g-ml-75 {
  margin-left: 5.3571428571rem;
}

.g-ml-82 {
  margin-left: 5.8571428571rem;
}

.g-ml-83 {
  margin-left: 5.9285714286rem;
}

.g-ml-85 {
  margin-left: 6.0714285714rem;
}

.g-ml-105 {
  margin-left: 7.5rem;
}

.g-ml-118 {
  margin-left: 8.4285714286rem;
}

.g-ml-142 {
  margin-left: 10.1428571429rem;
}

/* Margin Right */

.g-mr-12 {
  margin-right: 0.8571428571rem;
}

.g-mr-60 {
  margin-right: 4.2857142857rem;
}

.g-mr-63 {
  margin-right: 4.5rem;
}

.g-mr-75 {
  margin-right: 5.3571428571rem;
}

.g-mr-85 {
  margin-right: 6.0714285714rem !important;
}

.g-mr-minus-10 {
  margin-right: -0.7142857143rem;
}

.g-mr-minus-13 {
  margin-right: -0.9285714286rem;
}

.g-mr-minus-15 {
  margin-right: -1.0714285714rem;
}

.g-mr-minus-23 {
  margin-right: -1.6428571429rem;
}

.g-mr-minus-30 {
  margin-right: -2.1428571429rem;
}

/* Margin Left and Right */

.g-mx-minus-10 {
  margin-left: -0.7142857143rem;
  margin-right: -0.7142857143rem;
}

.g-mx-minus-15 {
  margin-left: -1.0714285714rem;
  margin-right: -1.0714285714rem;
}

.g-mx-minus-20 {
  margin-left: -1.4285714286rem;
  margin-right: -1.4285714286rem;
}

.g-mx-minus-25 {
  margin-left: -1.7857142857rem;
  margin-right: -1.7857142857rem;
}

.g-mx-minus-30 {
  margin-left: -2.1428571429rem;
  margin-right: -2.1428571429rem;
}

/* Margin Top and Bottom */

.g-my-minus-1 {
  margin-top: -0.0714285714rem;
  margin-bottom: -0.0714285714rem;
}

.g-my-minus-2 {
  margin-top: -0.1428571429rem;
  margin-bottom: -0.1428571429rem;
}

.g-my-minus-10 {
  margin-top: -0.7142857143rem;
  margin-bottom: -0.7142857143rem;
}

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

@media (min-width: 576px) {
  .g-mb-0--sm {
    margin-bottom: 0 !important;
  }

  .g-mx-minus-10--sm {
    margin-left: -0.7142857143rem;
    margin-right: -0.7142857143rem;
  }

  .g-my-minus-5--sm {
    margin-top: -0.3571428571rem;
    margin-bottom: -0.3571428571rem;
  }

  .g-my-minus-10--sm {
    margin-top: -0.7142857143rem;
    margin-bottom: -0.7142857143rem;
  }

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

  .g-my-minus-0 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .g-mr-12--sm {
    margin-right: 0.8571428571rem;
  }
}

@media (min-width: 768px) {
  .g-ml-0--md {
    margin-left: 0 !important;
  }

  .g-mr-0--md {
    margin-right: 0 !important;
  }

  .g-mx-12--md {
    margin-left: 0.8571428571rem !important;
    margin-right: 0.8571428571rem !important;
  }

  .g-ml-12--md {
    margin-left: 0.8571428571rem !important;
  }

  .g-mr-12--md {
    margin-right: 0.8571428571rem !important;
  }

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

  .g-ml-minus-1--md {
    margin-left: -0.0714285714rem;
  }

  .g-ml-minus-9--md {
    margin-left: -0.6428571429rem !important;
  }

  .g-ml-minus-15--md {
    margin-left: -1.0714285714rem !important;
  }

  .g-ml-minus-23--md {
    margin-left: -1.6428571429rem !important;
  }

  .g-ml-minus-25--md {
    margin-left: -1.7857142857rem !important;
  }

  .g-mr-minus-1--md {
    margin-right: -0.0714285714rem;
  }

  .g-mr-minus-9--md {
    margin-right: -0.6428571429rem !important;
  }

  .g-mr-minus-13--md {
    margin-right: -0.9285714286rem;
  }

  .g-mr-minus-23--md {
    margin-right: -1.6428571429rem;
  }

  .g-ml-minus-82--md {
    margin-left: -5.8571428571rem !important;
  }

  .g-mr-minus-82--md {
    margin-right: -5.8571428571rem !important;
  }

  .g-mr-60--md {
    margin-right: 4.2857142857rem !important;
  }

  .g-mr-63--md {
    margin-right: 4.5rem !important;
  }

  .g-ml-63--md {
    margin-left: 4.5rem !important;
  }

  .g-ml-85--md {
    margin-left: 6.0714285714rem !important;
  }

  .g-ml-250--md {
    margin-left: 17.8571428571rem !important;
  }

  .g-ml-minus-90--md {
    margin-left: -6.4285714286rem !important;
  }

  .g-m-reset--md {
    margin: 0 !important;
  }

  .g-mt-130--md {
    margin-top: 9.2857142857rem !important;
  }

  .g-mt-minus-76--md {
    margin-top: -5.4285714286rem !important;
  }

  .g-my-30--md {
    margin-top: 2.1428571429rem !important;
    margin-bpttpm: 2.1428571429rem !important;
  }
}

@media (min-width: 992px) {
  .g-mx-12--lg {
    margin-left: 0.8571428571rem !important;
    margin-right: 0.8571428571rem !important;
  }

  .g-mb-60--lg {
    margin-bottom: 4.2857142857rem !important;
  }

  .g-ml-12--lg {
    margin-left: 0.8571428571rem !important;
  }

  .g-mr-12--lg {
    margin-right: 0.8571428571rem !important;
  }

  .g-mr-minus-1--lg {
    margin-right: -0.0714285714rem;
  }

  .g-mr-minus-50--lg {
    margin-right: -3.5714285714rem;
  }

  .g-mr-minus-100--lg {
    margin-right: -7.1428571429rem;
  }

  .g-ml-minus-100--lg {
    margin-left: -7.1428571429rem;
  }

  .g-ml-minus-100 {
    margin-left: -7.1428571429rem;
  }

  .g-mx-minus-5--lg {
    margin-left: -0.3571428571rem;
    margin-right: -0.3571428571rem;
  }

  .g-mx-minus-10--lg {
    margin-left: -0.7142857143rem;
    margin-right: -0.7142857143rem;
  }

  .g-mx-minus-15--lg {
    margin-left: -1.0714285714rem;
    margin-right: -1.0714285714rem;
  }

  .g-ml-minus-50--lg {
    margin-left: -3.5714285714rem;
  }

  .g-m-reset--lg {
    margin: 0 !important;
  }

  .g-ml-100--lg {
    margin-left: 7.1428571429rem;
  }
}

@media (min-width: 1200px) {
  .g-mx-minus-10--xl {
    margin-left: -0.7142857143rem;
    margin-right: -0.7142857143rem;
  }

  .g-mx-minus-15--xl {
    margin-left: -1.0714285714rem;
    margin-right: -1.0714285714rem;
  }

  .g-m-reset--xl {
    margin: 0 !important;
  }

  .g-mr-0--xl {
    margin-right: 0px !important;
  }
}

/*------------------------------------
  Margins Extended
------------------------------------*/

@media (min-width: 992px) {
  /* Margin Top */

  .js-header-change-moment .g-mt-1--lg--scrolling {
    margin-top: 0.0714285714rem !important;
  }

  .js-header-change-moment .g-mt-2--lg--scrolling {
    margin-top: 0.1428571429rem !important;
  }

  .js-header-change-moment .g-mt-3--lg--scrolling {
    margin-top: 0.2142857143rem !important;
  }

  .js-header-change-moment .g-mt-4--lg--scrolling {
    margin-top: 0.2857142857rem !important;
  }

  .js-header-change-moment .g-mt-5--lg--scrolling {
    margin-top: 0.3571428571rem !important;
  }

  .js-header-change-moment .g-mt-6--lg--scrolling {
    margin-top: 0.4285714286rem !important;
  }

  .js-header-change-moment .g-mt-7--lg--scrolling {
    margin-top: 0.5rem !important;
  }

  .js-header-change-moment .g-mt-8--lg--scrolling {
    margin-top: 0.5714285714rem !important;
  }

  .js-header-change-moment .g-mt-9--lg--scrolling {
    margin-top: 0.6428571429rem !important;
  }

  .js-header-change-moment .g-mt-10--lg--scrolling {
    margin-top: 0.7142857143rem !important;
  }

  .js-header-change-moment .g-mt-11--lg--scrolling {
    margin-top: 0.7857142857rem !important;
  }

  .js-header-change-moment .g-mt-12--lg--scrolling {
    margin-top: 0.8571428571rem !important;
  }

  .js-header-change-moment .g-mt-13--lg--scrolling {
    margin-top: 0.9285714286rem !important;
  }

  .js-header-change-moment .g-mt-14--lg--scrolling {
    margin-top: 1rem !important;
  }

  .js-header-change-moment .g-mt-15--lg--scrolling {
    margin-top: 1.0714285714rem !important;
  }

  .js-header-change-moment .g-mt-16--lg--scrolling {
    margin-top: 1.1428571429rem !important;
  }

  .js-header-change-moment .g-mt-17--lg--scrolling {
    margin-top: 1.2142857143rem !important;
  }

  .js-header-change-moment .g-mt-18--lg--scrolling {
    margin-top: 1.2857142857rem !important;
  }

  .js-header-change-moment .g-mt-19--lg--scrolling {
    margin-top: 1.3571428571rem !important;
  }

  .js-header-change-moment .g-mt-20--lg--scrolling {
    margin-top: 1.4285714286rem !important;
  }

  .js-header-change-moment .g-mt-21--lg--scrolling {
    margin-top: 1.5rem !important;
  }

  .js-header-change-moment .g-mt-22--lg--scrolling {
    margin-top: 1.5714285714rem !important;
  }

  .js-header-change-moment .g-mt-23--lg--scrolling {
    margin-top: 1.6428571429rem !important;
  }

  .js-header-change-moment .g-mt-24--lg--scrolling {
    margin-top: 1.7142857143rem !important;
  }

  .js-header-change-moment .g-mt-25--lg--scrolling {
    margin-top: 1.7857142857rem !important;
  }
}

/*------------------------------------
  Padding Spaces
------------------------------------*/

/* Padding Spaces (xs)
------------------------------------*/

@media (min-width: 0) {
  .g-pa-0 {
    padding: 0 !important;
  }

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

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

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

  .g-pr-0 {
    padding-right: 0 !important;
  }

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

  .g-pl-0 {
    padding-left: 0 !important;
  }

  /* Padding Around */

  .g-pa-2 {
    padding: 0.1428571429rem !important;
  }

  .g-pa-3 {
    padding: 0.2142857143rem !important;
  }

  .g-pa-5 {
    padding: 0.3571428571rem !important;
  }

  .g-pa-7 {
    padding: 0.5rem !important;
  }

  .g-pa-10 {
    padding: 0.7142857143rem !important;
  }

  .g-pa-15 {
    padding: 1.0714285714rem !important;
  }

  .g-pa-20 {
    padding: 1.4285714286rem !important;
  }

  .g-pa-25 {
    padding: 1.7857142857rem !important;
  }

  .g-pa-30 {
    padding: 2.1428571429rem !important;
  }

  .g-pa-35 {
    padding: 2.5rem !important;
  }

  .g-pa-40 {
    padding: 2.8571428571rem !important;
  }

  .g-pa-45 {
    padding: 3.2142857143rem !important;
  }

  .g-pa-50 {
    padding: 3.5714285714rem !important;
  }

  .g-pa-55 {
    padding: 3.9285714286rem !important;
  }

  .g-pa-60 {
    padding: 4.2857142857rem !important;
  }

  .g-pa-65 {
    padding: 4.6428571429rem !important;
  }

  .g-pa-70 {
    padding: 5rem !important;
  }

  .g-pa-75 {
    padding: 5.3571428571rem !important;
  }

  .g-pa-80 {
    padding: 5.7142857143rem !important;
  }

  .g-pa-85 {
    padding: 6.0714285714rem !important;
  }

  .g-pa-90 {
    padding: 6.4285714286rem !important;
  }

  .g-pa-95 {
    padding: 6.7857142857rem !important;
  }

  .g-pa-100 {
    padding: 7.1428571429rem !important;
  }

  .g-pa-105 {
    padding: 7.5rem !important;
  }

  .g-pa-110 {
    padding: 7.8571428571rem !important;
  }

  .g-pa-115 {
    padding: 8.2142857143rem !important;
  }

  .g-pa-120 {
    padding: 8.5714285714rem !important;
  }

  .g-pa-125 {
    padding: 8.9285714286rem !important;
  }

  .g-pa-130 {
    padding: 9.2857142857rem !important;
  }

  .g-pa-135 {
    padding: 9.6428571429rem !important;
  }

  .g-pa-140 {
    padding: 10rem !important;
  }

  .g-pa-145 {
    padding: 10.3571428571rem !important;
  }

  .g-pa-150 {
    padding: 10.7142857143rem !important;
  }

  /* Padding X */

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

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

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

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

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

  .g-px-6 {
    padding-left: 0.4285714286rem !important;
    padding-right: 0.4285714286rem !important;
  }

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

  .g-px-8 {
    padding-left: 0.5714285714rem !important;
    padding-right: 0.5714285714rem !important;
  }

  .g-px-9 {
    padding-left: 0.6428571429rem !important;
    padding-right: 0.6428571429rem !important;
  }

  .g-px-10 {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-11 {
    padding-left: 0.7857142857rem !important;
    padding-right: 0.7857142857rem !important;
  }

  .g-px-12 {
    padding-left: 0.8571428571rem !important;
    padding-right: 0.8571428571rem !important;
  }

  .g-px-13 {
    padding-left: 0.9285714286rem !important;
    padding-right: 0.9285714286rem !important;
  }

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

  .g-px-15 {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-16 {
    padding-left: 1.1428571429rem !important;
    padding-right: 1.1428571429rem !important;
  }

  .g-px-17 {
    padding-left: 1.2142857143rem !important;
    padding-right: 1.2142857143rem !important;
  }

  .g-px-18 {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-px-19 {
    padding-left: 1.3571428571rem !important;
    padding-right: 1.3571428571rem !important;
  }

  .g-px-10 {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-15 {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-20 {
    padding-left: 1.4285714286rem !important;
    padding-right: 1.4285714286rem !important;
  }

  .g-px-25 {
    padding-left: 1.7857142857rem !important;
    padding-right: 1.7857142857rem !important;
  }

  .g-px-30 {
    padding-left: 2.1428571429rem !important;
    padding-right: 2.1428571429rem !important;
  }

  .g-px-35 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-px-40 {
    padding-left: 2.8571428571rem !important;
    padding-right: 2.8571428571rem !important;
  }

  .g-px-45 {
    padding-left: 3.2142857143rem !important;
    padding-right: 3.2142857143rem !important;
  }

  .g-px-50 {
    padding-left: 3.5714285714rem !important;
    padding-right: 3.5714285714rem !important;
  }

  .g-px-55 {
    padding-left: 3.9285714286rem !important;
    padding-right: 3.9285714286rem !important;
  }

  .g-px-60 {
    padding-left: 4.2857142857rem !important;
    padding-right: 4.2857142857rem !important;
  }

  .g-px-65 {
    padding-left: 4.6428571429rem !important;
    padding-right: 4.6428571429rem !important;
  }

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

  .g-px-75 {
    padding-left: 5.3571428571rem !important;
    padding-right: 5.3571428571rem !important;
  }

  .g-px-80 {
    padding-left: 5.7142857143rem !important;
    padding-right: 5.7142857143rem !important;
  }

  .g-px-85 {
    padding-left: 6.0714285714rem !important;
    padding-right: 6.0714285714rem !important;
  }

  .g-px-90 {
    padding-left: 6.4285714286rem !important;
    padding-right: 6.4285714286rem !important;
  }

  .g-px-95 {
    padding-left: 6.7857142857rem !important;
    padding-right: 6.7857142857rem !important;
  }

  .g-px-100 {
    padding-left: 7.1428571429rem !important;
    padding-right: 7.1428571429rem !important;
  }

  .g-px-105 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .g-px-110 {
    padding-left: 7.8571428571rem !important;
    padding-right: 7.8571428571rem !important;
  }

  .g-px-115 {
    padding-left: 8.2142857143rem !important;
    padding-right: 8.2142857143rem !important;
  }

  .g-px-120 {
    padding-left: 8.5714285714rem !important;
    padding-right: 8.5714285714rem !important;
  }

  .g-px-125 {
    padding-left: 8.9285714286rem !important;
    padding-right: 8.9285714286rem !important;
  }

  .g-px-130 {
    padding-left: 9.2857142857rem !important;
    padding-right: 9.2857142857rem !important;
  }

  .g-px-135 {
    padding-left: 9.6428571429rem !important;
    padding-right: 9.6428571429rem !important;
  }

  .g-px-140 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .g-px-145 {
    padding-left: 10.3571428571rem !important;
    padding-right: 10.3571428571rem !important;
  }

  .g-px-150 {
    padding-left: 10.7142857143rem !important;
    padding-right: 10.7142857143rem !important;
  }

  /* Padding Y */

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

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

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

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

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

  .g-py-6 {
    padding-top: 0.4285714286rem !important;
    padding-bottom: 0.4285714286rem !important;
  }

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

  .g-py-8 {
    padding-top: 0.5714285714rem !important;
    padding-bottom: 0.5714285714rem !important;
  }

  .g-py-9 {
    padding-top: 0.6428571429rem !important;
    padding-bottom: 0.6428571429rem !important;
  }

  .g-py-10 {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  .g-py-11 {
    padding-top: 0.7857142857rem !important;
    padding-bottom: 0.7857142857rem !important;
  }

  .g-py-12 {
    padding-top: 0.8571428571rem !important;
    padding-bottom: 0.8571428571rem !important;
  }

  .g-py-13 {
    padding-top: 0.9285714286rem !important;
    padding-bottom: 0.9285714286rem !important;
  }

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

  .g-py-15 {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  .g-py-16 {
    padding-top: 1.1428571429rem !important;
    padding-bottom: 1.1428571429rem !important;
  }

  .g-py-17 {
    padding-top: 1.2142857143rem !important;
    padding-bottom: 1.2142857143rem !important;
  }

  .g-py-18 {
    padding-top: 1.2857142857rem !important;
    padding-bottom: 1.2857142857rem !important;
  }

  .g-py-19 {
    padding-top: 1.3571428571rem !important;
    padding-bottom: 1.3571428571rem !important;
  }

  /* P */

  .g-py-10 {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  /* P */

  .g-py-15 {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  /* P */

  .g-py-20 {
    padding-top: 1.4285714286rem !important;
    padding-bottom: 1.4285714286rem !important;
  }

  /* P */

  .g-py-25 {
    padding-top: 1.7857142857rem !important;
    padding-bottom: 1.7857142857rem !important;
  }

  /* P */

  .g-py-30 {
    padding-top: 2.1428571429rem !important;
    padding-bottom: 2.1428571429rem !important;
  }

  /* P */

  .g-py-35 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* P */

  .g-py-40 {
    padding-top: 2.8571428571rem !important;
    padding-bottom: 2.8571428571rem !important;
  }

  /* P */

  .g-py-45 {
    padding-top: 3.2142857143rem !important;
    padding-bottom: 3.2142857143rem !important;
  }

  /* P */

  .g-py-50 {
    padding-top: 3.5714285714rem !important;
    padding-bottom: 3.5714285714rem !important;
  }

  /* P */

  .g-py-55 {
    padding-top: 3.9285714286rem !important;
    padding-bottom: 3.9285714286rem !important;
  }

  /* P */

  .g-py-60 {
    padding-top: 4.2857142857rem !important;
    padding-bottom: 4.2857142857rem !important;
  }

  /* P */

  .g-py-65 {
    padding-top: 4.6428571429rem !important;
    padding-bottom: 4.6428571429rem !important;
  }

  /* P */

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

  /* P */

  .g-py-75 {
    padding-top: 5.3571428571rem !important;
    padding-bottom: 5.3571428571rem !important;
  }

  /* P */

  .g-py-80 {
    padding-top: 5.7142857143rem !important;
    padding-bottom: 5.7142857143rem !important;
  }

  /* P */

  .g-py-85 {
    padding-top: 6.0714285714rem !important;
    padding-bottom: 6.0714285714rem !important;
  }

  /* P */

  .g-py-90 {
    padding-top: 6.4285714286rem !important;
    padding-bottom: 6.4285714286rem !important;
  }

  /* P */

  .g-py-95 {
    padding-top: 6.7857142857rem !important;
    padding-bottom: 6.7857142857rem !important;
  }

  /* P */

  .g-py-100 {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  /* P */

  .g-py-105 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  /* P */

  .g-py-110 {
    padding-top: 7.8571428571rem !important;
    padding-bottom: 7.8571428571rem !important;
  }

  /* P */

  .g-py-115 {
    padding-top: 8.2142857143rem !important;
    padding-bottom: 8.2142857143rem !important;
  }

  /* P */

  .g-py-120 {
    padding-top: 8.5714285714rem !important;
    padding-bottom: 8.5714285714rem !important;
  }

  /* P */

  .g-py-125 {
    padding-top: 8.9285714286rem !important;
    padding-bottom: 8.9285714286rem !important;
  }

  /* P */

  .g-py-130 {
    padding-top: 9.2857142857rem !important;
    padding-bottom: 9.2857142857rem !important;
  }

  /* P */

  .g-py-135 {
    padding-top: 9.6428571429rem !important;
    padding-bottom: 9.6428571429rem !important;
  }

  /* P */

  .g-py-140 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  /* P */

  .g-py-145 {
    padding-top: 10.3571428571rem !important;
    padding-bottom: 10.3571428571rem !important;
  }

  /* P */

  .g-py-150 {
    padding-top: 10.7142857143rem !important;
    padding-bottom: 10.7142857143rem !important;
  }

  /* P */

  .g-py-155 {
    padding-top: 11.0714285714rem !important;
    padding-bottom: 11.0714285714rem !important;
  }

  /* P */

  .g-py-160 {
    padding-top: 11.4285714286rem !important;
    padding-bottom: 11.4285714286rem !important;
  }

  /* P */

  .g-py-165 {
    padding-top: 11.7857142857rem !important;
    padding-bottom: 11.7857142857rem !important;
  }

  /* P */

  .g-py-170 {
    padding-top: 12.1428571429rem !important;
    padding-bottom: 12.1428571429rem !important;
  }

  /* P */

  .g-py-175 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  /* P */

  .g-py-180 {
    padding-top: 12.8571428571rem !important;
    padding-bottom: 12.8571428571rem !important;
  }

  /* P */

  .g-py-185 {
    padding-top: 13.2142857143rem !important;
    padding-bottom: 13.2142857143rem !important;
  }

  /* P */

  .g-py-190 {
    padding-top: 13.5714285714rem !important;
    padding-bottom: 13.5714285714rem !important;
  }

  /* P */

  .g-py-195 {
    padding-top: 13.9285714286rem !important;
    padding-bottom: 13.9285714286rem !important;
  }

  /* P */

  .g-py-200 {
    padding-top: 14.2857142857rem !important;
    padding-bottom: 14.2857142857rem !important;
  }

  /* P */

  .g-py-205 {
    padding-top: 14.6428571429rem !important;
    padding-bottom: 14.6428571429rem !important;
  }

  /* P */

  .g-py-210 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  /* Padding Top */

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

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

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

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

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

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

  .g-pt-6 {
    padding-top: 0.4285714286rem !important;
  }

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

  .g-pt-8 {
    padding-top: 0.5714285714rem !important;
  }

  .g-pt-9 {
    padding-top: 0.6428571429rem !important;
  }

  .g-pt-10 {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-11 {
    padding-top: 0.7857142857rem !important;
  }

  .g-pt-12 {
    padding-top: 0.8571428571rem !important;
  }

  .g-pt-13 {
    padding-top: 0.9285714286rem !important;
  }

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

  .g-pt-15 {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-16 {
    padding-top: 1.1428571429rem !important;
  }

  .g-pt-17 {
    padding-top: 1.2142857143rem !important;
  }

  .g-pt-18 {
    padding-top: 1.2857142857rem !important;
  }

  .g-pt-19 {
    padding-top: 1.3571428571rem !important;
  }

  .g-pt-10 {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-15 {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-20 {
    padding-top: 1.4285714286rem !important;
  }

  .g-pt-25 {
    padding-top: 1.7857142857rem !important;
  }

  .g-pt-30 {
    padding-top: 2.1428571429rem !important;
  }

  .g-pt-35 {
    padding-top: 2.5rem !important;
  }

  .g-pt-40 {
    padding-top: 2.8571428571rem !important;
  }

  .g-pt-45 {
    padding-top: 3.2142857143rem !important;
  }

  .g-pt-50 {
    padding-top: 3.5714285714rem !important;
  }

  .g-pt-55 {
    padding-top: 3.9285714286rem !important;
  }

  .g-pt-60 {
    padding-top: 4.2857142857rem !important;
  }

  .g-pt-65 {
    padding-top: 4.6428571429rem !important;
  }

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

  .g-pt-75 {
    padding-top: 5.3571428571rem !important;
  }

  .g-pt-80 {
    padding-top: 5.7142857143rem !important;
  }

  .g-pt-85 {
    padding-top: 6.0714285714rem !important;
  }

  .g-pt-90 {
    padding-top: 6.4285714286rem !important;
  }

  .g-pt-95 {
    padding-top: 6.7857142857rem !important;
  }

  .g-pt-100 {
    padding-top: 7.1428571429rem !important;
  }

  .g-pt-105 {
    padding-top: 7.5rem !important;
  }

  .g-pt-110 {
    padding-top: 7.8571428571rem !important;
  }

  .g-pt-115 {
    padding-top: 8.2142857143rem !important;
  }

  .g-pt-120 {
    padding-top: 8.5714285714rem !important;
  }

  .g-pt-125 {
    padding-top: 8.9285714286rem !important;
  }

  .g-pt-130 {
    padding-top: 9.2857142857rem !important;
  }

  .g-pt-135 {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-140 {
    padding-top: 10rem !important;
  }

  .g-pt-145 {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150 {
    padding-top: 10.7142857143rem !important;
  }

  /* Padding Right */

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

  .g-pr-1 {
    padding-right: 0.0714285714rem !important;
  }

  .g-pr-2 {
    padding-right: 0.1428571429rem !important;
  }

  .g-pr-3 {
    padding-right: 0.2142857143rem !important;
  }

  .g-pr-4 {
    padding-right: 0.2857142857rem !important;
  }

  .g-pr-5 {
    padding-right: 0.3571428571rem !important;
  }

  .g-pr-6 {
    padding-right: 0.4285714286rem !important;
  }

  .g-pr-7 {
    padding-right: 0.5rem !important;
  }

  .g-pr-8 {
    padding-right: 0.5714285714rem !important;
  }

  .g-pr-9 {
    padding-right: 0.6428571429rem !important;
  }

  /* P */

  .g-pr-10 {
    padding-right: 0.7142857143rem !important;
  }

  /* P */

  .g-pr-15 {
    padding-right: 1.0714285714rem !important;
  }

  /* P */

  .g-pr-20 {
    padding-right: 1.4285714286rem !important;
  }

  /* P */

  .g-pr-25 {
    padding-right: 1.7857142857rem !important;
  }

  /* P */

  .g-pr-30 {
    padding-right: 2.1428571429rem !important;
  }

  /* P */

  .g-pr-35 {
    padding-right: 2.5rem !important;
  }

  /* P */

  .g-pr-40 {
    padding-right: 2.8571428571rem !important;
  }

  /* P */

  .g-pr-45 {
    padding-right: 3.2142857143rem !important;
  }

  /* P */

  .g-pr-50 {
    padding-right: 3.5714285714rem !important;
  }

  /* P */

  .g-pr-55 {
    padding-right: 3.9285714286rem !important;
  }

  /* P */

  .g-pr-60 {
    padding-right: 4.2857142857rem !important;
  }

  /* P */

  .g-pr-65 {
    padding-right: 4.6428571429rem !important;
  }

  /* P */

  .g-pr-70 {
    padding-right: 5rem !important;
  }

  /* P */

  .g-pr-75 {
    padding-right: 5.3571428571rem !important;
  }

  /* P */

  .g-pr-80 {
    padding-right: 5.7142857143rem !important;
  }

  /* P */

  .g-pr-85 {
    padding-right: 6.0714285714rem !important;
  }

  /* P */

  .g-pr-90 {
    padding-right: 6.4285714286rem !important;
  }

  /* P */

  .g-pr-95 {
    padding-right: 6.7857142857rem !important;
  }

  /* P */

  .g-pr-100 {
    padding-right: 7.1428571429rem !important;
  }

  /* P */

  .g-pr-105 {
    padding-right: 7.5rem !important;
  }

  /* P */

  .g-pr-110 {
    padding-right: 7.8571428571rem !important;
  }

  /* P */

  .g-pr-115 {
    padding-right: 8.2142857143rem !important;
  }

  /* P */

  .g-pr-120 {
    padding-right: 8.5714285714rem !important;
  }

  /* P */

  .g-pr-125 {
    padding-right: 8.9285714286rem !important;
  }

  /* P */

  .g-pr-130 {
    padding-right: 9.2857142857rem !important;
  }

  /* P */

  .g-pr-135 {
    padding-right: 9.6428571429rem !important;
  }

  /* P */

  .g-pr-140 {
    padding-right: 10rem !important;
  }

  /* P */

  .g-pr-145 {
    padding-right: 10.3571428571rem !important;
  }

  /* P */

  .g-pr-150 {
    padding-right: 10.7142857143rem !important;
  }

  /* P */

  .g-pr-155 {
    padding-right: 11.0714285714rem !important;
  }

  /* P */

  .g-pr-160 {
    padding-right: 11.4285714286rem !important;
  }

  /* P */

  .g-pr-165 {
    padding-right: 11.7857142857rem !important;
  }

  /* P */

  .g-pr-170 {
    padding-right: 12.1428571429rem !important;
  }

  /* Padding Bottom */

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

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

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

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

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

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

  .g-pb-6 {
    padding-bottom: 0.4285714286rem !important;
  }

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

  .g-pb-8 {
    padding-bottom: 0.5714285714rem !important;
  }

  .g-pb-9 {
    padding-bottom: 0.6428571429rem !important;
  }

  .g-pb-10 {
    padding-bottom: 0.7142857143rem !important;
  }

  .g-pb-15 {
    padding-bottom: 1.0714285714rem !important;
  }

  .g-pb-20 {
    padding-bottom: 1.4285714286rem !important;
  }

  .g-pb-25 {
    padding-bottom: 1.7857142857rem !important;
  }

  .g-pb-30 {
    padding-bottom: 2.1428571429rem !important;
  }

  .g-pb-35 {
    padding-bottom: 2.5rem !important;
  }

  .g-pb-40 {
    padding-bottom: 2.8571428571rem !important;
  }

  .g-pb-45 {
    padding-bottom: 3.2142857143rem !important;
  }

  .g-pb-50 {
    padding-bottom: 3.5714285714rem !important;
  }

  .g-pb-55 {
    padding-bottom: 3.9285714286rem !important;
  }

  .g-pb-60 {
    padding-bottom: 4.2857142857rem !important;
  }

  .g-pb-65 {
    padding-bottom: 4.6428571429rem !important;
  }

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

  .g-pb-75 {
    padding-bottom: 5.3571428571rem !important;
  }

  .g-pb-80 {
    padding-bottom: 5.7142857143rem !important;
  }

  .g-pb-85 {
    padding-bottom: 6.0714285714rem !important;
  }

  .g-pb-90 {
    padding-bottom: 6.4285714286rem !important;
  }

  .g-pb-95 {
    padding-bottom: 6.7857142857rem !important;
  }

  .g-pb-100 {
    padding-bottom: 7.1428571429rem !important;
  }

  .g-pb-105 {
    padding-bottom: 7.5rem !important;
  }

  .g-pb-110 {
    padding-bottom: 7.8571428571rem !important;
  }

  .g-pb-115 {
    padding-bottom: 8.2142857143rem !important;
  }

  .g-pb-120 {
    padding-bottom: 8.5714285714rem !important;
  }

  .g-pb-125 {
    padding-bottom: 8.9285714286rem !important;
  }

  .g-pb-130 {
    padding-bottom: 9.2857142857rem !important;
  }

  .g-pb-135 {
    padding-bottom: 9.6428571429rem !important;
  }

  .g-pb-140 {
    padding-bottom: 10rem !important;
  }

  .g-pb-145 {
    padding-bottom: 10.3571428571rem !important;
  }

  .g-pb-150 {
    padding-bottom: 10.7142857143rem !important;
  }

  /* Padding Left */

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

  .g-pl-1 {
    padding-left: 0.0714285714rem !important;
  }

  .g-pl-2 {
    padding-left: 0.1428571429rem !important;
  }

  .g-pl-3 {
    padding-left: 0.2142857143rem !important;
  }

  .g-pl-4 {
    padding-left: 0.2857142857rem !important;
  }

  .g-pl-5 {
    padding-left: 0.3571428571rem !important;
  }

  .g-pl-6 {
    padding-left: 0.4285714286rem !important;
  }

  .g-pl-7 {
    padding-left: 0.5rem !important;
  }

  .g-pl-8 {
    padding-left: 0.5714285714rem !important;
  }

  .g-pl-9 {
    padding-left: 0.6428571429rem !important;
  }

  /* P */

  .g-pl-10 {
    padding-left: 0.7142857143rem !important;
  }

  /* P */

  .g-pl-15 {
    padding-left: 1.0714285714rem !important;
  }

  /* P */

  .g-pl-20 {
    padding-left: 1.4285714286rem !important;
  }

  /* P */

  .g-pl-25 {
    padding-left: 1.7857142857rem !important;
  }

  /* P */

  .g-pl-30 {
    padding-left: 2.1428571429rem !important;
  }

  /* P */

  .g-pl-35 {
    padding-left: 2.5rem !important;
  }

  /* P */

  .g-pl-40 {
    padding-left: 2.8571428571rem !important;
  }

  /* P */

  .g-pl-45 {
    padding-left: 3.2142857143rem !important;
  }

  /* P */

  .g-pl-50 {
    padding-left: 3.5714285714rem !important;
  }

  /* P */

  .g-pl-55 {
    padding-left: 3.9285714286rem !important;
  }

  /* P */

  .g-pl-60 {
    padding-left: 4.2857142857rem !important;
  }

  /* P */

  .g-pl-65 {
    padding-left: 4.6428571429rem !important;
  }

  /* P */

  .g-pl-70 {
    padding-left: 5rem !important;
  }

  /* P */

  .g-pl-75 {
    padding-left: 5.3571428571rem !important;
  }

  /* P */

  .g-pl-80 {
    padding-left: 5.7142857143rem !important;
  }

  /* P */

  .g-pl-85 {
    padding-left: 6.0714285714rem !important;
  }

  /* P */

  .g-pl-90 {
    padding-left: 6.4285714286rem !important;
  }

  /* P */

  .g-pl-95 {
    padding-left: 6.7857142857rem !important;
  }

  /* P */

  .g-pl-100 {
    padding-left: 7.1428571429rem !important;
  }

  /* P */

  .g-pl-105 {
    padding-left: 7.5rem !important;
  }

  /* P */

  .g-pl-110 {
    padding-left: 7.8571428571rem !important;
  }

  /* P */

  .g-pl-115 {
    padding-left: 8.2142857143rem !important;
  }

  /* P */

  .g-pl-120 {
    padding-left: 8.5714285714rem !important;
  }

  /* P */

  .g-pl-125 {
    padding-left: 8.9285714286rem !important;
  }

  /* P */

  .g-pl-130 {
    padding-left: 9.2857142857rem !important;
  }

  /* P */

  .g-pl-135 {
    padding-left: 9.6428571429rem !important;
  }

  /* P */

  .g-pl-140 {
    padding-left: 10rem !important;
  }

  /* P */

  .g-pl-145 {
    padding-left: 10.3571428571rem !important;
  }

  /* P */

  .g-pl-150 {
    padding-left: 10.7142857143rem !important;
  }

  /* P */

  .g-pl-155 {
    padding-left: 11.0714285714rem !important;
  }

  /* P */

  .g-pl-160 {
    padding-left: 11.4285714286rem !important;
  }

  /* P */

  .g-pl-165 {
    padding-left: 11.7857142857rem !important;
  }

  /* P */

  .g-pl-170 {
    padding-left: 12.1428571429rem !important;
  }
}

/* Padding Spaces (sm)
------------------------------------*/

@media (min-width: 576px) {
  .g-pa-0--sm {
    padding: 0 !important;
  }

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

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

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

  .g-pr-0--sm {
    padding-right: 0 !important;
  }

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

  .g-pl-0--sm {
    padding-left: 0 !important;
  }

  /* Padding Around */

  .g-pa-2--sm {
    padding: 0.1428571429rem !important;
  }

  .g-pa-3--sm {
    padding: 0.2142857143rem !important;
  }

  .g-pa-5--sm {
    padding: 0.3571428571rem !important;
  }

  .g-pa-7--sm {
    padding: 0.5rem !important;
  }

  .g-pa-10--sm {
    padding: 0.7142857143rem !important;
  }

  .g-pa-15--sm {
    padding: 1.0714285714rem !important;
  }

  .g-pa-20--sm {
    padding: 1.4285714286rem !important;
  }

  .g-pa-25--sm {
    padding: 1.7857142857rem !important;
  }

  .g-pa-30--sm {
    padding: 2.1428571429rem !important;
  }

  .g-pa-35--sm {
    padding: 2.5rem !important;
  }

  .g-pa-40--sm {
    padding: 2.8571428571rem !important;
  }

  .g-pa-45--sm {
    padding: 3.2142857143rem !important;
  }

  .g-pa-50--sm {
    padding: 3.5714285714rem !important;
  }

  .g-pa-55--sm {
    padding: 3.9285714286rem !important;
  }

  .g-pa-60--sm {
    padding: 4.2857142857rem !important;
  }

  .g-pa-65--sm {
    padding: 4.6428571429rem !important;
  }

  .g-pa-70--sm {
    padding: 5rem !important;
  }

  .g-pa-75--sm {
    padding: 5.3571428571rem !important;
  }

  .g-pa-80--sm {
    padding: 5.7142857143rem !important;
  }

  .g-pa-85--sm {
    padding: 6.0714285714rem !important;
  }

  .g-pa-90--sm {
    padding: 6.4285714286rem !important;
  }

  .g-pa-95--sm {
    padding: 6.7857142857rem !important;
  }

  .g-pa-100--sm {
    padding: 7.1428571429rem !important;
  }

  .g-pa-105--sm {
    padding: 7.5rem !important;
  }

  .g-pa-110--sm {
    padding: 7.8571428571rem !important;
  }

  .g-pa-115--sm {
    padding: 8.2142857143rem !important;
  }

  .g-pa-120--sm {
    padding: 8.5714285714rem !important;
  }

  .g-pa-125--sm {
    padding: 8.9285714286rem !important;
  }

  .g-pa-130--sm {
    padding: 9.2857142857rem !important;
  }

  .g-pa-135--sm {
    padding: 9.6428571429rem !important;
  }

  .g-pa-140--sm {
    padding: 10rem !important;
  }

  .g-pa-145--sm {
    padding: 10.3571428571rem !important;
  }

  .g-pa-150--sm {
    padding: 10.7142857143rem !important;
  }

  /* Padding X */

  .g-px-1--sm {
    padding-left: 0.0714285714rem !important;
    padding-right: 0.0714285714rem !important;
  }

  .g-px-2--sm {
    padding-left: 0.1428571429rem !important;
    padding-right: 0.1428571429rem !important;
  }

  .g-px-3--sm {
    padding-left: 0.2142857143rem !important;
    padding-right: 0.2142857143rem !important;
  }

  .g-px-4--sm {
    padding-left: 0.2857142857rem !important;
    padding-right: 0.2857142857rem !important;
  }

  .g-px-5--sm {
    padding-left: 0.3571428571rem !important;
    padding-right: 0.3571428571rem !important;
  }

  .g-px-6--sm {
    padding-left: 0.4285714286rem !important;
    padding-right: 0.4285714286rem !important;
  }

  .g-px-7--sm {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .g-px-8--sm {
    padding-left: 0.5714285714rem !important;
    padding-right: 0.5714285714rem !important;
  }

  .g-px-9--sm {
    padding-left: 0.6428571429rem !important;
    padding-right: 0.6428571429rem !important;
  }

  .g-px-10--sm {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-11--sm {
    padding-left: 0.7857142857rem !important;
    padding-right: 0.7857142857rem !important;
  }

  .g-px-12--sm {
    padding-left: 0.8571428571rem !important;
    padding-right: 0.8571428571rem !important;
  }

  .g-px-13--sm {
    padding-left: 0.9285714286rem !important;
    padding-right: 0.9285714286rem !important;
  }

  .g-px-14--sm {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .g-px-15--sm {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-16--sm {
    padding-left: 1.1428571429rem !important;
    padding-right: 1.1428571429rem !important;
  }

  .g-px-17--sm {
    padding-left: 1.2142857143rem !important;
    padding-right: 1.2142857143rem !important;
  }

  .g-px-18--sm {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-px-19--sm {
    padding-left: 1.3571428571rem !important;
    padding-right: 1.3571428571rem !important;
  }

  .g-px-10--sm {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-15--sm {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-20--sm {
    padding-left: 1.4285714286rem !important;
    padding-right: 1.4285714286rem !important;
  }

  .g-px-25--sm {
    padding-left: 1.7857142857rem !important;
    padding-right: 1.7857142857rem !important;
  }

  .g-px-30--sm {
    padding-left: 2.1428571429rem !important;
    padding-right: 2.1428571429rem !important;
  }

  .g-px-35--sm {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-px-40--sm {
    padding-left: 2.8571428571rem !important;
    padding-right: 2.8571428571rem !important;
  }

  .g-px-45--sm {
    padding-left: 3.2142857143rem !important;
    padding-right: 3.2142857143rem !important;
  }

  .g-px-50--sm {
    padding-left: 3.5714285714rem !important;
    padding-right: 3.5714285714rem !important;
  }

  .g-px-55--sm {
    padding-left: 3.9285714286rem !important;
    padding-right: 3.9285714286rem !important;
  }

  .g-px-60--sm {
    padding-left: 4.2857142857rem !important;
    padding-right: 4.2857142857rem !important;
  }

  .g-px-65--sm {
    padding-left: 4.6428571429rem !important;
    padding-right: 4.6428571429rem !important;
  }

  .g-px-70--sm {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-px-75--sm {
    padding-left: 5.3571428571rem !important;
    padding-right: 5.3571428571rem !important;
  }

  .g-px-80--sm {
    padding-left: 5.7142857143rem !important;
    padding-right: 5.7142857143rem !important;
  }

  .g-px-85--sm {
    padding-left: 6.0714285714rem !important;
    padding-right: 6.0714285714rem !important;
  }

  .g-px-90--sm {
    padding-left: 6.4285714286rem !important;
    padding-right: 6.4285714286rem !important;
  }

  .g-px-95--sm {
    padding-left: 6.7857142857rem !important;
    padding-right: 6.7857142857rem !important;
  }

  .g-px-100--sm {
    padding-left: 7.1428571429rem !important;
    padding-right: 7.1428571429rem !important;
  }

  .g-px-105--sm {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .g-px-110--sm {
    padding-left: 7.8571428571rem !important;
    padding-right: 7.8571428571rem !important;
  }

  .g-px-115--sm {
    padding-left: 8.2142857143rem !important;
    padding-right: 8.2142857143rem !important;
  }

  .g-px-120--sm {
    padding-left: 8.5714285714rem !important;
    padding-right: 8.5714285714rem !important;
  }

  .g-px-125--sm {
    padding-left: 8.9285714286rem !important;
    padding-right: 8.9285714286rem !important;
  }

  .g-px-130--sm {
    padding-left: 9.2857142857rem !important;
    padding-right: 9.2857142857rem !important;
  }

  .g-px-135--sm {
    padding-left: 9.6428571429rem !important;
    padding-right: 9.6428571429rem !important;
  }

  .g-px-140--sm {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .g-px-145--sm {
    padding-left: 10.3571428571rem !important;
    padding-right: 10.3571428571rem !important;
  }

  .g-px-150--sm {
    padding-left: 10.7142857143rem !important;
    padding-right: 10.7142857143rem !important;
  }

  /* Padding Y */

  .g-py-1--sm {
    padding-top: 0.0714285714rem !important;
    padding-bottom: 0.0714285714rem !important;
  }

  .g-py-2--sm {
    padding-top: 0.1428571429rem !important;
    padding-bottom: 0.1428571429rem !important;
  }

  .g-py-3--sm {
    padding-top: 0.2142857143rem !important;
    padding-bottom: 0.2142857143rem !important;
  }

  .g-py-4--sm {
    padding-top: 0.2857142857rem !important;
    padding-bottom: 0.2857142857rem !important;
  }

  .g-py-5--sm {
    padding-top: 0.3571428571rem !important;
    padding-bottom: 0.3571428571rem !important;
  }

  .g-py-6--sm {
    padding-top: 0.4285714286rem !important;
    padding-bottom: 0.4285714286rem !important;
  }

  .g-py-7--sm {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .g-py-8--sm {
    padding-top: 0.5714285714rem !important;
    padding-bottom: 0.5714285714rem !important;
  }

  .g-py-9--sm {
    padding-top: 0.6428571429rem !important;
    padding-bottom: 0.6428571429rem !important;
  }

  .g-py-10--sm {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  .g-py-11--sm {
    padding-top: 0.7857142857rem !important;
    padding-bottom: 0.7857142857rem !important;
  }

  .g-py-12--sm {
    padding-top: 0.8571428571rem !important;
    padding-bottom: 0.8571428571rem !important;
  }

  .g-py-13--sm {
    padding-top: 0.9285714286rem !important;
    padding-bottom: 0.9285714286rem !important;
  }

  .g-py-14--sm {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .g-py-15--sm {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  .g-py-16--sm {
    padding-top: 1.1428571429rem !important;
    padding-bottom: 1.1428571429rem !important;
  }

  .g-py-17--sm {
    padding-top: 1.2142857143rem !important;
    padding-bottom: 1.2142857143rem !important;
  }

  .g-py-18--sm {
    padding-top: 1.2857142857rem !important;
    padding-bottom: 1.2857142857rem !important;
  }

  .g-py-19--sm {
    padding-top: 1.3571428571rem !important;
    padding-bottom: 1.3571428571rem !important;
  }

  /* P */

  .g-py-10--sm {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  /* P */

  .g-py-15--sm {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  /* P */

  .g-py-20--sm {
    padding-top: 1.4285714286rem !important;
    padding-bottom: 1.4285714286rem !important;
  }

  /* P */

  .g-py-25--sm {
    padding-top: 1.7857142857rem !important;
    padding-bottom: 1.7857142857rem !important;
  }

  /* P */

  .g-py-30--sm {
    padding-top: 2.1428571429rem !important;
    padding-bottom: 2.1428571429rem !important;
  }

  /* P */

  .g-py-35--sm {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* P */

  .g-py-40--sm {
    padding-top: 2.8571428571rem !important;
    padding-bottom: 2.8571428571rem !important;
  }

  /* P */

  .g-py-45--sm {
    padding-top: 3.2142857143rem !important;
    padding-bottom: 3.2142857143rem !important;
  }

  /* P */

  .g-py-50--sm {
    padding-top: 3.5714285714rem !important;
    padding-bottom: 3.5714285714rem !important;
  }

  /* P */

  .g-py-55--sm {
    padding-top: 3.9285714286rem !important;
    padding-bottom: 3.9285714286rem !important;
  }

  /* P */

  .g-py-60--sm {
    padding-top: 4.2857142857rem !important;
    padding-bottom: 4.2857142857rem !important;
  }

  /* P */

  .g-py-65--sm {
    padding-top: 4.6428571429rem !important;
    padding-bottom: 4.6428571429rem !important;
  }

  /* P */

  .g-py-70--sm {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* P */

  .g-py-75--sm {
    padding-top: 5.3571428571rem !important;
    padding-bottom: 5.3571428571rem !important;
  }

  /* P */

  .g-py-80--sm {
    padding-top: 5.7142857143rem !important;
    padding-bottom: 5.7142857143rem !important;
  }

  /* P */

  .g-py-85--sm {
    padding-top: 6.0714285714rem !important;
    padding-bottom: 6.0714285714rem !important;
  }

  /* P */

  .g-py-90--sm {
    padding-top: 6.4285714286rem !important;
    padding-bottom: 6.4285714286rem !important;
  }

  /* P */

  .g-py-95--sm {
    padding-top: 6.7857142857rem !important;
    padding-bottom: 6.7857142857rem !important;
  }

  /* P */

  .g-py-100--sm {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  /* P */

  .g-py-105--sm {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  /* P */

  .g-py-110--sm {
    padding-top: 7.8571428571rem !important;
    padding-bottom: 7.8571428571rem !important;
  }

  /* P */

  .g-py-115--sm {
    padding-top: 8.2142857143rem !important;
    padding-bottom: 8.2142857143rem !important;
  }

  /* P */

  .g-py-120--sm {
    padding-top: 8.5714285714rem !important;
    padding-bottom: 8.5714285714rem !important;
  }

  /* P */

  .g-py-125--sm {
    padding-top: 8.9285714286rem !important;
    padding-bottom: 8.9285714286rem !important;
  }

  /* P */

  .g-py-130--sm {
    padding-top: 9.2857142857rem !important;
    padding-bottom: 9.2857142857rem !important;
  }

  /* P */

  .g-py-135--sm {
    padding-top: 9.6428571429rem !important;
    padding-bottom: 9.6428571429rem !important;
  }

  /* P */

  .g-py-140--sm {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  /* P */

  .g-py-145--sm {
    padding-top: 10.3571428571rem !important;
    padding-bottom: 10.3571428571rem !important;
  }

  /* P */

  .g-py-150--sm {
    padding-top: 10.7142857143rem !important;
    padding-bottom: 10.7142857143rem !important;
  }

  /* P */

  .g-py-155--sm {
    padding-top: 11.0714285714rem !important;
    padding-bottom: 11.0714285714rem !important;
  }

  /* P */

  .g-py-160--sm {
    padding-top: 11.4285714286rem !important;
    padding-bottom: 11.4285714286rem !important;
  }

  /* P */

  .g-py-165--sm {
    padding-top: 11.7857142857rem !important;
    padding-bottom: 11.7857142857rem !important;
  }

  /* P */

  .g-py-170--sm {
    padding-top: 12.1428571429rem !important;
    padding-bottom: 12.1428571429rem !important;
  }

  /* P */

  .g-py-175--sm {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  /* P */

  .g-py-180--sm {
    padding-top: 12.8571428571rem !important;
    padding-bottom: 12.8571428571rem !important;
  }

  /* P */

  .g-py-185--sm {
    padding-top: 13.2142857143rem !important;
    padding-bottom: 13.2142857143rem !important;
  }

  /* P */

  .g-py-190--sm {
    padding-top: 13.5714285714rem !important;
    padding-bottom: 13.5714285714rem !important;
  }

  /* P */

  .g-py-195--sm {
    padding-top: 13.9285714286rem !important;
    padding-bottom: 13.9285714286rem !important;
  }

  /* P */

  .g-py-200--sm {
    padding-top: 14.2857142857rem !important;
    padding-bottom: 14.2857142857rem !important;
  }

  /* P */

  .g-py-205--sm {
    padding-top: 14.6428571429rem !important;
    padding-bottom: 14.6428571429rem !important;
  }

  /* P */

  .g-py-210--sm {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  /* Padding Top */

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

  .g-pt-1--sm {
    padding-top: 0.0714285714rem !important;
  }

  .g-pt-2--sm {
    padding-top: 0.1428571429rem !important;
  }

  .g-pt-3--sm {
    padding-top: 0.2142857143rem !important;
  }

  .g-pt-4--sm {
    padding-top: 0.2857142857rem !important;
  }

  .g-pt-5--sm {
    padding-top: 0.3571428571rem !important;
  }

  .g-pt-6--sm {
    padding-top: 0.4285714286rem !important;
  }

  .g-pt-7--sm {
    padding-top: 0.5rem !important;
  }

  .g-pt-8--sm {
    padding-top: 0.5714285714rem !important;
  }

  .g-pt-9--sm {
    padding-top: 0.6428571429rem !important;
  }

  .g-pt-10--sm {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-11--sm {
    padding-top: 0.7857142857rem !important;
  }

  .g-pt-12--sm {
    padding-top: 0.8571428571rem !important;
  }

  .g-pt-13--sm {
    padding-top: 0.9285714286rem !important;
  }

  .g-pt-14--sm {
    padding-top: 1rem !important;
  }

  .g-pt-15--sm {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-16--sm {
    padding-top: 1.1428571429rem !important;
  }

  .g-pt-17--sm {
    padding-top: 1.2142857143rem !important;
  }

  .g-pt-18--sm {
    padding-top: 1.2857142857rem !important;
  }

  .g-pt-19--sm {
    padding-top: 1.3571428571rem !important;
  }

  .g-pt-10--sm {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-15--sm {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-20--sm {
    padding-top: 1.4285714286rem !important;
  }

  .g-pt-25--sm {
    padding-top: 1.7857142857rem !important;
  }

  .g-pt-30--sm {
    padding-top: 2.1428571429rem !important;
  }

  .g-pt-35--sm {
    padding-top: 2.5rem !important;
  }

  .g-pt-40--sm {
    padding-top: 2.8571428571rem !important;
  }

  .g-pt-45--sm {
    padding-top: 3.2142857143rem !important;
  }

  .g-pt-50--sm {
    padding-top: 3.5714285714rem !important;
  }

  .g-pt-55--sm {
    padding-top: 3.9285714286rem !important;
  }

  .g-pt-60--sm {
    padding-top: 4.2857142857rem !important;
  }

  .g-pt-65--sm {
    padding-top: 4.6428571429rem !important;
  }

  .g-pt-70--sm {
    padding-top: 5rem !important;
  }

  .g-pt-75--sm {
    padding-top: 5.3571428571rem !important;
  }

  .g-pt-80--sm {
    padding-top: 5.7142857143rem !important;
  }

  .g-pt-85--sm {
    padding-top: 6.0714285714rem !important;
  }

  .g-pt-90--sm {
    padding-top: 6.4285714286rem !important;
  }

  .g-pt-95--sm {
    padding-top: 6.7857142857rem !important;
  }

  .g-pt-100--sm {
    padding-top: 7.1428571429rem !important;
  }

  .g-pt-105--sm {
    padding-top: 7.5rem !important;
  }

  .g-pt-110--sm {
    padding-top: 7.8571428571rem !important;
  }

  .g-pt-115--sm {
    padding-top: 8.2142857143rem !important;
  }

  .g-pt-120--sm {
    padding-top: 8.5714285714rem !important;
  }

  .g-pt-125--sm {
    padding-top: 8.9285714286rem !important;
  }

  .g-pt-130--sm {
    padding-top: 9.2857142857rem !important;
  }

  .g-pt-135--sm {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-140--sm {
    padding-top: 10rem !important;
  }

  .g-pt-145--sm {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150--sm {
    padding-top: 10.7142857143rem !important;
  }

  /* Padding Right */

  .g-pr-0--sm {
    padding-right: 0px !important;
  }

  .g-pr-1--sm {
    padding-right: 0.0714285714rem !important;
  }

  .g-pr-2--sm {
    padding-right: 0.1428571429rem !important;
  }

  .g-pr-3--sm {
    padding-right: 0.2142857143rem !important;
  }

  .g-pr-4--sm {
    padding-right: 0.2857142857rem !important;
  }

  .g-pr-5--sm {
    padding-right: 0.3571428571rem !important;
  }

  .g-pr-6--sm {
    padding-right: 0.4285714286rem !important;
  }

  .g-pr-7--sm {
    padding-right: 0.5rem !important;
  }

  .g-pr-8--sm {
    padding-right: 0.5714285714rem !important;
  }

  .g-pr-9--sm {
    padding-right: 0.6428571429rem !important;
  }

  /* P */

  .g-pr-10--sm {
    padding-right: 0.7142857143rem !important;
  }

  /* P */

  .g-pr-15--sm {
    padding-right: 1.0714285714rem !important;
  }

  /* P */

  .g-pr-20--sm {
    padding-right: 1.4285714286rem !important;
  }

  /* P */

  .g-pr-25--sm {
    padding-right: 1.7857142857rem !important;
  }

  /* P */

  .g-pr-30--sm {
    padding-right: 2.1428571429rem !important;
  }

  /* P */

  .g-pr-35--sm {
    padding-right: 2.5rem !important;
  }

  /* P */

  .g-pr-40--sm {
    padding-right: 2.8571428571rem !important;
  }

  /* P */

  .g-pr-45--sm {
    padding-right: 3.2142857143rem !important;
  }

  /* P */

  .g-pr-50--sm {
    padding-right: 3.5714285714rem !important;
  }

  /* P */

  .g-pr-55--sm {
    padding-right: 3.9285714286rem !important;
  }

  /* P */

  .g-pr-60--sm {
    padding-right: 4.2857142857rem !important;
  }

  /* P */

  .g-pr-65--sm {
    padding-right: 4.6428571429rem !important;
  }

  /* P */

  .g-pr-70--sm {
    padding-right: 5rem !important;
  }

  /* P */

  .g-pr-75--sm {
    padding-right: 5.3571428571rem !important;
  }

  /* P */

  .g-pr-80--sm {
    padding-right: 5.7142857143rem !important;
  }

  /* P */

  .g-pr-85--sm {
    padding-right: 6.0714285714rem !important;
  }

  /* P */

  .g-pr-90--sm {
    padding-right: 6.4285714286rem !important;
  }

  /* P */

  .g-pr-95--sm {
    padding-right: 6.7857142857rem !important;
  }

  /* P */

  .g-pr-100--sm {
    padding-right: 7.1428571429rem !important;
  }

  /* P */

  .g-pr-105--sm {
    padding-right: 7.5rem !important;
  }

  /* P */

  .g-pr-110--sm {
    padding-right: 7.8571428571rem !important;
  }

  /* P */

  .g-pr-115--sm {
    padding-right: 8.2142857143rem !important;
  }

  /* P */

  .g-pr-120--sm {
    padding-right: 8.5714285714rem !important;
  }

  /* P */

  .g-pr-125--sm {
    padding-right: 8.9285714286rem !important;
  }

  /* P */

  .g-pr-130--sm {
    padding-right: 9.2857142857rem !important;
  }

  /* P */

  .g-pr-135--sm {
    padding-right: 9.6428571429rem !important;
  }

  /* P */

  .g-pr-140--sm {
    padding-right: 10rem !important;
  }

  /* P */

  .g-pr-145--sm {
    padding-right: 10.3571428571rem !important;
  }

  /* P */

  .g-pr-150--sm {
    padding-right: 10.7142857143rem !important;
  }

  /* P */

  .g-pr-155--sm {
    padding-right: 11.0714285714rem !important;
  }

  /* P */

  .g-pr-160--sm {
    padding-right: 11.4285714286rem !important;
  }

  /* P */

  .g-pr-165--sm {
    padding-right: 11.7857142857rem !important;
  }

  /* P */

  .g-pr-170--sm {
    padding-right: 12.1428571429rem !important;
  }

  /* Padding Bottom */

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

  .g-pb-1--sm {
    padding-bottom: 0.0714285714rem !important;
  }

  .g-pb-2--sm {
    padding-bottom: 0.1428571429rem !important;
  }

  .g-pb-3--sm {
    padding-bottom: 0.2142857143rem !important;
  }

  .g-pb-4--sm {
    padding-bottom: 0.2857142857rem !important;
  }

  .g-pb-5--sm {
    padding-bottom: 0.3571428571rem !important;
  }

  .g-pb-6--sm {
    padding-bottom: 0.4285714286rem !important;
  }

  .g-pb-7--sm {
    padding-bottom: 0.5rem !important;
  }

  .g-pb-8--sm {
    padding-bottom: 0.5714285714rem !important;
  }

  .g-pb-9--sm {
    padding-bottom: 0.6428571429rem !important;
  }

  .g-pb-10--sm {
    padding-bottom: 0.7142857143rem !important;
  }

  .g-pb-15--sm {
    padding-bottom: 1.0714285714rem !important;
  }

  .g-pb-20--sm {
    padding-bottom: 1.4285714286rem !important;
  }

  .g-pb-25--sm {
    padding-bottom: 1.7857142857rem !important;
  }

  .g-pb-30--sm {
    padding-bottom: 2.1428571429rem !important;
  }

  .g-pb-35--sm {
    padding-bottom: 2.5rem !important;
  }

  .g-pb-40--sm {
    padding-bottom: 2.8571428571rem !important;
  }

  .g-pb-45--sm {
    padding-bottom: 3.2142857143rem !important;
  }

  .g-pb-50--sm {
    padding-bottom: 3.5714285714rem !important;
  }

  .g-pb-55--sm {
    padding-bottom: 3.9285714286rem !important;
  }

  .g-pb-60--sm {
    padding-bottom: 4.2857142857rem !important;
  }

  .g-pb-65--sm {
    padding-bottom: 4.6428571429rem !important;
  }

  .g-pb-70--sm {
    padding-bottom: 5rem !important;
  }

  .g-pb-75--sm {
    padding-bottom: 5.3571428571rem !important;
  }

  .g-pb-80--sm {
    padding-bottom: 5.7142857143rem !important;
  }

  .g-pb-85--sm {
    padding-bottom: 6.0714285714rem !important;
  }

  .g-pb-90--sm {
    padding-bottom: 6.4285714286rem !important;
  }

  .g-pb-95--sm {
    padding-bottom: 6.7857142857rem !important;
  }

  .g-pb-100--sm {
    padding-bottom: 7.1428571429rem !important;
  }

  .g-pb-105--sm {
    padding-bottom: 7.5rem !important;
  }

  .g-pb-110--sm {
    padding-bottom: 7.8571428571rem !important;
  }

  .g-pb-115--sm {
    padding-bottom: 8.2142857143rem !important;
  }

  .g-pb-120--sm {
    padding-bottom: 8.5714285714rem !important;
  }

  .g-pb-125--sm {
    padding-bottom: 8.9285714286rem !important;
  }

  .g-pb-130--sm {
    padding-bottom: 9.2857142857rem !important;
  }

  .g-pb-135--sm {
    padding-bottom: 9.6428571429rem !important;
  }

  .g-pb-140--sm {
    padding-bottom: 10rem !important;
  }

  .g-pb-145--sm {
    padding-bottom: 10.3571428571rem !important;
  }

  .g-pb-150--sm {
    padding-bottom: 10.7142857143rem !important;
  }

  /* Padding Left */

  .g-pl-0--sm {
    padding-left: 0px !important;
  }

  .g-pl-1--sm {
    padding-left: 0.0714285714rem !important;
  }

  .g-pl-2--sm {
    padding-left: 0.1428571429rem !important;
  }

  .g-pl-3--sm {
    padding-left: 0.2142857143rem !important;
  }

  .g-pl-4--sm {
    padding-left: 0.2857142857rem !important;
  }

  .g-pl-5--sm {
    padding-left: 0.3571428571rem !important;
  }

  .g-pl-6--sm {
    padding-left: 0.4285714286rem !important;
  }

  .g-pl-7--sm {
    padding-left: 0.5rem !important;
  }

  .g-pl-8--sm {
    padding-left: 0.5714285714rem !important;
  }

  .g-pl-9--sm {
    padding-left: 0.6428571429rem !important;
  }

  /* P */

  .g-pl-10--sm {
    padding-left: 0.7142857143rem !important;
  }

  /* P */

  .g-pl-15--sm {
    padding-left: 1.0714285714rem !important;
  }

  /* P */

  .g-pl-20--sm {
    padding-left: 1.4285714286rem !important;
  }

  /* P */

  .g-pl-25--sm {
    padding-left: 1.7857142857rem !important;
  }

  /* P */

  .g-pl-30--sm {
    padding-left: 2.1428571429rem !important;
  }

  /* P */

  .g-pl-35--sm {
    padding-left: 2.5rem !important;
  }

  /* P */

  .g-pl-40--sm {
    padding-left: 2.8571428571rem !important;
  }

  /* P */

  .g-pl-45--sm {
    padding-left: 3.2142857143rem !important;
  }

  /* P */

  .g-pl-50--sm {
    padding-left: 3.5714285714rem !important;
  }

  /* P */

  .g-pl-55--sm {
    padding-left: 3.9285714286rem !important;
  }

  /* P */

  .g-pl-60--sm {
    padding-left: 4.2857142857rem !important;
  }

  /* P */

  .g-pl-65--sm {
    padding-left: 4.6428571429rem !important;
  }

  /* P */

  .g-pl-70--sm {
    padding-left: 5rem !important;
  }

  /* P */

  .g-pl-75--sm {
    padding-left: 5.3571428571rem !important;
  }

  /* P */

  .g-pl-80--sm {
    padding-left: 5.7142857143rem !important;
  }

  /* P */

  .g-pl-85--sm {
    padding-left: 6.0714285714rem !important;
  }

  /* P */

  .g-pl-90--sm {
    padding-left: 6.4285714286rem !important;
  }

  /* P */

  .g-pl-95--sm {
    padding-left: 6.7857142857rem !important;
  }

  /* P */

  .g-pl-100--sm {
    padding-left: 7.1428571429rem !important;
  }

  /* P */

  .g-pl-105--sm {
    padding-left: 7.5rem !important;
  }

  /* P */

  .g-pl-110--sm {
    padding-left: 7.8571428571rem !important;
  }

  /* P */

  .g-pl-115--sm {
    padding-left: 8.2142857143rem !important;
  }

  /* P */

  .g-pl-120--sm {
    padding-left: 8.5714285714rem !important;
  }

  /* P */

  .g-pl-125--sm {
    padding-left: 8.9285714286rem !important;
  }

  /* P */

  .g-pl-130--sm {
    padding-left: 9.2857142857rem !important;
  }

  /* P */

  .g-pl-135--sm {
    padding-left: 9.6428571429rem !important;
  }

  /* P */

  .g-pl-140--sm {
    padding-left: 10rem !important;
  }

  /* P */

  .g-pl-145--sm {
    padding-left: 10.3571428571rem !important;
  }

  /* P */

  .g-pl-150--sm {
    padding-left: 10.7142857143rem !important;
  }

  /* P */

  .g-pl-155--sm {
    padding-left: 11.0714285714rem !important;
  }

  /* P */

  .g-pl-160--sm {
    padding-left: 11.4285714286rem !important;
  }

  /* P */

  .g-pl-165--sm {
    padding-left: 11.7857142857rem !important;
  }

  /* P */

  .g-pl-170--sm {
    padding-left: 12.1428571429rem !important;
  }
}

/* Padding Spaces (md)
------------------------------------*/

/* P */

@media (min-width: 768px) {
  .g-pa-0--md {
    padding: 0 !important;
  }

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

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

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

  .g-pr-0--md {
    padding-right: 0 !important;
  }

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

  .g-pl-0--md {
    padding-left: 0 !important;
  }

  /* Padding Around */

  .g-pa-2--md {
    padding: 0.1428571429rem !important;
  }

  .g-pa-3--md {
    padding: 0.2142857143rem !important;
  }

  .g-pa-5--md {
    padding: 0.3571428571rem !important;
  }

  .g-pa-7--md {
    padding: 0.5rem !important;
  }

  .g-pa-10--md {
    padding: 0.7142857143rem !important;
  }

  .g-pa-15--md {
    padding: 1.0714285714rem !important;
  }

  .g-pa-20--md {
    padding: 1.4285714286rem !important;
  }

  .g-pa-25--md {
    padding: 1.7857142857rem !important;
  }

  .g-pa-30--md {
    padding: 2.1428571429rem !important;
  }

  .g-pa-35--md {
    padding: 2.5rem !important;
  }

  .g-pa-40--md {
    padding: 2.8571428571rem !important;
  }

  .g-pa-45--md {
    padding: 3.2142857143rem !important;
  }

  .g-pa-50--md {
    padding: 3.5714285714rem !important;
  }

  .g-pa-55--md {
    padding: 3.9285714286rem !important;
  }

  .g-pa-60--md {
    padding: 4.2857142857rem !important;
  }

  .g-pa-65--md {
    padding: 4.6428571429rem !important;
  }

  .g-pa-70--md {
    padding: 5rem !important;
  }

  .g-pa-75--md {
    padding: 5.3571428571rem !important;
  }

  .g-pa-80--md {
    padding: 5.7142857143rem !important;
  }

  .g-pa-85--md {
    padding: 6.0714285714rem !important;
  }

  .g-pa-90--md {
    padding: 6.4285714286rem !important;
  }

  .g-pa-95--md {
    padding: 6.7857142857rem !important;
  }

  .g-pa-100--md {
    padding: 7.1428571429rem !important;
  }

  .g-pa-105--md {
    padding: 7.5rem !important;
  }

  .g-pa-110--md {
    padding: 7.8571428571rem !important;
  }

  .g-pa-115--md {
    padding: 8.2142857143rem !important;
  }

  .g-pa-120--md {
    padding: 8.5714285714rem !important;
  }

  .g-pa-125--md {
    padding: 8.9285714286rem !important;
  }

  .g-pa-130--md {
    padding: 9.2857142857rem !important;
  }

  .g-pa-135--md {
    padding: 9.6428571429rem !important;
  }

  .g-pa-140--md {
    padding: 10rem !important;
  }

  .g-pa-145--md {
    padding: 10.3571428571rem !important;
  }

  .g-pa-150--md {
    padding: 10.7142857143rem !important;
  }

  /* Padding X */

  .g-px-1--md {
    padding-left: 0.0714285714rem !important;
    padding-right: 0.0714285714rem !important;
  }

  .g-px-2--md {
    padding-left: 0.1428571429rem !important;
    padding-right: 0.1428571429rem !important;
  }

  .g-px-3--md {
    padding-left: 0.2142857143rem !important;
    padding-right: 0.2142857143rem !important;
  }

  .g-px-4--md {
    padding-left: 0.2857142857rem !important;
    padding-right: 0.2857142857rem !important;
  }

  .g-px-5--md {
    padding-left: 0.3571428571rem !important;
    padding-right: 0.3571428571rem !important;
  }

  .g-px-6--md {
    padding-left: 0.4285714286rem !important;
    padding-right: 0.4285714286rem !important;
  }

  .g-px-7--md {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .g-px-8--md {
    padding-left: 0.5714285714rem !important;
    padding-right: 0.5714285714rem !important;
  }

  .g-px-9--md {
    padding-left: 0.6428571429rem !important;
    padding-right: 0.6428571429rem !important;
  }

  .g-px-10--md {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-11--md {
    padding-left: 0.7857142857rem !important;
    padding-right: 0.7857142857rem !important;
  }

  .g-px-12--md {
    padding-left: 0.8571428571rem !important;
    padding-right: 0.8571428571rem !important;
  }

  .g-px-13--md {
    padding-left: 0.9285714286rem !important;
    padding-right: 0.9285714286rem !important;
  }

  .g-px-14--md {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .g-px-15--md {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-16--md {
    padding-left: 1.1428571429rem !important;
    padding-right: 1.1428571429rem !important;
  }

  .g-px-17--md {
    padding-left: 1.2142857143rem !important;
    padding-right: 1.2142857143rem !important;
  }

  .g-px-18--md {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-px-19--md {
    padding-left: 1.3571428571rem !important;
    padding-right: 1.3571428571rem !important;
  }

  .g-px-10--md {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-15--md {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-20--md {
    padding-left: 1.4285714286rem !important;
    padding-right: 1.4285714286rem !important;
  }

  .g-px-25--md {
    padding-left: 1.7857142857rem !important;
    padding-right: 1.7857142857rem !important;
  }

  .g-px-30--md {
    padding-left: 2.1428571429rem !important;
    padding-right: 2.1428571429rem !important;
  }

  .g-px-35--md {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-px-40--md {
    padding-left: 2.8571428571rem !important;
    padding-right: 2.8571428571rem !important;
  }

  .g-px-45--md {
    padding-left: 3.2142857143rem !important;
    padding-right: 3.2142857143rem !important;
  }

  .g-px-50--md {
    padding-left: 3.5714285714rem !important;
    padding-right: 3.5714285714rem !important;
  }

  .g-px-55--md {
    padding-left: 3.9285714286rem !important;
    padding-right: 3.9285714286rem !important;
  }

  .g-px-60--md {
    padding-left: 4.2857142857rem !important;
    padding-right: 4.2857142857rem !important;
  }

  .g-px-65--md {
    padding-left: 4.6428571429rem !important;
    padding-right: 4.6428571429rem !important;
  }

  .g-px-70--md {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-px-75--md {
    padding-left: 5.3571428571rem !important;
    padding-right: 5.3571428571rem !important;
  }

  .g-px-80--md {
    padding-left: 5.7142857143rem !important;
    padding-right: 5.7142857143rem !important;
  }

  .g-px-85--md {
    padding-left: 6.0714285714rem !important;
    padding-right: 6.0714285714rem !important;
  }

  .g-px-90--md {
    padding-left: 6.4285714286rem !important;
    padding-right: 6.4285714286rem !important;
  }

  .g-px-95--md {
    padding-left: 6.7857142857rem !important;
    padding-right: 6.7857142857rem !important;
  }

  .g-px-100--md {
    padding-left: 7.1428571429rem !important;
    padding-right: 7.1428571429rem !important;
  }

  .g-px-105--md {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .g-px-110--md {
    padding-left: 7.8571428571rem !important;
    padding-right: 7.8571428571rem !important;
  }

  .g-px-115--md {
    padding-left: 8.2142857143rem !important;
    padding-right: 8.2142857143rem !important;
  }

  .g-px-120--md {
    padding-left: 8.5714285714rem !important;
    padding-right: 8.5714285714rem !important;
  }

  .g-px-125--md {
    padding-left: 8.9285714286rem !important;
    padding-right: 8.9285714286rem !important;
  }

  .g-px-130--md {
    padding-left: 9.2857142857rem !important;
    padding-right: 9.2857142857rem !important;
  }

  .g-px-135--md {
    padding-left: 9.6428571429rem !important;
    padding-right: 9.6428571429rem !important;
  }

  .g-px-140--md {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .g-px-145--md {
    padding-left: 10.3571428571rem !important;
    padding-right: 10.3571428571rem !important;
  }

  .g-px-150--md {
    padding-left: 10.7142857143rem !important;
    padding-right: 10.7142857143rem !important;
  }

  /* Padding Y */

  .g-py-1--md {
    padding-top: 0.0714285714rem !important;
    padding-bottom: 0.0714285714rem !important;
  }

  .g-py-2--md {
    padding-top: 0.1428571429rem !important;
    padding-bottom: 0.1428571429rem !important;
  }

  .g-py-3--md {
    padding-top: 0.2142857143rem !important;
    padding-bottom: 0.2142857143rem !important;
  }

  .g-py-4--md {
    padding-top: 0.2857142857rem !important;
    padding-bottom: 0.2857142857rem !important;
  }

  .g-py-5--md {
    padding-top: 0.3571428571rem !important;
    padding-bottom: 0.3571428571rem !important;
  }

  .g-py-6--md {
    padding-top: 0.4285714286rem !important;
    padding-bottom: 0.4285714286rem !important;
  }

  .g-py-7--md {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .g-py-8--md {
    padding-top: 0.5714285714rem !important;
    padding-bottom: 0.5714285714rem !important;
  }

  .g-py-9--md {
    padding-top: 0.6428571429rem !important;
    padding-bottom: 0.6428571429rem !important;
  }

  .g-py-10--md {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  .g-py-11--md {
    padding-top: 0.7857142857rem !important;
    padding-bottom: 0.7857142857rem !important;
  }

  .g-py-12--md {
    padding-top: 0.8571428571rem !important;
    padding-bottom: 0.8571428571rem !important;
  }

  .g-py-13--md {
    padding-top: 0.9285714286rem !important;
    padding-bottom: 0.9285714286rem !important;
  }

  .g-py-14--md {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .g-py-15--md {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  .g-py-16--md {
    padding-top: 1.1428571429rem !important;
    padding-bottom: 1.1428571429rem !important;
  }

  .g-py-17--md {
    padding-top: 1.2142857143rem !important;
    padding-bottom: 1.2142857143rem !important;
  }

  .g-py-18--md {
    padding-top: 1.2857142857rem !important;
    padding-bottom: 1.2857142857rem !important;
  }

  .g-py-19--md {
    padding-top: 1.3571428571rem !important;
    padding-bottom: 1.3571428571rem !important;
  }

  /* P */

  .g-py-10--md {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  /* P */

  .g-py-15--md {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  /* P */

  .g-py-20--md {
    padding-top: 1.4285714286rem !important;
    padding-bottom: 1.4285714286rem !important;
  }

  /* P */

  .g-py-25--md {
    padding-top: 1.7857142857rem !important;
    padding-bottom: 1.7857142857rem !important;
  }

  /* P */

  .g-py-30--md {
    padding-top: 2.1428571429rem !important;
    padding-bottom: 2.1428571429rem !important;
  }

  /* P */

  .g-py-35--md {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* P */

  .g-py-40--md {
    padding-top: 2.8571428571rem !important;
    padding-bottom: 2.8571428571rem !important;
  }

  /* P */

  .g-py-45--md {
    padding-top: 3.2142857143rem !important;
    padding-bottom: 3.2142857143rem !important;
  }

  /* P */

  .g-py-50--md {
    padding-top: 3.5714285714rem !important;
    padding-bottom: 3.5714285714rem !important;
  }

  /* P */

  .g-py-55--md {
    padding-top: 3.9285714286rem !important;
    padding-bottom: 3.9285714286rem !important;
  }

  /* P */

  .g-py-60--md {
    padding-top: 4.2857142857rem !important;
    padding-bottom: 4.2857142857rem !important;
  }

  /* P */

  .g-py-65--md {
    padding-top: 4.6428571429rem !important;
    padding-bottom: 4.6428571429rem !important;
  }

  /* P */

  .g-py-70--md {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* P */

  .g-py-75--md {
    padding-top: 5.3571428571rem !important;
    padding-bottom: 5.3571428571rem !important;
  }

  /* P */

  .g-py-80--md {
    padding-top: 5.7142857143rem !important;
    padding-bottom: 5.7142857143rem !important;
  }

  /* P */

  .g-py-85--md {
    padding-top: 6.0714285714rem !important;
    padding-bottom: 6.0714285714rem !important;
  }

  /* P */

  .g-py-90--md {
    padding-top: 6.4285714286rem !important;
    padding-bottom: 6.4285714286rem !important;
  }

  /* P */

  .g-py-95--md {
    padding-top: 6.7857142857rem !important;
    padding-bottom: 6.7857142857rem !important;
  }

  /* P */

  .g-py-100--md {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  /* P */

  .g-py-105--md {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  /* P */

  .g-py-110--md {
    padding-top: 7.8571428571rem !important;
    padding-bottom: 7.8571428571rem !important;
  }

  /* P */

  .g-py-115--md {
    padding-top: 8.2142857143rem !important;
    padding-bottom: 8.2142857143rem !important;
  }

  /* P */

  .g-py-120--md {
    padding-top: 8.5714285714rem !important;
    padding-bottom: 8.5714285714rem !important;
  }

  /* P */

  .g-py-125--md {
    padding-top: 8.9285714286rem !important;
    padding-bottom: 8.9285714286rem !important;
  }

  /* P */

  .g-py-130--md {
    padding-top: 9.2857142857rem !important;
    padding-bottom: 9.2857142857rem !important;
  }

  /* P */

  .g-py-135--md {
    padding-top: 9.6428571429rem !important;
    padding-bottom: 9.6428571429rem !important;
  }

  /* P */

  .g-py-140--md {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  /* P */

  .g-py-145--md {
    padding-top: 10.3571428571rem !important;
    padding-bottom: 10.3571428571rem !important;
  }

  /* P */

  .g-py-150--md {
    padding-top: 10.7142857143rem !important;
    padding-bottom: 10.7142857143rem !important;
  }

  /* P */

  .g-py-155--md {
    padding-top: 11.0714285714rem !important;
    padding-bottom: 11.0714285714rem !important;
  }

  /* P */

  .g-py-160--md {
    padding-top: 11.4285714286rem !important;
    padding-bottom: 11.4285714286rem !important;
  }

  /* P */

  .g-py-165--md {
    padding-top: 11.7857142857rem !important;
    padding-bottom: 11.7857142857rem !important;
  }

  /* P */

  .g-py-170--md {
    padding-top: 12.1428571429rem !important;
    padding-bottom: 12.1428571429rem !important;
  }

  /* P */

  .g-py-175--md {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  /* P */

  .g-py-180--md {
    padding-top: 12.8571428571rem !important;
    padding-bottom: 12.8571428571rem !important;
  }

  /* P */

  .g-py-185--md {
    padding-top: 13.2142857143rem !important;
    padding-bottom: 13.2142857143rem !important;
  }

  /* P */

  .g-py-190--md {
    padding-top: 13.5714285714rem !important;
    padding-bottom: 13.5714285714rem !important;
  }

  /* P */

  .g-py-195--md {
    padding-top: 13.9285714286rem !important;
    padding-bottom: 13.9285714286rem !important;
  }

  /* P */

  .g-py-200--md {
    padding-top: 14.2857142857rem !important;
    padding-bottom: 14.2857142857rem !important;
  }

  /* P */

  .g-py-205--md {
    padding-top: 14.6428571429rem !important;
    padding-bottom: 14.6428571429rem !important;
  }

  /* P */

  .g-py-210--md {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  /* Padding Top */

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

  .g-pt-1--md {
    padding-top: 0.0714285714rem !important;
  }

  .g-pt-2--md {
    padding-top: 0.1428571429rem !important;
  }

  .g-pt-3--md {
    padding-top: 0.2142857143rem !important;
  }

  .g-pt-4--md {
    padding-top: 0.2857142857rem !important;
  }

  .g-pt-5--md {
    padding-top: 0.3571428571rem !important;
  }

  .g-pt-6--md {
    padding-top: 0.4285714286rem !important;
  }

  .g-pt-7--md {
    padding-top: 0.5rem !important;
  }

  .g-pt-8--md {
    padding-top: 0.5714285714rem !important;
  }

  .g-pt-9--md {
    padding-top: 0.6428571429rem !important;
  }

  .g-pt-10--md {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-11--md {
    padding-top: 0.7857142857rem !important;
  }

  .g-pt-12--md {
    padding-top: 0.8571428571rem !important;
  }

  .g-pt-13--md {
    padding-top: 0.9285714286rem !important;
  }

  .g-pt-14--md {
    padding-top: 1rem !important;
  }

  .g-pt-15--md {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-16--md {
    padding-top: 1.1428571429rem !important;
  }

  .g-pt-17--md {
    padding-top: 1.2142857143rem !important;
  }

  .g-pt-18--md {
    padding-top: 1.2857142857rem !important;
  }

  .g-pt-19--md {
    padding-top: 1.3571428571rem !important;
  }

  .g-pt-10--md {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-15--md {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-20--md {
    padding-top: 1.4285714286rem !important;
  }

  .g-pt-25--md {
    padding-top: 1.7857142857rem !important;
  }

  .g-pt-30--md {
    padding-top: 2.1428571429rem !important;
  }

  .g-pt-35--md {
    padding-top: 2.5rem !important;
  }

  .g-pt-40--md {
    padding-top: 2.8571428571rem !important;
  }

  .g-pt-45--md {
    padding-top: 3.2142857143rem !important;
  }

  .g-pt-50--md {
    padding-top: 3.5714285714rem !important;
  }

  .g-pt-55--md {
    padding-top: 3.9285714286rem !important;
  }

  .g-pt-60--md {
    padding-top: 4.2857142857rem !important;
  }

  .g-pt-65--md {
    padding-top: 4.6428571429rem !important;
  }

  .g-pt-70--md {
    padding-top: 5rem !important;
  }

  .g-pt-75--md {
    padding-top: 5.3571428571rem !important;
  }

  .g-pt-80--md {
    padding-top: 5.7142857143rem !important;
  }

  .g-pt-85--md {
    padding-top: 6.0714285714rem !important;
  }

  .g-pt-90--md {
    padding-top: 6.4285714286rem !important;
  }

  .g-pt-95--md {
    padding-top: 6.7857142857rem !important;
  }

  .g-pt-100--md {
    padding-top: 7.1428571429rem !important;
  }

  .g-pt-105--md {
    padding-top: 7.5rem !important;
  }

  .g-pt-110--md {
    padding-top: 7.8571428571rem !important;
  }

  .g-pt-115--md {
    padding-top: 8.2142857143rem !important;
  }

  .g-pt-120--md {
    padding-top: 8.5714285714rem !important;
  }

  .g-pt-125--md {
    padding-top: 8.9285714286rem !important;
  }

  .g-pt-130--md {
    padding-top: 9.2857142857rem !important;
  }

  .g-pt-135--md {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-140--md {
    padding-top: 10rem !important;
  }

  .g-pt-145--md {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150--md {
    padding-top: 10.7142857143rem !important;
  }

  /* Padding Right */

  .g-pr-0--md {
    padding-right: 0px !important;
  }

  .g-pr-1--md {
    padding-right: 0.0714285714rem !important;
  }

  .g-pr-2--md {
    padding-right: 0.1428571429rem !important;
  }

  .g-pr-3--md {
    padding-right: 0.2142857143rem !important;
  }

  .g-pr-4--md {
    padding-right: 0.2857142857rem !important;
  }

  .g-pr-5--md {
    padding-right: 0.3571428571rem !important;
  }

  .g-pr-6--md {
    padding-right: 0.4285714286rem !important;
  }

  .g-pr-7--md {
    padding-right: 0.5rem !important;
  }

  .g-pr-8--md {
    padding-right: 0.5714285714rem !important;
  }

  .g-pr-9--md {
    padding-right: 0.6428571429rem !important;
  }

  /* P */

  .g-pr-10--md {
    padding-right: 0.7142857143rem !important;
  }

  /* P */

  .g-pr-15--md {
    padding-right: 1.0714285714rem !important;
  }

  /* P */

  .g-pr-20--md {
    padding-right: 1.4285714286rem !important;
  }

  /* P */

  .g-pr-25--md {
    padding-right: 1.7857142857rem !important;
  }

  /* P */

  .g-pr-30--md {
    padding-right: 2.1428571429rem !important;
  }

  /* P */

  .g-pr-35--md {
    padding-right: 2.5rem !important;
  }

  /* P */

  .g-pr-40--md {
    padding-right: 2.8571428571rem !important;
  }

  /* P */

  .g-pr-45--md {
    padding-right: 3.2142857143rem !important;
  }

  /* P */

  .g-pr-50--md {
    padding-right: 3.5714285714rem !important;
  }

  /* P */

  .g-pr-55--md {
    padding-right: 3.9285714286rem !important;
  }

  /* P */

  .g-pr-60--md {
    padding-right: 4.2857142857rem !important;
  }

  /* P */

  .g-pr-65--md {
    padding-right: 4.6428571429rem !important;
  }

  /* P */

  .g-pr-70--md {
    padding-right: 5rem !important;
  }

  /* P */

  .g-pr-75--md {
    padding-right: 5.3571428571rem !important;
  }

  /* P */

  .g-pr-80--md {
    padding-right: 5.7142857143rem !important;
  }

  /* P */

  .g-pr-85--md {
    padding-right: 6.0714285714rem !important;
  }

  /* P */

  .g-pr-90--md {
    padding-right: 6.4285714286rem !important;
  }

  /* P */

  .g-pr-95--md {
    padding-right: 6.7857142857rem !important;
  }

  /* P */

  .g-pr-100--md {
    padding-right: 7.1428571429rem !important;
  }

  /* P */

  .g-pr-105--md {
    padding-right: 7.5rem !important;
  }

  /* P */

  .g-pr-110--md {
    padding-right: 7.8571428571rem !important;
  }

  /* P */

  .g-pr-115--md {
    padding-right: 8.2142857143rem !important;
  }

  /* P */

  .g-pr-120--md {
    padding-right: 8.5714285714rem !important;
  }

  /* P */

  .g-pr-125--md {
    padding-right: 8.9285714286rem !important;
  }

  /* P */

  .g-pr-130--md {
    padding-right: 9.2857142857rem !important;
  }

  /* P */

  .g-pr-135--md {
    padding-right: 9.6428571429rem !important;
  }

  /* P */

  .g-pr-140--md {
    padding-right: 10rem !important;
  }

  /* P */

  .g-pr-145--md {
    padding-right: 10.3571428571rem !important;
  }

  /* P */

  .g-pr-150--md {
    padding-right: 10.7142857143rem !important;
  }

  /* P */

  .g-pr-155--md {
    padding-right: 11.0714285714rem !important;
  }

  /* P */

  .g-pr-160--md {
    padding-right: 11.4285714286rem !important;
  }

  /* P */

  .g-pr-165--md {
    padding-right: 11.7857142857rem !important;
  }

  /* P */

  .g-pr-170--md {
    padding-right: 12.1428571429rem !important;
  }

  /* Padding Bottom */

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

  .g-pb-1--md {
    padding-bottom: 0.0714285714rem !important;
  }

  .g-pb-2--md {
    padding-bottom: 0.1428571429rem !important;
  }

  .g-pb-3--md {
    padding-bottom: 0.2142857143rem !important;
  }

  .g-pb-4--md {
    padding-bottom: 0.2857142857rem !important;
  }

  .g-pb-5--md {
    padding-bottom: 0.3571428571rem !important;
  }

  .g-pb-6--md {
    padding-bottom: 0.4285714286rem !important;
  }

  .g-pb-7--md {
    padding-bottom: 0.5rem !important;
  }

  .g-pb-8--md {
    padding-bottom: 0.5714285714rem !important;
  }

  .g-pb-9--md {
    padding-bottom: 0.6428571429rem !important;
  }

  .g-pb-10--md {
    padding-bottom: 0.7142857143rem !important;
  }

  .g-pb-15--md {
    padding-bottom: 1.0714285714rem !important;
  }

  .g-pb-20--md {
    padding-bottom: 1.4285714286rem !important;
  }

  .g-pb-25--md {
    padding-bottom: 1.7857142857rem !important;
  }

  .g-pb-30--md {
    padding-bottom: 2.1428571429rem !important;
  }

  .g-pb-35--md {
    padding-bottom: 2.5rem !important;
  }

  .g-pb-40--md {
    padding-bottom: 2.8571428571rem !important;
  }

  .g-pb-45--md {
    padding-bottom: 3.2142857143rem !important;
  }

  .g-pb-50--md {
    padding-bottom: 3.5714285714rem !important;
  }

  .g-pb-55--md {
    padding-bottom: 3.9285714286rem !important;
  }

  .g-pb-60--md {
    padding-bottom: 4.2857142857rem !important;
  }

  .g-pb-65--md {
    padding-bottom: 4.6428571429rem !important;
  }

  .g-pb-70--md {
    padding-bottom: 5rem !important;
  }

  .g-pb-75--md {
    padding-bottom: 5.3571428571rem !important;
  }

  .g-pb-80--md {
    padding-bottom: 5.7142857143rem !important;
  }

  .g-pb-85--md {
    padding-bottom: 6.0714285714rem !important;
  }

  .g-pb-90--md {
    padding-bottom: 6.4285714286rem !important;
  }

  .g-pb-95--md {
    padding-bottom: 6.7857142857rem !important;
  }

  .g-pb-100--md {
    padding-bottom: 7.1428571429rem !important;
  }

  .g-pb-105--md {
    padding-bottom: 7.5rem !important;
  }

  .g-pb-110--md {
    padding-bottom: 7.8571428571rem !important;
  }

  .g-pb-115--md {
    padding-bottom: 8.2142857143rem !important;
  }

  .g-pb-120--md {
    padding-bottom: 8.5714285714rem !important;
  }

  .g-pb-125--md {
    padding-bottom: 8.9285714286rem !important;
  }

  .g-pb-130--md {
    padding-bottom: 9.2857142857rem !important;
  }

  .g-pb-135--md {
    padding-bottom: 9.6428571429rem !important;
  }

  .g-pb-140--md {
    padding-bottom: 10rem !important;
  }

  .g-pb-145--md {
    padding-bottom: 10.3571428571rem !important;
  }

  .g-pb-150--md {
    padding-bottom: 10.7142857143rem !important;
  }

  /* Padding Left */

  .g-pl-0--md {
    padding-left: 0px !important;
  }

  .g-pl-1--md {
    padding-left: 0.0714285714rem !important;
  }

  .g-pl-2--md {
    padding-left: 0.1428571429rem !important;
  }

  .g-pl-3--md {
    padding-left: 0.2142857143rem !important;
  }

  .g-pl-4--md {
    padding-left: 0.2857142857rem !important;
  }

  .g-pl-5--md {
    padding-left: 0.3571428571rem !important;
  }

  .g-pl-6--md {
    padding-left: 0.4285714286rem !important;
  }

  .g-pl-7--md {
    padding-left: 0.5rem !important;
  }

  .g-pl-8--md {
    padding-left: 0.5714285714rem !important;
  }

  .g-pl-9--md {
    padding-left: 0.6428571429rem !important;
  }

  /* P */

  .g-pl-10--md {
    padding-left: 0.7142857143rem !important;
  }

  /* P */

  .g-pl-15--md {
    padding-left: 1.0714285714rem !important;
  }

  /* P */

  .g-pl-20--md {
    padding-left: 1.4285714286rem !important;
  }

  /* P */

  .g-pl-25--md {
    padding-left: 1.7857142857rem !important;
  }

  /* P */

  .g-pl-30--md {
    padding-left: 2.1428571429rem !important;
  }

  /* P */

  .g-pl-35--md {
    padding-left: 2.5rem !important;
  }

  /* P */

  .g-pl-40--md {
    padding-left: 2.8571428571rem !important;
  }

  /* P */

  .g-pl-45--md {
    padding-left: 3.2142857143rem !important;
  }

  /* P */

  .g-pl-50--md {
    padding-left: 3.5714285714rem !important;
  }

  /* P */

  .g-pl-55--md {
    padding-left: 3.9285714286rem !important;
  }

  /* P */

  .g-pl-60--md {
    padding-left: 4.2857142857rem !important;
  }

  /* P */

  .g-pl-65--md {
    padding-left: 4.6428571429rem !important;
  }

  /* P */

  .g-pl-70--md {
    padding-left: 5rem !important;
  }

  /* P */

  .g-pl-75--md {
    padding-left: 5.3571428571rem !important;
  }

  /* P */

  .g-pl-80--md {
    padding-left: 5.7142857143rem !important;
  }

  /* P */

  .g-pl-85--md {
    padding-left: 6.0714285714rem !important;
  }

  /* P */

  .g-pl-90--md {
    padding-left: 6.4285714286rem !important;
  }

  /* P */

  .g-pl-95--md {
    padding-left: 6.7857142857rem !important;
  }

  /* P */

  .g-pl-100--md {
    padding-left: 7.1428571429rem !important;
  }

  /* P */

  .g-pl-105--md {
    padding-left: 7.5rem !important;
  }

  /* P */

  .g-pl-110--md {
    padding-left: 7.8571428571rem !important;
  }

  /* P */

  .g-pl-115--md {
    padding-left: 8.2142857143rem !important;
  }

  /* P */

  .g-pl-120--md {
    padding-left: 8.5714285714rem !important;
  }

  /* P */

  .g-pl-125--md {
    padding-left: 8.9285714286rem !important;
  }

  /* P */

  .g-pl-130--md {
    padding-left: 9.2857142857rem !important;
  }

  /* P */

  .g-pl-135--md {
    padding-left: 9.6428571429rem !important;
  }

  /* P */

  .g-pl-140--md {
    padding-left: 10rem !important;
  }

  /* P */

  .g-pl-145--md {
    padding-left: 10.3571428571rem !important;
  }

  /* P */

  .g-pl-150--md {
    padding-left: 10.7142857143rem !important;
  }

  /* P */

  .g-pl-155--md {
    padding-left: 11.0714285714rem !important;
  }

  /* P */

  .g-pl-160--md {
    padding-left: 11.4285714286rem !important;
  }

  /* P */

  .g-pl-165--md {
    padding-left: 11.7857142857rem !important;
  }

  /* P */

  .g-pl-170--md {
    padding-left: 12.1428571429rem !important;
  }
}

/* Padding Spaces (lg) P
------------------------------------*/

/* P */

@media (min-width: 992px) {
  .g-pa-0--lg {
    padding: 0 !important;
  }

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

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

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

  .g-pr-0--lg {
    padding-right: 0 !important;
  }

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

  .g-pl-0--lg {
    padding-left: 0 !important;
  }

  /* Padding Around */

  .g-pa-2--lg {
    padding: 0.1428571429rem !important;
  }

  .g-pa-3--lg {
    padding: 0.2142857143rem !important;
  }

  .g-pa-5--lg {
    padding: 0.3571428571rem !important;
  }

  .g-pa-7--lg {
    padding: 0.5rem !important;
  }

  .g-pa-10--lg {
    padding: 0.7142857143rem !important;
  }

  .g-pa-15--lg {
    padding: 1.0714285714rem !important;
  }

  .g-pa-20--lg {
    padding: 1.4285714286rem !important;
  }

  .g-pa-25--lg {
    padding: 1.7857142857rem !important;
  }

  .g-pa-30--lg {
    padding: 2.1428571429rem !important;
  }

  .g-pa-35--lg {
    padding: 2.5rem !important;
  }

  .g-pa-40--lg {
    padding: 2.8571428571rem !important;
  }

  .g-pa-45--lg {
    padding: 3.2142857143rem !important;
  }

  .g-pa-50--lg {
    padding: 3.5714285714rem !important;
  }

  .g-pa-55--lg {
    padding: 3.9285714286rem !important;
  }

  .g-pa-60--lg {
    padding: 4.2857142857rem !important;
  }

  .g-pa-65--lg {
    padding: 4.6428571429rem !important;
  }

  .g-pa-70--lg {
    padding: 5rem !important;
  }

  .g-pa-75--lg {
    padding: 5.3571428571rem !important;
  }

  .g-pa-80--lg {
    padding: 5.7142857143rem !important;
  }

  .g-pa-85--lg {
    padding: 6.0714285714rem !important;
  }

  .g-pa-90--lg {
    padding: 6.4285714286rem !important;
  }

  .g-pa-95--lg {
    padding: 6.7857142857rem !important;
  }

  .g-pa-100--lg {
    padding: 7.1428571429rem !important;
  }

  .g-pa-105--lg {
    padding: 7.5rem !important;
  }

  .g-pa-110--lg {
    padding: 7.8571428571rem !important;
  }

  .g-pa-115--lg {
    padding: 8.2142857143rem !important;
  }

  .g-pa-120--lg {
    padding: 8.5714285714rem !important;
  }

  .g-pa-125--lg {
    padding: 8.9285714286rem !important;
  }

  .g-pa-130--lg {
    padding: 9.2857142857rem !important;
  }

  .g-pa-135--lg {
    padding: 9.6428571429rem !important;
  }

  .g-pa-140--lg {
    padding: 10rem !important;
  }

  .g-pa-145--lg {
    padding: 10.3571428571rem !important;
  }

  .g-pa-150--lg {
    padding: 10.7142857143rem !important;
  }

  /* Padding X */

  .g-px-1--lg {
    padding-left: 0.0714285714rem !important;
    padding-right: 0.0714285714rem !important;
  }

  .g-px-2--lg {
    padding-left: 0.1428571429rem !important;
    padding-right: 0.1428571429rem !important;
  }

  .g-px-3--lg {
    padding-left: 0.2142857143rem !important;
    padding-right: 0.2142857143rem !important;
  }

  .g-px-4--lg {
    padding-left: 0.2857142857rem !important;
    padding-right: 0.2857142857rem !important;
  }

  .g-px-5--lg {
    padding-left: 0.3571428571rem !important;
    padding-right: 0.3571428571rem !important;
  }

  .g-px-6--lg {
    padding-left: 0.4285714286rem !important;
    padding-right: 0.4285714286rem !important;
  }

  .g-px-7--lg {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .g-px-8--lg {
    padding-left: 0.5714285714rem !important;
    padding-right: 0.5714285714rem !important;
  }

  .g-px-9--lg {
    padding-left: 0.6428571429rem !important;
    padding-right: 0.6428571429rem !important;
  }

  .g-px-10--lg {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-11--lg {
    padding-left: 0.7857142857rem !important;
    padding-right: 0.7857142857rem !important;
  }

  .g-px-12--lg {
    padding-left: 0.8571428571rem !important;
    padding-right: 0.8571428571rem !important;
  }

  .g-px-13--lg {
    padding-left: 0.9285714286rem !important;
    padding-right: 0.9285714286rem !important;
  }

  .g-px-14--lg {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .g-px-15--lg {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-16--lg {
    padding-left: 1.1428571429rem !important;
    padding-right: 1.1428571429rem !important;
  }

  .g-px-17--lg {
    padding-left: 1.2142857143rem !important;
    padding-right: 1.2142857143rem !important;
  }

  .g-px-18--lg {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-px-19--lg {
    padding-left: 1.3571428571rem !important;
    padding-right: 1.3571428571rem !important;
  }

  .g-px-10--lg {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-15--lg {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-20--lg {
    padding-left: 1.4285714286rem !important;
    padding-right: 1.4285714286rem !important;
  }

  .g-px-25--lg {
    padding-left: 1.7857142857rem !important;
    padding-right: 1.7857142857rem !important;
  }

  .g-px-30--lg {
    padding-left: 2.1428571429rem !important;
    padding-right: 2.1428571429rem !important;
  }

  .g-px-35--lg {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-px-40--lg {
    padding-left: 2.8571428571rem !important;
    padding-right: 2.8571428571rem !important;
  }

  .g-px-45--lg {
    padding-left: 3.2142857143rem !important;
    padding-right: 3.2142857143rem !important;
  }

  .g-px-50--lg {
    padding-left: 3.5714285714rem !important;
    padding-right: 3.5714285714rem !important;
  }

  .g-px-55--lg {
    padding-left: 3.9285714286rem !important;
    padding-right: 3.9285714286rem !important;
  }

  .g-px-60--lg {
    padding-left: 4.2857142857rem !important;
    padding-right: 4.2857142857rem !important;
  }

  .g-px-65--lg {
    padding-left: 4.6428571429rem !important;
    padding-right: 4.6428571429rem !important;
  }

  .g-px-70--lg {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-px-75--lg {
    padding-left: 5.3571428571rem !important;
    padding-right: 5.3571428571rem !important;
  }

  .g-px-80--lg {
    padding-left: 5.7142857143rem !important;
    padding-right: 5.7142857143rem !important;
  }

  .g-px-85--lg {
    padding-left: 6.0714285714rem !important;
    padding-right: 6.0714285714rem !important;
  }

  .g-px-90--lg {
    padding-left: 6.4285714286rem !important;
    padding-right: 6.4285714286rem !important;
  }

  .g-px-95--lg {
    padding-left: 6.7857142857rem !important;
    padding-right: 6.7857142857rem !important;
  }

  .g-px-100--lg {
    padding-left: 7.1428571429rem !important;
    padding-right: 7.1428571429rem !important;
  }

  .g-px-105--lg {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .g-px-110--lg {
    padding-left: 7.8571428571rem !important;
    padding-right: 7.8571428571rem !important;
  }

  .g-px-115--lg {
    padding-left: 8.2142857143rem !important;
    padding-right: 8.2142857143rem !important;
  }

  .g-px-120--lg {
    padding-left: 8.5714285714rem !important;
    padding-right: 8.5714285714rem !important;
  }

  .g-px-125--lg {
    padding-left: 8.9285714286rem !important;
    padding-right: 8.9285714286rem !important;
  }

  .g-px-130--lg {
    padding-left: 9.2857142857rem !important;
    padding-right: 9.2857142857rem !important;
  }

  .g-px-135--lg {
    padding-left: 9.6428571429rem !important;
    padding-right: 9.6428571429rem !important;
  }

  .g-px-140--lg {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .g-px-145--lg {
    padding-left: 10.3571428571rem !important;
    padding-right: 10.3571428571rem !important;
  }

  .g-px-150--lg {
    padding-left: 10.7142857143rem !important;
    padding-right: 10.7142857143rem !important;
  }

  /* Padding Y */

  .g-py-1--lg {
    padding-top: 0.0714285714rem !important;
    padding-bottom: 0.0714285714rem !important;
  }

  .g-py-2--lg {
    padding-top: 0.1428571429rem !important;
    padding-bottom: 0.1428571429rem !important;
  }

  .g-py-3--lg {
    padding-top: 0.2142857143rem !important;
    padding-bottom: 0.2142857143rem !important;
  }

  .g-py-4--lg {
    padding-top: 0.2857142857rem !important;
    padding-bottom: 0.2857142857rem !important;
  }

  .g-py-5--lg {
    padding-top: 0.3571428571rem !important;
    padding-bottom: 0.3571428571rem !important;
  }

  .g-py-6--lg {
    padding-top: 0.4285714286rem !important;
    padding-bottom: 0.4285714286rem !important;
  }

  .g-py-7--lg {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .g-py-8--lg {
    padding-top: 0.5714285714rem !important;
    padding-bottom: 0.5714285714rem !important;
  }

  .g-py-9--lg {
    padding-top: 0.6428571429rem !important;
    padding-bottom: 0.6428571429rem !important;
  }

  .g-py-10--lg {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  .g-py-11--lg {
    padding-top: 0.7857142857rem !important;
    padding-bottom: 0.7857142857rem !important;
  }

  .g-py-12--lg {
    padding-top: 0.8571428571rem !important;
    padding-bottom: 0.8571428571rem !important;
  }

  .g-py-13--lg {
    padding-top: 0.9285714286rem !important;
    padding-bottom: 0.9285714286rem !important;
  }

  .g-py-14--lg {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .g-py-15--lg {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  .g-py-16--lg {
    padding-top: 1.1428571429rem !important;
    padding-bottom: 1.1428571429rem !important;
  }

  .g-py-17--lg {
    padding-top: 1.2142857143rem !important;
    padding-bottom: 1.2142857143rem !important;
  }

  .g-py-18--lg {
    padding-top: 1.2857142857rem !important;
    padding-bottom: 1.2857142857rem !important;
  }

  .g-py-19--lg {
    padding-top: 1.3571428571rem !important;
    padding-bottom: 1.3571428571rem !important;
  }

  /* P */

  .g-py-10--lg {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  /* P */

  .g-py-15--lg {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  /* P */

  .g-py-20--lg {
    padding-top: 1.4285714286rem !important;
    padding-bottom: 1.4285714286rem !important;
  }

  /* P */

  .g-py-25--lg {
    padding-top: 1.7857142857rem !important;
    padding-bottom: 1.7857142857rem !important;
  }

  /* P */

  .g-py-30--lg {
    padding-top: 2.1428571429rem !important;
    padding-bottom: 2.1428571429rem !important;
  }

  /* P */

  .g-py-35--lg {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* P */

  .g-py-40--lg {
    padding-top: 2.8571428571rem !important;
    padding-bottom: 2.8571428571rem !important;
  }

  /* P */

  .g-py-45--lg {
    padding-top: 3.2142857143rem !important;
    padding-bottom: 3.2142857143rem !important;
  }

  /* P */

  .g-py-50--lg {
    padding-top: 3.5714285714rem !important;
    padding-bottom: 3.5714285714rem !important;
  }

  /* P */

  .g-py-55--lg {
    padding-top: 3.9285714286rem !important;
    padding-bottom: 3.9285714286rem !important;
  }

  /* P */

  .g-py-60--lg {
    padding-top: 4.2857142857rem !important;
    padding-bottom: 4.2857142857rem !important;
  }

  /* P */

  .g-py-65--lg {
    padding-top: 4.6428571429rem !important;
    padding-bottom: 4.6428571429rem !important;
  }

  /* P */

  .g-py-70--lg {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* P */

  .g-py-75--lg {
    padding-top: 5.3571428571rem !important;
    padding-bottom: 5.3571428571rem !important;
  }

  /* P */

  .g-py-80--lg {
    padding-top: 5.7142857143rem !important;
    padding-bottom: 5.7142857143rem !important;
  }

  /* P */

  .g-py-85--lg {
    padding-top: 6.0714285714rem !important;
    padding-bottom: 6.0714285714rem !important;
  }

  /* P */

  .g-py-90--lg {
    padding-top: 6.4285714286rem !important;
    padding-bottom: 6.4285714286rem !important;
  }

  /* P */

  .g-py-95--lg {
    padding-top: 6.7857142857rem !important;
    padding-bottom: 6.7857142857rem !important;
  }

  /* P */

  .g-py-100--lg {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  /* P */

  .g-py-105--lg {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  /* P */

  .g-py-110--lg {
    padding-top: 7.8571428571rem !important;
    padding-bottom: 7.8571428571rem !important;
  }

  /* P */

  .g-py-115--lg {
    padding-top: 8.2142857143rem !important;
    padding-bottom: 8.2142857143rem !important;
  }

  /* P */

  .g-py-120--lg {
    padding-top: 8.5714285714rem !important;
    padding-bottom: 8.5714285714rem !important;
  }

  /* P */

  .g-py-125--lg {
    padding-top: 8.9285714286rem !important;
    padding-bottom: 8.9285714286rem !important;
  }

  /* P */

  .g-py-130--lg {
    padding-top: 9.2857142857rem !important;
    padding-bottom: 9.2857142857rem !important;
  }

  /* P */

  .g-py-135--lg {
    padding-top: 9.6428571429rem !important;
    padding-bottom: 9.6428571429rem !important;
  }

  /* P */

  .g-py-140--lg {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  /* P */

  .g-py-145--lg {
    padding-top: 10.3571428571rem !important;
    padding-bottom: 10.3571428571rem !important;
  }

  /* P */

  .g-py-150--lg {
    padding-top: 10.7142857143rem !important;
    padding-bottom: 10.7142857143rem !important;
  }

  /* P */

  .g-py-155--lg {
    padding-top: 11.0714285714rem !important;
    padding-bottom: 11.0714285714rem !important;
  }

  /* P */

  .g-py-160--lg {
    padding-top: 11.4285714286rem !important;
    padding-bottom: 11.4285714286rem !important;
  }

  /* P */

  .g-py-165--lg {
    padding-top: 11.7857142857rem !important;
    padding-bottom: 11.7857142857rem !important;
  }

  /* P */

  .g-py-170--lg {
    padding-top: 12.1428571429rem !important;
    padding-bottom: 12.1428571429rem !important;
  }

  /* P */

  .g-py-175--lg {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  /* P */

  .g-py-180--lg {
    padding-top: 12.8571428571rem !important;
    padding-bottom: 12.8571428571rem !important;
  }

  /* P */

  .g-py-185--lg {
    padding-top: 13.2142857143rem !important;
    padding-bottom: 13.2142857143rem !important;
  }

  /* P */

  .g-py-190--lg {
    padding-top: 13.5714285714rem !important;
    padding-bottom: 13.5714285714rem !important;
  }

  /* P */

  .g-py-195--lg {
    padding-top: 13.9285714286rem !important;
    padding-bottom: 13.9285714286rem !important;
  }

  /* P */

  .g-py-200--lg {
    padding-top: 14.2857142857rem !important;
    padding-bottom: 14.2857142857rem !important;
  }

  /* P */

  .g-py-205--lg {
    padding-top: 14.6428571429rem !important;
    padding-bottom: 14.6428571429rem !important;
  }

  /* P */

  .g-py-210--lg {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  /* Padding Top */

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

  .g-pt-1--lg {
    padding-top: 0.0714285714rem !important;
  }

  .g-pt-2--lg {
    padding-top: 0.1428571429rem !important;
  }

  .g-pt-3--lg {
    padding-top: 0.2142857143rem !important;
  }

  .g-pt-4--lg {
    padding-top: 0.2857142857rem !important;
  }

  .g-pt-5--lg {
    padding-top: 0.3571428571rem !important;
  }

  .g-pt-6--lg {
    padding-top: 0.4285714286rem !important;
  }

  .g-pt-7--lg {
    padding-top: 0.5rem !important;
  }

  .g-pt-8--lg {
    padding-top: 0.5714285714rem !important;
  }

  .g-pt-9--lg {
    padding-top: 0.6428571429rem !important;
  }

  .g-pt-10--lg {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-11--lg {
    padding-top: 0.7857142857rem !important;
  }

  .g-pt-12--lg {
    padding-top: 0.8571428571rem !important;
  }

  .g-pt-13--lg {
    padding-top: 0.9285714286rem !important;
  }

  .g-pt-14--lg {
    padding-top: 1rem !important;
  }

  .g-pt-15--lg {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-16--lg {
    padding-top: 1.1428571429rem !important;
  }

  .g-pt-17--lg {
    padding-top: 1.2142857143rem !important;
  }

  .g-pt-18--lg {
    padding-top: 1.2857142857rem !important;
  }

  .g-pt-19--lg {
    padding-top: 1.3571428571rem !important;
  }

  .g-pt-10--lg {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-15--lg {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-20--lg {
    padding-top: 1.4285714286rem !important;
  }

  .g-pt-25--lg {
    padding-top: 1.7857142857rem !important;
  }

  .g-pt-30--lg {
    padding-top: 2.1428571429rem !important;
  }

  .g-pt-35--lg {
    padding-top: 2.5rem !important;
  }

  .g-pt-40--lg {
    padding-top: 2.8571428571rem !important;
  }

  .g-pt-45--lg {
    padding-top: 3.2142857143rem !important;
  }

  .g-pt-50--lg {
    padding-top: 3.5714285714rem !important;
  }

  .g-pt-55--lg {
    padding-top: 3.9285714286rem !important;
  }

  .g-pt-60--lg {
    padding-top: 4.2857142857rem !important;
  }

  .g-pt-65--lg {
    padding-top: 4.6428571429rem !important;
  }

  .g-pt-70--lg {
    padding-top: 5rem !important;
  }

  .g-pt-75--lg {
    padding-top: 5.3571428571rem !important;
  }

  .g-pt-80--lg {
    padding-top: 5.7142857143rem !important;
  }

  .g-pt-85--lg {
    padding-top: 6.0714285714rem !important;
  }

  .g-pt-90--lg {
    padding-top: 6.4285714286rem !important;
  }

  .g-pt-95--lg {
    padding-top: 6.7857142857rem !important;
  }

  .g-pt-100--lg {
    padding-top: 7.1428571429rem !important;
  }

  .g-pt-105--lg {
    padding-top: 7.5rem !important;
  }

  .g-pt-110--lg {
    padding-top: 7.8571428571rem !important;
  }

  .g-pt-115--lg {
    padding-top: 8.2142857143rem !important;
  }

  .g-pt-120--lg {
    padding-top: 8.5714285714rem !important;
  }

  .g-pt-125--lg {
    padding-top: 8.9285714286rem !important;
  }

  .g-pt-130--lg {
    padding-top: 9.2857142857rem !important;
  }

  .g-pt-135--lg {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-140--lg {
    padding-top: 10rem !important;
  }

  .g-pt-145--lg {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150--lg {
    padding-top: 10.7142857143rem !important;
  }

  /* Padding Right */

  .g-pr-0--lg {
    padding-right: 0px !important;
  }

  .g-pr-1--lg {
    padding-right: 0.0714285714rem !important;
  }

  .g-pr-2--lg {
    padding-right: 0.1428571429rem !important;
  }

  .g-pr-3--lg {
    padding-right: 0.2142857143rem !important;
  }

  .g-pr-4--lg {
    padding-right: 0.2857142857rem !important;
  }

  .g-pr-5--lg {
    padding-right: 0.3571428571rem !important;
  }

  .g-pr-6--lg {
    padding-right: 0.4285714286rem !important;
  }

  .g-pr-7--lg {
    padding-right: 0.5rem !important;
  }

  .g-pr-8--lg {
    padding-right: 0.5714285714rem !important;
  }

  .g-pr-9--lg {
    padding-right: 0.6428571429rem !important;
  }

  /* P */

  .g-pr-10--lg {
    padding-right: 0.7142857143rem !important;
  }

  /* P */

  .g-pr-15--lg {
    padding-right: 1.0714285714rem !important;
  }

  /* P */

  .g-pr-20--lg {
    padding-right: 1.4285714286rem !important;
  }

  /* P */

  .g-pr-25--lg {
    padding-right: 1.7857142857rem !important;
  }

  /* P */

  .g-pr-30--lg {
    padding-right: 2.1428571429rem !important;
  }

  /* P */

  .g-pr-35--lg {
    padding-right: 2.5rem !important;
  }

  /* P */

  .g-pr-40--lg {
    padding-right: 2.8571428571rem !important;
  }

  /* P */

  .g-pr-45--lg {
    padding-right: 3.2142857143rem !important;
  }

  /* P */

  .g-pr-50--lg {
    padding-right: 3.5714285714rem !important;
  }

  /* P */

  .g-pr-55--lg {
    padding-right: 3.9285714286rem !important;
  }

  /* P */

  .g-pr-60--lg {
    padding-right: 4.2857142857rem !important;
  }

  /* P */

  .g-pr-65--lg {
    padding-right: 4.6428571429rem !important;
  }

  /* P */

  .g-pr-70--lg {
    padding-right: 5rem !important;
  }

  /* P */

  .g-pr-75--lg {
    padding-right: 5.3571428571rem !important;
  }

  /* P */

  .g-pr-80--lg {
    padding-right: 5.7142857143rem !important;
  }

  /* P */

  .g-pr-85--lg {
    padding-right: 6.0714285714rem !important;
  }

  /* P */

  .g-pr-90--lg {
    padding-right: 6.4285714286rem !important;
  }

  /* P */

  .g-pr-95--lg {
    padding-right: 6.7857142857rem !important;
  }

  /* P */

  .g-pr-100--lg {
    padding-right: 7.1428571429rem !important;
  }

  /* P */

  .g-pr-105--lg {
    padding-right: 7.5rem !important;
  }

  /* P */

  .g-pr-110--lg {
    padding-right: 7.8571428571rem !important;
  }

  /* P */

  .g-pr-115--lg {
    padding-right: 8.2142857143rem !important;
  }

  /* P */

  .g-pr-120--lg {
    padding-right: 8.5714285714rem !important;
  }

  /* P */

  .g-pr-125--lg {
    padding-right: 8.9285714286rem !important;
  }

  /* P */

  .g-pr-130--lg {
    padding-right: 9.2857142857rem !important;
  }

  /* P */

  .g-pr-135--lg {
    padding-right: 9.6428571429rem !important;
  }

  /* P */

  .g-pr-140--lg {
    padding-right: 10rem !important;
  }

  /* P */

  .g-pr-145--lg {
    padding-right: 10.3571428571rem !important;
  }

  /* P */

  .g-pr-150--lg {
    padding-right: 10.7142857143rem !important;
  }

  /* P */

  .g-pr-155--lg {
    padding-right: 11.0714285714rem !important;
  }

  /* P */

  .g-pr-160--lg {
    padding-right: 11.4285714286rem !important;
  }

  /* P */

  .g-pr-165--lg {
    padding-right: 11.7857142857rem !important;
  }

  /* P */

  .g-pr-170--lg {
    padding-right: 12.1428571429rem !important;
  }

  /* Padding Bottom */

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

  .g-pb-1--lg {
    padding-bottom: 0.0714285714rem !important;
  }

  .g-pb-2--lg {
    padding-bottom: 0.1428571429rem !important;
  }

  .g-pb-3--lg {
    padding-bottom: 0.2142857143rem !important;
  }

  .g-pb-4--lg {
    padding-bottom: 0.2857142857rem !important;
  }

  .g-pb-5--lg {
    padding-bottom: 0.3571428571rem !important;
  }

  .g-pb-6--lg {
    padding-bottom: 0.4285714286rem !important;
  }

  .g-pb-7--lg {
    padding-bottom: 0.5rem !important;
  }

  .g-pb-8--lg {
    padding-bottom: 0.5714285714rem !important;
  }

  .g-pb-9--lg {
    padding-bottom: 0.6428571429rem !important;
  }

  .g-pb-10--lg {
    padding-bottom: 0.7142857143rem !important;
  }

  .g-pb-15--lg {
    padding-bottom: 1.0714285714rem !important;
  }

  .g-pb-20--lg {
    padding-bottom: 1.4285714286rem !important;
  }

  .g-pb-25--lg {
    padding-bottom: 1.7857142857rem !important;
  }

  .g-pb-30--lg {
    padding-bottom: 2.1428571429rem !important;
  }

  .g-pb-35--lg {
    padding-bottom: 2.5rem !important;
  }

  .g-pb-40--lg {
    padding-bottom: 2.8571428571rem !important;
  }

  .g-pb-45--lg {
    padding-bottom: 3.2142857143rem !important;
  }

  .g-pb-50--lg {
    padding-bottom: 3.5714285714rem !important;
  }

  .g-pb-55--lg {
    padding-bottom: 3.9285714286rem !important;
  }

  .g-pb-60--lg {
    padding-bottom: 4.2857142857rem !important;
  }

  .g-pb-65--lg {
    padding-bottom: 4.6428571429rem !important;
  }

  .g-pb-70--lg {
    padding-bottom: 5rem !important;
  }

  .g-pb-75--lg {
    padding-bottom: 5.3571428571rem !important;
  }

  .g-pb-80--lg {
    padding-bottom: 5.7142857143rem !important;
  }

  .g-pb-85--lg {
    padding-bottom: 6.0714285714rem !important;
  }

  .g-pb-90--lg {
    padding-bottom: 6.4285714286rem !important;
  }

  .g-pb-95--lg {
    padding-bottom: 6.7857142857rem !important;
  }

  .g-pb-100--lg {
    padding-bottom: 7.1428571429rem !important;
  }

  .g-pb-105--lg {
    padding-bottom: 7.5rem !important;
  }

  .g-pb-110--lg {
    padding-bottom: 7.8571428571rem !important;
  }

  .g-pb-115--lg {
    padding-bottom: 8.2142857143rem !important;
  }

  .g-pb-120--lg {
    padding-bottom: 8.5714285714rem !important;
  }

  .g-pb-125--lg {
    padding-bottom: 8.9285714286rem !important;
  }

  .g-pb-130--lg {
    padding-bottom: 9.2857142857rem !important;
  }

  .g-pb-135--lg {
    padding-bottom: 9.6428571429rem !important;
  }

  .g-pb-140--lg {
    padding-bottom: 10rem !important;
  }

  .g-pb-145--lg {
    padding-bottom: 10.3571428571rem !important;
  }

  .g-pb-150--lg {
    padding-bottom: 10.7142857143rem !important;
  }

  /* Padding Left */

  .g-pl-0--lg {
    padding-left: 0px !important;
  }

  .g-pl-1--lg {
    padding-left: 0.0714285714rem !important;
  }

  .g-pl-2--lg {
    padding-left: 0.1428571429rem !important;
  }

  .g-pl-3--lg {
    padding-left: 0.2142857143rem !important;
  }

  .g-pl-4--lg {
    padding-left: 0.2857142857rem !important;
  }

  .g-pl-5--lg {
    padding-left: 0.3571428571rem !important;
  }

  .g-pl-6--lg {
    padding-left: 0.4285714286rem !important;
  }

  .g-pl-7--lg {
    padding-left: 0.5rem !important;
  }

  .g-pl-8--lg {
    padding-left: 0.5714285714rem !important;
  }

  .g-pl-9--lg {
    padding-left: 0.6428571429rem !important;
  }

  /* P */

  .g-pl-10--lg {
    padding-left: 0.7142857143rem !important;
  }

  /* P */

  .g-pl-15--lg {
    padding-left: 1.0714285714rem !important;
  }

  /* P */

  .g-pl-20--lg {
    padding-left: 1.4285714286rem !important;
  }

  /* P */

  .g-pl-25--lg {
    padding-left: 1.7857142857rem !important;
  }

  /* P */

  .g-pl-30--lg {
    padding-left: 2.1428571429rem !important;
  }

  /* P */

  .g-pl-35--lg {
    padding-left: 2.5rem !important;
  }

  /* P */

  .g-pl-40--lg {
    padding-left: 2.8571428571rem !important;
  }

  /* P */

  .g-pl-45--lg {
    padding-left: 3.2142857143rem !important;
  }

  /* P */

  .g-pl-50--lg {
    padding-left: 3.5714285714rem !important;
  }

  /* P */

  .g-pl-55--lg {
    padding-left: 3.9285714286rem !important;
  }

  /* P */

  .g-pl-60--lg {
    padding-left: 4.2857142857rem !important;
  }

  /* P */

  .g-pl-65--lg {
    padding-left: 4.6428571429rem !important;
  }

  /* P */

  .g-pl-70--lg {
    padding-left: 5rem !important;
  }

  /* P */

  .g-pl-75--lg {
    padding-left: 5.3571428571rem !important;
  }

  /* P */

  .g-pl-80--lg {
    padding-left: 5.7142857143rem !important;
  }

  /* P */

  .g-pl-85--lg {
    padding-left: 6.0714285714rem !important;
  }

  /* P */

  .g-pl-90--lg {
    padding-left: 6.4285714286rem !important;
  }

  /* P */

  .g-pl-95--lg {
    padding-left: 6.7857142857rem !important;
  }

  /* P */

  .g-pl-100--lg {
    padding-left: 7.1428571429rem !important;
  }

  /* P */

  .g-pl-105--lg {
    padding-left: 7.5rem !important;
  }

  /* P */

  .g-pl-110--lg {
    padding-left: 7.8571428571rem !important;
  }

  /* P */

  .g-pl-115--lg {
    padding-left: 8.2142857143rem !important;
  }

  /* P */

  .g-pl-120--lg {
    padding-left: 8.5714285714rem !important;
  }

  /* P */

  .g-pl-125--lg {
    padding-left: 8.9285714286rem !important;
  }

  /* P */

  .g-pl-130--lg {
    padding-left: 9.2857142857rem !important;
  }

  /* P */

  .g-pl-135--lg {
    padding-left: 9.6428571429rem !important;
  }

  /* P */

  .g-pl-140--lg {
    padding-left: 10rem !important;
  }

  /* P */

  .g-pl-145--lg {
    padding-left: 10.3571428571rem !important;
  }

  /* P */

  .g-pl-150--lg {
    padding-left: 10.7142857143rem !important;
  }

  /* P */

  .g-pl-155--lg {
    padding-left: 11.0714285714rem !important;
  }

  /* P */

  .g-pl-160--lg {
    padding-left: 11.4285714286rem !important;
  }

  /* P */

  .g-pl-165--lg {
    padding-left: 11.7857142857rem !important;
  }

  /* P */

  .g-pl-170--lg {
    padding-left: 12.1428571429rem !important;
  }
}

/* Padding Spaces (xl) P
------------------------------------*/

@media (min-width: 1200px) {
  .g-pa-0--xl {
    padding: 0 !important;
  }

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

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

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

  .g-pr-0--xl {
    padding-right: 0 !important;
  }

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

  .g-pl-0--xl {
    padding-left: 0 !important;
  }

  /* Padding Around */

  .g-pa-2--xl {
    padding: 0.1428571429rem !important;
  }

  .g-pa-3--xl {
    padding: 0.2142857143rem !important;
  }

  .g-pa-5--xl {
    padding: 0.3571428571rem !important;
  }

  .g-pa-7--xl {
    padding: 0.5rem !important;
  }

  .g-pa-10--xl {
    padding: 0.7142857143rem !important;
  }

  .g-pa-15--xl {
    padding: 1.0714285714rem !important;
  }

  .g-pa-20--xl {
    padding: 1.4285714286rem !important;
  }

  .g-pa-25--xl {
    padding: 1.7857142857rem !important;
  }

  .g-pa-30--xl {
    padding: 2.1428571429rem !important;
  }

  .g-pa-35--xl {
    padding: 2.5rem !important;
  }

  .g-pa-40--xl {
    padding: 2.8571428571rem !important;
  }

  .g-pa-45--xl {
    padding: 3.2142857143rem !important;
  }

  .g-pa-50--xl {
    padding: 3.5714285714rem !important;
  }

  .g-pa-55--xl {
    padding: 3.9285714286rem !important;
  }

  .g-pa-60--xl {
    padding: 4.2857142857rem !important;
  }

  .g-pa-65--xl {
    padding: 4.6428571429rem !important;
  }

  .g-pa-70--xl {
    padding: 5rem !important;
  }

  .g-pa-75--xl {
    padding: 5.3571428571rem !important;
  }

  .g-pa-80--xl {
    padding: 5.7142857143rem !important;
  }

  .g-pa-85--xl {
    padding: 6.0714285714rem !important;
  }

  .g-pa-90--xl {
    padding: 6.4285714286rem !important;
  }

  .g-pa-95--xl {
    padding: 6.7857142857rem !important;
  }

  .g-pa-100--xl {
    padding: 7.1428571429rem !important;
  }

  .g-pa-105--xl {
    padding: 7.5rem !important;
  }

  .g-pa-110--xl {
    padding: 7.8571428571rem !important;
  }

  .g-pa-115--xl {
    padding: 8.2142857143rem !important;
  }

  .g-pa-120--xl {
    padding: 8.5714285714rem !important;
  }

  .g-pa-125--xl {
    padding: 8.9285714286rem !important;
  }

  .g-pa-130--xl {
    padding: 9.2857142857rem !important;
  }

  .g-pa-135--xl {
    padding: 9.6428571429rem !important;
  }

  .g-pa-140--xl {
    padding: 10rem !important;
  }

  .g-pa-145--xl {
    padding: 10.3571428571rem !important;
  }

  .g-pa-150--xl {
    padding: 10.7142857143rem !important;
  }

  /* Padding X */

  .g-px-1--xl {
    padding-left: 0.0714285714rem !important;
    padding-right: 0.0714285714rem !important;
  }

  .g-px-2--xl {
    padding-left: 0.1428571429rem !important;
    padding-right: 0.1428571429rem !important;
  }

  .g-px-3--xl {
    padding-left: 0.2142857143rem !important;
    padding-right: 0.2142857143rem !important;
  }

  .g-px-4--xl {
    padding-left: 0.2857142857rem !important;
    padding-right: 0.2857142857rem !important;
  }

  .g-px-5--xl {
    padding-left: 0.3571428571rem !important;
    padding-right: 0.3571428571rem !important;
  }

  .g-px-6--xl {
    padding-left: 0.4285714286rem !important;
    padding-right: 0.4285714286rem !important;
  }

  .g-px-7--xl {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .g-px-8--xl {
    padding-left: 0.5714285714rem !important;
    padding-right: 0.5714285714rem !important;
  }

  .g-px-9--xl {
    padding-left: 0.6428571429rem !important;
    padding-right: 0.6428571429rem !important;
  }

  .g-px-10--xl {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-11--xl {
    padding-left: 0.7857142857rem !important;
    padding-right: 0.7857142857rem !important;
  }

  .g-px-12--xl {
    padding-left: 0.8571428571rem !important;
    padding-right: 0.8571428571rem !important;
  }

  .g-px-13--xl {
    padding-left: 0.9285714286rem !important;
    padding-right: 0.9285714286rem !important;
  }

  .g-px-14--xl {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .g-px-15--xl {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-16--xl {
    padding-left: 1.1428571429rem !important;
    padding-right: 1.1428571429rem !important;
  }

  .g-px-17--xl {
    padding-left: 1.2142857143rem !important;
    padding-right: 1.2142857143rem !important;
  }

  .g-px-18--xl {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-px-19--xl {
    padding-left: 1.3571428571rem !important;
    padding-right: 1.3571428571rem !important;
  }

  .g-px-10--xl {
    padding-left: 0.7142857143rem !important;
    padding-right: 0.7142857143rem !important;
  }

  .g-px-15--xl {
    padding-left: 1.0714285714rem !important;
    padding-right: 1.0714285714rem !important;
  }

  .g-px-20--xl {
    padding-left: 1.4285714286rem !important;
    padding-right: 1.4285714286rem !important;
  }

  .g-px-25--xl {
    padding-left: 1.7857142857rem !important;
    padding-right: 1.7857142857rem !important;
  }

  .g-px-30--xl {
    padding-left: 2.1428571429rem !important;
    padding-right: 2.1428571429rem !important;
  }

  .g-px-35--xl {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .g-px-40--xl {
    padding-left: 2.8571428571rem !important;
    padding-right: 2.8571428571rem !important;
  }

  .g-px-45--xl {
    padding-left: 3.2142857143rem !important;
    padding-right: 3.2142857143rem !important;
  }

  .g-px-50--xl {
    padding-left: 3.5714285714rem !important;
    padding-right: 3.5714285714rem !important;
  }

  .g-px-55--xl {
    padding-left: 3.9285714286rem !important;
    padding-right: 3.9285714286rem !important;
  }

  .g-px-60--xl {
    padding-left: 4.2857142857rem !important;
    padding-right: 4.2857142857rem !important;
  }

  .g-px-65--xl {
    padding-left: 4.6428571429rem !important;
    padding-right: 4.6428571429rem !important;
  }

  .g-px-70--xl {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .g-px-75--xl {
    padding-left: 5.3571428571rem !important;
    padding-right: 5.3571428571rem !important;
  }

  .g-px-80--xl {
    padding-left: 5.7142857143rem !important;
    padding-right: 5.7142857143rem !important;
  }

  .g-px-85--xl {
    padding-left: 6.0714285714rem !important;
    padding-right: 6.0714285714rem !important;
  }

  .g-px-90--xl {
    padding-left: 6.4285714286rem !important;
    padding-right: 6.4285714286rem !important;
  }

  .g-px-95--xl {
    padding-left: 6.7857142857rem !important;
    padding-right: 6.7857142857rem !important;
  }

  .g-px-100--xl {
    padding-left: 7.1428571429rem !important;
    padding-right: 7.1428571429rem !important;
  }

  .g-px-105--xl {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }

  .g-px-110--xl {
    padding-left: 7.8571428571rem !important;
    padding-right: 7.8571428571rem !important;
  }

  .g-px-115--xl {
    padding-left: 8.2142857143rem !important;
    padding-right: 8.2142857143rem !important;
  }

  .g-px-120--xl {
    padding-left: 8.5714285714rem !important;
    padding-right: 8.5714285714rem !important;
  }

  .g-px-125--xl {
    padding-left: 8.9285714286rem !important;
    padding-right: 8.9285714286rem !important;
  }

  .g-px-130--xl {
    padding-left: 9.2857142857rem !important;
    padding-right: 9.2857142857rem !important;
  }

  .g-px-135--xl {
    padding-left: 9.6428571429rem !important;
    padding-right: 9.6428571429rem !important;
  }

  .g-px-140--xl {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .g-px-145--xl {
    padding-left: 10.3571428571rem !important;
    padding-right: 10.3571428571rem !important;
  }

  .g-px-150--xl {
    padding-left: 10.7142857143rem !important;
    padding-right: 10.7142857143rem !important;
  }

  /* Padding Y */

  .g-py-1--xl {
    padding-top: 0.0714285714rem !important;
    padding-bottom: 0.0714285714rem !important;
  }

  .g-py-2--xl {
    padding-top: 0.1428571429rem !important;
    padding-bottom: 0.1428571429rem !important;
  }

  .g-py-3--xl {
    padding-top: 0.2142857143rem !important;
    padding-bottom: 0.2142857143rem !important;
  }

  .g-py-4--xl {
    padding-top: 0.2857142857rem !important;
    padding-bottom: 0.2857142857rem !important;
  }

  .g-py-5--xl {
    padding-top: 0.3571428571rem !important;
    padding-bottom: 0.3571428571rem !important;
  }

  .g-py-6--xl {
    padding-top: 0.4285714286rem !important;
    padding-bottom: 0.4285714286rem !important;
  }

  .g-py-7--xl {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .g-py-8--xl {
    padding-top: 0.5714285714rem !important;
    padding-bottom: 0.5714285714rem !important;
  }

  .g-py-9--xl {
    padding-top: 0.6428571429rem !important;
    padding-bottom: 0.6428571429rem !important;
  }

  .g-py-10--xl {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  .g-py-11--xl {
    padding-top: 0.7857142857rem !important;
    padding-bottom: 0.7857142857rem !important;
  }

  .g-py-12--xl {
    padding-top: 0.8571428571rem !important;
    padding-bottom: 0.8571428571rem !important;
  }

  .g-py-13--xl {
    padding-top: 0.9285714286rem !important;
    padding-bottom: 0.9285714286rem !important;
  }

  .g-py-14--xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .g-py-15--xl {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  .g-py-16--xl {
    padding-top: 1.1428571429rem !important;
    padding-bottom: 1.1428571429rem !important;
  }

  .g-py-17--xl {
    padding-top: 1.2142857143rem !important;
    padding-bottom: 1.2142857143rem !important;
  }

  .g-py-18--xl {
    padding-top: 1.2857142857rem !important;
    padding-bottom: 1.2857142857rem !important;
  }

  .g-py-19--xl {
    padding-top: 1.3571428571rem !important;
    padding-bottom: 1.3571428571rem !important;
  }

  /* P */

  .g-py-10--xl {
    padding-top: 0.7142857143rem !important;
    padding-bottom: 0.7142857143rem !important;
  }

  /* P */

  .g-py-15--xl {
    padding-top: 1.0714285714rem !important;
    padding-bottom: 1.0714285714rem !important;
  }

  /* P */

  .g-py-20--xl {
    padding-top: 1.4285714286rem !important;
    padding-bottom: 1.4285714286rem !important;
  }

  /* P */

  .g-py-25--xl {
    padding-top: 1.7857142857rem !important;
    padding-bottom: 1.7857142857rem !important;
  }

  /* P */

  .g-py-30--xl {
    padding-top: 2.1428571429rem !important;
    padding-bottom: 2.1428571429rem !important;
  }

  /* P */

  .g-py-35--xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* P */

  .g-py-40--xl {
    padding-top: 2.8571428571rem !important;
    padding-bottom: 2.8571428571rem !important;
  }

  /* P */

  .g-py-45--xl {
    padding-top: 3.2142857143rem !important;
    padding-bottom: 3.2142857143rem !important;
  }

  /* P */

  .g-py-50--xl {
    padding-top: 3.5714285714rem !important;
    padding-bottom: 3.5714285714rem !important;
  }

  /* P */

  .g-py-55--xl {
    padding-top: 3.9285714286rem !important;
    padding-bottom: 3.9285714286rem !important;
  }

  /* P */

  .g-py-60--xl {
    padding-top: 4.2857142857rem !important;
    padding-bottom: 4.2857142857rem !important;
  }

  /* P */

  .g-py-65--xl {
    padding-top: 4.6428571429rem !important;
    padding-bottom: 4.6428571429rem !important;
  }

  /* P */

  .g-py-70--xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* P */

  .g-py-75--xl {
    padding-top: 5.3571428571rem !important;
    padding-bottom: 5.3571428571rem !important;
  }

  /* P */

  .g-py-80--xl {
    padding-top: 5.7142857143rem !important;
    padding-bottom: 5.7142857143rem !important;
  }

  /* P */

  .g-py-85--xl {
    padding-top: 6.0714285714rem !important;
    padding-bottom: 6.0714285714rem !important;
  }

  /* P */

  .g-py-90--xl {
    padding-top: 6.4285714286rem !important;
    padding-bottom: 6.4285714286rem !important;
  }

  /* P */

  .g-py-95--xl {
    padding-top: 6.7857142857rem !important;
    padding-bottom: 6.7857142857rem !important;
  }

  /* P */

  .g-py-100--xl {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  /* P */

  .g-py-105--xl {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  /* P */

  .g-py-110--xl {
    padding-top: 7.8571428571rem !important;
    padding-bottom: 7.8571428571rem !important;
  }

  /* P */

  .g-py-115--xl {
    padding-top: 8.2142857143rem !important;
    padding-bottom: 8.2142857143rem !important;
  }

  /* P */

  .g-py-120--xl {
    padding-top: 8.5714285714rem !important;
    padding-bottom: 8.5714285714rem !important;
  }

  /* P */

  .g-py-125--xl {
    padding-top: 8.9285714286rem !important;
    padding-bottom: 8.9285714286rem !important;
  }

  /* P */

  .g-py-130--xl {
    padding-top: 9.2857142857rem !important;
    padding-bottom: 9.2857142857rem !important;
  }

  /* P */

  .g-py-135--xl {
    padding-top: 9.6428571429rem !important;
    padding-bottom: 9.6428571429rem !important;
  }

  /* P */

  .g-py-140--xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  /* P */

  .g-py-145--xl {
    padding-top: 10.3571428571rem !important;
    padding-bottom: 10.3571428571rem !important;
  }

  /* P */

  .g-py-150--xl {
    padding-top: 10.7142857143rem !important;
    padding-bottom: 10.7142857143rem !important;
  }

  /* P */

  .g-py-155--xl {
    padding-top: 11.0714285714rem !important;
    padding-bottom: 11.0714285714rem !important;
  }

  /* P */

  .g-py-160--xl {
    padding-top: 11.4285714286rem !important;
    padding-bottom: 11.4285714286rem !important;
  }

  /* P */

  .g-py-165--xl {
    padding-top: 11.7857142857rem !important;
    padding-bottom: 11.7857142857rem !important;
  }

  /* P */

  .g-py-170--xl {
    padding-top: 12.1428571429rem !important;
    padding-bottom: 12.1428571429rem !important;
  }

  /* P */

  .g-py-175--xl {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  /* P */

  .g-py-180--xl {
    padding-top: 12.8571428571rem !important;
    padding-bottom: 12.8571428571rem !important;
  }

  /* P */

  .g-py-185--xl {
    padding-top: 13.2142857143rem !important;
    padding-bottom: 13.2142857143rem !important;
  }

  /* P */

  .g-py-190--xl {
    padding-top: 13.5714285714rem !important;
    padding-bottom: 13.5714285714rem !important;
  }

  /* P */

  .g-py-195--xl {
    padding-top: 13.9285714286rem !important;
    padding-bottom: 13.9285714286rem !important;
  }

  /* P */

  .g-py-200--xl {
    padding-top: 14.2857142857rem !important;
    padding-bottom: 14.2857142857rem !important;
  }

  /* P */

  .g-py-205--xl {
    padding-top: 14.6428571429rem !important;
    padding-bottom: 14.6428571429rem !important;
  }

  /* P */

  .g-py-210--xl {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  /* Padding Top */

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

  .g-pt-1--xl {
    padding-top: 0.0714285714rem !important;
  }

  .g-pt-2--xl {
    padding-top: 0.1428571429rem !important;
  }

  .g-pt-3--xl {
    padding-top: 0.2142857143rem !important;
  }

  .g-pt-4--xl {
    padding-top: 0.2857142857rem !important;
  }

  .g-pt-5--xl {
    padding-top: 0.3571428571rem !important;
  }

  .g-pt-6--xl {
    padding-top: 0.4285714286rem !important;
  }

  .g-pt-7--xl {
    padding-top: 0.5rem !important;
  }

  .g-pt-8--xl {
    padding-top: 0.5714285714rem !important;
  }

  .g-pt-9--xl {
    padding-top: 0.6428571429rem !important;
  }

  .g-pt-10--xl {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-11--xl {
    padding-top: 0.7857142857rem !important;
  }

  .g-pt-12--xl {
    padding-top: 0.8571428571rem !important;
  }

  .g-pt-13--xl {
    padding-top: 0.9285714286rem !important;
  }

  .g-pt-14--xl {
    padding-top: 1rem !important;
  }

  .g-pt-15--xl {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-16--xl {
    padding-top: 1.1428571429rem !important;
  }

  .g-pt-17--xl {
    padding-top: 1.2142857143rem !important;
  }

  .g-pt-18--xl {
    padding-top: 1.2857142857rem !important;
  }

  .g-pt-19--xl {
    padding-top: 1.3571428571rem !important;
  }

  .g-pt-10--xl {
    padding-top: 0.7142857143rem !important;
  }

  .g-pt-15--xl {
    padding-top: 1.0714285714rem !important;
  }

  .g-pt-20--xl {
    padding-top: 1.4285714286rem !important;
  }

  .g-pt-25--xl {
    padding-top: 1.7857142857rem !important;
  }

  .g-pt-30--xl {
    padding-top: 2.1428571429rem !important;
  }

  .g-pt-35--xl {
    padding-top: 2.5rem !important;
  }

  .g-pt-40--xl {
    padding-top: 2.8571428571rem !important;
  }

  .g-pt-45--xl {
    padding-top: 3.2142857143rem !important;
  }

  .g-pt-50--xl {
    padding-top: 3.5714285714rem !important;
  }

  .g-pt-55--xl {
    padding-top: 3.9285714286rem !important;
  }

  .g-pt-60--xl {
    padding-top: 4.2857142857rem !important;
  }

  .g-pt-65--xl {
    padding-top: 4.6428571429rem !important;
  }

  .g-pt-70--xl {
    padding-top: 5rem !important;
  }

  .g-pt-75--xl {
    padding-top: 5.3571428571rem !important;
  }

  .g-pt-80--xl {
    padding-top: 5.7142857143rem !important;
  }

  .g-pt-85--xl {
    padding-top: 6.0714285714rem !important;
  }

  .g-pt-90--xl {
    padding-top: 6.4285714286rem !important;
  }

  .g-pt-95--xl {
    padding-top: 6.7857142857rem !important;
  }

  .g-pt-100--xl {
    padding-top: 7.1428571429rem !important;
  }

  .g-pt-105--xl {
    padding-top: 7.5rem !important;
  }

  .g-pt-110--xl {
    padding-top: 7.8571428571rem !important;
  }

  .g-pt-115--xl {
    padding-top: 8.2142857143rem !important;
  }

  .g-pt-120--xl {
    padding-top: 8.5714285714rem !important;
  }

  .g-pt-125--xl {
    padding-top: 8.9285714286rem !important;
  }

  .g-pt-130--xl {
    padding-top: 9.2857142857rem !important;
  }

  .g-pt-135--xl {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-140--xl {
    padding-top: 10rem !important;
  }

  .g-pt-145--xl {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150--xl {
    padding-top: 10.7142857143rem !important;
  }

  /* Padding Right */

  .g-pr-0--xl {
    padding-right: 0px !important;
  }

  .g-pr-1--xl {
    padding-right: 0.0714285714rem !important;
  }

  .g-pr-2--xl {
    padding-right: 0.1428571429rem !important;
  }

  .g-pr-3--xl {
    padding-right: 0.2142857143rem !important;
  }

  .g-pr-4--xl {
    padding-right: 0.2857142857rem !important;
  }

  .g-pr-5--xl {
    padding-right: 0.3571428571rem !important;
  }

  .g-pr-6--xl {
    padding-right: 0.4285714286rem !important;
  }

  .g-pr-7--xl {
    padding-right: 0.5rem !important;
  }

  .g-pr-8--xl {
    padding-right: 0.5714285714rem !important;
  }

  .g-pr-9--xl {
    padding-right: 0.6428571429rem !important;
  }

  /* P */

  .g-pr-10--xl {
    padding-right: 0.7142857143rem !important;
  }

  /* P */

  .g-pr-15--xl {
    padding-right: 1.0714285714rem !important;
  }

  /* P */

  .g-pr-20--xl {
    padding-right: 1.4285714286rem !important;
  }

  /* P */

  .g-pr-25--xl {
    padding-right: 1.7857142857rem !important;
  }

  /* P */

  .g-pr-30--xl {
    padding-right: 2.1428571429rem !important;
  }

  /* P */

  .g-pr-35--xl {
    padding-right: 2.5rem !important;
  }

  /* P */

  .g-pr-40--xl {
    padding-right: 2.8571428571rem !important;
  }

  /* P */

  .g-pr-45--xl {
    padding-right: 3.2142857143rem !important;
  }

  /* P */

  .g-pr-50--xl {
    padding-right: 3.5714285714rem !important;
  }

  /* P */

  .g-pr-55--xl {
    padding-right: 3.9285714286rem !important;
  }

  /* P */

  .g-pr-60--xl {
    padding-right: 4.2857142857rem !important;
  }

  /* P */

  .g-pr-65--xl {
    padding-right: 4.6428571429rem !important;
  }

  /* P */

  .g-pr-70--xl {
    padding-right: 5rem !important;
  }

  /* P */

  .g-pr-75--xl {
    padding-right: 5.3571428571rem !important;
  }

  /* P */

  .g-pr-80--xl {
    padding-right: 5.7142857143rem !important;
  }

  /* P */

  .g-pr-85--xl {
    padding-right: 6.0714285714rem !important;
  }

  /* P */

  .g-pr-90--xl {
    padding-right: 6.4285714286rem !important;
  }

  /* P */

  .g-pr-95--xl {
    padding-right: 6.7857142857rem !important;
  }

  /* P */

  .g-pr-100--xl {
    padding-right: 7.1428571429rem !important;
  }

  /* P */

  .g-pr-105--xl {
    padding-right: 7.5rem !important;
  }

  /* P */

  .g-pr-110--xl {
    padding-right: 7.8571428571rem !important;
  }

  /* P */

  .g-pr-115--xl {
    padding-right: 8.2142857143rem !important;
  }

  /* P */

  .g-pr-120--xl {
    padding-right: 8.5714285714rem !important;
  }

  /* P */

  .g-pr-125--xl {
    padding-right: 8.9285714286rem !important;
  }

  /* P */

  .g-pr-130--xl {
    padding-right: 9.2857142857rem !important;
  }

  /* P */

  .g-pr-135--xl {
    padding-right: 9.6428571429rem !important;
  }

  /* P */

  .g-pr-140--xl {
    padding-right: 10rem !important;
  }

  /* P */

  .g-pr-145--xl {
    padding-right: 10.3571428571rem !important;
  }

  /* P */

  .g-pr-150--xl {
    padding-right: 10.7142857143rem !important;
  }

  /* P */

  .g-pr-155--xl {
    padding-right: 11.0714285714rem !important;
  }

  /* P */

  .g-pr-160--xl {
    padding-right: 11.4285714286rem !important;
  }

  /* P */

  .g-pr-165--xl {
    padding-right: 11.7857142857rem !important;
  }

  /* P */

  .g-pr-170--xl {
    padding-right: 12.1428571429rem !important;
  }

  /* Padding Bottom */

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

  .g-pb-1--xl {
    padding-bottom: 0.0714285714rem !important;
  }

  .g-pb-2--xl {
    padding-bottom: 0.1428571429rem !important;
  }

  .g-pb-3--xl {
    padding-bottom: 0.2142857143rem !important;
  }

  .g-pb-4--xl {
    padding-bottom: 0.2857142857rem !important;
  }

  .g-pb-5--xl {
    padding-bottom: 0.3571428571rem !important;
  }

  .g-pb-6--xl {
    padding-bottom: 0.4285714286rem !important;
  }

  .g-pb-7--xl {
    padding-bottom: 0.5rem !important;
  }

  .g-pb-8--xl {
    padding-bottom: 0.5714285714rem !important;
  }

  .g-pb-9--xl {
    padding-bottom: 0.6428571429rem !important;
  }

  .g-pb-10--xl {
    padding-bottom: 0.7142857143rem !important;
  }

  .g-pb-15--xl {
    padding-bottom: 1.0714285714rem !important;
  }

  .g-pb-20--xl {
    padding-bottom: 1.4285714286rem !important;
  }

  .g-pb-25--xl {
    padding-bottom: 1.7857142857rem !important;
  }

  .g-pb-30--xl {
    padding-bottom: 2.1428571429rem !important;
  }

  .g-pb-35--xl {
    padding-bottom: 2.5rem !important;
  }

  .g-pb-40--xl {
    padding-bottom: 2.8571428571rem !important;
  }

  .g-pb-45--xl {
    padding-bottom: 3.2142857143rem !important;
  }

  .g-pb-50--xl {
    padding-bottom: 3.5714285714rem !important;
  }

  .g-pb-55--xl {
    padding-bottom: 3.9285714286rem !important;
  }

  .g-pb-60--xl {
    padding-bottom: 4.2857142857rem !important;
  }

  .g-pb-65--xl {
    padding-bottom: 4.6428571429rem !important;
  }

  .g-pb-70--xl {
    padding-bottom: 5rem !important;
  }

  .g-pb-75--xl {
    padding-bottom: 5.3571428571rem !important;
  }

  .g-pb-80--xl {
    padding-bottom: 5.7142857143rem !important;
  }

  .g-pb-85--xl {
    padding-bottom: 6.0714285714rem !important;
  }

  .g-pb-90--xl {
    padding-bottom: 6.4285714286rem !important;
  }

  .g-pb-95--xl {
    padding-bottom: 6.7857142857rem !important;
  }

  .g-pb-100--xl {
    padding-bottom: 7.1428571429rem !important;
  }

  .g-pb-105--xl {
    padding-bottom: 7.5rem !important;
  }

  .g-pb-110--xl {
    padding-bottom: 7.8571428571rem !important;
  }

  .g-pb-115--xl {
    padding-bottom: 8.2142857143rem !important;
  }

  .g-pb-120--xl {
    padding-bottom: 8.5714285714rem !important;
  }

  .g-pb-125--xl {
    padding-bottom: 8.9285714286rem !important;
  }

  .g-pb-130--xl {
    padding-bottom: 9.2857142857rem !important;
  }

  .g-pb-135--xl {
    padding-bottom: 9.6428571429rem !important;
  }

  .g-pb-140--xl {
    padding-bottom: 10rem !important;
  }

  .g-pb-145--xl {
    padding-bottom: 10.3571428571rem !important;
  }

  .g-pb-150--xl {
    padding-bottom: 10.7142857143rem !important;
  }

  /* Padding Left */

  .g-pl-0--xl {
    padding-left: 0px !important;
  }

  .g-pl-1--xl {
    padding-left: 0.0714285714rem !important;
  }

  .g-pl-2--xl {
    padding-left: 0.1428571429rem !important;
  }

  .g-pl-3--xl {
    padding-left: 0.2142857143rem !important;
  }

  .g-pl-4--xl {
    padding-left: 0.2857142857rem !important;
  }

  .g-pl-5--xl {
    padding-left: 0.3571428571rem !important;
  }

  .g-pl-6--xl {
    padding-left: 0.4285714286rem !important;
  }

  .g-pl-7--xl {
    padding-left: 0.5rem !important;
  }

  .g-pl-8--xl {
    padding-left: 0.5714285714rem !important;
  }

  .g-pl-9--xl {
    padding-left: 0.6428571429rem !important;
  }

  /* P */

  .g-pl-10--xl {
    padding-left: 0.7142857143rem !important;
  }

  /* P */

  .g-pl-15--xl {
    padding-left: 1.0714285714rem !important;
  }

  /* P */

  .g-pl-20--xl {
    padding-left: 1.4285714286rem !important;
  }

  /* P */

  .g-pl-25--xl {
    padding-left: 1.7857142857rem !important;
  }

  /* P */

  .g-pl-30--xl {
    padding-left: 2.1428571429rem !important;
  }

  /* P */

  .g-pl-35--xl {
    padding-left: 2.5rem !important;
  }

  /* P */

  .g-pl-40--xl {
    padding-left: 2.8571428571rem !important;
  }

  /* P */

  .g-pl-45--xl {
    padding-left: 3.2142857143rem !important;
  }

  /* P */

  .g-pl-50--xl {
    padding-left: 3.5714285714rem !important;
  }

  /* P */

  .g-pl-55--xl {
    padding-left: 3.9285714286rem !important;
  }

  /* P */

  .g-pl-60--xl {
    padding-left: 4.2857142857rem !important;
  }

  /* P */

  .g-pl-65--xl {
    padding-left: 4.6428571429rem !important;
  }

  /* P */

  .g-pl-70--xl {
    padding-left: 5rem !important;
  }

  /* P */

  .g-pl-75--xl {
    padding-left: 5.3571428571rem !important;
  }

  /* P */

  .g-pl-80--xl {
    padding-left: 5.7142857143rem !important;
  }

  /* P */

  .g-pl-85--xl {
    padding-left: 6.0714285714rem !important;
  }

  /* P */

  .g-pl-90--xl {
    padding-left: 6.4285714286rem !important;
  }

  /* P */

  .g-pl-95--xl {
    padding-left: 6.7857142857rem !important;
  }

  /* P */

  .g-pl-100--xl {
    padding-left: 7.1428571429rem !important;
  }

  /* P */

  .g-pl-105--xl {
    padding-left: 7.5rem !important;
  }

  /* P */

  .g-pl-110--xl {
    padding-left: 7.8571428571rem !important;
  }

  /* P */

  .g-pl-115--xl {
    padding-left: 8.2142857143rem !important;
  }

  /* P */

  .g-pl-120--xl {
    padding-left: 8.5714285714rem !important;
  }

  /* P */

  .g-pl-125--xl {
    padding-left: 8.9285714286rem !important;
  }

  /* P */

  .g-pl-130--xl {
    padding-left: 9.2857142857rem !important;
  }

  /* P */

  .g-pl-135--xl {
    padding-left: 9.6428571429rem !important;
  }

  /* P */

  .g-pl-140--xl {
    padding-left: 10rem !important;
  }

  /* P */

  .g-pl-145--xl {
    padding-left: 10.3571428571rem !important;
  }

  /* P */

  .g-pl-150--xl {
    padding-left: 10.7142857143rem !important;
  }

  /* P */

  .g-pl-155--xl {
    padding-left: 11.0714285714rem !important;
  }

  /* P */

  .g-pl-160--xl {
    padding-left: 11.4285714286rem !important;
  }

  /* P */

  .g-pl-165--xl {
    padding-left: 11.7857142857rem !important;
  }

  /* P */

  .g-pl-170--xl {
    padding-left: 12.1428571429rem !important;
  }
}

/* Custom Paddings (xs)
------------------------------------*/

.g-pa-0-20-20 {
  padding: 0 1.4285714286rem 1.4285714286rem !important;
}

.g-pa-4-11 {
  padding: 0.2857142857rem 0.7857142857rem !important;
}

.g-pa-4-13 {
  padding: 0.2857142857rem 0.9285714286rem !important;
}

.g-pa-5-10 {
  padding: 0.3571428571rem 0.7142857143rem !important;
}

.g-pa-5-15 {
  padding: 0.3571428571rem 1.0714285714rem !important;
}

.g-pa-6-8 {
  padding: 0.4285714286rem 0.5714285714rem !important;
}

.g-pa-7-14 {
  padding: 0.5rem 1rem !important;
}

.g-pa-7-16 {
  padding: 0.5rem 1.1428571429rem !important;
}

.g-pa-10-5-5 {
  padding: 0.7142857143rem 0.3571428571rem 0.3571428571rem !important;
}

.g-pa-10-15 {
  padding: 0.7142857143rem 1.0714285714rem !important;
}

.g-pa-10-16 {
  padding: 0.7142857143rem 1.1428571429rem !important;
}

.g-pa-10-20 {
  padding: 0.7142857143rem 1.4285714286rem !important;
}

.g-pa-10-30 {
  padding: 0.7142857143rem 2.1428571429rem !important;
}

.g-pa-12 {
  padding: 0.8571428571rem !important;
}

.g-pa-12-19 {
  padding: 0.8571428571rem 1.3571428571rem !important;
}

.g-pa-12-21 {
  padding: 0.8571428571rem 1.5rem !important;
}

.g-pa-12-5-7 {
  padding: 0.8571428571rem 0.3571428571rem 0.5rem !important;
}

.g-pa-14-18 {
  padding: 1rem 1.2857142857rem !important;
}

.g-pa-15-0 {
  padding: 1.0714285714rem 0 !important;
}

.g-pa-15-5 {
  padding: 1.0714285714rem 0.3571428571rem !important;
}

.g-pa-15-20-10 {
  padding: 1.0714285714rem 1.4285714286rem 0.7142857143rem !important;
}

.g-pa-15-20 {
  padding: 1.0714285714rem 1.4285714286rem !important;
}

.g-pa-15-30 {
  padding: 1.0714285714rem 2.1428571429rem !important;
}

.g-pa-17-23 {
  padding: 1.2142857143rem 1.6428571429rem !important;
}

.g-pa-20-10 {
  padding: 1.4285714286rem 0.7142857143rem !important;
}

.g-pa-20-20-15 {
  padding: 1.4285714286rem 1.4285714286rem 1.0714285714rem !important;
}

.g-pa-20-20-20-55 {
  padding: 1.4285714286rem 1.4285714286rem 1.4285714286rem 3.9285714286rem !important;
}

.g-pa-20-30-0 {
  padding: 1.4285714286rem 2.1428571429rem 0 !important;
}

.g-pa-20-40-25 {
  padding: 1.4285714286rem 2.8571428571rem 1.7857142857rem !important;
}

.g-pa-24 {
  padding: 1.7142857143rem !important;
}

.g-pa-25-20-30 {
  padding: 1.7857142857rem 1.4285714286rem 2.1428571429rem !important;
}

.g-pa-25-30-20 {
  padding: 1.7857142857rem 2.1428571429rem 1.4285714286rem !important;
}

.g-pa-25-30 {
  padding: 1.7857142857rem 2.1428571429rem !important;
}

.g-pa-30-10 {
  padding: 2.1428571429rem 0.7142857143rem !important;
}

.g-pa-30-15 {
  padding: 2.1428571429rem 1.0714285714rem !important;
}

.g-pa-30-20 {
  padding: 2.1428571429rem 1.4285714286rem !important;
}

.g-pa-30-30-20 {
  padding: 2.1428571429rem 2.1428571429rem 1.4285714286rem !important;
}

.g-pa-40 {
  padding: 2.8571428571rem !important;
}

.g-pa-40-20 {
  padding: 2.8571428571rem 1.4285714286rem !important;
}

.g-pa-40-30-30 {
  padding: 2.8571428571rem 2.1428571429rem 2.1428571429rem !important;
}

.g-pa-50-15-0 {
  padding: 3.5714285714rem 1.0714285714rem 0 !important;
}

.g-pa-15x {
  padding: 15% !important;
}

.g-px-17 {
  padding-left: 1.2142857143rem !important;
  padding-right: 1.2142857143rem !important;
}

.g-px-18 {
  padding-left: 1.2857142857rem !important;
  /* O */
  padding-right: 1.2857142857rem !important;
}

.g-py-23 {
  padding-top: 1.6428571429rem !important;
  /* O */
  padding-bottom: 1.6428571429rem !important;
}

.g-py-235 {
  padding-top: 16.7857142857rem !important;
  /* O */
  padding-bottom: 16.7857142857rem !important;
}

.g-pl-12 {
  padding-left: 0.8571428571rem !important;
}

.g-pl-17 {
  padding-left: 1.2142857143rem !important;
}

.g-pl-7--hover:hover {
  padding-left: 0.5rem !important;
}

.g-pl-25--hover:hover {
  padding-left: 1.7857142857rem !important;
}

.active.g-pl-25--active {
  padding-left: 1.7857142857rem !important;
}

.g-pl-60--xs {
  padding-left: 4.2857142857rem !important;
}

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

.g-pt-11 {
  padding-top: 0.7857142857rem !important;
}

.g-pt-12 {
  padding-top: 0.8571428571rem !important;
}

.g-parent:hover .g-pt-25--parent-hover {
  padding-top: 1.7857142857rem !important;
}

.g-pt-130 {
  padding-top: 9.2857142857rem !important;
}

.g-pt-150 {
  padding-top: 10.7142857143rem !important;
}

.g-pt-170 {
  padding-top: 12.1428571429rem !important;
}

.g-pt-195 {
  padding-top: 13.9285714286rem !important;
}

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

.g-pb-170 {
  padding-bottom: 12.1428571429rem !important;
}

.g-pb-180 {
  padding-bottom: 12.8571428571rem !important;
}

.g-pb-200 {
  padding-bottom: 14.2857142857rem !important;
}

.g-pb-250 {
  padding-bottom: 17.8571428571rem !important;
}

.g-pb-13 {
  padding-bottom: 0.9285714286rem !important;
}

.g-pb-16 {
  padding-bottom: 1.1428571429rem !important;
}

.g-pa-9 {
  padding: 0.6428571429rem !important;
}

.g-pa-11 {
  padding: 0.7857142857rem !important;
}

.g-pa-12 {
  padding: 0.8571428571rem !important;
}

.g-pl-30--hover:hover {
  padding-left: 2.1428571429rem !important;
}

/* Custom Paddings (sm)
------------------------------------*/

@media (min-width: 576px) {
  .g-px-10x--sm {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }

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

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

  .g-py-5--sm {
    padding-top: 0.3571428571rem !important;
    padding-bottom: 0.3571428571rem !important;
  }

  .g-pa-0-10x--sm {
    padding-left: 10% !important;
    padding-right: 10% !important;
  }

  .g-pa-0-35-35--sm {
    padding: 0 2.5rem 2.5rem !important;
  }

  .g-pa-5-10--sm {
    padding: 0.3571428571rem 0.7142857143rem !important;
  }

  .g-pa-8-16--sm {
    padding: 0.5714285714rem 1.1428571429rem !important;
  }

  .g-pa-10-20--sm {
    padding: 0.7142857143rem 1.4285714286rem !important;
  }

  .g-pa-15-20-10--sm {
    padding: 1.0714285714rem 1.4285714286rem 0.7142857143rem !important;
  }

  .g-pa-20-20-0--sm {
    padding: 1.4285714286rem 1.4285714286rem 0 !important;
  }

  .g-pa-20-20-10--sm {
    padding: 1.4285714286rem 1.4285714286rem 0.7142857143rem !important;
  }

  .g-pa-20-30-0--sm {
    padding: 1.4285714286rem 2.1428571429rem 0 !important;
  }

  .g-pa-20-30--sm {
    padding: 1.4285714286rem 2.1428571429rem !important;
  }

  .g-pa-30-20--sm {
    padding: 2.1428571429rem 1.4285714286rem !important;
  }

  .g-pa-30-25-20--sm {
    padding: 2.1428571429rem 1.7857142857rem 1.4285714286rem !important;
  }

  .g-pa-30-30-20--sm {
    padding: 2.1428571429rem 2.1428571429rem 1.4285714286rem !important;
  }

  .g-pa-30-50-40--sm {
    padding: 2.1428571429rem 3.5714285714rem 2.8571428571rem !important;
  }

  .g-pa-30-80--sm {
    padding: 2.1428571429rem 5.7142857143rem !important;
  }

  .g-pa-40-30-30--sm {
    padding: 2.8571428571rem 2.1428571429rem 2.1428571429rem !important;
  }

  .g-pa-60-30--sm {
    padding: 4.2857142857rem 2.1428571429rem !important;
  }

  .g-pa-70-50-50-30--sm {
    padding: 5rem 3.5714285714rem 3.5714285714rem 2.1428571429rem !important;
  }

  .g-pa-80-40--sm {
    padding: 5.7142857143rem 2.8571428571rem !important;
  }

  .g-pa-85-0-40--sm {
    padding: 6.0714285714rem 0 2.8571428571rem !important;
  }

  .g-pa-100-30--sm {
    padding: 7.1428571429rem 2.1428571429rem !important;
  }

  .g-pa-170-0-150--sm {
    padding: 12.1428571429rem 0 10.7142857143rem !important;
  }

  .g-pl-300--sm {
    padding-left: 21.4285714286rem !important;
  }
}

/* Custom Paddings (md)
------------------------------------*/

@media (min-width: 768px) {
  .g-pa-25-30--md {
    padding: 1.7857142857rem 2.1428571429rem !important;
  }

  .g-pa-30-10--md {
    padding: 2.1428571429rem 0.7142857143rem !important;
  }

  .g-pa-30-35--md {
    padding: 2.1428571429rem 2.5rem !important;
  }

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

  .g-py-23--md {
    padding-top: 1.6428571429rem !important;
    padding-bottom: 1.6428571429rem !important;
  }

  .g-px-18--md {
    padding-left: 1.2857142857rem !important;
    padding-right: 1.2857142857rem !important;
  }

  .g-pt-135--md {
    padding-top: 9.6428571429rem !important;
  }

  .g-pt-145--md {
    padding-top: 10.3571428571rem !important;
  }

  .g-pt-150--md {
    padding-top: 10.7142857143rem !important;
  }

  .g-pt-170--md {
    padding-top: 12.1428571429rem !important;
  }

  .g-pt-175--md {
    padding-top: 12.5rem !important;
  }

  .g-pb-70--md {
    padding-bottom: 5rem !important;
  }

  .g-pb-170--md {
    padding-bottom: 12.1428571429rem !important;
  }

  .g-pb-250--md {
    padding-bottom: 17.8571428571rem !important;
  }

  .g-pl-300--md {
    padding-left: 21.4285714286rem !important;
  }
}

/* Custom Paddings (lg)
------------------------------------*/

@media (min-width: 992px) {
  .g-py-0--lg {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .g-py-100--lg {
    padding-top: 7.1428571429rem !important;
    padding-bottom: 7.1428571429rem !important;
  }

  .g-px-200--lg {
    padding-left: 14.2857142857rem !important;
    padding-right: 14.2857142857rem !important;
  }

  .g-pt-170--lg {
    padding-top: 12.1428571429rem !important;
  }

  .g-pb-200--lg {
    padding-bottom: 14.2857142857rem !important;
  }
}

/* Custom Paddings (xl)
------------------------------------*/

@media (min-width: 1200px) {
  .g-py-0--xl {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .g-px-23--xl {
    padding-left: 1.6428571429rem !important;
    padding-right: 1.6428571429rem !important;
  }
}

/*------------------------------------
  Block Hidden
------------------------------------*/

.g-hidden-xs-up {
  display: none !important;
}

@media (max-width: 575px) {
  .g-hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .g-hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .g-hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .g-hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .g-hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .g-hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .g-hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .g-hidden-xl-up {
    display: none !important;
  }
}

.g-hidden-xl-down {
  display: none !important;
}

/*------------------------------------
  Headings
------------------------------------*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
}

/* Typography */

p {
  color: var(--text);
}

/*------------------------------------
  Font Family
------------------------------------*/

.g-font-family-ptsans {
  font-family: "PT Sans", sans-serif;
}

.g-font-family-merriweather {
  font-family: "Merriweather", serif;
}

/*------------------------------------
  Colors
------------------------------------*/

.g-color-text {
  color: var(--text);
}

.g-color-secondary {
  color: var(--secondary-color);
}

.g-color-main-light-v1 {
  color: var(--heading-secondary);
}

/*------------------------------------
  Background Colors
------------------------------------*/

.g-bg-secondary {
  background-color: #f5fafa !important;
}

/*------------------------------------
  Background Colors
------------------------------------*/

.g-bg-secondary-light-v1 {
  background-color: #e0e8ec !important;
}

/*------------------------------------
  Border Colors
------------------------------------*/

.g-brd-secondary-light-v1 {
  border-color: #e0e8ec !important;
}

.g-brd-secondary-light-v1--hover:hover {
  border-color: #e0e8ec !important;
}

/*------------------------------------
  Header
------------------------------------*/

.u-header__section .nav-link {
  color: #464c5e;
}

.js-header-change-moment.u-header__section .nav-link {
  color: #464c5e;
}

.u-header__section .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active,
.u-header__section--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .open > .nav-link,
.u-header__section--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .active > .nav-link,
.u-header__section--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.open,
.u-header__section--shift.js-header-change-moment .navbar-nav:not([class*=u-main-nav-v]) .nav-link.active {
  color: #CAD105;
}

/*--------------------------------------------------
  Info Block v9-1
----------------------------------------------------*/

@media (min-width: 768px) {
  .u-info-v9-1::before {
    border-top-color: #e0e8ec;
  }
}

/*
 * Author: Digital Zoom Studio
 * Website: http://digitalzoomstudio.net/
 * Portfolio: http://codecanyon.net/user/ZoomIt/portfolio
 *
 * Version: 1.31
 *
 */

@-webkit-keyframes keyframes-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes keyframes-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

.dzsparallaxer:not(.mode-oneelement) {
  height: 300px;
  overflow: hidden;
  background-color: #1c1a17;
  position: relative;
  transition-property: height;
  transition-duration: 0.3s;
  -moz-transition-property: height;
  -moz-transition-duration: 0.3s;
  -webkit-transition-property: height;
  -webkit-transition-duration: 0.3s;
  -o-transition-property: height;
  -o-transition-duration: 0.3s;
  -ms-transition-property: height;
  -ms-transition-duration: 0.3s;
  transition-timing-function: ease-in;
}

.dzsparallaxer:not(.mode-oneelement) .dzsparallaxer--target {
  position: relative;
}

.dzsparallaxer:not(.mode-oneelement) .dzsparallaxer--target.position-absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.dzsparallaxer:not(.mode-oneelement) .dzsparallaxer--blackoverlay {
  position: absolute;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dzsparallaxer:not(.mode-oneelement) .big-text {
  position: absolute;
  text-align: center;
  width: 80%;
  left: 10%;
  font-size: 40px;
  font-weight: 300;
  top: 70px;
  color: #eee;
  line-height: 1.5;
  font-style: italic;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  opacity: 0.7;
}

.dzsparallaxer:not(.mode-oneelement) .big-text .smaller {
  font-size: 60%;
}

.dzsparallaxer:not(.mode-oneelement) > .container,
.dzsparallaxer:not(.mode-oneelement) > .row,
.dzsparallaxer:not(.mode-oneelement) > p,
.dzsparallaxer:not(.mode-oneelement) > div {
  position: relative;
}

.dzsparallaxer:not(.mode-oneelement) .center-it {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.dzsparallaxer:not(.mode-oneelement) .center-it-vertically {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  padding: 10px;
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--] {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--] .display-block {
  display: block;
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--].top {
  bottom: auto;
  top: 0;
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--].flippedY {
  transform: scaleY(-1);
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--].flippedX {
  transform: scaleX(-1);
}

.dzsparallaxer:not(.mode-oneelement) *[class^=dzsprxseparator--].flippedXY {
  transform: scale(-1, -1);
}

.dzsparallaxer.wait-readyall .dzsparallaxer--target {
  opacity: 0;
  transition-property: height, opacity;
  transition-duration: 0.5s;
  -moz-transition-property: height, opacity;
  -moz-transition-duration: 0.5s;
  -webkit-transition-property: height, opacity;
  -webkit-transition-duration: 0.5s;
  -o-transition-property: height, opacity;
  -o-transition-duration: 0.5s;
  -ms-transition-property: height, opacity;
  -ms-transition-duration: 0.5s;
  transition-timing-function: ease-in;
}

.dzsparallaxer.mode-oneelement {
  position: relative;
}

.dzsparallaxer.wait-readyall.dzsprx-readyall .dzsparallaxer--target {
  opacity: 1;
  visibility: visible;
}

.dzsparallaxer.use-loading .dzsparallaxer--target {
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.7s;
  -moz-transition-property: opacity, visibility;
  -moz-transition-duration: 0.7s;
  -webkit-transition-property: opacity, visibility;
  -webkit-transition-duration: 0.7s;
  -o-transition-property: opacity, visibility;
  -o-transition-duration: 0.7s;
  -ms-transition-property: opacity, visibility;
  -ms-transition-duration: 0.7s;
  transition-timing-function: ease-in;
}

.dzsparallaxer.use-loading .preloader-semicircles {
  transition-property: all;
  transition-duration: 0.3s;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  transition-timing-function: ease-in;
}

.dzsparallaxer.simple-parallax.use-loading .dzsparallaxer--target {
  opacity: 0;
  visibility: hidden;
}

.dzsparallaxer.height-is-based-on-content {
  height: auto;
  padding: 0 !important;
}

.dzsparallaxer.height-is-based-on-content .dzs-container {
  padding: 45px 0;
}

.dzsparallaxer.height-is-based-on-content .dzsparallaxer--target {
  position: absolute;
}

.dzsparallaxer.height-is-based-on-content > div {
  position: relative;
}

.dzsparallaxer.use-loading.loaded .dzsparallaxer--target {
  opacity: 1;
  visibility: visible;
}

.dzsparallaxer.use-loading.loaded .preloader-semicircles {
  transform: translate3d(0, -50px, 0);
  opacity: 0;
  visibility: hidden;
}

.dzsparallaxer.allbody {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.divimage {
  background-size: cover;
  background-position: center center;
}

.dzsparallaxer.is-ie-11 .simple-parallax-inner {
  clip: auto;
}

.dzsparallaxer.is-ie-11 .simple-parallax-inner .divimage.dzsparallaxer--target {
  background-attachment: fixed;
  position: relative;
}

.dzsparallaxer.simple-parallax {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dzsparallaxer.simple-parallax .simple-parallax-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, auto, auto, 0);
}

.dzsparallaxer.simple-parallax .dzsparallaxer--target {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dzsparallaxer.simple-parallax .simple-parallax-inner.is-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: auto;
}

.dzsparallaxer.simple-parallax .simple-parallax-inner.is-image > .divimage {
  position: absolute;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.dzsparallaxer.simple-parallax.simple-parallax--is-only-image .simple-parallax-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: auto;
}

.dzsparallaxer.simple-parallax.simple-parallax--is-only-image .simple-parallax-inner > .divimage {
  position: absolute;
  background-attachment: fixed;
}

.dzsparallaxer.simple-parallax.simple-parallax--is-only-image.under-500 .simple-parallax-inner > .divimage {
  background-attachment: local;
}

.blur-it {
  filter: blur(20px);
  -webkit-filter: blur(20px);
}

.dzsparallaxer div.semi-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#33000000", endColorstr="#99000000",GradientType=0 );
}

.radial-bg {
  position: absolute;
}

.color-white {
  color: #fff;
}

.row-inline {
  font-size: 0;
}

.row-inline .col-md-6 {
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  float: none;
}

.dzs-row-inline {
  font-size: 0;
}

.dzs-row-inline .dzs-col-md-6 {
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
  float: none;
}

@media (max-width: 992px) {
  .row-inline .col-md-6 {
    width: 100%;
    margin-bottom: 15px;
    padding: 0 30px 15px;
  }
}

.separator-black-grey polygon,
.separator-black-grey polyline,
.separator-black-grey path {
  fill: #222;
}

.separator-white-grey polygon,
.separator-white-grey polyline,
.separator-white-grey path {
  fill: #ddd;
}

.dzs-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
  margin: 0 auto;
}

.dzs-row {
  margin-right: -15px;
  margin-left: -15px;
}

.dzs-col-md-6 {
  width: 50%;
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@-webkit-keyframes preloader-semicircles-tween {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes preloader-semicircles-tween {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

.preloader-semicircles {
  width: 15px;
  height: 15px;
  background: rgba(230, 50, 50, 0.9);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.7;
  visibility: visible;
  pointer-events: none;
  margin-left: -15px;
  margin-right: -15px;
  animation: preloader-semicircles-tween 1.4s infinite linear;
  -webkit-animation: preloader-semicircles-tween 1.4s infinite linear;
}

body .dzsparallaxer .preloader-semicircles {
  position: absolute;
}

.preloader-semicircles:after {
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 5px solid #c83232;
  border-bottom: 5px solid #c83232;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-radius: 25px;
  content: "";
  top: -10px;
  left: -10px;
  box-sizing: content-box;
}

.center-it {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.dzs-colcontainer {
  margin-left: -15px;
  margin-right: -15px;
  box-sizing: border-box;
}

.dzs-colcontainer-w {
  width: 1230px;
  padding: 0 30px;
  max-width: 100%;
  min-height: 1px;
}

.dzs-colcontainer.row-inline {
  font-size: 0;
}

.dzs-colcontainer.row-inline *[class*=dzs-col-] {
  float: none;
  display: inline-block;
  font-size: 13px;
  vertical-align: middle;
}

.dzs-colcontainer:after {
  display: block;
  content: "";
  clear: both;
}

*[class*=dzs-col-] {
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}

.dzs-col-3 {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.dzs-col-4 {
  width: 33.3%;
  padding-left: 15px;
  padding-right: 15px;
}

.dzs-col-8 {
  width: 66.6%;
  padding-left: 15px;
  padding-right: 15px;
}

.dzs-col-6 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.dzs-col-12 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.dzsparallaxer--team-members-con {
  width: 70%;
  max-width: 1100px;
  margin: 0 auto;
}

.dzsparallaxer.under-760 .dzsparallaxer--team-members-con {
  width: 100%;
}

.dzsparallaxer--team-member-con {
  text-align: center;
}

.dzsparallaxer--team-member-con img {
  max-width: 100%;
}

.dzsparallaxer--team-member-con .team-member--title {
  color: #fff;
  text-transform: uppercase;
  margin-top: 15px;
  line-height: 1;
  font-size: 15px;
}

.dzsparallaxer--team-member-con .team-member--subtitle {
  opacity: 0.5;
  margin-top: 10px;
  line-height: 1.5;
  background-color: #FFFFFF;
  color: #111;
  padding: 5px;
}

.center-it {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.black-leg-bar {
  height: 2px;
  left: -20px;
  background-color: #222222;
  width: 40px;
}

.white-leg-bar {
  height: 2px;
  left: -20px;
  background-color: #ffffff;
  width: 40px;
}

.light-grey-box,
.lighter-grey-box,
.dark-grey-box,
.darker-grey-box,
.white-white-box {
  background-color: #ccc;
  color: #222;
  padding: 20px;
  font-size: 17px;
  line-height: 1.8;
}

.dark-grey-box {
  background-color: #444444;
  color: #ffffff;
}

.darker-grey-box {
  background-color: #333;
  color: #ffffff;
}

.lighter-grey-box {
  background-color: #dddddd;
}

.offset-left-10px {
  margin-left: -10px;
}

.offset-right-10px {
  margin-right: -10px;
}

.white-white-box {
  background-color: #ffffff;
}

.dzsparallaxer.blockquote-box {
  padding: 25px 30px 20px;
  font-size: 23px;
  font-weight: 300;
  font-style: italic;
}

.dzsparallaxer.blockquote-box p:last-child {
  margin-bottom: 0;
}

.dzsparallaxer.blockquote-box:before,
.dzsparallaxer.blockquote-box:after {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="22px" height="22px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve"> <g> <path d="M13.645,8.35c-2.256,2.016-3.384,4.068-3.384,6.156c0,2.088,0.864,3.733,2.592,4.932c-0.048,1.152-0.444,2.124-1.188,2.916 c-0.745,0.792-1.645,1.188-2.7,1.188c-2.64,0-3.96-1.439-3.96-4.319c0-1.968,0.731-4.115,2.196-6.444 c1.464-2.328,3.348-4.14,5.651-5.436L13.645,8.35z M24.085,8.35c-2.257,2.016-3.384,4.068-3.384,6.156 c0,2.088,0.864,3.733,2.592,4.932c-0.049,1.152-0.444,2.124-1.188,2.916c-0.745,0.792-1.646,1.188-2.7,1.188 c-2.641,0-3.96-1.439-3.96-4.319c0-1.968,0.73-4.115,2.195-6.444c1.464-2.328,3.349-4.14,5.652-5.436L24.085,8.35z"/> </g> </svg>');
  position: absolute;
  top: 5px;
  left: 5px;
  width: 22px;
  height: 22px;
  opacity: 0.5;
}

.dzsparallaxer.blockquote-box:after {
  content: "";
  top: auto;
  left: auto;
  right: 5px;
  bottom: 5px;
  transform: scaleX(-1);
}

/*
 * Author: Digital Zoom Studio
 * Website: http://digitalzoomstudio.net/
 * Portfolio: http://codecanyon.net/user/ZoomIt/portfolio
 *
 * Version: 5.01
 */

/*functional styling*/

.scroller-con {
  position: relative;
  width: 100%;
  height: 200px;
  opacity: 0;
  transition-property: opacity, visibility, top;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: opacity, visibility, top;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: opacity, visibility, top;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: opacity, visibility, top;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: opacity, visibility, top;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
  box-sizing: border-box;
}

.scroller-con * {
  box-sizing: border-box;
}

.scroller-con .scroller {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.scroller-con .scroller .inner {
  position: absolute !important;
}

.scroller-con .scroller .real-inner {
  position: absolute;
  top: 0;
  left: 0;
}

.scroller-con .scrollbar .scrollbary.animatetoptoo {
  transition-property: opacity, visibility, top;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: opacity, visibility, top;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: opacity, visibility, top;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: opacity, visibility, top;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: opacity, visibility, top;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.scroller-con .scroller::-webkit-scrollbar {
  display: none;
}

.scroller-con.safe {
  opacity: 1;
}

.scroller-con.type-scrollTop {
  overflow: hidden;
  height: auto;
}

.scroller-con.type-scrollTop .scrollbary_bg,
.scroller-con.type-scrollTop .scrollbary {
  position: fixed;
}

.scroller-con.dzsscr-inited {
  opacity: 1;
}

.inner.inner-for-horizontal {
  white-space: nowrap;
  width: auto;
}

.inner.inner-for-horizontal > img {
  max-width: none;
}

.scroller-con.auto-height {
  height: auto;
}

.scroller-con.auto-height .scroller {
  position: relative;
  height: auto;
}

.scroller-con.auto-height .scroller .inner {
  position: relative !important;
  display: inline-block;
}

.scroller-con.auto-height .scroller .real-inner {
  position: relative;
  top: 0;
  left: 0;
}

.scroller-con.auto-height .scroller::-webkit-scrollbar {
  display: none;
}

.scroller-con.overflow-visible .scroller {
  overflow: visible;
}

.scroller-con.overflow-x-visible .scroller {
  overflow: visible;
  overflow-y: hidden;
  overflow-x: visible;
}

.scroller-con.easing .inner {
  transition-property: left, top;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: left, top;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: left, top;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: left, top;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: left, top;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.scroller-con .scrollbar.easing > * {
  transition-property: left, top;
  transition-duration: 0.7s;
  transition-timing-function: ease-out;
  -moz-transition-property: left, top;
  -moz-transition-duration: 0.7s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: left, top;
  -webkit-transition-duration: 0.7s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: left, top;
  -o-transition-duration: 0.7s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: left, top;
  -ms-transition-duration: 0.7s;
  -ms-transition-timing-function: ease-out;
}

.scroller-con .scrollbary {
  position: absolute;
  cursor: pointer;
}

.scroller-con .scrollbary_bg {
  position: absolute;
  cursor: pointer;
}

.scroller-con .scrollbarx {
  position: absolute;
  cursor: pointer;
}

.scroller-con .scrollbarx_bg {
  position: absolute;
  cursor: pointer;
}

.scroller-con.swipe-enabled {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
  cursor: url(/openhand.cur?b06c243f534d9c5461d16528156cd5a8) 4 4, move;
}

.scroller-con.swipe-enabled.closedhand {
  cursor: url(/closedhand.cur?a8c874b93b3d848f39a71260c57e3863) 4 4, move;
}

/*estethic styling*/

/* skin_default */

.scroller-con.skin_default .scrollbarx {
  width: 60px;
  height: 7px;
  left: 0;
  bottom: -10px;
  background: #5896c6;
  border-radius: 2px;
}

.scroller-con.skin_default .scrollbarx_bg {
  height: 7px;
  left: 0;
  bottom: -10px;
  background: #eee;
  border-radius: 5px;
}

.scroller-con.skin_default .scrollbary {
  width: 10px;
  height: 60px;
  top: 0;
  right: -11px;
  background: #5896c6;
  border-radius: 2px;
}

.scroller-con.skin_default .scrollbary_bg {
  width: 10px;
  top: 0;
  right: -11px;
  background: #eee;
  border-radius: 5px;
}

.scroller-con.dir-ver .scroller {
  width: calc(100% - 16px);
}

.scroller-con.skin_apple.dir-ver .scroller {
  width: 100%;
}

/* skin_alternate */

.scroller-con.skin_alternate {
  margin-bottom: 40px;
}

.scroller-con.skin_alternate .scrollbarx {
  width: 200px;
  height: 30px;
  left: 0;
  bottom: -30px;
  background: yellow;
}

.scroller-con.skin_alternate .scrollbarx_bg {
  height: 30px;
  left: 0;
  bottom: -30px;
  background: #000;
}

.scroller-con.skin_alternate .scrollbary {
  width: 7px;
  height: 60px;
  top: 0;
  right: -10px;
  background: transparent url(/images/scroller1.png?c9a73c0607c86ced832492faab668c4c);
}

.scroller-con.skin_alternate .scrollbary_bg {
  width: 7px;
  top: 0;
  right: -10px;
  background: #eee;
}

/*Skin 3*/

.scroller-con.skin_blackwhite {
  margin-top: 30px;
}

.scroller-con.skin_blackwhite .scrollbarx {
  position: absolute;
  width: 35px;
  height: 10px;
  left: 0;
  top: -15px;
  background: url(/images/s3scrollerx.png?427a4078515701142225c622a785aba0);
  cursor: pointer;
}

.scroller-con.skin_blackwhite .scrollbarx_bg {
  position: absolute;
  height: 1px;
  left: 0;
  top: -10px;
  background: #eee;
  cursor: pointer;
}

.scroller-con.skin_blackwhite .scrollbary {
  width: 10px;
  height: 35px;
  top: 0;
  right: -15px;
  background: url(/images/s3scrollery.png?8a4237351c4ac81a188aa10259bbd9f5);
}

.scroller-con.skin_blackwhite .scrollbary_bg {
  position: absolute;
  width: 1px;
  top: 0;
  right: -10px;
  background: #fff;
  cursor: pointer;
}

/*======Skin-Progress*/

.scroller-con.skin_progress .scrollbarx {
  width: 60px;
  height: 19px;
  left: 0;
  bottom: -20px;
  background-image: url(/images/progress.png?5dd839e998a20965933034a6186fec52);
  border-radius: 15px;
}

.scroller-con.skin_progress .scrollbarx_bg {
  height: 19px;
  left: 0;
  bottom: -20px;
  background: #191d21;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_progress .scrollbary {
  width: 19px;
  height: 60px;
  top: 0;
  right: -28px;
  background-image: url(/images/progressy.png?a920f6c9f5d7ab392983093f72f6db6f);
  border-radius: 15px;
}

.scroller-con.skin_progress .scrollbary_bg {
  width: 19px;
  top: 0;
  right: -28px;
  background: #191d21;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

/*======Skin_ProgressBox*/

.scroller-con.skin_progressbox .scrollbarx {
  width: 60px;
  height: 19px;
  left: 0;
  bottom: -16px;
  background-image: url(/images/progressblue.png?772ba206b679e62292bfa8bb7b3230a9);
}

.scroller-con.skin_progressbox .scrollbarx_bg {
  height: 19px;
  left: 0;
  bottom: -16px;
  background: #191d21;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_progressbox .scrollbary {
  width: 19px;
  height: 60px;
  top: 0;
  right: -28px;
  background-image: url(/images/progressy.png?a920f6c9f5d7ab392983093f72f6db6f);
  border-radius: 15px;
}

.scroller-con.skin_progressbox .scrollbary_bg {
  width: 19px;
  top: 0;
  right: -28px;
  background: #191d21;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

/*skin slider*/

.scroller-con.skin_slider .scrollbarx {
  width: 60px;
  height: 7px;
  left: 0;
  bottom: -10px;
  background: #5896c6;
  border-radius: 2px;
}

.scroller-con.skin_slider .scrollbarx_bg {
  height: 7px;
  left: 0;
  bottom: -10px;
  background: #eee;
  border-radius: 5px;
}

.scroller-con.skin_slider .scrollbary {
  width: 30px;
  height: 30px;
  top: 0;
  right: -30px;
  background-image: url(/images/handle.png?abff5a2fceada844f2c4c4fc0aec0ca4);
  background-repeat: no-repeat;
  background-position: center center;
}

.scroller-con.skin_slider .scrollbary_bg {
  width: 7px;
  top: 0;
  right: -18px;
  background: #282a31;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_slider.scrollbars-inset .scrollbary {
  right: 0px;
}

.scroller-con.skin_slider.scrollbars-inset .scrollbary_bg {
  right: 0px;
}

.scroller-con.skin_slider.scrollbars-inset .scrollbarx {
  bottom: 0px;
}

.scroller-con.skin_slider.scrollbars-inset .scrollbarx_bg {
  bottom: 10px;
}

/*skin slider*/

.scroller-con.skin_slider .scrollbarx {
  width: 30px;
  height: 30px;
  left: 0;
  bottom: -31px;
  background-color: transparent;
  background-image: url(/images/handle.png?abff5a2fceada844f2c4c4fc0aec0ca4);
  background-repeat: no-repeat;
  background-position: center center;
}

.scroller-con.skin_slider .scrollbarx_bg {
  height: 7px;
  left: 0;
  bottom: -20px;
  background: #282a31;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_slider .scrollbary {
  width: 30px;
  height: 30px;
  top: 0;
  right: -30px;
  background-image: url(/images/handle.png?abff5a2fceada844f2c4c4fc0aec0ca4);
  background-repeat: no-repeat;
  background-position: center center;
}

.scroller-con.skin_slider .scrollbary_bg {
  width: 7px;
  top: 0;
  right: -18px;
  background: #282a31;
  border-radius: 15px;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

/*skin skin_timeline*/

.scroller-con.skin_timeline .scrollbar {
  opacity: 0;
}

.scroller-con.skin_timeline .scrollbarx {
  width: 17px;
  height: 17px;
  left: 0;
  bottom: 7px;
  background-color: transparent;
  background-image: url(/images/skin_timeline_handle.png?bb1d00f56158e144be5dd4e97c69c120);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.scroller-con.skin_timeline .scrollbarx_bg {
  height: 30px;
  left: 0;
  bottom: 0px;
  background-image: url(/images/skin_timeline_bg.png?890a535160bd1abfa5796a48c00cee2c);
  background-position: center center;
  background-repeat: repeat-x;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_timeline .scrollbary {
  width: 30px;
  height: 30px;
  top: 0;
  right: -30px;
  background-image: url(/images/handle.png?abff5a2fceada844f2c4c4fc0aec0ca4);
  background-repeat: no-repeat;
  background-position: center center;
}

.scroller-con.skin_timeline .scrollbary_bg {
  width: 7px;
  top: 0;
  right: -18px;
  background: #282a31;
  border-radius: 15px;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.scroller-con.skin_royale {
  margin-bottom: 30px;
}

.scroller-con.skin_royale .scrollbarx_bg,
.scroller-con.skin_royale .scrollbary_bg {
  background-color: #1c1a17;
  border-radius: 3px;
}

.scroller-con.skin_royale .scrollbarx,
.scroller-con.skin_royale .scrollbary {
  background-color: #363330;
  border-radius: 3px;
}

.scroller-con.skin_royale .scrollbarx_bg {
  height: 14px;
  top: auto;
  bottom: -24px;
}

.scroller-con.skin_royale .scrollbarx {
  width: 50px;
  height: 14px;
  top: auto;
  bottom: -24px;
}

.scroller-con.skin_royale .scrollbary_bg {
  width: 14px;
  left: auto;
  right: -24px;
}

.scroller-con.skin_royale .scrollbary {
  width: 14px;
  left: auto;
  right: -24px;
  height: 50px;
}

/*======skin apple*/

.scroller-con.skin_apple .scrollbarx {
  width: 90px;
  height: 8px;
  left: 0;
  bottom: -15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.scroller-con.skin_apple .scrollbarx_bg {
  height: 0px;
}

.scroller-con.skin_apple .scrollbary {
  width: 8px;
  height: 90px;
  top: 0;
  right: 0px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.scroller-con.skin_apple .scrollbary_bg {
  width: 8px;
  right: 0;
  background: rgba(255, 255, 255, 0);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.scroller-con.skin_apple .scrollbar:hover .scrollbary_bg,
.scroller-con.skin_apple .scrollbar.dragging .scrollbary_bg {
  background: rgba(255, 255, 255, 0.3);
}

.scroller-con.skin_bigblue {
  margin-bottom: 30px;
}

.scroller-con.skin_bigblue .scrollbary {
  width: 20px;
  background: #59c8ef;
  opacity: 0.2;
  border-radius: 0;
  height: 350px;
}

.scroller-con.skin_bigblue .scrollbary_bg {
  opacity: 0;
  border-radius: 0;
}

.scroller-con.skin_bigblue .scrollbarx {
  width: 350px;
  background: #59c8ef;
  opacity: 0.2;
  border-radius: 0;
  height: 20px;
  top: 100%;
  bottom: auto;
  margin-top: 5px;
}

.scroller-con.skin_bigblue .scrollbax_bg {
  opacity: 0;
  border-radius: 0;
  top: 100%;
  bottom: auto;
  margin-top: 5px;
}

.scroller-con.skin_luna {
  margin-bottom: 30px;
}

.scroller-con.skin_luna .scrollbary {
  width: 20px;
  background: #59c8ef;
  opacity: 0.2;
  border-radius: 0;
  height: 350px;
}

.scroller-con.skin_luna .scrollbary_bg {
  opacity: 0;
  border-radius: 0;
}

.scroller-con.skin_luna .scrollbarx {
  width: 100px;
  background: #fafafa;
  opacity: 1;
  border-radius: 0;
  height: 16px;
  top: 100%;
  bottom: auto;
  margin-top: 7px;
  margin-left: 2px;
}

.scroller-con.skin_luna .scrollbarx svg.arrow-left,
.scroller-con.skin_luna .scrollbarx svg.arrow-right {
  width: 5px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: 6px;
}

.scroller-con.skin_luna .scrollbarx svg.arrow-left path,
.scroller-con.skin_luna .scrollbarx svg.arrow-right path {
  fill: #555;
}

.scroller-con.skin_luna .scrollbarx svg.arrow-right {
  right: 6px;
  left: auto;
  transform: scaleX(-1);
}

.scroller-con.skin_luna .scrollbarx_bg {
  opacity: 1;
  border-radius: 0;
  background-color: rgba(50, 50, 50, 0.1);
  height: 20px;
  top: 100%;
  bottom: auto;
  margin-top: 5px;
}

.scroller-con.skin_cerc {
  margin-bottom: 30px;
}

.scroller-con.skin_cerc .scrollbary {
  width: 20px;
  background: #59c8ef;
  opacity: 0.2;
  border-radius: 0;
  height: 350px;
}

.scroller-con.skin_cerc .scrollbary_bg {
  opacity: 0;
  border-radius: 0;
}

.scroller-con.skin_cerc .scrollbarx {
  width: 22px;
  background: #444444;
  opacity: 1;
  border-radius: 50%;
  height: 22px;
  top: 100%;
  bottom: auto;
  margin-top: 7px;
  margin-left: 2px;
}

.scroller-con.skin_cerc .scrollbarx svg.arrow-left,
.scroller-con.skin_cerc .scrollbarx svg.arrow-right {
  width: 3px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 5px;
}

.scroller-con.skin_cerc .scrollbarx svg.arrow-left path,
.scroller-con.skin_cerc .scrollbarx svg.arrow-right path {
  fill: #e5c100;
}

.scroller-con.skin_cerc .scrollbarx svg.arrow-right {
  right: 5px;
  left: auto;
  transform: scaleX(-1);
}

.scroller-con.skin_cerc .scrollbarx_bg {
  opacity: 1;
  border-radius: 0;
  background-color: rgba(50, 50, 50, 0.1);
  height: 1px;
  top: 100%;
  bottom: auto;
  margin-top: 18px;
}

.scroller-con.place-scrollbar-left .scrollbary,
.scroller-con.place-scrollbar-left .scrollbary_bg {
  left: auto;
  right: 100%;
}

body.scroller-con {
  overflow: hidden !important;
  margin-top: 0 !important;
}

body.scroller-con .inner {
  width: 100%;
}

body.scroller-con.skin_blackwhite .scrollbary {
  right: 0;
}

body.scroller-con.skin_blackwhite .scrollbary_bg {
  right: 5px;
}

/*misc*/

.preloader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  background: #fff url(/images/preloader.gif?8393c5f7e394698f751ee6a11fff3dc7) center no-repeat;
}

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.advancedscroller {
  box-sizing: border-box;
}

.advancedscroller * {
  box-sizing: border-box;
}

.advancedscroller > .items {
  display: none;
}

/* -- functional styling */

.advancedscroller-con {
  position: relative;
  width: 100%;
}

.advancedscroller {
  position: relative;
  width: 100%;
  min-height: 50px;
  margin-bottom: 10px;
  /* ==== hide the images until loaded */
}

.advancedscroller .item-tobe {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
}

.advancedscroller .item-tobe .feed-description,
.advancedscroller .item .feed-description {
  display: none;
}

.advancedscroller .item .description-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
}

.advancedscroller .item .description-wrapper .description-wrapper--icon-con {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .item .description-wrapper .description-wrapper--icon-con > i {
  font-size: 18px;
  color: #FFFFFF;
  font-family: "FontAwesome", arial, serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .item .description-wrapper .description-wrapper--icon-con > i.fa-times {
  opacity: 0;
  font-size: 18px;
}

.advancedscroller .item .description-wrapper .description-wrapper--text {
  white-space: normal;
  background-color: #FFFFFF;
  padding: 30px;
  line-height: 1.8;
  position: absolute;
  right: 40px;
  bottom: 0;
  width: calc(100% - 40px);
  opacity: 0;
  visibility: hidden;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .item .description-wrapper .description-wrapper--text h4 {
  font-family: "Lato", arial, serif;
  font-size: 25px;
  color: #212121;
  margin: 7px 0 17px;
  font-weight: 900;
  line-height: 1;
}

.advancedscroller .item .description-wrapper .description-wrapper--text p {
  line-height: 1.92;
  margin-bottom: 2px;
  color: #444444;
}

.advancedscroller .item .description-wrapper:hover .description-wrapper--icon-con {
  background-color: #e74c3c;
}

.advancedscroller .item .description-wrapper.active .description-wrapper--text {
  opacity: 1;
  visibility: visible;
}

.advancedscroller .item .description-wrapper.active .description-wrapper--icon-con {
  background-color: #e74c3c;
}

.advancedscroller .item .description-wrapper.active i.fa-info {
  opacity: 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
}

.advancedscroller .item .description-wrapper.active i.fa-times {
  opacity: 1;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.advancedscroller .loaded .item {
  position: relative;
}

.advancedscroller ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.advancedscroller ul > li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.advancedscroller ul:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}

.advancedscroller .thumbsCon {
  display: block;
  overflow: hidden;
  position: relative;
  height: auto;
  transition-property: height;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: height;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: height;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: height;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: height;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .bulletsCon {
  display: block;
  position: relative;
  z-index: 4;
}

.advancedscroller .bulletsCon:after {
  display: block;
  content: " ";
  clear: both;
}

.advancedscroller .thumbsClip {
  position: relative;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transition-property: left;
  transition-duration: 0.9s;
  transition-timing-function: ease-out;
  -moz-transition-property: left;
  -moz-transition-duration: 0.9s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0.9s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: left;
  -o-transition-duration: 0.9s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: left;
  -ms-transition-duration: 0.9s;
  /* older webkit */
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.1);
  /* easeOutBack */
}

.advancedscroller .thumbsClip > * {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.advancedscroller .the-thumb-con {
  position: relative;
}

.advancedscroller .item .the-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
}

.advancedscroller .item p:empty {
  display: none;
}

.advancedscroller .item.needs-loading:not(.loaded) {
  height: 10px;
}

.advancedscroller.with-shadow {
  margin-bottom: 35px;
}

.advancedscroller.item-padding-30 .thumbsClip > .item {
  padding-left: 15px;
  padding-right: 15px;
}

.advancedscroller.with-shadow:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 33px;
  background-image: url(/images/shadow.png?16705ffbfa30361419a001799dbd9c08);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

.advancedscroller.no-need-for-nav .bulletsCon {
  display: none;
}

.advancedscroller.no-need-for-nav .arrowsCon {
  display: none;
}

.advancedscroller:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}

.advancedscroller.from-zoomfolio {
  overflow: visible;
}

.advancedscroller.from-zoomfolio .items {
  display: none;
}

img.fullwidth {
  width: 100%;
  display: block;
}

/* -- ----------- --------
--- estethic styling
*/

@-webkit-keyframes preloader-semicircles-tween {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes preloader-semicircles-tween {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

.advancedscroller .preloader,
.advancedscroller .preloader-squares1 {
  width: 128px;
  height: 40px;
  background: transparent url(/images/preloader.gif?875fa007e9db9bda821f76da099c9bae) center center no-repeat;
  margin-left: -64px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.advancedscroller .preloader-semicircles {
  width: 30px;
  height: 30px;
  background: rgba(230, 230, 230, 0.9);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-right: -15px;
  animation: preloader-semicircles-tween 1.4s infinite linear;
  -webkit-animation: preloader-semicircles-tween 1.4s infinite linear;
}

.advancedscroller .preloader-semicircles:after {
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: 10px solid rgba(200, 200, 200, 0.5);
  border-bottom: 10px solid rgba(200, 200, 200, 0.5);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-radius: 50px;
  content: "";
  top: -20px;
  left: -20px;
  box-sizing: content-box;
}

.advancedscroller .bulletsCon {
  height: 20px;
  text-align: center;
  margin: 15px auto;
  cursor: pointer;
}

.advancedscroller .thumbsClip > * {
  padding: 0px 10px;
  transition-property: border, padding, opacity, visibility;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  -moz-transition-property: border, padding, opacity, visibility;
  -moz-transition-duration: 0.5s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: border, padding, opacity, visibility;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: border, padding, opacity, visibility;
  -o-transition-duration: 0.5s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: border, padding, opacity, visibility;
  -ms-transition-duration: 0.5s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .thumbsClip > *.last-in-row {
  border-right: 1px solid rgba(0, 0, 0, 0);
}

.advancedscroller .thumbsClip > *:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0);
}

.advancedscroller .arrowsCon > .arrow-left,
.advancedscroller .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(/images/arrow-left.png?4c62ea84a1f3955a8d7706d3c200bedc);
  width: 30px;
  height: 30px;
  position: absolute;
  left: 5px;
  top: 45%;
  margin-top: -15px;
  cursor: pointer;
  opacity: 0.69;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: opacity;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: opacity;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: opacity;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .arrowsCon > .arrow-right {
  background-image: url(/images/arrow-right.png?33c94ae5cc2bc4090d9e233611b12acd);
  left: auto;
  right: 5px;
  top: 45%;
}

.advancedscroller .arrowsCon > .arrow-left:hover,
.advancedscroller .arrowsCon > .arrow-right:hover {
  opacity: 1;
}

.advancedscroller .bulletsCon span.bullet {
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: 0 0%;
  background-color: transparent;
  background-image: url(/images/bullet.png?2e722fa6fa381f3a02b209b4d6d2344c);
  display: inline-block;
  margin-right: 3px;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .bulletsCon span.bullet:hover {
  background-position: 0 100%;
}

.advancedscroller .bulletsCon span.bullet.active {
  background-position: 0 100%;
}

.advancedscroller .name {
  text-align: center;
  margin-top: 10px;
}

.advancedscroller .price {
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
}

.advancedscroller .price > span {
  display: inline-block;
}

.advancedscroller .addtocart-con {
  text-align: center;
  margin-top: 10px;
}

.advancedscroller .addtocart-con > .button-addtocart {
  margin-top: 0px;
}

.advancedscroller.transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.transition-testimonials_transition_1 .testimonial-col-name {
  position: relative;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
  transform: translate(0, 50%);
}

.advancedscroller.transition-testimonials_transition_1 .testimonial-col-quote {
  position: relative;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
  transform: translate(50%, 0);
}

.advancedscroller.transition-testimonials_transition_1 .thumbsClip > * {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.testimonial-slide-con {
  padding: 100px 30px;
}

.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem .testimonial-col-name,
.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem .testimonial-col-quote {
  transform: translate(0%, 0);
}

.advancedscroller.transition-wipeoutandfade .thumbsClip {
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: none;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: none;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: none;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: none;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
  white-space: nowrap;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
  width: 0;
  position: relative;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * .wipeout-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * .wipeout-wrapper .wipeout-wrapper-inner {
  position: relative;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * .wipeout-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * .wipeout-wrapper .wipeout-wrapper-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.advancedscroller.transition-wipeoutandfade .thumbsClip > * .wipeout-wrapper .wipeout-wrapper-inner > .vplayer {
  width: 100% !important;
  height: 100%;
}

.advancedscroller.transition-fade .thumbsClip > *.currItem,
.advancedscroller.transition-wipeoutandfade .thumbsClip > *.currItem,
.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.swipe-enabled {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
  cursor: url(/openhand.cur?b06c243f534d9c5461d16528156cd5a8) 4 4, move;
}

.advancedscroller.swipe-enabled.closedhand {
  cursor: url(/closedhand.cur?a8c874b93b3d848f39a71260c57e3863) 4 4, move;
}

.advancedscroller.swipe-enabled.closedhand .thumbsClip {
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.center-v .thumbsCon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.advancedscroller.mode-onlyoneitem .thumbsCon .thumbsClip > li {
  width: 100%;
  border-right: 0;
}

.advancedscroller.mode-onlyoneitem .vplayer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.advancedscroller.islastpage .thumbsClip > *.last-in-row {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.advancedscroller.islastpage .thumbsClip > *:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0);
}

div.button-addtocart a {
  color: #fff;
}

.button-addtocart {
  font-family: Helvetica, Arial, sans-serif;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 15px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
  padding: 4px 10px;
  text-decoration: none;
  border-radius: 3px;
  color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #ba2b00;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JhMmIwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjFhMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #ba2b00 0%, #ff1a00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ba2b00", endColorstr="#ff1a00",GradientType=0 );
  font-family: "Lucida Grande", "Lucida Sans Unicode", sans-serif;
  font-size: 9px;
}

.old-price {
  margin-right: 5px;
  color: red;
  text-decoration: line-through;
}

.advancedscroller.mode-onlyoneitem .thumbsClip.center-it {
  position: absolute;
  margin-left: -50%;
}

.advancedscroller.mode-onlyoneitem .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.mode-onlyoneitem .thumbsClip li > img {
  display: block;
}

.advancedscroller.mode-onlyoneitem .thumbsClip li > a > img {
  display: block;
}

.advancedscroller.skin-default .thumbsClip > * {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.advancedscroller.skin-white {
  margin-top: 10px;
}

.advancedscroller.skin-white a {
  color: inherit;
  text-decoration: none;
}

.advancedscroller.skin-white a:hover {
  opacity: 0.7;
}

.advancedscroller.skin-white .thumbsClip > * {
  padding: 10px;
  border-right: 0;
}

.advancedscroller.skin-white .thumbsClip > *.last-in-row {
  padding: 10px;
  border-right: 0;
}

.advancedscroller.skin-white .arrowsCon > .arrow-left,
.advancedscroller.skin-white .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(/images/arrow-left-white.png?84c2c5b1672fedc14e38816f66ee8d6e);
  width: 30px;
  height: 30px;
  position: absolute;
  left: auto;
  right: 65px;
  top: -15px;
  margin-top: -15px;
  cursor: pointer;
  opacity: 0.69;
  z-index: 4;
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.skin-white .arrowsCon > .arrow-right {
  background-image: url(/images/arrow-right-white.png?17212e10799a10680d5c21e78e783328);
  left: auto;
  right: 45px;
  top: -15px;
}

.advancedscroller.skin-white .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-white .arrowsCon > .arrow-right:hover {
  opacity: 1;
}

.advancedscroller.skin-black {
  margin-top: 10px;
}

.advancedscroller.skin-black a {
  color: inherit;
  text-decoration: none;
}

.advancedscroller.skin-black a:hover {
  opacity: 0.7;
}

.advancedscroller.skin-black .thumbsClip > * {
  padding: 10px;
  border-right: 0;
}

.advancedscroller.skin-black .thumbsClip > *.first-in-row {
  padding: 10px;
  padding-left: 0px;
  border-right: 0;
}

.advancedscroller.skin-black .thumbsClip > *.last-in-row {
  padding: 10px;
  padding-right: 0px;
  border-right: 0;
}

.advancedscroller.skin-black .arrowsCon > .arrow-left,
.advancedscroller.skin-black .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(/images/arrow-left-black-small.png?81e82b18ce1bb36f04f9a62df8a57150);
  width: 30px;
  height: 30px;
  position: absolute;
  left: auto;
  right: 20px;
  top: -15px;
  margin-top: -15px;
  cursor: pointer;
  opacity: 0.69;
  z-index: 4;
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.skin-black .arrowsCon > .arrow-right {
  background-image: url(/images/arrow-right-black-small.png?7ab06b0d96e4be95a0c3ddafec96d92f);
  left: auto;
  right: 0px;
  top: -15px;
}

.advancedscroller.skin-black .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-black .arrowsCon > .arrow-right:hover {
  opacity: 1;
}

.advancedscroller.skin-inset .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-inset .arrowsCon > .arrow-left,
.advancedscroller.skin-inset .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(/images/arrow-left-black.png?d380ab11fea49d973d8715eef48b65db);
  width: 40px;
  height: 40px;
  position: absolute;
  left: 5px;
  top: 45%;
  margin-top: -20px;
  cursor: pointer;
  opacity: 0.69;
  z-index: 4;
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.skin-inset .arrowsCon > .arrow-right {
  background-image: url(/images/arrow-right-black.png?47a3abc970b2175a6db3a73af5659c6a);
  left: auto;
  right: 5px;
  top: 45%;
}

.advancedscroller.skin-inset .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-inset .arrowsCon > .arrow-right:hover {
  opacity: 1;
}

.advancedscroller.skin-inset .transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.skin-inset .transition-fade .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.skin-karma-inset .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-karma-inset .arrowsCon > .arrow-left,
.advancedscroller.skin-karma-inset .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: none;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 4;
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.skin-karma-inset .arrowsCon > .arrow-left:before,
.advancedscroller.skin-karma-inset .arrowsCon > .arrow-right:before {
  position: absolute;
  content: "\F104";
  font-family: FontAwesome, arial;
  font-size: 34px;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.advancedscroller.skin-karma-inset .arrowsCon > .arrow-right:before {
  content: "\F105";
}

.advancedscroller.skin-karma-inset .arrowsCon > .arrow-right {
  left: auto;
  right: 0px;
  top: 50%;
}

.advancedscroller.skin-karma-inset .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-karma-inset .arrowsCon > .arrow-right:hover {
  background-color: #e74c3c;
}

.advancedscroller.skin-karma-inset .transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.skin-karma-inset .transition-fade .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.skin-regen .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-regen .arrowsCon > .arrow-left,
.advancedscroller.skin-regen .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(/images/arrow-round-left.png?0e53a50695659a2a5818cfb7e71ed6da);
  width: 50px;
  height: 50px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -25px;
  cursor: pointer;
  opacity: 0.69;
  background-size: cover;
  z-index: 4;
  transition-property: left;
  transition-duration: 0s;
  transition-timing-function: linear;
  -moz-transition-property: left;
  -moz-transition-duration: 0s;
  -moz-transition-timing-function: linear;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0s;
  -webkit-transition-timing-function: linear;
  -o-transition-property: left;
  -o-transition-duration: 0s;
  -o-transition-timing-function: linear;
  -ms-transition-property: left;
  -ms-transition-duration: 0s;
  -ms-transition-timing-function: linear;
}

.advancedscroller.skin-regen .arrowsCon > .arrow-right {
  background-image: url(/images/arrow-round-right.png?8b931a2435e5c4123435bc54c4e70ce2);
  left: auto;
  right: 15px;
  top: 50%;
}

.advancedscroller.skin-regen .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-regen .arrowsCon > .arrow-right:hover {
  opacity: 1;
}

.advancedscroller.skin-regen .bulletsCon {
  display: block;
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 10px;
}

.advancedscroller.skin-regen .bulletsCon span.bullet {
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-image: none;
  display: inline-block;
  margin-right: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-regen .bulletsCon span.bullet.active {
  background-color: rgba(0, 0, 0, 0.7);
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-left,
.advancedscroller.skin-agata .arrowsCon > .arrow-right {
  position: absolute;
  left: 5px;
  top: 45%;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-right {
  left: auto;
  right: 5px;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-left,
.advancedscroller.skin-agata .arrowsCon > .arrow-right,
.arrow-left.skin-agata,
.arrow-right.skin-agata {
  background-position: center center;
  background-repeat: no-repeat;
  background-image: none;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: 3px;
  cursor: pointer;
  background-color: #383838;
  opacity: 1;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background-color;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background-color;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-left:before,
.arrow-left.skin-agata:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #e3e3e3;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -6px;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-right:before,
.arrow-right.skin-agata:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #e3e3e3;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -6px;
}

.advancedscroller.skin-agata .arrowsCon > .arrow-left:hover,
.arrow-left.skin-agata:hover,
.advancedscroller.skin-agata .arrowsCon > .arrow-right:hover,
.arrow-right.skin-agata:hover {
  background-color: #00a99d;
}

/* -- END skin-agata */

/* -- skin-agata-inset */

.advancedscroller.skin-agata-inset .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-agata-inset > .arrowsCon > .arrow-left,
.advancedscroller.skin-agata-inset .arrowsCon > .arrow-right {
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/images/skin-agapa-arrow-left.png?d52ee790731f2edcefc2afc8fe2e2d09);
  width: 40px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 45%;
  margin-top: -30px;
  cursor: pointer;
  background-color: rgba(33, 33, 33, 0.3);
  z-index: 4;
  border-radius: 0 5px 5px 0;
  transition-property: background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background-color;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background-color;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background-color;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-agata-inset > .arrowsCon > .arrow-right {
  background-image: url(/images/skin-agapa-arrow-right.png?4a1f5486480ced783aafb7cda2060fb0);
  left: auto;
  right: 0px;
  top: 45%;
  border-radius: 5px 0 0 5px;
}

.advancedscroller.skin-agata-inset > .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-agata-inset .arrowsCon > .arrow-right:hover {
  background-color: rgba(33, 33, 33, 0.7);
}

.advancedscroller.skin-agata-inset .transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.skin-agata-inset .transition-fade .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.skin-agata-inset .bulletsCon {
  position: absolute;
  width: 100%;
  bottom: 10px;
  margin: 0;
  text-align: center;
}

.advancedscroller.skin-agata-inset .bulletsCon .bullet {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background-color: #4d4d4d;
  background-image: none;
}

.advancedscroller.skin-agata-inset .bulletsCon .bullet.active {
  background-color: #00a99d;
}

/* -- skin-avanti-inset */

.advancedscroller.skin-avanti-inset .thumbsClip > *,
.advancedscroller.skin-bubble-inset .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-avanti-inset > .arrowsCon > .arrow-left,
.advancedscroller.skin-avanti-inset .arrowsCon > .arrow-right,
.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-left,
.advancedscroller.skin-bubble-inset .arrowsCon > .arrow-right {
  background-image: none;
  left: 15px;
  top: 45%;
  margin-top: -15px;
  opacity: 1;
}

.advancedscroller.skin-avanti-inset > .arrowsCon > .arrow-right,
.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-right {
  background-image: none;
  left: auto;
  right: 15px;
  top: 45%;
  margin-top: -15px;
  width: auto;
}

.advancedscroller.skin-avanti-inset > .arrowsCon > .arrow-left path,
.advancedscroller.skin-avanti-inset .arrowsCon > .arrow-right path,
.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-left path,
.advancedscroller.skin-bubble-inset .arrowsCon > .arrow-right path {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-avanti-inset > .arrowsCon > .arrow-left:hover #Layer_1 path,
.advancedscroller.skin-avanti-inset .arrowsCon > .arrow-right:hover path,
.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-left:hover #Layer_1 path,
.advancedscroller.skin-bubble-inset .arrowsCon > .arrow-right:hover path {
  fill: #00a99d;
}

.advancedscroller.skin-avanti-inset .transition-fade .thumbsClip > *,
.advancedscroller.skin-bubble-inset .transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.skin-avanti-inset .transition-fade .thumbsClip > *.currItem,
.advancedscroller.skin-bubble-inset .transition-fade .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.skin-avanti-inset .bulletsCon,
.advancedscroller.skin-bubble-inset .bulletsCon {
  position: absolute;
  width: 100%;
  bottom: 10px;
  margin: 0;
  text-align: center;
}

.advancedscroller.skin-avanti-inset .bulletsCon .bullet,
.advancedscroller.skin-bubble-inset .bulletsCon .bullet {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background-color: #4d4d4d;
  background-image: none;
}

.advancedscroller.skin-avanti-inset .bulletsCon .bullet.active,
.advancedscroller.skin-bubble-inset .bulletsCon .bullet.active {
  background-color: #00a99d;
}

/* -- END skin-avanti-inset */

/* -- skin-qcre-inset */

.advancedscroller.skin-qcre .thumbsClip > * {
  padding: 0px;
}

.advancedscroller.skin-qcre > .arrowsCon > .arrow-left,
.advancedscroller.skin-qcre .arrowsCon > .arrow-right {
  background-image: none;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  margin-top: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  transition-property: background;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: background;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: background;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: background;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-qcre > .arrowsCon > .arrow-left:before,
.advancedscroller.skin-qcre .arrowsCon > .arrow-right:before {
  content: "\F105";
  font-family: FontAwesome, sans-sarif;
  font-size: 30px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -15px;
  margin-left: -5px;
  line-height: 1;
}

.advancedscroller.skin-qcre > .arrowsCon > .arrow-left:before {
  content: "\F104";
  margin-left: -5px;
}

.advancedscroller.skin-qcre > .arrowsCon > .arrow-left {
  background-image: none;
  left: auto;
  right: 30px;
  top: auto;
  bottom: 0;
  margin-top: 0px;
}

.advancedscroller.skin-qcre > .arrowsCon > .arrow-left:hover,
.advancedscroller.skin-qcre .arrowsCon > .arrow-right:hover {
  background-color: #e74c3c;
}

.advancedscroller.skin-qcre .transition-fade .thumbsClip > * {
  opacity: 0;
  visibility: hidden;
}

.advancedscroller.skin-qcre .transition-fade .thumbsClip > *.currItem {
  opacity: 1;
  visibility: visible;
}

.advancedscroller.skin-qcre .bulletsCon {
  position: absolute;
  width: 100%;
  bottom: 10px;
  margin: 0;
  text-align: center;
}

.advancedscroller.skin-qcre .bulletsCon .bullet {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background-color: #4d4d4d;
  background-image: none;
}

.advancedscroller.skin-qcre .bulletsCon .bullet.active {
  background-color: #00a99d;
}

/* -- END skin-qcre-inset */

.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-left,
.advancedscroller.skin-bubble-inset .arrowsCon > .arrow-right {
  background-image: none;
  left: 50%;
  margin-left: -27px;
  top: auto;
  bottom: 10px;
  margin-top: -15px;
  opacity: 1;
  width: 44px;
  height: 44px;
}

.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-right {
  background-image: none;
  left: 50%;
  margin-left: 27px;
  top: auto;
  bottom: 10px;
  margin-top: -15px;
}

.advancedscroller.skin-bubble-inset > .arrowsCon > .arrow-left:hover #Layer_1 path,
.advancedscroller.skin-bubble-inset .arrowsCon > .arrow-right:hover path {
  fill: #fff;
}

.advancedscroller.skin-giza {
  margin-bottom: 10px;
  padding-bottom: 30px;
}

.advancedscroller.skin-giza > .arrowsCon > .arrow-left,
.advancedscroller.skin-giza .arrowsCon > .arrow-right {
  background-image: none;
  left: 50%;
  margin-left: -35px;
  top: auto;
  bottom: 0px;
  margin-top: -15px;
  opacity: 1;
  width: 30px;
  height: 30px;
}

.advancedscroller.skin-giza > .arrowsCon > .arrow-right {
  background-image: none;
  left: 50%;
  margin-left: 5px;
  top: auto;
  bottom: 0px;
  margin-top: -15px;
}

.advancedscroller.skin-giza > .arrowsCon > .arrow-left circle,
.advancedscroller.skin-giza .arrowsCon > .arrow-right circle {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: all;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: all;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller.skin-giza > .arrowsCon > .arrow-left:hover #Layer_2 circle,
.advancedscroller.skin-giza .arrowsCon > .arrow-right:hover #Layer_2 circle {
  fill: #555555;
}

.advancedscroller.skin-giza > .arrowsCon > .arrow-left:hover #Layer_4 circle,
.advancedscroller.skin-giza .arrowsCon > .arrow-right:hover #Layer_4 circle {
  stroke: #555555;
}

.advancedscroller.skin-giza-bullets .bulletsCon {
  margin-top: 15px;
  text-align: center;
  height: auto;
}

.advancedscroller.skin-giza-bullets .bulletsCon span.bullet {
  width: 12px;
  height: 12px;
  background-image: none;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #d1b97e;
  margin-right: 4px;
}

.advancedscroller.skin-giza-bullets .bulletsCon > span.bullet:last-child {
  margin-right: 0;
}

.advancedscroller.skin-giza-bullets .bulletsCon span.bullet.active {
  background-color: #d1b97e;
}

.advancedscroller.skin-nonav .arrowsCon {
  display: none;
}

.advancedscroller.skin-whitefish .arrowsCon {
  display: none;
}

.advancedscroller.skin-whitefish .bulletsCon {
  position: absolute;
  width: 100%;
  bottom: 10px;
  margin: 0;
  text-align: center;
  height: auto;
  line-height: 1;
}

.advancedscroller.skin-whitefish .bulletsCon span.bullet {
  width: 8px;
  height: 8px;
  background-image: none;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-right: 4px;
}

.advancedscroller.skin-whitefish .bulletsCon > span.bullet:last-child {
  margin-right: 0;
}

.advancedscroller.skin-whitefish .bulletsCon span.bullet.active {
  background-color: #ffffff;
}

.advancedscroller.skin-whitefish.is-thicker .bulletsCon {
  bottom: 28px;
}

.advancedscroller.skin-whitefish.is-thicker .bulletsCon span.bullet {
  width: 10px;
  height: 10px;
  background-image: none;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: 4px;
}

.advancedscroller.skin-whitefish.is-thicker .bulletsCon > span.bullet:last-child {
  margin-right: 0;
}

.advancedscroller.skin-whitefish.is-thicker .bulletsCon span.bullet.active {
  background-color: #ffffff;
}

.dzsas-second-con {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 0;
}

.dzsas-second-con .dzsas-second-con--clip {
  position: relative;
  transition-property: left;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: left;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: left;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: left;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: left;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.dzsas-second-con .dzsas-second-con--clip > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  -moz-transition-property: opacity, visibility;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: opacity, visibility;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: opacity, visibility;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: opacity, visibility;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out;
}

.dzsas-second-con .dzsas-second-con--clip > *.active {
  opacity: 1;
  visibility: visible;
}

/* ====== caption styling mami

*/

.advancedscroller .caption {
  position: absolute;
}

.advancedscroller .caption.skin-underlay {
  bottom: -70%;
  left: 0;
  width: 100%;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  padding: 10px 10px;
  background: rgba(230, 230, 230, 0.9);
  color: #111;
  transition-property: bottom;
  transition-duration: 1.2s;
  transition-timing-function: ease-out;
  -moz-transition-property: bottom;
  -moz-transition-duration: 1.2s;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-property: bottom;
  -webkit-transition-duration: 1.2s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-property: bottom;
  -o-transition-duration: 1.2s;
  -o-transition-timing-function: ease-out;
  -ms-transition-property: bottom;
  -ms-transition-duration: 1.2s;
  -ms-transition-timing-function: ease-out;
}

.advancedscroller .item.currItem .caption {
  bottom: 0;
}

.advancedscroller .imagediv {
  display: block;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ====== misc

*/

.giza-circle {
  border-radius: 50%;
  border: 4px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 0 0 1px #e2e2e2;
  transition-property: background-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out-quart;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-out-quart;
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out-quart;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.3s;
  -o-transition-timing-function: ease-out-quart;
  -ms-transition-property: background-color, color;
  -ms-transition-duration: 0.3s;
  -ms-transition-timing-function: ease-out-quart;
}

.social-meta-con h4 {
  color: inherit;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
}

.social-meta-con .social-circle-con {
  float: right;
  margin-top: -4px;
}

.social-meta-con h3 {
  font-size: 30px;
  color: inherit;
  font-weight: 300;
  margin-top: 10px;
}

.nicetext {
  color: #FFFFFF;
  font-style: italic;
  font-size: 17px;
  font-family: "Lato", arial, serif;
  line-height: 1.7;
}

.social-circle-con {
  position: relative;
  display: inline-block;
  margin-right: 2px;
  width: 24px;
  height: 24px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-circle-con > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #FFFFFF;
}

.circle-con {
  border: 2px solid #FFFFFF;
  border-radius: 100%;
  width: 110px;
  height: 110px;
  position: relative;
}

.circle-con img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

#parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  overflow: hidden;
  z-index: 2;
  margin: 0;
}

#parallax li {
  position: absolute;
  top: 0;
  left: 0;
}

#parallax li.prl1 {
  background: url(/images/b1.png?07e21447d41e86f3d42821e503f1a6c0);
  width: 2200px;
  height: 800px;
}

#parallax li.prl2 {
  background: url(/images/b2.png?5e38bfe4d60802ae357e1daf4fc9f120);
  width: 2050px;
  height: 600px;
}

#parallax li.prl3 {
  background: url(/images/b3.png?45e602b68cd8aaa15a0cdfbca9df857d);
  width: 2500px;
  height: 700px;
}

#parallax li.prl4 {
  background: url(/images/b4.png?d427dbc8b2e9145524e9ad559926cab2);
  width: 1900px;
  height: 700px;
}

/* Slider */

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Slider */

.slick-loading .slick-list {
  background: #fff url("/unify/ajax-loader.gif") center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  src: url("/unify/fonts/slick.eot");
  src: url("/unify/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/unify/fonts/slick.woff") format("woff"), url("/unify/fonts/slick.ttf") format("truetype"), url("/unify/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

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

.slick-prev:before {
  content: "\2190";
}

[dir=rtl] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

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

.slick-next:before {
  content: "\2192";
}

[dir=rtl] .slick-next:before {
  content: "\2190";
}

/* Dots */

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*!
 * Cube Portfolio - Responsive jQuery Grid Plugin
 *
 * version: 4.4.0 (1 August, 2018)
 * require: jQuery v1.8+
 *
 * Copyright 2013-2018, Mihai Buricea (http://scriptpie.com/cubeportfolio/live-preview/)
 * Licensed under CodeCanyon License (http://codecanyon.net/licenses)
 *
 */

.cbp-l-filters-alignCenter .cbp-filter-counter:after,
.cbp-l-filters-alignRight .cbp-filter-counter:after,
.cbp-l-filters-button .cbp-filter-counter:after,
.cbp-l-filters-buttonCenter .cbp-filter-counter:after,
.cbp-l-filters-text .cbp-filter-counter:after,
.cbp,
.cbp *,
.cbp *:after,
.cbp:after,
.cbp-l-filters-dropdownHeader:after,
.cbp-popup-wrap,
.cbp-popup-wrap *,
.cbp-popup-wrap:before,
.cbp-popup-loadingBox:after,
.cbp-search *,
.cbp-l-direction:after {
  box-sizing: border-box;
}

.cbp-l-grid-agency-title,
.cbp-l-grid-agency-desc,
.cbp-l-grid-work-title,
.cbp-l-grid-work-desc,
.cbp-l-grid-blog-title,
.cbp-l-grid-projects-title,
.cbp-l-grid-projects-desc,
.cbp-l-grid-masonry-projects-title,
.cbp-l-grid-masonry-projects-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cbp-l-filters-alignCenter,
.cbp-l-filters-alignCenter *,
.cbp-l-filters-alignLeft,
.cbp-l-filters-alignLeft *,
.cbp-l-filters-alignRight,
.cbp-l-filters-alignRight *,
.cbp-l-filters-button,
.cbp-l-filters-button *,
.cbp-l-filters-buttonCenter,
.cbp-l-filters-buttonCenter *,
.cbp-l-filters-dropdown,
.cbp-l-filters-dropdown *,
.cbp-l-filters-list,
.cbp-l-filters-list *,
.cbp-l-filters-work,
.cbp-l-filters-work *,
.cbp-l-filters-big,
.cbp-l-filters-big *,
.cbp-l-filters-text,
.cbp-l-filters-text *,
.cbp-l-filters-underline,
.cbp-l-filters-underline *,
.cbp-l-filters-holder,
.cbp-l-filters-holder *,
.cbp-l-loadMore-bgbutton,
.cbp-l-loadMore-bgbutton *,
.cbp-l-loadMore-button,
.cbp-l-loadMore-button *,
.cbp-l-loadMore-text,
.cbp-l-loadMore-text *,
.cbp-search,
.cbp-l-dropdown,
.cbp-l-dropdown * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.cbp:after,
.cbp-lazyload:after,
.cbp-popup-loadingBox:after,
.cbp-popup-singlePageInline:after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: cbp-rotation 0.8s infinite linear;
  animation: cbp-rotation 0.8s infinite linear;
  border-left: 3px solid rgba(114, 144, 182, 0.15);
  border-right: 3px solid rgba(114, 144, 182, 0.15);
  border-bottom: 3px solid rgba(114, 144, 182, 0.15);
  border-top: 3px solid rgba(114, 144, 182, 0.8);
  border-radius: 100%;
}

.cbp-l-filters-alignCenter .cbp-filter-item:hover .cbp-filter-counter,
.cbp-l-filters-alignRight .cbp-filter-item:hover .cbp-filter-counter,
.cbp-l-filters-button .cbp-filter-item:hover .cbp-filter-counter,
.cbp-l-filters-buttonCenter .cbp-filter-item:hover .cbp-filter-counter,
.cbp-l-filters-text .cbp-filter-item:hover .cbp-filter-counter {
  opacity: 1;
  transform: translateY(-44px);
}

.cbp-l-filters-alignCenter .cbp-filter-counter,
.cbp-l-filters-alignRight .cbp-filter-counter,
.cbp-l-filters-button .cbp-filter-counter,
.cbp-l-filters-buttonCenter .cbp-filter-counter,
.cbp-l-filters-text .cbp-filter-counter {
  font: 400 11px/18px "Open Sans", sans-serif;
  border-radius: 3px;
  color: #FFFFFF;
  margin: 0 auto;
  padding: 4px 0;
  text-align: center;
  width: 34px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}

.cbp-l-filters-alignCenter .cbp-filter-counter:after,
.cbp-l-filters-alignRight .cbp-filter-counter:after,
.cbp-l-filters-button .cbp-filter-counter:after,
.cbp-l-filters-buttonCenter .cbp-filter-counter:after,
.cbp-l-filters-text .cbp-filter-counter:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

/*  ---------------------------------------------------------------
    Default style for plugin. Please change them carefully!
    --------------------------------------------------------------- */

.cbp-item {
  display: inline-block;
  margin: 0 10px 20px 0;
}

.cbp {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  height: 400px;
}

.cbp > * {
  visibility: hidden;
}

.cbp .cbp-item {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.cbp img {
  display: block;
  border: 0;
  width: 100%;
  height: auto;
}

.cbp a,
.cbp a:hover,
.cbp a:active {
  text-decoration: none;
  outline: 0;
}

.cbp-lazyload {
  position: relative;
  background: #fff;
  display: block;
}

.cbp-lazyload img {
  opacity: 1;
}

.cbp-lazyload img[data-cbp-src] {
  opacity: 0;
}

.cbp-lazyload img:not([data-cbp-src]) {
  transition: opacity 0.7s ease-in-out;
}

.cbp-lazyload:after {
  z-index: 0;
}

.cbp-wrapper-outer {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.cbp-wrapper-outer,
.cbp-wrapper,
.cbp-wrapper-helper {
  list-style-type: none;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cbp-wrapper,
.cbp-wrapper-helper {
  margin: 0;
}

.cbp-ready > * {
  visibility: visible;
}

.cbp-ready:after {
  display: none;
  visibility: hidden;
}

.cbp-ready .cbp-item {
  position: absolute;
  top: 0;
  left: 0;
}

.cbp-ready .cbp-wrapper,
.cbp-ready .cbp-wrapper-helper {
  position: absolute;
  top: 0;
  left: 0;
}

.cbp-item-off {
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
}

.cbp-item-on2off {
  z-index: 0;
}

.cbp-item-off2on {
  z-index: 1;
}

.cbp-item-on2on {
  z-index: 2;
}

.cbp-item-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.cbp-l-project-related-wrap img,
.cbp-l-inline img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.cbp-updateItems {
  transition: height 0.5s ease-in-out !important;
  will-change: height;
}

.cbp-updateItems .cbp-item {
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}

.cbp-updateItems .cbp-item-loading {
  -webkit-animation: fadeIn 0.5s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
  transition: none;
}

.cbp-removeItem {
  -webkit-animation: fadeOut 0.5s ease-in-out;
  animation: fadeOut 0.5s ease-in-out;
}

/*  END - Default style for plugin. Please change them carefully! */

.cbp-panel {
  width: 94%;
  max-width: 1170px;
  margin: 0 auto;
}

.cbp-misc-video {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  text-align: center;
}

.cbp-misc-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes cbp-rotation {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes cbp-rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
}

.cbp-l-filters-left {
  float: left;
}

.cbp-l-filters-right {
  float: right;
}

.cbp-l-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-left,
  .cbp-l-filters-right {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .cbp-l-center {
    flex-direction: column;
  }
}

/* general caption style */

.cbp-caption,
.cbp-caption-defaultWrap,
.cbp-caption-activeWrap {
  display: block;
}

.cbp-caption-activeWrap {
  background-color: #282727;
}

.cbp-caption-active .cbp-caption,
.cbp-caption-active .cbp-caption-defaultWrap,
.cbp-caption-active .cbp-caption-activeWrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cbp-caption-active .cbp-caption-defaultWrap {
  top: 0;
}

.cbp-caption-active .cbp-caption-activeWrap {
  width: 100%;
  position: absolute;
  z-index: 2;
  height: 100%;
}

/*  ---------------------------------------------------------------
    caption miscellaneous style
    --------------------------------------------------------------- */

.cbp-l-caption-title {
  color: #fff;
  font: 400 16px/21px "Open Sans", sans-serif;
}

.cbp-l-caption-desc {
  color: #aaa;
  font: 400 12px/16px "Open Sans", sans-serif;
}

.cbp-l-caption-text {
  font: 400 14px/21px "Open Sans", sans-serif;
  color: #fff;
  letter-spacing: 3px;
  padding: 0 6px;
}

.cbp-l-caption-buttonLeft,
.cbp-l-caption-buttonRight {
  background-color: #547EB1;
  color: #FFFFFF;
  display: inline-block;
  font: 400 12px/30px "Open Sans", sans-serif;
  min-width: 90px;
  text-align: center;
  margin: 4px;
  padding: 0 6px;
}

.cbp-l-caption-buttonLeft:hover,
.cbp-l-caption-buttonRight:hover {
  opacity: 0.9;
}

/*  END - caption miscellaneous style */

/*  ---------------------------------------------------------------
    none caption
    --------------------------------------------------------------- */

.cbp-caption-none .cbp-caption-activeWrap {
  display: none;
}

/*  END - none caption */

/*  ---------------------------------------------------------------
    caption layout align left
    --------------------------------------------------------------- */

.cbp-l-caption-alignLeft .cbp-l-caption-body {
  padding: 12px 30px;
}

.cbp-caption-fadeIn .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-minimal .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-moveRight .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-overlayRightAlong .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-pushDown .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-pushTop .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-revealBottom .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-revealLeft .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-revealTop .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-zoom .cbp-l-caption-alignLeft .cbp-l-caption-body,
.cbp-caption-opacity .cbp-l-caption-alignLeft .cbp-l-caption-body {
  padding-top: 30px;
}

/*  END - caption layout left */

/*  ---------------------------------------------------------------
    caption layout center vertically and horizontally
    --------------------------------------------------------------- */

.cbp-l-caption-alignCenter {
  display: table;
  width: 100%;
  height: 100%;
}

.cbp-l-caption-alignCenter .cbp-l-caption-body {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 15px 0;
}

.cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  position: relative;
  transition: transform 0.25s;
}

.cbp-caption-overlayBottom .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption-overlayBottomPush .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft {
  transform: translateX(-20px);
}

.cbp-caption-overlayBottom .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight,
.cbp-caption-overlayBottomPush .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight,
.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  transform: translateX(20px);
}

.cbp-caption:hover .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption:hover .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  transform: translateX(0);
}

/*  END - caption layout center vertically and horizontally */

@media only screen and (max-width: 480px) {
  .cbp-l-caption-alignLeft .cbp-l-caption-body {
    padding: 9px 11px;
  }

  .cbp-l-caption-title {
    font-size: 14px;
    line-height: 21px;
  }

  .cbp-l-caption-desc {
    font-size: 11px;
    line-height: 14px;
  }

  .cbp-l-caption-buttonLeft,
  .cbp-l-caption-buttonRight {
    font-size: 11px;
    line-height: 28px;
    min-width: 69px;
    margin: 3px;
    padding: 0 4px;
  }

  .cbp-l-caption-text {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 374px) {
  .cbp-l-caption-alignLeft .cbp-l-caption-body {
    padding: 8px 10px;
  }

  .cbp-l-caption-title {
    font-size: 13px;
    line-height: 20px;
  }

  .cbp-l-caption-desc {
    font-size: 11px;
    line-height: 14px;
  }

  .cbp-l-caption-buttonLeft,
  .cbp-l-caption-buttonRight {
    font-size: 10px;
    line-height: 28px;
    min-width: 62px;
    margin: 1px;
    padding: 0 4px;
  }
}

.cbp-caption-fadeIn .cbp-caption-activeWrap {
  opacity: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
  transition: opacity 0.5s;
}

.cbp-caption-fadeIn .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1;
}

.cbp-caption-minimal .cbp-l-caption-title,
.cbp-caption-minimal .cbp-l-caption-desc {
  position: relative;
  left: 0;
  opacity: 0;
  transition: transform 0.35s ease-out;
}

.cbp-caption-minimal .cbp-l-caption-title {
  transform: translateY(-50%);
}

.cbp-caption-minimal .cbp-l-caption-desc {
  transform: translateY(70%);
}

.cbp-caption-minimal .cbp-caption:hover .cbp-l-caption-title,
.cbp-caption-minimal .cbp-caption:hover .cbp-l-caption-desc {
  opacity: 1;
  transform: translateY(0);
}

.cbp-caption-minimal .cbp-caption-activeWrap {
  top: 0;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

.cbp-caption-minimal .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1;
}

.cbp-caption-moveRight .cbp-caption-activeWrap {
  left: -100%;
  top: 0;
  transition: transform 0.35s;
}

.cbp-caption-moveRight .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateX(100%);
}

.cbp-caption-overlayBottom .cbp-caption-activeWrap {
  height: 60px;
  background-color: #181616;
  background-color: rgba(24, 22, 22, 0.7);
  transition: transform 0.25s;
}

.cbp-caption-overlayBottom .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateY(-100%);
}

.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonLeft,
.cbp-caption-overlayBottomAlong .cbp-l-caption-alignCenter .cbp-l-caption-buttonRight {
  transition-duration: 0.35s;
}

.cbp-caption-overlayBottomAlong .cbp-caption-defaultWrap,
.cbp-caption-overlayBottomAlong .cbp-caption-activeWrap {
  transition: transform 0.35s;
}

.cbp-caption-overlayBottomAlong .cbp-caption-activeWrap {
  height: auto;
}

.cbp-caption-overlayBottomAlong .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(-34px);
}

.cbp-caption-overlayBottomAlong .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateY(-100%);
}

.cbp-caption-overlayBottomPush .cbp-caption-defaultWrap,
.cbp-caption-overlayBottomPush .cbp-caption-activeWrap {
  transition: transform 0.25s;
}

.cbp-caption-overlayBottomPush .cbp-caption-activeWrap {
  height: 69px;
  transform: translateY(0);
}

.cbp-caption-overlayBottomPush .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(-68px);
}

.cbp-caption-overlayBottomPush .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateY(-69px);
}

.cbp-caption-overlayBottomReveal .cbp-caption-defaultWrap {
  z-index: 2;
  transition: transform 0.25s;
}

.cbp-caption-overlayBottomReveal .cbp-caption-activeWrap {
  bottom: 0;
  z-index: 1;
  height: auto;
}

.cbp-caption-overlayBottomReveal .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(-68px);
}

.cbp-caption-overlayRightAlong .cbp-caption-defaultWrap,
.cbp-caption-overlayRightAlong .cbp-caption-activeWrap {
  transition: transform 0.4s;
}

.cbp-caption-overlayRightAlong .cbp-caption-activeWrap {
  top: 0;
  left: -50%;
  width: 50%;
}

.cbp-caption-overlayRightAlong .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateX(25%);
}

.cbp-caption-overlayRightAlong .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateX(100%);
}

.cbp-caption-pushDown .cbp-caption-defaultWrap,
.cbp-caption-pushDown .cbp-caption-activeWrap {
  transition: transform 0.4s;
}

.cbp-caption-pushDown .cbp-caption-activeWrap {
  top: -100%;
}

.cbp-caption-pushDown .cbp-caption:hover .cbp-caption-defaultWrap,
.cbp-caption-pushDown .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateY(100%);
}

.cbp-caption-pushTop .cbp-caption-activeWrap,
.cbp-caption-pushTop .cbp-caption-defaultWrap {
  transition: transform 0.4s;
}

.cbp-caption-pushTop .cbp-caption-activeWrap {
  height: 102%;
}

.cbp-caption-pushTop .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(-100%);
}

.cbp-caption-pushTop .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateY(-99%);
}

.cbp-caption-revealBottom .cbp-caption-defaultWrap {
  z-index: 2;
  transition: transform 0.4s;
}

.cbp-caption-revealBottom .cbp-caption-activeWrap {
  top: 0;
  z-index: 1;
}

.cbp-caption-revealBottom .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(-100%);
}

.cbp-caption-revealLeft .cbp-caption-activeWrap {
  left: 100%;
  top: 0;
  transition: transform 0.4s;
}

.cbp-caption-revealLeft .cbp-caption:hover .cbp-caption-activeWrap {
  transform: translateX(-100%);
}

.cbp-caption-revealTop .cbp-caption-defaultWrap {
  z-index: 2;
  transition: transform 0.4s;
}

.cbp-caption-revealTop .cbp-caption-activeWrap {
  top: 0;
  z-index: 1;
}

.cbp-caption-revealTop .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: translateY(100%);
}

.cbp-caption-zoom .cbp-caption-defaultWrap {
  transition: transform 0.35s ease-out;
}

.cbp-caption-zoom .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: scale(1.25);
}

.cbp-caption-zoom .cbp-caption-activeWrap {
  opacity: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 0.4s;
}

.cbp-caption-zoom .cbp-caption:hover .cbp-caption-activeWrap {
  opacity: 1;
}

.cbp-caption-opacity .cbp-item {
  padding: 1px;
}

.cbp-caption-opacity .cbp-caption,
.cbp-caption-opacity .cbp-caption-activeWrap,
.cbp-caption-opacity .cbp-caption-defaultWrap {
  background-color: transparent;
}

.cbp-caption-opacity .cbp-caption {
  border: 1px solid transparent;
}

.cbp-caption-opacity .cbp-caption:hover {
  border-color: #EDEDED;
}

.cbp-caption-opacity .cbp-caption-defaultWrap {
  opacity: 1;
  transition: opacity 0.4s;
}

.cbp-caption-opacity .cbp-caption:hover .cbp-caption-defaultWrap {
  opacity: 0.8;
}

.cbp-caption-opacity .cbp-caption:hover .cbp-caption-activeWrap {
  top: 0;
}

.cbp-caption-expand .cbp-caption {
  border-bottom: 1px dotted #eaeaea;
}

.cbp-caption-expand .cbp-caption-activeWrap {
  height: auto;
  background-color: transparent;
}

.cbp-caption-expand .cbp-caption-defaultWrap {
  cursor: pointer;
  font: 500 15px/23px "Roboto", sans-serif;
  color: #474747;
  padding: 12px 0 11px 26px;
}

.cbp-caption-expand .cbp-caption-defaultWrap svg {
  position: absolute;
  top: 16px;
  left: 0;
}

.cbp-caption-expand .cbp-l-caption-body {
  font: 400 13px/21px "Roboto", sans-serif;
  color: #888;
  padding: 0 0 20px 26px;
}

.cbp-caption-expand-active {
  transition: height 0.4s !important;
}

.cbp-caption-expand-active .cbp-item {
  transition: left 0.4s, top 0.4s !important;
}

.cbp-caption-expand-open .cbp-caption-activeWrap {
  transition: height 0.4s;
}

.cbp-l-filters-alignCenter {
  margin-bottom: 30px;
  text-align: center;
  font: 400 12px/21px sans-serif;
  color: #DADADA;
}

.cbp-l-filters-alignCenter .cbp-filter-item {
  color: #949494;
  cursor: pointer;
  font: 400 13px/21px "Open Sans", sans-serif;
  padding: 0 12px;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.cbp-l-filters-alignCenter .cbp-filter-item:hover {
  color: #2D2C2C;
}

.cbp-l-filters-alignCenter .cbp-filter-item:hover .cbp-filter-counter {
  transform: translateY(-30px);
}

.cbp-l-filters-alignCenter .cbp-filter-item.cbp-filter-item-active {
  color: #2D2C2C;
  cursor: default;
}

.cbp-l-filters-alignCenter .cbp-filter-counter {
  background-color: #626161;
}

.cbp-l-filters-alignCenter .cbp-filter-counter:after {
  border-top: 4px solid #626161;
}

.cbp-l-filters-alignLeft {
  margin-bottom: 30px;
}

.cbp-l-filters-alignLeft .cbp-filter-item {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  cursor: pointer;
  font: 400 12px/30px "Open Sans", sans-serif;
  padding: 0 13px;
  position: relative;
  overflow: visible;
  margin: 0 4px 10px 4px;
  display: inline-block;
  color: #888888;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.cbp-l-filters-alignLeft .cbp-filter-item:hover {
  color: #111;
}

.cbp-l-filters-alignLeft .cbp-filter-item.cbp-filter-item-active {
  background-color: #6C7A89;
  border: 1px solid #6C7A89;
  color: #fff;
  cursor: default;
}

.cbp-l-filters-alignLeft .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-alignLeft .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-alignLeft .cbp-filter-counter {
  display: inline;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-alignLeft {
    text-align: center;
  }
}

.cbp-l-filters-alignRight {
  margin-bottom: 30px;
  text-align: right;
}

.cbp-l-filters-alignRight .cbp-filter-item {
  background-color: transparent;
  color: #8B8B8B;
  cursor: pointer;
  font: 400 11px/31px "Open Sans", sans-serif;
  padding: 0 14px;
  position: relative;
  overflow: visible;
  margin: 0 3px 10px 3px;
  border: 1px solid #E4E2E2;
  text-transform: uppercase;
  display: inline-block;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.cbp-l-filters-alignRight .cbp-filter-item:hover {
  color: #2B3444;
}

.cbp-l-filters-alignRight .cbp-filter-item.cbp-filter-item-active {
  color: #FFFFFF;
  background-color: #049372;
  border-color: #049372;
  cursor: default;
}

.cbp-l-filters-alignRight .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-alignRight .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-alignRight .cbp-filter-counter {
  background-color: #049372;
}

.cbp-l-filters-alignRight .cbp-filter-counter:after {
  border-top: 4px solid #049372;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-alignRight {
    text-align: center;
  }
}

.cbp-l-filters-button {
  margin-bottom: 30px;
}

.cbp-l-filters-button .cbp-filter-item {
  background-color: #FFFFFF;
  border: 1px solid #ECECEC;
  color: #888888;
  cursor: pointer;
  font: 400 12px/32px "Open Sans", sans-serif;
  margin: 0 5px 10px 5px;
  overflow: visible;
  padding: 0 17px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.cbp-l-filters-button .cbp-filter-item:hover {
  color: #545454;
  border-color: #DADADA;
}

.cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active {
  background-color: #545454;
  color: #fff;
  border-color: #5d5d5d;
  cursor: default;
}

.cbp-l-filters-button .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-button .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-button .cbp-filter-counter {
  background-color: #545454;
}

.cbp-l-filters-button .cbp-filter-counter:after {
  border-top: 4px solid #545454;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-button {
    text-align: center;
  }
}

.cbp-l-filters-buttonCenter {
  margin-bottom: 30px;
  text-align: center;
}

.cbp-l-filters-buttonCenter .cbp-filter-item {
  background-color: #FFFFFF;
  border: 1px solid #ECECEC;
  color: #888888;
  cursor: pointer;
  font: 400 12px/32px "Roboto", sans-serif;
  margin: 0 5px 10px 5px;
  overflow: visible;
  padding: 0 17px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.cbp-l-filters-buttonCenter .cbp-filter-item:hover {
  color: #5d5d5d;
}

.cbp-l-filters-buttonCenter .cbp-filter-item.cbp-filter-item-active {
  color: #3B9CB3;
  border-color: #8CD2E5;
  cursor: default;
}

.cbp-l-filters-buttonCenter .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-buttonCenter .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-buttonCenter .cbp-filter-counter {
  background-color: #68ABBC;
}

.cbp-l-filters-buttonCenter .cbp-filter-counter:after {
  border-top: 4px solid #68ABBC;
}

.cbp-l-filters-dropdown {
  margin-bottom: 40px;
  height: 38px;
  position: relative;
  z-index: 5;
}

.cbp-l-filters-dropdownWrap {
  width: 200px;
  position: absolute;
  right: 0;
  background: #4d4c4d;
}

.cbp-l-filters-dropdownHeader {
  font: 400 12px/38px "Open Sans", sans-serif;
  margin: 0 17px;
  color: #FFF;
  cursor: default;
  position: relative;
}

.cbp-l-filters-dropdownHeader:after {
  border-color: #FFFFFF rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  margin-top: -1px;
}

.cbp-l-filters-dropdownWrap.cbp-l-filters-dropdownWrap-open .cbp-l-filters-dropdownHeader:after {
  border-width: 0 5px 5px;
}

.cbp-l-filters-dropdownList {
  display: none;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

.cbp-l-filters-dropdownList > li {
  margin: 0;
  list-style: none;
}

.cbp-l-filters-dropdownWrap.cbp-l-filters-dropdownWrap-open .cbp-l-filters-dropdownList {
  display: block;
  margin: 0;
}

.cbp-l-filters-dropdownList .cbp-filter-item {
  background: transparent;
  color: #b3b3b3;
  width: 100%;
  text-align: left;
  font: 400 12px/40px "Open Sans", sans-serif;
  margin: 0;
  padding: 0 17px;
  cursor: pointer;
  border: none;
  border-top: 1px solid #595959;
}

.cbp-l-filters-dropdownList .cbp-filter-item:hover {
  color: #e6e6e6;
}

.cbp-l-filters-dropdownList .cbp-filter-item-active {
  color: #fff;
  cursor: default;
}

.cbp-l-filters-dropdownWrap .cbp-filter-counter {
  display: inline;
}

.cbp-l-filters-dropdown-floated {
  float: right;
  margin-top: -2px;
  margin-left: 20px;
  width: 200px;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-dropdown-floated {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .cbp-l-filters-dropdownWrap {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

.cbp-l-filters-list {
  margin-bottom: 30px;
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cbp-l-filters-list .cbp-filter-item {
  background-color: transparent;
  color: #585252;
  cursor: pointer;
  font: 400 12px/35px "Open Sans", sans-serif;
  padding: 0 18px;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  float: left;
  border: 1px solid #3288C4;
  border-right-width: 0;
  transition: left 0.3s ease-in-out;
}

.cbp-l-filters-list .cbp-filter-item:hover {
  color: #000;
}

.cbp-l-filters-list .cbp-filter-item.cbp-filter-item-active {
  cursor: default;
  color: #FFFFFF;
  background-color: #3288C4;
}

.cbp-l-filters-list-first {
  border-radius: 6px 0 0 6px;
}

.cbp-l-filters-list-last {
  border-radius: 0 6px 6px 0;
  border-right-width: 1px !important;
}

.cbp-l-filters-list .cbp-filter-counter {
  display: inline;
}

@media only screen and (max-width: 600px) {
  .cbp-l-filters-list .cbp-filter-item {
    margin-right: 5px;
    border-radius: 6px;
    border-right-width: 1px;
  }
}

.cbp-l-filters-work {
  margin-bottom: 30px;
  text-align: center;
}

.cbp-l-filters-work .cbp-filter-item {
  background-color: #FFFFFF;
  color: #888;
  cursor: pointer;
  font: 600 11px/37px "Open Sans", sans-serif;
  margin: 0 3px 15px 3px;
  overflow: visible;
  padding: 0 16px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.cbp-l-filters-work .cbp-filter-item:hover {
  color: #fff;
  background: #607D8B;
}

.cbp-l-filters-work .cbp-filter-item.cbp-filter-item-active {
  background-color: #607D8B;
  color: #fff;
  cursor: default;
}

.cbp-l-filters-work .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-work .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-work .cbp-filter-counter {
  font: 600 11px/37px "Open Sans", sans-serif;
  text-align: center;
  display: inline-block;
  margin-left: 8px;
}

.cbp-l-filters-work .cbp-filter-counter:before {
  content: "(";
}

.cbp-l-filters-work .cbp-filter-counter:after {
  content: ")";
}

.cbp-l-filters-big {
  margin-bottom: 30px;
  text-align: center;
}

.cbp-l-filters-big .cbp-filter-item {
  color: #444;
  cursor: pointer;
  font: 400 15px/22px "Roboto", sans-serif;
  margin: 0 8px 10px 8px;
  padding: 10px 23px;
  position: relative;
  display: inline-block;
  border: 1px solid transparent;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.cbp-l-filters-big .cbp-filter-item:hover {
  color: #888;
}

.cbp-l-filters-big .cbp-filter-item.cbp-filter-item-active {
  border-color: #d5d5d5;
  color: #444;
  cursor: default;
}

.cbp-l-filters-big .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-big .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-text {
  margin-bottom: 30px;
  text-align: center;
  font: 400 12px/36px "Lato", sans-serif;
  color: #DADADA;
  padding: 0 15px;
}

.cbp-l-filters-text .cbp-filter-item {
  color: #949494;
  cursor: pointer;
  font: 400 13px/21px "Lato", sans-serif;
  padding: 0 12px;
  position: relative;
  overflow: visible;
  margin: 0 0 10px;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}

.cbp-l-filters-text .cbp-filter-item:hover {
  color: #2D2C2C;
}

.cbp-l-filters-text .cbp-filter-item:hover .cbp-filter-counter {
  transform: translateY(-30px);
}

.cbp-l-filters-text .cbp-filter-item.cbp-filter-item-active {
  color: #2D2C2C;
  cursor: default;
}

.cbp-l-filters-text .cbp-filter-counter {
  background-color: #626161;
  font: 400 11px/18px "Lato", sans-serif;
}

.cbp-l-filters-text .cbp-filter-counter:after {
  border-top: 4px solid #626161;
}

.cbp-l-filters-text-sort {
  display: inline-block;
  font: 400 13px/21px "Lato", sans-serif;
  color: #949494;
  margin-right: 15px;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-text-sort {
    display: block;
    margin-bottom: 10px;
  }
}

.cbp-l-filters-underline {
  margin-bottom: 30px;
}

.cbp-l-filters-underline .cbp-filter-item {
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font: 600 14px/21px "Open Sans", sans-serif;
  padding: 8px 10px;
  position: relative;
  overflow: visible;
  margin: 0 10px 10px 10px;
  display: inline-block;
  color: #787878;
  transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.cbp-l-filters-underline .cbp-filter-item:hover {
  color: #111;
}

.cbp-l-filters-underline .cbp-filter-item.cbp-filter-item-active {
  border-bottom-color: #666;
  color: #444;
  cursor: default;
}

.cbp-l-filters-underline .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-underline .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-underline .cbp-filter-counter {
  display: inline;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-underline {
    text-align: center;
  }
}

.cbp-l-filters-holder {
  text-align: center;
}

.cbp-l-filters-holder .cbp-filter-item {
  cursor: pointer;
  font: 600 16px/21px "Open Sans", sans-serif;
  padding: 8px 10px;
  position: relative;
  overflow: visible;
  margin: 0 10px 10px 10px;
  display: inline-block;
  color: #555;
  transition: color 0.25s ease-in-out;
  letter-spacing: 0.3px;
}

.cbp-l-filters-holder .cbp-filter-item:hover {
  color: #d8b345;
}

.cbp-l-filters-holder .cbp-filter-item.cbp-filter-item-active {
  color: #d8b345;
  cursor: default;
}

.cbp-l-filters-holder .cbp-filter-item:first-child {
  margin-left: 0;
}

.cbp-l-filters-holder .cbp-filter-item:last-child {
  margin-right: 0;
}

.cbp-l-filters-holder .cbp-filter-counter {
  display: inline;
}

@media only screen and (max-width: 480px) {
  .cbp-l-filters-holder {
    text-align: center;
  }
}

.cbp-l-subfilters {
  display: none;
  opacity: 0;
  margin-bottom: 40px;
  text-align: center;
}

.cbp-l-subfilters .cbp-filter-item {
  position: relative;
  font: 13px "Open Sans", sans-serif;
  display: inline-block;
  color: #9e9e9e;
  margin: 0 15px;
  cursor: pointer;
  margin: 0 10px 10px 10px;
  letter-spacing: 0.3px;
}

.cbp-l-subfilters .cbp-filter-item:hover {
  color: #555;
}

.cbp-l-subfilters .cbp-filter-item:after {
  content: "";
  background-color: #dfb947;
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  transition: width 0.3s;
}

.cbp-l-subfilters .cbp-filter-item-active {
  color: #555;
}

.cbp-l-subfilters .cbp-filter-item-active:after {
  width: 100%;
}

.cbp-l-subfilters--active {
  display: block;
  -webkit-animation: fadeIn 0.5s ease both;
  animation: fadeIn 0.5s ease both;
}

.cbp-animation-quicksand {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-quicksand .cbp-item {
  transition: transform 0.6s ease-in-out;
}

.cbp-animation-quicksand .cbp-item {
  perspective: 1000px;
}

.cbp-animation-quicksand .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-quicksand .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: quicksand-off 0.6s ease-out both;
  animation: quicksand-off 0.6s ease-out both;
}

.cbp-animation-quicksand .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: quicksand-on 0.6s ease-out both;
  animation: quicksand-on 0.6s ease-out both;
}

/* in */

@-webkit-keyframes quicksand-off {
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
  }
}

@keyframes quicksand-off {
  100% {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
}

/* out */

@-webkit-keyframes quicksand-on {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0);
  }
}

@keyframes quicksand-on {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
}

.cbp-animation-fadeOut,
.cbp-animation-boxShadow {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-fadeOut .cbp-item,
.cbp-animation-boxShadow .cbp-item {
  transition: transform 0.6s ease-in-out;
}

.cbp-animation-fadeOut .cbp-item,
.cbp-animation-boxShadow .cbp-item {
  perspective: 1000px;
}

.cbp-animation-fadeOut .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-fadeOut .cbp-item-on2off .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: fadeOut-off 0.6s ease-in-out both;
  animation: fadeOut-off 0.6s ease-in-out both;
}

.cbp-animation-fadeOut .cbp-item-off2on .cbp-item-wrapper,
.cbp-animation-boxShadow .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: fadeOut-on 0.6s ease-in-out both;
  animation: fadeOut-on 0.6s ease-in-out both;
}

/* in */

@-webkit-keyframes fadeOut-off {
  0% {
    opacity: 1;
  }

  80%, 100% {
    opacity: 0;
  }
}

@keyframes fadeOut-off {
  0% {
    opacity: 1;
  }

  80%, 100% {
    opacity: 0;
  }
}

/* out */

@-webkit-keyframes fadeOut-on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut-on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cbp-animation-flipOut {
  transition: height 0.7s ease-in-out;
  will-change: height;
}

.cbp-animation-flipOut .cbp-item {
  transition: transform 0.7s ease-in-out;
}

.cbp-animation-flipOut .cbp-item {
  perspective: 1000px;
}

.cbp-animation-flipOut .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-flipOut .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: flipOut-out 0.7s both ease-in;
  animation: flipOut-out 0.7s both ease-in;
}

.cbp-animation-flipOut .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: flipOut-in 0.7s ease-out both;
  animation: flipOut-in 0.7s ease-out both;
}

/* out */

@-webkit-keyframes flipOut-out {
  50%, 100% {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}

@keyframes flipOut-out {
  50%, 100% {
    transform: translateZ(-1000px) rotateY(-90deg);
    opacity: 0.2;
  }
}

/* in */

@-webkit-keyframes flipOut-in {
  0%, 50% {
    -webkit-transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}

@keyframes flipOut-in {
  0%, 50% {
    transform: translateZ(-1000px) rotateY(90deg);
    opacity: 0.2;
  }
}

.cbp-animation-flipBottom {
  transition: height 0.7s ease-in-out;
  will-change: height;
}

.cbp-animation-flipBottom .cbp-item {
  transition: transform 0.7s ease-in-out;
}

.cbp-animation-flipBottom .cbp-item {
  perspective: 1000px;
}

.cbp-animation-flipBottom .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-flipBottom .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: flipBottom-out 0.7s both ease-in;
  animation: flipBottom-out 0.7s both ease-in;
}

.cbp-animation-flipBottom .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: flipBottom-in 0.7s ease-out both;
  animation: flipBottom-in 0.7s ease-out both;
}

/* out */

@-webkit-keyframes flipBottom-out {
  50%, 100% {
    -webkit-transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}

@keyframes flipBottom-out {
  50%, 100% {
    transform: translateZ(-1000px) rotateX(-90deg);
    opacity: 0.2;
  }
}

/* in */

@-webkit-keyframes flipBottom-in {
  0%, 50% {
    -webkit-transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}

@keyframes flipBottom-in {
  0%, 50% {
    transform: translateZ(-1000px) rotateX(90deg);
    opacity: 0.2;
  }
}

.cbp-animation-scaleSides {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-scaleSides .cbp-item {
  transition: transform 0.6s ease-in-out;
}

.cbp-animation-scaleSides .cbp-item {
  perspective: 1000px;
}

.cbp-animation-scaleSides .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-scaleSides .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: scaleSides-out 0.9s both;
  animation: scaleSides-out 0.9s both;
}

.cbp-animation-scaleSides .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: scaleSides-in 0.9s both;
  animation: scaleSides-in 0.9s both;
}

/* out */

@-webkit-keyframes scaleSides-out {
  50%, 100% {
    -webkit-transform: scale(0.6);
    opacity: 0;
  }
}

@keyframes scaleSides-out {
  50%, 100% {
    transform: scale(0.6);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes scaleSides-in {
  0%, 50% {
    -webkit-transform: scale(0.6);
    opacity: 0;
  }
}

@keyframes scaleSides-in {
  0%, 50% {
    transform: scale(0.6);
    opacity: 0;
  }
}

.cbp-animation-skew {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-skew .cbp-item {
  transition: transform 0.6s ease-in-out;
}

.cbp-animation-skew .cbp-item {
  perspective: 1000px;
}

.cbp-animation-skew .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-skew .cbp-item-on2off .cbp-item-wrapper {
  -webkit-animation: skew-off 0.6s ease-out both;
  animation: skew-off 0.6s ease-out both;
}

.cbp-animation-skew .cbp-item-off2on .cbp-item-wrapper {
  -webkit-animation: skew-on 0.6s ease-out both;
  animation: skew-on 0.6s ease-out both;
}

/* in */

@-webkit-keyframes skew-off {
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) skew(20deg, 0);
  }
}

@keyframes skew-off {
  100% {
    opacity: 0;
    transform: scale3d(0, 0, 0) skew(20deg, 0);
  }
}

/* out */

@-webkit-keyframes skew-on {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) skew(0, 20deg);
  }
}

@keyframes skew-on {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 0) skew(0, 20deg);
  }
}

.cbp-animation-fadeOutTop {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-fadeOutTop .cbp-wrapper-outer {
  overflow: visible;
}

.cbp-animation-fadeOutTop .cbp-item {
  perspective: 1000px;
  overflow: visible;
}

.cbp-animation-fadeOutTop .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-fadeOutTop .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-out 0.6s both ease-in-out;
  animation: fadeOutTop-out 0.6s both ease-in-out;
}

.cbp-animation-fadeOutTop .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-in 0.6s both ease-in-out;
  animation: fadeOutTop-in 0.6s both ease-in-out;
}

/* out */

@-webkit-keyframes fadeOutTop-out {
  0% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }

  50%, 100% {
    -webkit-transform: translateY(-30px);
    opacity: 0;
  }
}

@keyframes fadeOutTop-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50%, 100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* out */

@-webkit-keyframes fadeOutTop-in {
  0%, 50% {
    -webkit-transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOutTop-in {
  0%, 50% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cbp-animation-slideLeft {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-slideLeft .cbp-item {
  perspective: 1000px;
}

.cbp-animation-slideLeft .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-slideLeft .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: slideLeft-out 0.8s both ease-in-out;
  animation: slideLeft-out 0.8s both ease-in-out;
}

.cbp-animation-slideLeft .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: slideLeft-in 0.8s both ease-in-out;
  animation: slideLeft-in 0.8s both ease-in-out;
}

/* out */

@-webkit-keyframes slideLeft-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 0.75;
    -webkit-transform: scale(0.8);
  }

  75% {
    opacity: 0.75;
    -webkit-transform: scale(0.8) translateX(-200%);
  }

  100% {
    opacity: 0.75;
    -webkit-transform: scale(0.8) translateX(-200%);
  }
}

@keyframes slideLeft-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 0.75;
    transform: scale(0.8);
  }

  75% {
    opacity: 0.75;
    transform: scale(0.8) translateX(-200%);
  }

  100% {
    opacity: 0.75;
    transform: scale(0.8) translateX(-200%);
  }
}

/* in */

@-webkit-keyframes slideLeft-in {
  0%, 25% {
    opacity: 0.75;
    -webkit-transform: scale(0.8) translateX(200%);
  }

  75% {
    opacity: 0.75;
    -webkit-transform: scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateX(0);
  }
}

@keyframes slideLeft-in {
  0%, 25% {
    opacity: 0.75;
    transform: scale(0.8) translateX(200%);
  }

  75% {
    opacity: 0.75;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.cbp-animation-sequentially {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-sequentially .cbp-wrapper-outer {
  overflow: visible;
}

.cbp-animation-sequentially .cbp-item {
  perspective: 1000px;
  overflow: visible;
}

.cbp-animation-sequentially .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-sequentially .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-out 0.6s both ease;
  animation: fadeOutTop-out 0.6s both ease;
}

.cbp-animation-sequentially .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: fadeOutTop-in 0.6s both ease-out;
  animation: fadeOutTop-in 0.6s both ease-out;
}

.cbp-animation-3dflip {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-3dflip .cbp-item {
  perspective: 1000px;
}

.cbp-animation-3dflip .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-3dflip .cbp-wrapper-helper .cbp-item-wrapper {
  transform-origin: 0% 50%;
  -webkit-animation: flip-out 0.6s both ease-in-out;
  animation: flip-out 0.6s both ease-in-out;
}

.cbp-animation-3dflip .cbp-wrapper .cbp-item-wrapper {
  transform-origin: 100% 50%;
  -webkit-animation: flip-in 0.6s both ease-in-out;
  animation: flip-in 0.6s both ease-in-out;
}

@-webkit-keyframes flip-out {
  100% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
  }
}

@keyframes flip-out {
  100% {
    opacity: 0;
    transform: rotateY(90deg);
  }
}

@-webkit-keyframes flip-in {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
  }
}

@keyframes flip-in {
  0% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

.cbp-animation-flipOutDelay {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-flipOutDelay .cbp-item {
  perspective: 1000px;
}

.cbp-animation-flipOutDelay .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-flipOutDelay .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: flipOut-out 1s both ease-in;
  animation: flipOut-out 1s both ease-in;
}

.cbp-animation-flipOutDelay .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: flipOut-in 1s both ease-out;
  animation: flipOut-in 1s both ease-out;
}

.cbp-animation-slideDelay {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-slideDelay .cbp-item {
  perspective: 1000px;
}

.cbp-animation-slideDelay .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-slideDelay .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: slideDelay-out 0.5s both ease-in-out;
  animation: slideDelay-out 0.5s both ease-in-out;
}

.cbp-animation-slideDelay .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: slideDelay-in 0.5s both ease-in-out;
  animation: slideDelay-in 0.5s both ease-in-out;
}

/* out */

@-webkit-keyframes slideDelay-out {
  100% {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes slideDelay-out {
  100% {
    transform: translateX(-100%);
  }
}

@-webkit-keyframes slideDelay-in {
  0% {
    -webkit-transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes slideDelay-in {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

.cbp-animation-rotateSides {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-rotateSides .cbp-item {
  perspective: 1000px;
}

.cbp-animation-rotateSides .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-rotateSides .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-transform-origin: -50% 50%;
  -webkit-animation: rotateSides-out 0.5s both ease-in;
  transform-origin: -50% 50%;
  animation: rotateSides-out 0.5s both ease-in;
}

.cbp-animation-rotateSides .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 150% 50%;
  -webkit-animation: rotateSides-in 0.6s both ease-out;
  transform-origin: 150% 50%;
  animation: rotateSides-in 0.6s both ease-out;
}

/* out */

@-webkit-keyframes rotateSides-out {
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(90deg);
  }
}

@keyframes rotateSides-out {
  100% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(90deg);
  }
}

/* in */

@-webkit-keyframes rotateSides-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg);
  }

  40% {
    opacity: 0;
    -webkit-transform: translateZ(-500px) rotateY(-90deg);
  }
}

@keyframes rotateSides-in {
  0% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg);
  }

  40% {
    opacity: 0;
    transform: translateZ(-500px) rotateY(-90deg);
  }
}

.cbp-animation-foldLeft {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-foldLeft .cbp-item {
  perspective: 1000px;
}

.cbp-animation-foldLeft .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-foldLeft .cbp-wrapper-helper .cbp-item-wrapper {
  transform-origin: 100% 50%;
  -webkit-animation: foldLeft-out 0.7s both;
  animation: foldLeft-out 0.7s both;
}

.cbp-animation-foldLeft .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: foldLeft-in 0.7s both;
  animation: foldLeft-in 0.7s both;
}

/* out */

@-webkit-keyframes foldLeft-out {
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(-90deg);
  }
}

@keyframes foldLeft-out {
  100% {
    opacity: 0;
    transform: translateX(-100%) rotateY(-90deg);
  }
}

/* in */

@-webkit-keyframes foldLeft-in {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(100%);
  }
}

@keyframes foldLeft-in {
  0% {
    opacity: 0.3;
    transform: translateX(100%);
  }
}

.cbp-animation-unfold {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-unfold .cbp-item {
  perspective: 1000px;
}

.cbp-animation-unfold .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-unfold .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: unfold-out 0.8s both;
  animation: unfold-out 0.8s both;
}

.cbp-animation-unfold .cbp-wrapper .cbp-item-wrapper {
  -webkit-transform-origin: 0% 50%;
  -webkit-animation: unfold-in 0.8s both;
  transform-origin: 0% 50%;
  animation: unfold-in 0.8s both;
}

/* out */

@-webkit-keyframes unfold-out {
  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
}

@keyframes unfold-out {
  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* in */

@-webkit-keyframes unfold-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotateY(90deg);
  }
}

@keyframes unfold-in {
  0% {
    opacity: 0;
    transform: translateX(100%) rotateY(90deg);
  }
}

.cbp-animation-scaleDown {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-scaleDown .cbp-item {
  perspective: 1000px;
}

.cbp-animation-scaleDown .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-scaleDown .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: scaleDown-out 0.7s both;
  animation: scaleDown-out 0.7s both;
}

.cbp-animation-scaleDown .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: scaleDown-in 0.6s both;
  animation: scaleDown-in 0.6s both;
}

/* out */

@-webkit-keyframes scaleDown-out {
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}

@keyframes scaleDown-out {
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* in */

@-webkit-keyframes scaleDown-in {
  0% {
    -webkit-transform: translateX(100%);
  }
}

@keyframes scaleDown-in {
  0% {
    transform: translateX(100%);
  }
}

.cbp-animation-frontRow {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-frontRow .cbp-item {
  perspective: 1000px;
}

.cbp-animation-frontRow .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-frontRow .cbp-wrapper-helper .cbp-item-wrapper {
  -webkit-animation: frontRow-out 0.7s both ease;
  animation: frontRow-out 0.7s both ease;
}

.cbp-animation-frontRow .cbp-wrapper .cbp-item-wrapper {
  -webkit-animation: frontRow-in 0.6s both ease;
  animation: frontRow-in 0.6s both ease;
}

/* out */

@-webkit-keyframes frontRow-out {
  100% {
    -webkit-transform: translateX(-60%) scale(0.8);
    opacity: 0;
  }
}

@keyframes frontRow-out {
  100% {
    transform: translateX(-60%) scale(0.8);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes frontRow-in {
  0% {
    -webkit-transform: translateX(100%) scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%) scale(1);
  }
}

@keyframes frontRow-in {
  0% {
    transform: translateX(100%) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateX(0%) scale(1);
  }
}

.cbp-animation-rotateRoom {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-rotateRoom .cbp-item {
  perspective: 1000px;
}

.cbp-animation-rotateRoom .cbp-item-wrapper {
  transform-style: preserve-3d;
}

.cbp-animation-rotateRoom .cbp-wrapper-helper .cbp-item-wrapper {
  transform-origin: 100% 50%;
  -webkit-animation: rotateRoom-out 0.8s both ease;
  animation: rotateRoom-out 0.8s both ease;
}

.cbp-animation-rotateRoom .cbp-wrapper .cbp-item-wrapper {
  transform-origin: 0% 50%;
  -webkit-animation: rotateRoom-in 0.8s both ease;
  animation: rotateRoom-in 0.8s both ease;
}

/* out */

@-webkit-keyframes rotateRoom-out {
  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotateY(90deg);
  }
}

@keyframes rotateRoom-out {
  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateX(-100%) rotateY(90deg);
  }
}

/* in */

@-webkit-keyframes rotateRoom-in {
  0% {
    opacity: 0.3;
    -webkit-transform: translateX(100%) rotateY(-90deg);
  }
}

@keyframes rotateRoom-in {
  0% {
    opacity: 0.3;
    transform: translateX(100%) rotateY(-90deg);
  }
}

.cbp-animation-bounceBottom {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-bounceBottom .cbp-wrapper-helper {
  -webkit-animation: bounceBottom-out 0.6s both ease-in-out;
  animation: bounceBottom-out 0.6s both ease-in-out;
}

.cbp-animation-bounceBottom .cbp-wrapper {
  -webkit-animation: bounceBottom-in 0.6s both ease-in-out;
  animation: bounceBottom-in 0.6s both ease-in-out;
}

/* out */

@-webkit-keyframes bounceBottom-out {
  100% {
    -webkit-transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes bounceBottom-out {
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes bounceBottom-in {
  0% {
    -webkit-transform: translateY(100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceBottom-in {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cbp-animation-bounceLeft {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-bounceLeft .cbp-wrapper-helper {
  -webkit-animation: bounceLeft-out 0.6s both ease-in-out;
  animation: bounceLeft-out 0.6s both ease-in-out;
}

.cbp-animation-bounceLeft .cbp-wrapper {
  -webkit-animation: bounceLeft-in 0.6s both ease-in-out;
  animation: bounceLeft-in 0.6s both ease-in-out;
}

/* out */

@-webkit-keyframes bounceLeft-out {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes bounceLeft-out {
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes bounceLeft-in {
  0% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceLeft-in {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cbp-animation-bounceTop {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-bounceTop .cbp-wrapper-helper {
  -webkit-animation: bounceTop-out 0.6s both ease-in-out;
  animation: bounceTop-out 0.6s both ease-in-out;
}

.cbp-animation-bounceTop .cbp-wrapper {
  -webkit-animation: bounceTop-in 0.6s both ease-in-out;
  animation: bounceTop-in 0.6s both ease-in-out;
}

/* out */

@-webkit-keyframes bounceTop-out {
  100% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes bounceTop-out {
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes bounceTop-in {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceTop-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.cbp-animation-moveLeft {
  transition: height 0.6s ease-in-out;
  will-change: height;
}

.cbp-animation-moveLeft .cbp-wrapper-helper {
  -webkit-animation: moveLeft-out 0.6s both ease-in-out;
  animation: moveLeft-out 0.6s both ease-in-out;
}

.cbp-animation-moveLeft .cbp-wrapper {
  -webkit-animation: moveLeft-in 0.6s both ease-in-out;
  animation: moveLeft-in 0.6s both ease-in-out;
}

/* out */

@-webkit-keyframes moveLeft-out {
  100% {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes moveLeft-out {
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

/* in */

@-webkit-keyframes moveLeft-in {
  0% {
    -webkit-transform: translateX(100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    opacity: 1;
  }
}

@keyframes moveLeft-in {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cbp-displayType-bottomToTop {
  perspective: 1000px;
}

.cbp-displayType-bottomToTop .cbp-item {
  -webkit-animation: fadeInBottomToTop 0.3s both ease-in;
  animation: fadeInBottomToTop 0.3s both ease-in;
}

@-webkit-keyframes fadeInBottomToTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInBottomToTop {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cbp-displayType-fadeIn {
  -webkit-animation: fadeIn 0.5s both ease-in;
  animation: fadeIn 0.5s both ease-in;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.cbp-displayType-fadeInToTop {
  perspective: 1000px;
  -webkit-animation: fadeInToTop 0.5s both ease-in;
  animation: fadeInToTop 0.5s both ease-in;
}

@-webkit-keyframes fadeInToTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInToTop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cbp-displayType-sequentially .cbp-item {
  -webkit-animation: fadeIn 0.5s both ease-in;
  animation: fadeIn 0.5s both ease-in;
}

.cbp-lightbox img {
  display: block;
  border: 0;
  width: 100%;
  height: auto;
}

.cbp-popup-ie8bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
}

.cbp-popup-wrap {
  height: 100%;
  text-align: center;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  display: none;
  z-index: 99990;
  padding: 0 10px;
}

.cbp-popup-wrap video {
  outline: 0 none;
}

.cbp-popup-lightbox {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cbp-popup-singlePage {
  background: white;
  padding: 0;
}

.cbp-popup-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.cbp-popup-content-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.cbp-popup-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  max-width: 100%;
}

.cbp-popup-lightbox .cbp-popup-content {
  display: flex;
}

.cbp-popup-singlePage .cbp-popup-content {
  position: relative;
  z-index: 1;
  margin-top: 145px;
  max-width: 1024px;
  vertical-align: top;
  width: 94%;
}

.cbp-popup-singlePage .cbp-popup-content-basic {
  position: relative;
  z-index: 1;
  margin-top: 104px;
  vertical-align: top;
  width: 100%;
  display: inline-block;
  text-align: left;
}

.cbp-popup-lightbox-figure {
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.cbp-popup-lightbox-bottom {
  position: relative;
  margin-top: 3px;
}

.cbp-popup-lightbox-title {
  padding-right: 50px;
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #eee;
}

.cbp-popup-lightbox-counter {
  position: absolute;
  top: 0;
  right: 0;
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #eee;
}

.cbp-popup-lightbox-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.cbp-popup-lightbox-img[data-action] {
  cursor: pointer;
}

.cbp-popup-lightbox-isIframe .cbp-popup-content {
  width: 75%;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .cbp-popup-lightbox-isIframe .cbp-popup-content {
    width: 95%;
  }
}

.cbp-popup-lightbox-isIframe .cbp-lightbox-bottom {
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 3px;
}

.cbp-popup-lightbox-iframe {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  background: #000;
}

.cbp-popup-lightbox-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.cbp-popup-lightbox-iframe audio {
  margin-top: 27%;
}

.cbp-popup-lightbox-iframe .cbp-popup-lightbox-bottom {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

/* NAVIGATION BUTTONS */

.cbp-popup-singlePage .cbp-popup-navigation-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 104px;
  background-color: #3D4750;
}

.cbp-popup-singlePage .cbp-popup-navigation {
  position: relative;
  width: 100%;
  height: 100%;
}

.cbp-popup-singlePage-sticky .cbp-popup-navigation-wrap {
  position: fixed;
}

.cbp-popup-singlePage-counter {
  color: #fff;
  position: absolute;
  margin: auto;
  right: 40px;
  top: 0;
  bottom: 0;
  font: 400 13px/30px "Open Sans", sans-serif;
  height: 30px;
}

@media only screen and (max-width: 768px) {
  .cbp-popup-singlePage-counter {
    right: 3%;
  }
}

.cbp-popup-next,
.cbp-popup-prev,
.cbp-popup-close {
  padding: 0;
  border: medium none;
  position: absolute;
  cursor: pointer;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cbp-popup-lightbox .cbp-popup-prev,
.cbp-popup-lightbox .cbp-popup-next,
.cbp-popup-lightbox .cbp-popup-close {
  visibility: hidden;
}

/* NAVOGATION BUTTONS */

.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-next,
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-prev,
.cbp-popup-ready.cbp-popup-lightbox .cbp-popup-close {
  visibility: visible;
}

/* PREVIOUS BUTTON LIGHBOX */

.cbp-popup-lightbox .cbp-popup-prev {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll 0 0 transparent;
  width: 44px;
  height: 44px;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}

.cbp-popup-lightbox .cbp-popup-prev:hover {
  background-position: 0 -46px;
}

/* PREVIOUS BUTTON SINGLEPAGE */

.cbp-popup-singlePage .cbp-popup-prev {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll 0 -92px transparent;
  width: 44px;
  height: 44px;
  margin: auto;
  top: 0;
  right: 108px;
  bottom: 0;
  left: 0;
}

.cbp-popup-singlePage .cbp-popup-prev:hover {
  background-position: 0 -138px;
}

/* NEXT BUTTON LIGHTBOX */

.cbp-popup-lightbox .cbp-popup-next {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll -46px 0 transparent;
  width: 44px;
  height: 44px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

.cbp-popup-lightbox .cbp-popup-next:hover {
  background-position: -46px -46px;
}

/* NEXT BUTTON SINGLEPAGE */

.cbp-popup-singlePage .cbp-popup-next {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll -46px -92px transparent;
  width: 44px;
  height: 44px;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 108px;
}

.cbp-popup-singlePage .cbp-popup-next:hover {
  background-position: -46px -138px;
}

/* CLOSE BUTTON LIGTHBOX */

.cbp-popup-lightbox .cbp-popup-close {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll -92px 0 transparent;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 20px;
}

.cbp-popup-lightbox .cbp-popup-close:hover {
  background-position: -92px -46px;
}

/* CLOSE BUTTON SINGLEPAGE */

.cbp-popup-singlePage .cbp-popup-close {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll -92px -92px transparent;
  height: 44px;
  width: 44px;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cbp-popup-singlePage .cbp-popup-close:hover {
  background-position: -92px -138px;
}

.cbp-popup-singlePage .cbp-popup-ie8bg {
  background-color: #fff;
}

@media only screen and (max-width: 360px), (max-height: 600px) {
  .cbp-popup-next,
  .cbp-popup-prev,
  .cbp-popup-close {
    transform: scale(0.8);
  }

  .cbp-popup-lightbox .cbp-popup-close {
    right: 10px;
    top: 10px;
  }

  .cbp-popup-lightbox .cbp-popup-next {
    right: 10px;
  }

  .cbp-popup-lightbox .cbp-popup-prev {
    left: 10px;
  }

  .cbp-popup-singlePage .cbp-popup-navigation-wrap {
    height: 84px;
  }

  .cbp-popup-singlePage .cbp-popup-content {
    margin-top: 120px;
  }
}

.cbp-popup-loadingBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.cbp-popup-lightbox .cbp-popup-loadingBox:after {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  border-right: 3px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid rgba(255, 255, 255, 0.85);
}

.cbp-popup-ready .cbp-popup-loadingBox {
  visibility: hidden;
  display: none;
}

.cbp-popup-loading .cbp-popup-loadingBox {
  visibility: visible;
  display: block;
}

.cbp-popup-transitionend .cbp-popup-content-wrap {
  overflow-y: scroll;
}

.cbp-popup-singlePage {
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
}

.cbp-popup-singlePage.cbp-popup-loading .cbp-popup-content {
  opacity: 0;
}

.cbp-popup-singlePage-fade {
  transform: translateX(0);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

.cbp-popup-singlePage-open.cbp-popup-singlePage-fade {
  opacity: 1;
}

.cbp-popup-singlePage-right {
  transform: translateX(-100%);
  transition: transform 0.6s ease-in-out;
}

.cbp-popup-singlePage-open {
  transform: none;
}

.cbp-l-project-title {
  color: #454444;
  font: 600 42px/46px "Open Sans", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
}

.cbp-l-project-subtitle {
  color: #787878;
  font: 400 14px/21px "Open Sans", sans-serif;
  margin: 0 auto 50px;
  max-width: 500px;
  text-align: center;
}

.cbp-popup-singlePage .cbp-popup-content .cbp-l-project-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.cbp-l-project-container {
  overflow: hidden;
  margin: 40px auto 0;
  clear: both;
}

.cbp-l-project-desc {
  float: left;
  width: 62%;
}

.cbp-l-project-details {
  float: right;
  width: 38%;
  padding-left: 60px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .cbp-l-project-title {
    font-size: 30px;
    line-height: 34px;
  }

  .cbp-l-project-desc {
    width: 100%;
  }

  .cbp-l-project-details {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
}

.cbp-l-project-desc-title {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 22px;
  color: #444;
}

.cbp-l-project-desc-title span,
.cbp-l-project-details-title span {
  border-bottom: 1px solid #747474;
  display: inline-block;
  margin: 0 0 -1px 0;
  font: 400 16px/36px "Open Sans", sans-serif;
  padding: 0 5px 0 0;
}

.cbp-l-project-desc-text {
  font: 400 13px/20px "Open Sans", sans-serif;
  color: #555;
  margin-bottom: 20px;
}

.cbp-l-project-details-title {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 19px;
  color: #444;
}

.cbp-l-project-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbp-l-project-details-list > li,
.cbp-l-project-details-list > div {
  border-bottom: 1px dotted #DFDFDF;
  padding: inherit;
  color: #666;
  font: 400 12px/30px "Open Sans", sans-serif;
}

.cbp-l-project-details-list > li:last-child,
.cbp-l-project-details-list > div:last-child {
  border: none;
}

.cbp-l-project-details-list strong {
  display: inline-block;
  color: #696969;
  font-weight: 600;
  min-width: 100px;
}

.cbp-l-project-details-item {
  display: flex;
}

.cbp-l-project-details-name {
  color: #696969;
  font-weight: 600;
  min-width: 80px;
  margin-right: 20px;
}

.cbp-l-project-details-visit {
  color: #FFFFFF;
  float: right;
  clear: both;
  text-decoration: none;
  font: 400 11px/18px "Open Sans", sans-serif;
  margin-top: 25px;
  background-color: #62B57B;
  padding: 8px 19px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cbp-l-project-details-visit:hover {
  opacity: 0.9;
  color: #fff;
}

.cbp-l-project-related-wrap {
  font-size: 0;
  margin: 0;
  padding: 0;
}

.cbp-l-project-related-item {
  margin-left: 5%;
  max-width: 30%;
  float: left;
}

.cbp-l-project-related-item:first-child {
  margin-left: 0;
}

.cbp-l-project-related-title {
  font: 700 14px/18px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 20px;
}

.cbp-l-project-related-link {
  text-decoration: none;
}

.cbp-l-project-related-link:hover {
  opacity: 0.9;
}

.cbp-l-member-img {
  float: left;
  width: 40%;
  margin-top: 20px;
}

.cbp-l-member-img img {
  border: 1px solid #e2e2e2;
  width: auto;
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: 0;
}

.cbp-l-member-info {
  margin-top: 20px;
  padding-left: 25px;
  float: left;
  width: 60%;
}

@media only screen and (max-width: 768px) {
  .cbp-l-member-img {
    width: 100%;
    text-align: center;
  }

  .cbp-l-member-info {
    width: 100%;
    padding-left: 0;
  }
}

.cbp-l-member-name {
  font: 400 28px/28px "Open Sans", sans-serif;
  color: #474747;
}

.cbp-l-member-position {
  font: 400 13px/21px "Open Sans", sans-serif;
  color: #888;
  margin-top: 6px;
}

.cbp-l-member-desc {
  font: 400 12px/18px "Open Sans", sans-serif;
  margin-top: 25px;
  color: #474747;
}

/* SINGLE PAGE INLINE */

.cbp-popup-singlePageInline-open {
  transition: height 0.5s 0s !important;
}

.cbp-popup-singlePageInline-open .cbp-item {
  transition: transform 0.5s 0s !important;
}

.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline:after {
  display: none;
  visibility: hidden;
}

.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline .cbp-popup-content,
.cbp-popup-singlePageInline-close .cbp-popup-singlePageInline .cbp-popup-navigation {
  transition-delay: 0;
}

.cbp-popup-singlePageInline {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  /* CLOSE BUTTON singlePageInline */
}

.cbp-popup-singlePageInline .cbp-popup-content {
  opacity: 0;
  width: 100%;
  z-index: 1;
  min-height: 300px;
}

.cbp-popup-singlePageInline .cbp-popup-content,
.cbp-popup-singlePageInline .cbp-popup-navigation {
  transition: opacity 0.4s ease-in 0.2s;
}

.cbp-popup-singlePageInline .cbp-popup-navigation {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
}

.cbp-popup-singlePageInline .cbp-popup-close {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat scroll -92px 0 transparent;
  height: 40px;
  width: 40px;
  right: 20px;
  top: 30px;
}

.cbp-popup-singlePageInline .cbp-popup-close:hover {
  opacity: 0.7;
}

.cbp-popup-singlePageInline-ready {
  z-index: 4;
}

.cbp-popup-singlePageInline-ready .cbp-popup-content,
.cbp-popup-singlePageInline-ready .cbp-popup-navigation {
  opacity: 1;
}

.cbp-popup-singlePageInline-ready:after {
  display: none;
  visibility: hidden;
}

.cbp-singlePageInline-active {
  opacity: 0.6 !important;
}

.cbp-l-inline {
  margin: 20px 0;
  overflow: hidden;
  background: #FAFAFA;
  padding: 30px;
}

.cbp-l-inline-left {
  float: left;
  width: 44%;
}

.cbp-l-project-img {
  max-width: 100%;
}

.cbp-l-inline-right {
  float: right;
  width: 56%;
  padding-left: inherit;
}

@media only screen and (max-width: 768px) {
  .cbp-l-inline-left {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }

  .cbp-l-inline-right {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}

.cbp-l-inline-title {
  font: 400 28px/30px "Open Sans", sans-serif;
  color: #474747;
}

.cbp-l-inline-subtitle {
  font: 400 13px/21px "Open Sans", sans-serif;
  color: #888;
  margin-top: 7px;
}

.cbp-l-inline-desc {
  font: 400 13px/20px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 25px;
  margin-bottom: 20px;
}

.cbp-l-inline-view-wrap {
  text-align: right;
}

.cbp-l-inline-view {
  font: 400 13px/35px "Open Sans", sans-serif;
  color: #9C9C9C;
  margin-top: 40px;
  display: inline-block;
  padding: 0 20px;
  border: 1px solid #ccc;
  text-decoration: none;
}

.cbp-l-inline-view:hover {
  color: #757575;
}

.cbp-l-inline-details {
  margin-bottom: 15px;
  font: 13px/22px "Open Sans", sans-serif;
}

/* default state */

.cbp-l-loadMore-defaultText,
.cbp-l-loadMore-button-defaultText {
  display: block;
}

.cbp-l-loadMore-loadingText,
.cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-button-loadingText,
.cbp-l-loadMore-button-noMoreLoading {
  display: none;
}

/* loading state */

.cbp-l-loadMore-loading .cbp-l-loadMore-loadingText,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-loadingText {
  display: block;
}

.cbp-l-loadMore-loading .cbp-l-loadMore-defaultText,
.cbp-l-loadMore-loading .cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-defaultText,
.cbp-l-loadMore-loading .cbp-l-loadMore-button-noMoreLoading {
  display: none;
}

/* no more loading */

.cbp-l-loadMore-stop .cbp-l-loadMore-noMoreLoading,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-noMoreLoading {
  display: block;
}

.cbp-l-loadMore-stop .cbp-l-loadMore-defaultText,
.cbp-l-loadMore-stop .cbp-l-loadMore-loadingText,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-defaultText,
.cbp-l-loadMore-stop .cbp-l-loadMore-button-loadingText {
  display: none;
}

.cbp-l-loadMore-bgbutton {
  text-align: center;
}

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link {
  border: 1px solid #DEDEDE;
  color: #7E7B7B;
  display: inline-block;
  font: 400 13px/40px "Lato", sans-serif;
  min-width: 80px;
  text-decoration: none;
  padding: 0 50px;
  margin-top: 50px;
  outline: 0;
  box-shadow: none;
  letter-spacing: 1px;
  transition: color 0.25s;
}

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link.cbp-l-loadMore-loading {
  color: #B0B0B0;
}

.cbp-l-loadMore-bgbutton .cbp-l-loadMore-link.cbp-l-loadMore-stop {
  color: #B0B0B0;
  cursor: default;
}

.cbp-l-loadMore-button {
  text-align: center;
}

.cbp-l-loadMore-button .cbp-l-loadMore-link,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link {
  border: 1px solid #DEDEDE;
  color: #7E7B7B;
  display: inline-block;
  font: 400 12px/36px "Open Sans", sans-serif;
  min-width: 80px;
  text-decoration: none;
  padding: 0 30px;
  outline: 0;
  margin-top: 40px;
  box-shadow: none;
  transition: color 0.25s;
}

.cbp-l-loadMore-button .cbp-l-loadMore-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-link.cbp-l-loadMore-loading,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link:hover,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link.cbp-l-loadMore-loading {
  color: #B0B0B0;
}

.cbp-l-loadMore-button .cbp-l-loadMore-link.cbp-l-loadMore-stop,
.cbp-l-loadMore-button .cbp-l-loadMore-link.cbp-l-loadMore-button-stop,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link.cbp-l-loadMore-stop,
.cbp-l-loadMore-button .cbp-l-loadMore-button-link.cbp-l-loadMore-button-stop {
  cursor: default;
  color: #B0B0B0;
}

.cbp-l-loadMore-text {
  text-align: center;
}

.cbp-l-loadMore-text .cbp-l-loadMore-link,
.cbp-l-loadMore-text .cbp-l-loadMore-text-link {
  font: 400 15px "Open Sans", sans-serif;
  color: #7E7B7B;
  text-decoration: none;
  cursor: pointer;
  margin-top: 50px;
  display: block;
}

.cbp-l-loadMore-text .cbp-l-loadMore-stop,
.cbp-l-loadMore-text .cbp-l-loadMore-text-stop {
  color: #B0B0B0;
  cursor: default;
}

.cbp-mode-slider {
  transition: height 0.35s;
}

.cbp-mode-slider .cbp-wrapper,
.cbp-mode-slider .cbp-item {
  transition: transform 0.35s;
}

.cbp-mode-slider .cbp-wrapper {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.cbp-mode-slider-dragStart * {
  cursor: move !important;
  cursor: -ms-grabbing !important;
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
}

.cbp-mode-slider-dragStart .cbp-wrapper {
  transition: none;
}

.cbp-nav-next,
.cbp-nav-prev {
  position: relative;
  background: #7c8b90;
  cursor: pointer;
  display: inline-block;
  margin-left: 1px;
  height: 22px;
  width: 21px;
}

.cbp-nav-next {
  border-radius: 0 2px 2px 0;
}

.cbp-nav-prev {
  border-radius: 2px 0 0 2px;
}

.cbp-nav-next:hover,
.cbp-nav-prev:hover {
  opacity: 0.8;
}

.cbp-nav-next:after,
.cbp-nav-prev:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat;
  height: 10px;
  width: 7px;
}

.cbp-nav-next:after {
  background-position: -134px 0;
}

.cbp-nav-prev:after {
  background-position: -134px -12px;
}

.cbp-nav-stop {
  opacity: 0.5 !important;
  cursor: default !important;
}

.cbp-nav {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cbp-nav-controls {
  position: absolute;
  top: -51px;
  right: 0;
  z-index: 100;
}

.cbp-nav-pagination {
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: 100;
  left: 0;
  text-align: center;
}

.cbp-nav-pagination-item {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  cursor: pointer;
  background: #c2c2c2;
  transition: background 0.5s;
}

.cbp-nav-pagination-active {
  background: #797979;
}

.cbp-pagination-item {
  max-width: 100px;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  margin-right: 5px;
  position: relative;
}

.cbp-pagination-item img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.cbp-pagination-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.5s ease-in-out;
}

.cbp-pagination-active:after {
  background: rgba(0, 0, 0, 0);
}

.cbp-slider-wrap,
.cbp-slider-item {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cbp-slider .cbp-nav-controls {
  position: static;
}

.cbp-slider .cbp-nav-next,
.cbp-slider .cbp-nav-prev {
  background: transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 44px;
  height: 44px;
}

.cbp-slider .cbp-nav-next {
  right: 25px;
  left: auto;
}

.cbp-slider .cbp-nav-prev {
  left: 25px;
  right: auto;
}

.cbp-slider .cbp-nav-next:after,
.cbp-slider .cbp-nav-prev:after {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat;
  width: 44px;
  height: 44px;
}

.cbp-slider .cbp-nav-next:after {
  background-position: -46px -92px;
}

.cbp-slider .cbp-nav-next:hover:after {
  background-position: -46px -46px;
}

.cbp-slider .cbp-nav-prev:after {
  background-position: 0 -92px;
}

.cbp-slider .cbp-nav-prev:hover:after {
  background-position: 0 -46px;
}

.cbp-slider .cbp-nav-pagination {
  text-align: right;
  bottom: 20px;
  right: 25px;
  left: auto;
}

.cbp-slider-edge .cbp-nav-controls {
  position: static;
}

.cbp-slider-edge .cbp-nav-next,
.cbp-slider-edge .cbp-nav-prev {
  background: transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 100;
  width: 44px;
  height: 44px;
}

.cbp-slider-edge .cbp-nav-next {
  right: 0;
  left: auto;
}

.cbp-slider-edge .cbp-nav-prev {
  left: 0;
  right: auto;
}

.cbp-slider-edge .cbp-nav-next:after,
.cbp-slider-edge .cbp-nav-prev:after {
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat;
  width: 9px;
  height: 16px;
}

.cbp-slider-edge .cbp-nav-next:after {
  background-position: -134px -24px;
}

.cbp-slider-edge .cbp-nav-prev:after {
  background-position: -134px -42px;
}

.cbp-slider-edge .cbp-nav-pagination {
  bottom: -50px;
}

.cbp-slider-edge .cbp-nav-pagination-item {
  border: 2px solid #0f0f0f;
  opacity: 0.4;
  background: transparent;
}

.cbp-slider-edge .cbp-nav-pagination-active {
  background: #000;
}

.cbp-slider-inline {
  position: relative;
}

.cbp-slider-inline .cbp-slider-item {
  position: absolute;
  width: 100%;
  top: 0;
  transition: left 0.5s;
}

.cbp-slider-inline .cbp-slider-item--active {
  position: relative;
  z-index: 2;
}

.cbp-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.cbp-slider-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.cbp-slider-inline-ready .cbp-slider-controls {
  opacity: 1;
}

.cbp-slider-next,
.cbp-slider-prev {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float: left;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  background: #547EB1;
}

.cbp-slider-next {
  margin-left: 1px;
}

.cbp-slider-next:after,
.cbp-slider-prev:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(/images/cbp-sprite.png?d487134fb11fb2eaa45cb26763ee0f0c) no-repeat;
  width: 9px;
  height: 16px;
}

.cbp-slider-next:after {
  background-position: -134px -60px;
}

.cbp-slider-prev:after {
  background-position: -134px -78px;
}

.cbp-l-grid-agency .cbp-caption:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: 0px;
  left: 50%;
  margin-left: -5px;
  z-index: 1;
}

.cbp-l-grid-agency.cbp-caption-zoom .cbp-caption:hover .cbp-caption-defaultWrap {
  transform: scale(1.15);
}

.cbp-l-grid-agency-title {
  margin-top: 18px;
  font: 700 17px/24px "Lato", sans-serif;
  color: #666;
  text-align: center;
  padding: 0 4px;
}

.cbp-item:hover .cbp-l-grid-agency-title {
  color: #222;
}

.cbp-l-grid-agency-desc {
  font: 400 12px/21px "Open Sans", sans-serif;
  color: #aaa;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .cbp-l-grid-agency-title {
    font-size: 15px;
    line-height: 21px;
  }
}

.cbp-l-grid-work.cbp-caption-zoom .cbp-caption-activeWrap {
  background-color: rgba(0, 0, 0, 0.7);
}

.cbp-l-grid-work .cbp-item {
  padding: 3px;
}

.cbp-l-grid-work .cbp-item-wrapper {
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  padding: 7px 7px 27px;
  border-top: 1px solid #F4F4F4;
}

.cbp-l-grid-work-title {
  margin-top: 17px;
  font: 400 17px/25px "Roboto Condensed", sans-serif;
  color: #607D8B;
  text-align: center;
  text-transform: uppercase;
  display: block;
}

.cbp-l-grid-work-title:hover {
  color: #365D67;
}

.cbp-l-grid-work-desc {
  font: 400 11px/16px "Open Sans", sans-serif;
  color: #888888;
  text-align: center;
  text-transform: uppercase;
}

@media only screen and (max-width: 480px) {
  .cbp-l-grid-work-title {
    font-size: 15px;
    line-height: 21px;
    margin-top: 15px;
  }

  .cbp-l-grid-work .cbp-item-wrapper {
    padding-bottom: 18px;
  }
}

.cbp-l-grid-blog-title {
  font: 400 18px/30px "Open Sans", sans-serif;
  color: #444;
  display: block;
  margin-top: 17px;
}

.cbp-l-grid-blog-title:hover {
  color: #787878;
}

.cbp-l-grid-blog-date {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #787878;
  display: inline-block;
}

.cbp-l-grid-blog-comments {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #3C6FBB;
  display: inline-block;
}

.cbp-l-grid-blog-comments:hover {
  opacity: 0.8;
}

.cbp-l-grid-blog-desc {
  font: 400 13px/18px "Open Sans", sans-serif;
  color: #9B9B9B;
  margin-top: 9px;
}

.cbp-l-grid-blog-split {
  margin: 0 4px;
  font: 400 13px/16px "Open Sans", sans-serif;
  color: #787878;
  display: inline-block;
}

.cbp-l-grid-clients {
  height: 180px;
}

.cbp-l-clients-title-block {
  font: 400 32px/53px "Roboto", sans-serif;
  color: #666464;
  text-align: center;
  margin-bottom: 40px;
}

.cbp-l-grid-faq .cbp-item {
  width: 100%;
}

.cbp-l-grid-projects-title {
  font: 700 14px/21px "Open Sans", sans-serif;
  color: #474747;
  margin-top: 15px;
}

.cbp-l-grid-projects-desc {
  font: 400 12px/18px "Open Sans", sans-serif;
  color: #888888;
  margin-top: 5px;
}

@media only screen and (max-width: 480px) {
  .cbp-l-grid-projects-title {
    margin-top: 12px;
  }

  .cbp-l-grid-projects-desc {
    margin-top: 3px;
  }
}

.cbp-l-grid-masonry-projects .cbp-caption-activeWrap {
  background-color: #59a3b6;
  background-color: rgba(89, 163, 182, 0.95);
}

.cbp-l-grid-masonry-projects .cbp-l-caption-buttonLeft,
.cbp-l-grid-masonry-projects .cbp-l-caption-buttonRight {
  background-color: #545454;
}

.cbp-l-grid-masonry-projects-title {
  font: 500 15px/22px "Roboto", sans-serif;
  color: #59a3b6;
  text-align: center;
  display: block;
  margin-top: 12px;
}

.cbp-l-grid-masonry-projects-title:hover {
  color: #457C8B;
}

.cbp-l-grid-masonry-projects-desc {
  font: 400 12px/18px "Roboto", sans-serif;
  color: #b2b2b2;
  text-align: center;
}

.cbp-l-grid-team-name {
  font: 400 17px/24px "Open Sans", sans-serif;
  color: #456297;
  display: block;
  text-align: center;
  margin-top: 18px;
}

.cbp-l-grid-team-name:hover {
  color: #34425C;
}

.cbp-l-grid-team-position {
  font: italic 400 13px/21px "Open Sans", sans-serif;
  color: #999;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .cbp-l-grid-team-name {
    font-size: 15px;
    line-height: 22px;
    margin-top: 13px;
  }

  .cbp-l-grid-team-position {
    font-size: 12px;
    line-height: 18px;
  }
}

.cbp-l-grid-mosaic-flat .cbp-caption-activeWrap {
  background-color: #64C28E;
  background-color: rgba(101, 199, 150, 0.95);
}

.cbp-l-grid-mosaic-flat .cbp-l-caption-title {
  color: #FFFFFF;
  font: 400 14px/21px "Lato", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

.cbp-l-grid-mosaic-flat .cbp-l-caption-title:after {
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background-color: #fff;
  margin: 8px auto 0;
}

@media only screen and (max-width: 800px) {
  .cbp-l-grid-mosaic-flat .cbp-l-caption-title:after {
    display: none;
  }
}

.cbp-l-grid-mosaic-projects .cbp-caption-activeWrap {
  background-color: #59a3b6;
  background-color: rgba(89, 163, 182, 0.97);
}

.cbp-l-grid-mosaic .cbp-caption-activeWrap {
  background-color: #FFEA71;
  background-color: rgba(255, 234, 113, 0.95);
}

.cbp-l-grid-mosaic .cbp-l-caption-title {
  color: #5A5A5A;
  font: 500 18px/22px "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cbp-l-grid-mosaic .cbp-l-caption-desc {
  color: #585858;
  font: 400 13px/20px "Roboto", sans-serif;
}

@media only screen and (max-width: 480px) {
  .cbp-l-grid-mosaic .cbp-l-caption-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0px;
  }

  .cbp-l-grid-mosaic .cbp-l-caption-desc {
    font-size: 12px;
    line-height: 18px;
  }
}

.cbp-l-slider-title-block {
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 22px;
}

.cbp-l-slider-title-block div {
  padding: 0 2px 6px 0;
  display: inline-block;
  border-bottom: 1px solid #a9a5a5;
  color: #5e5e5e;
  margin-bottom: -1px;
  font: 15px/21px "Roboto", sans-serif;
}

.cbp-l-grid-slider-team-name {
  float: left;
  font: 20px/30px "Roboto", sans-serif;
  color: #494949;
  margin-top: 16px;
}

.cbp-l-grid-slider-team-position {
  clear: both;
  font: 14px/21px "Roboto", sans-serif;
  color: #A6A6A6;
}

.cbp-l-grid-slider-team-desc {
  font: 13px/20px "Roboto", sans-serif;
  color: #969696;
  margin-top: 15px;
}

.cbp-l-grid-slider-team-social {
  float: right;
  margin-top: 22px;
}

.cbp-l-grid-slider-team-social a {
  margin-left: 4px;
}

.cbp-l-grid-slider-team-social a:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 600px) {
  .cbp-l-grid-slider-team-wrap {
    float: left;
    width: 100%;
    margin-bottom: 10px;
  }

  .cbp-l-grid-slider-team-name {
    font-size: 17px;
    line-height: 26px;
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }

  .cbp-l-grid-slider-team-social {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .cbp-l-grid-slider-team-position {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
  }

  .cbp-l-grid-slider-team-desc {
    font-size: 12px;
    line-height: 18px;
    margin-top: 10px;
    text-align: center;
  }
}

.cbp-l-slider-testimonials-wrap {
  background: #f8f9f9;
  padding: 80px 0 110px;
  border-width: 1px 0;
  border-style: solid;
  border-color: #dce1e2;
}

.cbp-l-grid-slider-testimonials-body {
  color: #424242;
  max-width: 800px;
  margin: 0 auto;
  font: 20px/32px sans-serif;
  text-align: center;
  padding: 0 40px;
}

.cbp-l-grid-slider-testimonials-footer {
  font: 12px/19px "Roboto", sans-serif;
  color: #777;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px;
}

.cbp-l-grid-tabs {
  height: 100px;
}

.cbp-l-grid-tabs .cbp-item {
  font: 14px/24px "Lato", sans-serif;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  right: 0;
  text-align: center;
  color: #5a5a5a;
}

.cbp-l-testimonials-title-block {
  position: relative;
  text-align: center;
  font: 26px/36px "Roboto", sans-serif;
  color: #E7E7E7;
  margin-bottom: 60px;
}

.cbp-l-testimonials-title-block:after {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 23px;
  height: 2px;
  bottom: -6px;
  background-color: #C2C2C2;
  left: 0;
  right: 0;
}

.cbp-l-testimonials-wrap {
  background: #2D2D2D;
  padding: 60px 0 110px;
}

.cbp-l-grid-testimonials-body {
  color: #e7e7e7;
  max-width: 800px;
  margin: 0 auto;
  font: 20px/32px "Roboto", sans-serif;
  text-align: center;
  padding: 0 20px;
}

.cbp-l-grid-testimonials-footer {
  font: 12px/19px "Roboto", sans-serif;
  color: #C2C2C2;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 35px;
}

.cbp-search {
  position: relative;
  width: 220px;
  margin-bottom: 40px;
}

.cbp-search .cbp-search-nothing {
  display: none;
}

.cbp-search-icon {
  position: absolute;
  width: 32px;
  height: 100%;
  top: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  pointer-events: none;
}

.cbp-search-icon:after {
  content: "";
  display: block;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzczNzM3MyIgZD0iTTEyMTYgODMycTAtMTg1LTEzMS41LTMxNi41VDc2OCAzODQgNDUxLjUgNTE1LjUgMzIwIDgzMnQxMzEuNSAzMTYuNVQ3NjggMTI4MHQzMTYuNS0xMzEuNVQxMjE2IDgzMnptNTEyIDgzMnEwIDUyLTM4IDkwdC05MCAzOHEtNTQgMC05MC0zOGwtMzQzLTM0MnEtMTc5IDEyNC0zOTkgMTI0LTE0MyAwLTI3My41LTU1LjV0LTIyNS0xNTAtMTUwLTIyNVQ2NCA4MzJ0NTUuNS0yNzMuNSAxNTAtMjI1IDIyNS0xNTBUNzY4IDEyOHQyNzMuNSA1NS41IDIyNSAxNTAgMTUwIDIyNVQxNDcyIDgzMnEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6Ii8+PC9zdmc+") no-repeat scroll center center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cbp-search-input {
  height: 36px;
  padding: 0 32px 0 12px;
  margin: 0;
  border-radius: 1px;
  border: 1px solid #c6c3c4;
  font: 400 12px "Open Sans", sans-serif;
  width: 100%;
}

.cbp-search-input[value] + .cbp-search-icon {
  pointer-events: auto;
}

.cbp-search-input[value] + .cbp-search-icon:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzczNzM3MyIgZD0iTTE0OTAgMTMyMnEwIDQwLTI4IDY4bC0xMzYgMTM2cS0yOCAyOC02OCAyOHQtNjgtMjhsLTI5NC0yOTQtMjk0IDI5NHEtMjggMjgtNjggMjh0LTY4LTI4bC0xMzYtMTM2cS0yOC0yOC0yOC02OHQyOC02OGwyOTQtMjk0LTI5NC0yOTRxLTI4LTI4LTI4LTY4dDI4LTY4bDEzNi0xMzZxMjgtMjggNjgtMjh0NjggMjhsMjk0IDI5NCAyOTQtMjk0cTI4LTI4IDY4LTI4dDY4IDI4bDEzNiAxMzZxMjggMjggMjggNjh0LTI4IDY4bC0yOTQgMjk0IDI5NCAyOTRxMjggMjggMjggNjh6Ii8+PC9zdmc+");
}

.cbp-search-nothing {
  position: absolute;
  top: 0;
  padding: 0 0 30px;
  text-align: center;
  width: 100%;
  font: 13px "Open Sans", sans-serif;
}

@media only screen and (max-width: 600px) {
  .cbp-search {
    width: 100%;
  }
}

.cbp-l-project-social {
  display: flex;
}

.cbp-social-fb,
.cbp-social-twitter,
.cbp-social-googleplus,
.cbp-social-pinterest {
  margin-right: 9px;
  display: flex;
}

.cbp-social-fb:hover,
.cbp-social-twitter:hover,
.cbp-social-googleplus:hover,
.cbp-social-pinterest:hover {
  opacity: 0.8;
}

.cbp-social-fb:focus,
.cbp-social-twitter:focus,
.cbp-social-googleplus:focus,
.cbp-social-pinterest:focus {
  outline: none;
}

.cbp-social-fb path {
  fill: #415C9B;
}

.cbp-social-twitter path {
  fill: #55acee;
}

.cbp-social-googleplus path {
  fill: #E57371;
}

.cbp-social-pinterest path {
  fill: #cb2027;
}

.cbp-l-sort {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.cbp-l-direction {
  display: inline-block;
  background: #4d4c4d;
  float: left;
  height: 38px;
  width: 38px;
  position: relative;
  border-left: 1px solid #6b6a6a;
}

.cbp-l-direction:hover {
  opacity: 0.9;
}

.cbp-l-direction-item {
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: none;
  z-index: 1;
  background: transparent;
  position: relative;
}

.cbp-l-direction:after {
  border-color: #FFFFFF rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  width: 0;
  margin: -3px auto 0;
  cursor: pointer;
  z-index: 0;
}

.cbp-l-direction--second:after {
  border-width: 0 5px 5px;
}

.cbp-l-direction--first div:first-child {
  display: block;
}

.cbp-l-direction--second div:nth-child(2) {
  display: block;
}

.cbp-l-sort--simple {
  margin-left: 70px;
}

.cbp-l-sort--simple .cbp-l-dropdown-wrap {
  background: transparent;
}

.cbp-l-sort--simple .cbp-l-dropdown-header {
  font: 400 13px/36px "Lato", sans-serif;
  color: #787878;
  margin: 0;
}

.cbp-l-sort--simple .cbp-l-dropdown-list {
  background: white;
  box-shadow: 0 0 2px 0px #e2e2e2;
  border: 1px solid #ddd;
}

.cbp-l-sort--simple .cbp-l-dropdown-list .cbp-l-dropdown-item {
  border-top: 0;
  color: #787878;
}

.cbp-l-sort--simple .cbp-l-dropdown-list .cbp-l-dropdown-item:hover {
  color: #b3b3b3;
}

.cbp-l-sort--simple .cbp-l-dropdown-list .cbp-l-dropdown-item--active {
  color: #b3b3b3;
}

.cbp-l-text-sort {
  font: 400 13px/36px "Lato", sans-serif;
  color: #949494;
  margin-right: 15px;
}

.cbp-l-dropdown {
  height: 38px;
  position: relative;
  z-index: 5;
  width: 170px;
  float: left;
}

.cbp-l-dropdown-wrap {
  width: 100%;
  position: absolute;
  background: #4d4c4d;
}

.cbp-l-dropdown-header {
  font: 400 12px/38px "Open Sans", sans-serif;
  margin: 0 17px;
  color: #FFF;
  cursor: default;
  position: relative;
}

.cbp-l-dropdown-list {
  display: none;
}

.cbp-l-dropdown-wrap.cbp-l-dropdown-wrap--open .cbp-l-dropdown-list {
  display: block;
  margin: 0;
}

.cbp-l-dropdown-list .cbp-l-dropdown-item {
  background: transparent;
  color: #b3b3b3;
  width: 100%;
  text-align: left;
  font: 400 12px/40px "Open Sans", sans-serif;
  margin: 0;
  padding: 0 17px;
  cursor: pointer;
  border: none;
  border-top: 1px solid #595959;
}

.cbp-l-dropdown-list .cbp-l-dropdown-item:hover {
  color: #e6e6e6;
}

.cbp-l-dropdown-list .cbp-l-dropdown-item--active {
  color: #fff;
  cursor: default;
}

.cbp-l-dropdown-floated {
  float: right;
  margin-top: -2px;
  margin-left: 20px;
  width: 200px;
}

@media only screen and (max-width: 480px) {
  .cbp-l-dropdown-floated {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .cbp-l-dropdown-wrap {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

.preloading {
  overflow: hidden;
}

#preloader {
  z-index: 9000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.loader {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.loader:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid var(--primary-color);
  border-color: var(--primary-color) transparent var(--primary-color) transparent;
  -webkit-animation: spin 1.2s linear infinite;
          animation: spin 1.2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.clamp-1 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-2 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-3 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-4 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-5 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

*::-webkit-scrollbar-track {
  background-color: #FFFFFF;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: #FFFFFF;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

.g-bg-secondary--hover:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.u-btn-outline-secondary {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.u-btn-outline-secondary:hover {
  background-color: var(--secondary-color) !important;
  color: #FFFFFF !important;
}

.submit-button {
  display: none;
}

h3.g-font-size-13 {
  font-size: var(--heading-secondary-size) !important;
}

.h3 {
  font-size: var(--heading-size) !important;
}

p {
  font-size: var(--text-size) !important;
}

.clamp-1 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-2 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-3 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-4 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-5 {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pointer {
  cursor: pointer;
}

.g-color-whatsapp--hover:hover {
  color: #25D366 !important;
}

.u-btn-primary:hover,
.u-btn-primary:active,
.u-btn-primary:focus {
  background-color: var(--primary-color-hover) !important;
  border-color: var(--primary-color-hover) !important;
}

.u-btn-secondary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff;
}

.u-btn-secondary:hover,
.u-btn-secondary:active,
.u-btn-secondary:focus {
  background-color: var(--secondary-color-hover) !important;
  border-color: var(--secondary-color-hover) !important;
  color: #fff;
}

.swal2-close {
  outline: none;
}

.swal2-close:focus,
.swal2-close:hover {
  outline: none;
}

.swiper-container {
  width: 100%;
  height: calc(100vh - 195px);
  margin-top: 78px;
}

.swiper-container .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#dynasty-slider .overlay-dark {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#dynasty-slider .overlay-light {
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

#dynasty-slider .eduplan-image {
  max-width: 200px !important;
  margin: 0 auto !important;
}

#dynasty-slider .islamic-image {
  max-width: 350px !important;
  margin: 0 auto !important;
  margin-bottom: 30px !important;
}

#dynasty-slider .short-term-image {
  max-width: 350px !important;
  margin: 0 auto !important;
  margin-bottom: 30px !important;
}

#dynasty-slider .miracle-mission-image {
  max-width: 200px !important;
  margin: 0 auto !important;
}

#dynasty-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

#dynasty-slider .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: white;
}

#dynasty-slider .owl-nav .owl-prev:focus {
  outline: none;
}

#dynasty-slider .owl-nav .owl-next {
  position: absolute;
  right: 0;
  width: 35px;
  height: 35px;
  background: white;
}

#dynasty-slider .owl-nav .owl-next:focus {
  outline: none;
}

.u-header__logo-img {
  max-width: calc(100% - 43px) !important;
}

@media screen and (min-width: 767px) {
  .islamic-margin-bottom {
    margin-bottom: 250px;
  }
}


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