/*end-commonstyles photoswipe-default*/
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.u-body {
  --animation-fade_in-opacity: 0;
  --animation-fade_in_up-opacity: 0;
  --animation-fade_in_left-opacity: 0;
  --animation-fade_in_right-opacity: 0;
  --animation-fade_in_down-opacity: 0;
  --animation-fade_in_up_big-opacity: 0;
  --animation-fade_in_left_big-opacity: 0;
  --animation-fade_in_right_big-opacity: 0;
  --animation-fade_in_down_big-opacity: 0;
  --animation-fade_out-opacity: 0;
  --animation-fade_out_up-opacity: 0;
  --animation-fade_out_left-opacity: 0;
  --animation-fade_out_right-opacity: 0;
  --animation-fade_out_down-opacity: 0;
  --animation-fade_out_up_big-opacity: 0;
  --animation-fade_out_left_big-opacity: 0;
  --animation-fade_out_right_big-opacity: 0;
  --animation-fade_out_down_big-opacity: 0;
  --animation-rotate_in-rotate: -200deg;
  --animation-rotate_in_down_left-rotate: -45deg;
  --animation-rotate_in_down_right-rotate: 45deg;
  --animation-rotate_in_up_left-rotate: 45deg;
  --animation-rotate_in_up_right-rotate: -90deg;
  --animation-rotate_out-rotate: 200deg;
  --animation-rotate_out_down_left-rotate: 45deg;
  --animation-rotate_out_down_right-rotate: -45deg;
  --animation-rotate_out_up_left-rotate: -45deg;
  --animation-rotate_out_up_right-rotate: 90deg;
  --animation-roll_in-rotate: -120deg;
  --animation-roll_in-translate_x: -100%;
  --animation-roll_out-rotate: 120deg;
  --animation-roll_out-translate_x: 100%;
  --animation-zoom_in-scale: 0.3;
  --animation-zoom_in_down-scale: 0.475;
  --animation-zoom_in_down-translate_y: 60px;
  --animation-zoom_in_up-scale: 0.475;
  --animation-zoom_in_up-translate_y: -60px;
  --animation-zoom_in_left-scale: 0.475;
  --animation-zoom_in_left-translate_x: 10px;
  --animation-zoom_in_right-scale: 0.475;
  --animation-zoom_in_right-translate_x: -10px;
  --animation-zoom_out-scale: 0.3;
  --animation-zoom_out_down-scale: 0.475;
  --animation-zoom_out_down-translate_y: -60px;
  --animation-zoom_out_up-scale: 0.475;
  --animation-zoom_out_up-translate_y: 60px;
  --animation-zoom_out_left-scale: 0.475;
  --animation-zoom_out_left-translate_x: 42px;
  --animation-zoom_out_right-scale: 0.475;
  --animation-zoom_out_right-translate_x: -42px;
  --animation-slide_in_down-translate_y: -100%;
  --animation-slide_in_up-translate_y: 100%;
  --animation-slide_in_left-translate_x: -100%;
  --animation-slide_in_right-translate_x: 100%;
  --animation-slide_out_down-translate_y: 100%;
  --animation-slide_out_up-translate_y: -100%;
  --animation-slide_out_left-translate_x: -100%;
  --animation-slide_out_right-translate_x: 100%;
  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-scale: 1;
  --animation-custom_in-rotate: 0deg;
  --animation-custom_in-opacity: 0;
  
  
  
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: var(--animation-fade_in-opacity);
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: var(--animation-fade_in_down-opacity);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: var(--animation-fade_in_down_big-opacity);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: var(--animation-fade_in_left-opacity);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: var(--animation-fade_in_left_big-opacity);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: var(--animation-fade_in_right-opacity);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: var(--animation-fade_in_right_big-opacity);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: var(--animation-fade_in_up-opacity);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: var(--animation-fade_in_up_big-opacity);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out-opacity);
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_down-opacity);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_down_big-opacity);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_left-opacity);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_left_big-opacity);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_right-opacity);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_right_big-opacity);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_up-opacity);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: var(--animation-fade_out_up_big-opacity);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_in-rotate));
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_in_down_left-rotate));
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_in_down_right-rotate));
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_in_up_left-rotate));
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_in_up_right-rotate));
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_out-rotate));
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_out_down_left-rotate));
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_out_down_right-rotate));
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_out_up_left-rotate));
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, var(--animation-rotate_out_up_right-rotate));
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(var(--animation-roll_in-translate_x), 0, 0) rotate3d(0, 0, 1, var(--animation-roll_in-rotate));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(var(--animation-roll_out-translate_x), 0, 0) rotate3d(0, 0, 1, var(--animation-roll_out-rotate));
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(var(--animation-zoom_in-scale), var(--animation-zoom_in-scale), var(--animation-zoom_in-scale));
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_down-scale), var(--animation-zoom_in_down-scale), var(--animation-zoom_in_down-scale)) translate3d(0, var(--animation-zoom_in_down-translate_y), 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_left-scale), var(--animation-zoom_in_left-scale), var(--animation-zoom_in_left-scale)) translate3d(var(--animation-zoom_in_left-translate_x), 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_right-scale), var(--animation-zoom_in_right-scale), var(--animation-zoom_in_right-scale)) translate3d(var(--animation-zoom_in_right-translate_x), 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_up-scale), var(--animation-zoom_in_up-scale), var(--animation-zoom_in_up-scale)) translate3d(0, var(--animation-zoom_in_up-translate_y), 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(var(--animation-zoom_out-scale), var(--animation-zoom_out-scale), var(--animation-zoom_out-scale));
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_out_down-scale), var(--animation-zoom_out_down-scale), var(--animation-zoom_out_down-scale)) translate3d(0, var(--animation-zoom_out_down-translate_y), 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_out_left-scale), var(--animation-zoom_out_left-scale), var(--animation-zoom_out_left-scale)) translate3d(var(--animation-zoom_out_left-translate_x), 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_out_right-scale), var(--animation-zoom_out_right-scale), var(--animation-zoom_out_right-scale)) translate3d(var(--animation-zoom_out_right-translate_x), 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_out_up-scale), var(--animation-zoom_out_up-scale), var(--animation-zoom_out_up-scale)) translate3d(0, var(--animation-zoom_out_up-translate_y), 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, var(--animation-slide_in_down-translate_y), 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(var(--animation-slide_in_left-translate_x), 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(var(--animation-slide_in_right-translate_x), 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, var(--animation-slide_in_up-translate_y), 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, var(--animation-slide_out_down-translate_y), 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(var(--animation-slide_out_left-translate_x), 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(var(--animation-slide_out_right-translate_x), 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, var(--animation-slide_out_up-translate_y), 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.animated.delay-1s {
  animation-delay: 1s;
}
.animated.delay-2s {
  animation-delay: 2s;
}
.animated.delay-3s {
  animation-delay: 3s;
}
.animated.delay-4s {
  animation-delay: 4s;
}
.animated.delay-5s {
  animation-delay: 5s;
}
.animated.fast {
  animation-duration: 800ms;
}
.animated.faster {
  animation-duration: 500ms;
}
.animated.slow {
  animation-duration: 2s;
}
.animated.slower {
  animation-duration: 3s;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/*begin-commonstyles animation*/
.backstage {
  animation-play-state: paused;
}
.u-backstage-hidden {
  visibility: hidden;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, var(--animation-slide_out_up-translate_y), 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--animation-slide_out_right-translate_x), 0, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, var(--animation-slide_out_down-translate_y), 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--animation-slide_out_left-translate_x), 0, 0);
  }
}
/* Fix zoomIn animation for Internet Explorer */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(var(--animation-zoom_in-scale), var(--animation-zoom_in-scale), var(--animation-zoom_in-scale));
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_down-scale), var(--animation-zoom_in_down-scale), var(--animation-zoom_in_down-scale)) translate3d(0, var(--animation-zoom_in_down-translate_y), 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_left-scale), var(--animation-zoom_in_left-scale), var(--animation-zoom_in_left-scale)) translate3d(var(--animation-zoom_in_left-translate_x), 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_right-scale), var(--animation-zoom_in_right-scale), var(--animation-zoom_in_right-scale)) translate3d(var(--animation-zoom_in_right-translate_x), 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(var(--animation-zoom_in_up-scale), var(--animation-zoom_in_up-scale), var(--animation-zoom_in_up-scale)) translate3d(0, var(--animation-zoom_in_up-translate_y), 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes customAnimationIn {
  from {
    transform-origin: center center;
    transform: translate3d(var(--animation-custom_in-translate_x), var(--animation-custom_in-translate_y), 0) scale3d(var(--animation-custom_in-scale), var(--animation-custom_in-scale), var(--animation-custom_in-scale)) rotate3d(0, 0, 1, calc(-1 * var(--animation-custom_in-rotate)));
    opacity: var(--animation-custom_in-opacity);
  }
  to {
    transform-origin: center center;
    transform: translate3d(-50% !important, -50% !important, 0);
    opacity: 1;
  }
}
@keyframes customAnimationOut {
  from {
    transform-origin: center center;
    transform: translate3d(-50% !important, -50% !important, 0);
    opacity: 1;
  }
  to {
    transform-origin: center center;
    transform: translate3d(var(--animation-custom_in-translate_x), var(--animation-custom_in-translate_y), 0) scale3d(var(--animation-custom_in-scale), var(--animation-custom_in-scale), var(--animation-custom_in-scale)) rotate3d(0, 0, 1, calc(-1 * var(--animation-custom_in-rotate)));
    opacity: var(--animation-custom_in-opacity);
  }
}
.customAnimationIn {
  animation-name: customAnimationIn;
}
.customAnimationOut {
  animation-name: customAnimationOut;
}
.u-responsive-xs .slideInDown,
.u-responsive-sm .slideInDown {
  animation-name: slideInUp;
}
.u-responsive-xs .slideOutUp,
.u-responsive-sm .slideOutUp {
  animation-name: slideOutDown;
}
/*end-commonstyles animation*/
.animated.u-absolute-hcenter {
  
  --animation-custom_in-translate_x: -50% !important;
}
.animated.u-absolute-vcenter {
  
  --animation-custom_in-translate_y: -50% !important;
}
.u-animation-sticky {
  position: sticky;
  top: 0;
}
.u-cookies-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}
.u-cookies-consent.show {
  display: block;
}
.u-gallery-item {
  position: relative;
  overflow: hidden;
}
.u-gallery-item.hide {
  display: none;
}
.u-gallery-item.show {
  animation: galleryFilterDadeIn 0.25s ease;
}
@keyframes galleryFilterDadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-gallery-item .u-back-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.u-back-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.u-show-text-none .u-over-slide {
  display: none;
}
.u-over-slide .u-gallery-heading,
.u-over-slide .u-gallery-text {
  margin-top: 0;
  margin-bottom: 0;
}
.u-gallery.u-layout-grid {
  display: flex;
  flex-direction: column;
}
.u-gallery.u-layout-carousel .u-carousel-indicators li {
  opacity: 0.5;
}
.u-gallery.u-layout-carousel .u-carousel-indicators li.u-active {
  opacity: 1;
}
.u-no-transition *,
.u-no-transition *:before,
.u-no-transition *:after {
  transition: none !important;
}
.u-layout-carousel.u-gallery.u-product-zoom .u-back-slide,
.u-layout-thumbnails.u-gallery.u-product-zoom .u-back-slide {
  background-size: contain;
  background-position: 50% 50%;
  cursor: zoom-in;
  overflow: hidden;
}
.u-layout-carousel.u-gallery.u-product-zoom .u-back-slide.hover img,
.u-layout-thumbnails.u-gallery.u-product-zoom .u-back-slide.hover img {
  opacity: 1;
}
.u-layout-carousel.u-gallery.u-product-zoom .u-back-slide img,
.u-layout-thumbnails.u-gallery.u-product-zoom .u-back-slide img {
  min-width: 120%;
  min-height: 120%;
  height: auto;
  width: auto;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.u-gallery-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  --filter-spacing: 0;
  --filter-padding-vertical: 0;
  --filter-padding-horizontal: 0;
  --filter-default-color: transparent;
  --filter-hover-color: transparent;
  --filter-active-color: transparent;
  --filter-text-default-color: transparent;
  --filter-text-hover-color: transparent;
  --filter-text-active-color: transparent;
  --filter-border-color: transparent;
  --filter-border-width: 0;
  --filter-border-radius: 0;
}
.u-gallery-filter .u-filter-item {
  margin-bottom: 10px;
}
.u-gallery-filter .u-filter-item a {
  display: block;
  margin: 0 var(--filter-spacing);
  padding: var(--filter-padding-vertical) var(--filter-padding-horizontal);
  transition: background-color 0.25s ease;
  background-color: var(--filter-default-color);
  color: var(--filter-text-default-color);
  border: var(--filter-border-width) solid var(--filter-border-color);
  border-radius: var(--filter-border-radius);
}
.u-gallery-filter .u-filter-item a:hover {
  background-color: var(--filter-hover-color);
  color: var(--filter-text-hover-color);
}
.u-gallery-filter .u-filter-item.active a {
  background-color: var(--filter-active-color);
  color: var(--filter-text-active-color);
}
.u-repeater {
  display: grid;
  grid-template-columns: repeat(3, 33.33333333%);
}
.u-repeater-item {
  display: flex;
  position: relative;
}
.u-list-control {
  display: flex;
  position: relative;
}
.u-list-control.has-categories-listbox.has-sorting,
.u-list-control.has-pagination.has-categories-listbox,
.u-list-control.has-pagination.has-sorting {
  display: grid;
  grid-auto-flow: column;
  position: relative;
  align-items: center;
  grid-template-columns: calc(33.3333%) calc(33.3333%) calc(33.3333%);
}
.u-pagination-center.u-sorting-center .u-list-control.has-pagination.has-sorting {
  grid-template-columns: 0;
  justify-content: center;
}
.u-pagination-left.u-sorting-left .u-list-control.has-pagination.has-sorting {
  grid-template-columns: 0;
  justify-content: left;
}
.u-pagination-right.u-sorting-right .u-list-control.has-pagination.has-sorting {
  grid-template-columns: 0;
  justify-content: right;
}
.u-pagination-center.u-categories-listbox-center .u-list-control.has-pagination.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: center;
}
.u-pagination-left.u-categories-listbox-left .u-list-control.has-pagination.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: left;
}
.u-pagination-right.u-categories-listbox-right .u-list-control.has-pagination.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: right;
}
.u-sorting-center.u-categories-listbox-center .u-list-control.has-sorting.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: center;
}
.u-sorting-left.u-categories-listbox-left .u-list-control.has-sorting.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: left;
}
.u-sorting-right.u-categories-listbox-right .u-list-control.has-sorting.has-categories-listbox {
  grid-template-columns: 0;
  justify-content: right;
}
.u-list:not(.u-repeater),
.u-blog:not(.u-repeater),
.u-products:not(.u-repeater) {
  display: flex;
  flex-direction: column;
}
.u-list:not(.u-repeater) .u-repeater,
.u-blog:not(.u-repeater) .u-repeater,
.u-products:not(.u-repeater) .u-repeater {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}
.u-list:not(.u-repeater) .u-list-control,
.u-blog:not(.u-repeater) .u-list-control,
.u-products:not(.u-repeater) .u-list-control {
  flex: 0;
}
.u-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.u-table th,
.u-table td {
  padding: 10px;
  font-weight: inherit;
  position: inherit;
}
.u-table th:empty:before,
.u-table td:empty:before {
  content: '\A0';
}
.u-table-valign-top {
  vertical-align: top;
}
.u-table-valign-middle {
  vertical-align: middle;
}
.u-table-valign-bottom {
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .u-table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .u-table-responsive thead th,
  .u-table-responsive tfoot th,
  .u-table-responsive thead td,
  .u-table-responsive tfoot td {
    white-space: nowrap;
  }
}
.u-custom-list {
  list-style-type: none;
  padding-left: 0;
}
.u-custom-list li {
  position: relative;
  margin-left: 1.1em;
}
.u-custom-list .u-list-icon {
  display: inline-block;
  position: absolute;
  width: 1em;
  min-height: 1em;
  height: auto;
  left: -1.2em;
  fill: currentColor;
  text-align: center;
}
.u-custom-list .u-list-icon > :first-child {
  display: inline-block;
  position: relative;
  margin: -0.8em;
  font-size: 0.8em;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  line-height: 0.9;
}
.u-tabs {
  display: flex;
  flex-direction: column;
}
.u-tabs .u-tab-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}
.u-tabs .u-tab-link {
  display: block;
  padding: 10px 20px;
  color: inherit;
  border-color: transparent;
}
.u-tabs .u-tab-pane {
  position: relative;
}
.u-tabs .u-tab-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.u-tabs .u-tab-content > .u-tab-pane {
  flex: 1;
  display: none;
}
.u-tabs .u-tab-content > .u-tab-active {
  display: flex;
}
.u-tabs.u-tab-links-align-left .u-tab-list {
  justify-content: flex-start;
}
.u-tabs.u-tab-links-align-center .u-tab-list {
  justify-content: center;
}
.u-tabs.u-tab-links-align-right .u-tab-list {
  justify-content: flex-end;
}
.u-tabs.u-tab-vertical .u-tab-list {
  flex-direction: column;
}
.u-tabs.u-tab-vertical .u-tab-list .u-tab-item:not(:last-child) {
  margin-bottom: 0;
}
.u-tabs.u-tab-vertical .u-tab-list .u-tab-link {
  text-align: left;
}
.u-tabs.u-tab-links-align-justify .u-tab-list {
  text-align: center;
}
.u-tabs.u-tab-links-align-justify .u-tab-list > * {
  flex: 1;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-0 {
  margin-bottom: 0px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-1 {
  margin-bottom: -1px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-2 {
  margin-bottom: -2px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-3 {
  margin-bottom: -3px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-4 {
  margin-bottom: -4px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-5 {
  margin-bottom: -5px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-6 {
  margin-bottom: -6px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-7 {
  margin-bottom: -7px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-8 {
  margin-bottom: -8px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-9 {
  margin-bottom: -9px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-10 {
  margin-bottom: -10px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-11 {
  margin-bottom: -11px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-12 {
  margin-bottom: -12px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-13 {
  margin-bottom: -13px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-14 {
  margin-bottom: -14px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-15 {
  margin-bottom: -15px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-16 {
  margin-bottom: -16px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-17 {
  margin-bottom: -17px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-18 {
  margin-bottom: -18px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-19 {
  margin-bottom: -19px;
}
.u-tab-list[class*="u-border"] .u-tab-link.u-border-20 {
  margin-bottom: -20px;
}
.u-text .u-icon,
.u-btn .u-icon,
.u-table-cell .u-icon,
.u-tab-link .u-icon,
.u-accordion-link-text .u-icon {
  position: relative;
  display: inline;
  line-height: inherit;
  font-size: 1em;
  fill: currentColor;
  vertical-align: middle;
  white-space: nowrap;
}
.u-text .u-icon.u-file-icon > img[src],
.u-btn .u-icon.u-file-icon > img[src],
.u-table-cell .u-icon.u-file-icon > img[src],
.u-tab-link .u-icon.u-file-icon > img[src],
.u-accordion-link-text .u-icon.u-file-icon > img[src] {
  display: inline-block;
  height: 1em;
  width: auto;
  line-height: 1;
  vertical-align: -0.15em;
}
.u-text .u-icon > svg,
.u-btn .u-icon > svg,
.u-table-cell .u-icon > svg,
.u-tab-link .u-icon > svg,
.u-accordion-link-text .u-icon > svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.15em;
}
.u-text .u-icon > svg + img,
.u-btn .u-icon > svg + img,
.u-table-cell .u-icon > svg + img,
.u-tab-link .u-icon > svg + img,
.u-accordion-link-text .u-icon > svg + img {
  position: absolute !important;
  left: calc(50% - 0.5em) !important;
  top: calc(50% - 0.5em) !important;
  display: inline !important;
  padding: 0.5em !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  line-height: 1 !important;
}
.u-login {
  display: table;
}
.u-form-agree .u-btn,
.u-table-cell .u-btn,
.u-text .u-btn {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: baseline;
  white-space: normal;
  text-align: inherit;
}
.u-form-agree .u-btn.u-button-link,
.u-table-cell .u-btn.u-button-link,
.u-text .u-btn.u-button-link {
  display: inline;
}
.u-text.u-cart-block-content .u-btn {
  white-space: nowrap;
}
.u-slider {
  display: flex;
  flex-direction: column;
}
.u-slider .u-carousel-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.u-slider .u-carousel-inner > .u-carousel-item {
  flex: 1;
  align-items: initial;
  min-height: 100%;
}
.u-slider .u-carousel-inner .u-carousel-item.u-active,
.u-slider .u-carousel-inner .u-carousel-item-next,
.u-slider .u-carousel-inner .u-carousel-item-prev {
  display: flex;
}
.u-layout-grid .u-gallery-inner {
  display: grid;
  grid-template-columns: repeat(3, auto);
  flex: 1 1 auto;
}
.u-layout-grid .u-gallery-controls {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.u-layout-grid .u-gallery-controls:empty {
  margin: 0;
}
.u-layout-thumbnails,
.u-layout-carousel {
  display: flex;
}
.u-layout-thumbnails .u-carousel-inner,
.u-layout-carousel .u-carousel-inner {
  flex: 1;
}
.u-layout-thumbnails .u-carousel-item,
.u-layout-carousel .u-carousel-item {
  height: 100%;
  flex-direction: column;
}
.u-layout-thumbnails .u-carousel-item.u-active,
.u-layout-carousel .u-carousel-item.u-active,
.u-layout-thumbnails .u-carousel-item.u-carousel-item-next,
.u-layout-carousel .u-carousel-item.u-carousel-item-next,
.u-layout-thumbnails .u-carousel-item.u-carousel-item-prev,
.u-layout-carousel .u-carousel-item.u-carousel-item-prev {
  display: flex;
}
.u-layout-thumbnails .u-carousel-item .u-back-slide,
.u-layout-carousel .u-carousel-item .u-back-slide {
  position: relative;
}
.u-layout-carousel:not(.u-gallery-slider) .u-over-slide {
  position: relative;
  height: auto;
}
.u-layout-thumbnails {
  flex-direction: column;
  grid-gap: 0 !important;
}
.u-layout-thumbnails .u-over-slide {
  display: none;
}
.u-layout-thumbnails .u-carousel-indicators {
  display: none;
}
.u-layout-thumbnails .u-carousel-thumbnails {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  overflow-x: auto;
}
.u-layout-thumbnails .u-carousel-thumbnail {
  flex-shrink: 0;
  overflow: hidden;
}
.u-carousel-thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-thumbnails-position-bottom {
  flex-direction: column;
}
.u-thumbnails-position-bottom .u-carousel-thumbnails {
  flex-direction: row;
  order: 10;
  overflow-x: auto;
}
.u-thumbnails-position-top {
  flex-direction: column;
}
.u-thumbnails-position-top .u-carousel-thumbnails {
  flex-direction: row;
  order: -1;
  overflow-x: auto;
}
.u-thumbnails-position-left {
  flex-direction: row;
}
.u-thumbnails-position-left .u-carousel-thumbnails {
  flex-direction: column;
  order: -1;
  overflow-y: auto;
}
.u-thumbnails-position-right {
  flex-direction: row;
}
.u-thumbnails-position-right .u-carousel-thumbnails {
  flex-direction: column;
  order: 10;
  overflow-y: auto;
}
.u-layout-horizontal {
  position: relative;
  overflow: hidden;
}
.u-layout-horizontal .u-repeater,
.u-layout-horizontal .u-gallery-inner {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
.u-layout-horizontal .u-repeater::-webkit-scrollbar,
.u-layout-horizontal .u-gallery-inner::-webkit-scrollbar {
  display: none;
}
.u-layout-horizontal .u-gallery-inner {
  white-space: nowrap;
}
.u-layout-horizontal .u-repeater {
  grid-auto-flow: column;
  grid-auto-rows: 100%;
}
.u-layout-horizontal .u-gallery-item {
  height: 100%;
  display: inline-block;
  white-space: normal;
}
.u-layout-horizontal .u-gallery-item:last-child {
  margin-right: 0 !important;
}
.u-layout-horizontal .u-back-slide {
  display: inline-block;
  width: -webkit-fit-content;
  width: fit-content;
}
.u-layout-horizontal .u-back-image {
  width: auto;
}
.u-product {
  display: flex;
}
.u-product-price {
  display: table;
}
.u-price-wrapper {
  display: flex;
}
.u-price-wrapper .u-price,
.u-price-wrapper .u-old-price {
  margin-top: auto;
  margin-bottom: auto;
}
.u-price-wrapper .u-old-price {
  line-height: 1;
}
.u-price-wrapper .u-hide-price {
  display: none;
}
.u-price-wrapper .u-hide-price + div {
  margin-left: 0 !important;
}
.u-product-category {
  width: -webkit-max-content;
  width: max-content;
}
.u-product-category a {
  display: inline-block;
}
.u-product-second-image {
  display: none;
}
.u-product-second-image-wrapper {
  position: relative;
}
.u-product-second-image-wrapper .u-image {
  transition: all 0.7s ease;
}
.u-product-second-image-wrapper .u-image + .u-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.7s ease;
}
.u-product-second-image-wrapper > img + img,
.u-product-second-image-wrapper > div + div {
  opacity: 0;
}
.u-product-second-image-wrapper:hover > img + img,
.u-product-second-image-wrapper:hover > div + div {
  opacity: 1;
}
.u-product-second-image-wrapper:hover > img:first-child:not(:only-child),
.u-product-second-image-wrapper:hover > div:first-child:not(:only-child) {
  opacity: 0;
}
.u-rotation-parent > * {
  position: absolute;
  top: 50%;
  left: 50%;
}
.u-product-quantity {
  display: table;
}
.u-quantity-input {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.u-quantity-input input,
.u-quantity-input a {
  vertical-align: middle;
  line-height: 2em;
  height: 2em;
  font-size: 1em;
}
.u-quantity-input input {
  border: none;
  min-width: 3em;
  width: 100%;
}
.u-quantity-input a {
  flex-shrink: 0;
  flex-grow: 0;
  align-items: center;
  display: flex;
  position: relative;
  width: 2em;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.u-quantity-input a,
.u-quantity-input a:hover {
  color: inherit;
}
.u-quantity-input a svg {
  flex: 1 0 auto;
}
.u-quantity-input a:not(.u-hidden) ~ input {
  text-align: center;
}
[class*="u-border-"].u-quantity-input a {
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
}
[class*="u-border-"].u-quantity-input a:first-child {
  border-left-width: 0 !important;
}
[class*="u-border-"].u-quantity-input a:last-child {
  border-right-width: 0 !important;
}
.u-quantity-input a.disabled {
  pointer-events: none;
}
.u-quantity-input a.disabled svg {
  opacity: 0.33;
}
.u-shopping-cart {
  display: block;
  color: inherit;
}
.u-shopping-cart:hover {
  color: inherit;
}
.u-shopping-cart-icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.u-shopping-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 1;
  width: calc(1em + 3px);
  height: calc(1em + 3px);
  line-height: calc(1em + 2px);
  text-align: center;
  vertical-align: baseline;
  box-sizing: content-box;
}
.u-product-badge {
  text-align: center;
}
.u-product-sku {
  display: table;
}
.u-cart-product-image {
  width: 100px;
  display: inline-block;
}
.u-cart-product-title {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
}
.u-cart-button-container {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.u-cart-blocks-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .u-cart-blocks-container {
    grid-template-columns: 1fr;
  }
  .u-cart-form .u-btn-submit {
    flex-grow: 0;
    margin-left: auto;
  }
}
.u-checkout-button-container {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.u-checkout-blocks-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  position: relative;
}
.u-checkout-totals-table table {
  margin: 0!important;
}
@media (max-width: 767px) {
  .u-checkout-blocks-container {
    grid-template-columns: 1fr;
  }
}
.u-payment-services-inner {
  width: 100%;
}
.u-tabs.u-tab-payment {
  flex-grow: 1;
}
.u-tabs.u-tab-payment .u-tab-link {
  display: flex;
  align-items: center;
}
.u-tabs.u-tab-payment .u-tab-link input {
  margin-left: 0;
  margin-right: 1em;
}
.u-tabs.u-tab-payment .u-tab-link svg {
  height: 24px;
  width: 24px;
  margin-left: auto;
  margin-right: 0;
}
.u-tabs.u-tab-payment .u-tab-item:first-child .u-tab-link {
  border-bottom: none;
}
.u-dialog {
  display: flex;
  position: relative;
}
.u-dialog-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  color: inherit;
  background: transparent;
  padding: 0;
  outline: none;
  cursor: pointer;
}
section.u-dialog-block {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100001;
}
section.u-dialog-block:not(.u-dialog-open) {
  display: none;
}
.u-countdown {
  display: table;
}
.u-countdown-wrapper {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
}
.u-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.u-countdown-number {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  width: 1ch;
}
.u-countdown-number:before {
  content: '0';
  visibility: hidden;
  width: 0;
}
.u-countdown-number .start-val,
.u-countdown-number .old-val,
.u-countdown-number .new-val {
  width: 1ch;
}
.u-countdown-number .start-val {
  text-align: center;
}
.u-countdown-number .counter-wrapper {
  position: relative;
  overflow: hidden;
  width: 1ch;
}
.u-countdown-number .counter-html {
  position: absolute;
  width: 1ch;
}
.u-countdown-counter {
  display: flex;
  white-space: nowrap;
}
.u-countdown-message {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  overflow: hidden;
}
.u-countdown-message p {
  text-align: center;
  margin: auto !important;
}
.u-accordion-link {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  border-color: transparent;
  cursor: pointer;
}
.u-accordion-link-icon {
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
}
.u-accordion-link-icon svg {
  fill: currentColor !important;
}
.u-accordion-link-icon-hidden {
  display: none;
}
.u-accordion-pane {
  position: relative;
  display: none;
}
.u-accordion-pane.u-accordion-active {
  display: flex;
}
.u-accordion.u-spacing-0 .u-accordion-item:not(:last-child) .u-accordion-link:not(.active),
.u-accordion:not([class*="u-spacing-"]) .u-accordion-item:not(:last-child) .u-accordion-link:not(.active) {
  border-bottom: none;
}
.u-accordion.u-spacing-0 .u-accordion-item:not(:last-child) .u-accordion-link[class*=u-border-] ~ .u-accordion-pane,
.u-accordion:not([class*="u-spacing-"]) .u-accordion-item:not(:last-child) .u-accordion-link[class*=u-border-] ~ .u-accordion-pane {
  border-bottom: none;
}
.u-section-row {
  position: relative;
}
.u-section-row.u-sticky-fixed {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 3;
}
.u-box-shadow.u-section-row:nth-child(10) {
  z-index: 1;
}
.u-box-shadow.u-section-row:nth-child(9) {
  z-index: 2;
}
.u-box-shadow.u-section-row:nth-child(8) {
  z-index: 3;
}
.u-box-shadow.u-section-row:nth-child(7) {
  z-index: 4;
}
.u-box-shadow.u-section-row:nth-child(6) {
  z-index: 5;
}
.u-box-shadow.u-section-row:nth-child(5) {
  z-index: 6;
}
.u-box-shadow.u-section-row:nth-child(4) {
  z-index: 7;
}
.u-box-shadow.u-section-row:nth-child(3) {
  z-index: 8;
}
.u-box-shadow.u-section-row:nth-child(2) {
  z-index: 9;
}
.u-box-shadow.u-section-row:nth-child(1) {
  z-index: 10;
}
.u-hover-box {
  overflow: hidden;
}
.u-hover-box .u-over-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #000;
  position: absolute;
  width: 15.625em;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid grey;
  border-radius: .263921875em;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}
.qs-datepicker-container * {
  box-sizing: border-box;
}
.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qs-hidden {
  display: none;
}
.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: .5em;
  z-index: 1;
  opacity: 1;
  transition: opacity .3s;
  display: flex;
  flex-direction: column;
}
.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}
.qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: .875em;
  padding: .25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.qs-overlay .qs-close {
  padding: .5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: .263921875em;
  padding: .5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}
.qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}
.qs-overlay .qs-overlay-month-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}
.qs-overlay .qs-overlay-month {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(33.33333333%);
  cursor: pointer;
  opacity: .5;
  transition: opacity 0.15s;
}
.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}
.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: #d3d3d3;
  filter: blur(0);
  transition: filter .3s;
  transition: filter 0.3s;
}
.qs-controls.qs-blur {
  filter: blur(5px);
}
.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: .263921875em;
  transition: background 0.15s;
}
.qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}
.qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}
.qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}
.qs-arrow:after {
  content: "";
  border: 0.390625em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}
.qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  transform: translate(25%, -50%);
}
.qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  transform: translate(-25%, -50%);
}
.qs-month-year {
  font-weight: 700;
  transition: border .2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}
.qs-month-year:hover {
  border-bottom: 1px solid grey;
}
.qs-month-year:active:focus,
.qs-month-year:focus {
  outline: none;
}
.qs-month {
  padding-right: 0.5ex;
}
.qs-year {
  padding-left: 0.5ex;
}
.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: .3125em;
  filter: blur(0);
  transition: filter .3s;
  transition: filter 0.3s;
}
.qs-squares.qs-blur {
  filter: blur(5px);
}
.qs-square {
  width: calc(14.28571429%);
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .1s;
  border-radius: 0.26392188em;
}
.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #CCCCCC;
}
.qs-current {
  font-weight: 700;
  text-decoration: underline;
}
.qs-active,
.qs-range-end,
.qs-range-start {
  background: #add8e6;
}
.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.qs-range-middle {
  background: #d4ebf2;
}
.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}
.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.qs-disabled,
.qs-outside-current-month {
  opacity: 0.2;
}
.qs-disabled {
  cursor: not-allowed;
}
.qs-day,
.qs-empty {
  cursor: default;
}
.qs-day {
  font-weight: 700;
  color: grey;
}
.qs-event {
  position: relative;
}
.qs-event:after {
  content: "";
  position: absolute;
  width: .46875em;
  height: .46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}
.u-payment-dialog .u-dialog {
  max-height: 100vh;
  overflow: auto;
}
.payment-error,
.payment-success {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.payment-error {
  background-color: #F95D51;
}
.payment-success {
  background-color: #62C584;
}
.payment-total-container {
  font-weight: 700;
  font-size: 1.25rem;
  clear: both;
}
.payment-total-label {
  float: left;
}
.payment-total-price {
  float: right;
}
span.product-remove:after {
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  content: "\D7";
  font-size: 1rem;
  color: #a3a3a3;
  background: transparent;
  border: 1px solid #a3a3a3;
  cursor: pointer;
  opacity: 0.70;
  height: 35px;
  width: 35px;
}
.iti {
  position: relative;
  display: inline-block;
  width: inherit;
}
.iti .iti__flag-container ul {
  margin: 0 0 0 -1px;
}
.iti * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti input,
.iti input[type=text],
.iti input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #CCC;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti__country-list--dropup {
  bottom: 100%;
  margin-bottom: -1px;
}
@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}
.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #CCC;
}
.iti__country {
  padding: 5px 10px;
  outline: none;
}
.iti__dial-code {
  color: #999;
}
.iti__country.iti__highlight {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti__flag-box,
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}
.iti__flag-box,
.iti__country-name {
  margin-right: 6px;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}
.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}
.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
  cursor: default;
}
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}
.iti--container {
  position: absolute;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}
.iti--container:hover {
  cursor: pointer;
}
.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
}
.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%;
}
.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}
.iti__flag {
  width: 20px;
}
.iti__flag.iti__be {
  width: 18px;
}
.iti__flag.iti__ch {
  width: 15px;
}
.iti__flag.iti__mc {
  width: 19px;
}
.iti__flag.iti__ne {
  width: 18px;
}
.iti__flag.iti__np {
  width: 13px;
}
.iti__flag.iti__va {
  width: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-size: 5652px 15px;
  }
}
.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}
.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}
.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}
.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}
.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}
.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}
.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}
.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}
.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}
.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}
.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}
.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}
.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}
.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}
.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}
.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}
.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}
.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}
.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}
.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}
.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}
.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}
.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}
.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}
.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}
.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}
.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}
.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}
.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}
.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}
.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}
.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}
.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}
.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}
.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}
.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}
.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}
.iti__flag.iti__bz {
  height: 14px;
  background-position: -812px 0px;
}
.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}
.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}
.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}
.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}
.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}
.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}
.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}
.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}
.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}
.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}
.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}
.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}
.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}
.iti__flag.iti__cr {
  height: 12px;
  background-position: -1115px 0px;
}
.iti__flag.iti__cu {
  height: 10px;
  background-position: -1137px 0px;
}
.iti__flag.iti__cv {
  height: 12px;
  background-position: -1159px 0px;
}
.iti__flag.iti__cw {
  height: 14px;
  background-position: -1181px 0px;
}
.iti__flag.iti__cx {
  height: 10px;
  background-position: -1203px 0px;
}
.iti__flag.iti__cy {
  height: 14px;
  background-position: -1225px 0px;
}
.iti__flag.iti__cz {
  height: 14px;
  background-position: -1247px 0px;
}
.iti__flag.iti__de {
  height: 12px;
  background-position: -1269px 0px;
}
.iti__flag.iti__dg {
  height: 10px;
  background-position: -1291px 0px;
}
.iti__flag.iti__dj {
  height: 14px;
  background-position: -1313px 0px;
}
.iti__flag.iti__dk {
  height: 15px;
  background-position: -1335px 0px;
}
.iti__flag.iti__dm {
  height: 10px;
  background-position: -1357px 0px;
}
.iti__flag.iti__do {
  height: 14px;
  background-position: -1379px 0px;
}
.iti__flag.iti__dz {
  height: 14px;
  background-position: -1401px 0px;
}
.iti__flag.iti__ea {
  height: 14px;
  background-position: -1423px 0px;
}
.iti__flag.iti__ec {
  height: 14px;
  background-position: -1445px 0px;
}
.iti__flag.iti__ee {
  height: 13px;
  background-position: -1467px 0px;
}
.iti__flag.iti__eg {
  height: 14px;
  background-position: -1489px 0px;
}
.iti__flag.iti__eh {
  height: 10px;
  background-position: -1511px 0px;
}
.iti__flag.iti__er {
  height: 10px;
  background-position: -1533px 0px;
}
.iti__flag.iti__es {
  height: 14px;
  background-position: -1555px 0px;
}
.iti__flag.iti__et {
  height: 10px;
  background-position: -1577px 0px;
}
.iti__flag.iti__eu {
  height: 14px;
  background-position: -1599px 0px;
}
.iti__flag.iti__fi {
  height: 12px;
  background-position: -1621px 0px;
}
.iti__flag.iti__fj {
  height: 10px;
  background-position: -1643px 0px;
}
.iti__flag.iti__fk {
  height: 10px;
  background-position: -1665px 0px;
}
.iti__flag.iti__fm {
  height: 11px;
  background-position: -1687px 0px;
}
.iti__flag.iti__fo {
  height: 15px;
  background-position: -1709px 0px;
}
.iti__flag.iti__fr {
  height: 14px;
  background-position: -1731px 0px;
}
.iti__flag.iti__ga {
  height: 15px;
  background-position: -1753px 0px;
}
.iti__flag.iti__gb {
  height: 10px;
  background-position: -1775px 0px;
}
.iti__flag.iti__gd {
  height: 12px;
  background-position: -1797px 0px;
}
.iti__flag.iti__ge {
  height: 14px;
  background-position: -1819px 0px;
}
.iti__flag.iti__gf {
  height: 14px;
  background-position: -1841px 0px;
}
.iti__flag.iti__gg {
  height: 14px;
  background-position: -1863px 0px;
}
.iti__flag.iti__gh {
  height: 14px;
  background-position: -1885px 0px;
}
.iti__flag.iti__gi {
  height: 10px;
  background-position: -1907px 0px;
}
.iti__flag.iti__gl {
  height: 14px;
  background-position: -1929px 0px;
}
.iti__flag.iti__gm {
  height: 14px;
  background-position: -1951px 0px;
}
.iti__flag.iti__gn {
  height: 14px;
  background-position: -1973px 0px;
}
.iti__flag.iti__gp {
  height: 14px;
  background-position: -1995px 0px;
}
.iti__flag.iti__gq {
  height: 14px;
  background-position: -2017px 0px;
}
.iti__flag.iti__gr {
  height: 14px;
  background-position: -2039px 0px;
}
.iti__flag.iti__gs {
  height: 10px;
  background-position: -2061px 0px;
}
.iti__flag.iti__gt {
  height: 13px;
  background-position: -2083px 0px;
}
.iti__flag.iti__gu {
  height: 11px;
  background-position: -2105px 0px;
}
.iti__flag.iti__gw {
  height: 10px;
  background-position: -2127px 0px;
}
.iti__flag.iti__gy {
  height: 12px;
  background-position: -2149px 0px;
}
.iti__flag.iti__hk {
  height: 14px;
  background-position: -2171px 0px;
}
.iti__flag.iti__hm {
  height: 10px;
  background-position: -2193px 0px;
}
.iti__flag.iti__hn {
  height: 10px;
  background-position: -2215px 0px;
}
.iti__flag.iti__hr {
  height: 10px;
  background-position: -2237px 0px;
}
.iti__flag.iti__ht {
  height: 12px;
  background-position: -2259px 0px;
}
.iti__flag.iti__hu {
  height: 10px;
  background-position: -2281px 0px;
}
.iti__flag.iti__ic {
  height: 14px;
  background-position: -2303px 0px;
}
.iti__flag.iti__id {
  height: 14px;
  background-position: -2325px 0px;
}
.iti__flag.iti__ie {
  height: 10px;
  background-position: -2347px 0px;
}
.iti__flag.iti__il {
  height: 15px;
  background-position: -2369px 0px;
}
.iti__flag.iti__im {
  height: 10px;
  background-position: -2391px 0px;
}
.iti__flag.iti__in {
  height: 14px;
  background-position: -2413px 0px;
}
.iti__flag.iti__io {
  height: 10px;
  background-position: -2435px 0px;
}
.iti__flag.iti__iq {
  height: 14px;
  background-position: -2457px 0px;
}
.iti__flag.iti__ir {
  height: 12px;
  background-position: -2479px 0px;
}
.iti__flag.iti__is {
  height: 15px;
  background-position: -2501px 0px;
}
.iti__flag.iti__it {
  height: 14px;
  background-position: -2523px 0px;
}
.iti__flag.iti__je {
  height: 12px;
  background-position: -2545px 0px;
}
.iti__flag.iti__jm {
  height: 10px;
  background-position: -2567px 0px;
}
.iti__flag.iti__jo {
  height: 10px;
  background-position: -2589px 0px;
}
.iti__flag.iti__jp {
  height: 14px;
  background-position: -2611px 0px;
}
.iti__flag.iti__ke {
  height: 14px;
  background-position: -2633px 0px;
}
.iti__flag.iti__kg {
  height: 12px;
  background-position: -2655px 0px;
}
.iti__flag.iti__kh {
  height: 13px;
  background-position: -2677px 0px;
}
.iti__flag.iti__ki {
  height: 10px;
  background-position: -2699px 0px;
}
.iti__flag.iti__km {
  height: 12px;
  background-position: -2721px 0px;
}
.iti__flag.iti__kn {
  height: 14px;
  background-position: -2743px 0px;
}
.iti__flag.iti__kp {
  height: 10px;
  background-position: -2765px 0px;
}
.iti__flag.iti__kr {
  height: 14px;
  background-position: -2787px 0px;
}
.iti__flag.iti__kw {
  height: 10px;
  background-position: -2809px 0px;
}
.iti__flag.iti__ky {
  height: 10px;
  background-position: -2831px 0px;
}
.iti__flag.iti__kz {
  height: 10px;
  background-position: -2853px 0px;
}
.iti__flag.iti__la {
  height: 14px;
  background-position: -2875px 0px;
}
.iti__flag.iti__lb {
  height: 14px;
  background-position: -2897px 0px;
}
.iti__flag.iti__lc {
  height: 10px;
  background-position: -2919px 0px;
}
.iti__flag.iti__li {
  height: 12px;
  background-position: -2941px 0px;
}
.iti__flag.iti__lk {
  height: 10px;
  background-position: -2963px 0px;
}
.iti__flag.iti__lr {
  height: 11px;
  background-position: -2985px 0px;
}
.iti__flag.iti__ls {
  height: 14px;
  background-position: -3007px 0px;
}
.iti__flag.iti__lt {
  height: 12px;
  background-position: -3029px 0px;
}
.iti__flag.iti__lu {
  height: 12px;
  background-position: -3051px 0px;
}
.iti__flag.iti__lv {
  height: 10px;
  background-position: -3073px 0px;
}
.iti__flag.iti__ly {
  height: 10px;
  background-position: -3095px 0px;
}
.iti__flag.iti__ma {
  height: 14px;
  background-position: -3117px 0px;
}
.iti__flag.iti__mc {
  height: 15px;
  background-position: -3139px 0px;
}
.iti__flag.iti__md {
  height: 10px;
  background-position: -3160px 0px;
}
.iti__flag.iti__me {
  height: 10px;
  background-position: -3182px 0px;
}
.iti__flag.iti__mf {
  height: 14px;
  background-position: -3204px 0px;
}
.iti__flag.iti__mg {
  height: 14px;
  background-position: -3226px 0px;
}
.iti__flag.iti__mh {
  height: 11px;
  background-position: -3248px 0px;
}
.iti__flag.iti__mk {
  height: 10px;
  background-position: -3270px 0px;
}
.iti__flag.iti__ml {
  height: 14px;
  background-position: -3292px 0px;
}
.iti__flag.iti__mm {
  height: 14px;
  background-position: -3314px 0px;
}
.iti__flag.iti__mn {
  height: 10px;
  background-position: -3336px 0px;
}
.iti__flag.iti__mo {
  height: 14px;
  background-position: -3358px 0px;
}
.iti__flag.iti__mp {
  height: 10px;
  background-position: -3380px 0px;
}
.iti__flag.iti__mq {
  height: 14px;
  background-position: -3402px 0px;
}
.iti__flag.iti__mr {
  height: 14px;
  background-position: -3424px 0px;
}
.iti__flag.iti__ms {
  height: 10px;
  background-position: -3446px 0px;
}
.iti__flag.iti__mt {
  height: 14px;
  background-position: -3468px 0px;
}
.iti__flag.iti__mu {
  height: 14px;
  background-position: -3490px 0px;
}
.iti__flag.iti__mv {
  height: 14px;
  background-position: -3512px 0px;
}
.iti__flag.iti__mw {
  height: 14px;
  background-position: -3534px 0px;
}
.iti__flag.iti__mx {
  height: 12px;
  background-position: -3556px 0px;
}
.iti__flag.iti__my {
  height: 10px;
  background-position: -3578px 0px;
}
.iti__flag.iti__mz {
  height: 14px;
  background-position: -3600px 0px;
}
.iti__flag.iti__na {
  height: 14px;
  background-position: -3622px 0px;
}
.iti__flag.iti__nc {
  height: 10px;
  background-position: -3644px 0px;
}
.iti__flag.iti__ne {
  height: 15px;
  background-position: -3666px 0px;
}
.iti__flag.iti__nf {
  height: 10px;
  background-position: -3686px 0px;
}
.iti__flag.iti__ng {
  height: 10px;
  background-position: -3708px 0px;
}
.iti__flag.iti__ni {
  height: 12px;
  background-position: -3730px 0px;
}
.iti__flag.iti__nl {
  height: 14px;
  background-position: -3752px 0px;
}
.iti__flag.iti__no {
  height: 15px;
  background-position: -3774px 0px;
}
.iti__flag.iti__np {
  height: 15px;
  background-position: -3796px 0px;
}
.iti__flag.iti__nr {
  height: 10px;
  background-position: -3811px 0px;
}
.iti__flag.iti__nu {
  height: 10px;
  background-position: -3833px 0px;
}
.iti__flag.iti__nz {
  height: 10px;
  background-position: -3855px 0px;
}
.iti__flag.iti__om {
  height: 10px;
  background-position: -3877px 0px;
}
.iti__flag.iti__pa {
  height: 14px;
  background-position: -3899px 0px;
}
.iti__flag.iti__pe {
  height: 14px;
  background-position: -3921px 0px;
}
.iti__flag.iti__pf {
  height: 14px;
  background-position: -3943px 0px;
}
.iti__flag.iti__pg {
  height: 15px;
  background-position: -3965px 0px;
}
.iti__flag.iti__ph {
  height: 10px;
  background-position: -3987px 0px;
}
.iti__flag.iti__pk {
  height: 14px;
  background-position: -4009px 0px;
}
.iti__flag.iti__pl {
  height: 13px;
  background-position: -4031px 0px;
}
.iti__flag.iti__pm {
  height: 14px;
  background-position: -4053px 0px;
}
.iti__flag.iti__pn {
  height: 10px;
  background-position: -4075px 0px;
}
.iti__flag.iti__pr {
  height: 14px;
  background-position: -4097px 0px;
}
.iti__flag.iti__ps {
  height: 10px;
  background-position: -4119px 0px;
}
.iti__flag.iti__pt {
  height: 14px;
  background-position: -4141px 0px;
}
.iti__flag.iti__pw {
  height: 13px;
  background-position: -4163px 0px;
}
.iti__flag.iti__py {
  height: 11px;
  background-position: -4185px 0px;
}
.iti__flag.iti__qa {
  height: 8px;
  background-position: -4207px 0px;
}
.iti__flag.iti__re {
  height: 14px;
  background-position: -4229px 0px;
}
.iti__flag.iti__ro {
  height: 14px;
  background-position: -4251px 0px;
}
.iti__flag.iti__rs {
  height: 14px;
  background-position: -4273px 0px;
}
.iti__flag.iti__ru {
  height: 14px;
  background-position: -4295px 0px;
}
.iti__flag.iti__rw {
  height: 14px;
  background-position: -4317px 0px;
}
.iti__flag.iti__sa {
  height: 14px;
  background-position: -4339px 0px;
}
.iti__flag.iti__sb {
  height: 10px;
  background-position: -4361px 0px;
}
.iti__flag.iti__sc {
  height: 10px;
  background-position: -4383px 0px;
}
.iti__flag.iti__sd {
  height: 10px;
  background-position: -4405px 0px;
}
.iti__flag.iti__se {
  height: 13px;
  background-position: -4427px 0px;
}
.iti__flag.iti__sg {
  height: 14px;
  background-position: -4449px 0px;
}
.iti__flag.iti__sh {
  height: 10px;
  background-position: -4471px 0px;
}
.iti__flag.iti__si {
  height: 10px;
  background-position: -4493px 0px;
}
.iti__flag.iti__sj {
  height: 15px;
  background-position: -4515px 0px;
}
.iti__flag.iti__sk {
  height: 14px;
  background-position: -4537px 0px;
}
.iti__flag.iti__sl {
  height: 14px;
  background-position: -4559px 0px;
}
.iti__flag.iti__sm {
  height: 15px;
  background-position: -4581px 0px;
}
.iti__flag.iti__sn {
  height: 14px;
  background-position: -4603px 0px;
}
.iti__flag.iti__so {
  height: 14px;
  background-position: -4625px 0px;
}
.iti__flag.iti__sr {
  height: 14px;
  background-position: -4647px 0px;
}
.iti__flag.iti__ss {
  height: 10px;
  background-position: -4669px 0px;
}
.iti__flag.iti__st {
  height: 10px;
  background-position: -4691px 0px;
}
.iti__flag.iti__sv {
  height: 12px;
  background-position: -4713px 0px;
}
.iti__flag.iti__sx {
  height: 14px;
  background-position: -4735px 0px;
}
.iti__flag.iti__sy {
  height: 14px;
  background-position: -4757px 0px;
}
.iti__flag.iti__sz {
  height: 14px;
  background-position: -4779px 0px;
}
.iti__flag.iti__ta {
  height: 10px;
  background-position: -4801px 0px;
}
.iti__flag.iti__tc {
  height: 10px;
  background-position: -4823px 0px;
}
.iti__flag.iti__td {
  height: 14px;
  background-position: -4845px 0px;
}
.iti__flag.iti__tf {
  height: 14px;
  background-position: -4867px 0px;
}
.iti__flag.iti__tg {
  height: 13px;
  background-position: -4889px 0px;
}
.iti__flag.iti__th {
  height: 14px;
  background-position: -4911px 0px;
}
.iti__flag.iti__tj {
  height: 10px;
  background-position: -4933px 0px;
}
.iti__flag.iti__tk {
  height: 10px;
  background-position: -4955px 0px;
}
.iti__flag.iti__tl {
  height: 10px;
  background-position: -4977px 0px;
}
.iti__flag.iti__tm {
  height: 14px;
  background-position: -4999px 0px;
}
.iti__flag.iti__tn {
  height: 14px;
  background-position: -5021px 0px;
}
.iti__flag.iti__to {
  height: 10px;
  background-position: -5043px 0px;
}
.iti__flag.iti__tr {
  height: 14px;
  background-position: -5065px 0px;
}
.iti__flag.iti__tt {
  height: 12px;
  background-position: -5087px 0px;
}
.iti__flag.iti__tv {
  height: 10px;
  background-position: -5109px 0px;
}
.iti__flag.iti__tw {
  height: 14px;
  background-position: -5131px 0px;
}
.iti__flag.iti__tz {
  height: 14px;
  background-position: -5153px 0px;
}
.iti__flag.iti__ua {
  height: 14px;
  background-position: -5175px 0px;
}
.iti__flag.iti__ug {
  height: 14px;
  background-position: -5197px 0px;
}
.iti__flag.iti__um {
  height: 11px;
  background-position: -5219px 0px;
}
.iti__flag.iti__un {
  height: 14px;
  background-position: -5241px 0px;
}
.iti__flag.iti__us {
  height: 11px;
  background-position: -5263px 0px;
}
.iti__flag.iti__uy {
  height: 14px;
  background-position: -5285px 0px;
}
.iti__flag.iti__uz {
  height: 10px;
  background-position: -5307px 0px;
}
.iti__flag.iti__va {
  height: 15px;
  background-position: -5329px 0px;
}
.iti__flag.iti__vc {
  height: 14px;
  background-position: -5346px 0px;
}
.iti__flag.iti__ve {
  height: 14px;
  background-position: -5368px 0px;
}
.iti__flag.iti__vg {
  height: 10px;
  background-position: -5390px 0px;
}
.iti__flag.iti__vi {
  height: 14px;
  background-position: -5412px 0px;
}
.iti__flag.iti__vn {
  height: 14px;
  background-position: -5434px 0px;
}
.iti__flag.iti__vu {
  height: 12px;
  background-position: -5456px 0px;
}
.iti__flag.iti__wf {
  height: 14px;
  background-position: -5478px 0px;
}
.iti__flag.iti__ws {
  height: 10px;
  background-position: -5500px 0px;
}
.iti__flag.iti__xk {
  height: 15px;
  background-position: -5522px 0px;
}
.iti__flag.iti__ye {
  height: 14px;
  background-position: -5544px 0px;
}
.iti__flag.iti__yt {
  height: 14px;
  background-position: -5566px 0px;
}
.iti__flag.iti__za {
  height: 14px;
  background-position: -5588px 0px;
}
.iti__flag.iti__zm {
  height: 14px;
  background-position: -5610px 0px;
}
.iti__flag.iti__zw {
  height: 10px;
  background-position: -5632px 0px;
}
.iti__flag.iti__np {
  background-color: transparent;
}
.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0;
}
.u-carousel {
  position: relative;
}
.u-carousel.pointer-event {
  touch-action: pan-y;
}
.u-carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.u-carousel-item {
  position: relative;
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
  transform: translate3d(0, 0, 0);
}
.u-carousel .u-carousel-item {
  display: none;
}
.u-carousel-item.u-active,
.u-carousel-item.u-carousel-item-next,
.u-carousel-item.u-carousel-item-prev {
  display: block;
}
.u-carousel-item-next,
.u-carousel-item-prev {
  position: absolute;
  top: 0;
}
.u-carousel-item-next.u-carousel-item-left,
.u-carousel-item-prev.u-carousel-item-right {
  transform: translate3d(0, 0, 0);
}
.u-carousel-item-next,
.u-active.u-carousel-item-right {
  transform: translate3d(100%, 0, 0);
}
.u-carousel-item-prev,
.u-active.u-carousel-item-left {
  transform: translate3d(-100%, 0, 0);
}
.u-gallery-nav-prev,
.u-gallery-nav-next,
.u-carousel-control-prev,
.u-carousel-control-next {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  border: 0 none transparent;
  outline-width: 0;
  background-color: transparent;
  margin: 0;
  -webkit-text-decoration-skip: objects;
  border: none;
  margin: 0 !important;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
}
.u-gallery-nav-prev span svg,
.u-gallery-nav-next span svg,
.u-carousel-control-prev span svg,
.u-carousel-control-next span svg {
  vertical-align: top;
  fill: currentColor;
}
.u-gallery-nav-prev:focus,
.u-gallery-nav-prev:hover,
.u-gallery-nav-next:focus,
.u-gallery-nav-next:hover,
.u-carousel-control-prev:focus,
.u-carousel-control-prev:hover,
.u-carousel-control-next:focus,
.u-carousel-control-next:hover {
  text-decoration: none;
  outline: 0;
}
.u-gallery-nav-prev,
.u-carousel-control-prev {
  left: 0;
}
.u-gallery-nav-next,
.u-carousel-control-next {
  right: 0;
}
.u-gallery-nav > span,
.u-carousel-control > span {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.u-gallery-nav,
.u-carousel-control {
  display: inline-block;
  height: 65px;
  width: 65px;
  z-index: 2;
}
.u-carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.u-carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.u-carousel-indicators {
  position: absolute;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.u-carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
}
.u-carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.u-carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.u-carousel-indicators li.u-active {
  opacity: 1;
}
.u-carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.u-carousel-duration-10000 .u-carousel-inner .u-carousel-item {
  transition-duration: 10000ms;
}
.u-carousel-duration-9750 .u-carousel-inner .u-carousel-item {
  transition-duration: 9750ms;
}
.u-carousel-duration-9500 .u-carousel-inner .u-carousel-item {
  transition-duration: 9500ms;
}
.u-carousel-duration-9250 .u-carousel-inner .u-carousel-item {
  transition-duration: 9250ms;
}
.u-carousel-duration-9000 .u-carousel-inner .u-carousel-item {
  transition-duration: 9000ms;
}
.u-carousel-duration-8750 .u-carousel-inner .u-carousel-item {
  transition-duration: 8750ms;
}
.u-carousel-duration-8500 .u-carousel-inner .u-carousel-item {
  transition-duration: 8500ms;
}
.u-carousel-duration-8250 .u-carousel-inner .u-carousel-item {
  transition-duration: 8250ms;
}
.u-carousel-duration-8000 .u-carousel-inner .u-carousel-item {
  transition-duration: 8000ms;
}
.u-carousel-duration-7750 .u-carousel-inner .u-carousel-item {
  transition-duration: 7750ms;
}
.u-carousel-duration-7500 .u-carousel-inner .u-carousel-item {
  transition-duration: 7500ms;
}
.u-carousel-duration-7250 .u-carousel-inner .u-carousel-item {
  transition-duration: 7250ms;
}
.u-carousel-duration-7000 .u-carousel-inner .u-carousel-item {
  transition-duration: 7000ms;
}
.u-carousel-duration-6750 .u-carousel-inner .u-carousel-item {
  transition-duration: 6750ms;
}
.u-carousel-duration-6500 .u-carousel-inner .u-carousel-item {
  transition-duration: 6500ms;
}
.u-carousel-duration-6250 .u-carousel-inner .u-carousel-item {
  transition-duration: 6250ms;
}
.u-carousel-duration-6000 .u-carousel-inner .u-carousel-item {
  transition-duration: 6000ms;
}
.u-carousel-duration-5750 .u-carousel-inner .u-carousel-item {
  transition-duration: 5750ms;
}
.u-carousel-duration-5500 .u-carousel-inner .u-carousel-item {
  transition-duration: 5500ms;
}
.u-carousel-duration-5250 .u-carousel-inner .u-carousel-item {
  transition-duration: 5250ms;
}
.u-carousel-duration-5000 .u-carousel-inner .u-carousel-item {
  transition-duration: 5000ms;
}
.u-carousel-duration-4750 .u-carousel-inner .u-carousel-item {
  transition-duration: 4750ms;
}
.u-carousel-duration-4500 .u-carousel-inner .u-carousel-item {
  transition-duration: 4500ms;
}
.u-carousel-duration-4250 .u-carousel-inner .u-carousel-item {
  transition-duration: 4250ms;
}
.u-carousel-duration-4000 .u-carousel-inner .u-carousel-item {
  transition-duration: 4000ms;
}
.u-carousel-duration-3750 .u-carousel-inner .u-carousel-item {
  transition-duration: 3750ms;
}
.u-carousel-duration-3500 .u-carousel-inner .u-carousel-item {
  transition-duration: 3500ms;
}
.u-carousel-duration-3250 .u-carousel-inner .u-carousel-item {
  transition-duration: 3250ms;
}
.u-carousel-duration-3000 .u-carousel-inner .u-carousel-item {
  transition-duration: 3000ms;
}
.u-carousel-duration-2750 .u-carousel-inner .u-carousel-item {
  transition-duration: 2750ms;
}
.u-carousel-duration-2500 .u-carousel-inner .u-carousel-item {
  transition-duration: 2500ms;
}
.u-carousel-duration-2250 .u-carousel-inner .u-carousel-item {
  transition-duration: 2250ms;
}
.u-carousel-duration-2000 .u-carousel-inner .u-carousel-item {
  transition-duration: 2000ms;
}
.u-carousel-duration-1750 .u-carousel-inner .u-carousel-item {
  transition-duration: 1750ms;
}
.u-carousel-duration-1500 .u-carousel-inner .u-carousel-item {
  transition-duration: 1500ms;
}
.u-carousel-duration-1250 .u-carousel-inner .u-carousel-item {
  transition-duration: 1250ms;
}
.u-carousel-duration-1000 .u-carousel-inner .u-carousel-item {
  transition-duration: 1000ms;
}
.u-carousel-duration-750 .u-carousel-inner .u-carousel-item {
  transition-duration: 750ms;
}
.u-carousel-duration-500 .u-carousel-inner .u-carousel-item {
  transition-duration: 500ms;
}
.u-carousel-duration-250 .u-carousel-inner .u-carousel-item {
  transition-duration: 250ms;
}
.u-carousel-duration-0 .u-carousel-inner .u-carousel-item {
  transition-duration: 0ms;
}
.u-carousel-fade .u-carousel-inner .u-carousel-item {
  opacity: 0;
  transition-property: opacity;
}
.u-carousel-fade .u-carousel-inner .u-active {
  opacity: 1;
}
.u-carousel-fade .u-carousel-inner .u-active.u-carousel-item-left,
.u-carousel-fade .u-carousel-inner .u-active.u-carousel-item-right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.u-carousel-fade .u-carousel-inner .u-carousel-item-next.u-carousel-item-left,
.u-carousel-fade .u-carousel-inner .u-carousel-item-prev.u-carousel-item-right {
  opacity: 1;
}
.u-carousel-fade .u-carousel-control {
  z-index: 2;
}
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-carousel-item-next,
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-active.u-carousel-item-right {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform-3d: translate3d(0, 0, 0);
}
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-carousel-item-prev,
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-active.u-carousel-item-left {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform-3d: translate3d(0, 0, 0);
}
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-carousel-item-next.u-carousel-item-left,
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-carousel-item-prev.u-carousel-item-right,
.u-carousel-fade .u-carousel-inner > .u-carousel-item.u-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform-3d: translate3d(0, 0, 0);
}
.u-carousel-top .u-carousel-inner .u-carousel-item-next.u-carousel-item-left,
.u-carousel-top .u-carousel-inner .u-carousel-item-prev.u-carousel-item-right {
  transform: translate3d(0, 0, 0);
}
.u-carousel-top .u-carousel-inner .u-carousel-item-next,
.u-carousel-top .u-carousel-inner .u-active.u-carousel-item-right {
  transform: translate3d(0, 100%, 0);
}
.u-carousel-top .u-carousel-inner .u-carousel-item-prev,
.u-carousel-top .u-carousel-inner .u-active.u-carousel-item-left {
  transform: translate3d(0, -100%, 0);
}
.u-carousel-bottom .u-carousel-inner .u-carousel-item-next.u-carousel-item-left,
.u-carousel-bottom .u-carousel-inner .u-carousel-item-prev.u-carousel-item-right {
  transform: translate3d(0, 0, 0);
}
.u-carousel-bottom .u-carousel-inner .u-carousel-item-next,
.u-carousel-bottom .u-carousel-inner .u-active.u-carousel-item-right {
  transform: translate3d(0, -100%, 0);
}
.u-carousel-bottom .u-carousel-inner .u-carousel-item-prev,
.u-carousel-bottom .u-carousel-inner .u-active.u-carousel-item-left {
  transform: translate3d(0, 100%, 0);
}
.u-carousel-right .u-carousel-inner .u-carousel-item-next.u-carousel-item-left,
.u-carousel-right .u-carousel-inner .u-carousel-item-prev.u-carousel-item-right {
  transform: translate3d(0, 0, 0);
}
.u-carousel-right .u-carousel-inner .u-carousel-item-next,
.u-carousel-right .u-carousel-inner .u-active.u-carousel-item-right {
  transform: translate3d(-100%, 0, 0);
}
.u-carousel-right .u-carousel-inner .u-carousel-item-prev,
.u-carousel-right .u-carousel-inner .u-active.u-carousel-item-left {
  transform: translate3d(100%, 0, 0);
}
.u-form,
.u-tab-payment {
  --checkbox-checked-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23478ac9' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  --radio-checked-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23478ac9'/%3e%3c/svg%3e");
}
.u-field-input {
  border: 0;
}
.u-field-input[class*="u-grey-"],
.u-field-input[class*="u-white"],
.u-field-input[class*="u-black"],
.u-field-input[class*="u-palette-"],
.u-field-input[class*="u-custom-color-"],
.u-field-input[class*="u-active-"],
.u-field-input[class*="u-hover-"],
.u-field-input[class*="u-border-"] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.u-field-input[class*="u-grey-"][type="checkbox"]:checked,
.u-field-input[class*="u-white"][type="checkbox"]:checked,
.u-field-input[class*="u-black"][type="checkbox"]:checked,
.u-field-input[class*="u-palette-"][type="checkbox"]:checked,
.u-field-input[class*="u-custom-color-"][type="checkbox"]:checked,
.u-field-input[class*="u-active-"][type="checkbox"]:checked,
.u-field-input[class*="u-hover-"][type="checkbox"]:checked,
.u-field-input[class*="u-border-"][type="checkbox"]:checked {
  background-image: var(--checkbox-checked-icon);
}
.u-field-input[class*="u-grey-"][type="radio"]:checked,
.u-field-input[class*="u-white"][type="radio"]:checked,
.u-field-input[class*="u-black"][type="radio"]:checked,
.u-field-input[class*="u-palette-"][type="radio"]:checked,
.u-field-input[class*="u-custom-color-"][type="radio"]:checked,
.u-field-input[class*="u-active-"][type="radio"]:checked,
.u-field-input[class*="u-hover-"][type="radio"]:checked,
.u-field-input[class*="u-border-"][type="radio"]:checked {
  background-image: var(--radio-checked-icon);
}
.u-field-input.u-appearance-auto[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}
.u-field-input.u-appearance-auto[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
}
.u-field-input.u-appearance-auto {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: initial !important;
  height: initial !important;
  margin-top: 0 !important;
}
[class*="u-border-"],
.u-input,
.u-field-input,
.u-link[class*="u-border-"] {
  border-style: solid;
}
.u-border-0,
.u-separator-0:after,
.u-text.u-border-0,
.u-input.u-border-0,
.u-field-input.u-field-input.u-border-0,
a.u-button-style.u-border-0 {
  border-width: 0px;
}
.u-shape-svg.u-border-0 {
  stroke-width: 0px;
}
.u-link.u-border-0 {
  border-width: 0 0 0px 0;
}
.u-border-1,
.u-separator-1:after,
.u-text.u-border-1,
.u-input.u-border-1,
.u-field-input.u-field-input.u-border-1,
a.u-button-style.u-border-1 {
  border-width: 1px;
}
.u-shape-svg.u-border-1 {
  stroke-width: 1px;
}
.u-link.u-border-1 {
  border-width: 0 0 1px 0;
}
.u-border-2,
.u-separator-2:after,
.u-text.u-border-2,
.u-input.u-border-2,
.u-field-input.u-field-input.u-border-2,
a.u-button-style.u-border-2 {
  border-width: 2px;
}
.u-shape-svg.u-border-2 {
  stroke-width: 2px;
}
.u-link.u-border-2 {
  border-width: 0 0 2px 0;
}
.u-border-3,
.u-separator-3:after,
.u-text.u-border-3,
.u-input.u-border-3,
.u-field-input.u-field-input.u-border-3,
a.u-button-style.u-border-3 {
  border-width: 3px;
}
.u-shape-svg.u-border-3 {
  stroke-width: 3px;
}
.u-link.u-border-3 {
  border-width: 0 0 3px 0;
}
.u-border-4,
.u-separator-4:after,
.u-text.u-border-4,
.u-input.u-border-4,
.u-field-input.u-field-input.u-border-4,
a.u-button-style.u-border-4 {
  border-width: 4px;
}
.u-shape-svg.u-border-4 {
  stroke-width: 4px;
}
.u-link.u-border-4 {
  border-width: 0 0 4px 0;
}
.u-border-5,
.u-separator-5:after,
.u-text.u-border-5,
.u-input.u-border-5,
.u-field-input.u-field-input.u-border-5,
a.u-button-style.u-border-5 {
  border-width: 5px;
}
.u-shape-svg.u-border-5 {
  stroke-width: 5px;
}
.u-link.u-border-5 {
  border-width: 0 0 5px 0;
}
.u-border-6,
.u-separator-6:after,
.u-text.u-border-6,
.u-input.u-border-6,
.u-field-input.u-field-input.u-border-6,
a.u-button-style.u-border-6 {
  border-width: 6px;
}
.u-shape-svg.u-border-6 {
  stroke-width: 6px;
}
.u-link.u-border-6 {
  border-width: 0 0 6px 0;
}
.u-border-7,
.u-separator-7:after,
.u-text.u-border-7,
.u-input.u-border-7,
.u-field-input.u-field-input.u-border-7,
a.u-button-style.u-border-7 {
  border-width: 7px;
}
.u-shape-svg.u-border-7 {
  stroke-width: 7px;
}
.u-link.u-border-7 {
  border-width: 0 0 7px 0;
}
.u-border-8,
.u-separator-8:after,
.u-text.u-border-8,
.u-input.u-border-8,
.u-field-input.u-field-input.u-border-8,
a.u-button-style.u-border-8 {
  border-width: 8px;
}
.u-shape-svg.u-border-8 {
  stroke-width: 8px;
}
.u-link.u-border-8 {
  border-width: 0 0 8px 0;
}
.u-border-9,
.u-separator-9:after,
.u-text.u-border-9,
.u-input.u-border-9,
.u-field-input.u-field-input.u-border-9,
a.u-button-style.u-border-9 {
  border-width: 9px;
}
.u-shape-svg.u-border-9 {
  stroke-width: 9px;
}
.u-link.u-border-9 {
  border-width: 0 0 9px 0;
}
.u-border-10,
.u-separator-10:after,
.u-text.u-border-10,
.u-input.u-border-10,
.u-field-input.u-field-input.u-border-10,
a.u-button-style.u-border-10 {
  border-width: 10px;
}
.u-shape-svg.u-border-10 {
  stroke-width: 10px;
}
.u-link.u-border-10 {
  border-width: 0 0 10px 0;
}
.u-border-11,
.u-separator-11:after,
.u-text.u-border-11,
.u-input.u-border-11,
.u-field-input.u-field-input.u-border-11,
a.u-button-style.u-border-11 {
  border-width: 11px;
}
.u-shape-svg.u-border-11 {
  stroke-width: 11px;
}
.u-link.u-border-11 {
  border-width: 0 0 11px 0;
}
.u-border-12,
.u-separator-12:after,
.u-text.u-border-12,
.u-input.u-border-12,
.u-field-input.u-field-input.u-border-12,
a.u-button-style.u-border-12 {
  border-width: 12px;
}
.u-shape-svg.u-border-12 {
  stroke-width: 12px;
}
.u-link.u-border-12 {
  border-width: 0 0 12px 0;
}
.u-border-13,
.u-separator-13:after,
.u-text.u-border-13,
.u-input.u-border-13,
.u-field-input.u-field-input.u-border-13,
a.u-button-style.u-border-13 {
  border-width: 13px;
}
.u-shape-svg.u-border-13 {
  stroke-width: 13px;
}
.u-link.u-border-13 {
  border-width: 0 0 13px 0;
}
.u-border-14,
.u-separator-14:after,
.u-text.u-border-14,
.u-input.u-border-14,
.u-field-input.u-field-input.u-border-14,
a.u-button-style.u-border-14 {
  border-width: 14px;
}
.u-shape-svg.u-border-14 {
  stroke-width: 14px;
}
.u-link.u-border-14 {
  border-width: 0 0 14px 0;
}
.u-border-15,
.u-separator-15:after,
.u-text.u-border-15,
.u-input.u-border-15,
.u-field-input.u-field-input.u-border-15,
a.u-button-style.u-border-15 {
  border-width: 15px;
}
.u-shape-svg.u-border-15 {
  stroke-width: 15px;
}
.u-link.u-border-15 {
  border-width: 0 0 15px 0;
}
.u-border-16,
.u-separator-16:after,
.u-text.u-border-16,
.u-input.u-border-16,
.u-field-input.u-field-input.u-border-16,
a.u-button-style.u-border-16 {
  border-width: 16px;
}
.u-shape-svg.u-border-16 {
  stroke-width: 16px;
}
.u-link.u-border-16 {
  border-width: 0 0 16px 0;
}
.u-border-17,
.u-separator-17:after,
.u-text.u-border-17,
.u-input.u-border-17,
.u-field-input.u-field-input.u-border-17,
a.u-button-style.u-border-17 {
  border-width: 17px;
}
.u-shape-svg.u-border-17 {
  stroke-width: 17px;
}
.u-link.u-border-17 {
  border-width: 0 0 17px 0;
}
.u-border-18,
.u-separator-18:after,
.u-text.u-border-18,
.u-input.u-border-18,
.u-field-input.u-field-input.u-border-18,
a.u-button-style.u-border-18 {
  border-width: 18px;
}
.u-shape-svg.u-border-18 {
  stroke-width: 18px;
}
.u-link.u-border-18 {
  border-width: 0 0 18px 0;
}
.u-border-19,
.u-separator-19:after,
.u-text.u-border-19,
.u-input.u-border-19,
.u-field-input.u-field-input.u-border-19,
a.u-button-style.u-border-19 {
  border-width: 19px;
}
.u-shape-svg.u-border-19 {
  stroke-width: 19px;
}
.u-link.u-border-19 {
  border-width: 0 0 19px 0;
}
.u-border-20,
.u-separator-20:after,
.u-text.u-border-20,
.u-input.u-border-20,
.u-field-input.u-field-input.u-border-20,
a.u-button-style.u-border-20 {
  border-width: 20px;
}
.u-shape-svg.u-border-20 {
  stroke-width: 20px;
}
.u-link.u-border-20 {
  border-width: 0 0 20px 0;
}
[class*="-radius-"],
.u-radius {
  --border-radius: initial;
  --border-top-left-radius: initial;
  --border-top-right-radius: initial;
  --border-bottom-right-radius: initial;
  --border-bottom-left-radius: initial;
  --radius: initial;
  --top-left-radius: initial;
  --top-right-radius: initial;
  --bottom-right-radius: initial;
  --bottom-left-radius: initial;
}
[class*="-radius-"],
.u-radius,
[class*="-radius-"]:before,
.u-radius:before,
[class*="-radius-"] .u-background-effect,
.u-radius .u-background-effect,
[class*="-radius-"]:not(.u-hover-box) > .u-container-layout,
.u-radius:not(.u-hover-box) > .u-container-layout {
  border-radius: var(--top-left-radius, var(--border-top-left-radius, var(--radius, var(--border-radius, 0)))) var(--top-right-radius, var(--border-top-right-radius, var(--radius, var(--border-radius, 0)))) var(--bottom-right-radius, var(--border-bottom-right-radius, var(--radius, var(--border-radius, 0)))) var(--bottom-left-radius, var(--border-bottom-left-radius, var(--radius, var(--border-radius, 0)))) !important;
}
.u-radius-0 {
  --border-radius: 0px;
}
.u-top-left-radius-0 {
  --border-top-left-radius: 0px;
}
.u-top-right-radius-0 {
  --border-top-right-radius: 0px;
}
.u-bottom-right-radius-0 {
  --border-bottom-right-radius: 0px;
}
.u-bottom-left-radius-0 {
  --border-bottom-left-radius: 0px;
}
.u-radius-1 {
  --border-radius: 1px;
}
.u-top-left-radius-1 {
  --border-top-left-radius: 1px;
}
.u-top-right-radius-1 {
  --border-top-right-radius: 1px;
}
.u-bottom-right-radius-1 {
  --border-bottom-right-radius: 1px;
}
.u-bottom-left-radius-1 {
  --border-bottom-left-radius: 1px;
}
.u-radius-2 {
  --border-radius: 2px;
}
.u-top-left-radius-2 {
  --border-top-left-radius: 2px;
}
.u-top-right-radius-2 {
  --border-top-right-radius: 2px;
}
.u-bottom-right-radius-2 {
  --border-bottom-right-radius: 2px;
}
.u-bottom-left-radius-2 {
  --border-bottom-left-radius: 2px;
}
.u-radius-3 {
  --border-radius: 3px;
}
.u-top-left-radius-3 {
  --border-top-left-radius: 3px;
}
.u-top-right-radius-3 {
  --border-top-right-radius: 3px;
}
.u-bottom-right-radius-3 {
  --border-bottom-right-radius: 3px;
}
.u-bottom-left-radius-3 {
  --border-bottom-left-radius: 3px;
}
.u-radius-4 {
  --border-radius: 4px;
}
.u-top-left-radius-4 {
  --border-top-left-radius: 4px;
}
.u-top-right-radius-4 {
  --border-top-right-radius: 4px;
}
.u-bottom-right-radius-4 {
  --border-bottom-right-radius: 4px;
}
.u-bottom-left-radius-4 {
  --border-bottom-left-radius: 4px;
}
.u-radius-5 {
  --border-radius: 5px;
}
.u-top-left-radius-5 {
  --border-top-left-radius: 5px;
}
.u-top-right-radius-5 {
  --border-top-right-radius: 5px;
}
.u-bottom-right-radius-5 {
  --border-bottom-right-radius: 5px;
}
.u-bottom-left-radius-5 {
  --border-bottom-left-radius: 5px;
}
.u-radius-6 {
  --border-radius: 6px;
}
.u-top-left-radius-6 {
  --border-top-left-radius: 6px;
}
.u-top-right-radius-6 {
  --border-top-right-radius: 6px;
}
.u-bottom-right-radius-6 {
  --border-bottom-right-radius: 6px;
}
.u-bottom-left-radius-6 {
  --border-bottom-left-radius: 6px;
}
.u-radius-7 {
  --border-radius: 7px;
}
.u-top-left-radius-7 {
  --border-top-left-radius: 7px;
}
.u-top-right-radius-7 {
  --border-top-right-radius: 7px;
}
.u-bottom-right-radius-7 {
  --border-bottom-right-radius: 7px;
}
.u-bottom-left-radius-7 {
  --border-bottom-left-radius: 7px;
}
.u-radius-8 {
  --border-radius: 8px;
}
.u-top-left-radius-8 {
  --border-top-left-radius: 8px;
}
.u-top-right-radius-8 {
  --border-top-right-radius: 8px;
}
.u-bottom-right-radius-8 {
  --border-bottom-right-radius: 8px;
}
.u-bottom-left-radius-8 {
  --border-bottom-left-radius: 8px;
}
.u-radius-9 {
  --border-radius: 9px;
}
.u-top-left-radius-9 {
  --border-top-left-radius: 9px;
}
.u-top-right-radius-9 {
  --border-top-right-radius: 9px;
}
.u-bottom-right-radius-9 {
  --border-bottom-right-radius: 9px;
}
.u-bottom-left-radius-9 {
  --border-bottom-left-radius: 9px;
}
.u-radius-10 {
  --border-radius: 10px;
}
.u-top-left-radius-10 {
  --border-top-left-radius: 10px;
}
.u-top-right-radius-10 {
  --border-top-right-radius: 10px;
}
.u-bottom-right-radius-10 {
  --border-bottom-right-radius: 10px;
}
.u-bottom-left-radius-10 {
  --border-bottom-left-radius: 10px;
}
.u-radius-11 {
  --border-radius: 11px;
}
.u-top-left-radius-11 {
  --border-top-left-radius: 11px;
}
.u-top-right-radius-11 {
  --border-top-right-radius: 11px;
}
.u-bottom-right-radius-11 {
  --border-bottom-right-radius: 11px;
}
.u-bottom-left-radius-11 {
  --border-bottom-left-radius: 11px;
}
.u-radius-12 {
  --border-radius: 12px;
}
.u-top-left-radius-12 {
  --border-top-left-radius: 12px;
}
.u-top-right-radius-12 {
  --border-top-right-radius: 12px;
}
.u-bottom-right-radius-12 {
  --border-bottom-right-radius: 12px;
}
.u-bottom-left-radius-12 {
  --border-bottom-left-radius: 12px;
}
.u-radius-13 {
  --border-radius: 13px;
}
.u-top-left-radius-13 {
  --border-top-left-radius: 13px;
}
.u-top-right-radius-13 {
  --border-top-right-radius: 13px;
}
.u-bottom-right-radius-13 {
  --border-bottom-right-radius: 13px;
}
.u-bottom-left-radius-13 {
  --border-bottom-left-radius: 13px;
}
.u-radius-14 {
  --border-radius: 14px;
}
.u-top-left-radius-14 {
  --border-top-left-radius: 14px;
}
.u-top-right-radius-14 {
  --border-top-right-radius: 14px;
}
.u-bottom-right-radius-14 {
  --border-bottom-right-radius: 14px;
}
.u-bottom-left-radius-14 {
  --border-bottom-left-radius: 14px;
}
.u-radius-15 {
  --border-radius: 15px;
}
.u-top-left-radius-15 {
  --border-top-left-radius: 15px;
}
.u-top-right-radius-15 {
  --border-top-right-radius: 15px;
}
.u-bottom-right-radius-15 {
  --border-bottom-right-radius: 15px;
}
.u-bottom-left-radius-15 {
  --border-bottom-left-radius: 15px;
}
.u-radius-16 {
  --border-radius: 16px;
}
.u-top-left-radius-16 {
  --border-top-left-radius: 16px;
}
.u-top-right-radius-16 {
  --border-top-right-radius: 16px;
}
.u-bottom-right-radius-16 {
  --border-bottom-right-radius: 16px;
}
.u-bottom-left-radius-16 {
  --border-bottom-left-radius: 16px;
}
.u-radius-17 {
  --border-radius: 17px;
}
.u-top-left-radius-17 {
  --border-top-left-radius: 17px;
}
.u-top-right-radius-17 {
  --border-top-right-radius: 17px;
}
.u-bottom-right-radius-17 {
  --border-bottom-right-radius: 17px;
}
.u-bottom-left-radius-17 {
  --border-bottom-left-radius: 17px;
}
.u-radius-18 {
  --border-radius: 18px;
}
.u-top-left-radius-18 {
  --border-top-left-radius: 18px;
}
.u-top-right-radius-18 {
  --border-top-right-radius: 18px;
}
.u-bottom-right-radius-18 {
  --border-bottom-right-radius: 18px;
}
.u-bottom-left-radius-18 {
  --border-bottom-left-radius: 18px;
}
.u-radius-19 {
  --border-radius: 19px;
}
.u-top-left-radius-19 {
  --border-top-left-radius: 19px;
}
.u-top-right-radius-19 {
  --border-top-right-radius: 19px;
}
.u-bottom-right-radius-19 {
  --border-bottom-right-radius: 19px;
}
.u-bottom-left-radius-19 {
  --border-bottom-left-radius: 19px;
}
.u-radius-20 {
  --border-radius: 20px;
}
.u-top-left-radius-20 {
  --border-top-left-radius: 20px;
}
.u-top-right-radius-20 {
  --border-top-right-radius: 20px;
}
.u-bottom-right-radius-20 {
  --border-bottom-right-radius: 20px;
}
.u-bottom-left-radius-20 {
  --border-bottom-left-radius: 20px;
}
.u-radius-21 {
  --border-radius: 21px;
}
.u-top-left-radius-21 {
  --border-top-left-radius: 21px;
}
.u-top-right-radius-21 {
  --border-top-right-radius: 21px;
}
.u-bottom-right-radius-21 {
  --border-bottom-right-radius: 21px;
}
.u-bottom-left-radius-21 {
  --border-bottom-left-radius: 21px;
}
.u-radius-22 {
  --border-radius: 22px;
}
.u-top-left-radius-22 {
  --border-top-left-radius: 22px;
}
.u-top-right-radius-22 {
  --border-top-right-radius: 22px;
}
.u-bottom-right-radius-22 {
  --border-bottom-right-radius: 22px;
}
.u-bottom-left-radius-22 {
  --border-bottom-left-radius: 22px;
}
.u-radius-23 {
  --border-radius: 23px;
}
.u-top-left-radius-23 {
  --border-top-left-radius: 23px;
}
.u-top-right-radius-23 {
  --border-top-right-radius: 23px;
}
.u-bottom-right-radius-23 {
  --border-bottom-right-radius: 23px;
}
.u-bottom-left-radius-23 {
  --border-bottom-left-radius: 23px;
}
.u-radius-24 {
  --border-radius: 24px;
}
.u-top-left-radius-24 {
  --border-top-left-radius: 24px;
}
.u-top-right-radius-24 {
  --border-top-right-radius: 24px;
}
.u-bottom-right-radius-24 {
  --border-bottom-right-radius: 24px;
}
.u-bottom-left-radius-24 {
  --border-bottom-left-radius: 24px;
}
.u-radius-25 {
  --border-radius: 25px;
}
.u-top-left-radius-25 {
  --border-top-left-radius: 25px;
}
.u-top-right-radius-25 {
  --border-top-right-radius: 25px;
}
.u-bottom-right-radius-25 {
  --border-bottom-right-radius: 25px;
}
.u-bottom-left-radius-25 {
  --border-bottom-left-radius: 25px;
}
.u-radius-26 {
  --border-radius: 26px;
}
.u-top-left-radius-26 {
  --border-top-left-radius: 26px;
}
.u-top-right-radius-26 {
  --border-top-right-radius: 26px;
}
.u-bottom-right-radius-26 {
  --border-bottom-right-radius: 26px;
}
.u-bottom-left-radius-26 {
  --border-bottom-left-radius: 26px;
}
.u-radius-27 {
  --border-radius: 27px;
}
.u-top-left-radius-27 {
  --border-top-left-radius: 27px;
}
.u-top-right-radius-27 {
  --border-top-right-radius: 27px;
}
.u-bottom-right-radius-27 {
  --border-bottom-right-radius: 27px;
}
.u-bottom-left-radius-27 {
  --border-bottom-left-radius: 27px;
}
.u-radius-28 {
  --border-radius: 28px;
}
.u-top-left-radius-28 {
  --border-top-left-radius: 28px;
}
.u-top-right-radius-28 {
  --border-top-right-radius: 28px;
}
.u-bottom-right-radius-28 {
  --border-bottom-right-radius: 28px;
}
.u-bottom-left-radius-28 {
  --border-bottom-left-radius: 28px;
}
.u-radius-29 {
  --border-radius: 29px;
}
.u-top-left-radius-29 {
  --border-top-left-radius: 29px;
}
.u-top-right-radius-29 {
  --border-top-right-radius: 29px;
}
.u-bottom-right-radius-29 {
  --border-bottom-right-radius: 29px;
}
.u-bottom-left-radius-29 {
  --border-bottom-left-radius: 29px;
}
.u-radius-30 {
  --border-radius: 30px;
}
.u-top-left-radius-30 {
  --border-top-left-radius: 30px;
}
.u-top-right-radius-30 {
  --border-top-right-radius: 30px;
}
.u-bottom-right-radius-30 {
  --border-bottom-right-radius: 30px;
}
.u-bottom-left-radius-30 {
  --border-bottom-left-radius: 30px;
}
.u-radius-31 {
  --border-radius: 31px;
}
.u-top-left-radius-31 {
  --border-top-left-radius: 31px;
}
.u-top-right-radius-31 {
  --border-top-right-radius: 31px;
}
.u-bottom-right-radius-31 {
  --border-bottom-right-radius: 31px;
}
.u-bottom-left-radius-31 {
  --border-bottom-left-radius: 31px;
}
.u-radius-32 {
  --border-radius: 32px;
}
.u-top-left-radius-32 {
  --border-top-left-radius: 32px;
}
.u-top-right-radius-32 {
  --border-top-right-radius: 32px;
}
.u-bottom-right-radius-32 {
  --border-bottom-right-radius: 32px;
}
.u-bottom-left-radius-32 {
  --border-bottom-left-radius: 32px;
}
.u-radius-33 {
  --border-radius: 33px;
}
.u-top-left-radius-33 {
  --border-top-left-radius: 33px;
}
.u-top-right-radius-33 {
  --border-top-right-radius: 33px;
}
.u-bottom-right-radius-33 {
  --border-bottom-right-radius: 33px;
}
.u-bottom-left-radius-33 {
  --border-bottom-left-radius: 33px;
}
.u-radius-34 {
  --border-radius: 34px;
}
.u-top-left-radius-34 {
  --border-top-left-radius: 34px;
}
.u-top-right-radius-34 {
  --border-top-right-radius: 34px;
}
.u-bottom-right-radius-34 {
  --border-bottom-right-radius: 34px;
}
.u-bottom-left-radius-34 {
  --border-bottom-left-radius: 34px;
}
.u-radius-35 {
  --border-radius: 35px;
}
.u-top-left-radius-35 {
  --border-top-left-radius: 35px;
}
.u-top-right-radius-35 {
  --border-top-right-radius: 35px;
}
.u-bottom-right-radius-35 {
  --border-bottom-right-radius: 35px;
}
.u-bottom-left-radius-35 {
  --border-bottom-left-radius: 35px;
}
.u-radius-36 {
  --border-radius: 36px;
}
.u-top-left-radius-36 {
  --border-top-left-radius: 36px;
}
.u-top-right-radius-36 {
  --border-top-right-radius: 36px;
}
.u-bottom-right-radius-36 {
  --border-bottom-right-radius: 36px;
}
.u-bottom-left-radius-36 {
  --border-bottom-left-radius: 36px;
}
.u-radius-37 {
  --border-radius: 37px;
}
.u-top-left-radius-37 {
  --border-top-left-radius: 37px;
}
.u-top-right-radius-37 {
  --border-top-right-radius: 37px;
}
.u-bottom-right-radius-37 {
  --border-bottom-right-radius: 37px;
}
.u-bottom-left-radius-37 {
  --border-bottom-left-radius: 37px;
}
.u-radius-38 {
  --border-radius: 38px;
}
.u-top-left-radius-38 {
  --border-top-left-radius: 38px;
}
.u-top-right-radius-38 {
  --border-top-right-radius: 38px;
}
.u-bottom-right-radius-38 {
  --border-bottom-right-radius: 38px;
}
.u-bottom-left-radius-38 {
  --border-bottom-left-radius: 38px;
}
.u-radius-39 {
  --border-radius: 39px;
}
.u-top-left-radius-39 {
  --border-top-left-radius: 39px;
}
.u-top-right-radius-39 {
  --border-top-right-radius: 39px;
}
.u-bottom-right-radius-39 {
  --border-bottom-right-radius: 39px;
}
.u-bottom-left-radius-39 {
  --border-bottom-left-radius: 39px;
}
.u-radius-40 {
  --border-radius: 40px;
}
.u-top-left-radius-40 {
  --border-top-left-radius: 40px;
}
.u-top-right-radius-40 {
  --border-top-right-radius: 40px;
}
.u-bottom-right-radius-40 {
  --border-bottom-right-radius: 40px;
}
.u-bottom-left-radius-40 {
  --border-bottom-left-radius: 40px;
}
.u-radius-41 {
  --border-radius: 41px;
}
.u-top-left-radius-41 {
  --border-top-left-radius: 41px;
}
.u-top-right-radius-41 {
  --border-top-right-radius: 41px;
}
.u-bottom-right-radius-41 {
  --border-bottom-right-radius: 41px;
}
.u-bottom-left-radius-41 {
  --border-bottom-left-radius: 41px;
}
.u-radius-42 {
  --border-radius: 42px;
}
.u-top-left-radius-42 {
  --border-top-left-radius: 42px;
}
.u-top-right-radius-42 {
  --border-top-right-radius: 42px;
}
.u-bottom-right-radius-42 {
  --border-bottom-right-radius: 42px;
}
.u-bottom-left-radius-42 {
  --border-bottom-left-radius: 42px;
}
.u-radius-43 {
  --border-radius: 43px;
}
.u-top-left-radius-43 {
  --border-top-left-radius: 43px;
}
.u-top-right-radius-43 {
  --border-top-right-radius: 43px;
}
.u-bottom-right-radius-43 {
  --border-bottom-right-radius: 43px;
}
.u-bottom-left-radius-43 {
  --border-bottom-left-radius: 43px;
}
.u-radius-44 {
  --border-radius: 44px;
}
.u-top-left-radius-44 {
  --border-top-left-radius: 44px;
}
.u-top-right-radius-44 {
  --border-top-right-radius: 44px;
}
.u-bottom-right-radius-44 {
  --border-bottom-right-radius: 44px;
}
.u-bottom-left-radius-44 {
  --border-bottom-left-radius: 44px;
}
.u-radius-45 {
  --border-radius: 45px;
}
.u-top-left-radius-45 {
  --border-top-left-radius: 45px;
}
.u-top-right-radius-45 {
  --border-top-right-radius: 45px;
}
.u-bottom-right-radius-45 {
  --border-bottom-right-radius: 45px;
}
.u-bottom-left-radius-45 {
  --border-bottom-left-radius: 45px;
}
.u-radius-46 {
  --border-radius: 46px;
}
.u-top-left-radius-46 {
  --border-top-left-radius: 46px;
}
.u-top-right-radius-46 {
  --border-top-right-radius: 46px;
}
.u-bottom-right-radius-46 {
  --border-bottom-right-radius: 46px;
}
.u-bottom-left-radius-46 {
  --border-bottom-left-radius: 46px;
}
.u-radius-47 {
  --border-radius: 47px;
}
.u-top-left-radius-47 {
  --border-top-left-radius: 47px;
}
.u-top-right-radius-47 {
  --border-top-right-radius: 47px;
}
.u-bottom-right-radius-47 {
  --border-bottom-right-radius: 47px;
}
.u-bottom-left-radius-47 {
  --border-bottom-left-radius: 47px;
}
.u-radius-48 {
  --border-radius: 48px;
}
.u-top-left-radius-48 {
  --border-top-left-radius: 48px;
}
.u-top-right-radius-48 {
  --border-top-right-radius: 48px;
}
.u-bottom-right-radius-48 {
  --border-bottom-right-radius: 48px;
}
.u-bottom-left-radius-48 {
  --border-bottom-left-radius: 48px;
}
.u-radius-49 {
  --border-radius: 49px;
}
.u-top-left-radius-49 {
  --border-top-left-radius: 49px;
}
.u-top-right-radius-49 {
  --border-top-right-radius: 49px;
}
.u-bottom-right-radius-49 {
  --border-bottom-right-radius: 49px;
}
.u-bottom-left-radius-49 {
  --border-bottom-left-radius: 49px;
}
.u-radius-50 {
  --border-radius: 50px;
}
.u-top-left-radius-50 {
  --border-top-left-radius: 50px;
}
.u-top-right-radius-50 {
  --border-top-right-radius: 50px;
}
.u-bottom-right-radius-50 {
  --border-bottom-right-radius: 50px;
}
.u-bottom-left-radius-50 {
  --border-bottom-left-radius: 50px;
}
/*begin-variables font-family*/
.u-body {
  font-family: 'Open Sans',sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto,sans-serif;
}
/*end-variables font-family*/
/*begin-variables color*/
.u-overlap.u-overlap-transparent .u-header,
.u-image,
.u-gradient {
  color: #111111;
}
.u-shading,
.u-overlap.u-overlap-contrast .u-header {
  color: #ffffff;
}
.u-body {
  color: #111111;
  background-color: #ffffff;
  --effect-scale: 1.1;
}
/*end-variables color*/
/*begin-variables font*/
.u-custom-font.u-text-font {
  font-family: 'Open Sans',sans-serif !important;
}
.u-custom-font.u-heading-font {
  font-family: Roboto,sans-serif !important;
}
/*end-variables font*/
/*begin-variables colors*/
.u-none.u-input,
.u-none.u-field-input,
.u-none.u-button-style,
.u-none.u-button-style:hover,
.u-none.u-button-style:focus,
.u-none.u-button-style:active,
.u-none.u-button-style.active,
.u-button-style.u-hover-none:hover,
.u-button-style.u-hover-none.hover,
.u-button-style.u-hover-none:focus,
.u-button-style.u-active-none:active,
.u-button-style.u-active-none.active,
li.active > .u-button-style.u-active-none {
  color: inherit !important;
  background-color: transparent !important;
}
.u-button-style.u-border-none,
.u-button-style.u-border-hover-none:hover,
.u-button-style.u-border-hover-none:focus,
.u-button-style.u-border-active-none:active,
.u-button-style.u-border-active-none.active,
li.active > .u-button-style.u-border-active-none {
  border-color: transparent !important;
  border-width: 0;
}
.u-button-style.u-text-none,
.u-button-style.u-text-none:hover,
.u-button-style.u-text-none:focus,
.u-button-style.u-text-none:active,
.u-button-style.u-text-none.active,
.u-button-style.u-text-hover-none:hover,
.u-button-style.u-text-hover-none:focus,
.u-button-style.u-text-active-none:active,
.u-button-style.u-text-active-none.active,
li.active > .u-button-style.u-text-active-none {
  color: inherit !important;
}
.u-color-1-dark-3,
.u-body.u-color-1-dark-3,
section.u-color-1-dark-3:before,
.u-color-1-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-3 > .u-container-layout:before,
.u-color-1-dark-3 > .u-inner-container-layout:before,
.u-color-1-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-3:before,
.u-table-alt-color-1-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #292e33;
}
.u-input.u-color-1-dark-3,
.u-field-input.u-color-1-dark-3,
.u-button-style.u-color-1-dark-3,
.u-button-style.u-color-1-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #292e33 !important;
}
.u-button-style.u-color-1-dark-3:hover,
.u-button-style.u-color-1-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-3:focus,
.u-button-style.u-color-1-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-3:active,
.u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-3.active,
.u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-3,
li.active > .u-button-style.u-button-style.u-color-1-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #25292e !important;
}
.u-hover-color-1-dark-3:hover,
.u-hover-color-1-dark-3[class*="u-border-"]:hover,
.u-hover-color-1-dark-3:focus,
.u-hover-color-1-dark-3[class*="u-border-"]:focus,
.u-active-color-1-dark-3.u-active.u-active,
.u-active-color-1-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-dark-3:hover,
a.u-button-style.u-hover-color-1-dark-3.hover,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-3,
a.u-button-style:hover > .u-hover-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-3:focus,
a.u-button-style.u-hover-color-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-3.active,
a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-3:checked {
  color: #ffffff !important;
  background-color: #292e33 !important;
}
a.u-link.u-hover-color-1-dark-3:hover {
  color: #292e33 !important;
}
.u-color-1-dark-2,
.u-body.u-color-1-dark-2,
section.u-color-1-dark-2:before,
.u-color-1-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-2 > .u-container-layout:before,
.u-color-1-dark-2 > .u-inner-container-layout:before,
.u-color-1-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-2:before,
.u-table-alt-color-1-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #425465;
}
.u-input.u-color-1-dark-2,
.u-field-input.u-color-1-dark-2,
.u-button-style.u-color-1-dark-2,
.u-button-style.u-color-1-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #425465 !important;
}
.u-button-style.u-color-1-dark-2:hover,
.u-button-style.u-color-1-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-2:focus,
.u-button-style.u-color-1-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-2:active,
.u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-2.active,
.u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-2,
li.active > .u-button-style.u-button-style.u-color-1-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3b4c5b !important;
}
.u-hover-color-1-dark-2:hover,
.u-hover-color-1-dark-2[class*="u-border-"]:hover,
.u-hover-color-1-dark-2:focus,
.u-hover-color-1-dark-2[class*="u-border-"]:focus,
.u-active-color-1-dark-2.u-active.u-active,
.u-active-color-1-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-dark-2:hover,
a.u-button-style.u-hover-color-1-dark-2.hover,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-2,
a.u-button-style:hover > .u-hover-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-2:focus,
a.u-button-style.u-hover-color-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-2.active,
a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-2:checked {
  color: #ffffff !important;
  background-color: #425465 !important;
}
a.u-link.u-hover-color-1-dark-2:hover {
  color: #425465 !important;
}
.u-color-1-dark-1,
.u-body.u-color-1-dark-1,
section.u-color-1-dark-1:before,
.u-color-1-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-1-dark-1 > .u-container-layout:before,
.u-color-1-dark-1 > .u-inner-container-layout:before,
.u-color-1-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-dark-1:before,
.u-table-alt-color-1-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #4c7397;
}
.u-input.u-color-1-dark-1,
.u-field-input.u-color-1-dark-1,
.u-button-style.u-color-1-dark-1,
.u-button-style.u-color-1-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #4c7397 !important;
}
.u-button-style.u-color-1-dark-1:hover,
.u-button-style.u-color-1-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-1-dark-1:focus,
.u-button-style.u-color-1-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-dark-1:active,
.u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-dark-1.active,
.u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-dark-1,
li.active > .u-button-style.u-button-style.u-color-1-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #446888 !important;
}
.u-hover-color-1-dark-1:hover,
.u-hover-color-1-dark-1[class*="u-border-"]:hover,
.u-hover-color-1-dark-1:focus,
.u-hover-color-1-dark-1[class*="u-border-"]:focus,
.u-active-color-1-dark-1.u-active.u-active,
.u-active-color-1-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-dark-1:hover,
a.u-button-style.u-hover-color-1-dark-1.hover,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-dark-1,
a.u-button-style:hover > .u-hover-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-1-dark-1:focus,
a.u-button-style.u-hover-color-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-dark-1.active,
a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-1-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-dark-1:checked {
  color: #ffffff !important;
  background-color: #4c7397 !important;
}
a.u-link.u-hover-color-1-dark-1:hover {
  color: #4c7397 !important;
}
.u-color-1,
.u-body.u-color-1,
section.u-color-1:before,
.u-color-1 > .u-audio-main-layout-wrapper:before,
.u-color-1 > .u-container-layout:before,
.u-color-1 > .u-inner-container-layout:before,
.u-color-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1:before,
.u-table-alt-color-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #478ac9;
}
.u-input.u-color-1,
.u-field-input.u-color-1,
.u-button-style.u-color-1,
.u-button-style.u-color-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
.u-button-style.u-color-1:hover,
.u-button-style.u-color-1[class*="u-border-"]:hover,
.u-button-style.u-color-1:focus,
.u-button-style.u-color-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1:active,
.u-button-style.u-button-style.u-color-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1.active,
.u-button-style.u-button-style.u-color-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1,
li.active > .u-button-style.u-button-style.u-color-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #387cbd !important;
}
.u-hover-color-1:hover,
.u-hover-color-1[class*="u-border-"]:hover,
.u-hover-color-1:focus,
.u-hover-color-1[class*="u-border-"]:focus,
.u-active-color-1.u-active.u-active,
.u-active-color-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1:hover,
a.u-button-style.u-hover-color-1.hover,
a.u-button-style.u-hover-color-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1,
a.u-button-style:hover > .u-hover-color-1[class*="u-border-"],
a.u-button-style.u-hover-color-1:focus,
a.u-button-style.u-hover-color-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1:active,
a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1.active,
a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1,
a.u-button-style.u-button-style.active > .u-active-color-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1,
li.active > a.u-button-style.u-button-style.u-active-color-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1:checked {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
a.u-link.u-hover-color-1:hover {
  color: #478ac9 !important;
}
.u-color-1-light-1,
.u-body.u-color-1-light-1,
section.u-color-1-light-1:before,
.u-color-1-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-1 > .u-container-layout:before,
.u-color-1-light-1 > .u-inner-container-layout:before,
.u-color-1-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-1:before,
.u-table-alt-color-1-light-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #77aad9;
}
.u-input.u-color-1-light-1,
.u-field-input.u-color-1-light-1,
.u-button-style.u-color-1-light-1,
.u-button-style.u-color-1-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #77aad9 !important;
}
.u-button-style.u-color-1-light-1:hover,
.u-button-style.u-color-1-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-1:focus,
.u-button-style.u-color-1-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-1:active,
.u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-1.active,
.u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-1,
li.active > .u-button-style.u-button-style.u-color-1-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #5d9ad2 !important;
}
.u-hover-color-1-light-1:hover,
.u-hover-color-1-light-1[class*="u-border-"]:hover,
.u-hover-color-1-light-1:focus,
.u-hover-color-1-light-1[class*="u-border-"]:focus,
.u-active-color-1-light-1.u-active.u-active,
.u-active-color-1-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-light-1:hover,
a.u-button-style.u-hover-color-1-light-1.hover,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-1,
a.u-button-style:hover > .u-hover-color-1-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-1:focus,
a.u-button-style.u-hover-color-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-1.active,
a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-1,
a.u-button-style.u-button-style.active > .u-active-color-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-1:checked {
  color: #ffffff !important;
  background-color: #77aad9 !important;
}
a.u-link.u-hover-color-1-light-1:hover {
  color: #77aad9 !important;
}
.u-color-1-light-2,
.u-body.u-color-1-light-2,
section.u-color-1-light-2:before,
.u-color-1-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-2 > .u-container-layout:before,
.u-color-1-light-2 > .u-inner-container-layout:before,
.u-color-1-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-2:before,
.u-table-alt-color-1-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adcce9;
}
.u-input.u-color-1-light-2,
.u-field-input.u-color-1-light-2,
.u-button-style.u-color-1-light-2,
.u-button-style.u-color-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adcce9 !important;
}
.u-button-style.u-color-1-light-2:hover,
.u-button-style.u-color-1-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-2:focus,
.u-button-style.u-color-1-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-2:active,
.u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-2.active,
.u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-2,
li.active > .u-button-style.u-button-style.u-color-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #8db8e0 !important;
}
.u-hover-color-1-light-2:hover,
.u-hover-color-1-light-2[class*="u-border-"]:hover,
.u-hover-color-1-light-2:focus,
.u-hover-color-1-light-2[class*="u-border-"]:focus,
.u-active-color-1-light-2.u-active.u-active,
.u-active-color-1-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-light-2:hover,
a.u-button-style.u-hover-color-1-light-2.hover,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-2,
a.u-button-style:hover > .u-hover-color-1-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-2:focus,
a.u-button-style.u-hover-color-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-2.active,
a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-2,
a.u-button-style.u-button-style.active > .u-active-color-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-2:checked {
  color: #111111 !important;
  background-color: #adcce9 !important;
}
a.u-link.u-hover-color-1-light-2:hover {
  color: #adcce9 !important;
}
.u-color-1-light-3,
.u-body.u-color-1-light-3,
section.u-color-1-light-3:before,
.u-color-1-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-1-light-3 > .u-container-layout:before,
.u-color-1-light-3 > .u-inner-container-layout:before,
.u-color-1-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-light-3:before,
.u-table-alt-color-1-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #e9f2fa;
}
.u-input.u-color-1-light-3,
.u-field-input.u-color-1-light-3,
.u-button-style.u-color-1-light-3,
.u-button-style.u-color-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e9f2fa !important;
}
.u-button-style.u-color-1-light-3:hover,
.u-button-style.u-color-1-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-1-light-3:focus,
.u-button-style.u-color-1-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-light-3:active,
.u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-light-3.active,
.u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-light-3,
li.active > .u-button-style.u-button-style.u-color-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c2dbf1 !important;
}
.u-hover-color-1-light-3:hover,
.u-hover-color-1-light-3[class*="u-border-"]:hover,
.u-hover-color-1-light-3:focus,
.u-hover-color-1-light-3[class*="u-border-"]:focus,
.u-active-color-1-light-3.u-active.u-active,
.u-active-color-1-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-light-3:hover,
a.u-button-style.u-hover-color-1-light-3.hover,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-light-3,
a.u-button-style:hover > .u-hover-color-1-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-1-light-3:focus,
a.u-button-style.u-hover-color-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-light-3.active,
a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-light-3,
a.u-button-style.u-button-style.active > .u-active-color-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-1-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-light-3:checked {
  color: #111111 !important;
  background-color: #e9f2fa !important;
}
a.u-link.u-hover-color-1-light-3:hover {
  color: #e9f2fa !important;
}
.u-color-1-base,
.u-body.u-color-1-base,
section.u-color-1-base:before,
.u-color-1-base > .u-audio-main-layout-wrapper:before,
.u-color-1-base > .u-container-layout:before,
.u-color-1-base > .u-inner-container-layout:before,
.u-color-1-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-1-base:before,
.u-table-alt-color-1-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #478ac9;
}
.u-input.u-color-1-base,
.u-field-input.u-color-1-base,
.u-button-style.u-color-1-base,
.u-button-style.u-color-1-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
.u-button-style.u-color-1-base:hover,
.u-button-style.u-color-1-base[class*="u-border-"]:hover,
.u-button-style.u-color-1-base:focus,
.u-button-style.u-color-1-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-1-base:active,
.u-button-style.u-button-style.u-color-1-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-1-base.active,
.u-button-style.u-button-style.u-color-1-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-1-base,
li.active > .u-button-style.u-button-style.u-color-1-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #387cbd !important;
}
.u-hover-color-1-base:hover,
.u-hover-color-1-base[class*="u-border-"]:hover,
.u-hover-color-1-base:focus,
.u-hover-color-1-base[class*="u-border-"]:focus,
.u-active-color-1-base.u-active.u-active,
.u-active-color-1-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-1-base:hover,
a.u-button-style.u-hover-color-1-base.hover,
a.u-button-style.u-hover-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-1-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-1-base,
a.u-button-style:hover > .u-hover-color-1-base[class*="u-border-"],
a.u-button-style.u-hover-color-1-base:focus,
a.u-button-style.u-hover-color-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-1-base:active,
a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-1-base.active,
a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-1-base,
a.u-button-style.u-button-style.active > .u-active-color-1-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-1-base,
li.active > a.u-button-style.u-button-style.u-active-color-1-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-1-base:checked {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
a.u-link.u-hover-color-1-base:hover {
  color: #478ac9 !important;
}
.u-color-2-dark-3,
.u-body.u-color-2-dark-3,
section.u-color-2-dark-3:before,
.u-color-2-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-3 > .u-container-layout:before,
.u-color-2-dark-3 > .u-inner-container-layout:before,
.u-color-2-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-3:before,
.u-table-alt-color-2-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #332929;
}
.u-input.u-color-2-dark-3,
.u-field-input.u-color-2-dark-3,
.u-button-style.u-color-2-dark-3,
.u-button-style.u-color-2-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #332929 !important;
}
.u-button-style.u-color-2-dark-3:hover,
.u-button-style.u-color-2-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-3:focus,
.u-button-style.u-color-2-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-3:active,
.u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-3.active,
.u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-3,
li.active > .u-button-style.u-button-style.u-color-2-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2525 !important;
}
.u-hover-color-2-dark-3:hover,
.u-hover-color-2-dark-3[class*="u-border-"]:hover,
.u-hover-color-2-dark-3:focus,
.u-hover-color-2-dark-3[class*="u-border-"]:focus,
.u-active-color-2-dark-3.u-active.u-active,
.u-active-color-2-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-dark-3:hover,
a.u-button-style.u-hover-color-2-dark-3.hover,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-3,
a.u-button-style:hover > .u-hover-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-3:focus,
a.u-button-style.u-hover-color-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-3.active,
a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-3:checked {
  color: #ffffff !important;
  background-color: #332929 !important;
}
a.u-link.u-hover-color-2-dark-3:hover {
  color: #332929 !important;
}
.u-color-2-dark-2,
.u-body.u-color-2-dark-2,
section.u-color-2-dark-2:before,
.u-color-2-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-2 > .u-container-layout:before,
.u-color-2-dark-2 > .u-inner-container-layout:before,
.u-color-2-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-2:before,
.u-table-alt-color-2-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #744547;
}
.u-input.u-color-2-dark-2,
.u-field-input.u-color-2-dark-2,
.u-button-style.u-color-2-dark-2,
.u-button-style.u-color-2-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #744547 !important;
}
.u-button-style.u-color-2-dark-2:hover,
.u-button-style.u-color-2-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-2:focus,
.u-button-style.u-color-2-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-2:active,
.u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-2.active,
.u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-2,
li.active > .u-button-style.u-button-style.u-color-2-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #683e40 !important;
}
.u-hover-color-2-dark-2:hover,
.u-hover-color-2-dark-2[class*="u-border-"]:hover,
.u-hover-color-2-dark-2:focus,
.u-hover-color-2-dark-2[class*="u-border-"]:focus,
.u-active-color-2-dark-2.u-active.u-active,
.u-active-color-2-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-dark-2:hover,
a.u-button-style.u-hover-color-2-dark-2.hover,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-2,
a.u-button-style:hover > .u-hover-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-2:focus,
a.u-button-style.u-hover-color-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-2.active,
a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-2:checked {
  color: #ffffff !important;
  background-color: #744547 !important;
}
a.u-link.u-hover-color-2-dark-2:hover {
  color: #744547 !important;
}
.u-color-2-dark-1,
.u-body.u-color-2-dark-1,
section.u-color-2-dark-1:before,
.u-color-2-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-2-dark-1 > .u-container-layout:before,
.u-color-2-dark-1 > .u-inner-container-layout:before,
.u-color-2-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-dark-1:before,
.u-table-alt-color-2-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #b6474c;
}
.u-input.u-color-2-dark-1,
.u-field-input.u-color-2-dark-1,
.u-button-style.u-color-2-dark-1,
.u-button-style.u-color-2-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b6474c !important;
}
.u-button-style.u-color-2-dark-1:hover,
.u-button-style.u-color-2-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-2-dark-1:focus,
.u-button-style.u-color-2-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-dark-1:active,
.u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-dark-1.active,
.u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-dark-1,
li.active > .u-button-style.u-button-style.u-color-2-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a44044 !important;
}
.u-hover-color-2-dark-1:hover,
.u-hover-color-2-dark-1[class*="u-border-"]:hover,
.u-hover-color-2-dark-1:focus,
.u-hover-color-2-dark-1[class*="u-border-"]:focus,
.u-active-color-2-dark-1.u-active.u-active,
.u-active-color-2-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-dark-1:hover,
a.u-button-style.u-hover-color-2-dark-1.hover,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-dark-1,
a.u-button-style:hover > .u-hover-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-2-dark-1:focus,
a.u-button-style.u-hover-color-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-dark-1.active,
a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-2-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-dark-1:checked {
  color: #ffffff !important;
  background-color: #b6474c !important;
}
a.u-link.u-hover-color-2-dark-1:hover {
  color: #b6474c !important;
}
.u-color-2,
.u-body.u-color-2,
section.u-color-2:before,
.u-color-2 > .u-audio-main-layout-wrapper:before,
.u-color-2 > .u-container-layout:before,
.u-color-2 > .u-inner-container-layout:before,
.u-color-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2:before,
.u-table-alt-color-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #f72e37;
}
.u-input.u-color-2,
.u-field-input.u-color-2,
.u-button-style.u-color-2,
.u-button-style.u-color-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
.u-button-style.u-color-2:hover,
.u-button-style.u-color-2[class*="u-border-"]:hover,
.u-button-style.u-color-2:focus,
.u-button-style.u-color-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2:active,
.u-button-style.u-button-style.u-color-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2.active,
.u-button-style.u-button-style.u-color-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2,
li.active > .u-button-style.u-button-style.u-color-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f6121c !important;
}
.u-hover-color-2:hover,
.u-hover-color-2[class*="u-border-"]:hover,
.u-hover-color-2:focus,
.u-hover-color-2[class*="u-border-"]:focus,
.u-active-color-2.u-active.u-active,
.u-active-color-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2:hover,
a.u-button-style.u-hover-color-2.hover,
a.u-button-style.u-hover-color-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2,
a.u-button-style:hover > .u-hover-color-2[class*="u-border-"],
a.u-button-style.u-hover-color-2:focus,
a.u-button-style.u-hover-color-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2:active,
a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2.active,
a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2,
a.u-button-style.u-button-style.active > .u-active-color-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2,
li.active > a.u-button-style.u-button-style.u-active-color-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2:checked {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
a.u-link.u-hover-color-2:hover {
  color: #f72e37 !important;
}
.u-color-2-light-1,
.u-body.u-color-2-light-1,
section.u-color-2-light-1:before,
.u-color-2-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-1 > .u-container-layout:before,
.u-color-2-light-1 > .u-inner-container-layout:before,
.u-color-2-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-1:before,
.u-table-alt-color-2-light-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #f96b72;
}
.u-input.u-color-2-light-1,
.u-field-input.u-color-2-light-1,
.u-button-style.u-color-2-light-1,
.u-button-style.u-color-2-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f96b72 !important;
}
.u-button-style.u-color-2-light-1:hover,
.u-button-style.u-color-2-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-1:focus,
.u-button-style.u-color-2-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-1:active,
.u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-1.active,
.u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-1,
li.active > .u-button-style.u-button-style.u-color-2-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f84951 !important;
}
.u-hover-color-2-light-1:hover,
.u-hover-color-2-light-1[class*="u-border-"]:hover,
.u-hover-color-2-light-1:focus,
.u-hover-color-2-light-1[class*="u-border-"]:focus,
.u-active-color-2-light-1.u-active.u-active,
.u-active-color-2-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-light-1:hover,
a.u-button-style.u-hover-color-2-light-1.hover,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-1,
a.u-button-style:hover > .u-hover-color-2-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-1:focus,
a.u-button-style.u-hover-color-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-1.active,
a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-1,
a.u-button-style.u-button-style.active > .u-active-color-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-1:checked {
  color: #ffffff !important;
  background-color: #f96b72 !important;
}
a.u-link.u-hover-color-2-light-1:hover {
  color: #f96b72 !important;
}
.u-color-2-light-2,
.u-body.u-color-2-light-2,
section.u-color-2-light-2:before,
.u-color-2-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-2 > .u-container-layout:before,
.u-color-2-light-2 > .u-inner-container-layout:before,
.u-color-2-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-2:before,
.u-table-alt-color-2-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #fcaaae;
}
.u-input.u-color-2-light-2,
.u-field-input.u-color-2-light-2,
.u-button-style.u-color-2-light-2,
.u-button-style.u-color-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fcaaae !important;
}
.u-button-style.u-color-2-light-2:hover,
.u-button-style.u-color-2-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-2:focus,
.u-button-style.u-color-2-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-2:active,
.u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-2.active,
.u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-2,
li.active > .u-button-style.u-button-style.u-color-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fb8187 !important;
}
.u-hover-color-2-light-2:hover,
.u-hover-color-2-light-2[class*="u-border-"]:hover,
.u-hover-color-2-light-2:focus,
.u-hover-color-2-light-2[class*="u-border-"]:focus,
.u-active-color-2-light-2.u-active.u-active,
.u-active-color-2-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-light-2:hover,
a.u-button-style.u-hover-color-2-light-2.hover,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-2,
a.u-button-style:hover > .u-hover-color-2-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-2:focus,
a.u-button-style.u-hover-color-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-2.active,
a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-2,
a.u-button-style.u-button-style.active > .u-active-color-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-2:checked {
  color: #111111 !important;
  background-color: #fcaaae !important;
}
a.u-link.u-hover-color-2-light-2:hover {
  color: #fcaaae !important;
}
.u-color-2-light-3,
.u-body.u-color-2-light-3,
section.u-color-2-light-3:before,
.u-color-2-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-2-light-3 > .u-container-layout:before,
.u-color-2-light-3 > .u-inner-container-layout:before,
.u-color-2-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-light-3:before,
.u-table-alt-color-2-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #feeaea;
}
.u-input.u-color-2-light-3,
.u-field-input.u-color-2-light-3,
.u-button-style.u-color-2-light-3,
.u-button-style.u-color-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #feeaea !important;
}
.u-button-style.u-color-2-light-3:hover,
.u-button-style.u-color-2-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-2-light-3:focus,
.u-button-style.u-color-2-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-light-3:active,
.u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-light-3.active,
.u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-light-3,
li.active > .u-button-style.u-button-style.u-color-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fcbbbb !important;
}
.u-hover-color-2-light-3:hover,
.u-hover-color-2-light-3[class*="u-border-"]:hover,
.u-hover-color-2-light-3:focus,
.u-hover-color-2-light-3[class*="u-border-"]:focus,
.u-active-color-2-light-3.u-active.u-active,
.u-active-color-2-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-light-3:hover,
a.u-button-style.u-hover-color-2-light-3.hover,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-light-3,
a.u-button-style:hover > .u-hover-color-2-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-2-light-3:focus,
a.u-button-style.u-hover-color-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-light-3.active,
a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-light-3,
a.u-button-style.u-button-style.active > .u-active-color-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-2-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-light-3:checked {
  color: #111111 !important;
  background-color: #feeaea !important;
}
a.u-link.u-hover-color-2-light-3:hover {
  color: #feeaea !important;
}
.u-color-2-base,
.u-body.u-color-2-base,
section.u-color-2-base:before,
.u-color-2-base > .u-audio-main-layout-wrapper:before,
.u-color-2-base > .u-container-layout:before,
.u-color-2-base > .u-inner-container-layout:before,
.u-color-2-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-2-base:before,
.u-table-alt-color-2-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #f72e37;
}
.u-input.u-color-2-base,
.u-field-input.u-color-2-base,
.u-button-style.u-color-2-base,
.u-button-style.u-color-2-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
.u-button-style.u-color-2-base:hover,
.u-button-style.u-color-2-base[class*="u-border-"]:hover,
.u-button-style.u-color-2-base:focus,
.u-button-style.u-color-2-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-2-base:active,
.u-button-style.u-button-style.u-color-2-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-2-base.active,
.u-button-style.u-button-style.u-color-2-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-2-base,
li.active > .u-button-style.u-button-style.u-color-2-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f6121c !important;
}
.u-hover-color-2-base:hover,
.u-hover-color-2-base[class*="u-border-"]:hover,
.u-hover-color-2-base:focus,
.u-hover-color-2-base[class*="u-border-"]:focus,
.u-active-color-2-base.u-active.u-active,
.u-active-color-2-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-2-base:hover,
a.u-button-style.u-hover-color-2-base.hover,
a.u-button-style.u-hover-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-2-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-2-base,
a.u-button-style:hover > .u-hover-color-2-base[class*="u-border-"],
a.u-button-style.u-hover-color-2-base:focus,
a.u-button-style.u-hover-color-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-2-base:active,
a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-2-base.active,
a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-2-base,
a.u-button-style.u-button-style.active > .u-active-color-2-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-2-base,
li.active > a.u-button-style.u-button-style.u-active-color-2-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-2-base:checked {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
a.u-link.u-hover-color-2-base:hover {
  color: #f72e37 !important;
}
.u-color-3-dark-3,
.u-body.u-color-3-dark-3,
section.u-color-3-dark-3:before,
.u-color-3-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-3 > .u-container-layout:before,
.u-color-3-dark-3 > .u-inner-container-layout:before,
.u-color-3-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-3:before,
.u-table-alt-color-3-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #333129;
}
.u-input.u-color-3-dark-3,
.u-field-input.u-color-3-dark-3,
.u-button-style.u-color-3-dark-3,
.u-button-style.u-color-3-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #333129 !important;
}
.u-button-style.u-color-3-dark-3:hover,
.u-button-style.u-color-3-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-3:focus,
.u-button-style.u-color-3-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-3:active,
.u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-3.active,
.u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-3,
li.active > .u-button-style.u-button-style.u-color-3-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2c25 !important;
}
.u-hover-color-3-dark-3:hover,
.u-hover-color-3-dark-3[class*="u-border-"]:hover,
.u-hover-color-3-dark-3:focus,
.u-hover-color-3-dark-3[class*="u-border-"]:focus,
.u-active-color-3-dark-3.u-active.u-active,
.u-active-color-3-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-dark-3:hover,
a.u-button-style.u-hover-color-3-dark-3.hover,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-3,
a.u-button-style:hover > .u-hover-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-3:focus,
a.u-button-style.u-hover-color-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-3.active,
a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-3:checked {
  color: #ffffff !important;
  background-color: #333129 !important;
}
a.u-link.u-hover-color-3-dark-3:hover {
  color: #333129 !important;
}
.u-color-3-dark-2,
.u-body.u-color-3-dark-2,
section.u-color-3-dark-2:before,
.u-color-3-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-2 > .u-container-layout:before,
.u-color-3-dark-2 > .u-inner-container-layout:before,
.u-color-3-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-2:before,
.u-table-alt-color-3-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #72683f;
}
.u-input.u-color-3-dark-2,
.u-field-input.u-color-3-dark-2,
.u-button-style.u-color-3-dark-2,
.u-button-style.u-color-3-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #72683f !important;
}
.u-button-style.u-color-3-dark-2:hover,
.u-button-style.u-color-3-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-2:focus,
.u-button-style.u-color-3-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-2:active,
.u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-2.active,
.u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-2,
li.active > .u-button-style.u-button-style.u-color-3-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #675e39 !important;
}
.u-hover-color-3-dark-2:hover,
.u-hover-color-3-dark-2[class*="u-border-"]:hover,
.u-hover-color-3-dark-2:focus,
.u-hover-color-3-dark-2[class*="u-border-"]:focus,
.u-active-color-3-dark-2.u-active.u-active,
.u-active-color-3-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-dark-2:hover,
a.u-button-style.u-hover-color-3-dark-2.hover,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-2,
a.u-button-style:hover > .u-hover-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-2:focus,
a.u-button-style.u-hover-color-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-2.active,
a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-2:checked {
  color: #ffffff !important;
  background-color: #72683f !important;
}
a.u-link.u-hover-color-3-dark-2:hover {
  color: #72683f !important;
}
.u-color-3-dark-1,
.u-body.u-color-3-dark-1,
section.u-color-3-dark-1:before,
.u-color-3-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-3-dark-1 > .u-container-layout:before,
.u-color-3-dark-1 > .u-inner-container-layout:before,
.u-color-3-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-dark-1:before,
.u-table-alt-color-3-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #b29a36;
}
.u-input.u-color-3-dark-1,
.u-field-input.u-color-3-dark-1,
.u-button-style.u-color-3-dark-1,
.u-button-style.u-color-3-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b29a36 !important;
}
.u-button-style.u-color-3-dark-1:hover,
.u-button-style.u-color-3-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-3-dark-1:focus,
.u-button-style.u-color-3-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-dark-1:active,
.u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-dark-1.active,
.u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-dark-1,
li.active > .u-button-style.u-button-style.u-color-3-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a08b31 !important;
}
.u-hover-color-3-dark-1:hover,
.u-hover-color-3-dark-1[class*="u-border-"]:hover,
.u-hover-color-3-dark-1:focus,
.u-hover-color-3-dark-1[class*="u-border-"]:focus,
.u-active-color-3-dark-1.u-active.u-active,
.u-active-color-3-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-dark-1:hover,
a.u-button-style.u-hover-color-3-dark-1.hover,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-dark-1,
a.u-button-style:hover > .u-hover-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-3-dark-1:focus,
a.u-button-style.u-hover-color-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-dark-1.active,
a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-3-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-dark-1:checked {
  color: #ffffff !important;
  background-color: #b29a36 !important;
}
a.u-link.u-hover-color-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-color-3,
.u-body.u-color-3,
section.u-color-3:before,
.u-color-3 > .u-audio-main-layout-wrapper:before,
.u-color-3 > .u-container-layout:before,
.u-color-3 > .u-inner-container-layout:before,
.u-color-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3:before,
.u-table-alt-color-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-color-3,
.u-field-input.u-color-3,
.u-button-style.u-color-3,
.u-button-style.u-color-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-color-3:hover,
.u-button-style.u-color-3[class*="u-border-"]:hover,
.u-button-style.u-color-3:focus,
.u-button-style.u-color-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3:active,
.u-button-style.u-button-style.u-color-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3.active,
.u-button-style.u-button-style.u-color-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3,
li.active > .u-button-style.u-button-style.u-color-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
.u-hover-color-3:hover,
.u-hover-color-3[class*="u-border-"]:hover,
.u-hover-color-3:focus,
.u-hover-color-3[class*="u-border-"]:focus,
.u-active-color-3.u-active.u-active,
.u-active-color-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3:hover,
a.u-button-style.u-hover-color-3.hover,
a.u-button-style.u-hover-color-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3,
a.u-button-style:hover > .u-hover-color-3[class*="u-border-"],
a.u-button-style.u-hover-color-3:focus,
a.u-button-style.u-hover-color-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3:active,
a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3.active,
a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3,
a.u-button-style.u-button-style.active > .u-active-color-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3,
li.active > a.u-button-style.u-button-style.u-active-color-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-color-3:hover {
  color: #f1c50e !important;
}
.u-color-3-light-1,
.u-body.u-color-3-light-1,
section.u-color-3-light-1:before,
.u-color-3-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-1 > .u-container-layout:before,
.u-color-3-light-1 > .u-inner-container-layout:before,
.u-color-3-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-1:before,
.u-table-alt-color-3-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #f5d654;
}
.u-input.u-color-3-light-1,
.u-field-input.u-color-3-light-1,
.u-button-style.u-color-3-light-1,
.u-button-style.u-color-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
.u-button-style.u-color-3-light-1:hover,
.u-button-style.u-color-3-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-1:focus,
.u-button-style.u-color-3-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-1:active,
.u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-1.active,
.u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-1,
li.active > .u-button-style.u-button-style.u-color-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3cf35 !important;
}
.u-hover-color-3-light-1:hover,
.u-hover-color-3-light-1[class*="u-border-"]:hover,
.u-hover-color-3-light-1:focus,
.u-hover-color-3-light-1[class*="u-border-"]:focus,
.u-active-color-3-light-1.u-active.u-active,
.u-active-color-3-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-light-1:hover,
a.u-button-style.u-hover-color-3-light-1.hover,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-1,
a.u-button-style:hover > .u-hover-color-3-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-1:focus,
a.u-button-style.u-hover-color-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-1.active,
a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-1,
a.u-button-style.u-button-style.active > .u-active-color-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-1:checked {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
a.u-link.u-hover-color-3-light-1:hover {
  color: #f5d654 !important;
}
.u-color-3-light-2,
.u-body.u-color-3-light-2,
section.u-color-3-light-2:before,
.u-color-3-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-2 > .u-container-layout:before,
.u-color-3-light-2 > .u-inner-container-layout:before,
.u-color-3-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-2:before,
.u-table-alt-color-3-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f9e79b;
}
.u-input.u-color-3-light-2,
.u-field-input.u-color-3-light-2,
.u-button-style.u-color-3-light-2,
.u-button-style.u-color-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
.u-button-style.u-color-3-light-2:hover,
.u-button-style.u-color-3-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-2:focus,
.u-button-style.u-color-3-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-2:active,
.u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-2.active,
.u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-2,
li.active > .u-button-style.u-button-style.u-color-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f7de75 !important;
}
.u-hover-color-3-light-2:hover,
.u-hover-color-3-light-2[class*="u-border-"]:hover,
.u-hover-color-3-light-2:focus,
.u-hover-color-3-light-2[class*="u-border-"]:focus,
.u-active-color-3-light-2.u-active.u-active,
.u-active-color-3-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-light-2:hover,
a.u-button-style.u-hover-color-3-light-2.hover,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-2,
a.u-button-style:hover > .u-hover-color-3-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-2:focus,
a.u-button-style.u-hover-color-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-2.active,
a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-2,
a.u-button-style.u-button-style.active > .u-active-color-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-2:checked {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
a.u-link.u-hover-color-3-light-2:hover {
  color: #f9e79b !important;
}
.u-color-3-light-3,
.u-body.u-color-3-light-3,
section.u-color-3-light-3:before,
.u-color-3-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-3-light-3 > .u-container-layout:before,
.u-color-3-light-3 > .u-inner-container-layout:before,
.u-color-3-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-light-3:before,
.u-table-alt-color-3-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fef9e6;
}
.u-input.u-color-3-light-3,
.u-field-input.u-color-3-light-3,
.u-button-style.u-color-3-light-3,
.u-button-style.u-color-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
.u-button-style.u-color-3-light-3:hover,
.u-button-style.u-color-3-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-3-light-3:focus,
.u-button-style.u-color-3-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-light-3:active,
.u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-light-3.active,
.u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-light-3,
li.active > .u-button-style.u-button-style.u-color-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fceeb7 !important;
}
.u-hover-color-3-light-3:hover,
.u-hover-color-3-light-3[class*="u-border-"]:hover,
.u-hover-color-3-light-3:focus,
.u-hover-color-3-light-3[class*="u-border-"]:focus,
.u-active-color-3-light-3.u-active.u-active,
.u-active-color-3-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-light-3:hover,
a.u-button-style.u-hover-color-3-light-3.hover,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-light-3,
a.u-button-style:hover > .u-hover-color-3-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-3-light-3:focus,
a.u-button-style.u-hover-color-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-light-3.active,
a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-light-3,
a.u-button-style.u-button-style.active > .u-active-color-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-3-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-light-3:checked {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
a.u-link.u-hover-color-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-color-3-base,
.u-body.u-color-3-base,
section.u-color-3-base:before,
.u-color-3-base > .u-audio-main-layout-wrapper:before,
.u-color-3-base > .u-container-layout:before,
.u-color-3-base > .u-inner-container-layout:before,
.u-color-3-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-3-base:before,
.u-table-alt-color-3-base tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-color-3-base,
.u-field-input.u-color-3-base,
.u-button-style.u-color-3-base,
.u-button-style.u-color-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-color-3-base:hover,
.u-button-style.u-color-3-base[class*="u-border-"]:hover,
.u-button-style.u-color-3-base:focus,
.u-button-style.u-color-3-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-3-base:active,
.u-button-style.u-button-style.u-color-3-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-3-base.active,
.u-button-style.u-button-style.u-color-3-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-3-base,
li.active > .u-button-style.u-button-style.u-color-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
.u-hover-color-3-base:hover,
.u-hover-color-3-base[class*="u-border-"]:hover,
.u-hover-color-3-base:focus,
.u-hover-color-3-base[class*="u-border-"]:focus,
.u-active-color-3-base.u-active.u-active,
.u-active-color-3-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-3-base:hover,
a.u-button-style.u-hover-color-3-base.hover,
a.u-button-style.u-hover-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-3-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-3-base,
a.u-button-style:hover > .u-hover-color-3-base[class*="u-border-"],
a.u-button-style.u-hover-color-3-base:focus,
a.u-button-style.u-hover-color-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-3-base:active,
a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-3-base.active,
a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-3-base,
a.u-button-style.u-button-style.active > .u-active-color-3-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-3-base,
li.active > a.u-button-style.u-button-style.u-active-color-3-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-3-base:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-color-3-base:hover {
  color: #f1c50e !important;
}
.u-color-4-dark-3,
.u-body.u-color-4-dark-3,
section.u-color-4-dark-3:before,
.u-color-4-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-3 > .u-container-layout:before,
.u-color-4-dark-3 > .u-inner-container-layout:before,
.u-color-4-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-3:before,
.u-table-alt-color-4-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #293332;
}
.u-input.u-color-4-dark-3,
.u-field-input.u-color-4-dark-3,
.u-button-style.u-color-4-dark-3,
.u-button-style.u-color-4-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #293332 !important;
}
.u-button-style.u-color-4-dark-3:hover,
.u-button-style.u-color-4-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-3:focus,
.u-button-style.u-color-4-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-3:active,
.u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-3.active,
.u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-3,
li.active > .u-button-style.u-button-style.u-color-4-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #252e2d !important;
}
.u-hover-color-4-dark-3:hover,
.u-hover-color-4-dark-3[class*="u-border-"]:hover,
.u-hover-color-4-dark-3:focus,
.u-hover-color-4-dark-3[class*="u-border-"]:focus,
.u-active-color-4-dark-3.u-active.u-active,
.u-active-color-4-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-dark-3:hover,
a.u-button-style.u-hover-color-4-dark-3.hover,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-3,
a.u-button-style:hover > .u-hover-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-3:focus,
a.u-button-style.u-hover-color-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-3.active,
a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-3:checked {
  color: #ffffff !important;
  background-color: #293332 !important;
}
a.u-link.u-hover-color-4-dark-3:hover {
  color: #293332 !important;
}
.u-color-4-dark-2,
.u-body.u-color-4-dark-2,
section.u-color-4-dark-2:before,
.u-color-4-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-2 > .u-container-layout:before,
.u-color-4-dark-2 > .u-inner-container-layout:before,
.u-color-4-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-2:before,
.u-table-alt-color-4-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #41807c;
}
.u-input.u-color-4-dark-2,
.u-field-input.u-color-4-dark-2,
.u-button-style.u-color-4-dark-2,
.u-button-style.u-color-4-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #41807c !important;
}
.u-button-style.u-color-4-dark-2:hover,
.u-button-style.u-color-4-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-2:focus,
.u-button-style.u-color-4-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-2:active,
.u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-2.active,
.u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-2,
li.active > .u-button-style.u-button-style.u-color-4-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3a7370 !important;
}
.u-hover-color-4-dark-2:hover,
.u-hover-color-4-dark-2[class*="u-border-"]:hover,
.u-hover-color-4-dark-2:focus,
.u-hover-color-4-dark-2[class*="u-border-"]:focus,
.u-active-color-4-dark-2.u-active.u-active,
.u-active-color-4-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-dark-2:hover,
a.u-button-style.u-hover-color-4-dark-2.hover,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-2,
a.u-button-style:hover > .u-hover-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-2:focus,
a.u-button-style.u-hover-color-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-2.active,
a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-2:checked {
  color: #ffffff !important;
  background-color: #41807c !important;
}
a.u-link.u-hover-color-4-dark-2:hover {
  color: #41807c !important;
}
.u-color-4-dark-1,
.u-body.u-color-4-dark-1,
section.u-color-4-dark-1:before,
.u-color-4-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-4-dark-1 > .u-container-layout:before,
.u-color-4-dark-1 > .u-inner-container-layout:before,
.u-color-4-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-dark-1:before,
.u-table-alt-color-4-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #2cccc4;
}
.u-input.u-color-4-dark-1,
.u-field-input.u-color-4-dark-1,
.u-button-style.u-color-4-dark-1,
.u-button-style.u-color-4-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-color-4-dark-1:hover,
.u-button-style.u-color-4-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-4-dark-1:focus,
.u-button-style.u-color-4-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-dark-1:active,
.u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-dark-1.active,
.u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-dark-1,
li.active > .u-button-style.u-button-style.u-color-4-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #28b8b0 !important;
}
.u-hover-color-4-dark-1:hover,
.u-hover-color-4-dark-1[class*="u-border-"]:hover,
.u-hover-color-4-dark-1:focus,
.u-hover-color-4-dark-1[class*="u-border-"]:focus,
.u-active-color-4-dark-1.u-active.u-active,
.u-active-color-4-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-dark-1:hover,
a.u-button-style.u-hover-color-4-dark-1.hover,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-dark-1,
a.u-button-style:hover > .u-hover-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-4-dark-1:focus,
a.u-button-style.u-hover-color-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-dark-1.active,
a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-4-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-dark-1:checked {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-color-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-color-4,
.u-body.u-color-4,
section.u-color-4:before,
.u-color-4 > .u-audio-main-layout-wrapper:before,
.u-color-4 > .u-container-layout:before,
.u-color-4 > .u-inner-container-layout:before,
.u-color-4.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4:before,
.u-table-alt-color-4 tr:nth-child(even) {
  color: #111111;
  background-color: #3be8e0;
}
.u-input.u-color-4,
.u-field-input.u-color-4,
.u-button-style.u-color-4,
.u-button-style.u-color-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
.u-button-style.u-color-4:hover,
.u-button-style.u-color-4[class*="u-border-"]:hover,
.u-button-style.u-color-4:focus,
.u-button-style.u-color-4[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4:active,
.u-button-style.u-button-style.u-color-4[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4.active,
.u-button-style.u-button-style.u-color-4[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4,
li.active > .u-button-style.u-button-style.u-color-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #21e5dc !important;
}
.u-hover-color-4:hover,
.u-hover-color-4[class*="u-border-"]:hover,
.u-hover-color-4:focus,
.u-hover-color-4[class*="u-border-"]:focus,
.u-active-color-4.u-active.u-active,
.u-active-color-4[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4:hover,
a.u-button-style.u-hover-color-4.hover,
a.u-button-style.u-hover-color-4[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4,
a.u-button-style:hover > .u-hover-color-4[class*="u-border-"],
a.u-button-style.u-hover-color-4:focus,
a.u-button-style.u-hover-color-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4:active,
a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4.active,
a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4,
a.u-button-style.u-button-style.active > .u-active-color-4[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4,
li.active > a.u-button-style.u-button-style.u-active-color-4[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4:checked {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
a.u-link.u-hover-color-4:hover {
  color: #3be8e0 !important;
}
.u-color-4-light-1,
.u-body.u-color-4-light-1,
section.u-color-4-light-1:before,
.u-color-4-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-1 > .u-container-layout:before,
.u-color-4-light-1 > .u-inner-container-layout:before,
.u-color-4-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-1:before,
.u-table-alt-color-4-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #72efe9;
}
.u-input.u-color-4-light-1,
.u-field-input.u-color-4-light-1,
.u-button-style.u-color-4-light-1,
.u-button-style.u-color-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
.u-button-style.u-color-4-light-1:hover,
.u-button-style.u-color-4-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-1:focus,
.u-button-style.u-color-4-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-1:active,
.u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-1.active,
.u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-1,
li.active > .u-button-style.u-button-style.u-color-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #52ebe4 !important;
}
.u-hover-color-4-light-1:hover,
.u-hover-color-4-light-1[class*="u-border-"]:hover,
.u-hover-color-4-light-1:focus,
.u-hover-color-4-light-1[class*="u-border-"]:focus,
.u-active-color-4-light-1.u-active.u-active,
.u-active-color-4-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-light-1:hover,
a.u-button-style.u-hover-color-4-light-1.hover,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-1,
a.u-button-style:hover > .u-hover-color-4-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-1:focus,
a.u-button-style.u-hover-color-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-1.active,
a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-1,
a.u-button-style.u-button-style.active > .u-active-color-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-1:checked {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
a.u-link.u-hover-color-4-light-1:hover {
  color: #72efe9 !important;
}
.u-color-4-light-2,
.u-body.u-color-4-light-2,
section.u-color-4-light-2:before,
.u-color-4-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-2 > .u-container-layout:before,
.u-color-4-light-2 > .u-inner-container-layout:before,
.u-color-4-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-2:before,
.u-table-alt-color-4-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adf6f2;
}
.u-input.u-color-4-light-2,
.u-field-input.u-color-4-light-2,
.u-button-style.u-color-4-light-2,
.u-button-style.u-color-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
.u-button-style.u-color-4-light-2:hover,
.u-button-style.u-color-4-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-2:focus,
.u-button-style.u-color-4-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-2:active,
.u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-2.active,
.u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-2,
li.active > .u-button-style.u-button-style.u-color-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #87f2ec !important;
}
.u-hover-color-4-light-2:hover,
.u-hover-color-4-light-2[class*="u-border-"]:hover,
.u-hover-color-4-light-2:focus,
.u-hover-color-4-light-2[class*="u-border-"]:focus,
.u-active-color-4-light-2.u-active.u-active,
.u-active-color-4-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-light-2:hover,
a.u-button-style.u-hover-color-4-light-2.hover,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-2,
a.u-button-style:hover > .u-hover-color-4-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-2:focus,
a.u-button-style.u-hover-color-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-2.active,
a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-2,
a.u-button-style.u-button-style.active > .u-active-color-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-2:checked {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
a.u-link.u-hover-color-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-color-4-light-3,
.u-body.u-color-4-light-3,
section.u-color-4-light-3:before,
.u-color-4-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-4-light-3 > .u-container-layout:before,
.u-color-4-light-3 > .u-inner-container-layout:before,
.u-color-4-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-light-3:before,
.u-table-alt-color-4-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #eafdfc;
}
.u-input.u-color-4-light-3,
.u-field-input.u-color-4-light-3,
.u-button-style.u-color-4-light-3,
.u-button-style.u-color-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
.u-button-style.u-color-4-light-3:hover,
.u-button-style.u-color-4-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-4-light-3:focus,
.u-button-style.u-color-4-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-light-3:active,
.u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-light-3.active,
.u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-light-3,
li.active > .u-button-style.u-button-style.u-color-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bef9f6 !important;
}
.u-hover-color-4-light-3:hover,
.u-hover-color-4-light-3[class*="u-border-"]:hover,
.u-hover-color-4-light-3:focus,
.u-hover-color-4-light-3[class*="u-border-"]:focus,
.u-active-color-4-light-3.u-active.u-active,
.u-active-color-4-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-light-3:hover,
a.u-button-style.u-hover-color-4-light-3.hover,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-light-3,
a.u-button-style:hover > .u-hover-color-4-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-4-light-3:focus,
a.u-button-style.u-hover-color-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-light-3.active,
a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-light-3,
a.u-button-style.u-button-style.active > .u-active-color-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-4-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-light-3:checked {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
a.u-link.u-hover-color-4-light-3:hover {
  color: #eafdfc !important;
}
.u-color-4-base,
.u-body.u-color-4-base,
section.u-color-4-base:before,
.u-color-4-base > .u-audio-main-layout-wrapper:before,
.u-color-4-base > .u-container-layout:before,
.u-color-4-base > .u-inner-container-layout:before,
.u-color-4-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-4-base:before,
.u-table-alt-color-4-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #2cccc4;
}
.u-input.u-color-4-base,
.u-field-input.u-color-4-base,
.u-button-style.u-color-4-base,
.u-button-style.u-color-4-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-color-4-base:hover,
.u-button-style.u-color-4-base[class*="u-border-"]:hover,
.u-button-style.u-color-4-base:focus,
.u-button-style.u-color-4-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-4-base:active,
.u-button-style.u-button-style.u-color-4-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-4-base.active,
.u-button-style.u-button-style.u-color-4-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-4-base,
li.active > .u-button-style.u-button-style.u-color-4-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #28b8b0 !important;
}
.u-hover-color-4-base:hover,
.u-hover-color-4-base[class*="u-border-"]:hover,
.u-hover-color-4-base:focus,
.u-hover-color-4-base[class*="u-border-"]:focus,
.u-active-color-4-base.u-active.u-active,
.u-active-color-4-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-4-base:hover,
a.u-button-style.u-hover-color-4-base.hover,
a.u-button-style.u-hover-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-4-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-4-base,
a.u-button-style:hover > .u-hover-color-4-base[class*="u-border-"],
a.u-button-style.u-hover-color-4-base:focus,
a.u-button-style.u-hover-color-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-4-base:active,
a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-4-base.active,
a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-4-base,
a.u-button-style.u-button-style.active > .u-active-color-4-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-4-base,
li.active > a.u-button-style.u-button-style.u-active-color-4-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-4-base:checked {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-color-4-base:hover {
  color: #2cccc4 !important;
}
.u-color-5-dark-3,
.u-body.u-color-5-dark-3,
section.u-color-5-dark-3:before,
.u-color-5-dark-3 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-3 > .u-container-layout:before,
.u-color-5-dark-3 > .u-inner-container-layout:before,
.u-color-5-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-3:before,
.u-table-alt-color-5-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #292d33;
}
.u-input.u-color-5-dark-3,
.u-field-input.u-color-5-dark-3,
.u-button-style.u-color-5-dark-3,
.u-button-style.u-color-5-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #292d33 !important;
}
.u-button-style.u-color-5-dark-3:hover,
.u-button-style.u-color-5-dark-3[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-3:focus,
.u-button-style.u-color-5-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-3:active,
.u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-3.active,
.u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-3,
li.active > .u-button-style.u-button-style.u-color-5-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #25292e !important;
}
.u-hover-color-5-dark-3:hover,
.u-hover-color-5-dark-3[class*="u-border-"]:hover,
.u-hover-color-5-dark-3:focus,
.u-hover-color-5-dark-3[class*="u-border-"]:focus,
.u-active-color-5-dark-3.u-active.u-active,
.u-active-color-5-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-dark-3:hover,
a.u-button-style.u-hover-color-5-dark-3.hover,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-3,
a.u-button-style:hover > .u-hover-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-3:focus,
a.u-button-style.u-hover-color-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-3.active,
a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-3,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-3,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-3:checked {
  color: #ffffff !important;
  background-color: #292d33 !important;
}
a.u-link.u-hover-color-5-dark-3:hover {
  color: #292d33 !important;
}
.u-color-5-dark-2,
.u-body.u-color-5-dark-2,
section.u-color-5-dark-2:before,
.u-color-5-dark-2 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-2 > .u-container-layout:before,
.u-color-5-dark-2 > .u-inner-container-layout:before,
.u-color-5-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-2:before,
.u-table-alt-color-5-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #555c66;
}
.u-input.u-color-5-dark-2,
.u-field-input.u-color-5-dark-2,
.u-button-style.u-color-5-dark-2,
.u-button-style.u-color-5-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #555c66 !important;
}
.u-button-style.u-color-5-dark-2:hover,
.u-button-style.u-color-5-dark-2[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-2:focus,
.u-button-style.u-color-5-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-2:active,
.u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-2.active,
.u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-2,
li.active > .u-button-style.u-button-style.u-color-5-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #4d535c !important;
}
.u-hover-color-5-dark-2:hover,
.u-hover-color-5-dark-2[class*="u-border-"]:hover,
.u-hover-color-5-dark-2:focus,
.u-hover-color-5-dark-2[class*="u-border-"]:focus,
.u-active-color-5-dark-2.u-active.u-active,
.u-active-color-5-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-dark-2:hover,
a.u-button-style.u-hover-color-5-dark-2.hover,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-2,
a.u-button-style:hover > .u-hover-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-2:focus,
a.u-button-style.u-hover-color-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-2.active,
a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-2,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-2,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-2:checked {
  color: #ffffff !important;
  background-color: #555c66 !important;
}
a.u-link.u-hover-color-5-dark-2:hover {
  color: #555c66 !important;
}
.u-color-5-dark-1,
.u-body.u-color-5-dark-1,
section.u-color-5-dark-1:before,
.u-color-5-dark-1 > .u-audio-main-layout-wrapper:before,
.u-color-5-dark-1 > .u-container-layout:before,
.u-color-5-dark-1 > .u-inner-container-layout:before,
.u-color-5-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-dark-1:before,
.u-table-alt-color-5-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #858e99;
}
.u-input.u-color-5-dark-1,
.u-field-input.u-color-5-dark-1,
.u-button-style.u-color-5-dark-1,
.u-button-style.u-color-5-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #858e99 !important;
}
.u-button-style.u-color-5-dark-1:hover,
.u-button-style.u-color-5-dark-1[class*="u-border-"]:hover,
.u-button-style.u-color-5-dark-1:focus,
.u-button-style.u-color-5-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-dark-1:active,
.u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-dark-1.active,
.u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-dark-1,
li.active > .u-button-style.u-button-style.u-color-5-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #75808c !important;
}
.u-hover-color-5-dark-1:hover,
.u-hover-color-5-dark-1[class*="u-border-"]:hover,
.u-hover-color-5-dark-1:focus,
.u-hover-color-5-dark-1[class*="u-border-"]:focus,
.u-active-color-5-dark-1.u-active.u-active,
.u-active-color-5-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-dark-1:hover,
a.u-button-style.u-hover-color-5-dark-1.hover,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-dark-1,
a.u-button-style:hover > .u-hover-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-hover-color-5-dark-1:focus,
a.u-button-style.u-hover-color-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-dark-1.active,
a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-1,
a.u-button-style.u-button-style.active > .u-active-color-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-1,
li.active > a.u-button-style.u-button-style.u-active-color-5-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-dark-1:checked {
  color: #ffffff !important;
  background-color: #858e99 !important;
}
a.u-link.u-hover-color-5-dark-1:hover {
  color: #858e99 !important;
}
.u-color-5,
.u-body.u-color-5,
section.u-color-5:before,
.u-color-5 > .u-audio-main-layout-wrapper:before,
.u-color-5 > .u-container-layout:before,
.u-color-5 > .u-inner-container-layout:before,
.u-color-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5:before,
.u-table-alt-color-5 tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-color-5,
.u-field-input.u-color-5,
.u-button-style.u-color-5,
.u-button-style.u-color-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-color-5:hover,
.u-button-style.u-color-5[class*="u-border-"]:hover,
.u-button-style.u-color-5:focus,
.u-button-style.u-color-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5:active,
.u-button-style.u-button-style.u-color-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5.active,
.u-button-style.u-button-style.u-color-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5,
li.active > .u-button-style.u-button-style.u-color-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
.u-hover-color-5:hover,
.u-hover-color-5[class*="u-border-"]:hover,
.u-hover-color-5:focus,
.u-hover-color-5[class*="u-border-"]:focus,
.u-active-color-5.u-active.u-active,
.u-active-color-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5:hover,
a.u-button-style.u-hover-color-5.hover,
a.u-button-style.u-hover-color-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5,
a.u-button-style:hover > .u-hover-color-5[class*="u-border-"],
a.u-button-style.u-hover-color-5:focus,
a.u-button-style.u-hover-color-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5:active,
a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5.active,
a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5,
a.u-button-style.u-button-style.active > .u-active-color-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5,
li.active > a.u-button-style.u-button-style.u-active-color-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-color-5:hover {
  color: #b9c1cc !important;
}
.u-color-5-light-1,
.u-body.u-color-5-light-1,
section.u-color-5-light-1:before,
.u-color-5-light-1 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-1 > .u-container-layout:before,
.u-color-5-light-1 > .u-inner-container-layout:before,
.u-color-5-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-1:before,
.u-table-alt-color-5-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #ccd3db;
}
.u-input.u-color-5-light-1,
.u-field-input.u-color-5-light-1,
.u-button-style.u-color-5-light-1,
.u-button-style.u-color-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
.u-button-style.u-color-5-light-1:hover,
.u-button-style.u-color-5-light-1[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-1:focus,
.u-button-style.u-color-5-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-1:active,
.u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-1.active,
.u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-1,
li.active > .u-button-style.u-button-style.u-color-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b3bec9 !important;
}
.u-hover-color-5-light-1:hover,
.u-hover-color-5-light-1[class*="u-border-"]:hover,
.u-hover-color-5-light-1:focus,
.u-hover-color-5-light-1[class*="u-border-"]:focus,
.u-active-color-5-light-1.u-active.u-active,
.u-active-color-5-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-light-1:hover,
a.u-button-style.u-hover-color-5-light-1.hover,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-1,
a.u-button-style:hover > .u-hover-color-5-light-1[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-1:focus,
a.u-button-style.u-hover-color-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-1.active,
a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-1,
a.u-button-style.u-button-style.active > .u-active-color-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-1,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-1:checked {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
a.u-link.u-hover-color-5-light-1:hover {
  color: #ccd3db !important;
}
.u-color-5-light-2,
.u-body.u-color-5-light-2,
section.u-color-5-light-2:before,
.u-color-5-light-2 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-2 > .u-container-layout:before,
.u-color-5-light-2 > .u-inner-container-layout:before,
.u-color-5-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-2:before,
.u-table-alt-color-5-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #e0e5eb;
}
.u-input.u-color-5-light-2,
.u-field-input.u-color-5-light-2,
.u-button-style.u-color-5-light-2,
.u-button-style.u-color-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
.u-button-style.u-color-5-light-2:hover,
.u-button-style.u-color-5-light-2[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-2:focus,
.u-button-style.u-color-5-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-2:active,
.u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-2.active,
.u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-2,
li.active > .u-button-style.u-button-style.u-color-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c4ced9 !important;
}
.u-hover-color-5-light-2:hover,
.u-hover-color-5-light-2[class*="u-border-"]:hover,
.u-hover-color-5-light-2:focus,
.u-hover-color-5-light-2[class*="u-border-"]:focus,
.u-active-color-5-light-2.u-active.u-active,
.u-active-color-5-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-light-2:hover,
a.u-button-style.u-hover-color-5-light-2.hover,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-2,
a.u-button-style:hover > .u-hover-color-5-light-2[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-2:focus,
a.u-button-style.u-hover-color-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-2.active,
a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-2,
a.u-button-style.u-button-style.active > .u-active-color-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-2,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-2:checked {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
a.u-link.u-hover-color-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-color-5-light-3,
.u-body.u-color-5-light-3,
section.u-color-5-light-3:before,
.u-color-5-light-3 > .u-audio-main-layout-wrapper:before,
.u-color-5-light-3 > .u-container-layout:before,
.u-color-5-light-3 > .u-inner-container-layout:before,
.u-color-5-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-light-3:before,
.u-table-alt-color-5-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f5f7fa;
}
.u-input.u-color-5-light-3,
.u-field-input.u-color-5-light-3,
.u-button-style.u-color-5-light-3,
.u-button-style.u-color-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
.u-button-style.u-color-5-light-3:hover,
.u-button-style.u-color-5-light-3[class*="u-border-"]:hover,
.u-button-style.u-color-5-light-3:focus,
.u-button-style.u-color-5-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-light-3:active,
.u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-light-3.active,
.u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-light-3,
li.active > .u-button-style.u-button-style.u-color-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4dde9 !important;
}
.u-hover-color-5-light-3:hover,
.u-hover-color-5-light-3[class*="u-border-"]:hover,
.u-hover-color-5-light-3:focus,
.u-hover-color-5-light-3[class*="u-border-"]:focus,
.u-active-color-5-light-3.u-active.u-active,
.u-active-color-5-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-light-3:hover,
a.u-button-style.u-hover-color-5-light-3.hover,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-light-3,
a.u-button-style:hover > .u-hover-color-5-light-3[class*="u-border-"],
a.u-button-style.u-hover-color-5-light-3:focus,
a.u-button-style.u-hover-color-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-light-3.active,
a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-light-3,
a.u-button-style.u-button-style.active > .u-active-color-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-light-3,
li.active > a.u-button-style.u-button-style.u-active-color-5-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-light-3:checked {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
a.u-link.u-hover-color-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-color-5-base,
.u-body.u-color-5-base,
section.u-color-5-base:before,
.u-color-5-base > .u-audio-main-layout-wrapper:before,
.u-color-5-base > .u-container-layout:before,
.u-color-5-base > .u-inner-container-layout:before,
.u-color-5-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-color-5-base:before,
.u-table-alt-color-5-base tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-color-5-base,
.u-field-input.u-color-5-base,
.u-button-style.u-color-5-base,
.u-button-style.u-color-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-color-5-base:hover,
.u-button-style.u-color-5-base[class*="u-border-"]:hover,
.u-button-style.u-color-5-base:focus,
.u-button-style.u-color-5-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-color-5-base:active,
.u-button-style.u-button-style.u-color-5-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-color-5-base.active,
.u-button-style.u-button-style.u-color-5-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-color-5-base,
li.active > .u-button-style.u-button-style.u-color-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
.u-hover-color-5-base:hover,
.u-hover-color-5-base[class*="u-border-"]:hover,
.u-hover-color-5-base:focus,
.u-hover-color-5-base[class*="u-border-"]:focus,
.u-active-color-5-base.u-active.u-active,
.u-active-color-5-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-color-5-base:hover,
a.u-button-style.u-hover-color-5-base.hover,
a.u-button-style.u-hover-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-color-5-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-color-5-base,
a.u-button-style:hover > .u-hover-color-5-base[class*="u-border-"],
a.u-button-style.u-hover-color-5-base:focus,
a.u-button-style.u-hover-color-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-color-5-base:active,
a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-color-5-base.active,
a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-color-5-base,
a.u-button-style.u-button-style.active > .u-active-color-5-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-color-5-base,
li.active > a.u-button-style.u-button-style.u-active-color-5-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-color-5-base:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-color-5-base:hover {
  color: #b9c1cc !important;
}
.u-palette-1-dark-3,
.u-body.u-palette-1-dark-3,
section.u-palette-1-dark-3:before,
.u-palette-1-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-3 > .u-container-layout:before,
.u-palette-1-dark-3 > .u-inner-container-layout:before,
.u-palette-1-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-3:before,
.u-table-alt-palette-1-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #292e33;
}
.u-input.u-palette-1-dark-3,
.u-field-input.u-palette-1-dark-3,
.u-button-style.u-palette-1-dark-3,
.u-button-style.u-palette-1-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #292e33 !important;
}
.u-button-style.u-palette-1-dark-3:hover,
.u-button-style.u-palette-1-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-3:focus,
.u-button-style.u-palette-1-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-3:active,
.u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-3.active,
.u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-3,
li.active > .u-button-style.u-button-style.u-palette-1-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #25292e !important;
}
.u-hover-palette-1-dark-3:hover,
.u-hover-palette-1-dark-3[class*="u-border-"]:hover,
.u-hover-palette-1-dark-3:focus,
.u-hover-palette-1-dark-3[class*="u-border-"]:focus,
.u-active-palette-1-dark-3.u-active.u-active,
.u-active-palette-1-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-dark-3:hover,
a.u-button-style.u-hover-palette-1-dark-3.hover,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-3,
a.u-button-style:hover > .u-hover-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-3:focus,
a.u-button-style.u-hover-palette-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-3:checked {
  color: #ffffff !important;
  background-color: #292e33 !important;
}
a.u-link.u-hover-palette-1-dark-3:hover {
  color: #292e33 !important;
}
.u-palette-1-dark-2,
.u-body.u-palette-1-dark-2,
section.u-palette-1-dark-2:before,
.u-palette-1-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-2 > .u-container-layout:before,
.u-palette-1-dark-2 > .u-inner-container-layout:before,
.u-palette-1-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-2:before,
.u-table-alt-palette-1-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #425465;
}
.u-input.u-palette-1-dark-2,
.u-field-input.u-palette-1-dark-2,
.u-button-style.u-palette-1-dark-2,
.u-button-style.u-palette-1-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #425465 !important;
}
.u-button-style.u-palette-1-dark-2:hover,
.u-button-style.u-palette-1-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-2:focus,
.u-button-style.u-palette-1-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-2:active,
.u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-2.active,
.u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-2,
li.active > .u-button-style.u-button-style.u-palette-1-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3b4c5b !important;
}
.u-hover-palette-1-dark-2:hover,
.u-hover-palette-1-dark-2[class*="u-border-"]:hover,
.u-hover-palette-1-dark-2:focus,
.u-hover-palette-1-dark-2[class*="u-border-"]:focus,
.u-active-palette-1-dark-2.u-active.u-active,
.u-active-palette-1-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-dark-2:hover,
a.u-button-style.u-hover-palette-1-dark-2.hover,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-2,
a.u-button-style:hover > .u-hover-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-2:focus,
a.u-button-style.u-hover-palette-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-2:checked {
  color: #ffffff !important;
  background-color: #425465 !important;
}
a.u-link.u-hover-palette-1-dark-2:hover {
  color: #425465 !important;
}
.u-palette-1-dark-1,
.u-body.u-palette-1-dark-1,
section.u-palette-1-dark-1:before,
.u-palette-1-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1-dark-1 > .u-container-layout:before,
.u-palette-1-dark-1 > .u-inner-container-layout:before,
.u-palette-1-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-dark-1:before,
.u-table-alt-palette-1-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #4c7397;
}
.u-input.u-palette-1-dark-1,
.u-field-input.u-palette-1-dark-1,
.u-button-style.u-palette-1-dark-1,
.u-button-style.u-palette-1-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #4c7397 !important;
}
.u-button-style.u-palette-1-dark-1:hover,
.u-button-style.u-palette-1-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1-dark-1:focus,
.u-button-style.u-palette-1-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-dark-1:active,
.u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-dark-1.active,
.u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-dark-1,
li.active > .u-button-style.u-button-style.u-palette-1-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #446888 !important;
}
.u-hover-palette-1-dark-1:hover,
.u-hover-palette-1-dark-1[class*="u-border-"]:hover,
.u-hover-palette-1-dark-1:focus,
.u-hover-palette-1-dark-1[class*="u-border-"]:focus,
.u-active-palette-1-dark-1.u-active.u-active,
.u-active-palette-1-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-dark-1:hover,
a.u-button-style.u-hover-palette-1-dark-1.hover,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-dark-1,
a.u-button-style:hover > .u-hover-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1-dark-1:focus,
a.u-button-style.u-hover-palette-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-dark-1:checked {
  color: #ffffff !important;
  background-color: #4c7397 !important;
}
a.u-link.u-hover-palette-1-dark-1:hover {
  color: #4c7397 !important;
}
.u-palette-1,
.u-body.u-palette-1,
section.u-palette-1:before,
.u-palette-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1 > .u-container-layout:before,
.u-palette-1 > .u-inner-container-layout:before,
.u-palette-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1:before,
.u-table-alt-palette-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #478ac9;
}
.u-input.u-palette-1,
.u-field-input.u-palette-1,
.u-button-style.u-palette-1,
.u-button-style.u-palette-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
.u-button-style.u-palette-1:hover,
.u-button-style.u-palette-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1:focus,
.u-button-style.u-palette-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1:active,
.u-button-style.u-button-style.u-palette-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1.active,
.u-button-style.u-button-style.u-palette-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1,
li.active > .u-button-style.u-button-style.u-palette-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #387cbd !important;
}
.u-hover-palette-1:hover,
.u-hover-palette-1[class*="u-border-"]:hover,
.u-hover-palette-1:focus,
.u-hover-palette-1[class*="u-border-"]:focus,
.u-active-palette-1.u-active.u-active,
.u-active-palette-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1:hover,
a.u-button-style.u-hover-palette-1.hover,
a.u-button-style.u-hover-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1,
a.u-button-style:hover > .u-hover-palette-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1:focus,
a.u-button-style.u-hover-palette-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1:active,
a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1.active,
a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1,
a.u-button-style.u-button-style.active > .u-active-palette-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1:checked {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
a.u-link.u-hover-palette-1:hover {
  color: #478ac9 !important;
}
.u-palette-1-light-1,
.u-body.u-palette-1-light-1,
section.u-palette-1-light-1:before,
.u-palette-1-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-1 > .u-container-layout:before,
.u-palette-1-light-1 > .u-inner-container-layout:before,
.u-palette-1-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-1:before,
.u-table-alt-palette-1-light-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #77aad9;
}
.u-input.u-palette-1-light-1,
.u-field-input.u-palette-1-light-1,
.u-button-style.u-palette-1-light-1,
.u-button-style.u-palette-1-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #77aad9 !important;
}
.u-button-style.u-palette-1-light-1:hover,
.u-button-style.u-palette-1-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-1:focus,
.u-button-style.u-palette-1-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-1:active,
.u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-1.active,
.u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-1,
li.active > .u-button-style.u-button-style.u-palette-1-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #5d9ad2 !important;
}
.u-hover-palette-1-light-1:hover,
.u-hover-palette-1-light-1[class*="u-border-"]:hover,
.u-hover-palette-1-light-1:focus,
.u-hover-palette-1-light-1[class*="u-border-"]:focus,
.u-active-palette-1-light-1.u-active.u-active,
.u-active-palette-1-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-light-1:hover,
a.u-button-style.u-hover-palette-1-light-1.hover,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-1,
a.u-button-style:hover > .u-hover-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-1:focus,
a.u-button-style.u-hover-palette-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-1.active,
a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-1:checked {
  color: #ffffff !important;
  background-color: #77aad9 !important;
}
a.u-link.u-hover-palette-1-light-1:hover {
  color: #77aad9 !important;
}
.u-palette-1-light-2,
.u-body.u-palette-1-light-2,
section.u-palette-1-light-2:before,
.u-palette-1-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-2 > .u-container-layout:before,
.u-palette-1-light-2 > .u-inner-container-layout:before,
.u-palette-1-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-2:before,
.u-table-alt-palette-1-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adcce9;
}
.u-input.u-palette-1-light-2,
.u-field-input.u-palette-1-light-2,
.u-button-style.u-palette-1-light-2,
.u-button-style.u-palette-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adcce9 !important;
}
.u-button-style.u-palette-1-light-2:hover,
.u-button-style.u-palette-1-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-2:focus,
.u-button-style.u-palette-1-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-2:active,
.u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-2.active,
.u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-2,
li.active > .u-button-style.u-button-style.u-palette-1-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #8db8e0 !important;
}
.u-hover-palette-1-light-2:hover,
.u-hover-palette-1-light-2[class*="u-border-"]:hover,
.u-hover-palette-1-light-2:focus,
.u-hover-palette-1-light-2[class*="u-border-"]:focus,
.u-active-palette-1-light-2.u-active.u-active,
.u-active-palette-1-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-light-2:hover,
a.u-button-style.u-hover-palette-1-light-2.hover,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-2,
a.u-button-style:hover > .u-hover-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-2:focus,
a.u-button-style.u-hover-palette-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-2.active,
a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-2:checked {
  color: #111111 !important;
  background-color: #adcce9 !important;
}
a.u-link.u-hover-palette-1-light-2:hover {
  color: #adcce9 !important;
}
.u-palette-1-light-3,
.u-body.u-palette-1-light-3,
section.u-palette-1-light-3:before,
.u-palette-1-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-1-light-3 > .u-container-layout:before,
.u-palette-1-light-3 > .u-inner-container-layout:before,
.u-palette-1-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-light-3:before,
.u-table-alt-palette-1-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #e9f2fa;
}
.u-input.u-palette-1-light-3,
.u-field-input.u-palette-1-light-3,
.u-button-style.u-palette-1-light-3,
.u-button-style.u-palette-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e9f2fa !important;
}
.u-button-style.u-palette-1-light-3:hover,
.u-button-style.u-palette-1-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-1-light-3:focus,
.u-button-style.u-palette-1-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-light-3:active,
.u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-light-3.active,
.u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-light-3,
li.active > .u-button-style.u-button-style.u-palette-1-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c2dbf1 !important;
}
.u-hover-palette-1-light-3:hover,
.u-hover-palette-1-light-3[class*="u-border-"]:hover,
.u-hover-palette-1-light-3:focus,
.u-hover-palette-1-light-3[class*="u-border-"]:focus,
.u-active-palette-1-light-3.u-active.u-active,
.u-active-palette-1-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-light-3:hover,
a.u-button-style.u-hover-palette-1-light-3.hover,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-light-3,
a.u-button-style:hover > .u-hover-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-1-light-3:focus,
a.u-button-style.u-hover-palette-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-light-3.active,
a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-1-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-light-3:checked {
  color: #111111 !important;
  background-color: #e9f2fa !important;
}
a.u-link.u-hover-palette-1-light-3:hover {
  color: #e9f2fa !important;
}
.u-palette-1-base,
.u-body.u-palette-1-base,
section.u-palette-1-base:before,
.u-palette-1-base > .u-audio-main-layout-wrapper:before,
.u-palette-1-base > .u-container-layout:before,
.u-palette-1-base > .u-inner-container-layout:before,
.u-palette-1-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-1-base:before,
.u-table-alt-palette-1-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #478ac9;
}
.u-input.u-palette-1-base,
.u-field-input.u-palette-1-base,
.u-button-style.u-palette-1-base,
.u-button-style.u-palette-1-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
.u-button-style.u-palette-1-base:hover,
.u-button-style.u-palette-1-base[class*="u-border-"]:hover,
.u-button-style.u-palette-1-base:focus,
.u-button-style.u-palette-1-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-1-base:active,
.u-button-style.u-button-style.u-palette-1-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-1-base.active,
.u-button-style.u-button-style.u-palette-1-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-1-base,
li.active > .u-button-style.u-button-style.u-palette-1-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #387cbd !important;
}
.u-hover-palette-1-base:hover,
.u-hover-palette-1-base[class*="u-border-"]:hover,
.u-hover-palette-1-base:focus,
.u-hover-palette-1-base[class*="u-border-"]:focus,
.u-active-palette-1-base.u-active.u-active,
.u-active-palette-1-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-1-base:hover,
a.u-button-style.u-hover-palette-1-base.hover,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-1-base,
a.u-button-style:hover > .u-hover-palette-1-base[class*="u-border-"],
a.u-button-style.u-hover-palette-1-base:focus,
a.u-button-style.u-hover-palette-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-1-base:active,
a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-1-base.active,
a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-1-base,
a.u-button-style.u-button-style.active > .u-active-palette-1-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-1-base,
li.active > a.u-button-style.u-button-style.u-active-palette-1-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-1-base:checked {
  color: #ffffff !important;
  background-color: #478ac9 !important;
}
a.u-link.u-hover-palette-1-base:hover {
  color: #478ac9 !important;
}
.u-palette-2-dark-3,
.u-body.u-palette-2-dark-3,
section.u-palette-2-dark-3:before,
.u-palette-2-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-3 > .u-container-layout:before,
.u-palette-2-dark-3 > .u-inner-container-layout:before,
.u-palette-2-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-3:before,
.u-table-alt-palette-2-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #332929;
}
.u-input.u-palette-2-dark-3,
.u-field-input.u-palette-2-dark-3,
.u-button-style.u-palette-2-dark-3,
.u-button-style.u-palette-2-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #332929 !important;
}
.u-button-style.u-palette-2-dark-3:hover,
.u-button-style.u-palette-2-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-3:focus,
.u-button-style.u-palette-2-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-3:active,
.u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-3.active,
.u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-3,
li.active > .u-button-style.u-button-style.u-palette-2-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2525 !important;
}
.u-hover-palette-2-dark-3:hover,
.u-hover-palette-2-dark-3[class*="u-border-"]:hover,
.u-hover-palette-2-dark-3:focus,
.u-hover-palette-2-dark-3[class*="u-border-"]:focus,
.u-active-palette-2-dark-3.u-active.u-active,
.u-active-palette-2-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-dark-3:hover,
a.u-button-style.u-hover-palette-2-dark-3.hover,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-3,
a.u-button-style:hover > .u-hover-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-3:focus,
a.u-button-style.u-hover-palette-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-3:checked {
  color: #ffffff !important;
  background-color: #332929 !important;
}
a.u-link.u-hover-palette-2-dark-3:hover {
  color: #332929 !important;
}
.u-palette-2-dark-2,
.u-body.u-palette-2-dark-2,
section.u-palette-2-dark-2:before,
.u-palette-2-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-2 > .u-container-layout:before,
.u-palette-2-dark-2 > .u-inner-container-layout:before,
.u-palette-2-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-2:before,
.u-table-alt-palette-2-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #744547;
}
.u-input.u-palette-2-dark-2,
.u-field-input.u-palette-2-dark-2,
.u-button-style.u-palette-2-dark-2,
.u-button-style.u-palette-2-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #744547 !important;
}
.u-button-style.u-palette-2-dark-2:hover,
.u-button-style.u-palette-2-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-2:focus,
.u-button-style.u-palette-2-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-2:active,
.u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-2.active,
.u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-2,
li.active > .u-button-style.u-button-style.u-palette-2-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #683e40 !important;
}
.u-hover-palette-2-dark-2:hover,
.u-hover-palette-2-dark-2[class*="u-border-"]:hover,
.u-hover-palette-2-dark-2:focus,
.u-hover-palette-2-dark-2[class*="u-border-"]:focus,
.u-active-palette-2-dark-2.u-active.u-active,
.u-active-palette-2-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-dark-2:hover,
a.u-button-style.u-hover-palette-2-dark-2.hover,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-2,
a.u-button-style:hover > .u-hover-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-2:focus,
a.u-button-style.u-hover-palette-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-2:checked {
  color: #ffffff !important;
  background-color: #744547 !important;
}
a.u-link.u-hover-palette-2-dark-2:hover {
  color: #744547 !important;
}
.u-palette-2-dark-1,
.u-body.u-palette-2-dark-1,
section.u-palette-2-dark-1:before,
.u-palette-2-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-2-dark-1 > .u-container-layout:before,
.u-palette-2-dark-1 > .u-inner-container-layout:before,
.u-palette-2-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-dark-1:before,
.u-table-alt-palette-2-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #b6474c;
}
.u-input.u-palette-2-dark-1,
.u-field-input.u-palette-2-dark-1,
.u-button-style.u-palette-2-dark-1,
.u-button-style.u-palette-2-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b6474c !important;
}
.u-button-style.u-palette-2-dark-1:hover,
.u-button-style.u-palette-2-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-2-dark-1:focus,
.u-button-style.u-palette-2-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-dark-1:active,
.u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-dark-1.active,
.u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-dark-1,
li.active > .u-button-style.u-button-style.u-palette-2-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a44044 !important;
}
.u-hover-palette-2-dark-1:hover,
.u-hover-palette-2-dark-1[class*="u-border-"]:hover,
.u-hover-palette-2-dark-1:focus,
.u-hover-palette-2-dark-1[class*="u-border-"]:focus,
.u-active-palette-2-dark-1.u-active.u-active,
.u-active-palette-2-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-dark-1:hover,
a.u-button-style.u-hover-palette-2-dark-1.hover,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-dark-1,
a.u-button-style:hover > .u-hover-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-2-dark-1:focus,
a.u-button-style.u-hover-palette-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-2-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-dark-1:checked {
  color: #ffffff !important;
  background-color: #b6474c !important;
}
a.u-link.u-hover-palette-2-dark-1:hover {
  color: #b6474c !important;
}
.u-palette-2,
.u-body.u-palette-2,
section.u-palette-2:before,
.u-palette-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2 > .u-container-layout:before,
.u-palette-2 > .u-inner-container-layout:before,
.u-palette-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2:before,
.u-table-alt-palette-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #f72e37;
}
.u-input.u-palette-2,
.u-field-input.u-palette-2,
.u-button-style.u-palette-2,
.u-button-style.u-palette-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
.u-button-style.u-palette-2:hover,
.u-button-style.u-palette-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2:focus,
.u-button-style.u-palette-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2:active,
.u-button-style.u-button-style.u-palette-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2.active,
.u-button-style.u-button-style.u-palette-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2,
li.active > .u-button-style.u-button-style.u-palette-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f6121c !important;
}
.u-hover-palette-2:hover,
.u-hover-palette-2[class*="u-border-"]:hover,
.u-hover-palette-2:focus,
.u-hover-palette-2[class*="u-border-"]:focus,
.u-active-palette-2.u-active.u-active,
.u-active-palette-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2:hover,
a.u-button-style.u-hover-palette-2.hover,
a.u-button-style.u-hover-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2,
a.u-button-style:hover > .u-hover-palette-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2:focus,
a.u-button-style.u-hover-palette-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2:active,
a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2.active,
a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2,
a.u-button-style.u-button-style.active > .u-active-palette-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2:checked {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
a.u-link.u-hover-palette-2:hover {
  color: #f72e37 !important;
}
.u-palette-2-light-1,
.u-body.u-palette-2-light-1,
section.u-palette-2-light-1:before,
.u-palette-2-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-1 > .u-container-layout:before,
.u-palette-2-light-1 > .u-inner-container-layout:before,
.u-palette-2-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-1:before,
.u-table-alt-palette-2-light-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #f96b72;
}
.u-input.u-palette-2-light-1,
.u-field-input.u-palette-2-light-1,
.u-button-style.u-palette-2-light-1,
.u-button-style.u-palette-2-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f96b72 !important;
}
.u-button-style.u-palette-2-light-1:hover,
.u-button-style.u-palette-2-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-1:focus,
.u-button-style.u-palette-2-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-1:active,
.u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-1.active,
.u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-1,
li.active > .u-button-style.u-button-style.u-palette-2-light-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f84951 !important;
}
.u-hover-palette-2-light-1:hover,
.u-hover-palette-2-light-1[class*="u-border-"]:hover,
.u-hover-palette-2-light-1:focus,
.u-hover-palette-2-light-1[class*="u-border-"]:focus,
.u-active-palette-2-light-1.u-active.u-active,
.u-active-palette-2-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-light-1:hover,
a.u-button-style.u-hover-palette-2-light-1.hover,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-1,
a.u-button-style:hover > .u-hover-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-1:focus,
a.u-button-style.u-hover-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-1.active,
a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-1:checked {
  color: #ffffff !important;
  background-color: #f96b72 !important;
}
a.u-link.u-hover-palette-2-light-1:hover {
  color: #f96b72 !important;
}
.u-palette-2-light-2,
.u-body.u-palette-2-light-2,
section.u-palette-2-light-2:before,
.u-palette-2-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-2 > .u-container-layout:before,
.u-palette-2-light-2 > .u-inner-container-layout:before,
.u-palette-2-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-2:before,
.u-table-alt-palette-2-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #fcaaae;
}
.u-input.u-palette-2-light-2,
.u-field-input.u-palette-2-light-2,
.u-button-style.u-palette-2-light-2,
.u-button-style.u-palette-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fcaaae !important;
}
.u-button-style.u-palette-2-light-2:hover,
.u-button-style.u-palette-2-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-2:focus,
.u-button-style.u-palette-2-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-2:active,
.u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-2.active,
.u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-2,
li.active > .u-button-style.u-button-style.u-palette-2-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fb8187 !important;
}
.u-hover-palette-2-light-2:hover,
.u-hover-palette-2-light-2[class*="u-border-"]:hover,
.u-hover-palette-2-light-2:focus,
.u-hover-palette-2-light-2[class*="u-border-"]:focus,
.u-active-palette-2-light-2.u-active.u-active,
.u-active-palette-2-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-light-2:hover,
a.u-button-style.u-hover-palette-2-light-2.hover,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-2,
a.u-button-style:hover > .u-hover-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-2:focus,
a.u-button-style.u-hover-palette-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-2.active,
a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-2:checked {
  color: #111111 !important;
  background-color: #fcaaae !important;
}
a.u-link.u-hover-palette-2-light-2:hover {
  color: #fcaaae !important;
}
.u-palette-2-light-3,
.u-body.u-palette-2-light-3,
section.u-palette-2-light-3:before,
.u-palette-2-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-2-light-3 > .u-container-layout:before,
.u-palette-2-light-3 > .u-inner-container-layout:before,
.u-palette-2-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-light-3:before,
.u-table-alt-palette-2-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #feeaea;
}
.u-input.u-palette-2-light-3,
.u-field-input.u-palette-2-light-3,
.u-button-style.u-palette-2-light-3,
.u-button-style.u-palette-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #feeaea !important;
}
.u-button-style.u-palette-2-light-3:hover,
.u-button-style.u-palette-2-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-2-light-3:focus,
.u-button-style.u-palette-2-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-light-3:active,
.u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-light-3.active,
.u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-light-3,
li.active > .u-button-style.u-button-style.u-palette-2-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fcbbbb !important;
}
.u-hover-palette-2-light-3:hover,
.u-hover-palette-2-light-3[class*="u-border-"]:hover,
.u-hover-palette-2-light-3:focus,
.u-hover-palette-2-light-3[class*="u-border-"]:focus,
.u-active-palette-2-light-3.u-active.u-active,
.u-active-palette-2-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-light-3:hover,
a.u-button-style.u-hover-palette-2-light-3.hover,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-light-3,
a.u-button-style:hover > .u-hover-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-2-light-3:focus,
a.u-button-style.u-hover-palette-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-light-3.active,
a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-2-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-light-3:checked {
  color: #111111 !important;
  background-color: #feeaea !important;
}
a.u-link.u-hover-palette-2-light-3:hover {
  color: #feeaea !important;
}
.u-palette-2-base,
.u-body.u-palette-2-base,
section.u-palette-2-base:before,
.u-palette-2-base > .u-audio-main-layout-wrapper:before,
.u-palette-2-base > .u-container-layout:before,
.u-palette-2-base > .u-inner-container-layout:before,
.u-palette-2-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-2-base:before,
.u-table-alt-palette-2-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #f72e37;
}
.u-input.u-palette-2-base,
.u-field-input.u-palette-2-base,
.u-button-style.u-palette-2-base,
.u-button-style.u-palette-2-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
.u-button-style.u-palette-2-base:hover,
.u-button-style.u-palette-2-base[class*="u-border-"]:hover,
.u-button-style.u-palette-2-base:focus,
.u-button-style.u-palette-2-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-2-base:active,
.u-button-style.u-button-style.u-palette-2-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-2-base.active,
.u-button-style.u-button-style.u-palette-2-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-2-base,
li.active > .u-button-style.u-button-style.u-palette-2-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #f6121c !important;
}
.u-hover-palette-2-base:hover,
.u-hover-palette-2-base[class*="u-border-"]:hover,
.u-hover-palette-2-base:focus,
.u-hover-palette-2-base[class*="u-border-"]:focus,
.u-active-palette-2-base.u-active.u-active,
.u-active-palette-2-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-2-base:hover,
a.u-button-style.u-hover-palette-2-base.hover,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-2-base,
a.u-button-style:hover > .u-hover-palette-2-base[class*="u-border-"],
a.u-button-style.u-hover-palette-2-base:focus,
a.u-button-style.u-hover-palette-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-2-base:active,
a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-2-base.active,
a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-2-base,
a.u-button-style.u-button-style.active > .u-active-palette-2-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-2-base,
li.active > a.u-button-style.u-button-style.u-active-palette-2-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-2-base:checked {
  color: #ffffff !important;
  background-color: #f72e37 !important;
}
a.u-link.u-hover-palette-2-base:hover {
  color: #f72e37 !important;
}
.u-palette-3-dark-3,
.u-body.u-palette-3-dark-3,
section.u-palette-3-dark-3:before,
.u-palette-3-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-3 > .u-container-layout:before,
.u-palette-3-dark-3 > .u-inner-container-layout:before,
.u-palette-3-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-3:before,
.u-table-alt-palette-3-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #333129;
}
.u-input.u-palette-3-dark-3,
.u-field-input.u-palette-3-dark-3,
.u-button-style.u-palette-3-dark-3,
.u-button-style.u-palette-3-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #333129 !important;
}
.u-button-style.u-palette-3-dark-3:hover,
.u-button-style.u-palette-3-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-3:focus,
.u-button-style.u-palette-3-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-3:active,
.u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-3.active,
.u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-3,
li.active > .u-button-style.u-button-style.u-palette-3-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2c25 !important;
}
.u-hover-palette-3-dark-3:hover,
.u-hover-palette-3-dark-3[class*="u-border-"]:hover,
.u-hover-palette-3-dark-3:focus,
.u-hover-palette-3-dark-3[class*="u-border-"]:focus,
.u-active-palette-3-dark-3.u-active.u-active,
.u-active-palette-3-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-dark-3:hover,
a.u-button-style.u-hover-palette-3-dark-3.hover,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-3,
a.u-button-style:hover > .u-hover-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-3:focus,
a.u-button-style.u-hover-palette-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-3:checked {
  color: #ffffff !important;
  background-color: #333129 !important;
}
a.u-link.u-hover-palette-3-dark-3:hover {
  color: #333129 !important;
}
.u-palette-3-dark-2,
.u-body.u-palette-3-dark-2,
section.u-palette-3-dark-2:before,
.u-palette-3-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-2 > .u-container-layout:before,
.u-palette-3-dark-2 > .u-inner-container-layout:before,
.u-palette-3-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-2:before,
.u-table-alt-palette-3-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #72683f;
}
.u-input.u-palette-3-dark-2,
.u-field-input.u-palette-3-dark-2,
.u-button-style.u-palette-3-dark-2,
.u-button-style.u-palette-3-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #72683f !important;
}
.u-button-style.u-palette-3-dark-2:hover,
.u-button-style.u-palette-3-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-2:focus,
.u-button-style.u-palette-3-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-2:active,
.u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-2.active,
.u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-2,
li.active > .u-button-style.u-button-style.u-palette-3-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #675e39 !important;
}
.u-hover-palette-3-dark-2:hover,
.u-hover-palette-3-dark-2[class*="u-border-"]:hover,
.u-hover-palette-3-dark-2:focus,
.u-hover-palette-3-dark-2[class*="u-border-"]:focus,
.u-active-palette-3-dark-2.u-active.u-active,
.u-active-palette-3-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-dark-2:hover,
a.u-button-style.u-hover-palette-3-dark-2.hover,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-2,
a.u-button-style:hover > .u-hover-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-2:focus,
a.u-button-style.u-hover-palette-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-2:checked {
  color: #ffffff !important;
  background-color: #72683f !important;
}
a.u-link.u-hover-palette-3-dark-2:hover {
  color: #72683f !important;
}
.u-palette-3-dark-1,
.u-body.u-palette-3-dark-1,
section.u-palette-3-dark-1:before,
.u-palette-3-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-3-dark-1 > .u-container-layout:before,
.u-palette-3-dark-1 > .u-inner-container-layout:before,
.u-palette-3-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-dark-1:before,
.u-table-alt-palette-3-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #b29a36;
}
.u-input.u-palette-3-dark-1,
.u-field-input.u-palette-3-dark-1,
.u-button-style.u-palette-3-dark-1,
.u-button-style.u-palette-3-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b29a36 !important;
}
.u-button-style.u-palette-3-dark-1:hover,
.u-button-style.u-palette-3-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-3-dark-1:focus,
.u-button-style.u-palette-3-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-dark-1:active,
.u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-dark-1.active,
.u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-dark-1,
li.active > .u-button-style.u-button-style.u-palette-3-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a08b31 !important;
}
.u-hover-palette-3-dark-1:hover,
.u-hover-palette-3-dark-1[class*="u-border-"]:hover,
.u-hover-palette-3-dark-1:focus,
.u-hover-palette-3-dark-1[class*="u-border-"]:focus,
.u-active-palette-3-dark-1.u-active.u-active,
.u-active-palette-3-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-dark-1:hover,
a.u-button-style.u-hover-palette-3-dark-1.hover,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-dark-1,
a.u-button-style:hover > .u-hover-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-3-dark-1:focus,
a.u-button-style.u-hover-palette-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-3-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-dark-1:checked {
  color: #ffffff !important;
  background-color: #b29a36 !important;
}
a.u-link.u-hover-palette-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-palette-3,
.u-body.u-palette-3,
section.u-palette-3:before,
.u-palette-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3 > .u-container-layout:before,
.u-palette-3 > .u-inner-container-layout:before,
.u-palette-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3:before,
.u-table-alt-palette-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-palette-3,
.u-field-input.u-palette-3,
.u-button-style.u-palette-3,
.u-button-style.u-palette-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-palette-3:hover,
.u-button-style.u-palette-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3:focus,
.u-button-style.u-palette-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3:active,
.u-button-style.u-button-style.u-palette-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3.active,
.u-button-style.u-button-style.u-palette-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3,
li.active > .u-button-style.u-button-style.u-palette-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
.u-hover-palette-3:hover,
.u-hover-palette-3[class*="u-border-"]:hover,
.u-hover-palette-3:focus,
.u-hover-palette-3[class*="u-border-"]:focus,
.u-active-palette-3.u-active.u-active,
.u-active-palette-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3:hover,
a.u-button-style.u-hover-palette-3.hover,
a.u-button-style.u-hover-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3,
a.u-button-style:hover > .u-hover-palette-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3:focus,
a.u-button-style.u-hover-palette-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3:active,
a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3.active,
a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3,
a.u-button-style.u-button-style.active > .u-active-palette-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-palette-3:hover {
  color: #f1c50e !important;
}
.u-palette-3-light-1,
.u-body.u-palette-3-light-1,
section.u-palette-3-light-1:before,
.u-palette-3-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-1 > .u-container-layout:before,
.u-palette-3-light-1 > .u-inner-container-layout:before,
.u-palette-3-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-1:before,
.u-table-alt-palette-3-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #f5d654;
}
.u-input.u-palette-3-light-1,
.u-field-input.u-palette-3-light-1,
.u-button-style.u-palette-3-light-1,
.u-button-style.u-palette-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
.u-button-style.u-palette-3-light-1:hover,
.u-button-style.u-palette-3-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-1:focus,
.u-button-style.u-palette-3-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-1:active,
.u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-1.active,
.u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-1,
li.active > .u-button-style.u-button-style.u-palette-3-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f3cf35 !important;
}
.u-hover-palette-3-light-1:hover,
.u-hover-palette-3-light-1[class*="u-border-"]:hover,
.u-hover-palette-3-light-1:focus,
.u-hover-palette-3-light-1[class*="u-border-"]:focus,
.u-active-palette-3-light-1.u-active.u-active,
.u-active-palette-3-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-light-1:hover,
a.u-button-style.u-hover-palette-3-light-1.hover,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-1,
a.u-button-style:hover > .u-hover-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-1:focus,
a.u-button-style.u-hover-palette-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-1.active,
a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-1:checked {
  color: #111111 !important;
  background-color: #f5d654 !important;
}
a.u-link.u-hover-palette-3-light-1:hover {
  color: #f5d654 !important;
}
.u-palette-3-light-2,
.u-body.u-palette-3-light-2,
section.u-palette-3-light-2:before,
.u-palette-3-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-2 > .u-container-layout:before,
.u-palette-3-light-2 > .u-inner-container-layout:before,
.u-palette-3-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-2:before,
.u-table-alt-palette-3-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #f9e79b;
}
.u-input.u-palette-3-light-2,
.u-field-input.u-palette-3-light-2,
.u-button-style.u-palette-3-light-2,
.u-button-style.u-palette-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
.u-button-style.u-palette-3-light-2:hover,
.u-button-style.u-palette-3-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-2:focus,
.u-button-style.u-palette-3-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-2:active,
.u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-2.active,
.u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-2,
li.active > .u-button-style.u-button-style.u-palette-3-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f7de75 !important;
}
.u-hover-palette-3-light-2:hover,
.u-hover-palette-3-light-2[class*="u-border-"]:hover,
.u-hover-palette-3-light-2:focus,
.u-hover-palette-3-light-2[class*="u-border-"]:focus,
.u-active-palette-3-light-2.u-active.u-active,
.u-active-palette-3-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-light-2:hover,
a.u-button-style.u-hover-palette-3-light-2.hover,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-2,
a.u-button-style:hover > .u-hover-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-2:focus,
a.u-button-style.u-hover-palette-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-2.active,
a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-2:checked {
  color: #111111 !important;
  background-color: #f9e79b !important;
}
a.u-link.u-hover-palette-3-light-2:hover {
  color: #f9e79b !important;
}
.u-palette-3-light-3,
.u-body.u-palette-3-light-3,
section.u-palette-3-light-3:before,
.u-palette-3-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-3-light-3 > .u-container-layout:before,
.u-palette-3-light-3 > .u-inner-container-layout:before,
.u-palette-3-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-light-3:before,
.u-table-alt-palette-3-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #fef9e6;
}
.u-input.u-palette-3-light-3,
.u-field-input.u-palette-3-light-3,
.u-button-style.u-palette-3-light-3,
.u-button-style.u-palette-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
.u-button-style.u-palette-3-light-3:hover,
.u-button-style.u-palette-3-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-3-light-3:focus,
.u-button-style.u-palette-3-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-light-3:active,
.u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-light-3.active,
.u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-light-3,
li.active > .u-button-style.u-button-style.u-palette-3-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #fceeb7 !important;
}
.u-hover-palette-3-light-3:hover,
.u-hover-palette-3-light-3[class*="u-border-"]:hover,
.u-hover-palette-3-light-3:focus,
.u-hover-palette-3-light-3[class*="u-border-"]:focus,
.u-active-palette-3-light-3.u-active.u-active,
.u-active-palette-3-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-light-3:hover,
a.u-button-style.u-hover-palette-3-light-3.hover,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-light-3,
a.u-button-style:hover > .u-hover-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-3-light-3:focus,
a.u-button-style.u-hover-palette-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-light-3.active,
a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-3-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-light-3:checked {
  color: #111111 !important;
  background-color: #fef9e6 !important;
}
a.u-link.u-hover-palette-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-palette-3-base,
.u-body.u-palette-3-base,
section.u-palette-3-base:before,
.u-palette-3-base > .u-audio-main-layout-wrapper:before,
.u-palette-3-base > .u-container-layout:before,
.u-palette-3-base > .u-inner-container-layout:before,
.u-palette-3-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-3-base:before,
.u-table-alt-palette-3-base tr:nth-child(even) {
  color: #111111;
  background-color: #f1c50e;
}
.u-input.u-palette-3-base,
.u-field-input.u-palette-3-base,
.u-button-style.u-palette-3-base,
.u-button-style.u-palette-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
.u-button-style.u-palette-3-base:hover,
.u-button-style.u-palette-3-base[class*="u-border-"]:hover,
.u-button-style.u-palette-3-base:focus,
.u-button-style.u-palette-3-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-3-base:active,
.u-button-style.u-button-style.u-palette-3-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-3-base.active,
.u-button-style.u-button-style.u-palette-3-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-3-base,
li.active > .u-button-style.u-button-style.u-palette-3-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9b10d !important;
}
.u-hover-palette-3-base:hover,
.u-hover-palette-3-base[class*="u-border-"]:hover,
.u-hover-palette-3-base:focus,
.u-hover-palette-3-base[class*="u-border-"]:focus,
.u-active-palette-3-base.u-active.u-active,
.u-active-palette-3-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-3-base:hover,
a.u-button-style.u-hover-palette-3-base.hover,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-3-base,
a.u-button-style:hover > .u-hover-palette-3-base[class*="u-border-"],
a.u-button-style.u-hover-palette-3-base:focus,
a.u-button-style.u-hover-palette-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-3-base:active,
a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-3-base.active,
a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-3-base,
a.u-button-style.u-button-style.active > .u-active-palette-3-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-3-base,
li.active > a.u-button-style.u-button-style.u-active-palette-3-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-3-base:checked {
  color: #111111 !important;
  background-color: #f1c50e !important;
}
a.u-link.u-hover-palette-3-base:hover {
  color: #f1c50e !important;
}
.u-palette-4-dark-3,
.u-body.u-palette-4-dark-3,
section.u-palette-4-dark-3:before,
.u-palette-4-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-3 > .u-container-layout:before,
.u-palette-4-dark-3 > .u-inner-container-layout:before,
.u-palette-4-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-3:before,
.u-table-alt-palette-4-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #293332;
}
.u-input.u-palette-4-dark-3,
.u-field-input.u-palette-4-dark-3,
.u-button-style.u-palette-4-dark-3,
.u-button-style.u-palette-4-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #293332 !important;
}
.u-button-style.u-palette-4-dark-3:hover,
.u-button-style.u-palette-4-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-3:focus,
.u-button-style.u-palette-4-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-3:active,
.u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-3.active,
.u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-3,
li.active > .u-button-style.u-button-style.u-palette-4-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #252e2d !important;
}
.u-hover-palette-4-dark-3:hover,
.u-hover-palette-4-dark-3[class*="u-border-"]:hover,
.u-hover-palette-4-dark-3:focus,
.u-hover-palette-4-dark-3[class*="u-border-"]:focus,
.u-active-palette-4-dark-3.u-active.u-active,
.u-active-palette-4-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-dark-3:hover,
a.u-button-style.u-hover-palette-4-dark-3.hover,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-3,
a.u-button-style:hover > .u-hover-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-3:focus,
a.u-button-style.u-hover-palette-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-3:checked {
  color: #ffffff !important;
  background-color: #293332 !important;
}
a.u-link.u-hover-palette-4-dark-3:hover {
  color: #293332 !important;
}
.u-palette-4-dark-2,
.u-body.u-palette-4-dark-2,
section.u-palette-4-dark-2:before,
.u-palette-4-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-2 > .u-container-layout:before,
.u-palette-4-dark-2 > .u-inner-container-layout:before,
.u-palette-4-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-2:before,
.u-table-alt-palette-4-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #41807c;
}
.u-input.u-palette-4-dark-2,
.u-field-input.u-palette-4-dark-2,
.u-button-style.u-palette-4-dark-2,
.u-button-style.u-palette-4-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #41807c !important;
}
.u-button-style.u-palette-4-dark-2:hover,
.u-button-style.u-palette-4-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-2:focus,
.u-button-style.u-palette-4-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-2:active,
.u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-2.active,
.u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-2,
li.active > .u-button-style.u-button-style.u-palette-4-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3a7370 !important;
}
.u-hover-palette-4-dark-2:hover,
.u-hover-palette-4-dark-2[class*="u-border-"]:hover,
.u-hover-palette-4-dark-2:focus,
.u-hover-palette-4-dark-2[class*="u-border-"]:focus,
.u-active-palette-4-dark-2.u-active.u-active,
.u-active-palette-4-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-dark-2:hover,
a.u-button-style.u-hover-palette-4-dark-2.hover,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-2,
a.u-button-style:hover > .u-hover-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-2:focus,
a.u-button-style.u-hover-palette-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-2:checked {
  color: #ffffff !important;
  background-color: #41807c !important;
}
a.u-link.u-hover-palette-4-dark-2:hover {
  color: #41807c !important;
}
.u-palette-4-dark-1,
.u-body.u-palette-4-dark-1,
section.u-palette-4-dark-1:before,
.u-palette-4-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-4-dark-1 > .u-container-layout:before,
.u-palette-4-dark-1 > .u-inner-container-layout:before,
.u-palette-4-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-dark-1:before,
.u-table-alt-palette-4-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #2cccc4;
}
.u-input.u-palette-4-dark-1,
.u-field-input.u-palette-4-dark-1,
.u-button-style.u-palette-4-dark-1,
.u-button-style.u-palette-4-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-palette-4-dark-1:hover,
.u-button-style.u-palette-4-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-4-dark-1:focus,
.u-button-style.u-palette-4-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-dark-1:active,
.u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-dark-1.active,
.u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-dark-1,
li.active > .u-button-style.u-button-style.u-palette-4-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #28b8b0 !important;
}
.u-hover-palette-4-dark-1:hover,
.u-hover-palette-4-dark-1[class*="u-border-"]:hover,
.u-hover-palette-4-dark-1:focus,
.u-hover-palette-4-dark-1[class*="u-border-"]:focus,
.u-active-palette-4-dark-1.u-active.u-active,
.u-active-palette-4-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-dark-1:hover,
a.u-button-style.u-hover-palette-4-dark-1.hover,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-dark-1,
a.u-button-style:hover > .u-hover-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-4-dark-1:focus,
a.u-button-style.u-hover-palette-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-4-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-dark-1:checked {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-palette-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-palette-4,
.u-body.u-palette-4,
section.u-palette-4:before,
.u-palette-4 > .u-audio-main-layout-wrapper:before,
.u-palette-4 > .u-container-layout:before,
.u-palette-4 > .u-inner-container-layout:before,
.u-palette-4.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4:before,
.u-table-alt-palette-4 tr:nth-child(even) {
  color: #111111;
  background-color: #3be8e0;
}
.u-input.u-palette-4,
.u-field-input.u-palette-4,
.u-button-style.u-palette-4,
.u-button-style.u-palette-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
.u-button-style.u-palette-4:hover,
.u-button-style.u-palette-4[class*="u-border-"]:hover,
.u-button-style.u-palette-4:focus,
.u-button-style.u-palette-4[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4:active,
.u-button-style.u-button-style.u-palette-4[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4.active,
.u-button-style.u-button-style.u-palette-4[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4,
li.active > .u-button-style.u-button-style.u-palette-4[class*="u-border-"] {
  color: #111111 !important;
  background-color: #21e5dc !important;
}
.u-hover-palette-4:hover,
.u-hover-palette-4[class*="u-border-"]:hover,
.u-hover-palette-4:focus,
.u-hover-palette-4[class*="u-border-"]:focus,
.u-active-palette-4.u-active.u-active,
.u-active-palette-4[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4:hover,
a.u-button-style.u-hover-palette-4.hover,
a.u-button-style.u-hover-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4,
a.u-button-style:hover > .u-hover-palette-4[class*="u-border-"],
a.u-button-style.u-hover-palette-4:focus,
a.u-button-style.u-hover-palette-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4:active,
a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4.active,
a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4,
a.u-button-style.u-button-style.active > .u-active-palette-4[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4,
li.active > a.u-button-style.u-button-style.u-active-palette-4[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4:checked {
  color: #111111 !important;
  background-color: #3be8e0 !important;
}
a.u-link.u-hover-palette-4:hover {
  color: #3be8e0 !important;
}
.u-palette-4-light-1,
.u-body.u-palette-4-light-1,
section.u-palette-4-light-1:before,
.u-palette-4-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-1 > .u-container-layout:before,
.u-palette-4-light-1 > .u-inner-container-layout:before,
.u-palette-4-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-1:before,
.u-table-alt-palette-4-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #72efe9;
}
.u-input.u-palette-4-light-1,
.u-field-input.u-palette-4-light-1,
.u-button-style.u-palette-4-light-1,
.u-button-style.u-palette-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
.u-button-style.u-palette-4-light-1:hover,
.u-button-style.u-palette-4-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-1:focus,
.u-button-style.u-palette-4-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-1:active,
.u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-1.active,
.u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-1,
li.active > .u-button-style.u-button-style.u-palette-4-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #52ebe4 !important;
}
.u-hover-palette-4-light-1:hover,
.u-hover-palette-4-light-1[class*="u-border-"]:hover,
.u-hover-palette-4-light-1:focus,
.u-hover-palette-4-light-1[class*="u-border-"]:focus,
.u-active-palette-4-light-1.u-active.u-active,
.u-active-palette-4-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-light-1:hover,
a.u-button-style.u-hover-palette-4-light-1.hover,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-1,
a.u-button-style:hover > .u-hover-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-1:focus,
a.u-button-style.u-hover-palette-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-1.active,
a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-1:checked {
  color: #111111 !important;
  background-color: #72efe9 !important;
}
a.u-link.u-hover-palette-4-light-1:hover {
  color: #72efe9 !important;
}
.u-palette-4-light-2,
.u-body.u-palette-4-light-2,
section.u-palette-4-light-2:before,
.u-palette-4-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-2 > .u-container-layout:before,
.u-palette-4-light-2 > .u-inner-container-layout:before,
.u-palette-4-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-2:before,
.u-table-alt-palette-4-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #adf6f2;
}
.u-input.u-palette-4-light-2,
.u-field-input.u-palette-4-light-2,
.u-button-style.u-palette-4-light-2,
.u-button-style.u-palette-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
.u-button-style.u-palette-4-light-2:hover,
.u-button-style.u-palette-4-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-2:focus,
.u-button-style.u-palette-4-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-2:active,
.u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-2.active,
.u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-2,
li.active > .u-button-style.u-button-style.u-palette-4-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #87f2ec !important;
}
.u-hover-palette-4-light-2:hover,
.u-hover-palette-4-light-2[class*="u-border-"]:hover,
.u-hover-palette-4-light-2:focus,
.u-hover-palette-4-light-2[class*="u-border-"]:focus,
.u-active-palette-4-light-2.u-active.u-active,
.u-active-palette-4-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-light-2:hover,
a.u-button-style.u-hover-palette-4-light-2.hover,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-2,
a.u-button-style:hover > .u-hover-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-2:focus,
a.u-button-style.u-hover-palette-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-2.active,
a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-2:checked {
  color: #111111 !important;
  background-color: #adf6f2 !important;
}
a.u-link.u-hover-palette-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-palette-4-light-3,
.u-body.u-palette-4-light-3,
section.u-palette-4-light-3:before,
.u-palette-4-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-4-light-3 > .u-container-layout:before,
.u-palette-4-light-3 > .u-inner-container-layout:before,
.u-palette-4-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-light-3:before,
.u-table-alt-palette-4-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #eafdfc;
}
.u-input.u-palette-4-light-3,
.u-field-input.u-palette-4-light-3,
.u-button-style.u-palette-4-light-3,
.u-button-style.u-palette-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
.u-button-style.u-palette-4-light-3:hover,
.u-button-style.u-palette-4-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-4-light-3:focus,
.u-button-style.u-palette-4-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-light-3:active,
.u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-light-3.active,
.u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-light-3,
li.active > .u-button-style.u-button-style.u-palette-4-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #bef9f6 !important;
}
.u-hover-palette-4-light-3:hover,
.u-hover-palette-4-light-3[class*="u-border-"]:hover,
.u-hover-palette-4-light-3:focus,
.u-hover-palette-4-light-3[class*="u-border-"]:focus,
.u-active-palette-4-light-3.u-active.u-active,
.u-active-palette-4-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-light-3:hover,
a.u-button-style.u-hover-palette-4-light-3.hover,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-light-3,
a.u-button-style:hover > .u-hover-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-4-light-3:focus,
a.u-button-style.u-hover-palette-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-light-3.active,
a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-4-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-light-3:checked {
  color: #111111 !important;
  background-color: #eafdfc !important;
}
a.u-link.u-hover-palette-4-light-3:hover {
  color: #eafdfc !important;
}
.u-palette-4-base,
.u-body.u-palette-4-base,
section.u-palette-4-base:before,
.u-palette-4-base > .u-audio-main-layout-wrapper:before,
.u-palette-4-base > .u-container-layout:before,
.u-palette-4-base > .u-inner-container-layout:before,
.u-palette-4-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-4-base:before,
.u-table-alt-palette-4-base tr:nth-child(even) {
  color: #ffffff;
  background-color: #2cccc4;
}
.u-input.u-palette-4-base,
.u-field-input.u-palette-4-base,
.u-button-style.u-palette-4-base,
.u-button-style.u-palette-4-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
.u-button-style.u-palette-4-base:hover,
.u-button-style.u-palette-4-base[class*="u-border-"]:hover,
.u-button-style.u-palette-4-base:focus,
.u-button-style.u-palette-4-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-4-base:active,
.u-button-style.u-button-style.u-palette-4-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-4-base.active,
.u-button-style.u-button-style.u-palette-4-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-4-base,
li.active > .u-button-style.u-button-style.u-palette-4-base[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #28b8b0 !important;
}
.u-hover-palette-4-base:hover,
.u-hover-palette-4-base[class*="u-border-"]:hover,
.u-hover-palette-4-base:focus,
.u-hover-palette-4-base[class*="u-border-"]:focus,
.u-active-palette-4-base.u-active.u-active,
.u-active-palette-4-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-4-base:hover,
a.u-button-style.u-hover-palette-4-base.hover,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-4-base,
a.u-button-style:hover > .u-hover-palette-4-base[class*="u-border-"],
a.u-button-style.u-hover-palette-4-base:focus,
a.u-button-style.u-hover-palette-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-4-base:active,
a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-4-base.active,
a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-4-base,
a.u-button-style.u-button-style.active > .u-active-palette-4-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-4-base,
li.active > a.u-button-style.u-button-style.u-active-palette-4-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-4-base:checked {
  color: #ffffff !important;
  background-color: #2cccc4 !important;
}
a.u-link.u-hover-palette-4-base:hover {
  color: #2cccc4 !important;
}
.u-palette-5-dark-3,
.u-body.u-palette-5-dark-3,
section.u-palette-5-dark-3:before,
.u-palette-5-dark-3 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-3 > .u-container-layout:before,
.u-palette-5-dark-3 > .u-inner-container-layout:before,
.u-palette-5-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-3:before,
.u-table-alt-palette-5-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #292d33;
}
.u-input.u-palette-5-dark-3,
.u-field-input.u-palette-5-dark-3,
.u-button-style.u-palette-5-dark-3,
.u-button-style.u-palette-5-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #292d33 !important;
}
.u-button-style.u-palette-5-dark-3:hover,
.u-button-style.u-palette-5-dark-3[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-3:focus,
.u-button-style.u-palette-5-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-3:active,
.u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-3.active,
.u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-3,
li.active > .u-button-style.u-button-style.u-palette-5-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #25292e !important;
}
.u-hover-palette-5-dark-3:hover,
.u-hover-palette-5-dark-3[class*="u-border-"]:hover,
.u-hover-palette-5-dark-3:focus,
.u-hover-palette-5-dark-3[class*="u-border-"]:focus,
.u-active-palette-5-dark-3.u-active.u-active,
.u-active-palette-5-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-dark-3:hover,
a.u-button-style.u-hover-palette-5-dark-3.hover,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-3,
a.u-button-style:hover > .u-hover-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-3:focus,
a.u-button-style.u-hover-palette-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-3,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-3,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-3:checked {
  color: #ffffff !important;
  background-color: #292d33 !important;
}
a.u-link.u-hover-palette-5-dark-3:hover {
  color: #292d33 !important;
}
.u-palette-5-dark-2,
.u-body.u-palette-5-dark-2,
section.u-palette-5-dark-2:before,
.u-palette-5-dark-2 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-2 > .u-container-layout:before,
.u-palette-5-dark-2 > .u-inner-container-layout:before,
.u-palette-5-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-2:before,
.u-table-alt-palette-5-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #555c66;
}
.u-input.u-palette-5-dark-2,
.u-field-input.u-palette-5-dark-2,
.u-button-style.u-palette-5-dark-2,
.u-button-style.u-palette-5-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #555c66 !important;
}
.u-button-style.u-palette-5-dark-2:hover,
.u-button-style.u-palette-5-dark-2[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-2:focus,
.u-button-style.u-palette-5-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-2:active,
.u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-2.active,
.u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-2,
li.active > .u-button-style.u-button-style.u-palette-5-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #4d535c !important;
}
.u-hover-palette-5-dark-2:hover,
.u-hover-palette-5-dark-2[class*="u-border-"]:hover,
.u-hover-palette-5-dark-2:focus,
.u-hover-palette-5-dark-2[class*="u-border-"]:focus,
.u-active-palette-5-dark-2.u-active.u-active,
.u-active-palette-5-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-dark-2:hover,
a.u-button-style.u-hover-palette-5-dark-2.hover,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-2,
a.u-button-style:hover > .u-hover-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-2:focus,
a.u-button-style.u-hover-palette-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-2,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-2,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-2:checked {
  color: #ffffff !important;
  background-color: #555c66 !important;
}
a.u-link.u-hover-palette-5-dark-2:hover {
  color: #555c66 !important;
}
.u-palette-5-dark-1,
.u-body.u-palette-5-dark-1,
section.u-palette-5-dark-1:before,
.u-palette-5-dark-1 > .u-audio-main-layout-wrapper:before,
.u-palette-5-dark-1 > .u-container-layout:before,
.u-palette-5-dark-1 > .u-inner-container-layout:before,
.u-palette-5-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-dark-1:before,
.u-table-alt-palette-5-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #858e99;
}
.u-input.u-palette-5-dark-1,
.u-field-input.u-palette-5-dark-1,
.u-button-style.u-palette-5-dark-1,
.u-button-style.u-palette-5-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #858e99 !important;
}
.u-button-style.u-palette-5-dark-1:hover,
.u-button-style.u-palette-5-dark-1[class*="u-border-"]:hover,
.u-button-style.u-palette-5-dark-1:focus,
.u-button-style.u-palette-5-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-dark-1:active,
.u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-dark-1.active,
.u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-dark-1,
li.active > .u-button-style.u-button-style.u-palette-5-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #75808c !important;
}
.u-hover-palette-5-dark-1:hover,
.u-hover-palette-5-dark-1[class*="u-border-"]:hover,
.u-hover-palette-5-dark-1:focus,
.u-hover-palette-5-dark-1[class*="u-border-"]:focus,
.u-active-palette-5-dark-1.u-active.u-active,
.u-active-palette-5-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-dark-1:hover,
a.u-button-style.u-hover-palette-5-dark-1.hover,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-dark-1,
a.u-button-style:hover > .u-hover-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-hover-palette-5-dark-1:focus,
a.u-button-style.u-hover-palette-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-1,
a.u-button-style.u-button-style.active > .u-active-palette-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-1,
li.active > a.u-button-style.u-button-style.u-active-palette-5-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-dark-1:checked {
  color: #ffffff !important;
  background-color: #858e99 !important;
}
a.u-link.u-hover-palette-5-dark-1:hover {
  color: #858e99 !important;
}
.u-palette-5,
.u-body.u-palette-5,
section.u-palette-5:before,
.u-palette-5 > .u-audio-main-layout-wrapper:before,
.u-palette-5 > .u-container-layout:before,
.u-palette-5 > .u-inner-container-layout:before,
.u-palette-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5:before,
.u-table-alt-palette-5 tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-palette-5,
.u-field-input.u-palette-5,
.u-button-style.u-palette-5,
.u-button-style.u-palette-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-palette-5:hover,
.u-button-style.u-palette-5[class*="u-border-"]:hover,
.u-button-style.u-palette-5:focus,
.u-button-style.u-palette-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5:active,
.u-button-style.u-button-style.u-palette-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5.active,
.u-button-style.u-button-style.u-palette-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5,
li.active > .u-button-style.u-button-style.u-palette-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
.u-hover-palette-5:hover,
.u-hover-palette-5[class*="u-border-"]:hover,
.u-hover-palette-5:focus,
.u-hover-palette-5[class*="u-border-"]:focus,
.u-active-palette-5.u-active.u-active,
.u-active-palette-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5:hover,
a.u-button-style.u-hover-palette-5.hover,
a.u-button-style.u-hover-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5,
a.u-button-style:hover > .u-hover-palette-5[class*="u-border-"],
a.u-button-style.u-hover-palette-5:focus,
a.u-button-style.u-hover-palette-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5:active,
a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5.active,
a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5,
a.u-button-style.u-button-style.active > .u-active-palette-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5,
li.active > a.u-button-style.u-button-style.u-active-palette-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-palette-5:hover {
  color: #b9c1cc !important;
}
.u-palette-5-light-1,
.u-body.u-palette-5-light-1,
section.u-palette-5-light-1:before,
.u-palette-5-light-1 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-1 > .u-container-layout:before,
.u-palette-5-light-1 > .u-inner-container-layout:before,
.u-palette-5-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-1:before,
.u-table-alt-palette-5-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #ccd3db;
}
.u-input.u-palette-5-light-1,
.u-field-input.u-palette-5-light-1,
.u-button-style.u-palette-5-light-1,
.u-button-style.u-palette-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
.u-button-style.u-palette-5-light-1:hover,
.u-button-style.u-palette-5-light-1[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-1:focus,
.u-button-style.u-palette-5-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-1:active,
.u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-1.active,
.u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-1,
li.active > .u-button-style.u-button-style.u-palette-5-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b3bec9 !important;
}
.u-hover-palette-5-light-1:hover,
.u-hover-palette-5-light-1[class*="u-border-"]:hover,
.u-hover-palette-5-light-1:focus,
.u-hover-palette-5-light-1[class*="u-border-"]:focus,
.u-active-palette-5-light-1.u-active.u-active,
.u-active-palette-5-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-light-1:hover,
a.u-button-style.u-hover-palette-5-light-1.hover,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-1,
a.u-button-style:hover > .u-hover-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-1:focus,
a.u-button-style.u-hover-palette-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-1.active,
a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-1,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-1,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-1:checked {
  color: #111111 !important;
  background-color: #ccd3db !important;
}
a.u-link.u-hover-palette-5-light-1:hover {
  color: #ccd3db !important;
}
.u-palette-5-light-2,
.u-body.u-palette-5-light-2,
section.u-palette-5-light-2:before,
.u-palette-5-light-2 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-2 > .u-container-layout:before,
.u-palette-5-light-2 > .u-inner-container-layout:before,
.u-palette-5-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-2:before,
.u-table-alt-palette-5-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #e0e5eb;
}
.u-input.u-palette-5-light-2,
.u-field-input.u-palette-5-light-2,
.u-button-style.u-palette-5-light-2,
.u-button-style.u-palette-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
.u-button-style.u-palette-5-light-2:hover,
.u-button-style.u-palette-5-light-2[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-2:focus,
.u-button-style.u-palette-5-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-2:active,
.u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-2.active,
.u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-2,
li.active > .u-button-style.u-button-style.u-palette-5-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c4ced9 !important;
}
.u-hover-palette-5-light-2:hover,
.u-hover-palette-5-light-2[class*="u-border-"]:hover,
.u-hover-palette-5-light-2:focus,
.u-hover-palette-5-light-2[class*="u-border-"]:focus,
.u-active-palette-5-light-2.u-active.u-active,
.u-active-palette-5-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-light-2:hover,
a.u-button-style.u-hover-palette-5-light-2.hover,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-2,
a.u-button-style:hover > .u-hover-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-2:focus,
a.u-button-style.u-hover-palette-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-2.active,
a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-2,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-2,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-2:checked {
  color: #111111 !important;
  background-color: #e0e5eb !important;
}
a.u-link.u-hover-palette-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-palette-5-light-3,
.u-body.u-palette-5-light-3,
section.u-palette-5-light-3:before,
.u-palette-5-light-3 > .u-audio-main-layout-wrapper:before,
.u-palette-5-light-3 > .u-container-layout:before,
.u-palette-5-light-3 > .u-inner-container-layout:before,
.u-palette-5-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-light-3:before,
.u-table-alt-palette-5-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f5f7fa;
}
.u-input.u-palette-5-light-3,
.u-field-input.u-palette-5-light-3,
.u-button-style.u-palette-5-light-3,
.u-button-style.u-palette-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
.u-button-style.u-palette-5-light-3:hover,
.u-button-style.u-palette-5-light-3[class*="u-border-"]:hover,
.u-button-style.u-palette-5-light-3:focus,
.u-button-style.u-palette-5-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-light-3:active,
.u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-light-3.active,
.u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-light-3,
li.active > .u-button-style.u-button-style.u-palette-5-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d4dde9 !important;
}
.u-hover-palette-5-light-3:hover,
.u-hover-palette-5-light-3[class*="u-border-"]:hover,
.u-hover-palette-5-light-3:focus,
.u-hover-palette-5-light-3[class*="u-border-"]:focus,
.u-active-palette-5-light-3.u-active.u-active,
.u-active-palette-5-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-light-3:hover,
a.u-button-style.u-hover-palette-5-light-3.hover,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-light-3,
a.u-button-style:hover > .u-hover-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-hover-palette-5-light-3:focus,
a.u-button-style.u-hover-palette-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-light-3.active,
a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-3,
a.u-button-style.u-button-style.active > .u-active-palette-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-3,
li.active > a.u-button-style.u-button-style.u-active-palette-5-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-light-3:checked {
  color: #111111 !important;
  background-color: #f5f7fa !important;
}
a.u-link.u-hover-palette-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-palette-5-base,
.u-body.u-palette-5-base,
section.u-palette-5-base:before,
.u-palette-5-base > .u-audio-main-layout-wrapper:before,
.u-palette-5-base > .u-container-layout:before,
.u-palette-5-base > .u-inner-container-layout:before,
.u-palette-5-base.u-sidenav:before,
.u-container-layout.u-container-layout.u-palette-5-base:before,
.u-table-alt-palette-5-base tr:nth-child(even) {
  color: #111111;
  background-color: #b9c1cc;
}
.u-input.u-palette-5-base,
.u-field-input.u-palette-5-base,
.u-button-style.u-palette-5-base,
.u-button-style.u-palette-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
.u-button-style.u-palette-5-base:hover,
.u-button-style.u-palette-5-base[class*="u-border-"]:hover,
.u-button-style.u-palette-5-base:focus,
.u-button-style.u-palette-5-base[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-palette-5-base:active,
.u-button-style.u-button-style.u-palette-5-base[class*="u-border-"]:active,
.u-button-style.u-button-style.u-palette-5-base.active,
.u-button-style.u-button-style.u-palette-5-base[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-palette-5-base,
li.active > .u-button-style.u-button-style.u-palette-5-base[class*="u-border-"] {
  color: #111111 !important;
  background-color: #a2adbc !important;
}
.u-hover-palette-5-base:hover,
.u-hover-palette-5-base[class*="u-border-"]:hover,
.u-hover-palette-5-base:focus,
.u-hover-palette-5-base[class*="u-border-"]:focus,
.u-active-palette-5-base.u-active.u-active,
.u-active-palette-5-base[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-palette-5-base:hover,
a.u-button-style.u-hover-palette-5-base.hover,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-palette-5-base,
a.u-button-style:hover > .u-hover-palette-5-base[class*="u-border-"],
a.u-button-style.u-hover-palette-5-base:focus,
a.u-button-style.u-hover-palette-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-palette-5-base:active,
a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-palette-5-base.active,
a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-palette-5-base,
a.u-button-style.u-button-style.active > .u-active-palette-5-base[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-palette-5-base,
li.active > a.u-button-style.u-button-style.u-active-palette-5-base[class*="u-border-"],
input.u-field-input.u-field-input.u-active-palette-5-base:checked {
  color: #111111 !important;
  background-color: #b9c1cc !important;
}
a.u-link.u-hover-palette-5-base:hover {
  color: #b9c1cc !important;
}
.u-grey-dark-3,
.u-body.u-grey-dark-3,
section.u-grey-dark-3:before,
.u-grey-dark-3 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-3 > .u-container-layout:before,
.u-grey-dark-3 > .u-inner-container-layout:before,
.u-grey-dark-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-3:before,
.u-table-alt-grey-dark-3 tr:nth-child(even) {
  color: #ffffff;
  background-color: #212121;
}
.u-input.u-grey-dark-3,
.u-field-input.u-grey-dark-3,
.u-button-style.u-grey-dark-3,
.u-button-style.u-grey-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #212121 !important;
}
.u-button-style.u-grey-dark-3:hover,
.u-button-style.u-grey-dark-3[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-3:focus,
.u-button-style.u-grey-dark-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-3:active,
.u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-3.active,
.u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-3,
li.active > .u-button-style.u-button-style.u-grey-dark-3[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
}
.u-hover-grey-dark-3:hover,
.u-hover-grey-dark-3[class*="u-border-"]:hover,
.u-hover-grey-dark-3:focus,
.u-hover-grey-dark-3[class*="u-border-"]:focus,
.u-active-grey-dark-3.u-active.u-active,
.u-active-grey-dark-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-dark-3:hover,
a.u-button-style.u-hover-grey-dark-3.hover,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-3,
a.u-button-style:hover > .u-hover-grey-dark-3[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-3:focus,
a.u-button-style.u-hover-grey-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-3.active,
a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-3,
a.u-button-style.u-button-style.active > .u-active-grey-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-3,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-3:checked {
  color: #ffffff !important;
  background-color: #212121 !important;
}
a.u-link.u-hover-grey-dark-3:hover {
  color: #212121 !important;
}
.u-grey-dark-2,
.u-body.u-grey-dark-2,
section.u-grey-dark-2:before,
.u-grey-dark-2 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-2 > .u-container-layout:before,
.u-grey-dark-2 > .u-inner-container-layout:before,
.u-grey-dark-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-2:before,
.u-table-alt-grey-dark-2 tr:nth-child(even) {
  color: #ffffff;
  background-color: #333333;
}
.u-input.u-grey-dark-2,
.u-field-input.u-grey-dark-2,
.u-button-style.u-grey-dark-2,
.u-button-style.u-grey-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #333333 !important;
}
.u-button-style.u-grey-dark-2:hover,
.u-button-style.u-grey-dark-2[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-2:focus,
.u-button-style.u-grey-dark-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-2:active,
.u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-2.active,
.u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-2,
li.active > .u-button-style.u-button-style.u-grey-dark-2[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2e2e !important;
}
.u-hover-grey-dark-2:hover,
.u-hover-grey-dark-2[class*="u-border-"]:hover,
.u-hover-grey-dark-2:focus,
.u-hover-grey-dark-2[class*="u-border-"]:focus,
.u-active-grey-dark-2.u-active.u-active,
.u-active-grey-dark-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-dark-2:hover,
a.u-button-style.u-hover-grey-dark-2.hover,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-2,
a.u-button-style:hover > .u-hover-grey-dark-2[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-2:focus,
a.u-button-style.u-hover-grey-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-2.active,
a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-2,
a.u-button-style.u-button-style.active > .u-active-grey-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-2,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-2:checked {
  color: #ffffff !important;
  background-color: #333333 !important;
}
a.u-link.u-hover-grey-dark-2:hover {
  color: #333333 !important;
}
.u-grey-dark-1,
.u-body.u-grey-dark-1,
section.u-grey-dark-1:before,
.u-grey-dark-1 > .u-audio-main-layout-wrapper:before,
.u-grey-dark-1 > .u-container-layout:before,
.u-grey-dark-1 > .u-inner-container-layout:before,
.u-grey-dark-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-dark-1:before,
.u-table-alt-grey-dark-1 tr:nth-child(even) {
  color: #ffffff;
  background-color: #454545;
}
.u-input.u-grey-dark-1,
.u-field-input.u-grey-dark-1,
.u-button-style.u-grey-dark-1,
.u-button-style.u-grey-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #454545 !important;
}
.u-button-style.u-grey-dark-1:hover,
.u-button-style.u-grey-dark-1[class*="u-border-"]:hover,
.u-button-style.u-grey-dark-1:focus,
.u-button-style.u-grey-dark-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-dark-1:active,
.u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-dark-1.active,
.u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-dark-1,
li.active > .u-button-style.u-button-style.u-grey-dark-1[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3e3e3e !important;
}
.u-hover-grey-dark-1:hover,
.u-hover-grey-dark-1[class*="u-border-"]:hover,
.u-hover-grey-dark-1:focus,
.u-hover-grey-dark-1[class*="u-border-"]:focus,
.u-active-grey-dark-1.u-active.u-active,
.u-active-grey-dark-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-dark-1:hover,
a.u-button-style.u-hover-grey-dark-1.hover,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-dark-1,
a.u-button-style:hover > .u-hover-grey-dark-1[class*="u-border-"],
a.u-button-style.u-hover-grey-dark-1:focus,
a.u-button-style.u-hover-grey-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-dark-1.active,
a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-dark-1,
a.u-button-style.u-button-style.active > .u-active-grey-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-dark-1,
li.active > a.u-button-style.u-button-style.u-active-grey-dark-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-dark-1:checked {
  color: #ffffff !important;
  background-color: #454545 !important;
}
a.u-link.u-hover-grey-dark-1:hover {
  color: #454545 !important;
}
.u-grey,
.u-body.u-grey,
section.u-grey:before,
.u-grey > .u-audio-main-layout-wrapper:before,
.u-grey > .u-container-layout:before,
.u-grey > .u-inner-container-layout:before,
.u-grey.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey:before,
.u-table-alt-grey tr:nth-child(even) {
  color: #ffffff;
  background-color: #b3b3b3;
}
.u-input.u-grey,
.u-field-input.u-grey,
.u-button-style.u-grey,
.u-button-style.u-grey[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b3b3b3 !important;
}
.u-button-style.u-grey:hover,
.u-button-style.u-grey[class*="u-border-"]:hover,
.u-button-style.u-grey:focus,
.u-button-style.u-grey[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey:active,
.u-button-style.u-button-style.u-grey[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey.active,
.u-button-style.u-button-style.u-grey[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey,
li.active > .u-button-style.u-button-style.u-grey[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a1a1a1 !important;
}
.u-hover-grey:hover,
.u-hover-grey[class*="u-border-"]:hover,
.u-hover-grey:focus,
.u-hover-grey[class*="u-border-"]:focus,
.u-active-grey.u-active.u-active,
.u-active-grey[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey:hover,
a.u-button-style.u-hover-grey.hover,
a.u-button-style.u-hover-grey[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey,
a.u-button-style:hover > .u-hover-grey[class*="u-border-"],
a.u-button-style.u-hover-grey:focus,
a.u-button-style.u-hover-grey[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey:active,
a.u-button-style.u-button-style.u-active-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey.active,
a.u-button-style.u-button-style.u-active-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey,
a.u-button-style.u-button-style.active > .u-active-grey[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey,
li.active > a.u-button-style.u-button-style.u-active-grey[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey:checked {
  color: #ffffff !important;
  background-color: #b3b3b3 !important;
}
a.u-link.u-hover-grey:hover {
  color: #b3b3b3 !important;
}
.u-grey-light-1,
.u-body.u-grey-light-1,
section.u-grey-light-1:before,
.u-grey-light-1 > .u-audio-main-layout-wrapper:before,
.u-grey-light-1 > .u-container-layout:before,
.u-grey-light-1 > .u-inner-container-layout:before,
.u-grey-light-1.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-1:before,
.u-table-alt-grey-light-1 tr:nth-child(even) {
  color: #111111;
  background-color: #d9d9d9;
}
.u-input.u-grey-light-1,
.u-field-input.u-grey-light-1,
.u-button-style.u-grey-light-1,
.u-button-style.u-grey-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
.u-button-style.u-grey-light-1:hover,
.u-button-style.u-grey-light-1[class*="u-border-"]:hover,
.u-button-style.u-grey-light-1:focus,
.u-button-style.u-grey-light-1[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-1:active,
.u-button-style.u-button-style.u-grey-light-1[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-1.active,
.u-button-style.u-button-style.u-grey-light-1[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-1,
li.active > .u-button-style.u-button-style.u-grey-light-1[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c3c3c3 !important;
}
.u-hover-grey-light-1:hover,
.u-hover-grey-light-1[class*="u-border-"]:hover,
.u-hover-grey-light-1:focus,
.u-hover-grey-light-1[class*="u-border-"]:focus,
.u-active-grey-light-1.u-active.u-active,
.u-active-grey-light-1[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-light-1:hover,
a.u-button-style.u-hover-grey-light-1.hover,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-1,
a.u-button-style:hover > .u-hover-grey-light-1[class*="u-border-"],
a.u-button-style.u-hover-grey-light-1:focus,
a.u-button-style.u-hover-grey-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-light-1:active,
a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-1.active,
a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-1,
a.u-button-style.u-button-style.active > .u-active-grey-light-1[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-1,
li.active > a.u-button-style.u-button-style.u-active-grey-light-1[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-1:checked {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
a.u-link.u-hover-grey-light-1:hover {
  color: #d9d9d9 !important;
}
.u-grey-light-2,
.u-body.u-grey-light-2,
section.u-grey-light-2:before,
.u-grey-light-2 > .u-audio-main-layout-wrapper:before,
.u-grey-light-2 > .u-container-layout:before,
.u-grey-light-2 > .u-inner-container-layout:before,
.u-grey-light-2.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-2:before,
.u-table-alt-grey-light-2 tr:nth-child(even) {
  color: #111111;
  background-color: #eeeeee;
}
.u-input.u-grey-light-2,
.u-field-input.u-grey-light-2,
.u-button-style.u-grey-light-2,
.u-button-style.u-grey-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #eeeeee !important;
}
.u-button-style.u-grey-light-2:hover,
.u-button-style.u-grey-light-2[class*="u-border-"]:hover,
.u-button-style.u-grey-light-2:focus,
.u-button-style.u-grey-light-2[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-2:active,
.u-button-style.u-button-style.u-grey-light-2[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-2.active,
.u-button-style.u-button-style.u-grey-light-2[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-2,
li.active > .u-button-style.u-button-style.u-grey-light-2[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d6d6d6 !important;
}
.u-hover-grey-light-2:hover,
.u-hover-grey-light-2[class*="u-border-"]:hover,
.u-hover-grey-light-2:focus,
.u-hover-grey-light-2[class*="u-border-"]:focus,
.u-active-grey-light-2.u-active.u-active,
.u-active-grey-light-2[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-light-2:hover,
a.u-button-style.u-hover-grey-light-2.hover,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-2,
a.u-button-style:hover > .u-hover-grey-light-2[class*="u-border-"],
a.u-button-style.u-hover-grey-light-2:focus,
a.u-button-style.u-hover-grey-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-light-2:active,
a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-2.active,
a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-2,
a.u-button-style.u-button-style.active > .u-active-grey-light-2[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-2,
li.active > a.u-button-style.u-button-style.u-active-grey-light-2[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-2:checked {
  color: #111111 !important;
  background-color: #eeeeee !important;
}
a.u-link.u-hover-grey-light-2:hover {
  color: #eeeeee !important;
}
.u-grey-light-3,
.u-body.u-grey-light-3,
section.u-grey-light-3:before,
.u-grey-light-3 > .u-audio-main-layout-wrapper:before,
.u-grey-light-3 > .u-container-layout:before,
.u-grey-light-3 > .u-inner-container-layout:before,
.u-grey-light-3.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-light-3:before,
.u-table-alt-grey-light-3 tr:nth-child(even) {
  color: #111111;
  background-color: #f6f6f6;
}
.u-input.u-grey-light-3,
.u-field-input.u-grey-light-3,
.u-button-style.u-grey-light-3,
.u-button-style.u-grey-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f6f6f6 !important;
}
.u-button-style.u-grey-light-3:hover,
.u-button-style.u-grey-light-3[class*="u-border-"]:hover,
.u-button-style.u-grey-light-3:focus,
.u-button-style.u-grey-light-3[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-light-3:active,
.u-button-style.u-button-style.u-grey-light-3[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-light-3.active,
.u-button-style.u-button-style.u-grey-light-3[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-light-3,
li.active > .u-button-style.u-button-style.u-grey-light-3[class*="u-border-"] {
  color: #111111 !important;
  background-color: #dddddd !important;
}
.u-hover-grey-light-3:hover,
.u-hover-grey-light-3[class*="u-border-"]:hover,
.u-hover-grey-light-3:focus,
.u-hover-grey-light-3[class*="u-border-"]:focus,
.u-active-grey-light-3.u-active.u-active,
.u-active-grey-light-3[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-light-3:hover,
a.u-button-style.u-hover-grey-light-3.hover,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-light-3,
a.u-button-style:hover > .u-hover-grey-light-3[class*="u-border-"],
a.u-button-style.u-hover-grey-light-3:focus,
a.u-button-style.u-hover-grey-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-light-3:active,
a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-light-3.active,
a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-light-3,
a.u-button-style.u-button-style.active > .u-active-grey-light-3[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-light-3,
li.active > a.u-button-style.u-button-style.u-active-grey-light-3[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-light-3:checked {
  color: #111111 !important;
  background-color: #f6f6f6 !important;
}
a.u-link.u-hover-grey-light-3:hover {
  color: #f6f6f6 !important;
}
.u-white,
.u-body.u-white,
section.u-white:before,
.u-white > .u-audio-main-layout-wrapper:before,
.u-white > .u-container-layout:before,
.u-white > .u-inner-container-layout:before,
.u-white.u-sidenav:before,
.u-container-layout.u-container-layout.u-white:before,
.u-table-alt-white tr:nth-child(even) {
  color: #111111;
  background-color: #ffffff;
}
.u-input.u-white,
.u-field-input.u-white,
.u-button-style.u-white,
.u-button-style.u-white[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ffffff !important;
}
.u-button-style.u-white:hover,
.u-button-style.u-white[class*="u-border-"]:hover,
.u-button-style.u-white:focus,
.u-button-style.u-white[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-white:active,
.u-button-style.u-button-style.u-white[class*="u-border-"]:active,
.u-button-style.u-button-style.u-white.active,
.u-button-style.u-button-style.u-white[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-white,
li.active > .u-button-style.u-button-style.u-white[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e6e6e6 !important;
}
.u-hover-white:hover,
.u-hover-white[class*="u-border-"]:hover,
.u-hover-white:focus,
.u-hover-white[class*="u-border-"]:focus,
.u-active-white.u-active.u-active,
.u-active-white[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-white:hover,
a.u-button-style.u-hover-white.hover,
a.u-button-style.u-hover-white[class*="u-border-"]:hover,
a.u-button-style.u-hover-white[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-white,
a.u-button-style:hover > .u-hover-white[class*="u-border-"],
a.u-button-style.u-hover-white:focus,
a.u-button-style.u-hover-white[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-white:active,
a.u-button-style.u-button-style.u-active-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-white.active,
a.u-button-style.u-button-style.u-active-white[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-white,
a.u-button-style.u-button-style.active > .u-active-white[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-white,
li.active > a.u-button-style.u-button-style.u-active-white[class*="u-border-"],
input.u-field-input.u-field-input.u-active-white:checked {
  color: #111111 !important;
  background-color: #ffffff !important;
}
a.u-link.u-hover-white:hover {
  color: #ffffff !important;
}
.u-black,
.u-body.u-black,
section.u-black:before,
.u-black > .u-audio-main-layout-wrapper:before,
.u-black > .u-container-layout:before,
.u-black > .u-inner-container-layout:before,
.u-black.u-sidenav:before,
.u-container-layout.u-container-layout.u-black:before,
.u-table-alt-black tr:nth-child(even) {
  color: #ffffff;
  background-color: #000000;
}
.u-input.u-black,
.u-field-input.u-black,
.u-button-style.u-black,
.u-button-style.u-black[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #000000 !important;
}
.u-button-style.u-black:hover,
.u-button-style.u-black[class*="u-border-"]:hover,
.u-button-style.u-black:focus,
.u-button-style.u-black[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-black:active,
.u-button-style.u-button-style.u-black[class*="u-border-"]:active,
.u-button-style.u-button-style.u-black.active,
.u-button-style.u-button-style.u-black[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-black,
li.active > .u-button-style.u-button-style.u-black[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #000000 !important;
}
.u-hover-black:hover,
.u-hover-black[class*="u-border-"]:hover,
.u-hover-black:focus,
.u-hover-black[class*="u-border-"]:focus,
.u-active-black.u-active.u-active,
.u-active-black[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-black:hover,
a.u-button-style.u-hover-black.hover,
a.u-button-style.u-hover-black[class*="u-border-"]:hover,
a.u-button-style.u-hover-black[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-black,
a.u-button-style:hover > .u-hover-black[class*="u-border-"],
a.u-button-style.u-hover-black:focus,
a.u-button-style.u-hover-black[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-black:active,
a.u-button-style.u-button-style.u-active-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-black.active,
a.u-button-style.u-button-style.u-active-black[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-black,
a.u-button-style.u-button-style.active > .u-active-black[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-black,
li.active > a.u-button-style.u-button-style.u-active-black[class*="u-border-"],
input.u-field-input.u-field-input.u-active-black:checked {
  color: #ffffff !important;
  background-color: #000000 !important;
}
a.u-link.u-hover-black:hover {
  color: #000000 !important;
}
.u-body-color,
.u-body.u-body-color,
section.u-body-color:before,
.u-body-color > .u-audio-main-layout-wrapper:before,
.u-body-color > .u-container-layout:before,
.u-body-color > .u-inner-container-layout:before,
.u-body-color.u-sidenav:before,
.u-container-layout.u-container-layout.u-body-color:before,
.u-table-alt-body-color tr:nth-child(even) {
  color: #ffffff;
  background-color: #111111;
}
.u-input.u-body-color,
.u-field-input.u-body-color,
.u-button-style.u-body-color,
.u-button-style.u-body-color[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #111111 !important;
}
.u-button-style.u-body-color:hover,
.u-button-style.u-body-color[class*="u-border-"]:hover,
.u-button-style.u-body-color:focus,
.u-button-style.u-body-color[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-body-color:active,
.u-button-style.u-button-style.u-body-color[class*="u-border-"]:active,
.u-button-style.u-button-style.u-body-color.active,
.u-button-style.u-button-style.u-body-color[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-body-color,
li.active > .u-button-style.u-button-style.u-body-color[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #0f0f0f !important;
}
.u-hover-body-color:hover,
.u-hover-body-color[class*="u-border-"]:hover,
.u-hover-body-color:focus,
.u-hover-body-color[class*="u-border-"]:focus,
.u-active-body-color.u-active.u-active,
.u-active-body-color[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-body-color:hover,
a.u-button-style.u-hover-body-color.hover,
a.u-button-style.u-hover-body-color[class*="u-border-"]:hover,
a.u-button-style.u-hover-body-color[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-body-color,
a.u-button-style:hover > .u-hover-body-color[class*="u-border-"],
a.u-button-style.u-hover-body-color:focus,
a.u-button-style.u-hover-body-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-body-color:active,
a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-body-color.active,
a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-body-color,
a.u-button-style.u-button-style.active > .u-active-body-color[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-body-color,
li.active > a.u-button-style.u-button-style.u-active-body-color[class*="u-border-"],
input.u-field-input.u-field-input.u-active-body-color:checked {
  color: #ffffff !important;
  background-color: #111111 !important;
}
a.u-link.u-hover-body-color:hover {
  color: #111111 !important;
}
.u-body-alt-color,
.u-body.u-body-alt-color,
section.u-body-alt-color:before,
.u-body-alt-color > .u-audio-main-layout-wrapper:before,
.u-body-alt-color > .u-container-layout:before,
.u-body-alt-color > .u-inner-container-layout:before,
.u-body-alt-color.u-sidenav:before,
.u-container-layout.u-container-layout.u-body-alt-color:before,
.u-table-alt-body-alt-color tr:nth-child(even) {
  color: #111111;
  background-color: #ffffff;
}
.u-input.u-body-alt-color,
.u-field-input.u-body-alt-color,
.u-button-style.u-body-alt-color,
.u-button-style.u-body-alt-color[class*="u-border-"] {
  color: #111111 !important;
  background-color: #ffffff !important;
}
.u-button-style.u-body-alt-color:hover,
.u-button-style.u-body-alt-color[class*="u-border-"]:hover,
.u-button-style.u-body-alt-color:focus,
.u-button-style.u-body-alt-color[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-body-alt-color:active,
.u-button-style.u-button-style.u-body-alt-color[class*="u-border-"]:active,
.u-button-style.u-button-style.u-body-alt-color.active,
.u-button-style.u-button-style.u-body-alt-color[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-body-alt-color,
li.active > .u-button-style.u-button-style.u-body-alt-color[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e6e6e6 !important;
}
.u-hover-body-alt-color:hover,
.u-hover-body-alt-color[class*="u-border-"]:hover,
.u-hover-body-alt-color:focus,
.u-hover-body-alt-color[class*="u-border-"]:focus,
.u-active-body-alt-color.u-active.u-active,
.u-active-body-alt-color[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-body-alt-color:hover,
a.u-button-style.u-hover-body-alt-color.hover,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-body-alt-color,
a.u-button-style:hover > .u-hover-body-alt-color[class*="u-border-"],
a.u-button-style.u-hover-body-alt-color:focus,
a.u-button-style.u-hover-body-alt-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-body-alt-color:active,
a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-body-alt-color.active,
a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-body-alt-color,
a.u-button-style.u-button-style.active > .u-active-body-alt-color[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-body-alt-color,
li.active > a.u-button-style.u-button-style.u-active-body-alt-color[class*="u-border-"],
input.u-field-input.u-field-input.u-active-body-alt-color:checked {
  color: #111111 !important;
  background-color: #ffffff !important;
}
a.u-link.u-hover-body-alt-color:hover {
  color: #ffffff !important;
}
.u-grey-25,
.u-body.u-grey-25,
section.u-grey-25:before,
.u-grey-25 > .u-audio-main-layout-wrapper:before,
.u-grey-25 > .u-container-layout:before,
.u-grey-25 > .u-inner-container-layout:before,
.u-grey-25.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-25:before,
.u-table-alt-grey-25 tr:nth-child(even) {
  color: #111111;
  background-color: #c0c0c0;
}
.u-input.u-grey-25,
.u-field-input.u-grey-25,
.u-button-style.u-grey-25,
.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
.u-button-style.u-grey-25:hover,
.u-button-style.u-grey-25[class*="u-border-"]:hover,
.u-button-style.u-grey-25:focus,
.u-button-style.u-grey-25[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-25:active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-25.active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-25,
li.active > .u-button-style.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adadad !important;
}
.u-hover-grey-25:hover,
.u-hover-grey-25[class*="u-border-"]:hover,
.u-hover-grey-25:focus,
.u-hover-grey-25[class*="u-border-"]:focus,
.u-active-grey-25.u-active.u-active,
.u-active-grey-25[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-25:hover,
a.u-button-style.u-hover-grey-25.hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-25,
a.u-button-style:hover > .u-hover-grey-25[class*="u-border-"],
a.u-button-style.u-hover-grey-25:focus,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-25:active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-25.active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-25,
a.u-button-style.u-button-style.active > .u-active-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-25,
li.active > a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-25:checked {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
a.u-link.u-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-grey-5,
.u-body.u-grey-5,
section.u-grey-5:before,
.u-grey-5 > .u-audio-main-layout-wrapper:before,
.u-grey-5 > .u-container-layout:before,
.u-grey-5 > .u-inner-container-layout:before,
.u-grey-5.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-5:before,
.u-table-alt-grey-5 tr:nth-child(even) {
  color: #111111;
  background-color: #f2f2f2;
}
.u-input.u-grey-5,
.u-field-input.u-grey-5,
.u-button-style.u-grey-5,
.u-button-style.u-grey-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #f2f2f2 !important;
}
.u-button-style.u-grey-5:hover,
.u-button-style.u-grey-5[class*="u-border-"]:hover,
.u-button-style.u-grey-5:focus,
.u-button-style.u-grey-5[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-5:active,
.u-button-style.u-button-style.u-grey-5[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-5.active,
.u-button-style.u-button-style.u-grey-5[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-5,
li.active > .u-button-style.u-button-style.u-grey-5[class*="u-border-"] {
  color: #111111 !important;
  background-color: #dadada !important;
}
.u-hover-grey-5:hover,
.u-hover-grey-5[class*="u-border-"]:hover,
.u-hover-grey-5:focus,
.u-hover-grey-5[class*="u-border-"]:focus,
.u-active-grey-5.u-active.u-active,
.u-active-grey-5[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-5:hover,
a.u-button-style.u-hover-grey-5.hover,
a.u-button-style.u-hover-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-5[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-5,
a.u-button-style:hover > .u-hover-grey-5[class*="u-border-"],
a.u-button-style.u-hover-grey-5:focus,
a.u-button-style.u-hover-grey-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-5:active,
a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-5.active,
a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-5,
a.u-button-style.u-button-style.active > .u-active-grey-5[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-5,
li.active > a.u-button-style.u-button-style.u-active-grey-5[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-5:checked {
  color: #111111 !important;
  background-color: #f2f2f2 !important;
}
a.u-link.u-hover-grey-5:hover {
  color: #f2f2f2 !important;
}
.u-grey-10,
.u-body.u-grey-10,
section.u-grey-10:before,
.u-grey-10 > .u-audio-main-layout-wrapper:before,
.u-grey-10 > .u-container-layout:before,
.u-grey-10 > .u-inner-container-layout:before,
.u-grey-10.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-10:before,
.u-table-alt-grey-10 tr:nth-child(even) {
  color: #111111;
  background-color: #e5e5e5;
}
.u-input.u-grey-10,
.u-field-input.u-grey-10,
.u-button-style.u-grey-10,
.u-button-style.u-grey-10[class*="u-border-"] {
  color: #111111 !important;
  background-color: #e5e5e5 !important;
}
.u-button-style.u-grey-10:hover,
.u-button-style.u-grey-10[class*="u-border-"]:hover,
.u-button-style.u-grey-10:focus,
.u-button-style.u-grey-10[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-10:active,
.u-button-style.u-button-style.u-grey-10[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-10.active,
.u-button-style.u-button-style.u-grey-10[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-10,
li.active > .u-button-style.u-button-style.u-grey-10[class*="u-border-"] {
  color: #111111 !important;
  background-color: #cecece !important;
}
.u-hover-grey-10:hover,
.u-hover-grey-10[class*="u-border-"]:hover,
.u-hover-grey-10:focus,
.u-hover-grey-10[class*="u-border-"]:focus,
.u-active-grey-10.u-active.u-active,
.u-active-grey-10[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-10:hover,
a.u-button-style.u-hover-grey-10.hover,
a.u-button-style.u-hover-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-10[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-10,
a.u-button-style:hover > .u-hover-grey-10[class*="u-border-"],
a.u-button-style.u-hover-grey-10:focus,
a.u-button-style.u-hover-grey-10[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-10:active,
a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-10.active,
a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-10,
a.u-button-style.u-button-style.active > .u-active-grey-10[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-10,
li.active > a.u-button-style.u-button-style.u-active-grey-10[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-10:checked {
  color: #111111 !important;
  background-color: #e5e5e5 !important;
}
a.u-link.u-hover-grey-10:hover {
  color: #e5e5e5 !important;
}
.u-grey-15,
.u-body.u-grey-15,
section.u-grey-15:before,
.u-grey-15 > .u-audio-main-layout-wrapper:before,
.u-grey-15 > .u-container-layout:before,
.u-grey-15 > .u-inner-container-layout:before,
.u-grey-15.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-15:before,
.u-table-alt-grey-15 tr:nth-child(even) {
  color: #111111;
  background-color: #d9d9d9;
}
.u-input.u-grey-15,
.u-field-input.u-grey-15,
.u-button-style.u-grey-15,
.u-button-style.u-grey-15[class*="u-border-"] {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
.u-button-style.u-grey-15:hover,
.u-button-style.u-grey-15[class*="u-border-"]:hover,
.u-button-style.u-grey-15:focus,
.u-button-style.u-grey-15[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-15:active,
.u-button-style.u-button-style.u-grey-15[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-15.active,
.u-button-style.u-button-style.u-grey-15[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-15,
li.active > .u-button-style.u-button-style.u-grey-15[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c3c3c3 !important;
}
.u-hover-grey-15:hover,
.u-hover-grey-15[class*="u-border-"]:hover,
.u-hover-grey-15:focus,
.u-hover-grey-15[class*="u-border-"]:focus,
.u-active-grey-15.u-active.u-active,
.u-active-grey-15[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-15:hover,
a.u-button-style.u-hover-grey-15.hover,
a.u-button-style.u-hover-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-15[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-15,
a.u-button-style:hover > .u-hover-grey-15[class*="u-border-"],
a.u-button-style.u-hover-grey-15:focus,
a.u-button-style.u-hover-grey-15[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-15:active,
a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-15.active,
a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-15,
a.u-button-style.u-button-style.active > .u-active-grey-15[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-15,
li.active > a.u-button-style.u-button-style.u-active-grey-15[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-15:checked {
  color: #111111 !important;
  background-color: #d9d9d9 !important;
}
a.u-link.u-hover-grey-15:hover {
  color: #d9d9d9 !important;
}
.u-grey-25,
.u-body.u-grey-25,
section.u-grey-25:before,
.u-grey-25 > .u-audio-main-layout-wrapper:before,
.u-grey-25 > .u-container-layout:before,
.u-grey-25 > .u-inner-container-layout:before,
.u-grey-25.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-25:before,
.u-table-alt-grey-25 tr:nth-child(even) {
  color: #111111;
  background-color: #c0c0c0;
}
.u-input.u-grey-25,
.u-field-input.u-grey-25,
.u-button-style.u-grey-25,
.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
.u-button-style.u-grey-25:hover,
.u-button-style.u-grey-25[class*="u-border-"]:hover,
.u-button-style.u-grey-25:focus,
.u-button-style.u-grey-25[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-25:active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-25.active,
.u-button-style.u-button-style.u-grey-25[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-25,
li.active > .u-button-style.u-button-style.u-grey-25[class*="u-border-"] {
  color: #111111 !important;
  background-color: #adadad !important;
}
.u-hover-grey-25:hover,
.u-hover-grey-25[class*="u-border-"]:hover,
.u-hover-grey-25:focus,
.u-hover-grey-25[class*="u-border-"]:focus,
.u-active-grey-25.u-active.u-active,
.u-active-grey-25[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-25:hover,
a.u-button-style.u-hover-grey-25.hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-25[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-25,
a.u-button-style:hover > .u-hover-grey-25[class*="u-border-"],
a.u-button-style.u-hover-grey-25:focus,
a.u-button-style.u-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-25:active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-25.active,
a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-25,
a.u-button-style.u-button-style.active > .u-active-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-25,
li.active > a.u-button-style.u-button-style.u-active-grey-25[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-25:checked {
  color: #111111 !important;
  background-color: #c0c0c0 !important;
}
a.u-link.u-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-grey-30,
.u-body.u-grey-30,
section.u-grey-30:before,
.u-grey-30 > .u-audio-main-layout-wrapper:before,
.u-grey-30 > .u-container-layout:before,
.u-grey-30 > .u-inner-container-layout:before,
.u-grey-30.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-30:before,
.u-table-alt-grey-30 tr:nth-child(even) {
  color: #ffffff;
  background-color: #b3b3b3;
}
.u-input.u-grey-30,
.u-field-input.u-grey-30,
.u-button-style.u-grey-30,
.u-button-style.u-grey-30[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #b3b3b3 !important;
}
.u-button-style.u-grey-30:hover,
.u-button-style.u-grey-30[class*="u-border-"]:hover,
.u-button-style.u-grey-30:focus,
.u-button-style.u-grey-30[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-30:active,
.u-button-style.u-button-style.u-grey-30[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-30.active,
.u-button-style.u-button-style.u-grey-30[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-30,
li.active > .u-button-style.u-button-style.u-grey-30[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #a1a1a1 !important;
}
.u-hover-grey-30:hover,
.u-hover-grey-30[class*="u-border-"]:hover,
.u-hover-grey-30:focus,
.u-hover-grey-30[class*="u-border-"]:focus,
.u-active-grey-30.u-active.u-active,
.u-active-grey-30[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-30:hover,
a.u-button-style.u-hover-grey-30.hover,
a.u-button-style.u-hover-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-30[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-30,
a.u-button-style:hover > .u-hover-grey-30[class*="u-border-"],
a.u-button-style.u-hover-grey-30:focus,
a.u-button-style.u-hover-grey-30[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-30:active,
a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-30.active,
a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-30,
a.u-button-style.u-button-style.active > .u-active-grey-30[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-30,
li.active > a.u-button-style.u-button-style.u-active-grey-30[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-30:checked {
  color: #ffffff !important;
  background-color: #b3b3b3 !important;
}
a.u-link.u-hover-grey-30:hover {
  color: #b3b3b3 !important;
}
.u-grey-40,
.u-body.u-grey-40,
section.u-grey-40:before,
.u-grey-40 > .u-audio-main-layout-wrapper:before,
.u-grey-40 > .u-container-layout:before,
.u-grey-40 > .u-inner-container-layout:before,
.u-grey-40.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-40:before,
.u-table-alt-grey-40 tr:nth-child(even) {
  color: #ffffff;
  background-color: #999999;
}
.u-input.u-grey-40,
.u-field-input.u-grey-40,
.u-button-style.u-grey-40,
.u-button-style.u-grey-40[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #999999 !important;
}
.u-button-style.u-grey-40:hover,
.u-button-style.u-grey-40[class*="u-border-"]:hover,
.u-button-style.u-grey-40:focus,
.u-button-style.u-grey-40[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-40:active,
.u-button-style.u-button-style.u-grey-40[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-40.active,
.u-button-style.u-button-style.u-grey-40[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-40,
li.active > .u-button-style.u-button-style.u-grey-40[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #8a8a8a !important;
}
.u-hover-grey-40:hover,
.u-hover-grey-40[class*="u-border-"]:hover,
.u-hover-grey-40:focus,
.u-hover-grey-40[class*="u-border-"]:focus,
.u-active-grey-40.u-active.u-active,
.u-active-grey-40[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-40:hover,
a.u-button-style.u-hover-grey-40.hover,
a.u-button-style.u-hover-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-40[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-40,
a.u-button-style:hover > .u-hover-grey-40[class*="u-border-"],
a.u-button-style.u-hover-grey-40:focus,
a.u-button-style.u-hover-grey-40[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-40:active,
a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-40.active,
a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-40,
a.u-button-style.u-button-style.active > .u-active-grey-40[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-40,
li.active > a.u-button-style.u-button-style.u-active-grey-40[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-40:checked {
  color: #ffffff !important;
  background-color: #999999 !important;
}
a.u-link.u-hover-grey-40:hover {
  color: #999999 !important;
}
.u-grey-50,
.u-body.u-grey-50,
section.u-grey-50:before,
.u-grey-50 > .u-audio-main-layout-wrapper:before,
.u-grey-50 > .u-container-layout:before,
.u-grey-50 > .u-inner-container-layout:before,
.u-grey-50.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-50:before,
.u-table-alt-grey-50 tr:nth-child(even) {
  color: #ffffff;
  background-color: #808080;
}
.u-input.u-grey-50,
.u-field-input.u-grey-50,
.u-button-style.u-grey-50,
.u-button-style.u-grey-50[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #808080 !important;
}
.u-button-style.u-grey-50:hover,
.u-button-style.u-grey-50[class*="u-border-"]:hover,
.u-button-style.u-grey-50:focus,
.u-button-style.u-grey-50[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-50:active,
.u-button-style.u-button-style.u-grey-50[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-50.active,
.u-button-style.u-button-style.u-grey-50[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-50,
li.active > .u-button-style.u-button-style.u-grey-50[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #737373 !important;
}
.u-hover-grey-50:hover,
.u-hover-grey-50[class*="u-border-"]:hover,
.u-hover-grey-50:focus,
.u-hover-grey-50[class*="u-border-"]:focus,
.u-active-grey-50.u-active.u-active,
.u-active-grey-50[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-50:hover,
a.u-button-style.u-hover-grey-50.hover,
a.u-button-style.u-hover-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-50[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-50,
a.u-button-style:hover > .u-hover-grey-50[class*="u-border-"],
a.u-button-style.u-hover-grey-50:focus,
a.u-button-style.u-hover-grey-50[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-50:active,
a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-50.active,
a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-50,
a.u-button-style.u-button-style.active > .u-active-grey-50[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-50,
li.active > a.u-button-style.u-button-style.u-active-grey-50[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-50:checked {
  color: #ffffff !important;
  background-color: #808080 !important;
}
a.u-link.u-hover-grey-50:hover {
  color: #808080 !important;
}
.u-grey-60,
.u-body.u-grey-60,
section.u-grey-60:before,
.u-grey-60 > .u-audio-main-layout-wrapper:before,
.u-grey-60 > .u-container-layout:before,
.u-grey-60 > .u-inner-container-layout:before,
.u-grey-60.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-60:before,
.u-table-alt-grey-60 tr:nth-child(even) {
  color: #ffffff;
  background-color: #666666;
}
.u-input.u-grey-60,
.u-field-input.u-grey-60,
.u-button-style.u-grey-60,
.u-button-style.u-grey-60[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #666666 !important;
}
.u-button-style.u-grey-60:hover,
.u-button-style.u-grey-60[class*="u-border-"]:hover,
.u-button-style.u-grey-60:focus,
.u-button-style.u-grey-60[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-60:active,
.u-button-style.u-button-style.u-grey-60[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-60.active,
.u-button-style.u-button-style.u-grey-60[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-60,
li.active > .u-button-style.u-button-style.u-grey-60[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #5c5c5c !important;
}
.u-hover-grey-60:hover,
.u-hover-grey-60[class*="u-border-"]:hover,
.u-hover-grey-60:focus,
.u-hover-grey-60[class*="u-border-"]:focus,
.u-active-grey-60.u-active.u-active,
.u-active-grey-60[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-60:hover,
a.u-button-style.u-hover-grey-60.hover,
a.u-button-style.u-hover-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-60[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-60,
a.u-button-style:hover > .u-hover-grey-60[class*="u-border-"],
a.u-button-style.u-hover-grey-60:focus,
a.u-button-style.u-hover-grey-60[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-60:active,
a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-60.active,
a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-60,
a.u-button-style.u-button-style.active > .u-active-grey-60[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-60,
li.active > a.u-button-style.u-button-style.u-active-grey-60[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-60:checked {
  color: #ffffff !important;
  background-color: #666666 !important;
}
a.u-link.u-hover-grey-60:hover {
  color: #666666 !important;
}
.u-grey-70,
.u-body.u-grey-70,
section.u-grey-70:before,
.u-grey-70 > .u-audio-main-layout-wrapper:before,
.u-grey-70 > .u-container-layout:before,
.u-grey-70 > .u-inner-container-layout:before,
.u-grey-70.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-70:before,
.u-table-alt-grey-70 tr:nth-child(even) {
  color: #ffffff;
  background-color: #4d4d4d;
}
.u-input.u-grey-70,
.u-field-input.u-grey-70,
.u-button-style.u-grey-70,
.u-button-style.u-grey-70[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #4d4d4d !important;
}
.u-button-style.u-grey-70:hover,
.u-button-style.u-grey-70[class*="u-border-"]:hover,
.u-button-style.u-grey-70:focus,
.u-button-style.u-grey-70[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-70:active,
.u-button-style.u-button-style.u-grey-70[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-70.active,
.u-button-style.u-button-style.u-grey-70[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-70,
li.active > .u-button-style.u-button-style.u-grey-70[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #454545 !important;
}
.u-hover-grey-70:hover,
.u-hover-grey-70[class*="u-border-"]:hover,
.u-hover-grey-70:focus,
.u-hover-grey-70[class*="u-border-"]:focus,
.u-active-grey-70.u-active.u-active,
.u-active-grey-70[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-70:hover,
a.u-button-style.u-hover-grey-70.hover,
a.u-button-style.u-hover-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-70[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-70,
a.u-button-style:hover > .u-hover-grey-70[class*="u-border-"],
a.u-button-style.u-hover-grey-70:focus,
a.u-button-style.u-hover-grey-70[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-70:active,
a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-70.active,
a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-70,
a.u-button-style.u-button-style.active > .u-active-grey-70[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-70,
li.active > a.u-button-style.u-button-style.u-active-grey-70[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-70:checked {
  color: #ffffff !important;
  background-color: #4d4d4d !important;
}
a.u-link.u-hover-grey-70:hover {
  color: #4d4d4d !important;
}
.u-grey-75,
.u-body.u-grey-75,
section.u-grey-75:before,
.u-grey-75 > .u-audio-main-layout-wrapper:before,
.u-grey-75 > .u-container-layout:before,
.u-grey-75 > .u-inner-container-layout:before,
.u-grey-75.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-75:before,
.u-table-alt-grey-75 tr:nth-child(even) {
  color: #ffffff;
  background-color: #404040;
}
.u-input.u-grey-75,
.u-field-input.u-grey-75,
.u-button-style.u-grey-75,
.u-button-style.u-grey-75[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #404040 !important;
}
.u-button-style.u-grey-75:hover,
.u-button-style.u-grey-75[class*="u-border-"]:hover,
.u-button-style.u-grey-75:focus,
.u-button-style.u-grey-75[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-75:active,
.u-button-style.u-button-style.u-grey-75[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-75.active,
.u-button-style.u-button-style.u-grey-75[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-75,
li.active > .u-button-style.u-button-style.u-grey-75[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #3a3a3a !important;
}
.u-hover-grey-75:hover,
.u-hover-grey-75[class*="u-border-"]:hover,
.u-hover-grey-75:focus,
.u-hover-grey-75[class*="u-border-"]:focus,
.u-active-grey-75.u-active.u-active,
.u-active-grey-75[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-75:hover,
a.u-button-style.u-hover-grey-75.hover,
a.u-button-style.u-hover-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-75[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-75,
a.u-button-style:hover > .u-hover-grey-75[class*="u-border-"],
a.u-button-style.u-hover-grey-75:focus,
a.u-button-style.u-hover-grey-75[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-75:active,
a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-75.active,
a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-75,
a.u-button-style.u-button-style.active > .u-active-grey-75[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-75,
li.active > a.u-button-style.u-button-style.u-active-grey-75[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-75:checked {
  color: #ffffff !important;
  background-color: #404040 !important;
}
a.u-link.u-hover-grey-75:hover {
  color: #404040 !important;
}
.u-grey-80,
.u-body.u-grey-80,
section.u-grey-80:before,
.u-grey-80 > .u-audio-main-layout-wrapper:before,
.u-grey-80 > .u-container-layout:before,
.u-grey-80 > .u-inner-container-layout:before,
.u-grey-80.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-80:before,
.u-table-alt-grey-80 tr:nth-child(even) {
  color: #ffffff;
  background-color: #333333;
}
.u-input.u-grey-80,
.u-field-input.u-grey-80,
.u-button-style.u-grey-80,
.u-button-style.u-grey-80[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #333333 !important;
}
.u-button-style.u-grey-80:hover,
.u-button-style.u-grey-80[class*="u-border-"]:hover,
.u-button-style.u-grey-80:focus,
.u-button-style.u-grey-80[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-80:active,
.u-button-style.u-button-style.u-grey-80[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-80.active,
.u-button-style.u-button-style.u-grey-80[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-80,
li.active > .u-button-style.u-button-style.u-grey-80[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #2e2e2e !important;
}
.u-hover-grey-80:hover,
.u-hover-grey-80[class*="u-border-"]:hover,
.u-hover-grey-80:focus,
.u-hover-grey-80[class*="u-border-"]:focus,
.u-active-grey-80.u-active.u-active,
.u-active-grey-80[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-80:hover,
a.u-button-style.u-hover-grey-80.hover,
a.u-button-style.u-hover-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-80[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-80,
a.u-button-style:hover > .u-hover-grey-80[class*="u-border-"],
a.u-button-style.u-hover-grey-80:focus,
a.u-button-style.u-hover-grey-80[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-80:active,
a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-80.active,
a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-80,
a.u-button-style.u-button-style.active > .u-active-grey-80[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-80,
li.active > a.u-button-style.u-button-style.u-active-grey-80[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-80:checked {
  color: #ffffff !important;
  background-color: #333333 !important;
}
a.u-link.u-hover-grey-80:hover {
  color: #333333 !important;
}
.u-grey-90,
.u-body.u-grey-90,
section.u-grey-90:before,
.u-grey-90 > .u-audio-main-layout-wrapper:before,
.u-grey-90 > .u-container-layout:before,
.u-grey-90 > .u-inner-container-layout:before,
.u-grey-90.u-sidenav:before,
.u-container-layout.u-container-layout.u-grey-90:before,
.u-table-alt-grey-90 tr:nth-child(even) {
  color: #ffffff;
  background-color: #1a1a1a;
}
.u-input.u-grey-90,
.u-field-input.u-grey-90,
.u-button-style.u-grey-90,
.u-button-style.u-grey-90[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
}
.u-button-style.u-grey-90:hover,
.u-button-style.u-grey-90[class*="u-border-"]:hover,
.u-button-style.u-grey-90:focus,
.u-button-style.u-grey-90[class*="u-border-"]:focus,
.u-button-style.u-button-style.u-grey-90:active,
.u-button-style.u-button-style.u-grey-90[class*="u-border-"]:active,
.u-button-style.u-button-style.u-grey-90.active,
.u-button-style.u-button-style.u-grey-90[class*="u-border-"].active,
li.active > .u-button-style.u-button-style.u-grey-90,
li.active > .u-button-style.u-button-style.u-grey-90[class*="u-border-"] {
  color: #ffffff !important;
  background-color: #171717 !important;
}
.u-hover-grey-90:hover,
.u-hover-grey-90[class*="u-border-"]:hover,
.u-hover-grey-90:focus,
.u-hover-grey-90[class*="u-border-"]:focus,
.u-active-grey-90.u-active.u-active,
.u-active-grey-90[class*="u-border-"].u-active.u-active,
a.u-button-style.u-hover-grey-90:hover,
a.u-button-style.u-hover-grey-90.hover,
a.u-button-style.u-hover-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-hover-grey-90[class*="u-border-"].hover,
a.u-button-style:hover > .u-hover-grey-90,
a.u-button-style:hover > .u-hover-grey-90[class*="u-border-"],
a.u-button-style.u-hover-grey-90:focus,
a.u-button-style.u-hover-grey-90[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-active-grey-90:active,
a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-active-grey-90.active,
a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-active-grey-90,
a.u-button-style.u-button-style.active > .u-active-grey-90[class*="u-border-"],
li.active > a.u-button-style.u-button-style.u-active-grey-90,
li.active > a.u-button-style.u-button-style.u-active-grey-90[class*="u-border-"],
input.u-field-input.u-field-input.u-active-grey-90:checked {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
}
a.u-link.u-hover-grey-90:hover {
  color: #1a1a1a !important;
}
.u-border-color-1-dark-3,
.u-border-color-1-dark-3.u-input,
.u-border-color-1-dark-3.u-field-input.u-field-input,
.u-separator-color-1-dark-3:after {
  border-color: #292e33;
  stroke: #292e33;
}
.u-button-style.u-border-color-1-dark-3 {
  border-color: #292e33 !important;
  color: #292e33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-3:hover,
.u-button-style.u-border-color-1-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-3:hover,
.u-border-hover-color-1-dark-3:focus,
.u-border-active-color-1-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-color-1-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-3,
a.u-button-style.u-border-hover-color-1-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-3,
input.u-field-input.u-field-input.u-border-active-color-1-dark-3:checked {
  color: #292e33 !important;
  border-color: #292e33 !important;
}
.u-link.u-border-color-1-dark-3[class*="u-border-"] {
  border-color: #292e33 !important;
}
.u-link.u-border-color-1-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-color-1-dark-2,
.u-border-color-1-dark-2.u-input,
.u-border-color-1-dark-2.u-field-input.u-field-input,
.u-separator-color-1-dark-2:after {
  border-color: #425465;
  stroke: #425465;
}
.u-button-style.u-border-color-1-dark-2 {
  border-color: #425465 !important;
  color: #425465 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-2:hover,
.u-button-style.u-border-color-1-dark-2:focus {
  border-color: transparent !important;
  color: #3b4c5b !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-2:hover,
.u-border-hover-color-1-dark-2:focus,
.u-border-active-color-1-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-color-1-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-2,
a.u-button-style.u-border-hover-color-1-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-2,
input.u-field-input.u-field-input.u-border-active-color-1-dark-2:checked {
  color: #425465 !important;
  border-color: #425465 !important;
}
.u-link.u-border-color-1-dark-2[class*="u-border-"] {
  border-color: #425465 !important;
}
.u-link.u-border-color-1-dark-2[class*="u-border-"]:hover {
  border-color: #3b4c5b !important;
}
.u-border-color-1-dark-1,
.u-border-color-1-dark-1.u-input,
.u-border-color-1-dark-1.u-field-input.u-field-input,
.u-separator-color-1-dark-1:after {
  border-color: #4c7397;
  stroke: #4c7397;
}
.u-button-style.u-border-color-1-dark-1 {
  border-color: #4c7397 !important;
  color: #4c7397 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-dark-1:hover,
.u-button-style.u-border-color-1-dark-1:focus {
  border-color: transparent !important;
  color: #446888 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-dark-1:hover,
.u-border-hover-color-1-dark-1:focus,
.u-border-active-color-1-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-color-1-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-1-dark-1,
a.u-button-style.u-border-hover-color-1-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-1-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-dark-1,
input.u-field-input.u-field-input.u-border-active-color-1-dark-1:checked {
  color: #4c7397 !important;
  border-color: #4c7397 !important;
}
.u-link.u-border-color-1-dark-1[class*="u-border-"] {
  border-color: #4c7397 !important;
}
.u-link.u-border-color-1-dark-1[class*="u-border-"]:hover {
  border-color: #446888 !important;
}
.u-border-color-1,
.u-border-color-1.u-input,
.u-border-color-1.u-field-input.u-field-input,
.u-separator-color-1:after {
  border-color: #478ac9;
  stroke: #478ac9;
}
.u-button-style.u-border-color-1 {
  border-color: #478ac9 !important;
  color: #478ac9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1:hover,
.u-button-style.u-border-color-1:focus {
  border-color: transparent !important;
  color: #387cbd !important;
  background-color: transparent !important;
}
.u-border-hover-color-1:hover,
.u-border-hover-color-1:focus,
.u-border-active-color-1.u-active.u-active,
a.u-button-style.u-border-hover-color-1:hover,
a.u-button-style:hover > .u-border-hover-color-1,
a.u-button-style.u-border-hover-color-1:focus,
a.u-button-style.u-button-style.u-border-active-color-1:active,
a.u-button-style.u-button-style.u-border-active-color-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1,
input.u-field-input.u-field-input.u-border-active-color-1:checked {
  color: #478ac9 !important;
  border-color: #478ac9 !important;
}
.u-link.u-border-color-1[class*="u-border-"] {
  border-color: #478ac9 !important;
}
.u-link.u-border-color-1[class*="u-border-"]:hover {
  border-color: #387cbd !important;
}
.u-border-color-1-light-1,
.u-border-color-1-light-1.u-input,
.u-border-color-1-light-1.u-field-input.u-field-input,
.u-separator-color-1-light-1:after {
  border-color: #77aad9;
  stroke: #77aad9;
}
.u-button-style.u-border-color-1-light-1 {
  border-color: #77aad9 !important;
  color: #77aad9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-1:hover,
.u-button-style.u-border-color-1-light-1:focus {
  border-color: transparent !important;
  color: #5d9ad2 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-1:hover,
.u-border-hover-color-1-light-1:focus,
.u-border-active-color-1-light-1.u-active.u-active,
a.u-button-style.u-border-hover-color-1-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-1,
a.u-button-style.u-border-hover-color-1-light-1:focus,
a.u-button-style.u-button-style.u-border-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-1,
input.u-field-input.u-field-input.u-border-active-color-1-light-1:checked {
  color: #77aad9 !important;
  border-color: #77aad9 !important;
}
.u-link.u-border-color-1-light-1[class*="u-border-"] {
  border-color: #77aad9 !important;
}
.u-link.u-border-color-1-light-1[class*="u-border-"]:hover {
  border-color: #5d9ad2 !important;
}
.u-border-color-1-light-2,
.u-border-color-1-light-2.u-input,
.u-border-color-1-light-2.u-field-input.u-field-input,
.u-separator-color-1-light-2:after {
  border-color: #adcce9;
  stroke: #adcce9;
}
.u-button-style.u-border-color-1-light-2 {
  border-color: #adcce9 !important;
  color: #adcce9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-2:hover,
.u-button-style.u-border-color-1-light-2:focus {
  border-color: transparent !important;
  color: #8db8e0 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-2:hover,
.u-border-hover-color-1-light-2:focus,
.u-border-active-color-1-light-2.u-active.u-active,
a.u-button-style.u-border-hover-color-1-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-2,
a.u-button-style.u-border-hover-color-1-light-2:focus,
a.u-button-style.u-button-style.u-border-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-2,
input.u-field-input.u-field-input.u-border-active-color-1-light-2:checked {
  color: #adcce9 !important;
  border-color: #adcce9 !important;
}
.u-link.u-border-color-1-light-2[class*="u-border-"] {
  border-color: #adcce9 !important;
}
.u-link.u-border-color-1-light-2[class*="u-border-"]:hover {
  border-color: #8db8e0 !important;
}
.u-border-color-1-light-3,
.u-border-color-1-light-3.u-input,
.u-border-color-1-light-3.u-field-input.u-field-input,
.u-separator-color-1-light-3:after {
  border-color: #e9f2fa;
  stroke: #e9f2fa;
}
.u-button-style.u-border-color-1-light-3 {
  border-color: #e9f2fa !important;
  color: #e9f2fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-light-3:hover,
.u-button-style.u-border-color-1-light-3:focus {
  border-color: transparent !important;
  color: #c2dbf1 !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-light-3:hover,
.u-border-hover-color-1-light-3:focus,
.u-border-active-color-1-light-3.u-active.u-active,
a.u-button-style.u-border-hover-color-1-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-1-light-3,
a.u-button-style.u-border-hover-color-1-light-3:focus,
a.u-button-style.u-button-style.u-border-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-1-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-light-3,
input.u-field-input.u-field-input.u-border-active-color-1-light-3:checked {
  color: #e9f2fa !important;
  border-color: #e9f2fa !important;
}
.u-link.u-border-color-1-light-3[class*="u-border-"] {
  border-color: #e9f2fa !important;
}
.u-link.u-border-color-1-light-3[class*="u-border-"]:hover {
  border-color: #c2dbf1 !important;
}
.u-border-color-1-base,
.u-border-color-1-base.u-input,
.u-border-color-1-base.u-field-input.u-field-input,
.u-separator-color-1-base:after {
  border-color: #478ac9;
  stroke: #478ac9;
}
.u-button-style.u-border-color-1-base {
  border-color: #478ac9 !important;
  color: #478ac9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-1-base:hover,
.u-button-style.u-border-color-1-base:focus {
  border-color: transparent !important;
  color: #387cbd !important;
  background-color: transparent !important;
}
.u-border-hover-color-1-base:hover,
.u-border-hover-color-1-base:focus,
.u-border-active-color-1-base.u-active.u-active,
a.u-button-style.u-border-hover-color-1-base:hover,
a.u-button-style:hover > .u-border-hover-color-1-base,
a.u-button-style.u-border-hover-color-1-base:focus,
a.u-button-style.u-button-style.u-border-active-color-1-base:active,
a.u-button-style.u-button-style.u-border-active-color-1-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-1-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-1-base,
input.u-field-input.u-field-input.u-border-active-color-1-base:checked {
  color: #478ac9 !important;
  border-color: #478ac9 !important;
}
.u-link.u-border-color-1-base[class*="u-border-"] {
  border-color: #478ac9 !important;
}
.u-link.u-border-color-1-base[class*="u-border-"]:hover {
  border-color: #387cbd !important;
}
.u-border-color-2-dark-3,
.u-border-color-2-dark-3.u-input,
.u-border-color-2-dark-3.u-field-input.u-field-input,
.u-separator-color-2-dark-3:after {
  border-color: #332929;
  stroke: #332929;
}
.u-button-style.u-border-color-2-dark-3 {
  border-color: #332929 !important;
  color: #332929 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-3:hover,
.u-button-style.u-border-color-2-dark-3:focus {
  border-color: transparent !important;
  color: #2e2525 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-3:hover,
.u-border-hover-color-2-dark-3:focus,
.u-border-active-color-2-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-color-2-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-3,
a.u-button-style.u-border-hover-color-2-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-3,
input.u-field-input.u-field-input.u-border-active-color-2-dark-3:checked {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-link.u-border-color-2-dark-3[class*="u-border-"] {
  border-color: #332929 !important;
}
.u-link.u-border-color-2-dark-3[class*="u-border-"]:hover {
  border-color: #2e2525 !important;
}
.u-border-color-2-dark-2,
.u-border-color-2-dark-2.u-input,
.u-border-color-2-dark-2.u-field-input.u-field-input,
.u-separator-color-2-dark-2:after {
  border-color: #744547;
  stroke: #744547;
}
.u-button-style.u-border-color-2-dark-2 {
  border-color: #744547 !important;
  color: #744547 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-2:hover,
.u-button-style.u-border-color-2-dark-2:focus {
  border-color: transparent !important;
  color: #683e40 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-2:hover,
.u-border-hover-color-2-dark-2:focus,
.u-border-active-color-2-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-color-2-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-2,
a.u-button-style.u-border-hover-color-2-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-2,
input.u-field-input.u-field-input.u-border-active-color-2-dark-2:checked {
  color: #744547 !important;
  border-color: #744547 !important;
}
.u-link.u-border-color-2-dark-2[class*="u-border-"] {
  border-color: #744547 !important;
}
.u-link.u-border-color-2-dark-2[class*="u-border-"]:hover {
  border-color: #683e40 !important;
}
.u-border-color-2-dark-1,
.u-border-color-2-dark-1.u-input,
.u-border-color-2-dark-1.u-field-input.u-field-input,
.u-separator-color-2-dark-1:after {
  border-color: #b6474c;
  stroke: #b6474c;
}
.u-button-style.u-border-color-2-dark-1 {
  border-color: #b6474c !important;
  color: #b6474c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-dark-1:hover,
.u-button-style.u-border-color-2-dark-1:focus {
  border-color: transparent !important;
  color: #a44044 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-dark-1:hover,
.u-border-hover-color-2-dark-1:focus,
.u-border-active-color-2-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-color-2-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-2-dark-1,
a.u-button-style.u-border-hover-color-2-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-2-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-dark-1,
input.u-field-input.u-field-input.u-border-active-color-2-dark-1:checked {
  color: #b6474c !important;
  border-color: #b6474c !important;
}
.u-link.u-border-color-2-dark-1[class*="u-border-"] {
  border-color: #b6474c !important;
}
.u-link.u-border-color-2-dark-1[class*="u-border-"]:hover {
  border-color: #a44044 !important;
}
.u-border-color-2,
.u-border-color-2.u-input,
.u-border-color-2.u-field-input.u-field-input,
.u-separator-color-2:after {
  border-color: #f72e37;
  stroke: #f72e37;
}
.u-button-style.u-border-color-2 {
  border-color: #f72e37 !important;
  color: #f72e37 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2:hover,
.u-button-style.u-border-color-2:focus {
  border-color: transparent !important;
  color: #f6121c !important;
  background-color: transparent !important;
}
.u-border-hover-color-2:hover,
.u-border-hover-color-2:focus,
.u-border-active-color-2.u-active.u-active,
a.u-button-style.u-border-hover-color-2:hover,
a.u-button-style:hover > .u-border-hover-color-2,
a.u-button-style.u-border-hover-color-2:focus,
a.u-button-style.u-button-style.u-border-active-color-2:active,
a.u-button-style.u-button-style.u-border-active-color-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2,
input.u-field-input.u-field-input.u-border-active-color-2:checked {
  color: #f72e37 !important;
  border-color: #f72e37 !important;
}
.u-link.u-border-color-2[class*="u-border-"] {
  border-color: #f72e37 !important;
}
.u-link.u-border-color-2[class*="u-border-"]:hover {
  border-color: #f6121c !important;
}
.u-border-color-2-light-1,
.u-border-color-2-light-1.u-input,
.u-border-color-2-light-1.u-field-input.u-field-input,
.u-separator-color-2-light-1:after {
  border-color: #f96b72;
  stroke: #f96b72;
}
.u-button-style.u-border-color-2-light-1 {
  border-color: #f96b72 !important;
  color: #f96b72 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-1:hover,
.u-button-style.u-border-color-2-light-1:focus {
  border-color: transparent !important;
  color: #f84951 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-1:hover,
.u-border-hover-color-2-light-1:focus,
.u-border-active-color-2-light-1.u-active.u-active,
a.u-button-style.u-border-hover-color-2-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-1,
a.u-button-style.u-border-hover-color-2-light-1:focus,
a.u-button-style.u-button-style.u-border-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-1,
input.u-field-input.u-field-input.u-border-active-color-2-light-1:checked {
  color: #f96b72 !important;
  border-color: #f96b72 !important;
}
.u-link.u-border-color-2-light-1[class*="u-border-"] {
  border-color: #f96b72 !important;
}
.u-link.u-border-color-2-light-1[class*="u-border-"]:hover {
  border-color: #f84951 !important;
}
.u-border-color-2-light-2,
.u-border-color-2-light-2.u-input,
.u-border-color-2-light-2.u-field-input.u-field-input,
.u-separator-color-2-light-2:after {
  border-color: #fcaaae;
  stroke: #fcaaae;
}
.u-button-style.u-border-color-2-light-2 {
  border-color: #fcaaae !important;
  color: #fcaaae !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-2:hover,
.u-button-style.u-border-color-2-light-2:focus {
  border-color: transparent !important;
  color: #fb8187 !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-2:hover,
.u-border-hover-color-2-light-2:focus,
.u-border-active-color-2-light-2.u-active.u-active,
a.u-button-style.u-border-hover-color-2-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-2,
a.u-button-style.u-border-hover-color-2-light-2:focus,
a.u-button-style.u-button-style.u-border-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-2,
input.u-field-input.u-field-input.u-border-active-color-2-light-2:checked {
  color: #fcaaae !important;
  border-color: #fcaaae !important;
}
.u-link.u-border-color-2-light-2[class*="u-border-"] {
  border-color: #fcaaae !important;
}
.u-link.u-border-color-2-light-2[class*="u-border-"]:hover {
  border-color: #fb8187 !important;
}
.u-border-color-2-light-3,
.u-border-color-2-light-3.u-input,
.u-border-color-2-light-3.u-field-input.u-field-input,
.u-separator-color-2-light-3:after {
  border-color: #feeaea;
  stroke: #feeaea;
}
.u-button-style.u-border-color-2-light-3 {
  border-color: #feeaea !important;
  color: #feeaea !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-light-3:hover,
.u-button-style.u-border-color-2-light-3:focus {
  border-color: transparent !important;
  color: #fcbbbb !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-light-3:hover,
.u-border-hover-color-2-light-3:focus,
.u-border-active-color-2-light-3.u-active.u-active,
a.u-button-style.u-border-hover-color-2-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-2-light-3,
a.u-button-style.u-border-hover-color-2-light-3:focus,
a.u-button-style.u-button-style.u-border-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-2-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-light-3,
input.u-field-input.u-field-input.u-border-active-color-2-light-3:checked {
  color: #feeaea !important;
  border-color: #feeaea !important;
}
.u-link.u-border-color-2-light-3[class*="u-border-"] {
  border-color: #feeaea !important;
}
.u-link.u-border-color-2-light-3[class*="u-border-"]:hover {
  border-color: #fcbbbb !important;
}
.u-border-color-2-base,
.u-border-color-2-base.u-input,
.u-border-color-2-base.u-field-input.u-field-input,
.u-separator-color-2-base:after {
  border-color: #f72e37;
  stroke: #f72e37;
}
.u-button-style.u-border-color-2-base {
  border-color: #f72e37 !important;
  color: #f72e37 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-2-base:hover,
.u-button-style.u-border-color-2-base:focus {
  border-color: transparent !important;
  color: #f6121c !important;
  background-color: transparent !important;
}
.u-border-hover-color-2-base:hover,
.u-border-hover-color-2-base:focus,
.u-border-active-color-2-base.u-active.u-active,
a.u-button-style.u-border-hover-color-2-base:hover,
a.u-button-style:hover > .u-border-hover-color-2-base,
a.u-button-style.u-border-hover-color-2-base:focus,
a.u-button-style.u-button-style.u-border-active-color-2-base:active,
a.u-button-style.u-button-style.u-border-active-color-2-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-2-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-2-base,
input.u-field-input.u-field-input.u-border-active-color-2-base:checked {
  color: #f72e37 !important;
  border-color: #f72e37 !important;
}
.u-link.u-border-color-2-base[class*="u-border-"] {
  border-color: #f72e37 !important;
}
.u-link.u-border-color-2-base[class*="u-border-"]:hover {
  border-color: #f6121c !important;
}
.u-border-color-3-dark-3,
.u-border-color-3-dark-3.u-input,
.u-border-color-3-dark-3.u-field-input.u-field-input,
.u-separator-color-3-dark-3:after {
  border-color: #333129;
  stroke: #333129;
}
.u-button-style.u-border-color-3-dark-3 {
  border-color: #333129 !important;
  color: #333129 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-3:hover,
.u-button-style.u-border-color-3-dark-3:focus {
  border-color: transparent !important;
  color: #2e2c25 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-3:hover,
.u-border-hover-color-3-dark-3:focus,
.u-border-active-color-3-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-color-3-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-3,
a.u-button-style.u-border-hover-color-3-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-3,
input.u-field-input.u-field-input.u-border-active-color-3-dark-3:checked {
  color: #333129 !important;
  border-color: #333129 !important;
}
.u-link.u-border-color-3-dark-3[class*="u-border-"] {
  border-color: #333129 !important;
}
.u-link.u-border-color-3-dark-3[class*="u-border-"]:hover {
  border-color: #2e2c25 !important;
}
.u-border-color-3-dark-2,
.u-border-color-3-dark-2.u-input,
.u-border-color-3-dark-2.u-field-input.u-field-input,
.u-separator-color-3-dark-2:after {
  border-color: #72683f;
  stroke: #72683f;
}
.u-button-style.u-border-color-3-dark-2 {
  border-color: #72683f !important;
  color: #72683f !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-2:hover,
.u-button-style.u-border-color-3-dark-2:focus {
  border-color: transparent !important;
  color: #675e39 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-2:hover,
.u-border-hover-color-3-dark-2:focus,
.u-border-active-color-3-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-color-3-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-2,
a.u-button-style.u-border-hover-color-3-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-2,
input.u-field-input.u-field-input.u-border-active-color-3-dark-2:checked {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-link.u-border-color-3-dark-2[class*="u-border-"] {
  border-color: #72683f !important;
}
.u-link.u-border-color-3-dark-2[class*="u-border-"]:hover {
  border-color: #675e39 !important;
}
.u-border-color-3-dark-1,
.u-border-color-3-dark-1.u-input,
.u-border-color-3-dark-1.u-field-input.u-field-input,
.u-separator-color-3-dark-1:after {
  border-color: #b29a36;
  stroke: #b29a36;
}
.u-button-style.u-border-color-3-dark-1 {
  border-color: #b29a36 !important;
  color: #b29a36 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-dark-1:hover,
.u-button-style.u-border-color-3-dark-1:focus {
  border-color: transparent !important;
  color: #a08b31 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-dark-1:hover,
.u-border-hover-color-3-dark-1:focus,
.u-border-active-color-3-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-color-3-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-3-dark-1,
a.u-button-style.u-border-hover-color-3-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-3-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-dark-1,
input.u-field-input.u-field-input.u-border-active-color-3-dark-1:checked {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-link.u-border-color-3-dark-1[class*="u-border-"] {
  border-color: #b29a36 !important;
}
.u-link.u-border-color-3-dark-1[class*="u-border-"]:hover {
  border-color: #a08b31 !important;
}
.u-border-color-3,
.u-border-color-3.u-input,
.u-border-color-3.u-field-input.u-field-input,
.u-separator-color-3:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-color-3 {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3:hover,
.u-button-style.u-border-color-3:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-color-3:hover,
.u-border-hover-color-3:focus,
.u-border-active-color-3.u-active.u-active,
a.u-button-style.u-border-hover-color-3:hover,
a.u-button-style:hover > .u-border-hover-color-3,
a.u-button-style.u-border-hover-color-3:focus,
a.u-button-style.u-button-style.u-border-active-color-3:active,
a.u-button-style.u-button-style.u-border-active-color-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3,
input.u-field-input.u-field-input.u-border-active-color-3:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-color-3-light-1,
.u-border-color-3-light-1.u-input,
.u-border-color-3-light-1.u-field-input.u-field-input,
.u-separator-color-3-light-1:after {
  border-color: #f5d654;
  stroke: #f5d654;
}
.u-button-style.u-border-color-3-light-1 {
  border-color: #f5d654 !important;
  color: #f5d654 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-1:hover,
.u-button-style.u-border-color-3-light-1:focus {
  border-color: transparent !important;
  color: #f3cf35 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-1:hover,
.u-border-hover-color-3-light-1:focus,
.u-border-active-color-3-light-1.u-active.u-active,
a.u-button-style.u-border-hover-color-3-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-1,
a.u-button-style.u-border-hover-color-3-light-1:focus,
a.u-button-style.u-button-style.u-border-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-1,
input.u-field-input.u-field-input.u-border-active-color-3-light-1:checked {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-link.u-border-color-3-light-1[class*="u-border-"] {
  border-color: #f5d654 !important;
}
.u-link.u-border-color-3-light-1[class*="u-border-"]:hover {
  border-color: #f3cf35 !important;
}
.u-border-color-3-light-2,
.u-border-color-3-light-2.u-input,
.u-border-color-3-light-2.u-field-input.u-field-input,
.u-separator-color-3-light-2:after {
  border-color: #f9e79b;
  stroke: #f9e79b;
}
.u-button-style.u-border-color-3-light-2 {
  border-color: #f9e79b !important;
  color: #f9e79b !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-2:hover,
.u-button-style.u-border-color-3-light-2:focus {
  border-color: transparent !important;
  color: #f7de75 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-2:hover,
.u-border-hover-color-3-light-2:focus,
.u-border-active-color-3-light-2.u-active.u-active,
a.u-button-style.u-border-hover-color-3-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-2,
a.u-button-style.u-border-hover-color-3-light-2:focus,
a.u-button-style.u-button-style.u-border-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-2,
input.u-field-input.u-field-input.u-border-active-color-3-light-2:checked {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-link.u-border-color-3-light-2[class*="u-border-"] {
  border-color: #f9e79b !important;
}
.u-link.u-border-color-3-light-2[class*="u-border-"]:hover {
  border-color: #f7de75 !important;
}
.u-border-color-3-light-3,
.u-border-color-3-light-3.u-input,
.u-border-color-3-light-3.u-field-input.u-field-input,
.u-separator-color-3-light-3:after {
  border-color: #fef9e6;
  stroke: #fef9e6;
}
.u-button-style.u-border-color-3-light-3 {
  border-color: #fef9e6 !important;
  color: #fef9e6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-light-3:hover,
.u-button-style.u-border-color-3-light-3:focus {
  border-color: transparent !important;
  color: #fceeb7 !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-light-3:hover,
.u-border-hover-color-3-light-3:focus,
.u-border-active-color-3-light-3.u-active.u-active,
a.u-button-style.u-border-hover-color-3-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-3-light-3,
a.u-button-style.u-border-hover-color-3-light-3:focus,
a.u-button-style.u-button-style.u-border-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-3-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-light-3,
input.u-field-input.u-field-input.u-border-active-color-3-light-3:checked {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-link.u-border-color-3-light-3[class*="u-border-"] {
  border-color: #fef9e6 !important;
}
.u-link.u-border-color-3-light-3[class*="u-border-"]:hover {
  border-color: #fceeb7 !important;
}
.u-border-color-3-base,
.u-border-color-3-base.u-input,
.u-border-color-3-base.u-field-input.u-field-input,
.u-separator-color-3-base:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-color-3-base {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-3-base:hover,
.u-button-style.u-border-color-3-base:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-color-3-base:hover,
.u-border-hover-color-3-base:focus,
.u-border-active-color-3-base.u-active.u-active,
a.u-button-style.u-border-hover-color-3-base:hover,
a.u-button-style:hover > .u-border-hover-color-3-base,
a.u-button-style.u-border-hover-color-3-base:focus,
a.u-button-style.u-button-style.u-border-active-color-3-base:active,
a.u-button-style.u-button-style.u-border-active-color-3-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-3-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-3-base,
input.u-field-input.u-field-input.u-border-active-color-3-base:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3-base[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-color-3-base[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-color-4-dark-3,
.u-border-color-4-dark-3.u-input,
.u-border-color-4-dark-3.u-field-input.u-field-input,
.u-separator-color-4-dark-3:after {
  border-color: #293332;
  stroke: #293332;
}
.u-button-style.u-border-color-4-dark-3 {
  border-color: #293332 !important;
  color: #293332 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-3:hover,
.u-button-style.u-border-color-4-dark-3:focus {
  border-color: transparent !important;
  color: #252e2d !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-3:hover,
.u-border-hover-color-4-dark-3:focus,
.u-border-active-color-4-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-color-4-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-3,
a.u-button-style.u-border-hover-color-4-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-3,
input.u-field-input.u-field-input.u-border-active-color-4-dark-3:checked {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-link.u-border-color-4-dark-3[class*="u-border-"] {
  border-color: #293332 !important;
}
.u-link.u-border-color-4-dark-3[class*="u-border-"]:hover {
  border-color: #252e2d !important;
}
.u-border-color-4-dark-2,
.u-border-color-4-dark-2.u-input,
.u-border-color-4-dark-2.u-field-input.u-field-input,
.u-separator-color-4-dark-2:after {
  border-color: #41807c;
  stroke: #41807c;
}
.u-button-style.u-border-color-4-dark-2 {
  border-color: #41807c !important;
  color: #41807c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-2:hover,
.u-button-style.u-border-color-4-dark-2:focus {
  border-color: transparent !important;
  color: #3a7370 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-2:hover,
.u-border-hover-color-4-dark-2:focus,
.u-border-active-color-4-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-color-4-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-2,
a.u-button-style.u-border-hover-color-4-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-2,
input.u-field-input.u-field-input.u-border-active-color-4-dark-2:checked {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-link.u-border-color-4-dark-2[class*="u-border-"] {
  border-color: #41807c !important;
}
.u-link.u-border-color-4-dark-2[class*="u-border-"]:hover {
  border-color: #3a7370 !important;
}
.u-border-color-4-dark-1,
.u-border-color-4-dark-1.u-input,
.u-border-color-4-dark-1.u-field-input.u-field-input,
.u-separator-color-4-dark-1:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-color-4-dark-1 {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-dark-1:hover,
.u-button-style.u-border-color-4-dark-1:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-dark-1:hover,
.u-border-hover-color-4-dark-1:focus,
.u-border-active-color-4-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-color-4-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-4-dark-1,
a.u-button-style.u-border-hover-color-4-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-4-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-dark-1,
input.u-field-input.u-field-input.u-border-active-color-4-dark-1:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-dark-1[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-dark-1[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-color-4,
.u-border-color-4.u-input,
.u-border-color-4.u-field-input.u-field-input,
.u-separator-color-4:after {
  border-color: #3be8e0;
  stroke: #3be8e0;
}
.u-button-style.u-border-color-4 {
  border-color: #3be8e0 !important;
  color: #3be8e0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4:hover,
.u-button-style.u-border-color-4:focus {
  border-color: transparent !important;
  color: #21e5dc !important;
  background-color: transparent !important;
}
.u-border-hover-color-4:hover,
.u-border-hover-color-4:focus,
.u-border-active-color-4.u-active.u-active,
a.u-button-style.u-border-hover-color-4:hover,
a.u-button-style:hover > .u-border-hover-color-4,
a.u-button-style.u-border-hover-color-4:focus,
a.u-button-style.u-button-style.u-border-active-color-4:active,
a.u-button-style.u-button-style.u-border-active-color-4.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4,
li.active > a.u-button-style.u-button-style.u-border-active-color-4,
input.u-field-input.u-field-input.u-border-active-color-4:checked {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-link.u-border-color-4[class*="u-border-"] {
  border-color: #3be8e0 !important;
}
.u-link.u-border-color-4[class*="u-border-"]:hover {
  border-color: #21e5dc !important;
}
.u-border-color-4-light-1,
.u-border-color-4-light-1.u-input,
.u-border-color-4-light-1.u-field-input.u-field-input,
.u-separator-color-4-light-1:after {
  border-color: #72efe9;
  stroke: #72efe9;
}
.u-button-style.u-border-color-4-light-1 {
  border-color: #72efe9 !important;
  color: #72efe9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-1:hover,
.u-button-style.u-border-color-4-light-1:focus {
  border-color: transparent !important;
  color: #52ebe4 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-1:hover,
.u-border-hover-color-4-light-1:focus,
.u-border-active-color-4-light-1.u-active.u-active,
a.u-button-style.u-border-hover-color-4-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-1,
a.u-button-style.u-border-hover-color-4-light-1:focus,
a.u-button-style.u-button-style.u-border-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-1,
input.u-field-input.u-field-input.u-border-active-color-4-light-1:checked {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-link.u-border-color-4-light-1[class*="u-border-"] {
  border-color: #72efe9 !important;
}
.u-link.u-border-color-4-light-1[class*="u-border-"]:hover {
  border-color: #52ebe4 !important;
}
.u-border-color-4-light-2,
.u-border-color-4-light-2.u-input,
.u-border-color-4-light-2.u-field-input.u-field-input,
.u-separator-color-4-light-2:after {
  border-color: #adf6f2;
  stroke: #adf6f2;
}
.u-button-style.u-border-color-4-light-2 {
  border-color: #adf6f2 !important;
  color: #adf6f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-2:hover,
.u-button-style.u-border-color-4-light-2:focus {
  border-color: transparent !important;
  color: #87f2ec !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-2:hover,
.u-border-hover-color-4-light-2:focus,
.u-border-active-color-4-light-2.u-active.u-active,
a.u-button-style.u-border-hover-color-4-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-2,
a.u-button-style.u-border-hover-color-4-light-2:focus,
a.u-button-style.u-button-style.u-border-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-2,
input.u-field-input.u-field-input.u-border-active-color-4-light-2:checked {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-link.u-border-color-4-light-2[class*="u-border-"] {
  border-color: #adf6f2 !important;
}
.u-link.u-border-color-4-light-2[class*="u-border-"]:hover {
  border-color: #87f2ec !important;
}
.u-border-color-4-light-3,
.u-border-color-4-light-3.u-input,
.u-border-color-4-light-3.u-field-input.u-field-input,
.u-separator-color-4-light-3:after {
  border-color: #eafdfc;
  stroke: #eafdfc;
}
.u-button-style.u-border-color-4-light-3 {
  border-color: #eafdfc !important;
  color: #eafdfc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-light-3:hover,
.u-button-style.u-border-color-4-light-3:focus {
  border-color: transparent !important;
  color: #bef9f6 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-light-3:hover,
.u-border-hover-color-4-light-3:focus,
.u-border-active-color-4-light-3.u-active.u-active,
a.u-button-style.u-border-hover-color-4-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-4-light-3,
a.u-button-style.u-border-hover-color-4-light-3:focus,
a.u-button-style.u-button-style.u-border-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-4-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-light-3,
input.u-field-input.u-field-input.u-border-active-color-4-light-3:checked {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-link.u-border-color-4-light-3[class*="u-border-"] {
  border-color: #eafdfc !important;
}
.u-link.u-border-color-4-light-3[class*="u-border-"]:hover {
  border-color: #bef9f6 !important;
}
.u-border-color-4-base,
.u-border-color-4-base.u-input,
.u-border-color-4-base.u-field-input.u-field-input,
.u-separator-color-4-base:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-color-4-base {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-4-base:hover,
.u-button-style.u-border-color-4-base:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-color-4-base:hover,
.u-border-hover-color-4-base:focus,
.u-border-active-color-4-base.u-active.u-active,
a.u-button-style.u-border-hover-color-4-base:hover,
a.u-button-style:hover > .u-border-hover-color-4-base,
a.u-button-style.u-border-hover-color-4-base:focus,
a.u-button-style.u-button-style.u-border-active-color-4-base:active,
a.u-button-style.u-button-style.u-border-active-color-4-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-4-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-4-base,
input.u-field-input.u-field-input.u-border-active-color-4-base:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-base[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-color-4-base[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-color-5-dark-3,
.u-border-color-5-dark-3.u-input,
.u-border-color-5-dark-3.u-field-input.u-field-input,
.u-separator-color-5-dark-3:after {
  border-color: #292d33;
  stroke: #292d33;
}
.u-button-style.u-border-color-5-dark-3 {
  border-color: #292d33 !important;
  color: #292d33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-3:hover,
.u-button-style.u-border-color-5-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-3:hover,
.u-border-hover-color-5-dark-3:focus,
.u-border-active-color-5-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-color-5-dark-3:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-3,
a.u-button-style.u-border-hover-color-5-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-3,
input.u-field-input.u-field-input.u-border-active-color-5-dark-3:checked {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-link.u-border-color-5-dark-3[class*="u-border-"] {
  border-color: #292d33 !important;
}
.u-link.u-border-color-5-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-color-5-dark-2,
.u-border-color-5-dark-2.u-input,
.u-border-color-5-dark-2.u-field-input.u-field-input,
.u-separator-color-5-dark-2:after {
  border-color: #555c66;
  stroke: #555c66;
}
.u-button-style.u-border-color-5-dark-2 {
  border-color: #555c66 !important;
  color: #555c66 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-2:hover,
.u-button-style.u-border-color-5-dark-2:focus {
  border-color: transparent !important;
  color: #4d535c !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-2:hover,
.u-border-hover-color-5-dark-2:focus,
.u-border-active-color-5-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-color-5-dark-2:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-2,
a.u-button-style.u-border-hover-color-5-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-2,
input.u-field-input.u-field-input.u-border-active-color-5-dark-2:checked {
  color: #555c66 !important;
  border-color: #555c66 !important;
}
.u-link.u-border-color-5-dark-2[class*="u-border-"] {
  border-color: #555c66 !important;
}
.u-link.u-border-color-5-dark-2[class*="u-border-"]:hover {
  border-color: #4d535c !important;
}
.u-border-color-5-dark-1,
.u-border-color-5-dark-1.u-input,
.u-border-color-5-dark-1.u-field-input.u-field-input,
.u-separator-color-5-dark-1:after {
  border-color: #858e99;
  stroke: #858e99;
}
.u-button-style.u-border-color-5-dark-1 {
  border-color: #858e99 !important;
  color: #858e99 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-dark-1:hover,
.u-button-style.u-border-color-5-dark-1:focus {
  border-color: transparent !important;
  color: #75808c !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-dark-1:hover,
.u-border-hover-color-5-dark-1:focus,
.u-border-active-color-5-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-color-5-dark-1:hover,
a.u-button-style:hover > .u-border-hover-color-5-dark-1,
a.u-button-style.u-border-hover-color-5-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-border-active-color-5-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-dark-1,
input.u-field-input.u-field-input.u-border-active-color-5-dark-1:checked {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-link.u-border-color-5-dark-1[class*="u-border-"] {
  border-color: #858e99 !important;
}
.u-link.u-border-color-5-dark-1[class*="u-border-"]:hover {
  border-color: #75808c !important;
}
.u-border-color-5,
.u-border-color-5.u-input,
.u-border-color-5.u-field-input.u-field-input,
.u-separator-color-5:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-color-5 {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5:hover,
.u-button-style.u-border-color-5:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-color-5:hover,
.u-border-hover-color-5:focus,
.u-border-active-color-5.u-active.u-active,
a.u-button-style.u-border-hover-color-5:hover,
a.u-button-style:hover > .u-border-hover-color-5,
a.u-button-style.u-border-hover-color-5:focus,
a.u-button-style.u-button-style.u-border-active-color-5:active,
a.u-button-style.u-button-style.u-border-active-color-5.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5,
li.active > a.u-button-style.u-button-style.u-border-active-color-5,
input.u-field-input.u-field-input.u-border-active-color-5:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-color-5-light-1,
.u-border-color-5-light-1.u-input,
.u-border-color-5-light-1.u-field-input.u-field-input,
.u-separator-color-5-light-1:after {
  border-color: #ccd3db;
  stroke: #ccd3db;
}
.u-button-style.u-border-color-5-light-1 {
  border-color: #ccd3db !important;
  color: #ccd3db !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-1:hover,
.u-button-style.u-border-color-5-light-1:focus {
  border-color: transparent !important;
  color: #b3bec9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-1:hover,
.u-border-hover-color-5-light-1:focus,
.u-border-active-color-5-light-1.u-active.u-active,
a.u-button-style.u-border-hover-color-5-light-1:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-1,
a.u-button-style.u-border-hover-color-5-light-1:focus,
a.u-button-style.u-button-style.u-border-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-1,
input.u-field-input.u-field-input.u-border-active-color-5-light-1:checked {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-link.u-border-color-5-light-1[class*="u-border-"] {
  border-color: #ccd3db !important;
}
.u-link.u-border-color-5-light-1[class*="u-border-"]:hover {
  border-color: #b3bec9 !important;
}
.u-border-color-5-light-2,
.u-border-color-5-light-2.u-input,
.u-border-color-5-light-2.u-field-input.u-field-input,
.u-separator-color-5-light-2:after {
  border-color: #e0e5eb;
  stroke: #e0e5eb;
}
.u-button-style.u-border-color-5-light-2 {
  border-color: #e0e5eb !important;
  color: #e0e5eb !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-2:hover,
.u-button-style.u-border-color-5-light-2:focus {
  border-color: transparent !important;
  color: #c4ced9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-2:hover,
.u-border-hover-color-5-light-2:focus,
.u-border-active-color-5-light-2.u-active.u-active,
a.u-button-style.u-border-hover-color-5-light-2:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-2,
a.u-button-style.u-border-hover-color-5-light-2:focus,
a.u-button-style.u-button-style.u-border-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-2,
input.u-field-input.u-field-input.u-border-active-color-5-light-2:checked {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-link.u-border-color-5-light-2[class*="u-border-"] {
  border-color: #e0e5eb !important;
}
.u-link.u-border-color-5-light-2[class*="u-border-"]:hover {
  border-color: #c4ced9 !important;
}
.u-border-color-5-light-3,
.u-border-color-5-light-3.u-input,
.u-border-color-5-light-3.u-field-input.u-field-input,
.u-separator-color-5-light-3:after {
  border-color: #f5f7fa;
  stroke: #f5f7fa;
}
.u-button-style.u-border-color-5-light-3 {
  border-color: #f5f7fa !important;
  color: #f5f7fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-light-3:hover,
.u-button-style.u-border-color-5-light-3:focus {
  border-color: transparent !important;
  color: #d4dde9 !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-light-3:hover,
.u-border-hover-color-5-light-3:focus,
.u-border-active-color-5-light-3.u-active.u-active,
a.u-button-style.u-border-hover-color-5-light-3:hover,
a.u-button-style:hover > .u-border-hover-color-5-light-3,
a.u-button-style.u-border-hover-color-5-light-3:focus,
a.u-button-style.u-button-style.u-border-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-border-active-color-5-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-light-3,
input.u-field-input.u-field-input.u-border-active-color-5-light-3:checked {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-link.u-border-color-5-light-3[class*="u-border-"] {
  border-color: #f5f7fa !important;
}
.u-link.u-border-color-5-light-3[class*="u-border-"]:hover {
  border-color: #d4dde9 !important;
}
.u-border-color-5-base,
.u-border-color-5-base.u-input,
.u-border-color-5-base.u-field-input.u-field-input,
.u-separator-color-5-base:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-color-5-base {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-color-5-base:hover,
.u-button-style.u-border-color-5-base:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-color-5-base:hover,
.u-border-hover-color-5-base:focus,
.u-border-active-color-5-base.u-active.u-active,
a.u-button-style.u-border-hover-color-5-base:hover,
a.u-button-style:hover > .u-border-hover-color-5-base,
a.u-button-style.u-border-hover-color-5-base:focus,
a.u-button-style.u-button-style.u-border-active-color-5-base:active,
a.u-button-style.u-button-style.u-border-active-color-5-base.active,
a.u-button-style.u-button-style.active > .u-border-active-color-5-base,
li.active > a.u-button-style.u-button-style.u-border-active-color-5-base,
input.u-field-input.u-field-input.u-border-active-color-5-base:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5-base[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-color-5-base[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-palette-1-dark-3,
.u-border-palette-1-dark-3.u-input,
.u-border-palette-1-dark-3.u-field-input.u-field-input,
.u-separator-palette-1-dark-3:after {
  border-color: #292e33;
  stroke: #292e33;
}
.u-button-style.u-border-palette-1-dark-3 {
  border-color: #292e33 !important;
  color: #292e33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-3:hover,
.u-button-style.u-border-palette-1-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-3:hover,
.u-border-hover-palette-1-dark-3:focus,
.u-border-active-palette-1-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-3,
a.u-button-style.u-border-hover-palette-1-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-3:checked {
  color: #292e33 !important;
  border-color: #292e33 !important;
}
.u-link.u-border-palette-1-dark-3[class*="u-border-"] {
  border-color: #292e33 !important;
}
.u-link.u-border-palette-1-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-palette-1-dark-2,
.u-border-palette-1-dark-2.u-input,
.u-border-palette-1-dark-2.u-field-input.u-field-input,
.u-separator-palette-1-dark-2:after {
  border-color: #425465;
  stroke: #425465;
}
.u-button-style.u-border-palette-1-dark-2 {
  border-color: #425465 !important;
  color: #425465 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-2:hover,
.u-button-style.u-border-palette-1-dark-2:focus {
  border-color: transparent !important;
  color: #3b4c5b !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-2:hover,
.u-border-hover-palette-1-dark-2:focus,
.u-border-active-palette-1-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-2,
a.u-button-style.u-border-hover-palette-1-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-2:checked {
  color: #425465 !important;
  border-color: #425465 !important;
}
.u-link.u-border-palette-1-dark-2[class*="u-border-"] {
  border-color: #425465 !important;
}
.u-link.u-border-palette-1-dark-2[class*="u-border-"]:hover {
  border-color: #3b4c5b !important;
}
.u-border-palette-1-dark-1,
.u-border-palette-1-dark-1.u-input,
.u-border-palette-1-dark-1.u-field-input.u-field-input,
.u-separator-palette-1-dark-1:after {
  border-color: #4c7397;
  stroke: #4c7397;
}
.u-button-style.u-border-palette-1-dark-1 {
  border-color: #4c7397 !important;
  color: #4c7397 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-dark-1:hover,
.u-button-style.u-border-palette-1-dark-1:focus {
  border-color: transparent !important;
  color: #446888 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-dark-1:hover,
.u-border-hover-palette-1-dark-1:focus,
.u-border-active-palette-1-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1-dark-1,
a.u-button-style.u-border-hover-palette-1-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-1-dark-1:checked {
  color: #4c7397 !important;
  border-color: #4c7397 !important;
}
.u-link.u-border-palette-1-dark-1[class*="u-border-"] {
  border-color: #4c7397 !important;
}
.u-link.u-border-palette-1-dark-1[class*="u-border-"]:hover {
  border-color: #446888 !important;
}
.u-border-palette-1,
.u-border-palette-1.u-input,
.u-border-palette-1.u-field-input.u-field-input,
.u-separator-palette-1:after {
  border-color: #478ac9;
  stroke: #478ac9;
}
.u-button-style.u-border-palette-1 {
  border-color: #478ac9 !important;
  color: #478ac9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1:hover,
.u-button-style.u-border-palette-1:focus {
  border-color: transparent !important;
  color: #387cbd !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1:hover,
.u-border-hover-palette-1:focus,
.u-border-active-palette-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1,
a.u-button-style.u-border-hover-palette-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1,
input.u-field-input.u-field-input.u-border-active-palette-1:checked {
  color: #478ac9 !important;
  border-color: #478ac9 !important;
}
.u-link.u-border-palette-1[class*="u-border-"] {
  border-color: #478ac9 !important;
}
.u-link.u-border-palette-1[class*="u-border-"]:hover {
  border-color: #387cbd !important;
}
.u-border-palette-1-light-1,
.u-border-palette-1-light-1.u-input,
.u-border-palette-1-light-1.u-field-input.u-field-input,
.u-separator-palette-1-light-1:after {
  border-color: #77aad9;
  stroke: #77aad9;
}
.u-button-style.u-border-palette-1-light-1 {
  border-color: #77aad9 !important;
  color: #77aad9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-1:hover,
.u-button-style.u-border-palette-1-light-1:focus {
  border-color: transparent !important;
  color: #5d9ad2 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-1:hover,
.u-border-hover-palette-1-light-1:focus,
.u-border-active-palette-1-light-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-1,
a.u-button-style.u-border-hover-palette-1-light-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-1,
input.u-field-input.u-field-input.u-border-active-palette-1-light-1:checked {
  color: #77aad9 !important;
  border-color: #77aad9 !important;
}
.u-link.u-border-palette-1-light-1[class*="u-border-"] {
  border-color: #77aad9 !important;
}
.u-link.u-border-palette-1-light-1[class*="u-border-"]:hover {
  border-color: #5d9ad2 !important;
}
.u-border-palette-1-light-2,
.u-border-palette-1-light-2.u-input,
.u-border-palette-1-light-2.u-field-input.u-field-input,
.u-separator-palette-1-light-2:after {
  border-color: #adcce9;
  stroke: #adcce9;
}
.u-button-style.u-border-palette-1-light-2 {
  border-color: #adcce9 !important;
  color: #adcce9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-2:hover,
.u-button-style.u-border-palette-1-light-2:focus {
  border-color: transparent !important;
  color: #8db8e0 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-2:hover,
.u-border-hover-palette-1-light-2:focus,
.u-border-active-palette-1-light-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-2,
a.u-button-style.u-border-hover-palette-1-light-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-2,
input.u-field-input.u-field-input.u-border-active-palette-1-light-2:checked {
  color: #adcce9 !important;
  border-color: #adcce9 !important;
}
.u-link.u-border-palette-1-light-2[class*="u-border-"] {
  border-color: #adcce9 !important;
}
.u-link.u-border-palette-1-light-2[class*="u-border-"]:hover {
  border-color: #8db8e0 !important;
}
.u-border-palette-1-light-3,
.u-border-palette-1-light-3.u-input,
.u-border-palette-1-light-3.u-field-input.u-field-input,
.u-separator-palette-1-light-3:after {
  border-color: #e9f2fa;
  stroke: #e9f2fa;
}
.u-button-style.u-border-palette-1-light-3 {
  border-color: #e9f2fa !important;
  color: #e9f2fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-light-3:hover,
.u-button-style.u-border-palette-1-light-3:focus {
  border-color: transparent !important;
  color: #c2dbf1 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-light-3:hover,
.u-border-hover-palette-1-light-3:focus,
.u-border-active-palette-1-light-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-1-light-3,
a.u-button-style.u-border-hover-palette-1-light-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-1-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-light-3,
input.u-field-input.u-field-input.u-border-active-palette-1-light-3:checked {
  color: #e9f2fa !important;
  border-color: #e9f2fa !important;
}
.u-link.u-border-palette-1-light-3[class*="u-border-"] {
  border-color: #e9f2fa !important;
}
.u-link.u-border-palette-1-light-3[class*="u-border-"]:hover {
  border-color: #c2dbf1 !important;
}
.u-border-palette-1-base,
.u-border-palette-1-base.u-input,
.u-border-palette-1-base.u-field-input.u-field-input,
.u-separator-palette-1-base:after {
  border-color: #478ac9;
  stroke: #478ac9;
}
.u-button-style.u-border-palette-1-base {
  border-color: #478ac9 !important;
  color: #478ac9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-1-base:hover,
.u-button-style.u-border-palette-1-base:focus {
  border-color: transparent !important;
  color: #387cbd !important;
  background-color: transparent !important;
}
.u-border-hover-palette-1-base:hover,
.u-border-hover-palette-1-base:focus,
.u-border-active-palette-1-base.u-active.u-active,
a.u-button-style.u-border-hover-palette-1-base:hover,
a.u-button-style:hover > .u-border-hover-palette-1-base,
a.u-button-style.u-border-hover-palette-1-base:focus,
a.u-button-style.u-button-style.u-border-active-palette-1-base:active,
a.u-button-style.u-button-style.u-border-active-palette-1-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-1-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-1-base,
input.u-field-input.u-field-input.u-border-active-palette-1-base:checked {
  color: #478ac9 !important;
  border-color: #478ac9 !important;
}
.u-link.u-border-palette-1-base[class*="u-border-"] {
  border-color: #478ac9 !important;
}
.u-link.u-border-palette-1-base[class*="u-border-"]:hover {
  border-color: #387cbd !important;
}
.u-border-palette-2-dark-3,
.u-border-palette-2-dark-3.u-input,
.u-border-palette-2-dark-3.u-field-input.u-field-input,
.u-separator-palette-2-dark-3:after {
  border-color: #332929;
  stroke: #332929;
}
.u-button-style.u-border-palette-2-dark-3 {
  border-color: #332929 !important;
  color: #332929 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-3:hover,
.u-button-style.u-border-palette-2-dark-3:focus {
  border-color: transparent !important;
  color: #2e2525 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-3:hover,
.u-border-hover-palette-2-dark-3:focus,
.u-border-active-palette-2-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-3,
a.u-button-style.u-border-hover-palette-2-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-3:checked {
  color: #332929 !important;
  border-color: #332929 !important;
}
.u-link.u-border-palette-2-dark-3[class*="u-border-"] {
  border-color: #332929 !important;
}
.u-link.u-border-palette-2-dark-3[class*="u-border-"]:hover {
  border-color: #2e2525 !important;
}
.u-border-palette-2-dark-2,
.u-border-palette-2-dark-2.u-input,
.u-border-palette-2-dark-2.u-field-input.u-field-input,
.u-separator-palette-2-dark-2:after {
  border-color: #744547;
  stroke: #744547;
}
.u-button-style.u-border-palette-2-dark-2 {
  border-color: #744547 !important;
  color: #744547 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-2:hover,
.u-button-style.u-border-palette-2-dark-2:focus {
  border-color: transparent !important;
  color: #683e40 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-2:hover,
.u-border-hover-palette-2-dark-2:focus,
.u-border-active-palette-2-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-2,
a.u-button-style.u-border-hover-palette-2-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-2:checked {
  color: #744547 !important;
  border-color: #744547 !important;
}
.u-link.u-border-palette-2-dark-2[class*="u-border-"] {
  border-color: #744547 !important;
}
.u-link.u-border-palette-2-dark-2[class*="u-border-"]:hover {
  border-color: #683e40 !important;
}
.u-border-palette-2-dark-1,
.u-border-palette-2-dark-1.u-input,
.u-border-palette-2-dark-1.u-field-input.u-field-input,
.u-separator-palette-2-dark-1:after {
  border-color: #b6474c;
  stroke: #b6474c;
}
.u-button-style.u-border-palette-2-dark-1 {
  border-color: #b6474c !important;
  color: #b6474c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-dark-1:hover,
.u-button-style.u-border-palette-2-dark-1:focus {
  border-color: transparent !important;
  color: #a44044 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-dark-1:hover,
.u-border-hover-palette-2-dark-1:focus,
.u-border-active-palette-2-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-2-dark-1,
a.u-button-style.u-border-hover-palette-2-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-2-dark-1:checked {
  color: #b6474c !important;
  border-color: #b6474c !important;
}
.u-link.u-border-palette-2-dark-1[class*="u-border-"] {
  border-color: #b6474c !important;
}
.u-link.u-border-palette-2-dark-1[class*="u-border-"]:hover {
  border-color: #a44044 !important;
}
.u-border-palette-2,
.u-border-palette-2.u-input,
.u-border-palette-2.u-field-input.u-field-input,
.u-separator-palette-2:after {
  border-color: #f72e37;
  stroke: #f72e37;
}
.u-button-style.u-border-palette-2 {
  border-color: #f72e37 !important;
  color: #f72e37 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2:hover,
.u-button-style.u-border-palette-2:focus {
  border-color: transparent !important;
  color: #f6121c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2:hover,
.u-border-hover-palette-2:focus,
.u-border-active-palette-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2,
a.u-button-style.u-border-hover-palette-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2,
input.u-field-input.u-field-input.u-border-active-palette-2:checked {
  color: #f72e37 !important;
  border-color: #f72e37 !important;
}
.u-link.u-border-palette-2[class*="u-border-"] {
  border-color: #f72e37 !important;
}
.u-link.u-border-palette-2[class*="u-border-"]:hover {
  border-color: #f6121c !important;
}
.u-border-palette-2-light-1,
.u-border-palette-2-light-1.u-input,
.u-border-palette-2-light-1.u-field-input.u-field-input,
.u-separator-palette-2-light-1:after {
  border-color: #f96b72;
  stroke: #f96b72;
}
.u-button-style.u-border-palette-2-light-1 {
  border-color: #f96b72 !important;
  color: #f96b72 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-1:hover,
.u-button-style.u-border-palette-2-light-1:focus {
  border-color: transparent !important;
  color: #f84951 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-1:hover,
.u-border-hover-palette-2-light-1:focus,
.u-border-active-palette-2-light-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-1,
a.u-button-style.u-border-hover-palette-2-light-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-1,
input.u-field-input.u-field-input.u-border-active-palette-2-light-1:checked {
  color: #f96b72 !important;
  border-color: #f96b72 !important;
}
.u-link.u-border-palette-2-light-1[class*="u-border-"] {
  border-color: #f96b72 !important;
}
.u-link.u-border-palette-2-light-1[class*="u-border-"]:hover {
  border-color: #f84951 !important;
}
.u-border-palette-2-light-2,
.u-border-palette-2-light-2.u-input,
.u-border-palette-2-light-2.u-field-input.u-field-input,
.u-separator-palette-2-light-2:after {
  border-color: #fcaaae;
  stroke: #fcaaae;
}
.u-button-style.u-border-palette-2-light-2 {
  border-color: #fcaaae !important;
  color: #fcaaae !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-2:hover,
.u-button-style.u-border-palette-2-light-2:focus {
  border-color: transparent !important;
  color: #fb8187 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-2:hover,
.u-border-hover-palette-2-light-2:focus,
.u-border-active-palette-2-light-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-2,
a.u-button-style.u-border-hover-palette-2-light-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-2,
input.u-field-input.u-field-input.u-border-active-palette-2-light-2:checked {
  color: #fcaaae !important;
  border-color: #fcaaae !important;
}
.u-link.u-border-palette-2-light-2[class*="u-border-"] {
  border-color: #fcaaae !important;
}
.u-link.u-border-palette-2-light-2[class*="u-border-"]:hover {
  border-color: #fb8187 !important;
}
.u-border-palette-2-light-3,
.u-border-palette-2-light-3.u-input,
.u-border-palette-2-light-3.u-field-input.u-field-input,
.u-separator-palette-2-light-3:after {
  border-color: #feeaea;
  stroke: #feeaea;
}
.u-button-style.u-border-palette-2-light-3 {
  border-color: #feeaea !important;
  color: #feeaea !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-light-3:hover,
.u-button-style.u-border-palette-2-light-3:focus {
  border-color: transparent !important;
  color: #fcbbbb !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-light-3:hover,
.u-border-hover-palette-2-light-3:focus,
.u-border-active-palette-2-light-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-2-light-3,
a.u-button-style.u-border-hover-palette-2-light-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-2-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-light-3,
input.u-field-input.u-field-input.u-border-active-palette-2-light-3:checked {
  color: #feeaea !important;
  border-color: #feeaea !important;
}
.u-link.u-border-palette-2-light-3[class*="u-border-"] {
  border-color: #feeaea !important;
}
.u-link.u-border-palette-2-light-3[class*="u-border-"]:hover {
  border-color: #fcbbbb !important;
}
.u-border-palette-2-base,
.u-border-palette-2-base.u-input,
.u-border-palette-2-base.u-field-input.u-field-input,
.u-separator-palette-2-base:after {
  border-color: #f72e37;
  stroke: #f72e37;
}
.u-button-style.u-border-palette-2-base {
  border-color: #f72e37 !important;
  color: #f72e37 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-2-base:hover,
.u-button-style.u-border-palette-2-base:focus {
  border-color: transparent !important;
  color: #f6121c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-2-base:hover,
.u-border-hover-palette-2-base:focus,
.u-border-active-palette-2-base.u-active.u-active,
a.u-button-style.u-border-hover-palette-2-base:hover,
a.u-button-style:hover > .u-border-hover-palette-2-base,
a.u-button-style.u-border-hover-palette-2-base:focus,
a.u-button-style.u-button-style.u-border-active-palette-2-base:active,
a.u-button-style.u-button-style.u-border-active-palette-2-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-2-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-2-base,
input.u-field-input.u-field-input.u-border-active-palette-2-base:checked {
  color: #f72e37 !important;
  border-color: #f72e37 !important;
}
.u-link.u-border-palette-2-base[class*="u-border-"] {
  border-color: #f72e37 !important;
}
.u-link.u-border-palette-2-base[class*="u-border-"]:hover {
  border-color: #f6121c !important;
}
.u-border-palette-3-dark-3,
.u-border-palette-3-dark-3.u-input,
.u-border-palette-3-dark-3.u-field-input.u-field-input,
.u-separator-palette-3-dark-3:after {
  border-color: #333129;
  stroke: #333129;
}
.u-button-style.u-border-palette-3-dark-3 {
  border-color: #333129 !important;
  color: #333129 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-3:hover,
.u-button-style.u-border-palette-3-dark-3:focus {
  border-color: transparent !important;
  color: #2e2c25 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-3:hover,
.u-border-hover-palette-3-dark-3:focus,
.u-border-active-palette-3-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-3,
a.u-button-style.u-border-hover-palette-3-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-3:checked {
  color: #333129 !important;
  border-color: #333129 !important;
}
.u-link.u-border-palette-3-dark-3[class*="u-border-"] {
  border-color: #333129 !important;
}
.u-link.u-border-palette-3-dark-3[class*="u-border-"]:hover {
  border-color: #2e2c25 !important;
}
.u-border-palette-3-dark-2,
.u-border-palette-3-dark-2.u-input,
.u-border-palette-3-dark-2.u-field-input.u-field-input,
.u-separator-palette-3-dark-2:after {
  border-color: #72683f;
  stroke: #72683f;
}
.u-button-style.u-border-palette-3-dark-2 {
  border-color: #72683f !important;
  color: #72683f !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-2:hover,
.u-button-style.u-border-palette-3-dark-2:focus {
  border-color: transparent !important;
  color: #675e39 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-2:hover,
.u-border-hover-palette-3-dark-2:focus,
.u-border-active-palette-3-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-2,
a.u-button-style.u-border-hover-palette-3-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-2:checked {
  color: #72683f !important;
  border-color: #72683f !important;
}
.u-link.u-border-palette-3-dark-2[class*="u-border-"] {
  border-color: #72683f !important;
}
.u-link.u-border-palette-3-dark-2[class*="u-border-"]:hover {
  border-color: #675e39 !important;
}
.u-border-palette-3-dark-1,
.u-border-palette-3-dark-1.u-input,
.u-border-palette-3-dark-1.u-field-input.u-field-input,
.u-separator-palette-3-dark-1:after {
  border-color: #b29a36;
  stroke: #b29a36;
}
.u-button-style.u-border-palette-3-dark-1 {
  border-color: #b29a36 !important;
  color: #b29a36 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-dark-1:hover,
.u-button-style.u-border-palette-3-dark-1:focus {
  border-color: transparent !important;
  color: #a08b31 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-dark-1:hover,
.u-border-hover-palette-3-dark-1:focus,
.u-border-active-palette-3-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-3-dark-1,
a.u-button-style.u-border-hover-palette-3-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-3-dark-1:checked {
  color: #b29a36 !important;
  border-color: #b29a36 !important;
}
.u-link.u-border-palette-3-dark-1[class*="u-border-"] {
  border-color: #b29a36 !important;
}
.u-link.u-border-palette-3-dark-1[class*="u-border-"]:hover {
  border-color: #a08b31 !important;
}
.u-border-palette-3,
.u-border-palette-3.u-input,
.u-border-palette-3.u-field-input.u-field-input,
.u-separator-palette-3:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-palette-3 {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3:hover,
.u-button-style.u-border-palette-3:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3:hover,
.u-border-hover-palette-3:focus,
.u-border-active-palette-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3,
a.u-button-style.u-border-hover-palette-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3,
input.u-field-input.u-field-input.u-border-active-palette-3:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-palette-3-light-1,
.u-border-palette-3-light-1.u-input,
.u-border-palette-3-light-1.u-field-input.u-field-input,
.u-separator-palette-3-light-1:after {
  border-color: #f5d654;
  stroke: #f5d654;
}
.u-button-style.u-border-palette-3-light-1 {
  border-color: #f5d654 !important;
  color: #f5d654 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-1:hover,
.u-button-style.u-border-palette-3-light-1:focus {
  border-color: transparent !important;
  color: #f3cf35 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-1:hover,
.u-border-hover-palette-3-light-1:focus,
.u-border-active-palette-3-light-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-1,
a.u-button-style.u-border-hover-palette-3-light-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-1,
input.u-field-input.u-field-input.u-border-active-palette-3-light-1:checked {
  color: #f5d654 !important;
  border-color: #f5d654 !important;
}
.u-link.u-border-palette-3-light-1[class*="u-border-"] {
  border-color: #f5d654 !important;
}
.u-link.u-border-palette-3-light-1[class*="u-border-"]:hover {
  border-color: #f3cf35 !important;
}
.u-border-palette-3-light-2,
.u-border-palette-3-light-2.u-input,
.u-border-palette-3-light-2.u-field-input.u-field-input,
.u-separator-palette-3-light-2:after {
  border-color: #f9e79b;
  stroke: #f9e79b;
}
.u-button-style.u-border-palette-3-light-2 {
  border-color: #f9e79b !important;
  color: #f9e79b !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-2:hover,
.u-button-style.u-border-palette-3-light-2:focus {
  border-color: transparent !important;
  color: #f7de75 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-2:hover,
.u-border-hover-palette-3-light-2:focus,
.u-border-active-palette-3-light-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-2,
a.u-button-style.u-border-hover-palette-3-light-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-2,
input.u-field-input.u-field-input.u-border-active-palette-3-light-2:checked {
  color: #f9e79b !important;
  border-color: #f9e79b !important;
}
.u-link.u-border-palette-3-light-2[class*="u-border-"] {
  border-color: #f9e79b !important;
}
.u-link.u-border-palette-3-light-2[class*="u-border-"]:hover {
  border-color: #f7de75 !important;
}
.u-border-palette-3-light-3,
.u-border-palette-3-light-3.u-input,
.u-border-palette-3-light-3.u-field-input.u-field-input,
.u-separator-palette-3-light-3:after {
  border-color: #fef9e6;
  stroke: #fef9e6;
}
.u-button-style.u-border-palette-3-light-3 {
  border-color: #fef9e6 !important;
  color: #fef9e6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-light-3:hover,
.u-button-style.u-border-palette-3-light-3:focus {
  border-color: transparent !important;
  color: #fceeb7 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-light-3:hover,
.u-border-hover-palette-3-light-3:focus,
.u-border-active-palette-3-light-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-3-light-3,
a.u-button-style.u-border-hover-palette-3-light-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-3-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-light-3,
input.u-field-input.u-field-input.u-border-active-palette-3-light-3:checked {
  color: #fef9e6 !important;
  border-color: #fef9e6 !important;
}
.u-link.u-border-palette-3-light-3[class*="u-border-"] {
  border-color: #fef9e6 !important;
}
.u-link.u-border-palette-3-light-3[class*="u-border-"]:hover {
  border-color: #fceeb7 !important;
}
.u-border-palette-3-base,
.u-border-palette-3-base.u-input,
.u-border-palette-3-base.u-field-input.u-field-input,
.u-separator-palette-3-base:after {
  border-color: #f1c50e;
  stroke: #f1c50e;
}
.u-button-style.u-border-palette-3-base {
  border-color: #f1c50e !important;
  color: #f1c50e !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-3-base:hover,
.u-button-style.u-border-palette-3-base:focus {
  border-color: transparent !important;
  color: #d9b10d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-3-base:hover,
.u-border-hover-palette-3-base:focus,
.u-border-active-palette-3-base.u-active.u-active,
a.u-button-style.u-border-hover-palette-3-base:hover,
a.u-button-style:hover > .u-border-hover-palette-3-base,
a.u-button-style.u-border-hover-palette-3-base:focus,
a.u-button-style.u-button-style.u-border-active-palette-3-base:active,
a.u-button-style.u-button-style.u-border-active-palette-3-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-3-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-3-base,
input.u-field-input.u-field-input.u-border-active-palette-3-base:checked {
  color: #f1c50e !important;
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3-base[class*="u-border-"] {
  border-color: #f1c50e !important;
}
.u-link.u-border-palette-3-base[class*="u-border-"]:hover {
  border-color: #d9b10d !important;
}
.u-border-palette-4-dark-3,
.u-border-palette-4-dark-3.u-input,
.u-border-palette-4-dark-3.u-field-input.u-field-input,
.u-separator-palette-4-dark-3:after {
  border-color: #293332;
  stroke: #293332;
}
.u-button-style.u-border-palette-4-dark-3 {
  border-color: #293332 !important;
  color: #293332 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-3:hover,
.u-button-style.u-border-palette-4-dark-3:focus {
  border-color: transparent !important;
  color: #252e2d !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-3:hover,
.u-border-hover-palette-4-dark-3:focus,
.u-border-active-palette-4-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-3,
a.u-button-style.u-border-hover-palette-4-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-3:checked {
  color: #293332 !important;
  border-color: #293332 !important;
}
.u-link.u-border-palette-4-dark-3[class*="u-border-"] {
  border-color: #293332 !important;
}
.u-link.u-border-palette-4-dark-3[class*="u-border-"]:hover {
  border-color: #252e2d !important;
}
.u-border-palette-4-dark-2,
.u-border-palette-4-dark-2.u-input,
.u-border-palette-4-dark-2.u-field-input.u-field-input,
.u-separator-palette-4-dark-2:after {
  border-color: #41807c;
  stroke: #41807c;
}
.u-button-style.u-border-palette-4-dark-2 {
  border-color: #41807c !important;
  color: #41807c !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-2:hover,
.u-button-style.u-border-palette-4-dark-2:focus {
  border-color: transparent !important;
  color: #3a7370 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-2:hover,
.u-border-hover-palette-4-dark-2:focus,
.u-border-active-palette-4-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-2,
a.u-button-style.u-border-hover-palette-4-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-2:checked {
  color: #41807c !important;
  border-color: #41807c !important;
}
.u-link.u-border-palette-4-dark-2[class*="u-border-"] {
  border-color: #41807c !important;
}
.u-link.u-border-palette-4-dark-2[class*="u-border-"]:hover {
  border-color: #3a7370 !important;
}
.u-border-palette-4-dark-1,
.u-border-palette-4-dark-1.u-input,
.u-border-palette-4-dark-1.u-field-input.u-field-input,
.u-separator-palette-4-dark-1:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-palette-4-dark-1 {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-dark-1:hover,
.u-button-style.u-border-palette-4-dark-1:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-dark-1:hover,
.u-border-hover-palette-4-dark-1:focus,
.u-border-active-palette-4-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-4-dark-1,
a.u-button-style.u-border-hover-palette-4-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-4-dark-1:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-dark-1[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-dark-1[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-palette-4,
.u-border-palette-4.u-input,
.u-border-palette-4.u-field-input.u-field-input,
.u-separator-palette-4:after {
  border-color: #3be8e0;
  stroke: #3be8e0;
}
.u-button-style.u-border-palette-4 {
  border-color: #3be8e0 !important;
  color: #3be8e0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4:hover,
.u-button-style.u-border-palette-4:focus {
  border-color: transparent !important;
  color: #21e5dc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4:hover,
.u-border-hover-palette-4:focus,
.u-border-active-palette-4.u-active.u-active,
a.u-button-style.u-border-hover-palette-4:hover,
a.u-button-style:hover > .u-border-hover-palette-4,
a.u-button-style.u-border-hover-palette-4:focus,
a.u-button-style.u-button-style.u-border-active-palette-4:active,
a.u-button-style.u-button-style.u-border-active-palette-4.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4,
input.u-field-input.u-field-input.u-border-active-palette-4:checked {
  color: #3be8e0 !important;
  border-color: #3be8e0 !important;
}
.u-link.u-border-palette-4[class*="u-border-"] {
  border-color: #3be8e0 !important;
}
.u-link.u-border-palette-4[class*="u-border-"]:hover {
  border-color: #21e5dc !important;
}
.u-border-palette-4-light-1,
.u-border-palette-4-light-1.u-input,
.u-border-palette-4-light-1.u-field-input.u-field-input,
.u-separator-palette-4-light-1:after {
  border-color: #72efe9;
  stroke: #72efe9;
}
.u-button-style.u-border-palette-4-light-1 {
  border-color: #72efe9 !important;
  color: #72efe9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-1:hover,
.u-button-style.u-border-palette-4-light-1:focus {
  border-color: transparent !important;
  color: #52ebe4 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-1:hover,
.u-border-hover-palette-4-light-1:focus,
.u-border-active-palette-4-light-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-1,
a.u-button-style.u-border-hover-palette-4-light-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-1,
input.u-field-input.u-field-input.u-border-active-palette-4-light-1:checked {
  color: #72efe9 !important;
  border-color: #72efe9 !important;
}
.u-link.u-border-palette-4-light-1[class*="u-border-"] {
  border-color: #72efe9 !important;
}
.u-link.u-border-palette-4-light-1[class*="u-border-"]:hover {
  border-color: #52ebe4 !important;
}
.u-border-palette-4-light-2,
.u-border-palette-4-light-2.u-input,
.u-border-palette-4-light-2.u-field-input.u-field-input,
.u-separator-palette-4-light-2:after {
  border-color: #adf6f2;
  stroke: #adf6f2;
}
.u-button-style.u-border-palette-4-light-2 {
  border-color: #adf6f2 !important;
  color: #adf6f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-2:hover,
.u-button-style.u-border-palette-4-light-2:focus {
  border-color: transparent !important;
  color: #87f2ec !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-2:hover,
.u-border-hover-palette-4-light-2:focus,
.u-border-active-palette-4-light-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-2,
a.u-button-style.u-border-hover-palette-4-light-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-2,
input.u-field-input.u-field-input.u-border-active-palette-4-light-2:checked {
  color: #adf6f2 !important;
  border-color: #adf6f2 !important;
}
.u-link.u-border-palette-4-light-2[class*="u-border-"] {
  border-color: #adf6f2 !important;
}
.u-link.u-border-palette-4-light-2[class*="u-border-"]:hover {
  border-color: #87f2ec !important;
}
.u-border-palette-4-light-3,
.u-border-palette-4-light-3.u-input,
.u-border-palette-4-light-3.u-field-input.u-field-input,
.u-separator-palette-4-light-3:after {
  border-color: #eafdfc;
  stroke: #eafdfc;
}
.u-button-style.u-border-palette-4-light-3 {
  border-color: #eafdfc !important;
  color: #eafdfc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-light-3:hover,
.u-button-style.u-border-palette-4-light-3:focus {
  border-color: transparent !important;
  color: #bef9f6 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-light-3:hover,
.u-border-hover-palette-4-light-3:focus,
.u-border-active-palette-4-light-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-4-light-3,
a.u-button-style.u-border-hover-palette-4-light-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-4-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-light-3,
input.u-field-input.u-field-input.u-border-active-palette-4-light-3:checked {
  color: #eafdfc !important;
  border-color: #eafdfc !important;
}
.u-link.u-border-palette-4-light-3[class*="u-border-"] {
  border-color: #eafdfc !important;
}
.u-link.u-border-palette-4-light-3[class*="u-border-"]:hover {
  border-color: #bef9f6 !important;
}
.u-border-palette-4-base,
.u-border-palette-4-base.u-input,
.u-border-palette-4-base.u-field-input.u-field-input,
.u-separator-palette-4-base:after {
  border-color: #2cccc4;
  stroke: #2cccc4;
}
.u-button-style.u-border-palette-4-base {
  border-color: #2cccc4 !important;
  color: #2cccc4 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-4-base:hover,
.u-button-style.u-border-palette-4-base:focus {
  border-color: transparent !important;
  color: #28b8b0 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-4-base:hover,
.u-border-hover-palette-4-base:focus,
.u-border-active-palette-4-base.u-active.u-active,
a.u-button-style.u-border-hover-palette-4-base:hover,
a.u-button-style:hover > .u-border-hover-palette-4-base,
a.u-button-style.u-border-hover-palette-4-base:focus,
a.u-button-style.u-button-style.u-border-active-palette-4-base:active,
a.u-button-style.u-button-style.u-border-active-palette-4-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-4-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-4-base,
input.u-field-input.u-field-input.u-border-active-palette-4-base:checked {
  color: #2cccc4 !important;
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-base[class*="u-border-"] {
  border-color: #2cccc4 !important;
}
.u-link.u-border-palette-4-base[class*="u-border-"]:hover {
  border-color: #28b8b0 !important;
}
.u-border-palette-5-dark-3,
.u-border-palette-5-dark-3.u-input,
.u-border-palette-5-dark-3.u-field-input.u-field-input,
.u-separator-palette-5-dark-3:after {
  border-color: #292d33;
  stroke: #292d33;
}
.u-button-style.u-border-palette-5-dark-3 {
  border-color: #292d33 !important;
  color: #292d33 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-3:hover,
.u-button-style.u-border-palette-5-dark-3:focus {
  border-color: transparent !important;
  color: #25292e !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-3:hover,
.u-border-hover-palette-5-dark-3:focus,
.u-border-active-palette-5-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-dark-3:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-3,
a.u-button-style.u-border-hover-palette-5-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-3,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-3:checked {
  color: #292d33 !important;
  border-color: #292d33 !important;
}
.u-link.u-border-palette-5-dark-3[class*="u-border-"] {
  border-color: #292d33 !important;
}
.u-link.u-border-palette-5-dark-3[class*="u-border-"]:hover {
  border-color: #25292e !important;
}
.u-border-palette-5-dark-2,
.u-border-palette-5-dark-2.u-input,
.u-border-palette-5-dark-2.u-field-input.u-field-input,
.u-separator-palette-5-dark-2:after {
  border-color: #555c66;
  stroke: #555c66;
}
.u-button-style.u-border-palette-5-dark-2 {
  border-color: #555c66 !important;
  color: #555c66 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-2:hover,
.u-button-style.u-border-palette-5-dark-2:focus {
  border-color: transparent !important;
  color: #4d535c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-2:hover,
.u-border-hover-palette-5-dark-2:focus,
.u-border-active-palette-5-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-dark-2:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-2,
a.u-button-style.u-border-hover-palette-5-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-2,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-2:checked {
  color: #555c66 !important;
  border-color: #555c66 !important;
}
.u-link.u-border-palette-5-dark-2[class*="u-border-"] {
  border-color: #555c66 !important;
}
.u-link.u-border-palette-5-dark-2[class*="u-border-"]:hover {
  border-color: #4d535c !important;
}
.u-border-palette-5-dark-1,
.u-border-palette-5-dark-1.u-input,
.u-border-palette-5-dark-1.u-field-input.u-field-input,
.u-separator-palette-5-dark-1:after {
  border-color: #858e99;
  stroke: #858e99;
}
.u-button-style.u-border-palette-5-dark-1 {
  border-color: #858e99 !important;
  color: #858e99 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-dark-1:hover,
.u-button-style.u-border-palette-5-dark-1:focus {
  border-color: transparent !important;
  color: #75808c !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-dark-1:hover,
.u-border-hover-palette-5-dark-1:focus,
.u-border-active-palette-5-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-dark-1:hover,
a.u-button-style:hover > .u-border-hover-palette-5-dark-1,
a.u-button-style.u-border-hover-palette-5-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-border-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-dark-1,
input.u-field-input.u-field-input.u-border-active-palette-5-dark-1:checked {
  color: #858e99 !important;
  border-color: #858e99 !important;
}
.u-link.u-border-palette-5-dark-1[class*="u-border-"] {
  border-color: #858e99 !important;
}
.u-link.u-border-palette-5-dark-1[class*="u-border-"]:hover {
  border-color: #75808c !important;
}
.u-border-palette-5,
.u-border-palette-5.u-input,
.u-border-palette-5.u-field-input.u-field-input,
.u-separator-palette-5:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-palette-5 {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5:hover,
.u-button-style.u-border-palette-5:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5:hover,
.u-border-hover-palette-5:focus,
.u-border-active-palette-5.u-active.u-active,
a.u-button-style.u-border-hover-palette-5:hover,
a.u-button-style:hover > .u-border-hover-palette-5,
a.u-button-style.u-border-hover-palette-5:focus,
a.u-button-style.u-button-style.u-border-active-palette-5:active,
a.u-button-style.u-button-style.u-border-active-palette-5.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5,
input.u-field-input.u-field-input.u-border-active-palette-5:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-palette-5-light-1,
.u-border-palette-5-light-1.u-input,
.u-border-palette-5-light-1.u-field-input.u-field-input,
.u-separator-palette-5-light-1:after {
  border-color: #ccd3db;
  stroke: #ccd3db;
}
.u-button-style.u-border-palette-5-light-1 {
  border-color: #ccd3db !important;
  color: #ccd3db !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-1:hover,
.u-button-style.u-border-palette-5-light-1:focus {
  border-color: transparent !important;
  color: #b3bec9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-1:hover,
.u-border-hover-palette-5-light-1:focus,
.u-border-active-palette-5-light-1.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-light-1:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-1,
a.u-button-style.u-border-hover-palette-5-light-1:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-1,
input.u-field-input.u-field-input.u-border-active-palette-5-light-1:checked {
  color: #ccd3db !important;
  border-color: #ccd3db !important;
}
.u-link.u-border-palette-5-light-1[class*="u-border-"] {
  border-color: #ccd3db !important;
}
.u-link.u-border-palette-5-light-1[class*="u-border-"]:hover {
  border-color: #b3bec9 !important;
}
.u-border-palette-5-light-2,
.u-border-palette-5-light-2.u-input,
.u-border-palette-5-light-2.u-field-input.u-field-input,
.u-separator-palette-5-light-2:after {
  border-color: #e0e5eb;
  stroke: #e0e5eb;
}
.u-button-style.u-border-palette-5-light-2 {
  border-color: #e0e5eb !important;
  color: #e0e5eb !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-2:hover,
.u-button-style.u-border-palette-5-light-2:focus {
  border-color: transparent !important;
  color: #c4ced9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-2:hover,
.u-border-hover-palette-5-light-2:focus,
.u-border-active-palette-5-light-2.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-light-2:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-2,
a.u-button-style.u-border-hover-palette-5-light-2:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-2,
input.u-field-input.u-field-input.u-border-active-palette-5-light-2:checked {
  color: #e0e5eb !important;
  border-color: #e0e5eb !important;
}
.u-link.u-border-palette-5-light-2[class*="u-border-"] {
  border-color: #e0e5eb !important;
}
.u-link.u-border-palette-5-light-2[class*="u-border-"]:hover {
  border-color: #c4ced9 !important;
}
.u-border-palette-5-light-3,
.u-border-palette-5-light-3.u-input,
.u-border-palette-5-light-3.u-field-input.u-field-input,
.u-separator-palette-5-light-3:after {
  border-color: #f5f7fa;
  stroke: #f5f7fa;
}
.u-button-style.u-border-palette-5-light-3 {
  border-color: #f5f7fa !important;
  color: #f5f7fa !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-light-3:hover,
.u-button-style.u-border-palette-5-light-3:focus {
  border-color: transparent !important;
  color: #d4dde9 !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-light-3:hover,
.u-border-hover-palette-5-light-3:focus,
.u-border-active-palette-5-light-3.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-light-3:hover,
a.u-button-style:hover > .u-border-hover-palette-5-light-3,
a.u-button-style.u-border-hover-palette-5-light-3:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-border-active-palette-5-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-light-3,
input.u-field-input.u-field-input.u-border-active-palette-5-light-3:checked {
  color: #f5f7fa !important;
  border-color: #f5f7fa !important;
}
.u-link.u-border-palette-5-light-3[class*="u-border-"] {
  border-color: #f5f7fa !important;
}
.u-link.u-border-palette-5-light-3[class*="u-border-"]:hover {
  border-color: #d4dde9 !important;
}
.u-border-palette-5-base,
.u-border-palette-5-base.u-input,
.u-border-palette-5-base.u-field-input.u-field-input,
.u-separator-palette-5-base:after {
  border-color: #b9c1cc;
  stroke: #b9c1cc;
}
.u-button-style.u-border-palette-5-base {
  border-color: #b9c1cc !important;
  color: #b9c1cc !important;
  background-color: transparent !important;
}
.u-button-style.u-border-palette-5-base:hover,
.u-button-style.u-border-palette-5-base:focus {
  border-color: transparent !important;
  color: #a2adbc !important;
  background-color: transparent !important;
}
.u-border-hover-palette-5-base:hover,
.u-border-hover-palette-5-base:focus,
.u-border-active-palette-5-base.u-active.u-active,
a.u-button-style.u-border-hover-palette-5-base:hover,
a.u-button-style:hover > .u-border-hover-palette-5-base,
a.u-button-style.u-border-hover-palette-5-base:focus,
a.u-button-style.u-button-style.u-border-active-palette-5-base:active,
a.u-button-style.u-button-style.u-border-active-palette-5-base.active,
a.u-button-style.u-button-style.active > .u-border-active-palette-5-base,
li.active > a.u-button-style.u-button-style.u-border-active-palette-5-base,
input.u-field-input.u-field-input.u-border-active-palette-5-base:checked {
  color: #b9c1cc !important;
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5-base[class*="u-border-"] {
  border-color: #b9c1cc !important;
}
.u-link.u-border-palette-5-base[class*="u-border-"]:hover {
  border-color: #a2adbc !important;
}
.u-border-grey-dark-3,
.u-border-grey-dark-3.u-input,
.u-border-grey-dark-3.u-field-input.u-field-input,
.u-separator-grey-dark-3:after {
  border-color: #212121;
  stroke: #212121;
}
.u-button-style.u-border-grey-dark-3 {
  border-color: #212121 !important;
  color: #212121 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-3:hover,
.u-button-style.u-border-grey-dark-3:focus {
  border-color: transparent !important;
  color: #1e1e1e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-3:hover,
.u-border-hover-grey-dark-3:focus,
.u-border-active-grey-dark-3.u-active.u-active,
a.u-button-style.u-border-hover-grey-dark-3:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-3,
a.u-button-style.u-border-hover-grey-dark-3:focus,
a.u-button-style.u-button-style.u-border-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-3.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-3,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-3,
input.u-field-input.u-field-input.u-border-active-grey-dark-3:checked {
  color: #212121 !important;
  border-color: #212121 !important;
}
.u-link.u-border-grey-dark-3[class*="u-border-"] {
  border-color: #212121 !important;
}
.u-link.u-border-grey-dark-3[class*="u-border-"]:hover {
  border-color: #1e1e1e !important;
}
.u-border-grey-dark-2,
.u-border-grey-dark-2.u-input,
.u-border-grey-dark-2.u-field-input.u-field-input,
.u-separator-grey-dark-2:after {
  border-color: #333333;
  stroke: #333333;
}
.u-button-style.u-border-grey-dark-2 {
  border-color: #333333 !important;
  color: #333333 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-2:hover,
.u-button-style.u-border-grey-dark-2:focus {
  border-color: transparent !important;
  color: #2e2e2e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-2:hover,
.u-border-hover-grey-dark-2:focus,
.u-border-active-grey-dark-2.u-active.u-active,
a.u-button-style.u-border-hover-grey-dark-2:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-2,
a.u-button-style.u-border-hover-grey-dark-2:focus,
a.u-button-style.u-button-style.u-border-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-2.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-2,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-2,
input.u-field-input.u-field-input.u-border-active-grey-dark-2:checked {
  color: #333333 !important;
  border-color: #333333 !important;
}
.u-link.u-border-grey-dark-2[class*="u-border-"] {
  border-color: #333333 !important;
}
.u-link.u-border-grey-dark-2[class*="u-border-"]:hover {
  border-color: #2e2e2e !important;
}
.u-border-grey-dark-1,
.u-border-grey-dark-1.u-input,
.u-border-grey-dark-1.u-field-input.u-field-input,
.u-separator-grey-dark-1:after {
  border-color: #454545;
  stroke: #454545;
}
.u-button-style.u-border-grey-dark-1 {
  border-color: #454545 !important;
  color: #454545 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-dark-1:hover,
.u-button-style.u-border-grey-dark-1:focus {
  border-color: transparent !important;
  color: #3e3e3e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-dark-1:hover,
.u-border-hover-grey-dark-1:focus,
.u-border-active-grey-dark-1.u-active.u-active,
a.u-button-style.u-border-hover-grey-dark-1:hover,
a.u-button-style:hover > .u-border-hover-grey-dark-1,
a.u-button-style.u-border-hover-grey-dark-1:focus,
a.u-button-style.u-button-style.u-border-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-border-active-grey-dark-1.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-dark-1,
li.active > a.u-button-style.u-button-style.u-border-active-grey-dark-1,
input.u-field-input.u-field-input.u-border-active-grey-dark-1:checked {
  color: #454545 !important;
  border-color: #454545 !important;
}
.u-link.u-border-grey-dark-1[class*="u-border-"] {
  border-color: #454545 !important;
}
.u-link.u-border-grey-dark-1[class*="u-border-"]:hover {
  border-color: #3e3e3e !important;
}
.u-border-grey,
.u-border-grey.u-input,
.u-border-grey.u-field-input.u-field-input,
.u-separator-grey:after {
  border-color: #b3b3b3;
  stroke: #b3b3b3;
}
.u-button-style.u-border-grey {
  border-color: #b3b3b3 !important;
  color: #b3b3b3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey:hover,
.u-button-style.u-border-grey:focus {
  border-color: transparent !important;
  color: #a1a1a1 !important;
  background-color: transparent !important;
}
.u-border-hover-grey:hover,
.u-border-hover-grey:focus,
.u-border-active-grey.u-active.u-active,
a.u-button-style.u-border-hover-grey:hover,
a.u-button-style:hover > .u-border-hover-grey,
a.u-button-style.u-border-hover-grey:focus,
a.u-button-style.u-button-style.u-border-active-grey:active,
a.u-button-style.u-button-style.u-border-active-grey.active,
a.u-button-style.u-button-style.active > .u-border-active-grey,
li.active > a.u-button-style.u-button-style.u-border-active-grey,
input.u-field-input.u-field-input.u-border-active-grey:checked {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey[class*="u-border-"] {
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey[class*="u-border-"]:hover {
  border-color: #a1a1a1 !important;
}
.u-border-grey-light-1,
.u-border-grey-light-1.u-input,
.u-border-grey-light-1.u-field-input.u-field-input,
.u-separator-grey-light-1:after {
  border-color: #d9d9d9;
  stroke: #d9d9d9;
}
.u-button-style.u-border-grey-light-1 {
  border-color: #d9d9d9 !important;
  color: #d9d9d9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-1:hover,
.u-button-style.u-border-grey-light-1:focus {
  border-color: transparent !important;
  color: #c3c3c3 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-1:hover,
.u-border-hover-grey-light-1:focus,
.u-border-active-grey-light-1.u-active.u-active,
a.u-button-style.u-border-hover-grey-light-1:hover,
a.u-button-style:hover > .u-border-hover-grey-light-1,
a.u-button-style.u-border-hover-grey-light-1:focus,
a.u-button-style.u-button-style.u-border-active-grey-light-1:active,
a.u-button-style.u-button-style.u-border-active-grey-light-1.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-1,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-1,
input.u-field-input.u-field-input.u-border-active-grey-light-1:checked {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-light-1[class*="u-border-"] {
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-light-1[class*="u-border-"]:hover {
  border-color: #c3c3c3 !important;
}
.u-border-grey-light-2,
.u-border-grey-light-2.u-input,
.u-border-grey-light-2.u-field-input.u-field-input,
.u-separator-grey-light-2:after {
  border-color: #eeeeee;
  stroke: #eeeeee;
}
.u-button-style.u-border-grey-light-2 {
  border-color: #eeeeee !important;
  color: #eeeeee !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-2:hover,
.u-button-style.u-border-grey-light-2:focus {
  border-color: transparent !important;
  color: #d6d6d6 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-2:hover,
.u-border-hover-grey-light-2:focus,
.u-border-active-grey-light-2.u-active.u-active,
a.u-button-style.u-border-hover-grey-light-2:hover,
a.u-button-style:hover > .u-border-hover-grey-light-2,
a.u-button-style.u-border-hover-grey-light-2:focus,
a.u-button-style.u-button-style.u-border-active-grey-light-2:active,
a.u-button-style.u-button-style.u-border-active-grey-light-2.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-2,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-2,
input.u-field-input.u-field-input.u-border-active-grey-light-2:checked {
  color: #eeeeee !important;
  border-color: #eeeeee !important;
}
.u-link.u-border-grey-light-2[class*="u-border-"] {
  border-color: #eeeeee !important;
}
.u-link.u-border-grey-light-2[class*="u-border-"]:hover {
  border-color: #d6d6d6 !important;
}
.u-border-grey-light-3,
.u-border-grey-light-3.u-input,
.u-border-grey-light-3.u-field-input.u-field-input,
.u-separator-grey-light-3:after {
  border-color: #f6f6f6;
  stroke: #f6f6f6;
}
.u-button-style.u-border-grey-light-3 {
  border-color: #f6f6f6 !important;
  color: #f6f6f6 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-light-3:hover,
.u-button-style.u-border-grey-light-3:focus {
  border-color: transparent !important;
  color: #dddddd !important;
  background-color: transparent !important;
}
.u-border-hover-grey-light-3:hover,
.u-border-hover-grey-light-3:focus,
.u-border-active-grey-light-3.u-active.u-active,
a.u-button-style.u-border-hover-grey-light-3:hover,
a.u-button-style:hover > .u-border-hover-grey-light-3,
a.u-button-style.u-border-hover-grey-light-3:focus,
a.u-button-style.u-button-style.u-border-active-grey-light-3:active,
a.u-button-style.u-button-style.u-border-active-grey-light-3.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-light-3,
li.active > a.u-button-style.u-button-style.u-border-active-grey-light-3,
input.u-field-input.u-field-input.u-border-active-grey-light-3:checked {
  color: #f6f6f6 !important;
  border-color: #f6f6f6 !important;
}
.u-link.u-border-grey-light-3[class*="u-border-"] {
  border-color: #f6f6f6 !important;
}
.u-link.u-border-grey-light-3[class*="u-border-"]:hover {
  border-color: #dddddd !important;
}
.u-border-white,
.u-border-white.u-input,
.u-border-white.u-field-input.u-field-input,
.u-separator-white:after {
  border-color: #ffffff;
  stroke: #ffffff;
}
.u-button-style.u-border-white {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
}
.u-button-style.u-border-white:hover,
.u-button-style.u-border-white:focus {
  border-color: transparent !important;
  color: #e6e6e6 !important;
  background-color: transparent !important;
}
.u-border-hover-white:hover,
.u-border-hover-white:focus,
.u-border-active-white.u-active.u-active,
a.u-button-style.u-border-hover-white:hover,
a.u-button-style:hover > .u-border-hover-white,
a.u-button-style.u-border-hover-white:focus,
a.u-button-style.u-button-style.u-border-active-white:active,
a.u-button-style.u-button-style.u-border-active-white.active,
a.u-button-style.u-button-style.active > .u-border-active-white,
li.active > a.u-button-style.u-button-style.u-border-active-white,
input.u-field-input.u-field-input.u-border-active-white:checked {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.u-link.u-border-white[class*="u-border-"] {
  border-color: #ffffff !important;
}
.u-link.u-border-white[class*="u-border-"]:hover {
  border-color: #e6e6e6 !important;
}
.u-border-black,
.u-border-black.u-input,
.u-border-black.u-field-input.u-field-input,
.u-separator-black:after {
  border-color: #000000;
  stroke: #000000;
}
.u-button-style.u-border-black {
  border-color: #000000 !important;
  color: #000000 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-black:hover,
.u-button-style.u-border-black:focus {
  border-color: transparent !important;
  color: #000000 !important;
  background-color: transparent !important;
}
.u-border-hover-black:hover,
.u-border-hover-black:focus,
.u-border-active-black.u-active.u-active,
a.u-button-style.u-border-hover-black:hover,
a.u-button-style:hover > .u-border-hover-black,
a.u-button-style.u-border-hover-black:focus,
a.u-button-style.u-button-style.u-border-active-black:active,
a.u-button-style.u-button-style.u-border-active-black.active,
a.u-button-style.u-button-style.active > .u-border-active-black,
li.active > a.u-button-style.u-button-style.u-border-active-black,
input.u-field-input.u-field-input.u-border-active-black:checked {
  color: #000000 !important;
  border-color: #000000 !important;
}
.u-link.u-border-black[class*="u-border-"] {
  border-color: #000000 !important;
}
.u-link.u-border-black[class*="u-border-"]:hover {
  border-color: #000000 !important;
}
.u-border-body-color,
.u-border-body-color.u-input,
.u-border-body-color.u-field-input.u-field-input,
.u-separator-body-color:after {
  border-color: #111111;
  stroke: #111111;
}
.u-button-style.u-border-body-color {
  border-color: #111111 !important;
  color: #111111 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-body-color:hover,
.u-button-style.u-border-body-color:focus {
  border-color: transparent !important;
  color: #0f0f0f !important;
  background-color: transparent !important;
}
.u-border-hover-body-color:hover,
.u-border-hover-body-color:focus,
.u-border-active-body-color.u-active.u-active,
a.u-button-style.u-border-hover-body-color:hover,
a.u-button-style:hover > .u-border-hover-body-color,
a.u-button-style.u-border-hover-body-color:focus,
a.u-button-style.u-button-style.u-border-active-body-color:active,
a.u-button-style.u-button-style.u-border-active-body-color.active,
a.u-button-style.u-button-style.active > .u-border-active-body-color,
li.active > a.u-button-style.u-button-style.u-border-active-body-color,
input.u-field-input.u-field-input.u-border-active-body-color:checked {
  color: #111111 !important;
  border-color: #111111 !important;
}
.u-link.u-border-body-color[class*="u-border-"] {
  border-color: #111111 !important;
}
.u-link.u-border-body-color[class*="u-border-"]:hover {
  border-color: #0f0f0f !important;
}
.u-border-body-alt-color,
.u-border-body-alt-color.u-input,
.u-border-body-alt-color.u-field-input.u-field-input,
.u-separator-body-alt-color:after {
  border-color: #ffffff;
  stroke: #ffffff;
}
.u-button-style.u-border-body-alt-color {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
}
.u-button-style.u-border-body-alt-color:hover,
.u-button-style.u-border-body-alt-color:focus {
  border-color: transparent !important;
  color: #e6e6e6 !important;
  background-color: transparent !important;
}
.u-border-hover-body-alt-color:hover,
.u-border-hover-body-alt-color:focus,
.u-border-active-body-alt-color.u-active.u-active,
a.u-button-style.u-border-hover-body-alt-color:hover,
a.u-button-style:hover > .u-border-hover-body-alt-color,
a.u-button-style.u-border-hover-body-alt-color:focus,
a.u-button-style.u-button-style.u-border-active-body-alt-color:active,
a.u-button-style.u-button-style.u-border-active-body-alt-color.active,
a.u-button-style.u-button-style.active > .u-border-active-body-alt-color,
li.active > a.u-button-style.u-button-style.u-border-active-body-alt-color,
input.u-field-input.u-field-input.u-border-active-body-alt-color:checked {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.u-link.u-border-body-alt-color[class*="u-border-"] {
  border-color: #ffffff !important;
}
.u-link.u-border-body-alt-color[class*="u-border-"]:hover {
  border-color: #e6e6e6 !important;
}
.u-border-grey-25,
.u-border-grey-25.u-input,
.u-border-grey-25.u-field-input.u-field-input,
.u-separator-grey-25:after {
  border-color: #c0c0c0;
  stroke: #c0c0c0;
}
.u-button-style.u-border-grey-25 {
  border-color: #c0c0c0 !important;
  color: #c0c0c0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-25:hover,
.u-button-style.u-border-grey-25:focus {
  border-color: transparent !important;
  color: #adadad !important;
  background-color: transparent !important;
}
.u-border-hover-grey-25:hover,
.u-border-hover-grey-25:focus,
.u-border-active-grey-25.u-active.u-active,
a.u-button-style.u-border-hover-grey-25:hover,
a.u-button-style:hover > .u-border-hover-grey-25,
a.u-button-style.u-border-hover-grey-25:focus,
a.u-button-style.u-button-style.u-border-active-grey-25:active,
a.u-button-style.u-button-style.u-border-active-grey-25.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-25,
li.active > a.u-button-style.u-button-style.u-border-active-grey-25,
input.u-field-input.u-field-input.u-border-active-grey-25:checked {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"] {
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"]:hover {
  border-color: #adadad !important;
}
.u-border-grey-5,
.u-border-grey-5.u-input,
.u-border-grey-5.u-field-input.u-field-input,
.u-separator-grey-5:after {
  border-color: #f2f2f2;
  stroke: #f2f2f2;
}
.u-button-style.u-border-grey-5 {
  border-color: #f2f2f2 !important;
  color: #f2f2f2 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-5:hover,
.u-button-style.u-border-grey-5:focus {
  border-color: transparent !important;
  color: #dadada !important;
  background-color: transparent !important;
}
.u-border-hover-grey-5:hover,
.u-border-hover-grey-5:focus,
.u-border-active-grey-5.u-active.u-active,
a.u-button-style.u-border-hover-grey-5:hover,
a.u-button-style:hover > .u-border-hover-grey-5,
a.u-button-style.u-border-hover-grey-5:focus,
a.u-button-style.u-button-style.u-border-active-grey-5:active,
a.u-button-style.u-button-style.u-border-active-grey-5.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-5,
li.active > a.u-button-style.u-button-style.u-border-active-grey-5,
input.u-field-input.u-field-input.u-border-active-grey-5:checked {
  color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}
.u-link.u-border-grey-5[class*="u-border-"] {
  border-color: #f2f2f2 !important;
}
.u-link.u-border-grey-5[class*="u-border-"]:hover {
  border-color: #dadada !important;
}
.u-border-grey-10,
.u-border-grey-10.u-input,
.u-border-grey-10.u-field-input.u-field-input,
.u-separator-grey-10:after {
  border-color: #e5e5e5;
  stroke: #e5e5e5;
}
.u-button-style.u-border-grey-10 {
  border-color: #e5e5e5 !important;
  color: #e5e5e5 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-10:hover,
.u-button-style.u-border-grey-10:focus {
  border-color: transparent !important;
  color: #cecece !important;
  background-color: transparent !important;
}
.u-border-hover-grey-10:hover,
.u-border-hover-grey-10:focus,
.u-border-active-grey-10.u-active.u-active,
a.u-button-style.u-border-hover-grey-10:hover,
a.u-button-style:hover > .u-border-hover-grey-10,
a.u-button-style.u-border-hover-grey-10:focus,
a.u-button-style.u-button-style.u-border-active-grey-10:active,
a.u-button-style.u-button-style.u-border-active-grey-10.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-10,
li.active > a.u-button-style.u-button-style.u-border-active-grey-10,
input.u-field-input.u-field-input.u-border-active-grey-10:checked {
  color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.u-link.u-border-grey-10[class*="u-border-"] {
  border-color: #e5e5e5 !important;
}
.u-link.u-border-grey-10[class*="u-border-"]:hover {
  border-color: #cecece !important;
}
.u-border-grey-15,
.u-border-grey-15.u-input,
.u-border-grey-15.u-field-input.u-field-input,
.u-separator-grey-15:after {
  border-color: #d9d9d9;
  stroke: #d9d9d9;
}
.u-button-style.u-border-grey-15 {
  border-color: #d9d9d9 !important;
  color: #d9d9d9 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-15:hover,
.u-button-style.u-border-grey-15:focus {
  border-color: transparent !important;
  color: #c3c3c3 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-15:hover,
.u-border-hover-grey-15:focus,
.u-border-active-grey-15.u-active.u-active,
a.u-button-style.u-border-hover-grey-15:hover,
a.u-button-style:hover > .u-border-hover-grey-15,
a.u-button-style.u-border-hover-grey-15:focus,
a.u-button-style.u-button-style.u-border-active-grey-15:active,
a.u-button-style.u-button-style.u-border-active-grey-15.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-15,
li.active > a.u-button-style.u-button-style.u-border-active-grey-15,
input.u-field-input.u-field-input.u-border-active-grey-15:checked {
  color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-15[class*="u-border-"] {
  border-color: #d9d9d9 !important;
}
.u-link.u-border-grey-15[class*="u-border-"]:hover {
  border-color: #c3c3c3 !important;
}
.u-border-grey-25,
.u-border-grey-25.u-input,
.u-border-grey-25.u-field-input.u-field-input,
.u-separator-grey-25:after {
  border-color: #c0c0c0;
  stroke: #c0c0c0;
}
.u-button-style.u-border-grey-25 {
  border-color: #c0c0c0 !important;
  color: #c0c0c0 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-25:hover,
.u-button-style.u-border-grey-25:focus {
  border-color: transparent !important;
  color: #adadad !important;
  background-color: transparent !important;
}
.u-border-hover-grey-25:hover,
.u-border-hover-grey-25:focus,
.u-border-active-grey-25.u-active.u-active,
a.u-button-style.u-border-hover-grey-25:hover,
a.u-button-style:hover > .u-border-hover-grey-25,
a.u-button-style.u-border-hover-grey-25:focus,
a.u-button-style.u-button-style.u-border-active-grey-25:active,
a.u-button-style.u-button-style.u-border-active-grey-25.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-25,
li.active > a.u-button-style.u-button-style.u-border-active-grey-25,
input.u-field-input.u-field-input.u-border-active-grey-25:checked {
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"] {
  border-color: #c0c0c0 !important;
}
.u-link.u-border-grey-25[class*="u-border-"]:hover {
  border-color: #adadad !important;
}
.u-border-grey-30,
.u-border-grey-30.u-input,
.u-border-grey-30.u-field-input.u-field-input,
.u-separator-grey-30:after {
  border-color: #b3b3b3;
  stroke: #b3b3b3;
}
.u-button-style.u-border-grey-30 {
  border-color: #b3b3b3 !important;
  color: #b3b3b3 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-30:hover,
.u-button-style.u-border-grey-30:focus {
  border-color: transparent !important;
  color: #a1a1a1 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-30:hover,
.u-border-hover-grey-30:focus,
.u-border-active-grey-30.u-active.u-active,
a.u-button-style.u-border-hover-grey-30:hover,
a.u-button-style:hover > .u-border-hover-grey-30,
a.u-button-style.u-border-hover-grey-30:focus,
a.u-button-style.u-button-style.u-border-active-grey-30:active,
a.u-button-style.u-button-style.u-border-active-grey-30.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-30,
li.active > a.u-button-style.u-button-style.u-border-active-grey-30,
input.u-field-input.u-field-input.u-border-active-grey-30:checked {
  color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey-30[class*="u-border-"] {
  border-color: #b3b3b3 !important;
}
.u-link.u-border-grey-30[class*="u-border-"]:hover {
  border-color: #a1a1a1 !important;
}
.u-border-grey-40,
.u-border-grey-40.u-input,
.u-border-grey-40.u-field-input.u-field-input,
.u-separator-grey-40:after {
  border-color: #999999;
  stroke: #999999;
}
.u-button-style.u-border-grey-40 {
  border-color: #999999 !important;
  color: #999999 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-40:hover,
.u-button-style.u-border-grey-40:focus {
  border-color: transparent !important;
  color: #8a8a8a !important;
  background-color: transparent !important;
}
.u-border-hover-grey-40:hover,
.u-border-hover-grey-40:focus,
.u-border-active-grey-40.u-active.u-active,
a.u-button-style.u-border-hover-grey-40:hover,
a.u-button-style:hover > .u-border-hover-grey-40,
a.u-button-style.u-border-hover-grey-40:focus,
a.u-button-style.u-button-style.u-border-active-grey-40:active,
a.u-button-style.u-button-style.u-border-active-grey-40.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-40,
li.active > a.u-button-style.u-button-style.u-border-active-grey-40,
input.u-field-input.u-field-input.u-border-active-grey-40:checked {
  color: #999999 !important;
  border-color: #999999 !important;
}
.u-link.u-border-grey-40[class*="u-border-"] {
  border-color: #999999 !important;
}
.u-link.u-border-grey-40[class*="u-border-"]:hover {
  border-color: #8a8a8a !important;
}
.u-border-grey-50,
.u-border-grey-50.u-input,
.u-border-grey-50.u-field-input.u-field-input,
.u-separator-grey-50:after {
  border-color: #808080;
  stroke: #808080;
}
.u-button-style.u-border-grey-50 {
  border-color: #808080 !important;
  color: #808080 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-50:hover,
.u-button-style.u-border-grey-50:focus {
  border-color: transparent !important;
  color: #737373 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-50:hover,
.u-border-hover-grey-50:focus,
.u-border-active-grey-50.u-active.u-active,
a.u-button-style.u-border-hover-grey-50:hover,
a.u-button-style:hover > .u-border-hover-grey-50,
a.u-button-style.u-border-hover-grey-50:focus,
a.u-button-style.u-button-style.u-border-active-grey-50:active,
a.u-button-style.u-button-style.u-border-active-grey-50.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-50,
li.active > a.u-button-style.u-button-style.u-border-active-grey-50,
input.u-field-input.u-field-input.u-border-active-grey-50:checked {
  color: #808080 !important;
  border-color: #808080 !important;
}
.u-link.u-border-grey-50[class*="u-border-"] {
  border-color: #808080 !important;
}
.u-link.u-border-grey-50[class*="u-border-"]:hover {
  border-color: #737373 !important;
}
.u-border-grey-60,
.u-border-grey-60.u-input,
.u-border-grey-60.u-field-input.u-field-input,
.u-separator-grey-60:after {
  border-color: #666666;
  stroke: #666666;
}
.u-button-style.u-border-grey-60 {
  border-color: #666666 !important;
  color: #666666 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-60:hover,
.u-button-style.u-border-grey-60:focus {
  border-color: transparent !important;
  color: #5c5c5c !important;
  background-color: transparent !important;
}
.u-border-hover-grey-60:hover,
.u-border-hover-grey-60:focus,
.u-border-active-grey-60.u-active.u-active,
a.u-button-style.u-border-hover-grey-60:hover,
a.u-button-style:hover > .u-border-hover-grey-60,
a.u-button-style.u-border-hover-grey-60:focus,
a.u-button-style.u-button-style.u-border-active-grey-60:active,
a.u-button-style.u-button-style.u-border-active-grey-60.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-60,
li.active > a.u-button-style.u-button-style.u-border-active-grey-60,
input.u-field-input.u-field-input.u-border-active-grey-60:checked {
  color: #666666 !important;
  border-color: #666666 !important;
}
.u-link.u-border-grey-60[class*="u-border-"] {
  border-color: #666666 !important;
}
.u-link.u-border-grey-60[class*="u-border-"]:hover {
  border-color: #5c5c5c !important;
}
.u-border-grey-70,
.u-border-grey-70.u-input,
.u-border-grey-70.u-field-input.u-field-input,
.u-separator-grey-70:after {
  border-color: #4d4d4d;
  stroke: #4d4d4d;
}
.u-button-style.u-border-grey-70 {
  border-color: #4d4d4d !important;
  color: #4d4d4d !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-70:hover,
.u-button-style.u-border-grey-70:focus {
  border-color: transparent !important;
  color: #454545 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-70:hover,
.u-border-hover-grey-70:focus,
.u-border-active-grey-70.u-active.u-active,
a.u-button-style.u-border-hover-grey-70:hover,
a.u-button-style:hover > .u-border-hover-grey-70,
a.u-button-style.u-border-hover-grey-70:focus,
a.u-button-style.u-button-style.u-border-active-grey-70:active,
a.u-button-style.u-button-style.u-border-active-grey-70.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-70,
li.active > a.u-button-style.u-button-style.u-border-active-grey-70,
input.u-field-input.u-field-input.u-border-active-grey-70:checked {
  color: #4d4d4d !important;
  border-color: #4d4d4d !important;
}
.u-link.u-border-grey-70[class*="u-border-"] {
  border-color: #4d4d4d !important;
}
.u-link.u-border-grey-70[class*="u-border-"]:hover {
  border-color: #454545 !important;
}
.u-border-grey-75,
.u-border-grey-75.u-input,
.u-border-grey-75.u-field-input.u-field-input,
.u-separator-grey-75:after {
  border-color: #404040;
  stroke: #404040;
}
.u-button-style.u-border-grey-75 {
  border-color: #404040 !important;
  color: #404040 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-75:hover,
.u-button-style.u-border-grey-75:focus {
  border-color: transparent !important;
  color: #3a3a3a !important;
  background-color: transparent !important;
}
.u-border-hover-grey-75:hover,
.u-border-hover-grey-75:focus,
.u-border-active-grey-75.u-active.u-active,
a.u-button-style.u-border-hover-grey-75:hover,
a.u-button-style:hover > .u-border-hover-grey-75,
a.u-button-style.u-border-hover-grey-75:focus,
a.u-button-style.u-button-style.u-border-active-grey-75:active,
a.u-button-style.u-button-style.u-border-active-grey-75.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-75,
li.active > a.u-button-style.u-button-style.u-border-active-grey-75,
input.u-field-input.u-field-input.u-border-active-grey-75:checked {
  color: #404040 !important;
  border-color: #404040 !important;
}
.u-link.u-border-grey-75[class*="u-border-"] {
  border-color: #404040 !important;
}
.u-link.u-border-grey-75[class*="u-border-"]:hover {
  border-color: #3a3a3a !important;
}
.u-border-grey-80,
.u-border-grey-80.u-input,
.u-border-grey-80.u-field-input.u-field-input,
.u-separator-grey-80:after {
  border-color: #333333;
  stroke: #333333;
}
.u-button-style.u-border-grey-80 {
  border-color: #333333 !important;
  color: #333333 !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-80:hover,
.u-button-style.u-border-grey-80:focus {
  border-color: transparent !important;
  color: #2e2e2e !important;
  background-color: transparent !important;
}
.u-border-hover-grey-80:hover,
.u-border-hover-grey-80:focus,
.u-border-active-grey-80.u-active.u-active,
a.u-button-style.u-border-hover-grey-80:hover,
a.u-button-style:hover > .u-border-hover-grey-80,
a.u-button-style.u-border-hover-grey-80:focus,
a.u-button-style.u-button-style.u-border-active-grey-80:active,
a.u-button-style.u-button-style.u-border-active-grey-80.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-80,
li.active > a.u-button-style.u-button-style.u-border-active-grey-80,
input.u-field-input.u-field-input.u-border-active-grey-80:checked {
  color: #333333 !important;
  border-color: #333333 !important;
}
.u-link.u-border-grey-80[class*="u-border-"] {
  border-color: #333333 !important;
}
.u-link.u-border-grey-80[class*="u-border-"]:hover {
  border-color: #2e2e2e !important;
}
.u-border-grey-90,
.u-border-grey-90.u-input,
.u-border-grey-90.u-field-input.u-field-input,
.u-separator-grey-90:after {
  border-color: #1a1a1a;
  stroke: #1a1a1a;
}
.u-button-style.u-border-grey-90 {
  border-color: #1a1a1a !important;
  color: #1a1a1a !important;
  background-color: transparent !important;
}
.u-button-style.u-border-grey-90:hover,
.u-button-style.u-border-grey-90:focus {
  border-color: transparent !important;
  color: #171717 !important;
  background-color: transparent !important;
}
.u-border-hover-grey-90:hover,
.u-border-hover-grey-90:focus,
.u-border-active-grey-90.u-active.u-active,
a.u-button-style.u-border-hover-grey-90:hover,
a.u-button-style:hover > .u-border-hover-grey-90,
a.u-button-style.u-border-hover-grey-90:focus,
a.u-button-style.u-button-style.u-border-active-grey-90:active,
a.u-button-style.u-button-style.u-border-active-grey-90.active,
a.u-button-style.u-button-style.active > .u-border-active-grey-90,
li.active > a.u-button-style.u-button-style.u-border-active-grey-90,
input.u-field-input.u-field-input.u-border-active-grey-90:checked {
  color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.u-link.u-border-grey-90[class*="u-border-"] {
  border-color: #1a1a1a !important;
}
.u-link.u-border-grey-90[class*="u-border-"]:hover {
  border-color: #171717 !important;
}
.u-text-color-1-dark-3,
.u-input.u-text-color-1-dark-3,
.u-input.u-text-color-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-3,
li.active > a.u-button-style.u-text-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-3,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"] {
  color: #292e33 !important;
}
a.u-button-style.u-text-color-1-dark-3:hover,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-3:focus,
a.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-3:active,
a.u-button-style.u-button-style.u-text-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-3.active,
a.u-button-style.u-button-style.u-text-color-1-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
a.u-button-style:hover > .u-text-hover-color-1-dark-3,
a.u-button-style:hover > .u-text-hover-color-1-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-3.active,
.u-text-hover-color-1-dark-3.u-language-url:hover,
.u-text-hover-color-1-dark-3 .u-language-url:hover,
.u-text-hover-color-1-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-3 .u-nav-link.active {
  color: #292e33 !important;
}
.u-text-color-1-dark-3 .u-svg-link,
.u-text-hover-color-1-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-3 .u-svg-link,
.u-text-hover-color-1-dark-3:focus .u-svg-link {
  fill: #292e33;
}
.u-link.u-text-color-1-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-color-1-dark-3:hover {
  color: #292e33 !important;
}
.u-text-color-1-dark-2,
.u-input.u-text-color-1-dark-2,
.u-input.u-text-color-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-2,
li.active > a.u-button-style.u-text-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-2,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"] {
  color: #425465 !important;
}
a.u-button-style.u-text-color-1-dark-2:hover,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-2:focus,
a.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-2:active,
a.u-button-style.u-button-style.u-text-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-2.active,
a.u-button-style.u-button-style.u-text-color-1-dark-2[class*="u-border-"].active {
  color: #3b4c5b !important;
}
a.u-button-style:hover > .u-text-hover-color-1-dark-2,
a.u-button-style:hover > .u-text-hover-color-1-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-2.active,
.u-text-hover-color-1-dark-2.u-language-url:hover,
.u-text-hover-color-1-dark-2 .u-language-url:hover,
.u-text-hover-color-1-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-2 .u-nav-link.active {
  color: #425465 !important;
}
.u-text-color-1-dark-2 .u-svg-link,
.u-text-hover-color-1-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-2 .u-svg-link,
.u-text-hover-color-1-dark-2:focus .u-svg-link {
  fill: #425465;
}
.u-link.u-text-color-1-dark-2:hover {
  color: #3b4c5b !important;
}
a.u-link.u-text-hover-color-1-dark-2:hover {
  color: #425465 !important;
}
.u-text-color-1-dark-1,
.u-input.u-text-color-1-dark-1,
.u-input.u-text-color-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-dark-1,
li.active > a.u-button-style.u-text-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-1-dark-1,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"] {
  color: #4c7397 !important;
}
a.u-button-style.u-text-color-1-dark-1:hover,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-dark-1:focus,
a.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-dark-1:active,
a.u-button-style.u-button-style.u-text-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-dark-1.active,
a.u-button-style.u-button-style.u-text-color-1-dark-1[class*="u-border-"].active {
  color: #446888 !important;
}
a.u-button-style:hover > .u-text-hover-color-1-dark-1,
a.u-button-style:hover > .u-text-hover-color-1-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-dark-1.active,
.u-text-hover-color-1-dark-1.u-language-url:hover,
.u-text-hover-color-1-dark-1 .u-language-url:hover,
.u-text-hover-color-1-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-dark-1 .u-nav-link.active {
  color: #4c7397 !important;
}
.u-text-color-1-dark-1 .u-svg-link,
.u-text-hover-color-1-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-dark-1 .u-svg-link,
.u-text-hover-color-1-dark-1:focus .u-svg-link {
  fill: #4c7397;
}
.u-link.u-text-color-1-dark-1:hover {
  color: #446888 !important;
}
a.u-link.u-text-hover-color-1-dark-1:hover {
  color: #4c7397 !important;
}
.u-text-color-1,
.u-input.u-text-color-1,
.u-input.u-text-color-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1,
li.active > a.u-button-style.u-text-color-1[class*="u-border-"],
a.u-button-style.u-text-color-1,
a.u-button-style.u-text-color-1[class*="u-border-"] {
  color: #478ac9 !important;
}
a.u-button-style.u-text-color-1:hover,
a.u-button-style.u-text-color-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1:focus,
a.u-button-style.u-text-color-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1:active,
a.u-button-style.u-button-style.u-text-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1.active,
a.u-button-style.u-button-style.u-text-color-1[class*="u-border-"].active {
  color: #387cbd !important;
}
a.u-button-style:hover > .u-text-hover-color-1,
a.u-button-style:hover > .u-text-hover-color-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1.active,
.u-text-hover-color-1.u-language-url:hover,
.u-text-hover-color-1 .u-language-url:hover,
.u-text-hover-color-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1 .u-nav-link.active {
  color: #478ac9 !important;
}
.u-text-color-1 .u-svg-link,
.u-text-hover-color-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1 .u-svg-link,
.u-text-hover-color-1:focus .u-svg-link {
  fill: #478ac9;
}
.u-link.u-text-color-1:hover {
  color: #387cbd !important;
}
a.u-link.u-text-hover-color-1:hover {
  color: #478ac9 !important;
}
.u-text-color-1-light-1,
.u-input.u-text-color-1-light-1,
.u-input.u-text-color-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-1,
li.active > a.u-button-style.u-text-color-1-light-1[class*="u-border-"],
a.u-button-style.u-text-color-1-light-1,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"] {
  color: #77aad9 !important;
}
a.u-button-style.u-text-color-1-light-1:hover,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-1:focus,
a.u-button-style.u-text-color-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-1:active,
a.u-button-style.u-button-style.u-text-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-1.active,
a.u-button-style.u-button-style.u-text-color-1-light-1[class*="u-border-"].active {
  color: #5d9ad2 !important;
}
a.u-button-style:hover > .u-text-hover-color-1-light-1,
a.u-button-style:hover > .u-text-hover-color-1-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-1.active,
.u-text-hover-color-1-light-1.u-language-url:hover,
.u-text-hover-color-1-light-1 .u-language-url:hover,
.u-text-hover-color-1-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-1 .u-nav-link.active {
  color: #77aad9 !important;
}
.u-text-color-1-light-1 .u-svg-link,
.u-text-hover-color-1-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-1 .u-svg-link,
.u-text-hover-color-1-light-1:focus .u-svg-link {
  fill: #77aad9;
}
.u-link.u-text-color-1-light-1:hover {
  color: #5d9ad2 !important;
}
a.u-link.u-text-hover-color-1-light-1:hover {
  color: #77aad9 !important;
}
.u-text-color-1-light-2,
.u-input.u-text-color-1-light-2,
.u-input.u-text-color-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-2,
li.active > a.u-button-style.u-text-color-1-light-2[class*="u-border-"],
a.u-button-style.u-text-color-1-light-2,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"] {
  color: #adcce9 !important;
}
a.u-button-style.u-text-color-1-light-2:hover,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-2:focus,
a.u-button-style.u-text-color-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-2:active,
a.u-button-style.u-button-style.u-text-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-2.active,
a.u-button-style.u-button-style.u-text-color-1-light-2[class*="u-border-"].active {
  color: #8db8e0 !important;
}
a.u-button-style:hover > .u-text-hover-color-1-light-2,
a.u-button-style:hover > .u-text-hover-color-1-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-2.active,
.u-text-hover-color-1-light-2.u-language-url:hover,
.u-text-hover-color-1-light-2 .u-language-url:hover,
.u-text-hover-color-1-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-2 .u-nav-link.active {
  color: #adcce9 !important;
}
.u-text-color-1-light-2 .u-svg-link,
.u-text-hover-color-1-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-2 .u-svg-link,
.u-text-hover-color-1-light-2:focus .u-svg-link {
  fill: #adcce9;
}
.u-link.u-text-color-1-light-2:hover {
  color: #8db8e0 !important;
}
a.u-link.u-text-hover-color-1-light-2:hover {
  color: #adcce9 !important;
}
.u-text-color-1-light-3,
.u-input.u-text-color-1-light-3,
.u-input.u-text-color-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-light-3,
li.active > a.u-button-style.u-text-color-1-light-3[class*="u-border-"],
a.u-button-style.u-text-color-1-light-3,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"] {
  color: #e9f2fa !important;
}
a.u-button-style.u-text-color-1-light-3:hover,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-light-3:focus,
a.u-button-style.u-text-color-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-light-3:active,
a.u-button-style.u-button-style.u-text-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-light-3.active,
a.u-button-style.u-button-style.u-text-color-1-light-3[class*="u-border-"].active {
  color: #c2dbf1 !important;
}
a.u-button-style:hover > .u-text-hover-color-1-light-3,
a.u-button-style:hover > .u-text-hover-color-1-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-1-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-light-3.active,
.u-text-hover-color-1-light-3.u-language-url:hover,
.u-text-hover-color-1-light-3 .u-language-url:hover,
.u-text-hover-color-1-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-light-3 .u-nav-link.active {
  color: #e9f2fa !important;
}
.u-text-color-1-light-3 .u-svg-link,
.u-text-hover-color-1-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-light-3 .u-svg-link,
.u-text-hover-color-1-light-3:focus .u-svg-link {
  fill: #e9f2fa;
}
.u-link.u-text-color-1-light-3:hover {
  color: #c2dbf1 !important;
}
a.u-link.u-text-hover-color-1-light-3:hover {
  color: #e9f2fa !important;
}
.u-text-color-1-base,
.u-input.u-text-color-1-base,
.u-input.u-text-color-1-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-1-base,
li.active > a.u-button-style.u-text-color-1-base[class*="u-border-"],
a.u-button-style.u-text-color-1-base,
a.u-button-style.u-text-color-1-base[class*="u-border-"] {
  color: #478ac9 !important;
}
a.u-button-style.u-text-color-1-base:hover,
a.u-button-style.u-text-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-1-base:focus,
a.u-button-style.u-text-color-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-1-base:active,
a.u-button-style.u-button-style.u-text-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-1-base.active,
a.u-button-style.u-button-style.u-text-color-1-base[class*="u-border-"].active {
  color: #387cbd !important;
}
a.u-button-style:hover > .u-text-hover-color-1-base,
a.u-button-style:hover > .u-text-hover-color-1-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-1-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-1-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-1-base,
a.u-button-style.u-button-style.active > .u-text-active-color-1-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-1-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-1-base.active,
.u-text-hover-color-1-base.u-language-url:hover,
.u-text-hover-color-1-base .u-language-url:hover,
.u-text-hover-color-1-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-1-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-1-base .u-nav-link.active {
  color: #478ac9 !important;
}
.u-text-color-1-base .u-svg-link,
.u-text-hover-color-1-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-1-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-1-base .u-svg-link,
.u-text-hover-color-1-base:focus .u-svg-link {
  fill: #478ac9;
}
.u-link.u-text-color-1-base:hover {
  color: #387cbd !important;
}
a.u-link.u-text-hover-color-1-base:hover {
  color: #478ac9 !important;
}
.u-text-color-2-dark-3,
.u-input.u-text-color-2-dark-3,
.u-input.u-text-color-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-3,
li.active > a.u-button-style.u-text-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-3,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"] {
  color: #332929 !important;
}
a.u-button-style.u-text-color-2-dark-3:hover,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-3:focus,
a.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-3:active,
a.u-button-style.u-button-style.u-text-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-3.active,
a.u-button-style.u-button-style.u-text-color-2-dark-3[class*="u-border-"].active {
  color: #2e2525 !important;
}
a.u-button-style:hover > .u-text-hover-color-2-dark-3,
a.u-button-style:hover > .u-text-hover-color-2-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-3.active,
.u-text-hover-color-2-dark-3.u-language-url:hover,
.u-text-hover-color-2-dark-3 .u-language-url:hover,
.u-text-hover-color-2-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-3 .u-nav-link.active {
  color: #332929 !important;
}
.u-text-color-2-dark-3 .u-svg-link,
.u-text-hover-color-2-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-3 .u-svg-link,
.u-text-hover-color-2-dark-3:focus .u-svg-link {
  fill: #332929;
}
.u-link.u-text-color-2-dark-3:hover {
  color: #2e2525 !important;
}
a.u-link.u-text-hover-color-2-dark-3:hover {
  color: #332929 !important;
}
.u-text-color-2-dark-2,
.u-input.u-text-color-2-dark-2,
.u-input.u-text-color-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-2,
li.active > a.u-button-style.u-text-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-2,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"] {
  color: #744547 !important;
}
a.u-button-style.u-text-color-2-dark-2:hover,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-2:focus,
a.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-2:active,
a.u-button-style.u-button-style.u-text-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-2.active,
a.u-button-style.u-button-style.u-text-color-2-dark-2[class*="u-border-"].active {
  color: #683e40 !important;
}
a.u-button-style:hover > .u-text-hover-color-2-dark-2,
a.u-button-style:hover > .u-text-hover-color-2-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-2.active,
.u-text-hover-color-2-dark-2.u-language-url:hover,
.u-text-hover-color-2-dark-2 .u-language-url:hover,
.u-text-hover-color-2-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-2 .u-nav-link.active {
  color: #744547 !important;
}
.u-text-color-2-dark-2 .u-svg-link,
.u-text-hover-color-2-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-2 .u-svg-link,
.u-text-hover-color-2-dark-2:focus .u-svg-link {
  fill: #744547;
}
.u-link.u-text-color-2-dark-2:hover {
  color: #683e40 !important;
}
a.u-link.u-text-hover-color-2-dark-2:hover {
  color: #744547 !important;
}
.u-text-color-2-dark-1,
.u-input.u-text-color-2-dark-1,
.u-input.u-text-color-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-dark-1,
li.active > a.u-button-style.u-text-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-2-dark-1,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"] {
  color: #b6474c !important;
}
a.u-button-style.u-text-color-2-dark-1:hover,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-dark-1:focus,
a.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-dark-1:active,
a.u-button-style.u-button-style.u-text-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-dark-1.active,
a.u-button-style.u-button-style.u-text-color-2-dark-1[class*="u-border-"].active {
  color: #a44044 !important;
}
a.u-button-style:hover > .u-text-hover-color-2-dark-1,
a.u-button-style:hover > .u-text-hover-color-2-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-dark-1.active,
.u-text-hover-color-2-dark-1.u-language-url:hover,
.u-text-hover-color-2-dark-1 .u-language-url:hover,
.u-text-hover-color-2-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-dark-1 .u-nav-link.active {
  color: #b6474c !important;
}
.u-text-color-2-dark-1 .u-svg-link,
.u-text-hover-color-2-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-dark-1 .u-svg-link,
.u-text-hover-color-2-dark-1:focus .u-svg-link {
  fill: #b6474c;
}
.u-link.u-text-color-2-dark-1:hover {
  color: #a44044 !important;
}
a.u-link.u-text-hover-color-2-dark-1:hover {
  color: #b6474c !important;
}
.u-text-color-2,
.u-input.u-text-color-2,
.u-input.u-text-color-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2,
li.active > a.u-button-style.u-text-color-2[class*="u-border-"],
a.u-button-style.u-text-color-2,
a.u-button-style.u-text-color-2[class*="u-border-"] {
  color: #f72e37 !important;
}
a.u-button-style.u-text-color-2:hover,
a.u-button-style.u-text-color-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2:focus,
a.u-button-style.u-text-color-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2:active,
a.u-button-style.u-button-style.u-text-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2.active,
a.u-button-style.u-button-style.u-text-color-2[class*="u-border-"].active {
  color: #f6121c !important;
}
a.u-button-style:hover > .u-text-hover-color-2,
a.u-button-style:hover > .u-text-hover-color-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2.active,
.u-text-hover-color-2.u-language-url:hover,
.u-text-hover-color-2 .u-language-url:hover,
.u-text-hover-color-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2 .u-nav-link.active {
  color: #f72e37 !important;
}
.u-text-color-2 .u-svg-link,
.u-text-hover-color-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2 .u-svg-link,
.u-text-hover-color-2:focus .u-svg-link {
  fill: #f72e37;
}
.u-link.u-text-color-2:hover {
  color: #f6121c !important;
}
a.u-link.u-text-hover-color-2:hover {
  color: #f72e37 !important;
}
.u-text-color-2-light-1,
.u-input.u-text-color-2-light-1,
.u-input.u-text-color-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-1,
li.active > a.u-button-style.u-text-color-2-light-1[class*="u-border-"],
a.u-button-style.u-text-color-2-light-1,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"] {
  color: #f96b72 !important;
}
a.u-button-style.u-text-color-2-light-1:hover,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-1:focus,
a.u-button-style.u-text-color-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-1:active,
a.u-button-style.u-button-style.u-text-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-1.active,
a.u-button-style.u-button-style.u-text-color-2-light-1[class*="u-border-"].active {
  color: #f84951 !important;
}
a.u-button-style:hover > .u-text-hover-color-2-light-1,
a.u-button-style:hover > .u-text-hover-color-2-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-1.active,
.u-text-hover-color-2-light-1.u-language-url:hover,
.u-text-hover-color-2-light-1 .u-language-url:hover,
.u-text-hover-color-2-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-1 .u-nav-link.active {
  color: #f96b72 !important;
}
.u-text-color-2-light-1 .u-svg-link,
.u-text-hover-color-2-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-1 .u-svg-link,
.u-text-hover-color-2-light-1:focus .u-svg-link {
  fill: #f96b72;
}
.u-link.u-text-color-2-light-1:hover {
  color: #f84951 !important;
}
a.u-link.u-text-hover-color-2-light-1:hover {
  color: #f96b72 !important;
}
.u-text-color-2-light-2,
.u-input.u-text-color-2-light-2,
.u-input.u-text-color-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-2,
li.active > a.u-button-style.u-text-color-2-light-2[class*="u-border-"],
a.u-button-style.u-text-color-2-light-2,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"] {
  color: #fcaaae !important;
}
a.u-button-style.u-text-color-2-light-2:hover,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-2:focus,
a.u-button-style.u-text-color-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-2:active,
a.u-button-style.u-button-style.u-text-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-2.active,
a.u-button-style.u-button-style.u-text-color-2-light-2[class*="u-border-"].active {
  color: #fb8187 !important;
}
a.u-button-style:hover > .u-text-hover-color-2-light-2,
a.u-button-style:hover > .u-text-hover-color-2-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-2.active,
.u-text-hover-color-2-light-2.u-language-url:hover,
.u-text-hover-color-2-light-2 .u-language-url:hover,
.u-text-hover-color-2-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-2 .u-nav-link.active {
  color: #fcaaae !important;
}
.u-text-color-2-light-2 .u-svg-link,
.u-text-hover-color-2-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-2 .u-svg-link,
.u-text-hover-color-2-light-2:focus .u-svg-link {
  fill: #fcaaae;
}
.u-link.u-text-color-2-light-2:hover {
  color: #fb8187 !important;
}
a.u-link.u-text-hover-color-2-light-2:hover {
  color: #fcaaae !important;
}
.u-text-color-2-light-3,
.u-input.u-text-color-2-light-3,
.u-input.u-text-color-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-light-3,
li.active > a.u-button-style.u-text-color-2-light-3[class*="u-border-"],
a.u-button-style.u-text-color-2-light-3,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"] {
  color: #feeaea !important;
}
a.u-button-style.u-text-color-2-light-3:hover,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-light-3:focus,
a.u-button-style.u-text-color-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-light-3:active,
a.u-button-style.u-button-style.u-text-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-light-3.active,
a.u-button-style.u-button-style.u-text-color-2-light-3[class*="u-border-"].active {
  color: #fcbbbb !important;
}
a.u-button-style:hover > .u-text-hover-color-2-light-3,
a.u-button-style:hover > .u-text-hover-color-2-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-2-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-light-3.active,
.u-text-hover-color-2-light-3.u-language-url:hover,
.u-text-hover-color-2-light-3 .u-language-url:hover,
.u-text-hover-color-2-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-light-3 .u-nav-link.active {
  color: #feeaea !important;
}
.u-text-color-2-light-3 .u-svg-link,
.u-text-hover-color-2-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-light-3 .u-svg-link,
.u-text-hover-color-2-light-3:focus .u-svg-link {
  fill: #feeaea;
}
.u-link.u-text-color-2-light-3:hover {
  color: #fcbbbb !important;
}
a.u-link.u-text-hover-color-2-light-3:hover {
  color: #feeaea !important;
}
.u-text-color-2-base,
.u-input.u-text-color-2-base,
.u-input.u-text-color-2-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-2-base,
li.active > a.u-button-style.u-text-color-2-base[class*="u-border-"],
a.u-button-style.u-text-color-2-base,
a.u-button-style.u-text-color-2-base[class*="u-border-"] {
  color: #f72e37 !important;
}
a.u-button-style.u-text-color-2-base:hover,
a.u-button-style.u-text-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-2-base:focus,
a.u-button-style.u-text-color-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-2-base:active,
a.u-button-style.u-button-style.u-text-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-2-base.active,
a.u-button-style.u-button-style.u-text-color-2-base[class*="u-border-"].active {
  color: #f6121c !important;
}
a.u-button-style:hover > .u-text-hover-color-2-base,
a.u-button-style:hover > .u-text-hover-color-2-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-2-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-2-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-2-base,
a.u-button-style.u-button-style.active > .u-text-active-color-2-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-2-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-2-base.active,
.u-text-hover-color-2-base.u-language-url:hover,
.u-text-hover-color-2-base .u-language-url:hover,
.u-text-hover-color-2-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-2-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-2-base .u-nav-link.active {
  color: #f72e37 !important;
}
.u-text-color-2-base .u-svg-link,
.u-text-hover-color-2-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-2-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-2-base .u-svg-link,
.u-text-hover-color-2-base:focus .u-svg-link {
  fill: #f72e37;
}
.u-link.u-text-color-2-base:hover {
  color: #f6121c !important;
}
a.u-link.u-text-hover-color-2-base:hover {
  color: #f72e37 !important;
}
.u-text-color-3-dark-3,
.u-input.u-text-color-3-dark-3,
.u-input.u-text-color-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-3,
li.active > a.u-button-style.u-text-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-3,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"] {
  color: #333129 !important;
}
a.u-button-style.u-text-color-3-dark-3:hover,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-3:focus,
a.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-3:active,
a.u-button-style.u-button-style.u-text-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-3.active,
a.u-button-style.u-button-style.u-text-color-3-dark-3[class*="u-border-"].active {
  color: #2e2c25 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-dark-3,
a.u-button-style:hover > .u-text-hover-color-3-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-3.active,
.u-text-hover-color-3-dark-3.u-language-url:hover,
.u-text-hover-color-3-dark-3 .u-language-url:hover,
.u-text-hover-color-3-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-3 .u-nav-link.active {
  color: #333129 !important;
}
.u-text-color-3-dark-3 .u-svg-link,
.u-text-hover-color-3-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-3 .u-svg-link,
.u-text-hover-color-3-dark-3:focus .u-svg-link {
  fill: #333129;
}
.u-link.u-text-color-3-dark-3:hover {
  color: #2e2c25 !important;
}
a.u-link.u-text-hover-color-3-dark-3:hover {
  color: #333129 !important;
}
.u-text-color-3-dark-2,
.u-input.u-text-color-3-dark-2,
.u-input.u-text-color-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-2,
li.active > a.u-button-style.u-text-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-2,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"] {
  color: #72683f !important;
}
a.u-button-style.u-text-color-3-dark-2:hover,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-2:focus,
a.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-2:active,
a.u-button-style.u-button-style.u-text-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-2.active,
a.u-button-style.u-button-style.u-text-color-3-dark-2[class*="u-border-"].active {
  color: #675e39 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-dark-2,
a.u-button-style:hover > .u-text-hover-color-3-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-2.active,
.u-text-hover-color-3-dark-2.u-language-url:hover,
.u-text-hover-color-3-dark-2 .u-language-url:hover,
.u-text-hover-color-3-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-2 .u-nav-link.active {
  color: #72683f !important;
}
.u-text-color-3-dark-2 .u-svg-link,
.u-text-hover-color-3-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-2 .u-svg-link,
.u-text-hover-color-3-dark-2:focus .u-svg-link {
  fill: #72683f;
}
.u-link.u-text-color-3-dark-2:hover {
  color: #675e39 !important;
}
a.u-link.u-text-hover-color-3-dark-2:hover {
  color: #72683f !important;
}
.u-text-color-3-dark-1,
.u-input.u-text-color-3-dark-1,
.u-input.u-text-color-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-dark-1,
li.active > a.u-button-style.u-text-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-3-dark-1,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"] {
  color: #b29a36 !important;
}
a.u-button-style.u-text-color-3-dark-1:hover,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-dark-1:focus,
a.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-dark-1:active,
a.u-button-style.u-button-style.u-text-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-dark-1.active,
a.u-button-style.u-button-style.u-text-color-3-dark-1[class*="u-border-"].active {
  color: #a08b31 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-dark-1,
a.u-button-style:hover > .u-text-hover-color-3-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-dark-1.active,
.u-text-hover-color-3-dark-1.u-language-url:hover,
.u-text-hover-color-3-dark-1 .u-language-url:hover,
.u-text-hover-color-3-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-dark-1 .u-nav-link.active {
  color: #b29a36 !important;
}
.u-text-color-3-dark-1 .u-svg-link,
.u-text-hover-color-3-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-dark-1 .u-svg-link,
.u-text-hover-color-3-dark-1:focus .u-svg-link {
  fill: #b29a36;
}
.u-link.u-text-color-3-dark-1:hover {
  color: #a08b31 !important;
}
a.u-link.u-text-hover-color-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-text-color-3,
.u-input.u-text-color-3,
.u-input.u-text-color-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3,
li.active > a.u-button-style.u-text-color-3[class*="u-border-"],
a.u-button-style.u-text-color-3,
a.u-button-style.u-text-color-3[class*="u-border-"] {
  color: #f1c50e !important;
}
a.u-button-style.u-text-color-3:hover,
a.u-button-style.u-text-color-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3:focus,
a.u-button-style.u-text-color-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3:active,
a.u-button-style.u-button-style.u-text-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3.active,
a.u-button-style.u-button-style.u-text-color-3[class*="u-border-"].active {
  color: #d9b10d !important;
}
a.u-button-style:hover > .u-text-hover-color-3,
a.u-button-style:hover > .u-text-hover-color-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3.active,
.u-text-hover-color-3.u-language-url:hover,
.u-text-hover-color-3 .u-language-url:hover,
.u-text-hover-color-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3 .u-nav-link.active {
  color: #f1c50e !important;
}
.u-text-color-3 .u-svg-link,
.u-text-hover-color-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3 .u-svg-link,
.u-text-hover-color-3:focus .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-color-3:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-color-3:hover {
  color: #f1c50e !important;
}
.u-text-color-3-light-1,
.u-input.u-text-color-3-light-1,
.u-input.u-text-color-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-1,
li.active > a.u-button-style.u-text-color-3-light-1[class*="u-border-"],
a.u-button-style.u-text-color-3-light-1,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"] {
  color: #f5d654 !important;
}
a.u-button-style.u-text-color-3-light-1:hover,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-1:focus,
a.u-button-style.u-text-color-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-1:active,
a.u-button-style.u-button-style.u-text-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-1.active,
a.u-button-style.u-button-style.u-text-color-3-light-1[class*="u-border-"].active {
  color: #f3cf35 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-light-1,
a.u-button-style:hover > .u-text-hover-color-3-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-1.active,
.u-text-hover-color-3-light-1.u-language-url:hover,
.u-text-hover-color-3-light-1 .u-language-url:hover,
.u-text-hover-color-3-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-1 .u-nav-link.active {
  color: #f5d654 !important;
}
.u-text-color-3-light-1 .u-svg-link,
.u-text-hover-color-3-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-1 .u-svg-link,
.u-text-hover-color-3-light-1:focus .u-svg-link {
  fill: #f5d654;
}
.u-link.u-text-color-3-light-1:hover {
  color: #f3cf35 !important;
}
a.u-link.u-text-hover-color-3-light-1:hover {
  color: #f5d654 !important;
}
.u-text-color-3-light-2,
.u-input.u-text-color-3-light-2,
.u-input.u-text-color-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-2,
li.active > a.u-button-style.u-text-color-3-light-2[class*="u-border-"],
a.u-button-style.u-text-color-3-light-2,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"] {
  color: #f9e79b !important;
}
a.u-button-style.u-text-color-3-light-2:hover,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-2:focus,
a.u-button-style.u-text-color-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-2:active,
a.u-button-style.u-button-style.u-text-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-2.active,
a.u-button-style.u-button-style.u-text-color-3-light-2[class*="u-border-"].active {
  color: #f7de75 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-light-2,
a.u-button-style:hover > .u-text-hover-color-3-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-2.active,
.u-text-hover-color-3-light-2.u-language-url:hover,
.u-text-hover-color-3-light-2 .u-language-url:hover,
.u-text-hover-color-3-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-2 .u-nav-link.active {
  color: #f9e79b !important;
}
.u-text-color-3-light-2 .u-svg-link,
.u-text-hover-color-3-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-2 .u-svg-link,
.u-text-hover-color-3-light-2:focus .u-svg-link {
  fill: #f9e79b;
}
.u-link.u-text-color-3-light-2:hover {
  color: #f7de75 !important;
}
a.u-link.u-text-hover-color-3-light-2:hover {
  color: #f9e79b !important;
}
.u-text-color-3-light-3,
.u-input.u-text-color-3-light-3,
.u-input.u-text-color-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-light-3,
li.active > a.u-button-style.u-text-color-3-light-3[class*="u-border-"],
a.u-button-style.u-text-color-3-light-3,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"] {
  color: #fef9e6 !important;
}
a.u-button-style.u-text-color-3-light-3:hover,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-light-3:focus,
a.u-button-style.u-text-color-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-light-3:active,
a.u-button-style.u-button-style.u-text-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-light-3.active,
a.u-button-style.u-button-style.u-text-color-3-light-3[class*="u-border-"].active {
  color: #fceeb7 !important;
}
a.u-button-style:hover > .u-text-hover-color-3-light-3,
a.u-button-style:hover > .u-text-hover-color-3-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-3-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-light-3.active,
.u-text-hover-color-3-light-3.u-language-url:hover,
.u-text-hover-color-3-light-3 .u-language-url:hover,
.u-text-hover-color-3-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-light-3 .u-nav-link.active {
  color: #fef9e6 !important;
}
.u-text-color-3-light-3 .u-svg-link,
.u-text-hover-color-3-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-light-3 .u-svg-link,
.u-text-hover-color-3-light-3:focus .u-svg-link {
  fill: #fef9e6;
}
.u-link.u-text-color-3-light-3:hover {
  color: #fceeb7 !important;
}
a.u-link.u-text-hover-color-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-text-color-3-base,
.u-input.u-text-color-3-base,
.u-input.u-text-color-3-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-3-base,
li.active > a.u-button-style.u-text-color-3-base[class*="u-border-"],
a.u-button-style.u-text-color-3-base,
a.u-button-style.u-text-color-3-base[class*="u-border-"] {
  color: #f1c50e !important;
}
a.u-button-style.u-text-color-3-base:hover,
a.u-button-style.u-text-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-3-base:focus,
a.u-button-style.u-text-color-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-3-base:active,
a.u-button-style.u-button-style.u-text-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-3-base.active,
a.u-button-style.u-button-style.u-text-color-3-base[class*="u-border-"].active {
  color: #d9b10d !important;
}
a.u-button-style:hover > .u-text-hover-color-3-base,
a.u-button-style:hover > .u-text-hover-color-3-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-3-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-3-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-3-base,
a.u-button-style.u-button-style.active > .u-text-active-color-3-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-3-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-3-base.active,
.u-text-hover-color-3-base.u-language-url:hover,
.u-text-hover-color-3-base .u-language-url:hover,
.u-text-hover-color-3-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-3-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-3-base .u-nav-link.active {
  color: #f1c50e !important;
}
.u-text-color-3-base .u-svg-link,
.u-text-hover-color-3-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-3-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-3-base .u-svg-link,
.u-text-hover-color-3-base:focus .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-color-3-base:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-color-3-base:hover {
  color: #f1c50e !important;
}
.u-text-color-4-dark-3,
.u-input.u-text-color-4-dark-3,
.u-input.u-text-color-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-3,
li.active > a.u-button-style.u-text-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-3,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"] {
  color: #293332 !important;
}
a.u-button-style.u-text-color-4-dark-3:hover,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-3:focus,
a.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-3:active,
a.u-button-style.u-button-style.u-text-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-3.active,
a.u-button-style.u-button-style.u-text-color-4-dark-3[class*="u-border-"].active {
  color: #252e2d !important;
}
a.u-button-style:hover > .u-text-hover-color-4-dark-3,
a.u-button-style:hover > .u-text-hover-color-4-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-3.active,
.u-text-hover-color-4-dark-3.u-language-url:hover,
.u-text-hover-color-4-dark-3 .u-language-url:hover,
.u-text-hover-color-4-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-3 .u-nav-link.active {
  color: #293332 !important;
}
.u-text-color-4-dark-3 .u-svg-link,
.u-text-hover-color-4-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-3 .u-svg-link,
.u-text-hover-color-4-dark-3:focus .u-svg-link {
  fill: #293332;
}
.u-link.u-text-color-4-dark-3:hover {
  color: #252e2d !important;
}
a.u-link.u-text-hover-color-4-dark-3:hover {
  color: #293332 !important;
}
.u-text-color-4-dark-2,
.u-input.u-text-color-4-dark-2,
.u-input.u-text-color-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-2,
li.active > a.u-button-style.u-text-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-2,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"] {
  color: #41807c !important;
}
a.u-button-style.u-text-color-4-dark-2:hover,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-2:focus,
a.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-2:active,
a.u-button-style.u-button-style.u-text-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-2.active,
a.u-button-style.u-button-style.u-text-color-4-dark-2[class*="u-border-"].active {
  color: #3a7370 !important;
}
a.u-button-style:hover > .u-text-hover-color-4-dark-2,
a.u-button-style:hover > .u-text-hover-color-4-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-2.active,
.u-text-hover-color-4-dark-2.u-language-url:hover,
.u-text-hover-color-4-dark-2 .u-language-url:hover,
.u-text-hover-color-4-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-2 .u-nav-link.active {
  color: #41807c !important;
}
.u-text-color-4-dark-2 .u-svg-link,
.u-text-hover-color-4-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-2 .u-svg-link,
.u-text-hover-color-4-dark-2:focus .u-svg-link {
  fill: #41807c;
}
.u-link.u-text-color-4-dark-2:hover {
  color: #3a7370 !important;
}
a.u-link.u-text-hover-color-4-dark-2:hover {
  color: #41807c !important;
}
.u-text-color-4-dark-1,
.u-input.u-text-color-4-dark-1,
.u-input.u-text-color-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-dark-1,
li.active > a.u-button-style.u-text-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-4-dark-1,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"] {
  color: #2cccc4 !important;
}
a.u-button-style.u-text-color-4-dark-1:hover,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-dark-1:focus,
a.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-dark-1:active,
a.u-button-style.u-button-style.u-text-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-dark-1.active,
a.u-button-style.u-button-style.u-text-color-4-dark-1[class*="u-border-"].active {
  color: #28b8b0 !important;
}
a.u-button-style:hover > .u-text-hover-color-4-dark-1,
a.u-button-style:hover > .u-text-hover-color-4-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-dark-1.active,
.u-text-hover-color-4-dark-1.u-language-url:hover,
.u-text-hover-color-4-dark-1 .u-language-url:hover,
.u-text-hover-color-4-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-dark-1 .u-nav-link.active {
  color: #2cccc4 !important;
}
.u-text-color-4-dark-1 .u-svg-link,
.u-text-hover-color-4-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-dark-1 .u-svg-link,
.u-text-hover-color-4-dark-1:focus .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-color-4-dark-1:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-color-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-text-color-4,
.u-input.u-text-color-4,
.u-input.u-text-color-4[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4,
li.active > a.u-button-style.u-text-color-4[class*="u-border-"],
a.u-button-style.u-text-color-4,
a.u-button-style.u-text-color-4[class*="u-border-"] {
  color: #3be8e0 !important;
}
a.u-button-style.u-text-color-4:hover,
a.u-button-style.u-text-color-4[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4:focus,
a.u-button-style.u-text-color-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4:active,
a.u-button-style.u-button-style.u-text-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4.active,
a.u-button-style.u-button-style.u-text-color-4[class*="u-border-"].active {
  color: #21e5dc !important;
}
a.u-button-style:hover > .u-text-hover-color-4,
a.u-button-style:hover > .u-text-hover-color-4[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4:hover,
a.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4:focus,
a.u-button-style.u-button-style.u-text-hover-color-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4,
a.u-button-style.u-button-style.active > .u-text-active-color-4[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4.active,
.u-text-hover-color-4.u-language-url:hover,
.u-text-hover-color-4 .u-language-url:hover,
.u-text-hover-color-4.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4 .u-nav-link.active {
  color: #3be8e0 !important;
}
.u-text-color-4 .u-svg-link,
.u-text-hover-color-4:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4 .u-svg-link,
.u-text-hover-color-4:focus .u-svg-link {
  fill: #3be8e0;
}
.u-link.u-text-color-4:hover {
  color: #21e5dc !important;
}
a.u-link.u-text-hover-color-4:hover {
  color: #3be8e0 !important;
}
.u-text-color-4-light-1,
.u-input.u-text-color-4-light-1,
.u-input.u-text-color-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-1,
li.active > a.u-button-style.u-text-color-4-light-1[class*="u-border-"],
a.u-button-style.u-text-color-4-light-1,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"] {
  color: #72efe9 !important;
}
a.u-button-style.u-text-color-4-light-1:hover,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-1:focus,
a.u-button-style.u-text-color-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-1:active,
a.u-button-style.u-button-style.u-text-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-1.active,
a.u-button-style.u-button-style.u-text-color-4-light-1[class*="u-border-"].active {
  color: #52ebe4 !important;
}
a.u-button-style:hover > .u-text-hover-color-4-light-1,
a.u-button-style:hover > .u-text-hover-color-4-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-1.active,
.u-text-hover-color-4-light-1.u-language-url:hover,
.u-text-hover-color-4-light-1 .u-language-url:hover,
.u-text-hover-color-4-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-1 .u-nav-link.active {
  color: #72efe9 !important;
}
.u-text-color-4-light-1 .u-svg-link,
.u-text-hover-color-4-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-1 .u-svg-link,
.u-text-hover-color-4-light-1:focus .u-svg-link {
  fill: #72efe9;
}
.u-link.u-text-color-4-light-1:hover {
  color: #52ebe4 !important;
}
a.u-link.u-text-hover-color-4-light-1:hover {
  color: #72efe9 !important;
}
.u-text-color-4-light-2,
.u-input.u-text-color-4-light-2,
.u-input.u-text-color-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-2,
li.active > a.u-button-style.u-text-color-4-light-2[class*="u-border-"],
a.u-button-style.u-text-color-4-light-2,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"] {
  color: #adf6f2 !important;
}
a.u-button-style.u-text-color-4-light-2:hover,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-2:focus,
a.u-button-style.u-text-color-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-2:active,
a.u-button-style.u-button-style.u-text-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-2.active,
a.u-button-style.u-button-style.u-text-color-4-light-2[class*="u-border-"].active {
  color: #87f2ec !important;
}
a.u-button-style:hover > .u-text-hover-color-4-light-2,
a.u-button-style:hover > .u-text-hover-color-4-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-2.active,
.u-text-hover-color-4-light-2.u-language-url:hover,
.u-text-hover-color-4-light-2 .u-language-url:hover,
.u-text-hover-color-4-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-2 .u-nav-link.active {
  color: #adf6f2 !important;
}
.u-text-color-4-light-2 .u-svg-link,
.u-text-hover-color-4-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-2 .u-svg-link,
.u-text-hover-color-4-light-2:focus .u-svg-link {
  fill: #adf6f2;
}
.u-link.u-text-color-4-light-2:hover {
  color: #87f2ec !important;
}
a.u-link.u-text-hover-color-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-text-color-4-light-3,
.u-input.u-text-color-4-light-3,
.u-input.u-text-color-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-light-3,
li.active > a.u-button-style.u-text-color-4-light-3[class*="u-border-"],
a.u-button-style.u-text-color-4-light-3,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"] {
  color: #eafdfc !important;
}
a.u-button-style.u-text-color-4-light-3:hover,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-light-3:focus,
a.u-button-style.u-text-color-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-light-3:active,
a.u-button-style.u-button-style.u-text-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-light-3.active,
a.u-button-style.u-button-style.u-text-color-4-light-3[class*="u-border-"].active {
  color: #bef9f6 !important;
}
a.u-button-style:hover > .u-text-hover-color-4-light-3,
a.u-button-style:hover > .u-text-hover-color-4-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-4-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-light-3.active,
.u-text-hover-color-4-light-3.u-language-url:hover,
.u-text-hover-color-4-light-3 .u-language-url:hover,
.u-text-hover-color-4-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-light-3 .u-nav-link.active {
  color: #eafdfc !important;
}
.u-text-color-4-light-3 .u-svg-link,
.u-text-hover-color-4-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-light-3 .u-svg-link,
.u-text-hover-color-4-light-3:focus .u-svg-link {
  fill: #eafdfc;
}
.u-link.u-text-color-4-light-3:hover {
  color: #bef9f6 !important;
}
a.u-link.u-text-hover-color-4-light-3:hover {
  color: #eafdfc !important;
}
.u-text-color-4-base,
.u-input.u-text-color-4-base,
.u-input.u-text-color-4-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-4-base,
li.active > a.u-button-style.u-text-color-4-base[class*="u-border-"],
a.u-button-style.u-text-color-4-base,
a.u-button-style.u-text-color-4-base[class*="u-border-"] {
  color: #2cccc4 !important;
}
a.u-button-style.u-text-color-4-base:hover,
a.u-button-style.u-text-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-4-base:focus,
a.u-button-style.u-text-color-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-4-base:active,
a.u-button-style.u-button-style.u-text-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-4-base.active,
a.u-button-style.u-button-style.u-text-color-4-base[class*="u-border-"].active {
  color: #28b8b0 !important;
}
a.u-button-style:hover > .u-text-hover-color-4-base,
a.u-button-style:hover > .u-text-hover-color-4-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-4-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-4-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-4-base,
a.u-button-style.u-button-style.active > .u-text-active-color-4-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-4-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-4-base.active,
.u-text-hover-color-4-base.u-language-url:hover,
.u-text-hover-color-4-base .u-language-url:hover,
.u-text-hover-color-4-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-4-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-4-base .u-nav-link.active {
  color: #2cccc4 !important;
}
.u-text-color-4-base .u-svg-link,
.u-text-hover-color-4-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-4-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-4-base .u-svg-link,
.u-text-hover-color-4-base:focus .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-color-4-base:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-color-4-base:hover {
  color: #2cccc4 !important;
}
.u-text-color-5-dark-3,
.u-input.u-text-color-5-dark-3,
.u-input.u-text-color-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-3,
li.active > a.u-button-style.u-text-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-3,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"] {
  color: #292d33 !important;
}
a.u-button-style.u-text-color-5-dark-3:hover,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-3:focus,
a.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-3:active,
a.u-button-style.u-button-style.u-text-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-3.active,
a.u-button-style.u-button-style.u-text-color-5-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
a.u-button-style:hover > .u-text-hover-color-5-dark-3,
a.u-button-style:hover > .u-text-hover-color-5-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-3.active,
.u-text-hover-color-5-dark-3.u-language-url:hover,
.u-text-hover-color-5-dark-3 .u-language-url:hover,
.u-text-hover-color-5-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-3 .u-nav-link.active {
  color: #292d33 !important;
}
.u-text-color-5-dark-3 .u-svg-link,
.u-text-hover-color-5-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-3 .u-svg-link,
.u-text-hover-color-5-dark-3:focus .u-svg-link {
  fill: #292d33;
}
.u-link.u-text-color-5-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-color-5-dark-3:hover {
  color: #292d33 !important;
}
.u-text-color-5-dark-2,
.u-input.u-text-color-5-dark-2,
.u-input.u-text-color-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-2,
li.active > a.u-button-style.u-text-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-2,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"] {
  color: #555c66 !important;
}
a.u-button-style.u-text-color-5-dark-2:hover,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-2:focus,
a.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-2:active,
a.u-button-style.u-button-style.u-text-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-2.active,
a.u-button-style.u-button-style.u-text-color-5-dark-2[class*="u-border-"].active {
  color: #4d535c !important;
}
a.u-button-style:hover > .u-text-hover-color-5-dark-2,
a.u-button-style:hover > .u-text-hover-color-5-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-2.active,
.u-text-hover-color-5-dark-2.u-language-url:hover,
.u-text-hover-color-5-dark-2 .u-language-url:hover,
.u-text-hover-color-5-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-2 .u-nav-link.active {
  color: #555c66 !important;
}
.u-text-color-5-dark-2 .u-svg-link,
.u-text-hover-color-5-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-2 .u-svg-link,
.u-text-hover-color-5-dark-2:focus .u-svg-link {
  fill: #555c66;
}
.u-link.u-text-color-5-dark-2:hover {
  color: #4d535c !important;
}
a.u-link.u-text-hover-color-5-dark-2:hover {
  color: #555c66 !important;
}
.u-text-color-5-dark-1,
.u-input.u-text-color-5-dark-1,
.u-input.u-text-color-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-dark-1,
li.active > a.u-button-style.u-text-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-text-color-5-dark-1,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"] {
  color: #858e99 !important;
}
a.u-button-style.u-text-color-5-dark-1:hover,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-dark-1:focus,
a.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-dark-1:active,
a.u-button-style.u-button-style.u-text-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-dark-1.active,
a.u-button-style.u-button-style.u-text-color-5-dark-1[class*="u-border-"].active {
  color: #75808c !important;
}
a.u-button-style:hover > .u-text-hover-color-5-dark-1,
a.u-button-style:hover > .u-text-hover-color-5-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-dark-1.active,
.u-text-hover-color-5-dark-1.u-language-url:hover,
.u-text-hover-color-5-dark-1 .u-language-url:hover,
.u-text-hover-color-5-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-dark-1 .u-nav-link.active {
  color: #858e99 !important;
}
.u-text-color-5-dark-1 .u-svg-link,
.u-text-hover-color-5-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-dark-1 .u-svg-link,
.u-text-hover-color-5-dark-1:focus .u-svg-link {
  fill: #858e99;
}
.u-link.u-text-color-5-dark-1:hover {
  color: #75808c !important;
}
a.u-link.u-text-hover-color-5-dark-1:hover {
  color: #858e99 !important;
}
.u-text-color-5,
.u-input.u-text-color-5,
.u-input.u-text-color-5[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5,
li.active > a.u-button-style.u-text-color-5[class*="u-border-"],
a.u-button-style.u-text-color-5,
a.u-button-style.u-text-color-5[class*="u-border-"] {
  color: #b9c1cc !important;
}
a.u-button-style.u-text-color-5:hover,
a.u-button-style.u-text-color-5[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5:focus,
a.u-button-style.u-text-color-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5:active,
a.u-button-style.u-button-style.u-text-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5.active,
a.u-button-style.u-button-style.u-text-color-5[class*="u-border-"].active {
  color: #a2adbc !important;
}
a.u-button-style:hover > .u-text-hover-color-5,
a.u-button-style:hover > .u-text-hover-color-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5:hover,
a.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5:focus,
a.u-button-style.u-button-style.u-text-hover-color-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5,
a.u-button-style.u-button-style.active > .u-text-active-color-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5.active,
.u-text-hover-color-5.u-language-url:hover,
.u-text-hover-color-5 .u-language-url:hover,
.u-text-hover-color-5.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5 .u-nav-link.active {
  color: #b9c1cc !important;
}
.u-text-color-5 .u-svg-link,
.u-text-hover-color-5:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5 .u-svg-link,
.u-text-hover-color-5:focus .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-color-5:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-color-5:hover {
  color: #b9c1cc !important;
}
.u-text-color-5-light-1,
.u-input.u-text-color-5-light-1,
.u-input.u-text-color-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-1,
li.active > a.u-button-style.u-text-color-5-light-1[class*="u-border-"],
a.u-button-style.u-text-color-5-light-1,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"] {
  color: #ccd3db !important;
}
a.u-button-style.u-text-color-5-light-1:hover,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-1:focus,
a.u-button-style.u-text-color-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-1:active,
a.u-button-style.u-button-style.u-text-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-1.active,
a.u-button-style.u-button-style.u-text-color-5-light-1[class*="u-border-"].active {
  color: #b3bec9 !important;
}
a.u-button-style:hover > .u-text-hover-color-5-light-1,
a.u-button-style:hover > .u-text-hover-color-5-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-1,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-1.active,
.u-text-hover-color-5-light-1.u-language-url:hover,
.u-text-hover-color-5-light-1 .u-language-url:hover,
.u-text-hover-color-5-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-1 .u-nav-link.active {
  color: #ccd3db !important;
}
.u-text-color-5-light-1 .u-svg-link,
.u-text-hover-color-5-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-1 .u-svg-link,
.u-text-hover-color-5-light-1:focus .u-svg-link {
  fill: #ccd3db;
}
.u-link.u-text-color-5-light-1:hover {
  color: #b3bec9 !important;
}
a.u-link.u-text-hover-color-5-light-1:hover {
  color: #ccd3db !important;
}
.u-text-color-5-light-2,
.u-input.u-text-color-5-light-2,
.u-input.u-text-color-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-2,
li.active > a.u-button-style.u-text-color-5-light-2[class*="u-border-"],
a.u-button-style.u-text-color-5-light-2,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"] {
  color: #e0e5eb !important;
}
a.u-button-style.u-text-color-5-light-2:hover,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-2:focus,
a.u-button-style.u-text-color-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-2:active,
a.u-button-style.u-button-style.u-text-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-2.active,
a.u-button-style.u-button-style.u-text-color-5-light-2[class*="u-border-"].active {
  color: #c4ced9 !important;
}
a.u-button-style:hover > .u-text-hover-color-5-light-2,
a.u-button-style:hover > .u-text-hover-color-5-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-2,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-2.active,
.u-text-hover-color-5-light-2.u-language-url:hover,
.u-text-hover-color-5-light-2 .u-language-url:hover,
.u-text-hover-color-5-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-2 .u-nav-link.active {
  color: #e0e5eb !important;
}
.u-text-color-5-light-2 .u-svg-link,
.u-text-hover-color-5-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-2 .u-svg-link,
.u-text-hover-color-5-light-2:focus .u-svg-link {
  fill: #e0e5eb;
}
.u-link.u-text-color-5-light-2:hover {
  color: #c4ced9 !important;
}
a.u-link.u-text-hover-color-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-text-color-5-light-3,
.u-input.u-text-color-5-light-3,
.u-input.u-text-color-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-light-3,
li.active > a.u-button-style.u-text-color-5-light-3[class*="u-border-"],
a.u-button-style.u-text-color-5-light-3,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"] {
  color: #f5f7fa !important;
}
a.u-button-style.u-text-color-5-light-3:hover,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-light-3:focus,
a.u-button-style.u-text-color-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-light-3:active,
a.u-button-style.u-button-style.u-text-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-light-3.active,
a.u-button-style.u-button-style.u-text-color-5-light-3[class*="u-border-"].active {
  color: #d4dde9 !important;
}
a.u-button-style:hover > .u-text-hover-color-5-light-3,
a.u-button-style:hover > .u-text-hover-color-5-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-3,
a.u-button-style.u-button-style.active > .u-text-active-color-5-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-light-3.active,
.u-text-hover-color-5-light-3.u-language-url:hover,
.u-text-hover-color-5-light-3 .u-language-url:hover,
.u-text-hover-color-5-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-light-3 .u-nav-link.active {
  color: #f5f7fa !important;
}
.u-text-color-5-light-3 .u-svg-link,
.u-text-hover-color-5-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-light-3 .u-svg-link,
.u-text-hover-color-5-light-3:focus .u-svg-link {
  fill: #f5f7fa;
}
.u-link.u-text-color-5-light-3:hover {
  color: #d4dde9 !important;
}
a.u-link.u-text-hover-color-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-text-color-5-base,
.u-input.u-text-color-5-base,
.u-input.u-text-color-5-base[class*="u-border-"],
li.active > a.u-button-style.u-text-color-5-base,
li.active > a.u-button-style.u-text-color-5-base[class*="u-border-"],
a.u-button-style.u-text-color-5-base,
a.u-button-style.u-text-color-5-base[class*="u-border-"] {
  color: #b9c1cc !important;
}
a.u-button-style.u-text-color-5-base:hover,
a.u-button-style.u-text-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-text-color-5-base:focus,
a.u-button-style.u-text-color-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-color-5-base:active,
a.u-button-style.u-button-style.u-text-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-color-5-base.active,
a.u-button-style.u-button-style.u-text-color-5-base[class*="u-border-"].active {
  color: #a2adbc !important;
}
a.u-button-style:hover > .u-text-hover-color-5-base,
a.u-button-style:hover > .u-text-hover-color-5-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-color-5-base:hover,
a.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-color-5-base:focus,
a.u-button-style.u-button-style.u-text-hover-color-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-color-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-color-5-base,
a.u-button-style.u-button-style.active > .u-text-active-color-5-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-color-5-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-color-5-base.active,
.u-text-hover-color-5-base.u-language-url:hover,
.u-text-hover-color-5-base .u-language-url:hover,
.u-text-hover-color-5-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-color-5-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-color-5-base .u-nav-link.active {
  color: #b9c1cc !important;
}
.u-text-color-5-base .u-svg-link,
.u-text-hover-color-5-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-color-5-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-color-5-base .u-svg-link,
.u-text-hover-color-5-base:focus .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-color-5-base:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-color-5-base:hover {
  color: #b9c1cc !important;
}
.u-text-palette-1-dark-3,
.u-input.u-text-palette-1-dark-3,
.u-input.u-text-palette-1-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-3,
li.active > a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-3,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"] {
  color: #292e33 !important;
}
a.u-button-style.u-text-palette-1-dark-3:hover,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-3:focus,
a.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-dark-3,
a.u-button-style:hover > .u-text-hover-palette-1-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-3.active,
.u-text-hover-palette-1-dark-3.u-language-url:hover,
.u-text-hover-palette-1-dark-3 .u-language-url:hover,
.u-text-hover-palette-1-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-3 .u-nav-link.active {
  color: #292e33 !important;
}
.u-text-palette-1-dark-3 .u-svg-link,
.u-text-hover-palette-1-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-3 .u-svg-link,
.u-text-hover-palette-1-dark-3:focus .u-svg-link {
  fill: #292e33;
}
.u-link.u-text-palette-1-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-palette-1-dark-3:hover {
  color: #292e33 !important;
}
.u-text-palette-1-dark-2,
.u-input.u-text-palette-1-dark-2,
.u-input.u-text-palette-1-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-2,
li.active > a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-2,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"] {
  color: #425465 !important;
}
a.u-button-style.u-text-palette-1-dark-2:hover,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-2:focus,
a.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-2[class*="u-border-"].active {
  color: #3b4c5b !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-dark-2,
a.u-button-style:hover > .u-text-hover-palette-1-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-2.active,
.u-text-hover-palette-1-dark-2.u-language-url:hover,
.u-text-hover-palette-1-dark-2 .u-language-url:hover,
.u-text-hover-palette-1-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-2 .u-nav-link.active {
  color: #425465 !important;
}
.u-text-palette-1-dark-2 .u-svg-link,
.u-text-hover-palette-1-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-2 .u-svg-link,
.u-text-hover-palette-1-dark-2:focus .u-svg-link {
  fill: #425465;
}
.u-link.u-text-palette-1-dark-2:hover {
  color: #3b4c5b !important;
}
a.u-link.u-text-hover-palette-1-dark-2:hover {
  color: #425465 !important;
}
.u-text-palette-1-dark-1,
.u-input.u-text-palette-1-dark-1,
.u-input.u-text-palette-1-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-dark-1,
li.active > a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-1-dark-1,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"] {
  color: #4c7397 !important;
}
a.u-button-style.u-text-palette-1-dark-1:hover,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-dark-1:focus,
a.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-1-dark-1[class*="u-border-"].active {
  color: #446888 !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-dark-1,
a.u-button-style:hover > .u-text-hover-palette-1-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-dark-1.active,
.u-text-hover-palette-1-dark-1.u-language-url:hover,
.u-text-hover-palette-1-dark-1 .u-language-url:hover,
.u-text-hover-palette-1-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-dark-1 .u-nav-link.active {
  color: #4c7397 !important;
}
.u-text-palette-1-dark-1 .u-svg-link,
.u-text-hover-palette-1-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-dark-1 .u-svg-link,
.u-text-hover-palette-1-dark-1:focus .u-svg-link {
  fill: #4c7397;
}
.u-link.u-text-palette-1-dark-1:hover {
  color: #446888 !important;
}
a.u-link.u-text-hover-palette-1-dark-1:hover {
  color: #4c7397 !important;
}
.u-text-palette-1,
.u-input.u-text-palette-1,
.u-input.u-text-palette-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1,
li.active > a.u-button-style.u-text-palette-1[class*="u-border-"],
a.u-button-style.u-text-palette-1,
a.u-button-style.u-text-palette-1[class*="u-border-"] {
  color: #478ac9 !important;
}
a.u-button-style.u-text-palette-1:hover,
a.u-button-style.u-text-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1:focus,
a.u-button-style.u-text-palette-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1:active,
a.u-button-style.u-button-style.u-text-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1.active,
a.u-button-style.u-button-style.u-text-palette-1[class*="u-border-"].active {
  color: #387cbd !important;
}
a.u-button-style:hover > .u-text-hover-palette-1,
a.u-button-style:hover > .u-text-hover-palette-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1.active,
.u-text-hover-palette-1.u-language-url:hover,
.u-text-hover-palette-1 .u-language-url:hover,
.u-text-hover-palette-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1 .u-nav-link.active {
  color: #478ac9 !important;
}
.u-text-palette-1 .u-svg-link,
.u-text-hover-palette-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1 .u-svg-link,
.u-text-hover-palette-1:focus .u-svg-link {
  fill: #478ac9;
}
.u-link.u-text-palette-1:hover {
  color: #387cbd !important;
}
a.u-link.u-text-hover-palette-1:hover {
  color: #478ac9 !important;
}
.u-text-palette-1-light-1,
.u-input.u-text-palette-1-light-1,
.u-input.u-text-palette-1-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-1,
li.active > a.u-button-style.u-text-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-1,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"] {
  color: #77aad9 !important;
}
a.u-button-style.u-text-palette-1-light-1:hover,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-1:focus,
a.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-1:active,
a.u-button-style.u-button-style.u-text-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-1.active,
a.u-button-style.u-button-style.u-text-palette-1-light-1[class*="u-border-"].active {
  color: #5d9ad2 !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-light-1,
a.u-button-style:hover > .u-text-hover-palette-1-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-1.active,
.u-text-hover-palette-1-light-1.u-language-url:hover,
.u-text-hover-palette-1-light-1 .u-language-url:hover,
.u-text-hover-palette-1-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-1 .u-nav-link.active {
  color: #77aad9 !important;
}
.u-text-palette-1-light-1 .u-svg-link,
.u-text-hover-palette-1-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-1 .u-svg-link,
.u-text-hover-palette-1-light-1:focus .u-svg-link {
  fill: #77aad9;
}
.u-link.u-text-palette-1-light-1:hover {
  color: #5d9ad2 !important;
}
a.u-link.u-text-hover-palette-1-light-1:hover {
  color: #77aad9 !important;
}
.u-text-palette-1-light-2,
.u-input.u-text-palette-1-light-2,
.u-input.u-text-palette-1-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-2,
li.active > a.u-button-style.u-text-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-2,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"] {
  color: #adcce9 !important;
}
a.u-button-style.u-text-palette-1-light-2:hover,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-2:focus,
a.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-2:active,
a.u-button-style.u-button-style.u-text-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-2.active,
a.u-button-style.u-button-style.u-text-palette-1-light-2[class*="u-border-"].active {
  color: #8db8e0 !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-light-2,
a.u-button-style:hover > .u-text-hover-palette-1-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-2.active,
.u-text-hover-palette-1-light-2.u-language-url:hover,
.u-text-hover-palette-1-light-2 .u-language-url:hover,
.u-text-hover-palette-1-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-2 .u-nav-link.active {
  color: #adcce9 !important;
}
.u-text-palette-1-light-2 .u-svg-link,
.u-text-hover-palette-1-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-2 .u-svg-link,
.u-text-hover-palette-1-light-2:focus .u-svg-link {
  fill: #adcce9;
}
.u-link.u-text-palette-1-light-2:hover {
  color: #8db8e0 !important;
}
a.u-link.u-text-hover-palette-1-light-2:hover {
  color: #adcce9 !important;
}
.u-text-palette-1-light-3,
.u-input.u-text-palette-1-light-3,
.u-input.u-text-palette-1-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-light-3,
li.active > a.u-button-style.u-text-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-1-light-3,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"] {
  color: #e9f2fa !important;
}
a.u-button-style.u-text-palette-1-light-3:hover,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-light-3:focus,
a.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-light-3:active,
a.u-button-style.u-button-style.u-text-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-light-3.active,
a.u-button-style.u-button-style.u-text-palette-1-light-3[class*="u-border-"].active {
  color: #c2dbf1 !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-light-3,
a.u-button-style:hover > .u-text-hover-palette-1-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-light-3.active,
.u-text-hover-palette-1-light-3.u-language-url:hover,
.u-text-hover-palette-1-light-3 .u-language-url:hover,
.u-text-hover-palette-1-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-light-3 .u-nav-link.active {
  color: #e9f2fa !important;
}
.u-text-palette-1-light-3 .u-svg-link,
.u-text-hover-palette-1-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-light-3 .u-svg-link,
.u-text-hover-palette-1-light-3:focus .u-svg-link {
  fill: #e9f2fa;
}
.u-link.u-text-palette-1-light-3:hover {
  color: #c2dbf1 !important;
}
a.u-link.u-text-hover-palette-1-light-3:hover {
  color: #e9f2fa !important;
}
.u-text-palette-1-base,
.u-input.u-text-palette-1-base,
.u-input.u-text-palette-1-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-1-base,
li.active > a.u-button-style.u-text-palette-1-base[class*="u-border-"],
a.u-button-style.u-text-palette-1-base,
a.u-button-style.u-text-palette-1-base[class*="u-border-"] {
  color: #478ac9 !important;
}
a.u-button-style.u-text-palette-1-base:hover,
a.u-button-style.u-text-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-1-base:focus,
a.u-button-style.u-text-palette-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-1-base:active,
a.u-button-style.u-button-style.u-text-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-1-base.active,
a.u-button-style.u-button-style.u-text-palette-1-base[class*="u-border-"].active {
  color: #387cbd !important;
}
a.u-button-style:hover > .u-text-hover-palette-1-base,
a.u-button-style:hover > .u-text-hover-palette-1-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-1-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-1-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-1-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-1-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-1-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-1-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-1-base.active,
.u-text-hover-palette-1-base.u-language-url:hover,
.u-text-hover-palette-1-base .u-language-url:hover,
.u-text-hover-palette-1-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-1-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-1-base .u-nav-link.active {
  color: #478ac9 !important;
}
.u-text-palette-1-base .u-svg-link,
.u-text-hover-palette-1-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-1-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-1-base .u-svg-link,
.u-text-hover-palette-1-base:focus .u-svg-link {
  fill: #478ac9;
}
.u-link.u-text-palette-1-base:hover {
  color: #387cbd !important;
}
a.u-link.u-text-hover-palette-1-base:hover {
  color: #478ac9 !important;
}
.u-text-palette-2-dark-3,
.u-input.u-text-palette-2-dark-3,
.u-input.u-text-palette-2-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-3,
li.active > a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-3,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"] {
  color: #332929 !important;
}
a.u-button-style.u-text-palette-2-dark-3:hover,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-3:focus,
a.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-3[class*="u-border-"].active {
  color: #2e2525 !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-dark-3,
a.u-button-style:hover > .u-text-hover-palette-2-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-3.active,
.u-text-hover-palette-2-dark-3.u-language-url:hover,
.u-text-hover-palette-2-dark-3 .u-language-url:hover,
.u-text-hover-palette-2-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-3 .u-nav-link.active {
  color: #332929 !important;
}
.u-text-palette-2-dark-3 .u-svg-link,
.u-text-hover-palette-2-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-3 .u-svg-link,
.u-text-hover-palette-2-dark-3:focus .u-svg-link {
  fill: #332929;
}
.u-link.u-text-palette-2-dark-3:hover {
  color: #2e2525 !important;
}
a.u-link.u-text-hover-palette-2-dark-3:hover {
  color: #332929 !important;
}
.u-text-palette-2-dark-2,
.u-input.u-text-palette-2-dark-2,
.u-input.u-text-palette-2-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-2,
li.active > a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-2,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"] {
  color: #744547 !important;
}
a.u-button-style.u-text-palette-2-dark-2:hover,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-2:focus,
a.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-2[class*="u-border-"].active {
  color: #683e40 !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-dark-2,
a.u-button-style:hover > .u-text-hover-palette-2-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-2.active,
.u-text-hover-palette-2-dark-2.u-language-url:hover,
.u-text-hover-palette-2-dark-2 .u-language-url:hover,
.u-text-hover-palette-2-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-2 .u-nav-link.active {
  color: #744547 !important;
}
.u-text-palette-2-dark-2 .u-svg-link,
.u-text-hover-palette-2-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-2 .u-svg-link,
.u-text-hover-palette-2-dark-2:focus .u-svg-link {
  fill: #744547;
}
.u-link.u-text-palette-2-dark-2:hover {
  color: #683e40 !important;
}
a.u-link.u-text-hover-palette-2-dark-2:hover {
  color: #744547 !important;
}
.u-text-palette-2-dark-1,
.u-input.u-text-palette-2-dark-1,
.u-input.u-text-palette-2-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-dark-1,
li.active > a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-2-dark-1,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"] {
  color: #b6474c !important;
}
a.u-button-style.u-text-palette-2-dark-1:hover,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-dark-1:focus,
a.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-2-dark-1[class*="u-border-"].active {
  color: #a44044 !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-dark-1,
a.u-button-style:hover > .u-text-hover-palette-2-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-dark-1.active,
.u-text-hover-palette-2-dark-1.u-language-url:hover,
.u-text-hover-palette-2-dark-1 .u-language-url:hover,
.u-text-hover-palette-2-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-dark-1 .u-nav-link.active {
  color: #b6474c !important;
}
.u-text-palette-2-dark-1 .u-svg-link,
.u-text-hover-palette-2-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-dark-1 .u-svg-link,
.u-text-hover-palette-2-dark-1:focus .u-svg-link {
  fill: #b6474c;
}
.u-link.u-text-palette-2-dark-1:hover {
  color: #a44044 !important;
}
a.u-link.u-text-hover-palette-2-dark-1:hover {
  color: #b6474c !important;
}
.u-text-palette-2,
.u-input.u-text-palette-2,
.u-input.u-text-palette-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2,
li.active > a.u-button-style.u-text-palette-2[class*="u-border-"],
a.u-button-style.u-text-palette-2,
a.u-button-style.u-text-palette-2[class*="u-border-"] {
  color: #f72e37 !important;
}
a.u-button-style.u-text-palette-2:hover,
a.u-button-style.u-text-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2:focus,
a.u-button-style.u-text-palette-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2:active,
a.u-button-style.u-button-style.u-text-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2.active,
a.u-button-style.u-button-style.u-text-palette-2[class*="u-border-"].active {
  color: #f6121c !important;
}
a.u-button-style:hover > .u-text-hover-palette-2,
a.u-button-style:hover > .u-text-hover-palette-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2.active,
.u-text-hover-palette-2.u-language-url:hover,
.u-text-hover-palette-2 .u-language-url:hover,
.u-text-hover-palette-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2 .u-nav-link.active {
  color: #f72e37 !important;
}
.u-text-palette-2 .u-svg-link,
.u-text-hover-palette-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2 .u-svg-link,
.u-text-hover-palette-2:focus .u-svg-link {
  fill: #f72e37;
}
.u-link.u-text-palette-2:hover {
  color: #f6121c !important;
}
a.u-link.u-text-hover-palette-2:hover {
  color: #f72e37 !important;
}
.u-text-palette-2-light-1,
.u-input.u-text-palette-2-light-1,
.u-input.u-text-palette-2-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-1,
li.active > a.u-button-style.u-text-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-1,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"] {
  color: #f96b72 !important;
}
a.u-button-style.u-text-palette-2-light-1:hover,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-1:focus,
a.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-1:active,
a.u-button-style.u-button-style.u-text-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-1.active,
a.u-button-style.u-button-style.u-text-palette-2-light-1[class*="u-border-"].active {
  color: #f84951 !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-light-1,
a.u-button-style:hover > .u-text-hover-palette-2-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-1.active,
.u-text-hover-palette-2-light-1.u-language-url:hover,
.u-text-hover-palette-2-light-1 .u-language-url:hover,
.u-text-hover-palette-2-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-1 .u-nav-link.active {
  color: #f96b72 !important;
}
.u-text-palette-2-light-1 .u-svg-link,
.u-text-hover-palette-2-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-1 .u-svg-link,
.u-text-hover-palette-2-light-1:focus .u-svg-link {
  fill: #f96b72;
}
.u-link.u-text-palette-2-light-1:hover {
  color: #f84951 !important;
}
a.u-link.u-text-hover-palette-2-light-1:hover {
  color: #f96b72 !important;
}
.u-text-palette-2-light-2,
.u-input.u-text-palette-2-light-2,
.u-input.u-text-palette-2-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-2,
li.active > a.u-button-style.u-text-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-2,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"] {
  color: #fcaaae !important;
}
a.u-button-style.u-text-palette-2-light-2:hover,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-2:focus,
a.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-2:active,
a.u-button-style.u-button-style.u-text-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-2.active,
a.u-button-style.u-button-style.u-text-palette-2-light-2[class*="u-border-"].active {
  color: #fb8187 !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-light-2,
a.u-button-style:hover > .u-text-hover-palette-2-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-2.active,
.u-text-hover-palette-2-light-2.u-language-url:hover,
.u-text-hover-palette-2-light-2 .u-language-url:hover,
.u-text-hover-palette-2-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-2 .u-nav-link.active {
  color: #fcaaae !important;
}
.u-text-palette-2-light-2 .u-svg-link,
.u-text-hover-palette-2-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-2 .u-svg-link,
.u-text-hover-palette-2-light-2:focus .u-svg-link {
  fill: #fcaaae;
}
.u-link.u-text-palette-2-light-2:hover {
  color: #fb8187 !important;
}
a.u-link.u-text-hover-palette-2-light-2:hover {
  color: #fcaaae !important;
}
.u-text-palette-2-light-3,
.u-input.u-text-palette-2-light-3,
.u-input.u-text-palette-2-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-light-3,
li.active > a.u-button-style.u-text-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-2-light-3,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"] {
  color: #feeaea !important;
}
a.u-button-style.u-text-palette-2-light-3:hover,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-light-3:focus,
a.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-light-3:active,
a.u-button-style.u-button-style.u-text-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-light-3.active,
a.u-button-style.u-button-style.u-text-palette-2-light-3[class*="u-border-"].active {
  color: #fcbbbb !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-light-3,
a.u-button-style:hover > .u-text-hover-palette-2-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-light-3.active,
.u-text-hover-palette-2-light-3.u-language-url:hover,
.u-text-hover-palette-2-light-3 .u-language-url:hover,
.u-text-hover-palette-2-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-light-3 .u-nav-link.active {
  color: #feeaea !important;
}
.u-text-palette-2-light-3 .u-svg-link,
.u-text-hover-palette-2-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-light-3 .u-svg-link,
.u-text-hover-palette-2-light-3:focus .u-svg-link {
  fill: #feeaea;
}
.u-link.u-text-palette-2-light-3:hover {
  color: #fcbbbb !important;
}
a.u-link.u-text-hover-palette-2-light-3:hover {
  color: #feeaea !important;
}
.u-text-palette-2-base,
.u-input.u-text-palette-2-base,
.u-input.u-text-palette-2-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-2-base,
li.active > a.u-button-style.u-text-palette-2-base[class*="u-border-"],
a.u-button-style.u-text-palette-2-base,
a.u-button-style.u-text-palette-2-base[class*="u-border-"] {
  color: #f72e37 !important;
}
a.u-button-style.u-text-palette-2-base:hover,
a.u-button-style.u-text-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-2-base:focus,
a.u-button-style.u-text-palette-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-2-base:active,
a.u-button-style.u-button-style.u-text-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-2-base.active,
a.u-button-style.u-button-style.u-text-palette-2-base[class*="u-border-"].active {
  color: #f6121c !important;
}
a.u-button-style:hover > .u-text-hover-palette-2-base,
a.u-button-style:hover > .u-text-hover-palette-2-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-2-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-2-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-2-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-2-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-2-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-2-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-2-base.active,
.u-text-hover-palette-2-base.u-language-url:hover,
.u-text-hover-palette-2-base .u-language-url:hover,
.u-text-hover-palette-2-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-2-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-2-base .u-nav-link.active {
  color: #f72e37 !important;
}
.u-text-palette-2-base .u-svg-link,
.u-text-hover-palette-2-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-2-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-2-base .u-svg-link,
.u-text-hover-palette-2-base:focus .u-svg-link {
  fill: #f72e37;
}
.u-link.u-text-palette-2-base:hover {
  color: #f6121c !important;
}
a.u-link.u-text-hover-palette-2-base:hover {
  color: #f72e37 !important;
}
.u-text-palette-3-dark-3,
.u-input.u-text-palette-3-dark-3,
.u-input.u-text-palette-3-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-3,
li.active > a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-3,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"] {
  color: #333129 !important;
}
a.u-button-style.u-text-palette-3-dark-3:hover,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-3:focus,
a.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-3[class*="u-border-"].active {
  color: #2e2c25 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-dark-3,
a.u-button-style:hover > .u-text-hover-palette-3-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-3.active,
.u-text-hover-palette-3-dark-3.u-language-url:hover,
.u-text-hover-palette-3-dark-3 .u-language-url:hover,
.u-text-hover-palette-3-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-3 .u-nav-link.active {
  color: #333129 !important;
}
.u-text-palette-3-dark-3 .u-svg-link,
.u-text-hover-palette-3-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-3 .u-svg-link,
.u-text-hover-palette-3-dark-3:focus .u-svg-link {
  fill: #333129;
}
.u-link.u-text-palette-3-dark-3:hover {
  color: #2e2c25 !important;
}
a.u-link.u-text-hover-palette-3-dark-3:hover {
  color: #333129 !important;
}
.u-text-palette-3-dark-2,
.u-input.u-text-palette-3-dark-2,
.u-input.u-text-palette-3-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-2,
li.active > a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-2,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"] {
  color: #72683f !important;
}
a.u-button-style.u-text-palette-3-dark-2:hover,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-2:focus,
a.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-2[class*="u-border-"].active {
  color: #675e39 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-dark-2,
a.u-button-style:hover > .u-text-hover-palette-3-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-2.active,
.u-text-hover-palette-3-dark-2.u-language-url:hover,
.u-text-hover-palette-3-dark-2 .u-language-url:hover,
.u-text-hover-palette-3-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-2 .u-nav-link.active {
  color: #72683f !important;
}
.u-text-palette-3-dark-2 .u-svg-link,
.u-text-hover-palette-3-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-2 .u-svg-link,
.u-text-hover-palette-3-dark-2:focus .u-svg-link {
  fill: #72683f;
}
.u-link.u-text-palette-3-dark-2:hover {
  color: #675e39 !important;
}
a.u-link.u-text-hover-palette-3-dark-2:hover {
  color: #72683f !important;
}
.u-text-palette-3-dark-1,
.u-input.u-text-palette-3-dark-1,
.u-input.u-text-palette-3-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-dark-1,
li.active > a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-3-dark-1,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"] {
  color: #b29a36 !important;
}
a.u-button-style.u-text-palette-3-dark-1:hover,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-dark-1:focus,
a.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-3-dark-1[class*="u-border-"].active {
  color: #a08b31 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-dark-1,
a.u-button-style:hover > .u-text-hover-palette-3-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-dark-1.active,
.u-text-hover-palette-3-dark-1.u-language-url:hover,
.u-text-hover-palette-3-dark-1 .u-language-url:hover,
.u-text-hover-palette-3-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-dark-1 .u-nav-link.active {
  color: #b29a36 !important;
}
.u-text-palette-3-dark-1 .u-svg-link,
.u-text-hover-palette-3-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-dark-1 .u-svg-link,
.u-text-hover-palette-3-dark-1:focus .u-svg-link {
  fill: #b29a36;
}
.u-link.u-text-palette-3-dark-1:hover {
  color: #a08b31 !important;
}
a.u-link.u-text-hover-palette-3-dark-1:hover {
  color: #b29a36 !important;
}
.u-text-palette-3,
.u-input.u-text-palette-3,
.u-input.u-text-palette-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3,
li.active > a.u-button-style.u-text-palette-3[class*="u-border-"],
a.u-button-style.u-text-palette-3,
a.u-button-style.u-text-palette-3[class*="u-border-"] {
  color: #f1c50e !important;
}
a.u-button-style.u-text-palette-3:hover,
a.u-button-style.u-text-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3:focus,
a.u-button-style.u-text-palette-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3:active,
a.u-button-style.u-button-style.u-text-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3.active,
a.u-button-style.u-button-style.u-text-palette-3[class*="u-border-"].active {
  color: #d9b10d !important;
}
a.u-button-style:hover > .u-text-hover-palette-3,
a.u-button-style:hover > .u-text-hover-palette-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3.active,
.u-text-hover-palette-3.u-language-url:hover,
.u-text-hover-palette-3 .u-language-url:hover,
.u-text-hover-palette-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3 .u-nav-link.active {
  color: #f1c50e !important;
}
.u-text-palette-3 .u-svg-link,
.u-text-hover-palette-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3 .u-svg-link,
.u-text-hover-palette-3:focus .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-palette-3:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-palette-3:hover {
  color: #f1c50e !important;
}
.u-text-palette-3-light-1,
.u-input.u-text-palette-3-light-1,
.u-input.u-text-palette-3-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-1,
li.active > a.u-button-style.u-text-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-1,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"] {
  color: #f5d654 !important;
}
a.u-button-style.u-text-palette-3-light-1:hover,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-1:focus,
a.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-1:active,
a.u-button-style.u-button-style.u-text-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-1.active,
a.u-button-style.u-button-style.u-text-palette-3-light-1[class*="u-border-"].active {
  color: #f3cf35 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-light-1,
a.u-button-style:hover > .u-text-hover-palette-3-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-1.active,
.u-text-hover-palette-3-light-1.u-language-url:hover,
.u-text-hover-palette-3-light-1 .u-language-url:hover,
.u-text-hover-palette-3-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-1 .u-nav-link.active {
  color: #f5d654 !important;
}
.u-text-palette-3-light-1 .u-svg-link,
.u-text-hover-palette-3-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-1 .u-svg-link,
.u-text-hover-palette-3-light-1:focus .u-svg-link {
  fill: #f5d654;
}
.u-link.u-text-palette-3-light-1:hover {
  color: #f3cf35 !important;
}
a.u-link.u-text-hover-palette-3-light-1:hover {
  color: #f5d654 !important;
}
.u-text-palette-3-light-2,
.u-input.u-text-palette-3-light-2,
.u-input.u-text-palette-3-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-2,
li.active > a.u-button-style.u-text-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-2,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"] {
  color: #f9e79b !important;
}
a.u-button-style.u-text-palette-3-light-2:hover,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-2:focus,
a.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-2:active,
a.u-button-style.u-button-style.u-text-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-2.active,
a.u-button-style.u-button-style.u-text-palette-3-light-2[class*="u-border-"].active {
  color: #f7de75 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-light-2,
a.u-button-style:hover > .u-text-hover-palette-3-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-2.active,
.u-text-hover-palette-3-light-2.u-language-url:hover,
.u-text-hover-palette-3-light-2 .u-language-url:hover,
.u-text-hover-palette-3-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-2 .u-nav-link.active {
  color: #f9e79b !important;
}
.u-text-palette-3-light-2 .u-svg-link,
.u-text-hover-palette-3-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-2 .u-svg-link,
.u-text-hover-palette-3-light-2:focus .u-svg-link {
  fill: #f9e79b;
}
.u-link.u-text-palette-3-light-2:hover {
  color: #f7de75 !important;
}
a.u-link.u-text-hover-palette-3-light-2:hover {
  color: #f9e79b !important;
}
.u-text-palette-3-light-3,
.u-input.u-text-palette-3-light-3,
.u-input.u-text-palette-3-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-light-3,
li.active > a.u-button-style.u-text-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-3-light-3,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"] {
  color: #fef9e6 !important;
}
a.u-button-style.u-text-palette-3-light-3:hover,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-light-3:focus,
a.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-light-3:active,
a.u-button-style.u-button-style.u-text-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-light-3.active,
a.u-button-style.u-button-style.u-text-palette-3-light-3[class*="u-border-"].active {
  color: #fceeb7 !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-light-3,
a.u-button-style:hover > .u-text-hover-palette-3-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-light-3.active,
.u-text-hover-palette-3-light-3.u-language-url:hover,
.u-text-hover-palette-3-light-3 .u-language-url:hover,
.u-text-hover-palette-3-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-light-3 .u-nav-link.active {
  color: #fef9e6 !important;
}
.u-text-palette-3-light-3 .u-svg-link,
.u-text-hover-palette-3-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-light-3 .u-svg-link,
.u-text-hover-palette-3-light-3:focus .u-svg-link {
  fill: #fef9e6;
}
.u-link.u-text-palette-3-light-3:hover {
  color: #fceeb7 !important;
}
a.u-link.u-text-hover-palette-3-light-3:hover {
  color: #fef9e6 !important;
}
.u-text-palette-3-base,
.u-input.u-text-palette-3-base,
.u-input.u-text-palette-3-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-3-base,
li.active > a.u-button-style.u-text-palette-3-base[class*="u-border-"],
a.u-button-style.u-text-palette-3-base,
a.u-button-style.u-text-palette-3-base[class*="u-border-"] {
  color: #f1c50e !important;
}
a.u-button-style.u-text-palette-3-base:hover,
a.u-button-style.u-text-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-3-base:focus,
a.u-button-style.u-text-palette-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-3-base:active,
a.u-button-style.u-button-style.u-text-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-3-base.active,
a.u-button-style.u-button-style.u-text-palette-3-base[class*="u-border-"].active {
  color: #d9b10d !important;
}
a.u-button-style:hover > .u-text-hover-palette-3-base,
a.u-button-style:hover > .u-text-hover-palette-3-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-3-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-3-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-3-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-3-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-3-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-3-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-3-base.active,
.u-text-hover-palette-3-base.u-language-url:hover,
.u-text-hover-palette-3-base .u-language-url:hover,
.u-text-hover-palette-3-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-3-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-3-base .u-nav-link.active {
  color: #f1c50e !important;
}
.u-text-palette-3-base .u-svg-link,
.u-text-hover-palette-3-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-3-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-3-base .u-svg-link,
.u-text-hover-palette-3-base:focus .u-svg-link {
  fill: #f1c50e;
}
.u-link.u-text-palette-3-base:hover {
  color: #d9b10d !important;
}
a.u-link.u-text-hover-palette-3-base:hover {
  color: #f1c50e !important;
}
.u-text-palette-4-dark-3,
.u-input.u-text-palette-4-dark-3,
.u-input.u-text-palette-4-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-3,
li.active > a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-3,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"] {
  color: #293332 !important;
}
a.u-button-style.u-text-palette-4-dark-3:hover,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-3:focus,
a.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-3[class*="u-border-"].active {
  color: #252e2d !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-dark-3,
a.u-button-style:hover > .u-text-hover-palette-4-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-3.active,
.u-text-hover-palette-4-dark-3.u-language-url:hover,
.u-text-hover-palette-4-dark-3 .u-language-url:hover,
.u-text-hover-palette-4-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-3 .u-nav-link.active {
  color: #293332 !important;
}
.u-text-palette-4-dark-3 .u-svg-link,
.u-text-hover-palette-4-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-3 .u-svg-link,
.u-text-hover-palette-4-dark-3:focus .u-svg-link {
  fill: #293332;
}
.u-link.u-text-palette-4-dark-3:hover {
  color: #252e2d !important;
}
a.u-link.u-text-hover-palette-4-dark-3:hover {
  color: #293332 !important;
}
.u-text-palette-4-dark-2,
.u-input.u-text-palette-4-dark-2,
.u-input.u-text-palette-4-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-2,
li.active > a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-2,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"] {
  color: #41807c !important;
}
a.u-button-style.u-text-palette-4-dark-2:hover,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-2:focus,
a.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-2[class*="u-border-"].active {
  color: #3a7370 !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-dark-2,
a.u-button-style:hover > .u-text-hover-palette-4-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-2.active,
.u-text-hover-palette-4-dark-2.u-language-url:hover,
.u-text-hover-palette-4-dark-2 .u-language-url:hover,
.u-text-hover-palette-4-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-2 .u-nav-link.active {
  color: #41807c !important;
}
.u-text-palette-4-dark-2 .u-svg-link,
.u-text-hover-palette-4-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-2 .u-svg-link,
.u-text-hover-palette-4-dark-2:focus .u-svg-link {
  fill: #41807c;
}
.u-link.u-text-palette-4-dark-2:hover {
  color: #3a7370 !important;
}
a.u-link.u-text-hover-palette-4-dark-2:hover {
  color: #41807c !important;
}
.u-text-palette-4-dark-1,
.u-input.u-text-palette-4-dark-1,
.u-input.u-text-palette-4-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-dark-1,
li.active > a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-4-dark-1,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"] {
  color: #2cccc4 !important;
}
a.u-button-style.u-text-palette-4-dark-1:hover,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-dark-1:focus,
a.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-4-dark-1[class*="u-border-"].active {
  color: #28b8b0 !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-dark-1,
a.u-button-style:hover > .u-text-hover-palette-4-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-dark-1.active,
.u-text-hover-palette-4-dark-1.u-language-url:hover,
.u-text-hover-palette-4-dark-1 .u-language-url:hover,
.u-text-hover-palette-4-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-dark-1 .u-nav-link.active {
  color: #2cccc4 !important;
}
.u-text-palette-4-dark-1 .u-svg-link,
.u-text-hover-palette-4-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-dark-1 .u-svg-link,
.u-text-hover-palette-4-dark-1:focus .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-palette-4-dark-1:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-palette-4-dark-1:hover {
  color: #2cccc4 !important;
}
.u-text-palette-4,
.u-input.u-text-palette-4,
.u-input.u-text-palette-4[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4,
li.active > a.u-button-style.u-text-palette-4[class*="u-border-"],
a.u-button-style.u-text-palette-4,
a.u-button-style.u-text-palette-4[class*="u-border-"] {
  color: #3be8e0 !important;
}
a.u-button-style.u-text-palette-4:hover,
a.u-button-style.u-text-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4:focus,
a.u-button-style.u-text-palette-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4:active,
a.u-button-style.u-button-style.u-text-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4.active,
a.u-button-style.u-button-style.u-text-palette-4[class*="u-border-"].active {
  color: #21e5dc !important;
}
a.u-button-style:hover > .u-text-hover-palette-4,
a.u-button-style:hover > .u-text-hover-palette-4[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4,
a.u-button-style.u-button-style.active > .u-text-active-palette-4[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4.active,
.u-text-hover-palette-4.u-language-url:hover,
.u-text-hover-palette-4 .u-language-url:hover,
.u-text-hover-palette-4.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4 .u-nav-link.active {
  color: #3be8e0 !important;
}
.u-text-palette-4 .u-svg-link,
.u-text-hover-palette-4:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4 .u-svg-link,
.u-text-hover-palette-4:focus .u-svg-link {
  fill: #3be8e0;
}
.u-link.u-text-palette-4:hover {
  color: #21e5dc !important;
}
a.u-link.u-text-hover-palette-4:hover {
  color: #3be8e0 !important;
}
.u-text-palette-4-light-1,
.u-input.u-text-palette-4-light-1,
.u-input.u-text-palette-4-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-1,
li.active > a.u-button-style.u-text-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-1,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"] {
  color: #72efe9 !important;
}
a.u-button-style.u-text-palette-4-light-1:hover,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-1:focus,
a.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-1:active,
a.u-button-style.u-button-style.u-text-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-1.active,
a.u-button-style.u-button-style.u-text-palette-4-light-1[class*="u-border-"].active {
  color: #52ebe4 !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-light-1,
a.u-button-style:hover > .u-text-hover-palette-4-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-1.active,
.u-text-hover-palette-4-light-1.u-language-url:hover,
.u-text-hover-palette-4-light-1 .u-language-url:hover,
.u-text-hover-palette-4-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-1 .u-nav-link.active {
  color: #72efe9 !important;
}
.u-text-palette-4-light-1 .u-svg-link,
.u-text-hover-palette-4-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-1 .u-svg-link,
.u-text-hover-palette-4-light-1:focus .u-svg-link {
  fill: #72efe9;
}
.u-link.u-text-palette-4-light-1:hover {
  color: #52ebe4 !important;
}
a.u-link.u-text-hover-palette-4-light-1:hover {
  color: #72efe9 !important;
}
.u-text-palette-4-light-2,
.u-input.u-text-palette-4-light-2,
.u-input.u-text-palette-4-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-2,
li.active > a.u-button-style.u-text-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-2,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"] {
  color: #adf6f2 !important;
}
a.u-button-style.u-text-palette-4-light-2:hover,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-2:focus,
a.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-2:active,
a.u-button-style.u-button-style.u-text-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-2.active,
a.u-button-style.u-button-style.u-text-palette-4-light-2[class*="u-border-"].active {
  color: #87f2ec !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-light-2,
a.u-button-style:hover > .u-text-hover-palette-4-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-2.active,
.u-text-hover-palette-4-light-2.u-language-url:hover,
.u-text-hover-palette-4-light-2 .u-language-url:hover,
.u-text-hover-palette-4-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-2 .u-nav-link.active {
  color: #adf6f2 !important;
}
.u-text-palette-4-light-2 .u-svg-link,
.u-text-hover-palette-4-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-2 .u-svg-link,
.u-text-hover-palette-4-light-2:focus .u-svg-link {
  fill: #adf6f2;
}
.u-link.u-text-palette-4-light-2:hover {
  color: #87f2ec !important;
}
a.u-link.u-text-hover-palette-4-light-2:hover {
  color: #adf6f2 !important;
}
.u-text-palette-4-light-3,
.u-input.u-text-palette-4-light-3,
.u-input.u-text-palette-4-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-light-3,
li.active > a.u-button-style.u-text-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-4-light-3,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"] {
  color: #eafdfc !important;
}
a.u-button-style.u-text-palette-4-light-3:hover,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-light-3:focus,
a.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-light-3:active,
a.u-button-style.u-button-style.u-text-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-light-3.active,
a.u-button-style.u-button-style.u-text-palette-4-light-3[class*="u-border-"].active {
  color: #bef9f6 !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-light-3,
a.u-button-style:hover > .u-text-hover-palette-4-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-light-3.active,
.u-text-hover-palette-4-light-3.u-language-url:hover,
.u-text-hover-palette-4-light-3 .u-language-url:hover,
.u-text-hover-palette-4-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-light-3 .u-nav-link.active {
  color: #eafdfc !important;
}
.u-text-palette-4-light-3 .u-svg-link,
.u-text-hover-palette-4-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-light-3 .u-svg-link,
.u-text-hover-palette-4-light-3:focus .u-svg-link {
  fill: #eafdfc;
}
.u-link.u-text-palette-4-light-3:hover {
  color: #bef9f6 !important;
}
a.u-link.u-text-hover-palette-4-light-3:hover {
  color: #eafdfc !important;
}
.u-text-palette-4-base,
.u-input.u-text-palette-4-base,
.u-input.u-text-palette-4-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-4-base,
li.active > a.u-button-style.u-text-palette-4-base[class*="u-border-"],
a.u-button-style.u-text-palette-4-base,
a.u-button-style.u-text-palette-4-base[class*="u-border-"] {
  color: #2cccc4 !important;
}
a.u-button-style.u-text-palette-4-base:hover,
a.u-button-style.u-text-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-4-base:focus,
a.u-button-style.u-text-palette-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-4-base:active,
a.u-button-style.u-button-style.u-text-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-4-base.active,
a.u-button-style.u-button-style.u-text-palette-4-base[class*="u-border-"].active {
  color: #28b8b0 !important;
}
a.u-button-style:hover > .u-text-hover-palette-4-base,
a.u-button-style:hover > .u-text-hover-palette-4-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-4-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-4-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-4-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-4-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-4-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-4-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-4-base.active,
.u-text-hover-palette-4-base.u-language-url:hover,
.u-text-hover-palette-4-base .u-language-url:hover,
.u-text-hover-palette-4-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-4-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-4-base .u-nav-link.active {
  color: #2cccc4 !important;
}
.u-text-palette-4-base .u-svg-link,
.u-text-hover-palette-4-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-4-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-4-base .u-svg-link,
.u-text-hover-palette-4-base:focus .u-svg-link {
  fill: #2cccc4;
}
.u-link.u-text-palette-4-base:hover {
  color: #28b8b0 !important;
}
a.u-link.u-text-hover-palette-4-base:hover {
  color: #2cccc4 !important;
}
.u-text-palette-5-dark-3,
.u-input.u-text-palette-5-dark-3,
.u-input.u-text-palette-5-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-3,
li.active > a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-3,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"] {
  color: #292d33 !important;
}
a.u-button-style.u-text-palette-5-dark-3:hover,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-3:focus,
a.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-3[class*="u-border-"].active {
  color: #25292e !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-dark-3,
a.u-button-style:hover > .u-text-hover-palette-5-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-3.active,
.u-text-hover-palette-5-dark-3.u-language-url:hover,
.u-text-hover-palette-5-dark-3 .u-language-url:hover,
.u-text-hover-palette-5-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-3 .u-nav-link.active {
  color: #292d33 !important;
}
.u-text-palette-5-dark-3 .u-svg-link,
.u-text-hover-palette-5-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-3 .u-svg-link,
.u-text-hover-palette-5-dark-3:focus .u-svg-link {
  fill: #292d33;
}
.u-link.u-text-palette-5-dark-3:hover {
  color: #25292e !important;
}
a.u-link.u-text-hover-palette-5-dark-3:hover {
  color: #292d33 !important;
}
.u-text-palette-5-dark-2,
.u-input.u-text-palette-5-dark-2,
.u-input.u-text-palette-5-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-2,
li.active > a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-2,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"] {
  color: #555c66 !important;
}
a.u-button-style.u-text-palette-5-dark-2:hover,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-2:focus,
a.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-2[class*="u-border-"].active {
  color: #4d535c !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-dark-2,
a.u-button-style:hover > .u-text-hover-palette-5-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-2.active,
.u-text-hover-palette-5-dark-2.u-language-url:hover,
.u-text-hover-palette-5-dark-2 .u-language-url:hover,
.u-text-hover-palette-5-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-2 .u-nav-link.active {
  color: #555c66 !important;
}
.u-text-palette-5-dark-2 .u-svg-link,
.u-text-hover-palette-5-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-2 .u-svg-link,
.u-text-hover-palette-5-dark-2:focus .u-svg-link {
  fill: #555c66;
}
.u-link.u-text-palette-5-dark-2:hover {
  color: #4d535c !important;
}
a.u-link.u-text-hover-palette-5-dark-2:hover {
  color: #555c66 !important;
}
.u-text-palette-5-dark-1,
.u-input.u-text-palette-5-dark-1,
.u-input.u-text-palette-5-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-dark-1,
li.active > a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-text-palette-5-dark-1,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"] {
  color: #858e99 !important;
}
a.u-button-style.u-text-palette-5-dark-1:hover,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-dark-1:focus,
a.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-text-palette-5-dark-1[class*="u-border-"].active {
  color: #75808c !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-dark-1,
a.u-button-style:hover > .u-text-hover-palette-5-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-dark-1.active,
.u-text-hover-palette-5-dark-1.u-language-url:hover,
.u-text-hover-palette-5-dark-1 .u-language-url:hover,
.u-text-hover-palette-5-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-dark-1 .u-nav-link.active {
  color: #858e99 !important;
}
.u-text-palette-5-dark-1 .u-svg-link,
.u-text-hover-palette-5-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-dark-1 .u-svg-link,
.u-text-hover-palette-5-dark-1:focus .u-svg-link {
  fill: #858e99;
}
.u-link.u-text-palette-5-dark-1:hover {
  color: #75808c !important;
}
a.u-link.u-text-hover-palette-5-dark-1:hover {
  color: #858e99 !important;
}
.u-text-palette-5,
.u-input.u-text-palette-5,
.u-input.u-text-palette-5[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5,
li.active > a.u-button-style.u-text-palette-5[class*="u-border-"],
a.u-button-style.u-text-palette-5,
a.u-button-style.u-text-palette-5[class*="u-border-"] {
  color: #b9c1cc !important;
}
a.u-button-style.u-text-palette-5:hover,
a.u-button-style.u-text-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5:focus,
a.u-button-style.u-text-palette-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5:active,
a.u-button-style.u-button-style.u-text-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5.active,
a.u-button-style.u-button-style.u-text-palette-5[class*="u-border-"].active {
  color: #a2adbc !important;
}
a.u-button-style:hover > .u-text-hover-palette-5,
a.u-button-style:hover > .u-text-hover-palette-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5,
a.u-button-style.u-button-style.active > .u-text-active-palette-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5.active,
.u-text-hover-palette-5.u-language-url:hover,
.u-text-hover-palette-5 .u-language-url:hover,
.u-text-hover-palette-5.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5 .u-nav-link.active {
  color: #b9c1cc !important;
}
.u-text-palette-5 .u-svg-link,
.u-text-hover-palette-5:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5 .u-svg-link,
.u-text-hover-palette-5:focus .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-palette-5:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-palette-5:hover {
  color: #b9c1cc !important;
}
.u-text-palette-5-light-1,
.u-input.u-text-palette-5-light-1,
.u-input.u-text-palette-5-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-1,
li.active > a.u-button-style.u-text-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-1,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"] {
  color: #ccd3db !important;
}
a.u-button-style.u-text-palette-5-light-1:hover,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-1:focus,
a.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-1:active,
a.u-button-style.u-button-style.u-text-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-1.active,
a.u-button-style.u-button-style.u-text-palette-5-light-1[class*="u-border-"].active {
  color: #b3bec9 !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-light-1,
a.u-button-style:hover > .u-text-hover-palette-5-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-1.active,
.u-text-hover-palette-5-light-1.u-language-url:hover,
.u-text-hover-palette-5-light-1 .u-language-url:hover,
.u-text-hover-palette-5-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-1 .u-nav-link.active {
  color: #ccd3db !important;
}
.u-text-palette-5-light-1 .u-svg-link,
.u-text-hover-palette-5-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-1 .u-svg-link,
.u-text-hover-palette-5-light-1:focus .u-svg-link {
  fill: #ccd3db;
}
.u-link.u-text-palette-5-light-1:hover {
  color: #b3bec9 !important;
}
a.u-link.u-text-hover-palette-5-light-1:hover {
  color: #ccd3db !important;
}
.u-text-palette-5-light-2,
.u-input.u-text-palette-5-light-2,
.u-input.u-text-palette-5-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-2,
li.active > a.u-button-style.u-text-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-2,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"] {
  color: #e0e5eb !important;
}
a.u-button-style.u-text-palette-5-light-2:hover,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-2:focus,
a.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-2:active,
a.u-button-style.u-button-style.u-text-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-2.active,
a.u-button-style.u-button-style.u-text-palette-5-light-2[class*="u-border-"].active {
  color: #c4ced9 !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-light-2,
a.u-button-style:hover > .u-text-hover-palette-5-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-2.active,
.u-text-hover-palette-5-light-2.u-language-url:hover,
.u-text-hover-palette-5-light-2 .u-language-url:hover,
.u-text-hover-palette-5-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-2 .u-nav-link.active {
  color: #e0e5eb !important;
}
.u-text-palette-5-light-2 .u-svg-link,
.u-text-hover-palette-5-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-2 .u-svg-link,
.u-text-hover-palette-5-light-2:focus .u-svg-link {
  fill: #e0e5eb;
}
.u-link.u-text-palette-5-light-2:hover {
  color: #c4ced9 !important;
}
a.u-link.u-text-hover-palette-5-light-2:hover {
  color: #e0e5eb !important;
}
.u-text-palette-5-light-3,
.u-input.u-text-palette-5-light-3,
.u-input.u-text-palette-5-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-light-3,
li.active > a.u-button-style.u-text-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-text-palette-5-light-3,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"] {
  color: #f5f7fa !important;
}
a.u-button-style.u-text-palette-5-light-3:hover,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-light-3:focus,
a.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-light-3:active,
a.u-button-style.u-button-style.u-text-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-light-3.active,
a.u-button-style.u-button-style.u-text-palette-5-light-3[class*="u-border-"].active {
  color: #d4dde9 !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-light-3,
a.u-button-style:hover > .u-text-hover-palette-5-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-light-3.active,
.u-text-hover-palette-5-light-3.u-language-url:hover,
.u-text-hover-palette-5-light-3 .u-language-url:hover,
.u-text-hover-palette-5-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-light-3 .u-nav-link.active {
  color: #f5f7fa !important;
}
.u-text-palette-5-light-3 .u-svg-link,
.u-text-hover-palette-5-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-light-3 .u-svg-link,
.u-text-hover-palette-5-light-3:focus .u-svg-link {
  fill: #f5f7fa;
}
.u-link.u-text-palette-5-light-3:hover {
  color: #d4dde9 !important;
}
a.u-link.u-text-hover-palette-5-light-3:hover {
  color: #f5f7fa !important;
}
.u-text-palette-5-base,
.u-input.u-text-palette-5-base,
.u-input.u-text-palette-5-base[class*="u-border-"],
li.active > a.u-button-style.u-text-palette-5-base,
li.active > a.u-button-style.u-text-palette-5-base[class*="u-border-"],
a.u-button-style.u-text-palette-5-base,
a.u-button-style.u-text-palette-5-base[class*="u-border-"] {
  color: #b9c1cc !important;
}
a.u-button-style.u-text-palette-5-base:hover,
a.u-button-style.u-text-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-text-palette-5-base:focus,
a.u-button-style.u-text-palette-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-palette-5-base:active,
a.u-button-style.u-button-style.u-text-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-palette-5-base.active,
a.u-button-style.u-button-style.u-text-palette-5-base[class*="u-border-"].active {
  color: #a2adbc !important;
}
a.u-button-style:hover > .u-text-hover-palette-5-base,
a.u-button-style:hover > .u-text-hover-palette-5-base[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-palette-5-base:hover,
a.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-palette-5-base:focus,
a.u-button-style.u-button-style.u-text-hover-palette-5-base[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-palette-5-base[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-base,
a.u-button-style.u-button-style.active > .u-text-active-palette-5-base[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-palette-5-base:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-palette-5-base.active,
.u-text-hover-palette-5-base.u-language-url:hover,
.u-text-hover-palette-5-base .u-language-url:hover,
.u-text-hover-palette-5-base.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-palette-5-base .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-palette-5-base .u-nav-link.active {
  color: #b9c1cc !important;
}
.u-text-palette-5-base .u-svg-link,
.u-text-hover-palette-5-base:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-palette-5-base .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-palette-5-base .u-svg-link,
.u-text-hover-palette-5-base:focus .u-svg-link {
  fill: #b9c1cc;
}
.u-link.u-text-palette-5-base:hover {
  color: #a2adbc !important;
}
a.u-link.u-text-hover-palette-5-base:hover {
  color: #b9c1cc !important;
}
.u-text-grey-dark-3,
.u-input.u-text-grey-dark-3,
.u-input.u-text-grey-dark-3[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-3,
li.active > a.u-button-style.u-text-grey-dark-3[class*="u-border-"],
a.u-button-style.u-text-grey-dark-3,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"] {
  color: #212121 !important;
}
a.u-button-style.u-text-grey-dark-3:hover,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-3:focus,
a.u-button-style.u-text-grey-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-3:active,
a.u-button-style.u-button-style.u-text-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-3.active,
a.u-button-style.u-button-style.u-text-grey-dark-3[class*="u-border-"].active {
  color: #1e1e1e !important;
}
a.u-button-style:hover > .u-text-hover-grey-dark-3,
a.u-button-style:hover > .u-text-hover-grey-dark-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-3:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-3,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-3.active,
.u-text-hover-grey-dark-3.u-language-url:hover,
.u-text-hover-grey-dark-3 .u-language-url:hover,
.u-text-hover-grey-dark-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-dark-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-3 .u-nav-link.active {
  color: #212121 !important;
}
.u-text-grey-dark-3 .u-svg-link,
.u-text-hover-grey-dark-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-3 .u-svg-link,
.u-text-hover-grey-dark-3:focus .u-svg-link {
  fill: #212121;
}
.u-link.u-text-grey-dark-3:hover {
  color: #1e1e1e !important;
}
a.u-link.u-text-hover-grey-dark-3:hover {
  color: #212121 !important;
}
.u-text-grey-dark-2,
.u-input.u-text-grey-dark-2,
.u-input.u-text-grey-dark-2[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-2,
li.active > a.u-button-style.u-text-grey-dark-2[class*="u-border-"],
a.u-button-style.u-text-grey-dark-2,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"] {
  color: #333333 !important;
}
a.u-button-style.u-text-grey-dark-2:hover,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-2:focus,
a.u-button-style.u-text-grey-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-2:active,
a.u-button-style.u-button-style.u-text-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-2.active,
a.u-button-style.u-button-style.u-text-grey-dark-2[class*="u-border-"].active {
  color: #2e2e2e !important;
}
a.u-button-style:hover > .u-text-hover-grey-dark-2,
a.u-button-style:hover > .u-text-hover-grey-dark-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-2:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-2,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-2.active,
.u-text-hover-grey-dark-2.u-language-url:hover,
.u-text-hover-grey-dark-2 .u-language-url:hover,
.u-text-hover-grey-dark-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-dark-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-2 .u-nav-link.active {
  color: #333333 !important;
}
.u-text-grey-dark-2 .u-svg-link,
.u-text-hover-grey-dark-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-2 .u-svg-link,
.u-text-hover-grey-dark-2:focus .u-svg-link {
  fill: #333333;
}
.u-link.u-text-grey-dark-2:hover {
  color: #2e2e2e !important;
}
a.u-link.u-text-hover-grey-dark-2:hover {
  color: #333333 !important;
}
.u-text-grey-dark-1,
.u-input.u-text-grey-dark-1,
.u-input.u-text-grey-dark-1[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-dark-1,
li.active > a.u-button-style.u-text-grey-dark-1[class*="u-border-"],
a.u-button-style.u-text-grey-dark-1,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"] {
  color: #454545 !important;
}
a.u-button-style.u-text-grey-dark-1:hover,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-dark-1:focus,
a.u-button-style.u-text-grey-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-dark-1:active,
a.u-button-style.u-button-style.u-text-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-dark-1.active,
a.u-button-style.u-button-style.u-text-grey-dark-1[class*="u-border-"].active {
  color: #3e3e3e !important;
}
a.u-button-style:hover > .u-text-hover-grey-dark-1,
a.u-button-style:hover > .u-text-hover-grey-dark-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-dark-1:hover,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1:focus,
a.u-button-style.u-button-style.u-text-hover-grey-dark-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-dark-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-1,
a.u-button-style.u-button-style.active > .u-text-active-grey-dark-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-dark-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-dark-1.active,
.u-text-hover-grey-dark-1.u-language-url:hover,
.u-text-hover-grey-dark-1 .u-language-url:hover,
.u-text-hover-grey-dark-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-dark-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-dark-1 .u-nav-link.active {
  color: #454545 !important;
}
.u-text-grey-dark-1 .u-svg-link,
.u-text-hover-grey-dark-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-dark-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-dark-1 .u-svg-link,
.u-text-hover-grey-dark-1:focus .u-svg-link {
  fill: #454545;
}
.u-link.u-text-grey-dark-1:hover {
  color: #3e3e3e !important;
}
a.u-link.u-text-hover-grey-dark-1:hover {
  color: #454545 !important;
}
.u-text-grey,
.u-input.u-text-grey,
.u-input.u-text-grey[class*="u-border-"],
li.active > a.u-button-style.u-text-grey,
li.active > a.u-button-style.u-text-grey[class*="u-border-"],
a.u-button-style.u-text-grey,
a.u-button-style.u-text-grey[class*="u-border-"] {
  color: #b3b3b3 !important;
}
a.u-button-style.u-text-grey:hover,
a.u-button-style.u-text-grey[class*="u-border-"]:hover,
a.u-button-style.u-text-grey:focus,
a.u-button-style.u-text-grey[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey:active,
a.u-button-style.u-button-style.u-text-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey.active,
a.u-button-style.u-button-style.u-text-grey[class*="u-border-"].active {
  color: #a1a1a1 !important;
}
a.u-button-style:hover > .u-text-hover-grey,
a.u-button-style:hover > .u-text-hover-grey[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey:hover,
a.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey:focus,
a.u-button-style.u-button-style.u-text-hover-grey[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey,
a.u-button-style.u-button-style.active > .u-text-active-grey[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey.active,
.u-text-hover-grey.u-language-url:hover,
.u-text-hover-grey .u-language-url:hover,
.u-text-hover-grey.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey .u-nav-link.active {
  color: #b3b3b3 !important;
}
.u-text-grey .u-svg-link,
.u-text-hover-grey:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey .u-svg-link,
.u-text-hover-grey:focus .u-svg-link {
  fill: #b3b3b3;
}
.u-link.u-text-grey:hover {
  color: #a1a1a1 !important;
}
a.u-link.u-text-hover-grey:hover {
  color: #b3b3b3 !important;
}
.u-text-grey-light-1,
.u-input.u-text-grey-light-1,
.u-input.u-text-grey-light-1[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-1,
li.active > a.u-button-style.u-text-grey-light-1[class*="u-border-"],
a.u-button-style.u-text-grey-light-1,
a.u-button-style.u-text-grey-light-1[class*="u-border-"] {
  color: #d9d9d9 !important;
}
a.u-button-style.u-text-grey-light-1:hover,
a.u-button-style.u-text-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-1:focus,
a.u-button-style.u-text-grey-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-1:active,
a.u-button-style.u-button-style.u-text-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-1.active,
a.u-button-style.u-button-style.u-text-grey-light-1[class*="u-border-"].active {
  color: #c3c3c3 !important;
}
a.u-button-style:hover > .u-text-hover-grey-light-1,
a.u-button-style:hover > .u-text-hover-grey-light-1[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-1:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-1:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-1[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-1[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-1,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-1[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-1:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-1.active,
.u-text-hover-grey-light-1.u-language-url:hover,
.u-text-hover-grey-light-1 .u-language-url:hover,
.u-text-hover-grey-light-1.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-light-1 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-1 .u-nav-link.active {
  color: #d9d9d9 !important;
}
.u-text-grey-light-1 .u-svg-link,
.u-text-hover-grey-light-1:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-1 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-1 .u-svg-link,
.u-text-hover-grey-light-1:focus .u-svg-link {
  fill: #d9d9d9;
}
.u-link.u-text-grey-light-1:hover {
  color: #c3c3c3 !important;
}
a.u-link.u-text-hover-grey-light-1:hover {
  color: #d9d9d9 !important;
}
.u-text-grey-light-2,
.u-input.u-text-grey-light-2,
.u-input.u-text-grey-light-2[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-2,
li.active > a.u-button-style.u-text-grey-light-2[class*="u-border-"],
a.u-button-style.u-text-grey-light-2,
a.u-button-style.u-text-grey-light-2[class*="u-border-"] {
  color: #eeeeee !important;
}
a.u-button-style.u-text-grey-light-2:hover,
a.u-button-style.u-text-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-2:focus,
a.u-button-style.u-text-grey-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-2:active,
a.u-button-style.u-button-style.u-text-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-2.active,
a.u-button-style.u-button-style.u-text-grey-light-2[class*="u-border-"].active {
  color: #d6d6d6 !important;
}
a.u-button-style:hover > .u-text-hover-grey-light-2,
a.u-button-style:hover > .u-text-hover-grey-light-2[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-2:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-2:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-2[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-2[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-2,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-2[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-2:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-2.active,
.u-text-hover-grey-light-2.u-language-url:hover,
.u-text-hover-grey-light-2 .u-language-url:hover,
.u-text-hover-grey-light-2.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-light-2 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-2 .u-nav-link.active {
  color: #eeeeee !important;
}
.u-text-grey-light-2 .u-svg-link,
.u-text-hover-grey-light-2:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-2 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-2 .u-svg-link,
.u-text-hover-grey-light-2:focus .u-svg-link {
  fill: #eeeeee;
}
.u-link.u-text-grey-light-2:hover {
  color: #d6d6d6 !important;
}
a.u-link.u-text-hover-grey-light-2:hover {
  color: #eeeeee !important;
}
.u-text-grey-light-3,
.u-input.u-text-grey-light-3,
.u-input.u-text-grey-light-3[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-light-3,
li.active > a.u-button-style.u-text-grey-light-3[class*="u-border-"],
a.u-button-style.u-text-grey-light-3,
a.u-button-style.u-text-grey-light-3[class*="u-border-"] {
  color: #f6f6f6 !important;
}
a.u-button-style.u-text-grey-light-3:hover,
a.u-button-style.u-text-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-light-3:focus,
a.u-button-style.u-text-grey-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-light-3:active,
a.u-button-style.u-button-style.u-text-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-light-3.active,
a.u-button-style.u-button-style.u-text-grey-light-3[class*="u-border-"].active {
  color: #dddddd !important;
}
a.u-button-style:hover > .u-text-hover-grey-light-3,
a.u-button-style:hover > .u-text-hover-grey-light-3[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-light-3:hover,
a.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-light-3:focus,
a.u-button-style.u-button-style.u-text-hover-grey-light-3[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-light-3[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-3,
a.u-button-style.u-button-style.active > .u-text-active-grey-light-3[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-light-3:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-light-3.active,
.u-text-hover-grey-light-3.u-language-url:hover,
.u-text-hover-grey-light-3 .u-language-url:hover,
.u-text-hover-grey-light-3.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-light-3 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-light-3 .u-nav-link.active {
  color: #f6f6f6 !important;
}
.u-text-grey-light-3 .u-svg-link,
.u-text-hover-grey-light-3:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-light-3 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-light-3 .u-svg-link,
.u-text-hover-grey-light-3:focus .u-svg-link {
  fill: #f6f6f6;
}
.u-link.u-text-grey-light-3:hover {
  color: #dddddd !important;
}
a.u-link.u-text-hover-grey-light-3:hover {
  color: #f6f6f6 !important;
}
.u-text-white,
.u-input.u-text-white,
.u-input.u-text-white[class*="u-border-"],
li.active > a.u-button-style.u-text-white,
li.active > a.u-button-style.u-text-white[class*="u-border-"],
a.u-button-style.u-text-white,
a.u-button-style.u-text-white[class*="u-border-"] {
  color: #ffffff !important;
}
a.u-button-style.u-text-white:hover,
a.u-button-style.u-text-white[class*="u-border-"]:hover,
a.u-button-style.u-text-white:focus,
a.u-button-style.u-text-white[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-white:active,
a.u-button-style.u-button-style.u-text-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-white.active,
a.u-button-style.u-button-style.u-text-white[class*="u-border-"].active {
  color: #e6e6e6 !important;
}
a.u-button-style:hover > .u-text-hover-white,
a.u-button-style:hover > .u-text-hover-white[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-white:hover,
a.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-white:focus,
a.u-button-style.u-button-style.u-text-hover-white[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-white[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-white,
a.u-button-style.u-button-style.active > .u-text-active-white[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-white:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-white.active,
.u-text-hover-white.u-language-url:hover,
.u-text-hover-white .u-language-url:hover,
.u-text-hover-white.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-white .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-white .u-nav-link.active {
  color: #ffffff !important;
}
.u-text-white .u-svg-link,
.u-text-hover-white:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-white .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-white .u-svg-link,
.u-text-hover-white:focus .u-svg-link {
  fill: #ffffff;
}
.u-link.u-text-white:hover {
  color: #e6e6e6 !important;
}
a.u-link.u-text-hover-white:hover {
  color: #ffffff !important;
}
.u-text-black,
.u-input.u-text-black,
.u-input.u-text-black[class*="u-border-"],
li.active > a.u-button-style.u-text-black,
li.active > a.u-button-style.u-text-black[class*="u-border-"],
a.u-button-style.u-text-black,
a.u-button-style.u-text-black[class*="u-border-"] {
  color: #000000 !important;
}
a.u-button-style.u-text-black:hover,
a.u-button-style.u-text-black[class*="u-border-"]:hover,
a.u-button-style.u-text-black:focus,
a.u-button-style.u-text-black[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-black:active,
a.u-button-style.u-button-style.u-text-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-black.active,
a.u-button-style.u-button-style.u-text-black[class*="u-border-"].active {
  color: #000000 !important;
}
a.u-button-style:hover > .u-text-hover-black,
a.u-button-style:hover > .u-text-hover-black[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-black:hover,
a.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-black:focus,
a.u-button-style.u-button-style.u-text-hover-black[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-black[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-black,
a.u-button-style.u-button-style.active > .u-text-active-black[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-black:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-black.active,
.u-text-hover-black.u-language-url:hover,
.u-text-hover-black .u-language-url:hover,
.u-text-hover-black.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-black .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-black .u-nav-link.active {
  color: #000000 !important;
}
.u-text-black .u-svg-link,
.u-text-hover-black:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-black .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-black .u-svg-link,
.u-text-hover-black:focus .u-svg-link {
  fill: #000000;
}
.u-link.u-text-black:hover {
  color: #000000 !important;
}
a.u-link.u-text-hover-black:hover {
  color: #000000 !important;
}
.u-text-body-color,
.u-input.u-text-body-color,
.u-input.u-text-body-color[class*="u-border-"],
li.active > a.u-button-style.u-text-body-color,
li.active > a.u-button-style.u-text-body-color[class*="u-border-"],
a.u-button-style.u-text-body-color,
a.u-button-style.u-text-body-color[class*="u-border-"] {
  color: #111111 !important;
}
a.u-button-style.u-text-body-color:hover,
a.u-button-style.u-text-body-color[class*="u-border-"]:hover,
a.u-button-style.u-text-body-color:focus,
a.u-button-style.u-text-body-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-body-color:active,
a.u-button-style.u-button-style.u-text-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-body-color.active,
a.u-button-style.u-button-style.u-text-body-color[class*="u-border-"].active {
  color: #0f0f0f !important;
}
a.u-button-style:hover > .u-text-hover-body-color,
a.u-button-style:hover > .u-text-hover-body-color[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-body-color:hover,
a.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-body-color:focus,
a.u-button-style.u-button-style.u-text-hover-body-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-body-color,
a.u-button-style.u-button-style.active > .u-text-active-body-color[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-body-color:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-body-color.active,
.u-text-hover-body-color.u-language-url:hover,
.u-text-hover-body-color .u-language-url:hover,
.u-text-hover-body-color.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-body-color .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-body-color .u-nav-link.active {
  color: #111111 !important;
}
.u-text-body-color .u-svg-link,
.u-text-hover-body-color:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-body-color .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-body-color .u-svg-link,
.u-text-hover-body-color:focus .u-svg-link {
  fill: #111111;
}
.u-link.u-text-body-color:hover {
  color: #0f0f0f !important;
}
a.u-link.u-text-hover-body-color:hover {
  color: #111111 !important;
}
.u-text-body-alt-color,
.u-input.u-text-body-alt-color,
.u-input.u-text-body-alt-color[class*="u-border-"],
li.active > a.u-button-style.u-text-body-alt-color,
li.active > a.u-button-style.u-text-body-alt-color[class*="u-border-"],
a.u-button-style.u-text-body-alt-color,
a.u-button-style.u-text-body-alt-color[class*="u-border-"] {
  color: #ffffff !important;
}
a.u-button-style.u-text-body-alt-color:hover,
a.u-button-style.u-text-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-text-body-alt-color:focus,
a.u-button-style.u-text-body-alt-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-body-alt-color:active,
a.u-button-style.u-button-style.u-text-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-body-alt-color.active,
a.u-button-style.u-button-style.u-text-body-alt-color[class*="u-border-"].active {
  color: #e6e6e6 !important;
}
a.u-button-style:hover > .u-text-hover-body-alt-color,
a.u-button-style:hover > .u-text-hover-body-alt-color[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-body-alt-color:hover,
a.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-body-alt-color:focus,
a.u-button-style.u-button-style.u-text-hover-body-alt-color[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-body-alt-color[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-body-alt-color,
a.u-button-style.u-button-style.active > .u-text-active-body-alt-color[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-body-alt-color:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-body-alt-color.active,
.u-text-hover-body-alt-color.u-language-url:hover,
.u-text-hover-body-alt-color .u-language-url:hover,
.u-text-hover-body-alt-color.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-body-alt-color .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-body-alt-color .u-nav-link.active {
  color: #ffffff !important;
}
.u-text-body-alt-color .u-svg-link,
.u-text-hover-body-alt-color:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-body-alt-color .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-body-alt-color .u-svg-link,
.u-text-hover-body-alt-color:focus .u-svg-link {
  fill: #ffffff;
}
.u-link.u-text-body-alt-color:hover {
  color: #e6e6e6 !important;
}
a.u-link.u-text-hover-body-alt-color:hover {
  color: #ffffff !important;
}
.u-text-grey-25,
.u-input.u-text-grey-25,
.u-input.u-text-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-25,
li.active > a.u-button-style.u-text-grey-25[class*="u-border-"],
a.u-button-style.u-text-grey-25,
a.u-button-style.u-text-grey-25[class*="u-border-"] {
  color: #c0c0c0 !important;
}
a.u-button-style.u-text-grey-25:hover,
a.u-button-style.u-text-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-25:focus,
a.u-button-style.u-text-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-25:active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-25.active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"].active {
  color: #adadad !important;
}
a.u-button-style:hover > .u-text-hover-grey-25,
a.u-button-style:hover > .u-text-hover-grey-25[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-25:hover,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-25:focus,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-25,
a.u-button-style.u-button-style.active > .u-text-active-grey-25[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-25:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-25.active,
.u-text-hover-grey-25.u-language-url:hover,
.u-text-hover-grey-25 .u-language-url:hover,
.u-text-hover-grey-25.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-25 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-25 .u-nav-link.active {
  color: #c0c0c0 !important;
}
.u-text-grey-25 .u-svg-link,
.u-text-hover-grey-25:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-25 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-25 .u-svg-link,
.u-text-hover-grey-25:focus .u-svg-link {
  fill: #c0c0c0;
}
.u-link.u-text-grey-25:hover {
  color: #adadad !important;
}
a.u-link.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-text-grey-5,
.u-input.u-text-grey-5,
.u-input.u-text-grey-5[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-5,
li.active > a.u-button-style.u-text-grey-5[class*="u-border-"],
a.u-button-style.u-text-grey-5,
a.u-button-style.u-text-grey-5[class*="u-border-"] {
  color: #f2f2f2 !important;
}
a.u-button-style.u-text-grey-5:hover,
a.u-button-style.u-text-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-5:focus,
a.u-button-style.u-text-grey-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-5:active,
a.u-button-style.u-button-style.u-text-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-5.active,
a.u-button-style.u-button-style.u-text-grey-5[class*="u-border-"].active {
  color: #dadada !important;
}
a.u-button-style:hover > .u-text-hover-grey-5,
a.u-button-style:hover > .u-text-hover-grey-5[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-5:hover,
a.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-5:focus,
a.u-button-style.u-button-style.u-text-hover-grey-5[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-5[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-5,
a.u-button-style.u-button-style.active > .u-text-active-grey-5[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-5:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-5.active,
.u-text-hover-grey-5.u-language-url:hover,
.u-text-hover-grey-5 .u-language-url:hover,
.u-text-hover-grey-5.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-5 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-5 .u-nav-link.active {
  color: #f2f2f2 !important;
}
.u-text-grey-5 .u-svg-link,
.u-text-hover-grey-5:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-5 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-5 .u-svg-link,
.u-text-hover-grey-5:focus .u-svg-link {
  fill: #f2f2f2;
}
.u-link.u-text-grey-5:hover {
  color: #dadada !important;
}
a.u-link.u-text-hover-grey-5:hover {
  color: #f2f2f2 !important;
}
.u-text-grey-10,
.u-input.u-text-grey-10,
.u-input.u-text-grey-10[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-10,
li.active > a.u-button-style.u-text-grey-10[class*="u-border-"],
a.u-button-style.u-text-grey-10,
a.u-button-style.u-text-grey-10[class*="u-border-"] {
  color: #e5e5e5 !important;
}
a.u-button-style.u-text-grey-10:hover,
a.u-button-style.u-text-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-10:focus,
a.u-button-style.u-text-grey-10[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-10:active,
a.u-button-style.u-button-style.u-text-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-10.active,
a.u-button-style.u-button-style.u-text-grey-10[class*="u-border-"].active {
  color: #cecece !important;
}
a.u-button-style:hover > .u-text-hover-grey-10,
a.u-button-style:hover > .u-text-hover-grey-10[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-10:hover,
a.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-10:focus,
a.u-button-style.u-button-style.u-text-hover-grey-10[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-10[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-10,
a.u-button-style.u-button-style.active > .u-text-active-grey-10[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-10:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-10.active,
.u-text-hover-grey-10.u-language-url:hover,
.u-text-hover-grey-10 .u-language-url:hover,
.u-text-hover-grey-10.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-10 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-10 .u-nav-link.active {
  color: #e5e5e5 !important;
}
.u-text-grey-10 .u-svg-link,
.u-text-hover-grey-10:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-10 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-10 .u-svg-link,
.u-text-hover-grey-10:focus .u-svg-link {
  fill: #e5e5e5;
}
.u-link.u-text-grey-10:hover {
  color: #cecece !important;
}
a.u-link.u-text-hover-grey-10:hover {
  color: #e5e5e5 !important;
}
.u-text-grey-15,
.u-input.u-text-grey-15,
.u-input.u-text-grey-15[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-15,
li.active > a.u-button-style.u-text-grey-15[class*="u-border-"],
a.u-button-style.u-text-grey-15,
a.u-button-style.u-text-grey-15[class*="u-border-"] {
  color: #d9d9d9 !important;
}
a.u-button-style.u-text-grey-15:hover,
a.u-button-style.u-text-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-15:focus,
a.u-button-style.u-text-grey-15[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-15:active,
a.u-button-style.u-button-style.u-text-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-15.active,
a.u-button-style.u-button-style.u-text-grey-15[class*="u-border-"].active {
  color: #c3c3c3 !important;
}
a.u-button-style:hover > .u-text-hover-grey-15,
a.u-button-style:hover > .u-text-hover-grey-15[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-15:hover,
a.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-15:focus,
a.u-button-style.u-button-style.u-text-hover-grey-15[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-15[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-15,
a.u-button-style.u-button-style.active > .u-text-active-grey-15[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-15:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-15.active,
.u-text-hover-grey-15.u-language-url:hover,
.u-text-hover-grey-15 .u-language-url:hover,
.u-text-hover-grey-15.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-15 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-15 .u-nav-link.active {
  color: #d9d9d9 !important;
}
.u-text-grey-15 .u-svg-link,
.u-text-hover-grey-15:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-15 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-15 .u-svg-link,
.u-text-hover-grey-15:focus .u-svg-link {
  fill: #d9d9d9;
}
.u-link.u-text-grey-15:hover {
  color: #c3c3c3 !important;
}
a.u-link.u-text-hover-grey-15:hover {
  color: #d9d9d9 !important;
}
.u-text-grey-25,
.u-input.u-text-grey-25,
.u-input.u-text-grey-25[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-25,
li.active > a.u-button-style.u-text-grey-25[class*="u-border-"],
a.u-button-style.u-text-grey-25,
a.u-button-style.u-text-grey-25[class*="u-border-"] {
  color: #c0c0c0 !important;
}
a.u-button-style.u-text-grey-25:hover,
a.u-button-style.u-text-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-25:focus,
a.u-button-style.u-text-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-25:active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-25.active,
a.u-button-style.u-button-style.u-text-grey-25[class*="u-border-"].active {
  color: #adadad !important;
}
a.u-button-style:hover > .u-text-hover-grey-25,
a.u-button-style:hover > .u-text-hover-grey-25[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-25:hover,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-25:focus,
a.u-button-style.u-button-style.u-text-hover-grey-25[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-25[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-25,
a.u-button-style.u-button-style.active > .u-text-active-grey-25[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-25:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-25.active,
.u-text-hover-grey-25.u-language-url:hover,
.u-text-hover-grey-25 .u-language-url:hover,
.u-text-hover-grey-25.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-25 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-25 .u-nav-link.active {
  color: #c0c0c0 !important;
}
.u-text-grey-25 .u-svg-link,
.u-text-hover-grey-25:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-25 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-25 .u-svg-link,
.u-text-hover-grey-25:focus .u-svg-link {
  fill: #c0c0c0;
}
.u-link.u-text-grey-25:hover {
  color: #adadad !important;
}
a.u-link.u-text-hover-grey-25:hover {
  color: #c0c0c0 !important;
}
.u-text-grey-30,
.u-input.u-text-grey-30,
.u-input.u-text-grey-30[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-30,
li.active > a.u-button-style.u-text-grey-30[class*="u-border-"],
a.u-button-style.u-text-grey-30,
a.u-button-style.u-text-grey-30[class*="u-border-"] {
  color: #b3b3b3 !important;
}
a.u-button-style.u-text-grey-30:hover,
a.u-button-style.u-text-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-30:focus,
a.u-button-style.u-text-grey-30[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-30:active,
a.u-button-style.u-button-style.u-text-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-30.active,
a.u-button-style.u-button-style.u-text-grey-30[class*="u-border-"].active {
  color: #a1a1a1 !important;
}
a.u-button-style:hover > .u-text-hover-grey-30,
a.u-button-style:hover > .u-text-hover-grey-30[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-30:hover,
a.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-30:focus,
a.u-button-style.u-button-style.u-text-hover-grey-30[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-30[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-30,
a.u-button-style.u-button-style.active > .u-text-active-grey-30[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-30:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-30.active,
.u-text-hover-grey-30.u-language-url:hover,
.u-text-hover-grey-30 .u-language-url:hover,
.u-text-hover-grey-30.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-30 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-30 .u-nav-link.active {
  color: #b3b3b3 !important;
}
.u-text-grey-30 .u-svg-link,
.u-text-hover-grey-30:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-30 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-30 .u-svg-link,
.u-text-hover-grey-30:focus .u-svg-link {
  fill: #b3b3b3;
}
.u-link.u-text-grey-30:hover {
  color: #a1a1a1 !important;
}
a.u-link.u-text-hover-grey-30:hover {
  color: #b3b3b3 !important;
}
.u-text-grey-40,
.u-input.u-text-grey-40,
.u-input.u-text-grey-40[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-40,
li.active > a.u-button-style.u-text-grey-40[class*="u-border-"],
a.u-button-style.u-text-grey-40,
a.u-button-style.u-text-grey-40[class*="u-border-"] {
  color: #999999 !important;
}
a.u-button-style.u-text-grey-40:hover,
a.u-button-style.u-text-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-40:focus,
a.u-button-style.u-text-grey-40[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-40:active,
a.u-button-style.u-button-style.u-text-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-40.active,
a.u-button-style.u-button-style.u-text-grey-40[class*="u-border-"].active {
  color: #8a8a8a !important;
}
a.u-button-style:hover > .u-text-hover-grey-40,
a.u-button-style:hover > .u-text-hover-grey-40[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-40:hover,
a.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-40:focus,
a.u-button-style.u-button-style.u-text-hover-grey-40[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-40[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-40,
a.u-button-style.u-button-style.active > .u-text-active-grey-40[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-40:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-40.active,
.u-text-hover-grey-40.u-language-url:hover,
.u-text-hover-grey-40 .u-language-url:hover,
.u-text-hover-grey-40.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-40 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-40 .u-nav-link.active {
  color: #999999 !important;
}
.u-text-grey-40 .u-svg-link,
.u-text-hover-grey-40:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-40 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-40 .u-svg-link,
.u-text-hover-grey-40:focus .u-svg-link {
  fill: #999999;
}
.u-link.u-text-grey-40:hover {
  color: #8a8a8a !important;
}
a.u-link.u-text-hover-grey-40:hover {
  color: #999999 !important;
}
.u-text-grey-50,
.u-input.u-text-grey-50,
.u-input.u-text-grey-50[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-50,
li.active > a.u-button-style.u-text-grey-50[class*="u-border-"],
a.u-button-style.u-text-grey-50,
a.u-button-style.u-text-grey-50[class*="u-border-"] {
  color: #808080 !important;
}
a.u-button-style.u-text-grey-50:hover,
a.u-button-style.u-text-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-50:focus,
a.u-button-style.u-text-grey-50[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-50:active,
a.u-button-style.u-button-style.u-text-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-50.active,
a.u-button-style.u-button-style.u-text-grey-50[class*="u-border-"].active {
  color: #737373 !important;
}
a.u-button-style:hover > .u-text-hover-grey-50,
a.u-button-style:hover > .u-text-hover-grey-50[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-50:hover,
a.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-50:focus,
a.u-button-style.u-button-style.u-text-hover-grey-50[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-50[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-50,
a.u-button-style.u-button-style.active > .u-text-active-grey-50[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-50:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-50.active,
.u-text-hover-grey-50.u-language-url:hover,
.u-text-hover-grey-50 .u-language-url:hover,
.u-text-hover-grey-50.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-50 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-50 .u-nav-link.active {
  color: #808080 !important;
}
.u-text-grey-50 .u-svg-link,
.u-text-hover-grey-50:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-50 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-50 .u-svg-link,
.u-text-hover-grey-50:focus .u-svg-link {
  fill: #808080;
}
.u-link.u-text-grey-50:hover {
  color: #737373 !important;
}
a.u-link.u-text-hover-grey-50:hover {
  color: #808080 !important;
}
.u-text-grey-60,
.u-input.u-text-grey-60,
.u-input.u-text-grey-60[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-60,
li.active > a.u-button-style.u-text-grey-60[class*="u-border-"],
a.u-button-style.u-text-grey-60,
a.u-button-style.u-text-grey-60[class*="u-border-"] {
  color: #666666 !important;
}
a.u-button-style.u-text-grey-60:hover,
a.u-button-style.u-text-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-60:focus,
a.u-button-style.u-text-grey-60[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-60:active,
a.u-button-style.u-button-style.u-text-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-60.active,
a.u-button-style.u-button-style.u-text-grey-60[class*="u-border-"].active {
  color: #5c5c5c !important;
}
a.u-button-style:hover > .u-text-hover-grey-60,
a.u-button-style:hover > .u-text-hover-grey-60[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-60:hover,
a.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-60:focus,
a.u-button-style.u-button-style.u-text-hover-grey-60[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-60[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-60,
a.u-button-style.u-button-style.active > .u-text-active-grey-60[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-60:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-60.active,
.u-text-hover-grey-60.u-language-url:hover,
.u-text-hover-grey-60 .u-language-url:hover,
.u-text-hover-grey-60.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-60 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-60 .u-nav-link.active {
  color: #666666 !important;
}
.u-text-grey-60 .u-svg-link,
.u-text-hover-grey-60:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-60 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-60 .u-svg-link,
.u-text-hover-grey-60:focus .u-svg-link {
  fill: #666666;
}
.u-link.u-text-grey-60:hover {
  color: #5c5c5c !important;
}
a.u-link.u-text-hover-grey-60:hover {
  color: #666666 !important;
}
.u-text-grey-70,
.u-input.u-text-grey-70,
.u-input.u-text-grey-70[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-70,
li.active > a.u-button-style.u-text-grey-70[class*="u-border-"],
a.u-button-style.u-text-grey-70,
a.u-button-style.u-text-grey-70[class*="u-border-"] {
  color: #4d4d4d !important;
}
a.u-button-style.u-text-grey-70:hover,
a.u-button-style.u-text-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-70:focus,
a.u-button-style.u-text-grey-70[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-70:active,
a.u-button-style.u-button-style.u-text-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-70.active,
a.u-button-style.u-button-style.u-text-grey-70[class*="u-border-"].active {
  color: #454545 !important;
}
a.u-button-style:hover > .u-text-hover-grey-70,
a.u-button-style:hover > .u-text-hover-grey-70[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-70:hover,
a.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-70:focus,
a.u-button-style.u-button-style.u-text-hover-grey-70[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-70[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-70,
a.u-button-style.u-button-style.active > .u-text-active-grey-70[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-70:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-70.active,
.u-text-hover-grey-70.u-language-url:hover,
.u-text-hover-grey-70 .u-language-url:hover,
.u-text-hover-grey-70.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-70 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-70 .u-nav-link.active {
  color: #4d4d4d !important;
}
.u-text-grey-70 .u-svg-link,
.u-text-hover-grey-70:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-70 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-70 .u-svg-link,
.u-text-hover-grey-70:focus .u-svg-link {
  fill: #4d4d4d;
}
.u-link.u-text-grey-70:hover {
  color: #454545 !important;
}
a.u-link.u-text-hover-grey-70:hover {
  color: #4d4d4d !important;
}
.u-text-grey-75,
.u-input.u-text-grey-75,
.u-input.u-text-grey-75[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-75,
li.active > a.u-button-style.u-text-grey-75[class*="u-border-"],
a.u-button-style.u-text-grey-75,
a.u-button-style.u-text-grey-75[class*="u-border-"] {
  color: #404040 !important;
}
a.u-button-style.u-text-grey-75:hover,
a.u-button-style.u-text-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-75:focus,
a.u-button-style.u-text-grey-75[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-75:active,
a.u-button-style.u-button-style.u-text-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-75.active,
a.u-button-style.u-button-style.u-text-grey-75[class*="u-border-"].active {
  color: #3a3a3a !important;
}
a.u-button-style:hover > .u-text-hover-grey-75,
a.u-button-style:hover > .u-text-hover-grey-75[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-75:hover,
a.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-75:focus,
a.u-button-style.u-button-style.u-text-hover-grey-75[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-75[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-75,
a.u-button-style.u-button-style.active > .u-text-active-grey-75[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-75:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-75.active,
.u-text-hover-grey-75.u-language-url:hover,
.u-text-hover-grey-75 .u-language-url:hover,
.u-text-hover-grey-75.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-75 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-75 .u-nav-link.active {
  color: #404040 !important;
}
.u-text-grey-75 .u-svg-link,
.u-text-hover-grey-75:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-75 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-75 .u-svg-link,
.u-text-hover-grey-75:focus .u-svg-link {
  fill: #404040;
}
.u-link.u-text-grey-75:hover {
  color: #3a3a3a !important;
}
a.u-link.u-text-hover-grey-75:hover {
  color: #404040 !important;
}
.u-text-grey-80,
.u-input.u-text-grey-80,
.u-input.u-text-grey-80[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-80,
li.active > a.u-button-style.u-text-grey-80[class*="u-border-"],
a.u-button-style.u-text-grey-80,
a.u-button-style.u-text-grey-80[class*="u-border-"] {
  color: #333333 !important;
}
a.u-button-style.u-text-grey-80:hover,
a.u-button-style.u-text-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-80:focus,
a.u-button-style.u-text-grey-80[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-80:active,
a.u-button-style.u-button-style.u-text-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-80.active,
a.u-button-style.u-button-style.u-text-grey-80[class*="u-border-"].active {
  color: #2e2e2e !important;
}
a.u-button-style:hover > .u-text-hover-grey-80,
a.u-button-style:hover > .u-text-hover-grey-80[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-80:hover,
a.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-80:focus,
a.u-button-style.u-button-style.u-text-hover-grey-80[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-80[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-80,
a.u-button-style.u-button-style.active > .u-text-active-grey-80[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-80:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-80.active,
.u-text-hover-grey-80.u-language-url:hover,
.u-text-hover-grey-80 .u-language-url:hover,
.u-text-hover-grey-80.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-80 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-80 .u-nav-link.active {
  color: #333333 !important;
}
.u-text-grey-80 .u-svg-link,
.u-text-hover-grey-80:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-80 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-80 .u-svg-link,
.u-text-hover-grey-80:focus .u-svg-link {
  fill: #333333;
}
.u-link.u-text-grey-80:hover {
  color: #2e2e2e !important;
}
a.u-link.u-text-hover-grey-80:hover {
  color: #333333 !important;
}
.u-text-grey-90,
.u-input.u-text-grey-90,
.u-input.u-text-grey-90[class*="u-border-"],
li.active > a.u-button-style.u-text-grey-90,
li.active > a.u-button-style.u-text-grey-90[class*="u-border-"],
a.u-button-style.u-text-grey-90,
a.u-button-style.u-text-grey-90[class*="u-border-"] {
  color: #1a1a1a !important;
}
a.u-button-style.u-text-grey-90:hover,
a.u-button-style.u-text-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-text-grey-90:focus,
a.u-button-style.u-text-grey-90[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-text-grey-90:active,
a.u-button-style.u-button-style.u-text-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-grey-90.active,
a.u-button-style.u-button-style.u-text-grey-90[class*="u-border-"].active {
  color: #171717 !important;
}
a.u-button-style:hover > .u-text-hover-grey-90,
a.u-button-style:hover > .u-text-hover-grey-90[class*="u-border-"],
a.u-button-style.u-button-style.u-text-hover-grey-90:hover,
a.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:hover,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90.active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90:active,
a.u-button-style.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-text-hover-grey-90:focus,
a.u-button-style.u-button-style.u-text-hover-grey-90[class*="u-border-"]:focus,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90[class*="u-border-"]:active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90.active,
a.u-button-style.u-button-style.u-button-style.u-button-style.u-text-active-grey-90[class*="u-border-"].active,
a.u-button-style.u-button-style.active > .u-text-active-grey-90,
a.u-button-style.u-button-style.active > .u-text-active-grey-90[class*="u-border-"],
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-text-hover-grey-90:hover,
:not(.level-2) > .u-nav > .u-nav-item > a.u-nav-link.u-nav-link.u-text-active-grey-90.active,
.u-text-hover-grey-90.u-language-url:hover,
.u-text-hover-grey-90 .u-language-url:hover,
.u-text-hover-grey-90.u-carousel-control:hover,
.u-popupmenu-items.u-text-hover-grey-90 .u-nav-link:hover,
.u-popupmenu-items.u-popupmenu-items.u-text-active-grey-90 .u-nav-link.active {
  color: #1a1a1a !important;
}
.u-text-grey-90 .u-svg-link,
.u-text-hover-grey-90:hover .u-svg-link,
.u-button-style:hover > .u-text-hover-grey-90 .u-svg-link,
.u-button-style.u-button-style.active > .u-text-active-grey-90 .u-svg-link,
.u-text-hover-grey-90:focus .u-svg-link {
  fill: #1a1a1a;
}
.u-link.u-text-grey-90:hover {
  color: #171717 !important;
}
a.u-link.u-text-hover-grey-90:hover {
  color: #1a1a1a !important;
}
/*end-variables colors*/

/*begin-variables sitestylecss*/



        .u-body
        {
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        --theme-sheet-width-xl: 1140px;
        --theme-sheet-width-lg: 940px;
        --theme-sheet-width-md: 720px;
        --theme-sheet-width-sm: 540px;
        --theme-sheet-width-xs: 340px;
        
        
        
        
        
        
        
        
        
        
        
        }

        /** common-rules **/
        h1.u-title
        {
        font-weight: 400;
        font-size: 4.5rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h2.u-subtitle
        {
        font-weight: 400;
        font-size: 2.25rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        h1:not(.u-title)
        {
        font-weight: 400;
        font-size: 6rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        }
        h2:not(.u-subtitle)
        {
        font-size: 3rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        font-weight: 700;
        }
        h3
        {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        font-weight: 700;
        }
        h4
        {
        font-weight: 400;
        font-size: 1.5rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        }
        h5
        {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 4px;
        }
        h6
        {
        font-size: 1.125rem;
        line-height: 1.2;
        margin-top: 20px;
        margin-bottom: 20px;
        font-family: Ubuntu,sans-serif;
        font-weight: 700;
        }
        p.u-large-text
        {
        font-size: 1.25rem;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        p.u-small-text
        {
        font-size: 0.875rem;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        p:not(.u-text-variant)
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        .u-btn
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        blockquote
        {
        font-style: italic;
        padding-left: 20px;
        border-width: 4px;
        margin-top: 20px;
        margin-bottom: 20px;
        }
        .u-metadata
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        ul:not(.u-unstyled)
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        ol
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        .u-post-content
        {
        margin-top: 20px;
        margin-bottom: 20px;
        }
        .u-input
        {
        border-width: 1px;
        borders: top right bottom left;
        }
        /** common-rules **/

        /** publish-rules **/
        /*begin-media rules*/
        @media (max-width: 767px) {
        h1.u-title
        {
        font-size: 3.75rem;
        }
        }
        @media (max-width: 575px) {
        h1.u-title
        {
        font-size: 3rem;
        }
        }
        @media (max-width: 575px) {
        h2.u-subtitle
        {
        font-size: 1.5rem;
        }
        }
        @media (max-width: 575px) {
        h1:not(.u-title)
        {
        font-size: 1.875rem;
        }
        }
        @media (max-width: 575px) {
        h2:not(.u-subtitle)
        {
        font-size: 1.5rem;
        }
        }
        @media (max-width: 575px) {
        h3
        {
        font-size: 1.5rem;
        }
        }
        /*end-media rules*/
        /** publish-rules **/

        

        /** cms-rules **/
        /*begin-responsive rules*/
        .u-sm h1.u-title
        {
        font-size: 3.75rem;
        }
        .u-xs h1.u-title
        {
        font-size: 3rem;
        }
        .u-xs h2.u-subtitle
        {
        font-size: 1.5rem;
        }
        .u-xs h1:not(.u-title)
        {
        font-size: 1.875rem;
        }
        .u-xs h2:not(.u-subtitle)
        {
        font-size: 1.5rem;
        }
        .u-xs h3
        {
        font-size: 1.5rem;
        }
        /*end-responsive rules*/
        /** cms-rules **/

        /** color-rules **/
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a,
        .u-gradient > .u-container-layout > a,
        .u-image:not(.u-shading) > .u-container-layout > a,
        a
        {
        color: #478ac9;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > a:hover,
        .u-gradient > .u-container-layout > a:hover,
        .u-image:not(.u-shading) > .u-container-layout > a:hover,
        a:hover
        {
        color: #387cbd;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn,
        .u-gradient > .u-container-layout > .u-btn,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn,
        .u-btn
        {
        background-color: #478ac9;
        color: #ffffff;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:hover,
        .u-gradient > .u-container-layout > .u-btn:hover,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:hover,
        .u-btn:hover
        {
        background-color: #387cbd;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:focus,
        .u-gradient > .u-container-layout > .u-btn:focus,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:focus,
        .u-btn:focus
        {
        background-color: #387cbd;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-btn:active,
        .u-gradient > .u-container-layout > .u-btn:active,
        .u-image:not(.u-shading) > .u-container-layout > .u-btn:active,
        .u-btn:active
        {
        background-color: #387cbd;
        color: #e6e6e6;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > blockquote,
        .u-gradient > .u-container-layout > blockquote,
        .u-image:not(.u-shading) > .u-container-layout > blockquote,
        blockquote
        {
        border-color: #478ac9;
        }
        .u-overlap.u-overlap-transparent:not(.u-overlap-contrast) .u-header :not(.u-nav-item) > .u-input,
        .u-gradient > .u-container-layout > .u-input,
        .u-image:not(.u-shading) > .u-container-layout > .u-input,
        .u-input
        {
        border-color: #b3b3b3;
        background-color: #ffffff;
        color: #000000;
        }
        /** color-rules **/

        /** alt-color-rules **/
        .u-body-color a,.u-palette-1-base a,.u-palette-1-dark-3 a,.u-palette-1-dark-2 a,.u-palette-1-dark-1 a,.u-palette-1 a,.u-palette-1-light-1 a,.u-palette-2-base a,.u-palette-2-dark-3 a,.u-palette-2-dark-2 a,.u-palette-2-dark-1 a,.u-palette-2 a,.u-palette-2-light-1 a,.u-palette-3-dark-3 a,.u-palette-3-dark-2 a,.u-palette-3-dark-1 a,.u-palette-4-base a,.u-palette-4-dark-3 a,.u-palette-4-dark-2 a,.u-palette-4-dark-1 a,.u-palette-5-dark-3 a,.u-palette-5-dark-2 a,.u-palette-5-dark-1 a,.u-grey-40 a,.u-grey-30 a,.u-grey-90 a,.u-grey-80 a,.u-grey-75 a,.u-black a,.u-grey-70 a,.u-grey-60 a,.u-grey-50 a,.u-grey-dark-3 a,.u-grey-dark-2 a,.u-grey-dark-1 a,.u-grey a,.u-shading a,.u-overlap-contrast .u-header a:not(.u-nav-link):not(.u-btn)
        {
        color: #adcce9;
        }
        .u-body-color a:hover,.u-palette-1-base a:hover,.u-palette-1-dark-3 a:hover,.u-palette-1-dark-2 a:hover,.u-palette-1-dark-1 a:hover,.u-palette-1 a:hover,.u-palette-1-light-1 a:hover,.u-palette-2-base a:hover,.u-palette-2-dark-3 a:hover,.u-palette-2-dark-2 a:hover,.u-palette-2-dark-1 a:hover,.u-palette-2 a:hover,.u-palette-2-light-1 a:hover,.u-palette-3-dark-3 a:hover,.u-palette-3-dark-2 a:hover,.u-palette-3-dark-1 a:hover,.u-palette-4-base a:hover,.u-palette-4-dark-3 a:hover,.u-palette-4-dark-2 a:hover,.u-palette-4-dark-1 a:hover,.u-palette-5-dark-3 a:hover,.u-palette-5-dark-2 a:hover,.u-palette-5-dark-1 a:hover,.u-grey-40 a:hover,.u-grey-30 a:hover,.u-grey-90 a:hover,.u-grey-80 a:hover,.u-grey-75 a:hover,.u-black a:hover,.u-grey-70 a:hover,.u-grey-60 a:hover,.u-grey-50 a:hover,.u-grey-dark-3 a:hover,.u-grey-dark-2 a:hover,.u-grey-dark-1 a:hover,.u-grey a:hover
        {
        color: #a1a1a1;
        }
        .u-body-color .u-btn,.u-palette-1-base .u-btn,.u-palette-1-dark-3 .u-btn,.u-palette-1-dark-2 .u-btn,.u-palette-1-dark-1 .u-btn,.u-palette-1 .u-btn,.u-palette-1-light-1 .u-btn,.u-palette-2-base .u-btn,.u-palette-2-dark-3 .u-btn,.u-palette-2-dark-2 .u-btn,.u-palette-2-dark-1 .u-btn,.u-palette-2 .u-btn,.u-palette-2-light-1 .u-btn,.u-palette-3-dark-3 .u-btn,.u-palette-3-dark-2 .u-btn,.u-palette-3-dark-1 .u-btn,.u-palette-4-base .u-btn,.u-palette-4-dark-3 .u-btn,.u-palette-4-dark-2 .u-btn,.u-palette-4-dark-1 .u-btn,.u-palette-5-dark-3 .u-btn,.u-palette-5-dark-2 .u-btn,.u-palette-5-dark-1 .u-btn,.u-grey-40 .u-btn,.u-grey-30 .u-btn,.u-grey-90 .u-btn,.u-grey-80 .u-btn,.u-grey-75 .u-btn,.u-black .u-btn,.u-grey-70 .u-btn,.u-grey-60 .u-btn,.u-grey-50 .u-btn,.u-grey-dark-3 .u-btn,.u-grey-dark-2 .u-btn,.u-grey-dark-1 .u-btn,.u-grey .u-btn,.u-shading .u-btn,.u-overlap-contrast .u-header .u-btn
        {
        background-color: #adcce9;
        color: #000000;
        }
        .u-body-color .u-btn:hover,.u-palette-1-base .u-btn:hover,.u-palette-1-dark-3 .u-btn:hover,.u-palette-1-dark-2 .u-btn:hover,.u-palette-1-dark-1 .u-btn:hover,.u-palette-1 .u-btn:hover,.u-palette-1-light-1 .u-btn:hover,.u-palette-2-base .u-btn:hover,.u-palette-2-dark-3 .u-btn:hover,.u-palette-2-dark-2 .u-btn:hover,.u-palette-2-dark-1 .u-btn:hover,.u-palette-2 .u-btn:hover,.u-palette-2-light-1 .u-btn:hover,.u-palette-3-dark-3 .u-btn:hover,.u-palette-3-dark-2 .u-btn:hover,.u-palette-3-dark-1 .u-btn:hover,.u-palette-4-base .u-btn:hover,.u-palette-4-dark-3 .u-btn:hover,.u-palette-4-dark-2 .u-btn:hover,.u-palette-4-dark-1 .u-btn:hover,.u-palette-5-dark-3 .u-btn:hover,.u-palette-5-dark-2 .u-btn:hover,.u-palette-5-dark-1 .u-btn:hover,.u-grey-40 .u-btn:hover,.u-grey-30 .u-btn:hover,.u-grey-90 .u-btn:hover,.u-grey-80 .u-btn:hover,.u-grey-75 .u-btn:hover,.u-black .u-btn:hover,.u-grey-70 .u-btn:hover,.u-grey-60 .u-btn:hover,.u-grey-50 .u-btn:hover,.u-grey-dark-3 .u-btn:hover,.u-grey-dark-2 .u-btn:hover,.u-grey-dark-1 .u-btn:hover,.u-grey .u-btn:hover,.u-shading .u-btn:hover,.u-overlap-contrast .u-header .u-btn:hover
        {
        background-color: #8db8e0;
        color: #ffffff;
        }
        .u-body-color .u-btn:active,.u-palette-1-base .u-btn:active,.u-palette-1-dark-3 .u-btn:active,.u-palette-1-dark-2 .u-btn:active,.u-palette-1-dark-1 .u-btn:active,.u-palette-1 .u-btn:active,.u-palette-1-light-1 .u-btn:active,.u-palette-2-base .u-btn:active,.u-palette-2-dark-3 .u-btn:active,.u-palette-2-dark-2 .u-btn:active,.u-palette-2-dark-1 .u-btn:active,.u-palette-2 .u-btn:active,.u-palette-2-light-1 .u-btn:active,.u-palette-3-dark-3 .u-btn:active,.u-palette-3-dark-2 .u-btn:active,.u-palette-3-dark-1 .u-btn:active,.u-palette-4-base .u-btn:active,.u-palette-4-dark-3 .u-btn:active,.u-palette-4-dark-2 .u-btn:active,.u-palette-4-dark-1 .u-btn:active,.u-palette-5-dark-3 .u-btn:active,.u-palette-5-dark-2 .u-btn:active,.u-palette-5-dark-1 .u-btn:active,.u-grey-40 .u-btn:active,.u-grey-30 .u-btn:active,.u-grey-90 .u-btn:active,.u-grey-80 .u-btn:active,.u-grey-75 .u-btn:active,.u-black .u-btn:active,.u-grey-70 .u-btn:active,.u-grey-60 .u-btn:active,.u-grey-50 .u-btn:active,.u-grey-dark-3 .u-btn:active,.u-grey-dark-2 .u-btn:active,.u-grey-dark-1 .u-btn:active,.u-grey .u-btn:active,.u-shading .u-btn:active,.u-overlap-contrast .u-header .u-btn:active
        {
        background-color: #8db8e0;
        color: #ffffff;
        }
        /** alt-color-rules **/
    


/*end-variables sitestylecss*/
 .u-header {
  background-image: none;
}

.u-header .u-sheet-1 {
  min-height: 72px;
}

.u-header .u-menu-1 {
  margin: 20px auto;
}

.u-header .u-nav-1 {
  font-size: 1rem;
}

.u-header .u-nav-2 {
  font-size: 1rem;
}




 .u-footer {
  background-image: none;
}

.u-footer .u-sheet-1 {
  min-height: 120px;
}

.u-footer .u-text-1 {
  width: 417px;
  margin: 49px auto;
}

.u-footer .u-btn-1 {
  background-image: none;
  padding: 0;
}
@media (max-width: 1199px) {
  .u-footer .u-sheet-1 {
    min-height: 99px;
  }
}
@media (max-width: 991px) {
  .u-footer .u-sheet-1 {
    min-height: 76px;
  }
}
@media (max-width: 767px) {
  .u-footer .u-sheet-1 {
    min-height: 57px;
  }
}
@media (max-width: 575px) {
  .u-footer .u-sheet-1 {
    min-height: 36px;
  }

  .u-footer .u-text-1 {
    width: 340px;
  }
}

 /*begin-variables base-font-size*/ 
 html { font-size: 16px; }
 /*end-variables base-font-size*/