@import url(https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Outfit:wght@100..900&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap);
@import url(https://use.typekit.net/xav4vib.css);
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    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(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .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(.9, .9, .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: none;
  }

  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: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  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 bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

  40% {
    transform: scale3d(.9, .9, .9);
  }

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

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  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: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

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

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

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  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);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.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, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    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, 45deg);
    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, -45deg);
    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, -45deg);
    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, 90deg);
    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-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 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, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    font-size: 14px;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 35px;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    color: #555555;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-results {
    display: block;
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
    cursor: pointer;
}

.select2-container--open .select2-dropdown {
    left: 0;
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 4px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    color: #555555 !important;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
    display: none;
}

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
    float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    color: #555555;
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic .select2-selection--single {
    background-color: #f6f6f6;
    border: 1px solid #ced4da;
    border-radius: 4px;
    outline: 0;
    background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #ced4da;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
    float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
    border: none;
    border-right: 1px solid #ced4da;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
    border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
}

.select2-container--classic .select2-dropdown {
    background-color: white;
    border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
    border-top: none;
}

.select2-container--classic .select2-results>.select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
    padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: white;
}

.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}
/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999 !important;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img,
#swipebox-slider .slide .swipebox-video-container,
#swipebox-slider .slide .swipebox-inline-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url(/media/images/website/loader.gif) no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url(/media/images/website/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  backface-visibility: hidden;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
@charset "UTF-8";
/* Buttons */
/* Custom Form */
/* Checkmark form */
/* GDPR */
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #c19046;
  --bs-secondary: #000000;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #cc3636;
  --bs-light: #e5e5e5;
  --bs-dark: #0d1319;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

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

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

ol,
ul {
  padding-left: 2rem;
}

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #444;
  text-decoration: underline;
}
a:hover {
  color: rgb(54.4, 54.4, 54.4);
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

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

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

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

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

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

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid, .page-content .custom-table table tr td img, .img-right, .img-left {
  max-width: 100%;
  height: auto;
}

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

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row, .page-content .custom-table table tr, .page-content .custom-list.column-3 ol, .page-content .column-3.home-text ol, .page-content .custom-list.column-3 ul, .page-content .column-3.home-text ul, .sidebar-content-full .property-list-list .property-list-box .property {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > *, .page-content .custom-table table tr > *, .page-content .custom-list.column-3 ol > *, .page-content .column-3.home-text ol > *, .page-content .custom-list.column-3 ul > *, .page-content .column-3.home-text ul > *, .sidebar-content-full .property-list-list .property-list-box .property > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12, .page-content .custom-table table tr td, .sidebar-form .col-md-8,
.sidebar-form .col-md-4,
.sidebar-form .col-md-3 {
  flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6, .page-content .custom-table table tr td, .page-content .custom-list.column-3 ol li, .page-content .column-3.home-text ol li, .page-content .custom-list.column-3 ul li, .page-content .column-3.home-text ul li {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4,
  .page-content .custom-list.column-3 ol,
  .page-content .column-3.home-text ol {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5,
  .page-content .custom-table table tr,
  .page-content .custom-list.column-3 ul,
  .page-content .column-3.home-text ul {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5, .sidebar-content-full .property-list-list .property-list-box .porta-img {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7, .sidebar-content-full .property-list-list .property-list-box .textos {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1280px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4, .page-content .custom-list.column-3 ol li, .page-content .column-3.home-text ol li, .page-content .custom-list.column-3 ul li, .page-content .column-3.home-text ul li {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: rgb(242.6, 232.8, 218);
  --bs-table-striped-bg: rgb(230.47, 221.16, 207.1);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(218.34, 209.52, 196.2);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(224.405, 215.34, 201.65);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(218.34, 209.52, 196.2);
}

.table-secondary {
  --bs-table-bg: #cccccc;
  --bs-table-striped-bg: rgb(193.8, 193.8, 193.8);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(183.6, 183.6, 183.6);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(188.7, 188.7, 188.7);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(183.6, 183.6, 183.6);
}

.table-success {
  --bs-table-bg: rgb(209, 231, 220.8);
  --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(188.1, 207.9, 198.72);
}

.table-info {
  --bs-table-bg: rgb(206.6, 244.4, 252);
  --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(185.94, 219.96, 226.8);
}

.table-warning {
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(229.5, 218.34, 184.86);
}

.table-danger {
  --bs-table-bg: rgb(244.8, 214.8, 214.8);
  --bs-table-striped-bg: rgb(232.56, 204.06, 204.06);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(220.32, 193.32, 193.32);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(226.44, 198.69, 198.69);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(220.32, 193.32, 193.32);
}

.table-light {
  --bs-table-bg: #e5e5e5;
  --bs-table-striped-bg: rgb(217.55, 217.55, 217.55);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(206.1, 206.1, 206.1);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(211.825, 211.825, 211.825);
  --bs-table-hover-color: #000;
  color: #000;
  border-color: rgb(206.1, 206.1, 206.1);
}

.table-dark {
  --bs-table-bg: #0d1319;
  --bs-table-striped-bg: rgb(25.1, 30.8, 36.5);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(37.2, 42.6, 48);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(31.15, 36.7, 42.25);
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: rgb(37.2, 42.6, 48);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1279.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: rgb(224, 199.5, 162.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: rgb(221.35, 224.2, 227.05);
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: rgb(221.35, 224.2, 227.05);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + (0.75rem + 2px));
}
textarea.form-control-sm {
  min-height: calc(1.5em + (0.5rem + 2px));
}
textarea.form-control-lg {
  min-height: calc(1.5em + (1rem + 2px));
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(224, 199.5, 162.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(224, 199.5, 162.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.form-check-input:checked {
  background-color: #c19046;
  border-color: #c19046;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #c19046;
  border-color: #c19046;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28224, 199.5, 162.5%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .property-data .nav-tabs li .btn-check[disabled] + a, .property-data .btn-check[disabled] + .btn-collapse-desc,
.property-data .btn-check[disabled] + .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-check[disabled] + .read-more, .noticia .text-new .btn-check[disabled] + .read-more, .btn-check:disabled + .btn, .property-data .nav-tabs li .btn-check:disabled + a, .property-data .btn-check:disabled + .btn-collapse-desc,
.property-data .btn-check:disabled + .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-check:disabled + .read-more, .noticia .text-new .btn-check:disabled + .read-more {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #c19046;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(236.4, 221.7, 199.5);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #c19046;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(236.4, 221.7, 199.5);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn, .input-group .property-data .nav-tabs li a, .property-data .nav-tabs li .input-group a, .input-group .property-data .btn-collapse-desc, .property-data .input-group .btn-collapse-desc,
.input-group .property-data .btn-collapse,
.property-data .input-group .btn-collapse, .input-group .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .input-group .read-more, .input-group .noticia .text-new .read-more, .noticia .text-new .input-group .read-more {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus, .input-group .property-data .nav-tabs li a:focus, .property-data .nav-tabs li .input-group a:focus, .input-group .property-data .btn-collapse-desc:focus, .property-data .input-group .btn-collapse-desc:focus,
.input-group .property-data .btn-collapse:focus,
.property-data .input-group .btn-collapse:focus, .input-group .page-news .sidebar-news .last-news .noticia .read-more:focus, .page-news .sidebar-news .last-news .noticia .input-group .read-more:focus, .input-group .noticia .text-new .read-more:focus, .noticia .text-new .input-group .read-more:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
.property-data .nav-tabs li .input-group-lg > a,
.property-data .input-group-lg > .btn-collapse-desc,
.property-data .input-group-lg > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .input-group-lg > .read-more,
.noticia .text-new .input-group-lg > .read-more {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
.property-data .nav-tabs li .input-group-sm > a,
.property-data .input-group-sm > .btn-collapse-desc,
.property-data .input-group-sm > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .input-group-sm > .read-more,
.noticia .text-new .input-group-sm > .read-more {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #cc3636;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(204, 54, 54, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #cc3636;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23cc3636'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23cc3636' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #cc3636;
  box-shadow: 0 0 0 0.25rem rgba(204, 54, 54, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #cc3636;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23cc3636'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23cc3636' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #cc3636;
  box-shadow: 0 0 0 0.25rem rgba(204, 54, 54, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #cc3636;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #cc3636;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 54, 54, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #cc3636;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn, .property-data .nav-tabs li a, .property-data .btn-collapse-desc,
.property-data .btn-collapse, .page-news .sidebar-news .last-news .noticia .read-more, .noticia .text-new .read-more {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .property-data .nav-tabs li a, .property-data .btn-collapse-desc,
  .property-data .btn-collapse, .page-news .sidebar-news .last-news .noticia .read-more, .noticia .text-new .read-more {
    transition: none;
  }
}
.btn:hover, .property-data .nav-tabs li a:hover, .property-data .btn-collapse-desc:hover,
.property-data .btn-collapse:hover, .page-news .sidebar-news .last-news .noticia .read-more:hover, .noticia .text-new .read-more:hover {
  color: #212529;
}
.btn-check:focus + .btn, .property-data .nav-tabs li .btn-check:focus + a, .property-data .btn-check:focus + .btn-collapse-desc,
.property-data .btn-check:focus + .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-check:focus + .read-more, .noticia .text-new .btn-check:focus + .read-more, .btn:focus, .property-data .nav-tabs li a:focus, .property-data .btn-collapse-desc:focus,
.property-data .btn-collapse:focus, .page-news .sidebar-news .last-news .noticia .read-more:focus, .noticia .text-new .read-more:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}
.btn:disabled, .property-data .nav-tabs li a:disabled, .property-data .btn-collapse-desc:disabled,
.property-data .btn-collapse:disabled, .page-news .sidebar-news .last-news .noticia .read-more:disabled, .noticia .text-new .read-more:disabled, .btn.disabled, .property-data .nav-tabs li a.disabled, .property-data .disabled.btn-collapse-desc,
.property-data .disabled.btn-collapse, .page-news .sidebar-news .last-news .noticia .disabled.read-more, .noticia .text-new .disabled.read-more, fieldset:disabled .btn, fieldset:disabled .property-data .nav-tabs li a, .property-data .nav-tabs li fieldset:disabled a, fieldset:disabled .property-data .btn-collapse-desc, .property-data fieldset:disabled .btn-collapse-desc,
fieldset:disabled .property-data .btn-collapse,
.property-data fieldset:disabled .btn-collapse, fieldset:disabled .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia fieldset:disabled .read-more, fieldset:disabled .noticia .text-new .read-more, .noticia .text-new fieldset:disabled .read-more {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #000;
  background-color: #c19046;
  border-color: #c19046;
}
.btn-primary:hover {
  color: #000;
  background-color: rgb(202.3, 160.65, 97.75);
  border-color: rgb(199.2, 155.1, 88.5);
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: rgb(202.3, 160.65, 97.75);
  border-color: rgb(199.2, 155.1, 88.5);
  box-shadow: 0 0 0 0.25rem rgba(164.05, 122.4, 59.5, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: rgb(205.4, 166.2, 107);
  border-color: rgb(199.2, 155.1, 88.5);
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(164.05, 122.4, 59.5, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #c19046;
  border-color: #c19046;
}

.btn-secondary {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.25rem rgba(38.25, 38.25, 38.25, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38.25, 38.25, 38.25, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(20, 108, 67.2);
  border-color: rgb(18.75, 101.25, 63);
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(59.5, 153, 109.65, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: rgb(49.3, 209.95, 242.25);
  border-color: rgb(37.2, 207.3, 241.5);
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: rgb(61.4, 212.6, 243);
  border-color: rgb(37.2, 207.3, 241.5);
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11.05, 171.7, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: rgb(255, 202.3, 44.2);
  border-color: rgb(255, 199.2, 31.8);
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: rgb(255, 205.4, 56.6);
  border-color: rgb(255, 199.2, 31.8);
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(216.75, 164.05, 5.95, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #cc3636;
  border-color: #cc3636;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(173.4, 45.9, 45.9);
  border-color: rgb(163.2, 43.2, 43.2);
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: rgb(173.4, 45.9, 45.9);
  border-color: rgb(163.2, 43.2, 43.2);
  box-shadow: 0 0 0 0.25rem rgba(211.65, 84.15, 84.15, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(163.2, 43.2, 43.2);
  border-color: rgb(153, 40.5, 40.5);
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211.65, 84.15, 84.15, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #cc3636;
  border-color: #cc3636;
}

.btn-light {
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}
.btn-light:hover {
  color: #000;
  background-color: rgb(232.9, 232.9, 232.9);
  border-color: rgb(231.6, 231.6, 231.6);
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: rgb(232.9, 232.9, 232.9);
  border-color: rgb(231.6, 231.6, 231.6);
  box-shadow: 0 0 0 0.25rem rgba(194.65, 194.65, 194.65, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: rgb(234.2, 234.2, 234.2);
  border-color: rgb(231.6, 231.6, 231.6);
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(194.65, 194.65, 194.65, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}

.btn-dark {
  color: #fff;
  background-color: #0d1319;
  border-color: #0d1319;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(11.05, 16.15, 21.25);
  border-color: rgb(10.4, 15.2, 20);
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: rgb(11.05, 16.15, 21.25);
  border-color: rgb(10.4, 15.2, 20);
  box-shadow: 0 0 0 0.25rem rgba(49.3, 54.4, 59.5, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(10.4, 15.2, 20);
  border-color: rgb(9.75, 14.25, 18.75);
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49.3, 54.4, 59.5, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #0d1319;
  border-color: #0d1319;
}

.btn-outline-primary {
  color: #c19046;
  border-color: #c19046;
}
.btn-outline-primary:hover {
  color: #000;
  background-color: #c19046;
  border-color: #c19046;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #000;
  background-color: #c19046;
  border-color: #c19046;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #c19046;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #000000;
  border-color: #000000;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #000000;
  border-color: #000000;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #000000;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #cc3636;
  border-color: #cc3636;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #cc3636;
  border-color: #cc3636;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 54, 54, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #cc3636;
  border-color: #cc3636;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 54, 54, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #cc3636;
  background-color: transparent;
}

.btn-outline-light {
  color: #e5e5e5;
  border-color: #e5e5e5;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 229, 229, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(229, 229, 229, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #e5e5e5;
  background-color: transparent;
}

.btn-outline-dark {
  color: #0d1319;
  border-color: #0d1319;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #0d1319;
  border-color: #0d1319;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 19, 25, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #0d1319;
  border-color: #0d1319;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 19, 25, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #0d1319;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #444;
  text-decoration: underline;
}
.btn-link:hover {
  color: rgb(54.4, 54.4, 54.4);
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn, .property-data .nav-tabs li .btn-group-lg > a, .property-data .btn-group-lg > .btn-collapse-desc,
.property-data .btn-group-lg > .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group-lg > .read-more, .noticia .text-new .btn-group-lg > .read-more {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, .property-data .nav-tabs li .btn-group-sm > a, .property-data .btn-group-sm > .btn-collapse-desc,
.property-data .btn-group-sm > .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group-sm > .read-more, .noticia .text-new .btn-group-sm > .read-more {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1280px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(29.7, 33.3, 36.9);
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #c19046;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #c19046;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .property-data .nav-tabs li .btn-group > a, .property-data .btn-group > .btn-collapse-desc,
.property-data .btn-group > .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group > .read-more, .noticia .text-new .btn-group > .read-more,
.btn-group-vertical > .btn,
.property-data .nav-tabs li .btn-group-vertical > a,
.property-data .btn-group-vertical > .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more,
.noticia .text-new .btn-group-vertical > .read-more {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn, .property-data .nav-tabs li .btn-group > .btn-check:checked + a, .property-data .btn-group > .btn-check:checked + .btn-collapse-desc,
.property-data .btn-group > .btn-check:checked + .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group > .btn-check:checked + .read-more, .noticia .text-new .btn-group > .btn-check:checked + .read-more,
.btn-group > .btn-check:focus + .btn,
.property-data .nav-tabs li .btn-group > .btn-check:focus + a,
.property-data .btn-group > .btn-check:focus + .btn-collapse-desc,
.property-data .btn-group > .btn-check:focus + .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group > .btn-check:focus + .read-more,
.noticia .text-new .btn-group > .btn-check:focus + .read-more,
.btn-group > .btn:hover,
.property-data .nav-tabs li .btn-group > a:hover,
.property-data .btn-group > .btn-collapse-desc:hover,
.property-data .btn-group > .btn-collapse:hover,
.page-news .sidebar-news .last-news .noticia .btn-group > .read-more:hover,
.noticia .text-new .btn-group > .read-more:hover,
.btn-group > .btn:focus,
.property-data .nav-tabs li .btn-group > a:focus,
.property-data .btn-group > .btn-collapse-desc:focus,
.property-data .btn-group > .btn-collapse:focus,
.page-news .sidebar-news .last-news .noticia .btn-group > .read-more:focus,
.noticia .text-new .btn-group > .read-more:focus,
.btn-group > .btn:active,
.property-data .nav-tabs li .btn-group > a:active,
.property-data .btn-group > .btn-collapse-desc:active,
.property-data .btn-group > .btn-collapse:active,
.page-news .sidebar-news .last-news .noticia .btn-group > .read-more:active,
.noticia .text-new .btn-group > .read-more:active,
.btn-group > .btn.active,
.property-data .nav-tabs li .btn-group > a.active,
.property-data .btn-group > .active.btn-collapse-desc,
.property-data .btn-group > .active.btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group > .active.read-more,
.noticia .text-new .btn-group > .active.read-more,
.btn-group-vertical > .btn-check:checked + .btn,
.property-data .nav-tabs li .btn-group-vertical > .btn-check:checked + a,
.property-data .btn-group-vertical > .btn-check:checked + .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-check:checked + .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-check:checked + .read-more,
.noticia .text-new .btn-group-vertical > .btn-check:checked + .read-more,
.btn-group-vertical > .btn-check:focus + .btn,
.property-data .nav-tabs li .btn-group-vertical > .btn-check:focus + a,
.property-data .btn-group-vertical > .btn-check:focus + .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-check:focus + .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-check:focus + .read-more,
.noticia .text-new .btn-group-vertical > .btn-check:focus + .read-more,
.btn-group-vertical > .btn:hover,
.property-data .nav-tabs li .btn-group-vertical > a:hover,
.property-data .btn-group-vertical > .btn-collapse-desc:hover,
.property-data .btn-group-vertical > .btn-collapse:hover,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more:hover,
.noticia .text-new .btn-group-vertical > .read-more:hover,
.btn-group-vertical > .btn:focus,
.property-data .nav-tabs li .btn-group-vertical > a:focus,
.property-data .btn-group-vertical > .btn-collapse-desc:focus,
.property-data .btn-group-vertical > .btn-collapse:focus,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more:focus,
.noticia .text-new .btn-group-vertical > .read-more:focus,
.btn-group-vertical > .btn:active,
.property-data .nav-tabs li .btn-group-vertical > a:active,
.property-data .btn-group-vertical > .btn-collapse-desc:active,
.property-data .btn-group-vertical > .btn-collapse:active,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more:active,
.noticia .text-new .btn-group-vertical > .read-more:active,
.btn-group-vertical > .btn.active,
.property-data .nav-tabs li .btn-group-vertical > a.active,
.property-data .btn-group-vertical > .active.btn-collapse-desc,
.property-data .btn-group-vertical > .active.btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .active.read-more,
.noticia .text-new .btn-group-vertical > .active.read-more {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .property-data .nav-tabs li .btn-group > a:not(:first-child), .property-data .btn-group > .btn-collapse-desc:not(:first-child),
.property-data .btn-group > .btn-collapse:not(:first-child), .page-news .sidebar-news .last-news .noticia .btn-group > .read-more:not(:first-child), .noticia .text-new .btn-group > .read-more:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .property-data .nav-tabs li .btn-group > a:not(:last-child):not(.dropdown-toggle), .property-data .btn-group > .btn-collapse-desc:not(:last-child):not(.dropdown-toggle),
.property-data .btn-group > .btn-collapse:not(:last-child):not(.dropdown-toggle), .page-news .sidebar-news .last-news .noticia .btn-group > .read-more:not(:last-child):not(.dropdown-toggle), .noticia .text-new .btn-group > .read-more:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.property-data .nav-tabs li .btn-group > .btn-group:not(:last-child) > a,
.property-data .btn-group > .btn-group:not(:last-child) > .btn-collapse-desc,
.property-data .btn-group > .btn-group:not(:last-child) > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group > .btn-group:not(:last-child) > .read-more,
.noticia .text-new .btn-group > .btn-group:not(:last-child) > .read-more {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3), .property-data .nav-tabs li .btn-group > a:nth-child(n+3), .property-data .btn-group > .btn-collapse-desc:nth-child(n+3),
.property-data .btn-group > .btn-collapse:nth-child(n+3), .page-news .sidebar-news .last-news .noticia .btn-group > .read-more:nth-child(n+3), .noticia .text-new .btn-group > .read-more:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.property-data .nav-tabs li .btn-group > :not(.btn-check) + a,
.property-data .btn-group > :not(.btn-check) + .btn-collapse-desc,
.property-data .btn-group > :not(.btn-check) + .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group > :not(.btn-check) + .read-more,
.noticia .text-new .btn-group > :not(.btn-check) + .read-more,
.btn-group > .btn-group:not(:first-child) > .btn,
.property-data .nav-tabs li .btn-group > .btn-group:not(:first-child) > a,
.property-data .btn-group > .btn-group:not(:first-child) > .btn-collapse-desc,
.property-data .btn-group > .btn-group:not(:first-child) > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group > .btn-group:not(:first-child) > .read-more,
.noticia .text-new .btn-group > .btn-group:not(:first-child) > .read-more {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .property-data .nav-tabs li .btn-group-sm > a + .dropdown-toggle-split, .property-data .btn-group-sm > .btn-collapse-desc + .dropdown-toggle-split,
.property-data .btn-group-sm > .btn-collapse + .dropdown-toggle-split, .page-news .sidebar-news .last-news .noticia .btn-group-sm > .read-more + .dropdown-toggle-split, .noticia .text-new .btn-group-sm > .read-more + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .property-data .nav-tabs li .btn-group-lg > a + .dropdown-toggle-split, .property-data .btn-group-lg > .btn-collapse-desc + .dropdown-toggle-split,
.property-data .btn-group-lg > .btn-collapse + .dropdown-toggle-split, .page-news .sidebar-news .last-news .noticia .btn-group-lg > .read-more + .dropdown-toggle-split, .noticia .text-new .btn-group-lg > .read-more + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .property-data .nav-tabs li .btn-group-vertical > a, .property-data .btn-group-vertical > .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more, .noticia .text-new .btn-group-vertical > .read-more,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .property-data .nav-tabs li .btn-group-vertical > a:not(:first-child), .property-data .btn-group-vertical > .btn-collapse-desc:not(:first-child),
.property-data .btn-group-vertical > .btn-collapse:not(:first-child), .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more:not(:first-child), .noticia .text-new .btn-group-vertical > .read-more:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .property-data .nav-tabs li .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle), .property-data .btn-group-vertical > .btn-collapse-desc:not(:last-child):not(.dropdown-toggle),
.property-data .btn-group-vertical > .btn-collapse:not(:last-child):not(.dropdown-toggle), .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more:not(:last-child):not(.dropdown-toggle), .noticia .text-new .btn-group-vertical > .read-more:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.property-data .nav-tabs li .btn-group-vertical > .btn-group:not(:last-child) > a,
.property-data .btn-group-vertical > .btn-group:not(:last-child) > .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-group:not(:last-child) > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-group:not(:last-child) > .read-more,
.noticia .text-new .btn-group-vertical > .btn-group:not(:last-child) > .read-more {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn, .property-data .nav-tabs li .btn-group-vertical > a ~ .btn, .property-data .nav-tabs li .btn-group-vertical > .btn ~ a, .property-data .nav-tabs li .btn-group-vertical > a ~ a, .property-data .btn-group-vertical > .btn-collapse-desc ~ .btn, .property-data .nav-tabs li .btn-group-vertical > .btn-collapse-desc ~ a,
.property-data .btn-group-vertical > .btn-collapse ~ .btn,
.property-data .nav-tabs li .btn-group-vertical > .btn-collapse ~ a, .property-data .btn-group-vertical > .btn ~ .btn-collapse-desc, .property-data .nav-tabs li .btn-group-vertical > a ~ .btn-collapse-desc, .property-data .btn-group-vertical > .btn-collapse-desc ~ .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-collapse ~ .btn-collapse-desc,
.property-data .btn-group-vertical > .btn ~ .btn-collapse,
.property-data .nav-tabs li .btn-group-vertical > a ~ .btn-collapse,
.property-data .btn-group-vertical > .btn-collapse-desc ~ .btn-collapse,
.property-data .btn-group-vertical > .btn-collapse ~ .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more ~ .btn, .page-news .sidebar-news .last-news .noticia .property-data .nav-tabs li .btn-group-vertical > .read-more ~ a, .property-data .nav-tabs li .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more ~ a, .page-news .sidebar-news .last-news .noticia .property-data .btn-group-vertical > .read-more ~ .btn-collapse-desc, .property-data .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more ~ .btn-collapse-desc,
.page-news .sidebar-news .last-news .noticia .property-data .btn-group-vertical > .read-more ~ .btn-collapse,
.property-data .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more ~ .btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn ~ .read-more, .page-news .sidebar-news .last-news .noticia .property-data .nav-tabs li .btn-group-vertical > a ~ .read-more, .property-data .nav-tabs li .page-news .sidebar-news .last-news .noticia .btn-group-vertical > a ~ .read-more, .page-news .sidebar-news .last-news .noticia .property-data .btn-group-vertical > .btn-collapse-desc ~ .read-more, .property-data .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-collapse-desc ~ .read-more,
.page-news .sidebar-news .last-news .noticia .property-data .btn-group-vertical > .btn-collapse ~ .read-more,
.property-data .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-collapse ~ .read-more, .page-news .sidebar-news .last-news .noticia .btn-group-vertical > .read-more ~ .read-more, .noticia .text-new .btn-group-vertical > .read-more ~ .btn, .noticia .text-new .property-data .nav-tabs li .btn-group-vertical > .read-more ~ a, .property-data .nav-tabs li .noticia .text-new .btn-group-vertical > .read-more ~ a, .noticia .text-new .property-data .btn-group-vertical > .read-more ~ .btn-collapse-desc, .property-data .noticia .text-new .btn-group-vertical > .read-more ~ .btn-collapse-desc,
.noticia .text-new .property-data .btn-group-vertical > .read-more ~ .btn-collapse,
.property-data .noticia .text-new .btn-group-vertical > .read-more ~ .btn-collapse, .noticia .text-new .btn-group-vertical > .btn ~ .read-more, .noticia .text-new .property-data .nav-tabs li .btn-group-vertical > a ~ .read-more, .property-data .nav-tabs li .noticia .text-new .btn-group-vertical > a ~ .read-more, .noticia .text-new .property-data .btn-group-vertical > .btn-collapse-desc ~ .read-more, .property-data .noticia .text-new .btn-group-vertical > .btn-collapse-desc ~ .read-more,
.noticia .text-new .property-data .btn-group-vertical > .btn-collapse ~ .read-more,
.property-data .noticia .text-new .btn-group-vertical > .btn-collapse ~ .read-more, .noticia .text-new .btn-group-vertical > .read-more ~ .read-more,
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.property-data .nav-tabs li .btn-group-vertical > .btn-group:not(:first-child) > a,
.property-data .btn-group-vertical > .btn-group:not(:first-child) > .btn-collapse-desc,
.property-data .btn-group-vertical > .btn-group:not(:first-child) > .btn-collapse,
.page-news .sidebar-news .last-news .noticia .btn-group-vertical > .btn-group:not(:first-child) > .read-more,
.noticia .text-new .btn-group-vertical > .btn-group:not(:first-child) > .read-more {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #444;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: rgb(54.4, 54.4, 54.4);
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #c19046;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1280px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: rgb(173.7, 129.6, 63);
  background-color: rgb(248.8, 243.9, 236.5);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28173.7, 129.6, 63%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: rgb(224, 199.5, 162.5);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #444;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: rgb(54.4, 54.4, 54.4);
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: rgb(54.4, 54.4, 54.4);
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #c19046;
  border-color: #c19046;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge, .property-data .nav-tabs li a .badge, .property-data .btn-collapse-desc .badge,
.property-data .btn-collapse .badge, .page-news .sidebar-news .last-news .noticia .read-more .badge, .noticia .text-new .read-more .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: rgb(115.8, 86.4, 42);
  background-color: rgb(242.6, 232.8, 218);
  border-color: rgb(236.4, 221.7, 199.5);
}
.alert-primary .alert-link {
  color: rgb(92.64, 69.12, 33.6);
}

.alert-secondary {
  color: black;
  background-color: #cccccc;
  border-color: rgb(178.5, 178.5, 178.5);
}
.alert-secondary .alert-link {
  color: black;
}

.alert-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
  border-color: rgb(186, 219, 203.7);
}
.alert-success .alert-link {
  color: rgb(12, 64.8, 40.32);
}

.alert-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
  border-color: rgb(182.4, 239.1, 250.5);
}
.alert-info .alert-link {
  color: rgb(4.16, 64.64, 76.8);
}

.alert-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 236.4, 180.6);
}
.alert-warning .alert-link {
  color: rgb(81.6, 61.76, 2.24);
}

.alert-danger {
  color: rgb(122.4, 32.4, 32.4);
  background-color: rgb(244.8, 214.8, 214.8);
  border-color: rgb(239.7, 194.7, 194.7);
}
.alert-danger .alert-link {
  color: rgb(97.92, 25.92, 25.92);
}

.alert-light {
  color: rgb(91.6, 91.6, 91.6);
  background-color: rgb(249.8, 249.8, 249.8);
  border-color: rgb(247.2, 247.2, 247.2);
}
.alert-light .alert-link {
  color: rgb(73.28, 73.28, 73.28);
}

.alert-dark {
  color: rgb(7.8, 11.4, 15);
  background-color: rgb(206.6, 207.8, 209);
  border-color: rgb(182.4, 184.2, 186);
}
.alert-dark .alert-link {
  color: rgb(6.24, 9.12, 12);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #c19046;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #c19046;
  border-color: #c19046;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1280px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(115.8, 86.4, 42);
  background-color: rgb(242.6, 232.8, 218);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(115.8, 86.4, 42);
  background-color: rgb(218.34, 209.52, 196.2);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(115.8, 86.4, 42);
  border-color: rgb(115.8, 86.4, 42);
}

.list-group-item-secondary {
  color: black;
  background-color: #cccccc;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: black;
  background-color: rgb(183.6, 183.6, 183.6);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: black;
  border-color: black;
}

.list-group-item-success {
  color: rgb(15, 81, 50.4);
  background-color: rgb(209, 231, 220.8);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(15, 81, 50.4);
  background-color: rgb(188.1, 207.9, 198.72);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(15, 81, 50.4);
  border-color: rgb(15, 81, 50.4);
}

.list-group-item-info {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(206.6, 244.4, 252);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(5.2, 80.8, 96);
  background-color: rgb(185.94, 219.96, 226.8);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(5.2, 80.8, 96);
  border-color: rgb(5.2, 80.8, 96);
}

.list-group-item-warning {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(255, 242.6, 205.4);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(102, 77.2, 2.8);
  background-color: rgb(229.5, 218.34, 184.86);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(102, 77.2, 2.8);
  border-color: rgb(102, 77.2, 2.8);
}

.list-group-item-danger {
  color: rgb(122.4, 32.4, 32.4);
  background-color: rgb(244.8, 214.8, 214.8);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(122.4, 32.4, 32.4);
  background-color: rgb(220.32, 193.32, 193.32);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(122.4, 32.4, 32.4);
  border-color: rgb(122.4, 32.4, 32.4);
}

.list-group-item-light {
  color: rgb(91.6, 91.6, 91.6);
  background-color: rgb(249.8, 249.8, 249.8);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(91.6, 91.6, 91.6);
  background-color: rgb(224.82, 224.82, 224.82);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(91.6, 91.6, 91.6);
  border-color: rgb(91.6, 91.6, 91.6);
}

.list-group-item-dark {
  color: rgb(7.8, 11.4, 15);
  background-color: rgb(206.6, 207.8, 209);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(7.8, 11.4, 15);
  background-color: rgb(185.94, 187.02, 188.1);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(7.8, 11.4, 15);
  border-color: rgb(7.8, 11.4, 15);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(193, 144, 70, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
  opacity: 0;
}
.toast.hide {
  display: none;
}

.toast-container {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

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

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1279.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 9999999999999;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 999999999999;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(239.7, 239.7, 239.7);
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(239.7, 239.7, 239.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

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

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #c19046;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(205.4, 166.2, 107);
}

.link-secondary {
  color: #000000;
}
.link-secondary:hover, .link-secondary:focus {
  color: black;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #cc3636;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(163.2, 43.2, 43.2);
}

.link-light {
  color: #e5e5e5;
}
.link-light:hover, .link-light:focus {
  color: rgb(234.2, 234.2, 234.2);
}

.link-dark {
  color: #0d1319;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(10.4, 15.2, 20);
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1280px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

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

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #c19046 !important;
}

.border-secondary {
  border-color: #000000 !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #cc3636 !important;
}

.border-light {
  border-color: #e5e5e5 !important;
}

.border-dark {
  border-color: #0d1319 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100, .page-content .custom-table table tr td img {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0, .custom-list ul, .home-text ul {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0, .modal:not(#galleryModal) .modal-title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0, .alert-danger {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4, .page-content .custom-table table tr td {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3, .page-content .custom-table table tr td ul {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0, .page-news .sidebar-news .last-news .noticia .read-more, .noticia .text-new .read-more, .custom-list ul, .home-text ul {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0, .sidebar-content-full .property-list-list:nth-child(even) .property-list-box .porta-img {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start, .modal:not(#galleryModal) .modal-title, .home-text h1, .home-text .h1, .page-content .custom-list.column-3 ol, .page-content .column-3.home-text ol, .page-content h2:not(.text-center), .page-content .h2:not(.text-center),
.page-content h3:not(.text-center),
.page-content .h3:not(.text-center) {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center, .page-content .custom-table h2, .page-content .custom-table .h2, .page-content .custom-list.column-3 h2, .page-content .column-3.home-text h2, .page-content .custom-list.column-3 .h2, .page-content .column-3.home-text .h2 {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
.modal:not(#galleryModal) .page-content h3,
.page-content .modal:not(#galleryModal) h3,
.modal:not(#galleryModal) .page-content .h3,
.page-content .modal:not(#galleryModal) .h3, .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .property-data .btn-collapse-desc,
.property-data .btn-collapse, .property-gallery .photos .btn-white, .page-news .sidebar-news .last-news .noticia .read-more, .noticia .text-new .read-more {
  color: #c19046 !important;
}

.text-secondary {
  color: #000000 !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #cc3636 !important;
}

.text-light {
  color: #e5e5e5 !important;
}

.text-dark, .btn-grey {
  color: #0d1319 !important;
}

.text-white, .page-contact .text-white h2, .page-contact .btn-whats h2, .page-contact .btn-danger h2, .page-contact .btn-primary:not(.text-secondary) h2, .page-contact .btn-primary-deg h2, .page-contact .page-content .custom-list.column-3 ul h2, .page-content .custom-list.column-3 .page-contact ul h2, .page-content .custom-list.column-3 ul .page-contact li h2, .page-contact .noticia .marco-foto .date h2, .noticia .marco-foto .page-contact .date h2, .page-contact .page-new .fecha h2, .page-new .page-contact .fecha h2, .page-contact .page-content .column-3.home-text ul h2, .page-content .column-3.home-text .page-contact ul h2, .page-content .column-3.home-text ul .page-contact li h2, .page-contact .home-text.home-text-2 h1 h2, .home-text.home-text-2 .page-contact h1 h2, .page-contact .home-text.home-text-2 .h1 h2, .home-text.home-text-2 .page-contact .h1 h2,
.page-contact .home-text.home-text-2 p h2,
.home-text.home-text-2 .page-contact p h2,
.page-contact .home-text.home-text-2 li h2,
.home-text.home-text-2 .page-contact li h2, .page-contact .text-white .h2, .page-contact .btn-whats .h2, .page-contact .btn-danger .h2, .page-contact .btn-primary:not(.text-secondary) .h2, .page-contact .btn-primary-deg .h2, .page-contact .page-content .custom-list.column-3 ul .h2, .page-content .custom-list.column-3 .page-contact ul .h2, .page-content .custom-list.column-3 ul .page-contact li .h2, .page-contact .noticia .marco-foto .date .h2, .noticia .marco-foto .page-contact .date .h2, .page-contact .page-new .fecha .h2, .page-new .page-contact .fecha .h2, .page-contact .page-content .column-3.home-text ul .h2, .page-content .column-3.home-text .page-contact ul .h2, .page-content .column-3.home-text ul .page-contact li .h2, .page-contact .home-text.home-text-2 h1 .h2, .home-text.home-text-2 .page-contact h1 .h2, .page-contact .home-text.home-text-2 .h1 .h2, .home-text.home-text-2 .page-contact .h1 .h2,
.page-contact .home-text.home-text-2 p .h2,
.home-text.home-text-2 .page-contact p .h2,
.page-contact .home-text.home-text-2 li .h2,
.home-text.home-text-2 .page-contact li .h2,
.page-contact .text-white p,
.page-contact .btn-whats p,
.page-contact .btn-danger p,
.page-contact .btn-primary:not(.text-secondary) p,
.page-contact .btn-primary-deg p,
.page-contact .page-content .custom-list.column-3 ul p,
.page-content .custom-list.column-3 .page-contact ul p,
.page-content .custom-list.column-3 ul .page-contact li p,
.page-contact .noticia .marco-foto .date p,
.noticia .marco-foto .page-contact .date p,
.page-contact .page-new .fecha p,
.page-new .page-contact .fecha p,
.page-contact .page-content .column-3.home-text ul p,
.page-content .column-3.home-text .page-contact ul p,
.page-content .column-3.home-text ul .page-contact li p, .home-text.home-text-2 h1, .home-text.home-text-2 .h1,
.home-text.home-text-2 p,
.home-text.home-text-2 li, .page-new .fecha, .noticia .marco-foto .date, .page-content .custom-list.column-3 ul li, .page-content .column-3.home-text ul li, .page-content .custom-list.column-3 ul, .page-content .column-3.home-text ul, .btn-primary-deg, .btn-primary:not(.text-secondary), .btn-danger, .btn-whats {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary, .page-new .fecha, .noticia .marco-foto .date {
  background-color: #c19046 !important;
}

.bg-secondary {
  background-color: #000000 !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #cc3636 !important;
}

.bg-light {
  background-color: #e5e5e5 !important;
}

.bg-dark, .property-data .nav-tabs li a {
  background-color: #0d1319 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white, .property-data .nav-tabs li a.active {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0, .modal:not(#galleryModal) .modal-header,
.modal:not(#galleryModal) .modal-body,
.modal:not(#galleryModal) .modal-content {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start, .home-text h1, .home-text .h1 {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first, .sidebar-content-full .property-list-list:nth-child(even) .property-list-box .textos {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3, .page-content .custom-list.column-3 ol li, .page-content .column-3.home-text ol li {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5, .page-content .custom-table table tr td, .page-content .custom-list.column-3 ul li, .page-content .column-3.home-text ul li {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3, .sidebar-content-full .property-list-list .property-list-box {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./source/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: #ccc;
  border-radius: 10px;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  border-radius: 10px;
  width: 10px;
  height: 10px;
  font-family: "slick";
  font-size: 6px;
  line-height: 10px;
  text-align: center;
  color: #ccc;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: var(--primary);
  background: var(--primary);
  opacity: 0.75;
}

.fc {
  direction: ltr;
  text-align: left;
}

.fc-rtl {
  text-align: right;
}

body .fc { /* extra precedence to overcome jqui */
  font-size: 1em;
  font-size: 14px !important;
}
body .fc h2, body .fc .h2 {
  font-size: 20px;
  text-transform: uppercase;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-highlight { /* when user is selecting cells */
  background: #bce8f1;
  opacity: 0.3;
}

.fc-bgevent { /* default look for background events */
  background: rgb(143, 223, 130);
  opacity: 0.3;
}

.fc-nonbusiness { /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Buttons (styled <button> tags, normalized to work cross-browser)
--------------------------------------------------------------------------------------------------*/
.fc button {
  /* force height to include the border and padding */
  box-sizing: border-box;
  /* dimensions */
  margin: 0;
  height: 2.1em;
  padding: 0 0.6em;
  /* text & cursor */
  font-size: 1em; /* normalize */
  white-space: nowrap;
  cursor: pointer;
}

/* Firefox has an annoying inner border */
.fc button::-moz-focus-inner {
  margin: 0;
  padding: 0;
}

.fc-state-default { /* non-theme */
  border: 1px solid;
}

.fc-state-default.fc-corner-left { /* non-theme */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.fc-state-default.fc-corner-right { /* non-theme */
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* icons in buttons */
.fc button .fc-icon { /* non-theme */
  position: relative;
  top: -0.05em; /* seems to be a good adjustment across browsers */
  margin: 0 0.2em;
  vertical-align: middle;
}

/*
  button states
  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)
*/
.fc-state-default {
  background-color: #f5f5f5;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  color: #333333;
  background-color: #e6e6e6;
}

.fc-state-hover {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
  background-color: #cccccc;
  background-image: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
.fc-button-group {
  display: inline-block;
}

/*
every button that is not first in a button group should scootch over one pixel and cover the
previous button's border...
*/
.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */
  float: left;
  margin: 0 0 0 -1px;
}

.fc .fc-button-group > :first-child { /* same */
  margin-left: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover {
  position: absolute;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fc-popover .fc-header { /* TODO: be more consistent with fc-head/fc-body */
  padding: 2px 4px;
}

.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

.fc-popover .fc-header .fc-close {
  cursor: pointer;
}

.fc-ltr .fc-popover .fc-header .fc-title,
.fc-rtl .fc-popover .fc-header .fc-close {
  float: left;
}

.fc-rtl .fc-popover .fc-header .fc-title,
.fc-ltr .fc-popover .fc-header .fc-close {
  float: right;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px; /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

.fc-clear {
  clear: both;
}

.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-helper-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.fc-bg {
  bottom: 0; /* strech bg to bottom edge */
}

.fc-bg table {
  height: 100%; /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
.fc table {
  width: 100%;
  box-sizing: border-box; /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em; /* normalize cross-browser */
}

.fc th {
  text-align: center;
}

.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

.fc td.fc-today {
  border-style: double; /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
a[data-goto] {
  cursor: pointer;
}

a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

.fc-row:first-child table {
  border-top: 0 hidden transparent; /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
.fc-row {
  position: relative;
}

.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0; /* stretch skeleton to bottom of row */
}

.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%; /* stretch skeleton to bottom of row */
}

.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "helper" (which contains
temporary rendered events).
*/
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px; /* matches the space above the events */
}

.fc-row .fc-helper-skeleton {
  z-index: 5;
}

.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-helper-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none; /* in case <td>s are globally styled */
  border-color: transparent;
}

.fc-row .fc-content-skeleton td,
.fc-row .fc-helper-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-helper-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to agenda/basic */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative; /* re-scope all positions */
  width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.fc-event {
  position: relative; /* for resize handle and other inner positioning */
  display: block; /* make the <a> tag block */
  font-size: 0.85em;
  line-height: 1.3;
  border-radius: 3px;
  border: 1px solid #3a87ad; /* default BORDER color */
}

.fc-event,
.fc-event-dot {
  background-color: #3a87ad; /* default BACKGROUND color */
}

.fc-event,
.fc-event:hover {
  color: #fff; /* default TEXT color */
  text-decoration: none; /* if <a> has an href */
}

.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer; /* give events with links and draggable events a hand mouse pointer */
}

.fc-not-allowed,
.fc-not-allowed .fc-event { /* to override an event's custom cursor */
  cursor: not-allowed;
}

.fc-event .fc-bg { /* the generic .fc-bg already does position */
  z-index: 1;
  background: #fff;
  opacity: 0.25;
}

.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
.fc-event .fc-resizer {
  display: none;
}

.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999; /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
.fc-event.fc-selected {
  z-index: 9999 !important; /* overcomes inline z-index */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.fc-event.fc-selected.fc-dragging {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3; /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px; /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px; /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px; /* overcome border */
}

/* right resizer */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px; /* overcome border */
}

/* resizer (mouse devices) */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px; /* overcome top border */
  bottom: -1px; /* overcome bottom border */
}

/* resizer (touch devices) */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px; /* centers the 8x8 dot on the left edge */
}

/* right resizer */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px; /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-day-grid-event {
  margin: 1px 2px 0; /* spacing between events and edges */
  padding: 0 1px;
}

tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px; /* a little bit more space before the first event */
}

.fc-day-grid-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1; /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: 0.25;
}

.fc-day-grid-event .fc-content { /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px; /* to the day cell's edge */
}

/* right resizer */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px; /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
a.fc-more {
  margin: 1px 3px;
  font-size: 0.85em;
  cursor: pointer;
  text-decoration: none;
}

a.fc-more:hover {
  text-decoration: underline;
}

.fc-limited { /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
.fc-day-grid .fc-row {
  z-index: 1; /* make the "more" popover one higher than this */
}

.fc-more-popover {
  z-index: 2;
  width: 220px;
}

.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

.fc-unthemed .fc-popover {
  background-color: #fff;
}

.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  color: #666;
}

.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: 0.3;
}

/* Icons (inline elements with styled text that mock arrow icons)
--------------------------------------------------------------------------------------------------*/
.fc-icon {
  display: inline-block;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  overflow: hidden;
  font-family: "Courier New", Courier, monospace;
  /* don't allow browser text-selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/*
Acceptable font-family overrides for individual icons:
  "Arial", sans-serif
  "Times New Roman", serif

NOTE: use percentage font sizes or else old IE chokes
*/
.fc-icon:after {
  position: relative;
}

.fc-icon-left-single-arrow:after {
  content: "‹";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-right-single-arrow:after {
  content: "›";
  font-weight: bold;
  font-size: 200%;
  top: -7%;
}

.fc-icon-left-double-arrow:after {
  content: "«";
  font-size: 160%;
  top: -7%;
}

.fc-icon-right-double-arrow:after {
  content: "»";
  font-size: 160%;
  top: -7%;
}

.fc-icon-left-triangle:after {
  content: "◄";
  font-size: 125%;
  top: 3%;
}

.fc-icon-right-triangle:after {
  content: "►";
  font-size: 125%;
  top: 3%;
}

.fc-icon-down-triangle:after {
  content: "▼";
  font-size: 125%;
  top: 2%;
}

.fc-icon-x:after {
  content: "×";
  font-size: 200%;
  top: 6%;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

.fc-unthemed .fc-popover .fc-header .fc-close {
  font-size: 0.9em;
  margin-top: 2px;
}

/* List View
--------------------------------------------------------------------------------------------------*/
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-disabled-day {
  background-image: none;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-popover > .ui-widget-header + .ui-widget-content {
  border-top: 0; /* where they meet, let the header have the border */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
.ui-widget .fc-event {
  /* overpower jqui's styles on <a> tags. TODO: more DRY */
  color: #fff; /* default TEXT color */
  text-decoration: none; /* if <a> has an href */
  /* undo ui-widget-header bold */
  font-weight: normal;
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.ui-widget td.fc-axis {
  font-weight: normal; /* overcome bold */
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats .ui-widget-content {
  background: none; /* see through to fc-bg */
}

.fc.fc-bootstrap3 a {
  text-decoration: none;
}

.fc.fc-bootstrap3 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap3 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap3 .fc-today.alert {
  border-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-popover .panel-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap3 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

.fc.fc-bootstrap4 a {
  text-decoration: none;
}

.fc.fc-bootstrap4 a[data-goto]:hover {
  text-decoration: underline;
}

.fc-bootstrap4 hr.fc-divider {
  border-color: inherit;
}

.fc-bootstrap4 .fc-today.alert {
  border-radius: 0;
}

.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]) {
  color: #fff;
}

.fc-bootstrap4 .fc-popover.card {
  position: absolute;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-popover .card-body {
  padding: 0;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-bootstrap4 .fc-time-grid .fc-slats table {
  /* some themes have background color. see through to slats */
  background: none;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
.fc-toolbar {
  text-align: center;
}

.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1em;
}

.fc-toolbar.fc-footer-toolbar {
  margin-top: 1em;
}

.fc-toolbar .fc-left {
  float: left;
}

.fc-toolbar .fc-right {
  float: right;
}

.fc-toolbar .fc-center {
  display: inline-block;
}

/* the things within each left/right/center section */
.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */
  float: left;
  margin-left: 0.75em;
}

/* the first thing within each left/center/right section */
.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */
  margin-left: 0;
}

/* title text */
.fc-toolbar h2, .fc-toolbar .h2 {
  margin: 0;
}

/* button layering (for border precedence) */
.fc-toolbar button {
  position: relative;
}

.fc-toolbar .fc-state-hover,
.fc-toolbar .ui-state-hover {
  z-index: 2;
}

.fc-toolbar .fc-state-down {
  z-index: 3;
}

.fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 4;
}

.fc-toolbar button:focus {
  z-index: 5;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  box-sizing: content-box;
}

.fc-view,
.fc-view > table { /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

/* BasicView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
.fc-basicWeek-view .fc-content-skeleton,
.fc-basicDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */
}

.fc-basic-view .fc-body .fc-row {
  min-height: 4em; /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
.fc-row.fc-rigid {
  overflow: hidden;
}

.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}

.fc-basic-view .fc-week-number,
.fc-basic-view .fc-day-number {
  padding: 2px;
}

.fc-basic-view th.fc-week-number,
.fc-basic-view th.fc-day-number {
  padding: 0 2px; /* column headers can't have as much v space */
}

.fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: right;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-day-number {
  float: left;
}

.fc-ltr .fc-basic-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

.fc-rtl .fc-basic-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

.fc-basic-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */
.fc-basic-view td.fc-week-number {
  text-align: center;
}

.fc-basic-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/* AgendaView all-day area
--------------------------------------------------------------------------------------------------*/
.fc-agenda-view .fc-day-grid {
  position: relative;
  z-index: 2; /* so the "more.." popover will be over the time grid */
}

.fc-agenda-view .fc-day-grid .fc-row {
  min-height: 3em; /* all-day section will never get shorter than this */
}

.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {
  padding-bottom: 1em; /* give space underneath events for clicking/selecting days */
}

/* TimeGrid axis running down the side (for both the all-day area and the slot area)
--------------------------------------------------------------------------------------------------*/
.fc .fc-axis { /* .fc to overcome default cell styles */
  vertical-align: middle;
  padding: 0 4px;
  white-space: nowrap;
}

.fc-ltr .fc-axis {
  text-align: right;
}

.fc-rtl .fc-axis {
  text-align: left;
}

/* TimeGrid Structure
--------------------------------------------------------------------------------------------------*/
.fc-time-grid-container,
.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */
  position: relative;
  z-index: 1;
}

.fc-time-grid {
  min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */
}

.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */
  border: 0 hidden transparent;
}

.fc-time-grid > .fc-bg {
  z-index: 1;
}

.fc-time-grid .fc-slats,
.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-content-col {
  position: relative; /* because now-indicator lives directly inside */
}

.fc-time-grid .fc-content-skeleton {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}

/* divs within a cell within the fc-content-skeleton */
.fc-time-grid .fc-business-container {
  position: relative;
  z-index: 1;
}

.fc-time-grid .fc-bgevent-container {
  position: relative;
  z-index: 2;
}

.fc-time-grid .fc-highlight-container {
  position: relative;
  z-index: 3;
}

.fc-time-grid .fc-event-container {
  position: relative;
  z-index: 4;
}

.fc-time-grid .fc-now-indicator-line {
  z-index: 5;
}

.fc-time-grid .fc-helper-container { /* also is fc-event-container */
  position: relative;
  z-index: 6;
}

/* TimeGrid Slats (lines that run horizontally)
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-slats td {
  height: 1.5em;
  border-bottom: 0; /* each cell is responsible for its top border */
}

.fc-time-grid .fc-slats .fc-minor td {
  border-top-style: dotted;
}

/* TimeGrid Highlighting Slots
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */
  position: relative; /* scopes the left/right of the fc-highlight to be in the column */
}

.fc-time-grid .fc-highlight {
  position: absolute;
  left: 0;
  right: 0;
  /* top and bottom will be in by JS */
}

/* TimeGrid Event Containment
--------------------------------------------------------------------------------------------------*/
.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */
  margin: 0 2.5% 0 2px;
}

.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */
  margin: 0 2px 0 2.5%;
}

.fc-time-grid .fc-event,
.fc-time-grid .fc-bgevent {
  position: absolute;
  z-index: 1; /* scope inner z-index's */
}

.fc-time-grid .fc-bgevent {
  /* background events always span full width */
  left: 0;
  right: 0;
}

/* Generic Vertical Event
--------------------------------------------------------------------------------------------------*/
.fc-v-event.fc-not-start { /* events that are continuing from another day */
  /* replace space made by the top border with padding */
  border-top-width: 0;
  padding-top: 1px;
  /* remove top rounded corners */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.fc-v-event.fc-not-end {
  /* replace space made by the top border with padding */
  border-bottom-width: 0;
  padding-bottom: 1px;
  /* remove bottom rounded corners */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* TimeGrid Event Styling
----------------------------------------------------------------------------------------------------
We use the full "fc-time-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
.fc-time-grid-event {
  overflow: hidden; /* don't let the bg flow over rounded corners */
}

.fc-time-grid-event.fc-selected {
  /* need to allow touch resizers to extend outside event's bounding box */
  /* common fc-selected styles hide the fc-bg, so don't need this anyway */
  overflow: visible;
}

.fc-time-grid-event.fc-selected .fc-bg {
  display: none; /* hide semi-white background, to appear darker */
}

.fc-time-grid-event .fc-content {
  overflow: hidden; /* for when .fc-selected */
}

.fc-time-grid-event .fc-time,
.fc-time-grid-event .fc-title {
  padding: 0 1px;
}

.fc-time-grid-event .fc-time {
  font-size: 0.85em;
  white-space: nowrap;
}

/* short mode, where time and title are on the same line */
.fc-time-grid-event.fc-short .fc-content {
  /* don't wrap to second line (now that contents will be inline) */
  white-space: nowrap;
}

.fc-time-grid-event.fc-short .fc-time,
.fc-time-grid-event.fc-short .fc-title {
  /* put the time and title on the same line */
  display: inline-block;
  vertical-align: top;
}

.fc-time-grid-event.fc-short .fc-time span {
  display: none; /* don't display the full time text... */
}

.fc-time-grid-event.fc-short .fc-time:before {
  content: attr(data-start); /* ...instead, display only the start time */
}

.fc-time-grid-event.fc-short .fc-time:after {
  content: " - "; /* seperate with a dash, wrapped in nbsp's */
}

.fc-time-grid-event.fc-short .fc-title {
  font-size: 0.85em; /* make the title text the same size as the time */
  padding: 0; /* undo padding from above */
}

/* resizer (cursor device) */
.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  overflow: hidden;
  line-height: 8px;
  font-size: 11px;
  font-family: monospace;
  text-align: center;
  cursor: s-resize;
}

.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
  content: "=";
}

/* resizer (touch device) */
.fc-time-grid-event.fc-selected .fc-resizer {
  /* 10x10 dot */
  border-radius: 5px;
  border-width: 1px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* horizontally center */
  left: 50%;
  margin-left: -5px;
  /* center on the bottom edge */
  bottom: -5px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
.fc-time-grid .fc-now-indicator-line {
  border-top-width: 1px;
  left: 0;
  right: 0;
}

/* arrow on axis */
.fc-time-grid .fc-now-indicator-arrow {
  margin-top: -5px; /* vertically center on top coordinate */
}

.fc-ltr .fc-time-grid .fc-now-indicator-arrow {
  left: 0;
  /* triangle pointing right... */
  border-width: 5px 0 5px 6px;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.fc-rtl .fc-time-grid .fc-now-indicator-arrow {
  right: 0;
  /* triangle pointing left... */
  border-width: 5px 6px 5px 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* possibly reusable */
.fc-event-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
}

/* view wrapper */
.fc-rtl .fc-list-view {
  direction: rtl; /* unlike core views, leverage browser RTL */
}

.fc-list-view {
  border-width: 1px;
  border-style: solid;
}

/* table resets */
.fc .fc-list-table {
  table-layout: auto; /* for shrinkwrapping cell content */
}

.fc-list-table td {
  border-width: 1px 0 0;
  padding: 8px 14px;
}

.fc-list-table tr:first-child td {
  border-top-width: 0;
}

/* day headings with the list */
.fc-list-heading {
  border-bottom-width: 1px;
}

.fc-list-heading td {
  font-weight: bold;
}

.fc-ltr .fc-list-heading-main {
  float: left;
}

.fc-ltr .fc-list-heading-alt {
  float: right;
}

.fc-rtl .fc-list-heading-main {
  float: right;
}

.fc-rtl .fc-list-heading-alt {
  float: left;
}

/* event list items */
.fc-list-item.fc-has-url {
  cursor: pointer; /* whole row will be clickable */
}

.fc-list-item-marker,
.fc-list-item-time {
  white-space: nowrap;
  width: 1px;
}

/* make the dot closer to the event title */
.fc-ltr .fc-list-item-marker {
  padding-right: 0;
}

.fc-rtl .fc-list-item-marker {
  padding-left: 0;
}

.fc-list-item-title a {
  /* every event title cell has an <a> tag */
  text-decoration: none;
  color: inherit;
}

.fc-list-item-title a[href]:hover {
  /* hover effect only on titles with hrefs */
  text-decoration: underline;
}

/* message when no events */
.fc-list-empty-wrap2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.fc-list-empty-wrap1 {
  width: 100%;
  height: 100%;
  display: table;
}

.fc-list-empty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.fc-unthemed .fc-list-empty { /* theme will provide own background */
  background-color: #eee;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Pro");
  font-weight: var(--fa-style, 900);
}

.fas,
.fass,
.far,
.fasr,
.fal,
.fasl,
.fat,
.fast,
.fad,
.fadr,
.fadl,
.fadt,
.fasds,
.fasdr,
.fasdl,
.fasdt,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas::before,
.fass::before,
.far::before,
.fasr::before,
.fal::before,
.fasl::before,
.fat::before,
.fast::before,
.fad::before,
.fadr::before,
.fadl::before,
.fadt::before,
.fasds::before,
.fasdr::before,
.fasdl::before,
.fasdt::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-thin::before,
.fa-brands::before,
.fa-classic::before,
.fa-duotone::before,
.fa-sharp::before,
.fa-sharp-duotone::before,
.fa::before {
  content: var(--fa);
}

.fad::after,
.fa-duotone.fa-solid::after,
.fa-duotone::after,
.fadr::after,
.fa-duotone.fa-regular::after,
.fadl::after,
.fa-duotone.fa-light::after,
.fadt::after,
.fa-duotone.fa-thin::after,
.fasds::after,
.fa-sharp-duotone.fa-solid::after,
.fa-sharp-duotone::after,
.fasdr::after,
.fa-sharp-duotone.fa-regular::after,
.fasdl::after,
.fa-sharp-duotone.fa-light::after,
.fasdt::after,
.fa-sharp-duotone.fa-thin::after {
  content: var(--fa--fa);
}

.fa-classic.fa-duotone {
  font-family: "Font Awesome 6 Duotone";
}

.fass,
.fa-sharp {
  font-weight: 900;
}

.fad,
.fa-duotone {
  font-weight: 900;
}

.fasds,
.fa-sharp-duotone {
  font-weight: 900;
}

.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin {
  font-family: "Font Awesome 6 Pro";
}

.fa-duotone,
.fad,
.fadr,
.fadl,
.fadt {
  font-family: "Font Awesome 6 Duotone";
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
}

.fa-sharp,
.fass,
.fasr,
.fasl,
.fast {
  font-family: "Font Awesome 6 Sharp";
}

.fa-sharp-duotone,
.fasds,
.fasdr,
.fasdl,
.fasdt {
  font-family: "Font Awesome 6 Sharp Duotone";
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}

.fa-rotate-180 {
  transform: rotate(180deg);
}

.fa-rotate-270 {
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0 {
  --fa: "\30 ";
  --fa--fa: "\30 \30 ";
}

.fa-1 {
  --fa: "\31 ";
  --fa--fa: "\31 \31 ";
}

.fa-2 {
  --fa: "\32 ";
  --fa--fa: "\32 \32 ";
}

.fa-3 {
  --fa: "\33 ";
  --fa--fa: "\33 \33 ";
}

.fa-4 {
  --fa: "\34 ";
  --fa--fa: "\34 \34 ";
}

.fa-5 {
  --fa: "\35 ";
  --fa--fa: "\35 \35 ";
}

.fa-6 {
  --fa: "\36 ";
  --fa--fa: "\36 \36 ";
}

.fa-7 {
  --fa: "\37 ";
  --fa--fa: "\37 \37 ";
}

.fa-8 {
  --fa: "\38 ";
  --fa--fa: "\38 \38 ";
}

.fa-9 {
  --fa: "\39 ";
  --fa--fa: "\39 \39 ";
}

.fa-fill-drip {
  --fa: "\f576";
  --fa--fa: "\f576\f576";
}

.fa-arrows-to-circle {
  --fa: "\e4bd";
  --fa--fa: "\e4bd\e4bd";
}

.fa-circle-chevron-right {
  --fa: "\f138";
  --fa--fa: "\f138\f138";
}

.fa-chevron-circle-right {
  --fa: "\f138";
  --fa--fa: "\f138\f138";
}

.fa-wagon-covered {
  --fa: "\f8ee";
  --fa--fa: "\f8ee\f8ee";
}

.fa-line-height {
  --fa: "\f871";
  --fa--fa: "\f871\f871";
}

.fa-bagel {
  --fa: "\e3d7";
  --fa--fa: "\e3d7\e3d7";
}

.fa-transporter-7 {
  --fa: "\e2a8";
  --fa--fa: "\e2a8\e2a8";
}

.fa-at {
  --fa: "\@";
  --fa--fa: "\@\@";
}

.fa-rectangles-mixed {
  --fa: "\e323";
  --fa--fa: "\e323\e323";
}

.fa-phone-arrow-up-right {
  --fa: "\e224";
  --fa--fa: "\e224\e224";
}

.fa-phone-arrow-up {
  --fa: "\e224";
  --fa--fa: "\e224\e224";
}

.fa-phone-outgoing {
  --fa: "\e224";
  --fa--fa: "\e224\e224";
}

.fa-trash-can {
  --fa: "\f2ed";
  --fa--fa: "\f2ed\f2ed";
}

.fa-trash-alt {
  --fa: "\f2ed";
  --fa--fa: "\f2ed\f2ed";
}

.fa-circle-l {
  --fa: "\e114";
  --fa--fa: "\e114\e114";
}

.fa-head-side-goggles {
  --fa: "\f6ea";
  --fa--fa: "\f6ea\f6ea";
}

.fa-head-vr {
  --fa: "\f6ea";
  --fa--fa: "\f6ea\f6ea";
}

.fa-text-height {
  --fa: "\f034";
  --fa--fa: "\f034\f034";
}

.fa-user-xmark {
  --fa: "\f235";
  --fa--fa: "\f235\f235";
}

.fa-user-times {
  --fa: "\f235";
  --fa--fa: "\f235\f235";
}

.fa-face-hand-yawn {
  --fa: "\e379";
  --fa--fa: "\e379\e379";
}

.fa-gauge-simple-min {
  --fa: "\f62d";
  --fa--fa: "\f62d\f62d";
}

.fa-tachometer-slowest {
  --fa: "\f62d";
  --fa--fa: "\f62d\f62d";
}

.fa-stethoscope {
  --fa: "\f0f1";
  --fa--fa: "\f0f1\f0f1";
}

.fa-coffin {
  --fa: "\f6c6";
  --fa--fa: "\f6c6\f6c6";
}

.fa-message {
  --fa: "\f27a";
  --fa--fa: "\f27a\f27a";
}

.fa-comment-alt {
  --fa: "\f27a";
  --fa--fa: "\f27a\f27a";
}

.fa-salad {
  --fa: "\f81e";
  --fa--fa: "\f81e\f81e";
}

.fa-bowl-salad {
  --fa: "\f81e";
  --fa--fa: "\f81e\f81e";
}

.fa-info {
  --fa: "\f129";
  --fa--fa: "\f129\f129";
}

.fa-robot-astromech {
  --fa: "\e2d2";
  --fa--fa: "\e2d2\e2d2";
}

.fa-ring-diamond {
  --fa: "\e5ab";
  --fa--fa: "\e5ab\e5ab";
}

.fa-fondue-pot {
  --fa: "\e40d";
  --fa--fa: "\e40d\e40d";
}

.fa-theta {
  --fa: "\f69e";
  --fa--fa: "\f69e\f69e";
}

.fa-face-hand-peeking {
  --fa: "\e481";
  --fa--fa: "\e481\e481";
}

.fa-square-user {
  --fa: "\e283";
  --fa--fa: "\e283\e283";
}

.fa-down-left-and-up-right-to-center {
  --fa: "\f422";
  --fa--fa: "\f422\f422";
}

.fa-compress-alt {
  --fa: "\f422";
  --fa--fa: "\f422\f422";
}

.fa-explosion {
  --fa: "\e4e9";
  --fa--fa: "\e4e9\e4e9";
}

.fa-file-lines {
  --fa: "\f15c";
  --fa--fa: "\f15c\f15c";
}

.fa-file-alt {
  --fa: "\f15c";
  --fa--fa: "\f15c\f15c";
}

.fa-file-text {
  --fa: "\f15c";
  --fa--fa: "\f15c\f15c";
}

.fa-wave-square {
  --fa: "\f83e";
  --fa--fa: "\f83e\f83e";
}

.fa-ring {
  --fa: "\f70b";
  --fa--fa: "\f70b\f70b";
}

.fa-building-un {
  --fa: "\e4d9";
  --fa--fa: "\e4d9\e4d9";
}

.fa-dice-three {
  --fa: "\f527";
  --fa--fa: "\f527\f527";
}

.fa-tire-pressure-warning {
  --fa: "\f633";
  --fa--fa: "\f633\f633";
}

.fa-wifi-fair {
  --fa: "\f6ab";
  --fa--fa: "\f6ab\f6ab";
}

.fa-wifi-2 {
  --fa: "\f6ab";
  --fa--fa: "\f6ab\f6ab";
}

.fa-calendar-days {
  --fa: "\f073";
  --fa--fa: "\f073\f073";
}

.fa-calendar-alt {
  --fa: "\f073";
  --fa--fa: "\f073\f073";
}

.fa-mp3-player {
  --fa: "\f8ce";
  --fa--fa: "\f8ce\f8ce";
}

.fa-anchor-circle-check {
  --fa: "\e4aa";
  --fa--fa: "\e4aa\e4aa";
}

.fa-tally-4 {
  --fa: "\e297";
  --fa--fa: "\e297\e297";
}

.fa-rectangle-history {
  --fa: "\e4a2";
  --fa--fa: "\e4a2\e4a2";
}

.fa-building-circle-arrow-right {
  --fa: "\e4d1";
  --fa--fa: "\e4d1\e4d1";
}

.fa-volleyball {
  --fa: "\f45f";
  --fa--fa: "\f45f\f45f";
}

.fa-volleyball-ball {
  --fa: "\f45f";
  --fa--fa: "\f45f\f45f";
}

.fa-sun-haze {
  --fa: "\f765";
  --fa--fa: "\f765\f765";
}

.fa-text-size {
  --fa: "\f894";
  --fa--fa: "\f894\f894";
}

.fa-ufo {
  --fa: "\e047";
  --fa--fa: "\e047\e047";
}

.fa-fork {
  --fa: "\f2e3";
  --fa--fa: "\f2e3\f2e3";
}

.fa-utensil-fork {
  --fa: "\f2e3";
  --fa--fa: "\f2e3\f2e3";
}

.fa-arrows-up-to-line {
  --fa: "\e4c2";
  --fa--fa: "\e4c2\e4c2";
}

.fa-mobile-signal {
  --fa: "\e1ef";
  --fa--fa: "\e1ef\e1ef";
}

.fa-barcode-scan {
  --fa: "\f465";
  --fa--fa: "\f465\f465";
}

.fa-sort-down {
  --fa: "\f0dd";
  --fa--fa: "\f0dd\f0dd";
}

.fa-sort-desc {
  --fa: "\f0dd";
  --fa--fa: "\f0dd\f0dd";
}

.fa-folder-arrow-down {
  --fa: "\e053";
  --fa--fa: "\e053\e053";
}

.fa-folder-download {
  --fa: "\e053";
  --fa--fa: "\e053\e053";
}

.fa-circle-minus {
  --fa: "\f056";
  --fa--fa: "\f056\f056";
}

.fa-minus-circle {
  --fa: "\f056";
  --fa--fa: "\f056\f056";
}

.fa-face-icicles {
  --fa: "\e37c";
  --fa--fa: "\e37c\e37c";
}

.fa-shovel {
  --fa: "\f713";
  --fa--fa: "\f713\f713";
}

.fa-door-open {
  --fa: "\f52b";
  --fa--fa: "\f52b\f52b";
}

.fa-films {
  --fa: "\e17a";
  --fa--fa: "\e17a\e17a";
}

.fa-right-from-bracket {
  --fa: "\f2f5";
  --fa--fa: "\f2f5\f2f5";
}

.fa-sign-out-alt {
  --fa: "\f2f5";
  --fa--fa: "\f2f5\f2f5";
}

.fa-face-glasses {
  --fa: "\e377";
  --fa--fa: "\e377\e377";
}

.fa-nfc {
  --fa: "\e1f7";
  --fa--fa: "\e1f7\e1f7";
}

.fa-atom {
  --fa: "\f5d2";
  --fa--fa: "\f5d2\f5d2";
}

.fa-soap {
  --fa: "\e06e";
  --fa--fa: "\e06e\e06e";
}

.fa-icons {
  --fa: "\f86d";
  --fa--fa: "\f86d\f86d";
}

.fa-heart-music-camera-bolt {
  --fa: "\f86d";
  --fa--fa: "\f86d\f86d";
}

.fa-microphone-lines-slash {
  --fa: "\f539";
  --fa--fa: "\f539\f539";
}

.fa-microphone-alt-slash {
  --fa: "\f539";
  --fa--fa: "\f539\f539";
}

.fa-closed-captioning-slash {
  --fa: "\e135";
  --fa--fa: "\e135\e135";
}

.fa-calculator-simple {
  --fa: "\f64c";
  --fa--fa: "\f64c\f64c";
}

.fa-calculator-alt {
  --fa: "\f64c";
  --fa--fa: "\f64c\f64c";
}

.fa-bridge-circle-check {
  --fa: "\e4c9";
  --fa--fa: "\e4c9\e4c9";
}

.fa-sliders-up {
  --fa: "\f3f1";
  --fa--fa: "\f3f1\f3f1";
}

.fa-sliders-v {
  --fa: "\f3f1";
  --fa--fa: "\f3f1\f3f1";
}

.fa-location-minus {
  --fa: "\f609";
  --fa--fa: "\f609\f609";
}

.fa-map-marker-minus {
  --fa: "\f609";
  --fa--fa: "\f609\f609";
}

.fa-pump-medical {
  --fa: "\e06a";
  --fa--fa: "\e06a\e06a";
}

.fa-fingerprint {
  --fa: "\f577";
  --fa--fa: "\f577\f577";
}

.fa-ski-boot {
  --fa: "\e3cc";
  --fa--fa: "\e3cc\e3cc";
}

.fa-standard-definition {
  --fa: "\e28a";
  --fa--fa: "\e28a\e28a";
}

.fa-rectangle-sd {
  --fa: "\e28a";
  --fa--fa: "\e28a\e28a";
}

.fa-h1 {
  --fa: "\f313";
  --fa--fa: "\f313\f313";
}

.fa-hand-point-right {
  --fa: "\f0a4";
  --fa--fa: "\f0a4\f0a4";
}

.fa-magnifying-glass-location {
  --fa: "\f689";
  --fa--fa: "\f689\f689";
}

.fa-search-location {
  --fa: "\f689";
  --fa--fa: "\f689\f689";
}

.fa-message-bot {
  --fa: "\e3b8";
  --fa--fa: "\e3b8\e3b8";
}

.fa-forward-step {
  --fa: "\f051";
  --fa--fa: "\f051\f051";
}

.fa-step-forward {
  --fa: "\f051";
  --fa--fa: "\f051\f051";
}

.fa-face-smile-beam {
  --fa: "\f5b8";
  --fa--fa: "\f5b8\f5b8";
}

.fa-smile-beam {
  --fa: "\f5b8";
  --fa--fa: "\f5b8\f5b8";
}

.fa-light-ceiling {
  --fa: "\e016";
  --fa--fa: "\e016\e016";
}

.fa-message-exclamation {
  --fa: "\f4a5";
  --fa--fa: "\f4a5\f4a5";
}

.fa-comment-alt-exclamation {
  --fa: "\f4a5";
  --fa--fa: "\f4a5\f4a5";
}

.fa-bowl-scoop {
  --fa: "\e3de";
  --fa--fa: "\e3de\e3de";
}

.fa-bowl-shaved-ice {
  --fa: "\e3de";
  --fa--fa: "\e3de\e3de";
}

.fa-square-x {
  --fa: "\e286";
  --fa--fa: "\e286\e286";
}

.fa-building-memo {
  --fa: "\e61e";
  --fa--fa: "\e61e\e61e";
}

.fa-utility-pole-double {
  --fa: "\e2c4";
  --fa--fa: "\e2c4\e2c4";
}

.fa-flag-checkered {
  --fa: "\f11e";
  --fa--fa: "\f11e\f11e";
}

.fa-chevrons-up {
  --fa: "\f325";
  --fa--fa: "\f325\f325";
}

.fa-chevron-double-up {
  --fa: "\f325";
  --fa--fa: "\f325\f325";
}

.fa-football {
  --fa: "\f44e";
  --fa--fa: "\f44e\f44e";
}

.fa-football-ball {
  --fa: "\f44e";
  --fa--fa: "\f44e\f44e";
}

.fa-user-vneck {
  --fa: "\e461";
  --fa--fa: "\e461\e461";
}

.fa-school-circle-exclamation {
  --fa: "\e56c";
  --fa--fa: "\e56c\e56c";
}

.fa-crop {
  --fa: "\f125";
  --fa--fa: "\f125\f125";
}

.fa-angles-down {
  --fa: "\f103";
  --fa--fa: "\f103\f103";
}

.fa-angle-double-down {
  --fa: "\f103";
  --fa--fa: "\f103\f103";
}

.fa-users-rectangle {
  --fa: "\e594";
  --fa--fa: "\e594\e594";
}

.fa-people-roof {
  --fa: "\e537";
  --fa--fa: "\e537\e537";
}

.fa-square-arrow-right {
  --fa: "\f33b";
  --fa--fa: "\f33b\f33b";
}

.fa-arrow-square-right {
  --fa: "\f33b";
  --fa--fa: "\f33b\f33b";
}

.fa-location-plus {
  --fa: "\f60a";
  --fa--fa: "\f60a\f60a";
}

.fa-map-marker-plus {
  --fa: "\f60a";
  --fa--fa: "\f60a\f60a";
}

.fa-lightbulb-exclamation-on {
  --fa: "\e1ca";
  --fa--fa: "\e1ca\e1ca";
}

.fa-people-line {
  --fa: "\e534";
  --fa--fa: "\e534\e534";
}

.fa-beer-mug-empty {
  --fa: "\f0fc";
  --fa--fa: "\f0fc\f0fc";
}

.fa-beer {
  --fa: "\f0fc";
  --fa--fa: "\f0fc\f0fc";
}

.fa-carpool {
  --fa: "\e69c";
  --fa--fa: "\e69c\e69c";
}

.fa-car-people {
  --fa: "\e69c";
  --fa--fa: "\e69c\e69c";
}

.fa-crate-empty {
  --fa: "\e151";
  --fa--fa: "\e151\e151";
}

.fa-diagram-predecessor {
  --fa: "\e477";
  --fa--fa: "\e477\e477";
}

.fa-transporter {
  --fa: "\e042";
  --fa--fa: "\e042\e042";
}

.fa-calendar-circle-user {
  --fa: "\e471";
  --fa--fa: "\e471\e471";
}

.fa-arrow-up-long {
  --fa: "\f176";
  --fa--fa: "\f176\f176";
}

.fa-long-arrow-up {
  --fa: "\f176";
  --fa--fa: "\f176\f176";
}

.fa-person-carry-box {
  --fa: "\f4cf";
  --fa--fa: "\f4cf\f4cf";
}

.fa-person-carry {
  --fa: "\f4cf";
  --fa--fa: "\f4cf\f4cf";
}

.fa-fire-flame-simple {
  --fa: "\f46a";
  --fa--fa: "\f46a\f46a";
}

.fa-burn {
  --fa: "\f46a";
  --fa--fa: "\f46a\f46a";
}

.fa-person {
  --fa: "\f183";
  --fa--fa: "\f183\f183";
}

.fa-male {
  --fa: "\f183";
  --fa--fa: "\f183\f183";
}

.fa-laptop {
  --fa: "\f109";
  --fa--fa: "\f109\f109";
}

.fa-file-csv {
  --fa: "\f6dd";
  --fa--fa: "\f6dd\f6dd";
}

.fa-menorah {
  --fa: "\f676";
  --fa--fa: "\f676\f676";
}

.fa-union {
  --fa: "\f6a2";
  --fa--fa: "\f6a2\f6a2";
}

.fa-chevrons-left {
  --fa: "\f323";
  --fa--fa: "\f323\f323";
}

.fa-chevron-double-left {
  --fa: "\f323";
  --fa--fa: "\f323\f323";
}

.fa-circle-heart {
  --fa: "\f4c7";
  --fa--fa: "\f4c7\f4c7";
}

.fa-heart-circle {
  --fa: "\f4c7";
  --fa--fa: "\f4c7\f4c7";
}

.fa-truck-plane {
  --fa: "\e58f";
  --fa--fa: "\e58f\e58f";
}

.fa-record-vinyl {
  --fa: "\f8d9";
  --fa--fa: "\f8d9\f8d9";
}

.fa-bring-forward {
  --fa: "\f856";
  --fa--fa: "\f856\f856";
}

.fa-square-p {
  --fa: "\e279";
  --fa--fa: "\e279\e279";
}

.fa-face-grin-stars {
  --fa: "\f587";
  --fa--fa: "\f587\f587";
}

.fa-grin-stars {
  --fa: "\f587";
  --fa--fa: "\f587\f587";
}

.fa-sigma {
  --fa: "\f68b";
  --fa--fa: "\f68b\f68b";
}

.fa-camera-movie {
  --fa: "\f8a9";
  --fa--fa: "\f8a9\f8a9";
}

.fa-bong {
  --fa: "\f55c";
  --fa--fa: "\f55c\f55c";
}

.fa-clarinet {
  --fa: "\f8ad";
  --fa--fa: "\f8ad\f8ad";
}

.fa-truck-flatbed {
  --fa: "\e2b6";
  --fa--fa: "\e2b6\e2b6";
}

.fa-spaghetti-monster-flying {
  --fa: "\f67b";
  --fa--fa: "\f67b\f67b";
}

.fa-pastafarianism {
  --fa: "\f67b";
  --fa--fa: "\f67b\f67b";
}

.fa-arrow-down-up-across-line {
  --fa: "\e4af";
  --fa--fa: "\e4af\e4af";
}

.fa-arrows-rotate-reverse {
  --fa: "\e630";
  --fa--fa: "\e630\e630";
}

.fa-leaf-heart {
  --fa: "\f4cb";
  --fa--fa: "\f4cb\f4cb";
}

.fa-house-building {
  --fa: "\e1b1";
  --fa--fa: "\e1b1\e1b1";
}

.fa-cheese-swiss {
  --fa: "\f7f0";
  --fa--fa: "\f7f0\f7f0";
}

.fa-spoon {
  --fa: "\f2e5";
  --fa--fa: "\f2e5\f2e5";
}

.fa-utensil-spoon {
  --fa: "\f2e5";
  --fa--fa: "\f2e5\f2e5";
}

.fa-jar-wheat {
  --fa: "\e517";
  --fa--fa: "\e517\e517";
}

.fa-envelopes-bulk {
  --fa: "\f674";
  --fa--fa: "\f674\f674";
}

.fa-mail-bulk {
  --fa: "\f674";
  --fa--fa: "\f674\f674";
}

.fa-file-circle-exclamation {
  --fa: "\e4eb";
  --fa--fa: "\e4eb\e4eb";
}

.fa-bow-arrow {
  --fa: "\f6b9";
  --fa--fa: "\f6b9\f6b9";
}

.fa-cart-xmark {
  --fa: "\e0dd";
  --fa--fa: "\e0dd\e0dd";
}

.fa-hexagon-xmark {
  --fa: "\f2ee";
  --fa--fa: "\f2ee\f2ee";
}

.fa-times-hexagon {
  --fa: "\f2ee";
  --fa--fa: "\f2ee\f2ee";
}

.fa-xmark-hexagon {
  --fa: "\f2ee";
  --fa--fa: "\f2ee\f2ee";
}

.fa-circle-h {
  --fa: "\f47e";
  --fa--fa: "\f47e\f47e";
}

.fa-hospital-symbol {
  --fa: "\f47e";
  --fa--fa: "\f47e\f47e";
}

.fa-merge {
  --fa: "\e526";
  --fa--fa: "\e526\e526";
}

.fa-pager {
  --fa: "\f815";
  --fa--fa: "\f815\f815";
}

.fa-cart-minus {
  --fa: "\e0db";
  --fa--fa: "\e0db\e0db";
}

.fa-address-book {
  --fa: "\f2b9";
  --fa--fa: "\f2b9\f2b9";
}

.fa-contact-book {
  --fa: "\f2b9";
  --fa--fa: "\f2b9\f2b9";
}

.fa-pan-frying {
  --fa: "\e42c";
  --fa--fa: "\e42c\e42c";
}

.fa-grid {
  --fa: "\e195";
  --fa--fa: "\e195\e195";
}

.fa-grid-3 {
  --fa: "\e195";
  --fa--fa: "\e195\e195";
}

.fa-football-helmet {
  --fa: "\f44f";
  --fa--fa: "\f44f\f44f";
}

.fa-hand-love {
  --fa: "\e1a5";
  --fa--fa: "\e1a5\e1a5";
}

.fa-trees {
  --fa: "\f724";
  --fa--fa: "\f724\f724";
}

.fa-strikethrough {
  --fa: "\f0cc";
  --fa--fa: "\f0cc\f0cc";
}

.fa-page {
  --fa: "\e428";
  --fa--fa: "\e428\e428";
}

.fa-k {
  --fa: "K";
  --fa--fa: "KK";
}

.fa-diagram-previous {
  --fa: "\e478";
  --fa--fa: "\e478\e478";
}

.fa-gauge-min {
  --fa: "\f628";
  --fa--fa: "\f628\f628";
}

.fa-tachometer-alt-slowest {
  --fa: "\f628";
  --fa--fa: "\f628\f628";
}

.fa-folder-grid {
  --fa: "\e188";
  --fa--fa: "\e188\e188";
}

.fa-eggplant {
  --fa: "\e16c";
  --fa--fa: "\e16c\e16c";
}

.fa-excavator {
  --fa: "\e656";
  --fa--fa: "\e656\e656";
}

.fa-ram {
  --fa: "\f70a";
  --fa--fa: "\f70a\f70a";
}

.fa-landmark-flag {
  --fa: "\e51c";
  --fa--fa: "\e51c\e51c";
}

.fa-lips {
  --fa: "\f600";
  --fa--fa: "\f600\f600";
}

.fa-pencil {
  --fa: "\f303";
  --fa--fa: "\f303\f303";
}

.fa-pencil-alt {
  --fa: "\f303";
  --fa--fa: "\f303\f303";
}

.fa-backward {
  --fa: "\f04a";
  --fa--fa: "\f04a\f04a";
}

.fa-caret-right {
  --fa: "\f0da";
  --fa--fa: "\f0da\f0da";
}

.fa-comments {
  --fa: "\f086";
  --fa--fa: "\f086\f086";
}

.fa-paste {
  --fa: "\f0ea";
  --fa--fa: "\f0ea\f0ea";
}

.fa-file-clipboard {
  --fa: "\f0ea";
  --fa--fa: "\f0ea\f0ea";
}

.fa-desktop-arrow-down {
  --fa: "\e155";
  --fa--fa: "\e155\e155";
}

.fa-code-pull-request {
  --fa: "\e13c";
  --fa--fa: "\e13c\e13c";
}

.fa-pumpkin {
  --fa: "\f707";
  --fa--fa: "\f707\f707";
}

.fa-clipboard-list {
  --fa: "\f46d";
  --fa--fa: "\f46d\f46d";
}

.fa-pen-field {
  --fa: "\e211";
  --fa--fa: "\e211\e211";
}

.fa-chart-sine {
  --fa: "\e69d";
  --fa--fa: "\e69d\e69d";
}

.fa-blueberries {
  --fa: "\e2e8";
  --fa--fa: "\e2e8\e2e8";
}

.fa-truck-ramp-box {
  --fa: "\f4de";
  --fa--fa: "\f4de\f4de";
}

.fa-truck-loading {
  --fa: "\f4de";
  --fa--fa: "\f4de\f4de";
}

.fa-note {
  --fa: "\e1ff";
  --fa--fa: "\e1ff\e1ff";
}

.fa-arrow-down-to-square {
  --fa: "\e096";
  --fa--fa: "\e096\e096";
}

.fa-user-check {
  --fa: "\f4fc";
  --fa--fa: "\f4fc\f4fc";
}

.fa-cloud-xmark {
  --fa: "\e35f";
  --fa--fa: "\e35f\e35f";
}

.fa-vial-virus {
  --fa: "\e597";
  --fa--fa: "\e597\e597";
}

.fa-book-blank {
  --fa: "\f5d9";
  --fa--fa: "\f5d9\f5d9";
}

.fa-book-alt {
  --fa: "\f5d9";
  --fa--fa: "\f5d9\f5d9";
}

.fa-golf-flag-hole {
  --fa: "\e3ac";
  --fa--fa: "\e3ac\e3ac";
}

.fa-message-arrow-down {
  --fa: "\e1db";
  --fa--fa: "\e1db\e1db";
}

.fa-comment-alt-arrow-down {
  --fa: "\e1db";
  --fa--fa: "\e1db\e1db";
}

.fa-face-unamused {
  --fa: "\e39f";
  --fa--fa: "\e39f\e39f";
}

.fa-sheet-plastic {
  --fa: "\e571";
  --fa--fa: "\e571\e571";
}

.fa-circle-9 {
  --fa: "\e0f6";
  --fa--fa: "\e0f6\e0f6";
}

.fa-blog {
  --fa: "\f781";
  --fa--fa: "\f781\f781";
}

.fa-user-ninja {
  --fa: "\f504";
  --fa--fa: "\f504\f504";
}

.fa-pencil-slash {
  --fa: "\e215";
  --fa--fa: "\e215\e215";
}

.fa-bowling-pins {
  --fa: "\f437";
  --fa--fa: "\f437\f437";
}

.fa-person-arrow-up-from-line {
  --fa: "\e539";
  --fa--fa: "\e539\e539";
}

.fa-down-right {
  --fa: "\e16b";
  --fa--fa: "\e16b\e16b";
}

.fa-scroll-torah {
  --fa: "\f6a0";
  --fa--fa: "\f6a0\f6a0";
}

.fa-torah {
  --fa: "\f6a0";
  --fa--fa: "\f6a0\f6a0";
}

.fa-webhook {
  --fa: "\e5d5";
  --fa--fa: "\e5d5\e5d5";
}

.fa-blinds-open {
  --fa: "\f8fc";
  --fa--fa: "\f8fc\f8fc";
}

.fa-fence {
  --fa: "\e303";
  --fa--fa: "\e303\e303";
}

.fa-up {
  --fa: "\f357";
  --fa--fa: "\f357\f357";
}

.fa-arrow-alt-up {
  --fa: "\f357";
  --fa--fa: "\f357\f357";
}

.fa-broom-ball {
  --fa: "\f458";
  --fa--fa: "\f458\f458";
}

.fa-quidditch {
  --fa: "\f458";
  --fa--fa: "\f458\f458";
}

.fa-quidditch-broom-ball {
  --fa: "\f458";
  --fa--fa: "\f458\f458";
}

.fa-drumstick {
  --fa: "\f6d6";
  --fa--fa: "\f6d6\f6d6";
}

.fa-square-v {
  --fa: "\e284";
  --fa--fa: "\e284\e284";
}

.fa-face-awesome {
  --fa: "\e409";
  --fa--fa: "\e409\e409";
}

.fa-gave-dandy {
  --fa: "\e409";
  --fa--fa: "\e409\e409";
}

.fa-dial-off {
  --fa: "\e162";
  --fa--fa: "\e162\e162";
}

.fa-toggle-off {
  --fa: "\f204";
  --fa--fa: "\f204\f204";
}

.fa-face-smile-horns {
  --fa: "\e391";
  --fa--fa: "\e391\e391";
}

.fa-box-archive {
  --fa: "\f187";
  --fa--fa: "\f187\f187";
}

.fa-archive {
  --fa: "\f187";
  --fa--fa: "\f187\f187";
}

.fa-grapes {
  --fa: "\e306";
  --fa--fa: "\e306\e306";
}

.fa-person-drowning {
  --fa: "\e545";
  --fa--fa: "\e545\e545";
}

.fa-dial-max {
  --fa: "\e15e";
  --fa--fa: "\e15e\e15e";
}

.fa-circle-m {
  --fa: "\e115";
  --fa--fa: "\e115\e115";
}

.fa-calendar-image {
  --fa: "\e0d4";
  --fa--fa: "\e0d4\e0d4";
}

.fa-circle-caret-down {
  --fa: "\f32d";
  --fa--fa: "\f32d\f32d";
}

.fa-caret-circle-down {
  --fa: "\f32d";
  --fa--fa: "\f32d\f32d";
}

.fa-arrow-down-9-1 {
  --fa: "\f886";
  --fa--fa: "\f886\f886";
}

.fa-sort-numeric-desc {
  --fa: "\f886";
  --fa--fa: "\f886\f886";
}

.fa-sort-numeric-down-alt {
  --fa: "\f886";
  --fa--fa: "\f886\f886";
}

.fa-face-grin-tongue-squint {
  --fa: "\f58a";
  --fa--fa: "\f58a\f58a";
}

.fa-grin-tongue-squint {
  --fa: "\f58a";
  --fa--fa: "\f58a\f58a";
}

.fa-shish-kebab {
  --fa: "\f821";
  --fa--fa: "\f821\f821";
}

.fa-spray-can {
  --fa: "\f5bd";
  --fa--fa: "\f5bd\f5bd";
}

.fa-alarm-snooze {
  --fa: "\f845";
  --fa--fa: "\f845\f845";
}

.fa-scarecrow {
  --fa: "\f70d";
  --fa--fa: "\f70d\f70d";
}

.fa-truck-monster {
  --fa: "\f63b";
  --fa--fa: "\f63b\f63b";
}

.fa-gift-card {
  --fa: "\f663";
  --fa--fa: "\f663\f663";
}

.fa-w {
  --fa: "W";
  --fa--fa: "WW";
}

.fa-code-pull-request-draft {
  --fa: "\e3fa";
  --fa--fa: "\e3fa\e3fa";
}

.fa-square-b {
  --fa: "\e264";
  --fa--fa: "\e264\e264";
}

.fa-elephant {
  --fa: "\f6da";
  --fa--fa: "\f6da\f6da";
}

.fa-earth-africa {
  --fa: "\f57c";
  --fa--fa: "\f57c\f57c";
}

.fa-globe-africa {
  --fa: "\f57c";
  --fa--fa: "\f57c\f57c";
}

.fa-rainbow {
  --fa: "\f75b";
  --fa--fa: "\f75b\f75b";
}

.fa-circle-notch {
  --fa: "\f1ce";
  --fa--fa: "\f1ce\f1ce";
}

.fa-tablet-screen-button {
  --fa: "\f3fa";
  --fa--fa: "\f3fa\f3fa";
}

.fa-tablet-alt {
  --fa: "\f3fa";
  --fa--fa: "\f3fa\f3fa";
}

.fa-paw {
  --fa: "\f1b0";
  --fa--fa: "\f1b0\f1b0";
}

.fa-message-question {
  --fa: "\e1e3";
  --fa--fa: "\e1e3\e1e3";
}

.fa-cloud {
  --fa: "\f0c2";
  --fa--fa: "\f0c2\f0c2";
}

.fa-trowel-bricks {
  --fa: "\e58a";
  --fa--fa: "\e58a\e58a";
}

.fa-square-3 {
  --fa: "\e258";
  --fa--fa: "\e258\e258";
}

.fa-face-flushed {
  --fa: "\f579";
  --fa--fa: "\f579\f579";
}

.fa-flushed {
  --fa: "\f579";
  --fa--fa: "\f579\f579";
}

.fa-hospital-user {
  --fa: "\f80d";
  --fa--fa: "\f80d\f80d";
}

.fa-microwave {
  --fa: "\e01b";
  --fa--fa: "\e01b\e01b";
}

.fa-chf-sign {
  --fa: "\e602";
  --fa--fa: "\e602\e602";
}

.fa-tent-arrow-left-right {
  --fa: "\e57f";
  --fa--fa: "\e57f\e57f";
}

.fa-cart-circle-arrow-up {
  --fa: "\e3f0";
  --fa--fa: "\e3f0\e3f0";
}

.fa-trash-clock {
  --fa: "\e2b0";
  --fa--fa: "\e2b0\e2b0";
}

.fa-reflect-both {
  --fa: "\e66f";
  --fa--fa: "\e66f\e66f";
}

.fa-gavel {
  --fa: "\f0e3";
  --fa--fa: "\f0e3\f0e3";
}

.fa-legal {
  --fa: "\f0e3";
  --fa--fa: "\f0e3\f0e3";
}

.fa-sprinkler-ceiling {
  --fa: "\e44c";
  --fa--fa: "\e44c\e44c";
}

.fa-browsers {
  --fa: "\e0cb";
  --fa--fa: "\e0cb\e0cb";
}

.fa-trillium {
  --fa: "\e588";
  --fa--fa: "\e588\e588";
}

.fa-table-cells-unlock {
  --fa: "\e692";
  --fa--fa: "\e692\e692";
}

.fa-music-slash {
  --fa: "\f8d1";
  --fa--fa: "\f8d1\f8d1";
}

.fa-truck-ramp {
  --fa: "\f4e0";
  --fa--fa: "\f4e0\f4e0";
}

.fa-binoculars {
  --fa: "\f1e5";
  --fa--fa: "\f1e5\f1e5";
}

.fa-microphone-slash {
  --fa: "\f131";
  --fa--fa: "\f131\f131";
}

.fa-box-tissue {
  --fa: "\e05b";
  --fa--fa: "\e05b\e05b";
}

.fa-circle-c {
  --fa: "\e101";
  --fa--fa: "\e101\e101";
}

.fa-star-christmas {
  --fa: "\f7d4";
  --fa--fa: "\f7d4\f7d4";
}

.fa-chart-bullet {
  --fa: "\e0e1";
  --fa--fa: "\e0e1\e0e1";
}

.fa-motorcycle {
  --fa: "\f21c";
  --fa--fa: "\f21c\f21c";
}

.fa-tree-christmas {
  --fa: "\f7db";
  --fa--fa: "\f7db\f7db";
}

.fa-tire-flat {
  --fa: "\f632";
  --fa--fa: "\f632\f632";
}

.fa-sunglasses {
  --fa: "\f892";
  --fa--fa: "\f892\f892";
}

.fa-badge {
  --fa: "\f335";
  --fa--fa: "\f335\f335";
}

.fa-message-pen {
  --fa: "\f4a4";
  --fa--fa: "\f4a4\f4a4";
}

.fa-comment-alt-edit {
  --fa: "\f4a4";
  --fa--fa: "\f4a4\f4a4";
}

.fa-message-edit {
  --fa: "\f4a4";
  --fa--fa: "\f4a4\f4a4";
}

.fa-bell-concierge {
  --fa: "\f562";
  --fa--fa: "\f562\f562";
}

.fa-concierge-bell {
  --fa: "\f562";
  --fa--fa: "\f562\f562";
}

.fa-pen-ruler {
  --fa: "\f5ae";
  --fa--fa: "\f5ae\f5ae";
}

.fa-pencil-ruler {
  --fa: "\f5ae";
  --fa--fa: "\f5ae\f5ae";
}

.fa-file-mp3 {
  --fa: "\e648";
  --fa--fa: "\e648\e648";
}

.fa-arrow-progress {
  --fa: "\e5df";
  --fa--fa: "\e5df\e5df";
}

.fa-chess-rook-piece {
  --fa: "\f448";
  --fa--fa: "\f448\f448";
}

.fa-chess-rook-alt {
  --fa: "\f448";
  --fa--fa: "\f448\f448";
}

.fa-square-root {
  --fa: "\f697";
  --fa--fa: "\f697\f697";
}

.fa-album-collection-circle-plus {
  --fa: "\e48e";
  --fa--fa: "\e48e\e48e";
}

.fa-people-arrows {
  --fa: "\e068";
  --fa--fa: "\e068\e068";
}

.fa-people-arrows-left-right {
  --fa: "\e068";
  --fa--fa: "\e068\e068";
}

.fa-sign-post {
  --fa: "\e624";
  --fa--fa: "\e624\e624";
}

.fa-face-angry-horns {
  --fa: "\e368";
  --fa--fa: "\e368\e368";
}

.fa-mars-and-venus-burst {
  --fa: "\e523";
  --fa--fa: "\e523\e523";
}

.fa-tombstone {
  --fa: "\f720";
  --fa--fa: "\f720\f720";
}

.fa-square-caret-right {
  --fa: "\f152";
  --fa--fa: "\f152\f152";
}

.fa-caret-square-right {
  --fa: "\f152";
  --fa--fa: "\f152\f152";
}

.fa-scissors {
  --fa: "\f0c4";
  --fa--fa: "\f0c4\f0c4";
}

.fa-cut {
  --fa: "\f0c4";
  --fa--fa: "\f0c4\f0c4";
}

.fa-list-music {
  --fa: "\f8c9";
  --fa--fa: "\f8c9\f8c9";
}

.fa-sun-plant-wilt {
  --fa: "\e57a";
  --fa--fa: "\e57a\e57a";
}

.fa-toilets-portable {
  --fa: "\e584";
  --fa--fa: "\e584\e584";
}

.fa-hockey-puck {
  --fa: "\f453";
  --fa--fa: "\f453\f453";
}

.fa-mustache {
  --fa: "\e5bc";
  --fa--fa: "\e5bc\e5bc";
}

.fa-hyphen {
  --fa: "\-";
  --fa--fa: "\-\-";
}

.fa-table {
  --fa: "\f0ce";
  --fa--fa: "\f0ce\f0ce";
}

.fa-user-chef {
  --fa: "\e3d2";
  --fa--fa: "\e3d2\e3d2";
}

.fa-message-image {
  --fa: "\e1e0";
  --fa--fa: "\e1e0\e1e0";
}

.fa-comment-alt-image {
  --fa: "\e1e0";
  --fa--fa: "\e1e0\e1e0";
}

.fa-users-medical {
  --fa: "\f830";
  --fa--fa: "\f830\f830";
}

.fa-sensor-triangle-exclamation {
  --fa: "\e029";
  --fa--fa: "\e029\e029";
}

.fa-sensor-alert {
  --fa: "\e029";
  --fa--fa: "\e029\e029";
}

.fa-magnifying-glass-arrow-right {
  --fa: "\e521";
  --fa--fa: "\e521\e521";
}

.fa-tachograph-digital {
  --fa: "\f566";
  --fa--fa: "\f566\f566";
}

.fa-digital-tachograph {
  --fa: "\f566";
  --fa--fa: "\f566\f566";
}

.fa-face-mask {
  --fa: "\e37f";
  --fa--fa: "\e37f\e37f";
}

.fa-pickleball {
  --fa: "\e435";
  --fa--fa: "\e435\e435";
}

.fa-star-sharp-half {
  --fa: "\e28c";
  --fa--fa: "\e28c\e28c";
}

.fa-users-slash {
  --fa: "\e073";
  --fa--fa: "\e073\e073";
}

.fa-clover {
  --fa: "\e139";
  --fa--fa: "\e139\e139";
}

.fa-meat {
  --fa: "\f814";
  --fa--fa: "\f814\f814";
}

.fa-reply {
  --fa: "\f3e5";
  --fa--fa: "\f3e5\f3e5";
}

.fa-mail-reply {
  --fa: "\f3e5";
  --fa--fa: "\f3e5\f3e5";
}

.fa-star-and-crescent {
  --fa: "\f699";
  --fa--fa: "\f699\f699";
}

.fa-empty-set {
  --fa: "\f656";
  --fa--fa: "\f656\f656";
}

.fa-house-fire {
  --fa: "\e50c";
  --fa--fa: "\e50c\e50c";
}

.fa-square-minus {
  --fa: "\f146";
  --fa--fa: "\f146\f146";
}

.fa-minus-square {
  --fa: "\f146";
  --fa--fa: "\f146\f146";
}

.fa-helicopter {
  --fa: "\f533";
  --fa--fa: "\f533\f533";
}

.fa-bird {
  --fa: "\e469";
  --fa--fa: "\e469\e469";
}

.fa-compass {
  --fa: "\f14e";
  --fa--fa: "\f14e\f14e";
}

.fa-square-caret-down {
  --fa: "\f150";
  --fa--fa: "\f150\f150";
}

.fa-caret-square-down {
  --fa: "\f150";
  --fa--fa: "\f150\f150";
}

.fa-heart-half-stroke {
  --fa: "\e1ac";
  --fa--fa: "\e1ac\e1ac";
}

.fa-heart-half-alt {
  --fa: "\e1ac";
  --fa--fa: "\e1ac\e1ac";
}

.fa-file-circle-question {
  --fa: "\e4ef";
  --fa--fa: "\e4ef\e4ef";
}

.fa-truck-utensils {
  --fa: "\e628";
  --fa--fa: "\e628\e628";
}

.fa-laptop-code {
  --fa: "\f5fc";
  --fa--fa: "\f5fc\f5fc";
}

.fa-joystick {
  --fa: "\f8c5";
  --fa--fa: "\f8c5\f8c5";
}

.fa-grill-fire {
  --fa: "\e5a4";
  --fa--fa: "\e5a4\e5a4";
}

.fa-rectangle-vertical-history {
  --fa: "\e237";
  --fa--fa: "\e237\e237";
}

.fa-swatchbook {
  --fa: "\f5c3";
  --fa--fa: "\f5c3\f5c3";
}

.fa-prescription-bottle {
  --fa: "\f485";
  --fa--fa: "\f485\f485";
}

.fa-bars {
  --fa: "\f0c9";
  --fa--fa: "\f0c9\f0c9";
}

.fa-navicon {
  --fa: "\f0c9";
  --fa--fa: "\f0c9\f0c9";
}

.fa-keyboard-left {
  --fa: "\e1c3";
  --fa--fa: "\e1c3\e1c3";
}

.fa-people-group {
  --fa: "\e533";
  --fa--fa: "\e533\e533";
}

.fa-hourglass-end {
  --fa: "\f253";
  --fa--fa: "\f253\f253";
}

.fa-hourglass-3 {
  --fa: "\f253";
  --fa--fa: "\f253\f253";
}

.fa-heart-crack {
  --fa: "\f7a9";
  --fa--fa: "\f7a9\f7a9";
}

.fa-heart-broken {
  --fa: "\f7a9";
  --fa--fa: "\f7a9\f7a9";
}

.fa-face-beam-hand-over-mouth {
  --fa: "\e47c";
  --fa--fa: "\e47c\e47c";
}

.fa-droplet-percent {
  --fa: "\f750";
  --fa--fa: "\f750\f750";
}

.fa-humidity {
  --fa: "\f750";
  --fa--fa: "\f750\f750";
}

.fa-square-up-right {
  --fa: "\f360";
  --fa--fa: "\f360\f360";
}

.fa-external-link-square-alt {
  --fa: "\f360";
  --fa--fa: "\f360\f360";
}

.fa-face-kiss-beam {
  --fa: "\f597";
  --fa--fa: "\f597\f597";
}

.fa-kiss-beam {
  --fa: "\f597";
  --fa--fa: "\f597\f597";
}

.fa-corn {
  --fa: "\f6c7";
  --fa--fa: "\f6c7\f6c7";
}

.fa-roller-coaster {
  --fa: "\e324";
  --fa--fa: "\e324\e324";
}

.fa-photo-film-music {
  --fa: "\e228";
  --fa--fa: "\e228\e228";
}

.fa-radar {
  --fa: "\e024";
  --fa--fa: "\e024\e024";
}

.fa-sickle {
  --fa: "\f822";
  --fa--fa: "\f822\f822";
}

.fa-film {
  --fa: "\f008";
  --fa--fa: "\f008\f008";
}

.fa-coconut {
  --fa: "\e2f6";
  --fa--fa: "\e2f6\e2f6";
}

.fa-ruler-horizontal {
  --fa: "\f547";
  --fa--fa: "\f547\f547";
}

.fa-shield-cross {
  --fa: "\f712";
  --fa--fa: "\f712\f712";
}

.fa-cassette-tape {
  --fa: "\f8ab";
  --fa--fa: "\f8ab\f8ab";
}

.fa-square-terminal {
  --fa: "\e32a";
  --fa--fa: "\e32a\e32a";
}

.fa-people-robbery {
  --fa: "\e536";
  --fa--fa: "\e536\e536";
}

.fa-lightbulb {
  --fa: "\f0eb";
  --fa--fa: "\f0eb\f0eb";
}

.fa-caret-left {
  --fa: "\f0d9";
  --fa--fa: "\f0d9\f0d9";
}

.fa-comment-middle {
  --fa: "\e149";
  --fa--fa: "\e149\e149";
}

.fa-trash-can-list {
  --fa: "\e2ab";
  --fa--fa: "\e2ab\e2ab";
}

.fa-block {
  --fa: "\e46a";
  --fa--fa: "\e46a\e46a";
}

.fa-circle-exclamation {
  --fa: "\f06a";
  --fa--fa: "\f06a\f06a";
}

.fa-exclamation-circle {
  --fa: "\f06a";
  --fa--fa: "\f06a\f06a";
}

.fa-school-circle-xmark {
  --fa: "\e56d";
  --fa--fa: "\e56d\e56d";
}

.fa-arrow-right-from-bracket {
  --fa: "\f08b";
  --fa--fa: "\f08b\f08b";
}

.fa-sign-out {
  --fa: "\f08b";
  --fa--fa: "\f08b\f08b";
}

.fa-face-frown-slight {
  --fa: "\e376";
  --fa--fa: "\e376\e376";
}

.fa-circle-chevron-down {
  --fa: "\f13a";
  --fa--fa: "\f13a\f13a";
}

.fa-chevron-circle-down {
  --fa: "\f13a";
  --fa--fa: "\f13a\f13a";
}

.fa-sidebar-flip {
  --fa: "\e24f";
  --fa--fa: "\e24f\e24f";
}

.fa-unlock-keyhole {
  --fa: "\f13e";
  --fa--fa: "\f13e\f13e";
}

.fa-unlock-alt {
  --fa: "\f13e";
  --fa--fa: "\f13e\f13e";
}

.fa-temperature-list {
  --fa: "\e299";
  --fa--fa: "\e299\e299";
}

.fa-cloud-showers-heavy {
  --fa: "\f740";
  --fa--fa: "\f740\f740";
}

.fa-headphones-simple {
  --fa: "\f58f";
  --fa--fa: "\f58f\f58f";
}

.fa-headphones-alt {
  --fa: "\f58f";
  --fa--fa: "\f58f\f58f";
}

.fa-sitemap {
  --fa: "\f0e8";
  --fa--fa: "\f0e8\f0e8";
}

.fa-pipe-section {
  --fa: "\e438";
  --fa--fa: "\e438\e438";
}

.fa-space-station-moon-construction {
  --fa: "\e034";
  --fa--fa: "\e034\e034";
}

.fa-space-station-moon-alt {
  --fa: "\e034";
  --fa--fa: "\e034\e034";
}

.fa-circle-dollar-to-slot {
  --fa: "\f4b9";
  --fa--fa: "\f4b9\f4b9";
}

.fa-donate {
  --fa: "\f4b9";
  --fa--fa: "\f4b9\f4b9";
}

.fa-memory {
  --fa: "\f538";
  --fa--fa: "\f538\f538";
}

.fa-face-sleeping {
  --fa: "\e38d";
  --fa--fa: "\e38d\e38d";
}

.fa-road-spikes {
  --fa: "\e568";
  --fa--fa: "\e568\e568";
}

.fa-fire-burner {
  --fa: "\e4f1";
  --fa--fa: "\e4f1\e4f1";
}

.fa-squirrel {
  --fa: "\f71a";
  --fa--fa: "\f71a\f71a";
}

.fa-arrow-up-to-line {
  --fa: "\f341";
  --fa--fa: "\f341\f341";
}

.fa-arrow-to-top {
  --fa: "\f341";
  --fa--fa: "\f341\f341";
}

.fa-flag {
  --fa: "\f024";
  --fa--fa: "\f024\f024";
}

.fa-face-cowboy-hat {
  --fa: "\e36e";
  --fa--fa: "\e36e\e36e";
}

.fa-hanukiah {
  --fa: "\f6e6";
  --fa--fa: "\f6e6\f6e6";
}

.fa-chart-scatter-3d {
  --fa: "\e0e8";
  --fa--fa: "\e0e8\e0e8";
}

.fa-display-chart-up {
  --fa: "\e5e3";
  --fa--fa: "\e5e3\e5e3";
}

.fa-square-code {
  --fa: "\e267";
  --fa--fa: "\e267\e267";
}

.fa-feather {
  --fa: "\f52d";
  --fa--fa: "\f52d\f52d";
}

.fa-volume-low {
  --fa: "\f027";
  --fa--fa: "\f027\f027";
}

.fa-volume-down {
  --fa: "\f027";
  --fa--fa: "\f027\f027";
}

.fa-xmark-to-slot {
  --fa: "\f771";
  --fa--fa: "\f771\f771";
}

.fa-times-to-slot {
  --fa: "\f771";
  --fa--fa: "\f771\f771";
}

.fa-vote-nay {
  --fa: "\f771";
  --fa--fa: "\f771\f771";
}

.fa-box-taped {
  --fa: "\f49a";
  --fa--fa: "\f49a\f49a";
}

.fa-box-alt {
  --fa: "\f49a";
  --fa--fa: "\f49a\f49a";
}

.fa-comment-slash {
  --fa: "\f4b3";
  --fa--fa: "\f4b3\f4b3";
}

.fa-swords {
  --fa: "\f71d";
  --fa--fa: "\f71d\f71d";
}

.fa-cloud-sun-rain {
  --fa: "\f743";
  --fa--fa: "\f743\f743";
}

.fa-album {
  --fa: "\f89f";
  --fa--fa: "\f89f\f89f";
}

.fa-circle-n {
  --fa: "\e118";
  --fa--fa: "\e118\e118";
}

.fa-compress {
  --fa: "\f066";
  --fa--fa: "\f066\f066";
}

.fa-wheat-awn {
  --fa: "\e2cd";
  --fa--fa: "\e2cd\e2cd";
}

.fa-wheat-alt {
  --fa: "\e2cd";
  --fa--fa: "\e2cd\e2cd";
}

.fa-ankh {
  --fa: "\f644";
  --fa--fa: "\f644\f644";
}

.fa-hands-holding-child {
  --fa: "\e4fa";
  --fa--fa: "\e4fa\e4fa";
}

.fa-asterisk {
  --fa: "\*";
  --fa--fa: "\*\*";
}

.fa-key-skeleton-left-right {
  --fa: "\e3b4";
  --fa--fa: "\e3b4\e3b4";
}

.fa-comment-lines {
  --fa: "\f4b0";
  --fa--fa: "\f4b0\f4b0";
}

.fa-luchador-mask {
  --fa: "\f455";
  --fa--fa: "\f455\f455";
}

.fa-luchador {
  --fa: "\f455";
  --fa--fa: "\f455\f455";
}

.fa-mask-luchador {
  --fa: "\f455";
  --fa--fa: "\f455\f455";
}

.fa-square-check {
  --fa: "\f14a";
  --fa--fa: "\f14a\f14a";
}

.fa-check-square {
  --fa: "\f14a";
  --fa--fa: "\f14a\f14a";
}

.fa-shredder {
  --fa: "\f68a";
  --fa--fa: "\f68a\f68a";
}

.fa-book-open-cover {
  --fa: "\e0c0";
  --fa--fa: "\e0c0\e0c0";
}

.fa-book-open-alt {
  --fa: "\e0c0";
  --fa--fa: "\e0c0\e0c0";
}

.fa-sandwich {
  --fa: "\f81f";
  --fa--fa: "\f81f\f81f";
}

.fa-peseta-sign {
  --fa: "\e221";
  --fa--fa: "\e221\e221";
}

.fa-square-parking-slash {
  --fa: "\f617";
  --fa--fa: "\f617\f617";
}

.fa-parking-slash {
  --fa: "\f617";
  --fa--fa: "\f617\f617";
}

.fa-train-tunnel {
  --fa: "\e454";
  --fa--fa: "\e454\e454";
}

.fa-heading {
  --fa: "\f1dc";
  --fa--fa: "\f1dc\f1dc";
}

.fa-header {
  --fa: "\f1dc";
  --fa--fa: "\f1dc\f1dc";
}

.fa-ghost {
  --fa: "\f6e2";
  --fa--fa: "\f6e2\f6e2";
}

.fa-face-anguished {
  --fa: "\e369";
  --fa--fa: "\e369\e369";
}

.fa-hockey-sticks {
  --fa: "\f454";
  --fa--fa: "\f454\f454";
}

.fa-abacus {
  --fa: "\f640";
  --fa--fa: "\f640\f640";
}

.fa-film-simple {
  --fa: "\f3a0";
  --fa--fa: "\f3a0\f3a0";
}

.fa-film-alt {
  --fa: "\f3a0";
  --fa--fa: "\f3a0\f3a0";
}

.fa-list {
  --fa: "\f03a";
  --fa--fa: "\f03a\f03a";
}

.fa-list-squares {
  --fa: "\f03a";
  --fa--fa: "\f03a\f03a";
}

.fa-tree-palm {
  --fa: "\f82b";
  --fa--fa: "\f82b\f82b";
}

.fa-square-phone-flip {
  --fa: "\f87b";
  --fa--fa: "\f87b\f87b";
}

.fa-phone-square-alt {
  --fa: "\f87b";
  --fa--fa: "\f87b\f87b";
}

.fa-user-beard-bolt {
  --fa: "\e689";
  --fa--fa: "\e689\e689";
}

.fa-cart-plus {
  --fa: "\f217";
  --fa--fa: "\f217\f217";
}

.fa-gamepad {
  --fa: "\f11b";
  --fa--fa: "\f11b\f11b";
}

.fa-border-center-v {
  --fa: "\f89d";
  --fa--fa: "\f89d\f89d";
}

.fa-circle-dot {
  --fa: "\f192";
  --fa--fa: "\f192\f192";
}

.fa-dot-circle {
  --fa: "\f192";
  --fa--fa: "\f192\f192";
}

.fa-clipboard-medical {
  --fa: "\e133";
  --fa--fa: "\e133\e133";
}

.fa-face-dizzy {
  --fa: "\f567";
  --fa--fa: "\f567\f567";
}

.fa-dizzy {
  --fa: "\f567";
  --fa--fa: "\f567\f567";
}

.fa-egg {
  --fa: "\f7fb";
  --fa--fa: "\f7fb\f7fb";
}

.fa-up-to-line {
  --fa: "\f34d";
  --fa--fa: "\f34d\f34d";
}

.fa-arrow-alt-to-top {
  --fa: "\f34d";
  --fa--fa: "\f34d\f34d";
}

.fa-house-medical-circle-xmark {
  --fa: "\e513";
  --fa--fa: "\e513\e513";
}

.fa-watch-fitness {
  --fa: "\f63e";
  --fa--fa: "\f63e\f63e";
}

.fa-clock-nine-thirty {
  --fa: "\e34d";
  --fa--fa: "\e34d\e34d";
}

.fa-campground {
  --fa: "\f6bb";
  --fa--fa: "\f6bb\f6bb";
}

.fa-folder-plus {
  --fa: "\f65e";
  --fa--fa: "\f65e\f65e";
}

.fa-jug {
  --fa: "\f8c6";
  --fa--fa: "\f8c6\f8c6";
}

.fa-futbol {
  --fa: "\f1e3";
  --fa--fa: "\f1e3\f1e3";
}

.fa-futbol-ball {
  --fa: "\f1e3";
  --fa--fa: "\f1e3\f1e3";
}

.fa-soccer-ball {
  --fa: "\f1e3";
  --fa--fa: "\f1e3\f1e3";
}

.fa-snow-blowing {
  --fa: "\f761";
  --fa--fa: "\f761\f761";
}

.fa-paintbrush {
  --fa: "\f1fc";
  --fa--fa: "\f1fc\f1fc";
}

.fa-paint-brush {
  --fa: "\f1fc";
  --fa--fa: "\f1fc\f1fc";
}

.fa-lock {
  --fa: "\f023";
  --fa--fa: "\f023\f023";
}

.fa-arrow-down-from-line {
  --fa: "\f345";
  --fa--fa: "\f345\f345";
}

.fa-arrow-from-top {
  --fa: "\f345";
  --fa--fa: "\f345\f345";
}

.fa-gas-pump {
  --fa: "\f52f";
  --fa--fa: "\f52f\f52f";
}

.fa-signal-bars-slash {
  --fa: "\f694";
  --fa--fa: "\f694\f694";
}

.fa-signal-alt-slash {
  --fa: "\f694";
  --fa--fa: "\f694\f694";
}

.fa-monkey {
  --fa: "\f6fb";
  --fa--fa: "\f6fb\f6fb";
}

.fa-rectangle-pro {
  --fa: "\e235";
  --fa--fa: "\e235\e235";
}

.fa-pro {
  --fa: "\e235";
  --fa--fa: "\e235\e235";
}

.fa-house-night {
  --fa: "\e010";
  --fa--fa: "\e010\e010";
}

.fa-hot-tub-person {
  --fa: "\f593";
  --fa--fa: "\f593\f593";
}

.fa-hot-tub {
  --fa: "\f593";
  --fa--fa: "\f593\f593";
}

.fa-globe-pointer {
  --fa: "\e60e";
  --fa--fa: "\e60e\e60e";
}

.fa-blanket {
  --fa: "\f498";
  --fa--fa: "\f498\f498";
}

.fa-map-location {
  --fa: "\f59f";
  --fa--fa: "\f59f\f59f";
}

.fa-map-marked {
  --fa: "\f59f";
  --fa--fa: "\f59f\f59f";
}

.fa-house-flood-water {
  --fa: "\e50e";
  --fa--fa: "\e50e\e50e";
}

.fa-comments-question-check {
  --fa: "\e14f";
  --fa--fa: "\e14f\e14f";
}

.fa-tree {
  --fa: "\f1bb";
  --fa--fa: "\f1bb\f1bb";
}

.fa-arrows-cross {
  --fa: "\e0a2";
  --fa--fa: "\e0a2\e0a2";
}

.fa-backpack {
  --fa: "\f5d4";
  --fa--fa: "\f5d4\f5d4";
}

.fa-square-small {
  --fa: "\e27e";
  --fa--fa: "\e27e\e27e";
}

.fa-folder-arrow-up {
  --fa: "\e054";
  --fa--fa: "\e054\e054";
}

.fa-folder-upload {
  --fa: "\e054";
  --fa--fa: "\e054\e054";
}

.fa-bridge-lock {
  --fa: "\e4cc";
  --fa--fa: "\e4cc\e4cc";
}

.fa-crosshairs-simple {
  --fa: "\e59f";
  --fa--fa: "\e59f\e59f";
}

.fa-sack-dollar {
  --fa: "\f81d";
  --fa--fa: "\f81d\f81d";
}

.fa-pen-to-square {
  --fa: "\f044";
  --fa--fa: "\f044\f044";
}

.fa-edit {
  --fa: "\f044";
  --fa--fa: "\f044\f044";
}

.fa-square-sliders {
  --fa: "\f3f0";
  --fa--fa: "\f3f0\f3f0";
}

.fa-sliders-h-square {
  --fa: "\f3f0";
  --fa--fa: "\f3f0\f3f0";
}

.fa-car-side {
  --fa: "\f5e4";
  --fa--fa: "\f5e4\f5e4";
}

.fa-message-middle-top {
  --fa: "\e1e2";
  --fa--fa: "\e1e2\e1e2";
}

.fa-comment-middle-top-alt {
  --fa: "\e1e2";
  --fa--fa: "\e1e2\e1e2";
}

.fa-lightbulb-on {
  --fa: "\f672";
  --fa--fa: "\f672\f672";
}

.fa-knife {
  --fa: "\f2e4";
  --fa--fa: "\f2e4\f2e4";
}

.fa-utensil-knife {
  --fa: "\f2e4";
  --fa--fa: "\f2e4\f2e4";
}

.fa-share-nodes {
  --fa: "\f1e0";
  --fa--fa: "\f1e0\f1e0";
}

.fa-share-alt {
  --fa: "\f1e0";
  --fa--fa: "\f1e0\f1e0";
}

.fa-display-chart-up-circle-dollar {
  --fa: "\e5e6";
  --fa--fa: "\e5e6\e5e6";
}

.fa-wave-sine {
  --fa: "\f899";
  --fa--fa: "\f899\f899";
}

.fa-heart-circle-minus {
  --fa: "\e4ff";
  --fa--fa: "\e4ff\e4ff";
}

.fa-circle-w {
  --fa: "\e12c";
  --fa--fa: "\e12c\e12c";
}

.fa-circle-calendar {
  --fa: "\e102";
  --fa--fa: "\e102\e102";
}

.fa-calendar-circle {
  --fa: "\e102";
  --fa--fa: "\e102\e102";
}

.fa-hourglass-half {
  --fa: "\f252";
  --fa--fa: "\f252\f252";
}

.fa-hourglass-2 {
  --fa: "\f252";
  --fa--fa: "\f252\f252";
}

.fa-microscope {
  --fa: "\f610";
  --fa--fa: "\f610\f610";
}

.fa-sunset {
  --fa: "\f767";
  --fa--fa: "\f767\f767";
}

.fa-sink {
  --fa: "\e06d";
  --fa--fa: "\e06d\e06d";
}

.fa-calendar-exclamation {
  --fa: "\f334";
  --fa--fa: "\f334\f334";
}

.fa-truck-container-empty {
  --fa: "\e2b5";
  --fa--fa: "\e2b5\e2b5";
}

.fa-hand-heart {
  --fa: "\f4bc";
  --fa--fa: "\f4bc\f4bc";
}

.fa-bag-shopping {
  --fa: "\f290";
  --fa--fa: "\f290\f290";
}

.fa-shopping-bag {
  --fa: "\f290";
  --fa--fa: "\f290\f290";
}

.fa-arrow-down-z-a {
  --fa: "\f881";
  --fa--fa: "\f881\f881";
}

.fa-sort-alpha-desc {
  --fa: "\f881";
  --fa--fa: "\f881\f881";
}

.fa-sort-alpha-down-alt {
  --fa: "\f881";
  --fa--fa: "\f881\f881";
}

.fa-mitten {
  --fa: "\f7b5";
  --fa--fa: "\f7b5\f7b5";
}

.fa-reply-clock {
  --fa: "\e239";
  --fa--fa: "\e239\e239";
}

.fa-reply-time {
  --fa: "\e239";
  --fa--fa: "\e239\e239";
}

.fa-person-rays {
  --fa: "\e54d";
  --fa--fa: "\e54d\e54d";
}

.fa-right {
  --fa: "\f356";
  --fa--fa: "\f356\f356";
}

.fa-arrow-alt-right {
  --fa: "\f356";
  --fa--fa: "\f356\f356";
}

.fa-circle-f {
  --fa: "\e10e";
  --fa--fa: "\e10e\e10e";
}

.fa-users {
  --fa: "\f0c0";
  --fa--fa: "\f0c0\f0c0";
}

.fa-face-pleading {
  --fa: "\e386";
  --fa--fa: "\e386\e386";
}

.fa-eye-slash {
  --fa: "\f070";
  --fa--fa: "\f070\f070";
}

.fa-flask-vial {
  --fa: "\e4f3";
  --fa--fa: "\e4f3\e4f3";
}

.fa-police-box {
  --fa: "\e021";
  --fa--fa: "\e021\e021";
}

.fa-cucumber {
  --fa: "\e401";
  --fa--fa: "\e401\e401";
}

.fa-head-side-brain {
  --fa: "\f808";
  --fa--fa: "\f808\f808";
}

.fa-hand {
  --fa: "\f256";
  --fa--fa: "\f256\f256";
}

.fa-hand-paper {
  --fa: "\f256";
  --fa--fa: "\f256\f256";
}

.fa-person-biking-mountain {
  --fa: "\f84b";
  --fa--fa: "\f84b\f84b";
}

.fa-biking-mountain {
  --fa: "\f84b";
  --fa--fa: "\f84b\f84b";
}

.fa-utensils-slash {
  --fa: "\e464";
  --fa--fa: "\e464\e464";
}

.fa-print-magnifying-glass {
  --fa: "\f81a";
  --fa--fa: "\f81a\f81a";
}

.fa-print-search {
  --fa: "\f81a";
  --fa--fa: "\f81a\f81a";
}

.fa-turn-right {
  --fa: "\e639";
  --fa--fa: "\e639\e639";
}

.fa-folder-bookmark {
  --fa: "\e186";
  --fa--fa: "\e186\e186";
}

.fa-arrow-turn-left-down {
  --fa: "\e633";
  --fa--fa: "\e633\e633";
}

.fa-om {
  --fa: "\f679";
  --fa--fa: "\f679\f679";
}

.fa-pi {
  --fa: "\f67e";
  --fa--fa: "\f67e\f67e";
}

.fa-flask-round-potion {
  --fa: "\f6e1";
  --fa--fa: "\f6e1\f6e1";
}

.fa-flask-potion {
  --fa: "\f6e1";
  --fa--fa: "\f6e1\f6e1";
}

.fa-face-shush {
  --fa: "\e38c";
  --fa--fa: "\e38c\e38c";
}

.fa-worm {
  --fa: "\e599";
  --fa--fa: "\e599\e599";
}

.fa-house-circle-xmark {
  --fa: "\e50b";
  --fa--fa: "\e50b\e50b";
}

.fa-plug {
  --fa: "\f1e6";
  --fa--fa: "\f1e6\f1e6";
}

.fa-calendar-circle-exclamation {
  --fa: "\e46e";
  --fa--fa: "\e46e\e46e";
}

.fa-square-i {
  --fa: "\e272";
  --fa--fa: "\e272\e272";
}

.fa-chevron-up {
  --fa: "\f077";
  --fa--fa: "\f077\f077";
}

.fa-face-saluting {
  --fa: "\e484";
  --fa--fa: "\e484\e484";
}

.fa-gauge-simple-low {
  --fa: "\f62c";
  --fa--fa: "\f62c\f62c";
}

.fa-tachometer-slow {
  --fa: "\f62c";
  --fa--fa: "\f62c\f62c";
}

.fa-face-persevering {
  --fa: "\e385";
  --fa--fa: "\e385\e385";
}

.fa-circle-camera {
  --fa: "\e103";
  --fa--fa: "\e103\e103";
}

.fa-camera-circle {
  --fa: "\e103";
  --fa--fa: "\e103\e103";
}

.fa-hand-spock {
  --fa: "\f259";
  --fa--fa: "\f259\f259";
}

.fa-spider-web {
  --fa: "\f719";
  --fa--fa: "\f719\f719";
}

.fa-circle-microphone {
  --fa: "\e116";
  --fa--fa: "\e116\e116";
}

.fa-microphone-circle {
  --fa: "\e116";
  --fa--fa: "\e116\e116";
}

.fa-book-arrow-up {
  --fa: "\e0ba";
  --fa--fa: "\e0ba\e0ba";
}

.fa-popsicle {
  --fa: "\e43e";
  --fa--fa: "\e43e\e43e";
}

.fa-command {
  --fa: "\e142";
  --fa--fa: "\e142\e142";
}

.fa-blinds {
  --fa: "\f8fb";
  --fa--fa: "\f8fb\f8fb";
}

.fa-stopwatch {
  --fa: "\f2f2";
  --fa--fa: "\f2f2\f2f2";
}

.fa-saxophone {
  --fa: "\f8dc";
  --fa--fa: "\f8dc\f8dc";
}

.fa-square-2 {
  --fa: "\e257";
  --fa--fa: "\e257\e257";
}

.fa-field-hockey-stick-ball {
  --fa: "\f44c";
  --fa--fa: "\f44c\f44c";
}

.fa-field-hockey {
  --fa: "\f44c";
  --fa--fa: "\f44c\f44c";
}

.fa-arrow-up-square-triangle {
  --fa: "\f88b";
  --fa--fa: "\f88b\f88b";
}

.fa-sort-shapes-up-alt {
  --fa: "\f88b";
  --fa--fa: "\f88b\f88b";
}

.fa-face-scream {
  --fa: "\e38b";
  --fa--fa: "\e38b\e38b";
}

.fa-square-m {
  --fa: "\e276";
  --fa--fa: "\e276\e276";
}

.fa-camera-web {
  --fa: "\f832";
  --fa--fa: "\f832\f832";
}

.fa-webcam {
  --fa: "\f832";
  --fa--fa: "\f832\f832";
}

.fa-comment-arrow-down {
  --fa: "\e143";
  --fa--fa: "\e143\e143";
}

.fa-lightbulb-cfl {
  --fa: "\e5a6";
  --fa--fa: "\e5a6\e5a6";
}

.fa-window-frame-open {
  --fa: "\e050";
  --fa--fa: "\e050\e050";
}

.fa-face-kiss {
  --fa: "\f596";
  --fa--fa: "\f596\f596";
}

.fa-kiss {
  --fa: "\f596";
  --fa--fa: "\f596\f596";
}

.fa-bridge-circle-xmark {
  --fa: "\e4cb";
  --fa--fa: "\e4cb\e4cb";
}

.fa-period {
  --fa: "\.";
  --fa--fa: "\.\.";
}

.fa-face-grin-tongue {
  --fa: "\f589";
  --fa--fa: "\f589\f589";
}

.fa-grin-tongue {
  --fa: "\f589";
  --fa--fa: "\f589\f589";
}

.fa-up-to-dotted-line {
  --fa: "\e457";
  --fa--fa: "\e457\e457";
}

.fa-thought-bubble {
  --fa: "\e32e";
  --fa--fa: "\e32e\e32e";
}

.fa-skeleton-ribs {
  --fa: "\e5cb";
  --fa--fa: "\e5cb\e5cb";
}

.fa-raygun {
  --fa: "\e025";
  --fa--fa: "\e025\e025";
}

.fa-flute {
  --fa: "\f8b9";
  --fa--fa: "\f8b9\f8b9";
}

.fa-acorn {
  --fa: "\f6ae";
  --fa--fa: "\f6ae\f6ae";
}

.fa-video-arrow-up-right {
  --fa: "\e2c9";
  --fa--fa: "\e2c9\e2c9";
}

.fa-grate-droplet {
  --fa: "\e194";
  --fa--fa: "\e194\e194";
}

.fa-seal-exclamation {
  --fa: "\e242";
  --fa--fa: "\e242\e242";
}

.fa-chess-bishop {
  --fa: "\f43a";
  --fa--fa: "\f43a\f43a";
}

.fa-message-sms {
  --fa: "\e1e5";
  --fa--fa: "\e1e5\e1e5";
}

.fa-coffee-beans {
  --fa: "\e13f";
  --fa--fa: "\e13f\e13f";
}

.fa-hat-witch {
  --fa: "\f6e7";
  --fa--fa: "\f6e7\f6e7";
}

.fa-face-grin-wink {
  --fa: "\f58c";
  --fa--fa: "\f58c\f58c";
}

.fa-grin-wink {
  --fa: "\f58c";
  --fa--fa: "\f58c\f58c";
}

.fa-clock-three-thirty {
  --fa: "\e357";
  --fa--fa: "\e357\e357";
}

.fa-ear-deaf {
  --fa: "\f2a4";
  --fa--fa: "\f2a4\f2a4";
}

.fa-deaf {
  --fa: "\f2a4";
  --fa--fa: "\f2a4\f2a4";
}

.fa-deafness {
  --fa: "\f2a4";
  --fa--fa: "\f2a4\f2a4";
}

.fa-hard-of-hearing {
  --fa: "\f2a4";
  --fa--fa: "\f2a4\f2a4";
}

.fa-alarm-clock {
  --fa: "\f34e";
  --fa--fa: "\f34e\f34e";
}

.fa-eclipse {
  --fa: "\f749";
  --fa--fa: "\f749\f749";
}

.fa-face-relieved {
  --fa: "\e389";
  --fa--fa: "\e389\e389";
}

.fa-road-circle-check {
  --fa: "\e564";
  --fa--fa: "\e564\e564";
}

.fa-dice-five {
  --fa: "\f523";
  --fa--fa: "\f523\f523";
}

.fa-octagon-minus {
  --fa: "\f308";
  --fa--fa: "\f308\f308";
}

.fa-minus-octagon {
  --fa: "\f308";
  --fa--fa: "\f308\f308";
}

.fa-square-rss {
  --fa: "\f143";
  --fa--fa: "\f143\f143";
}

.fa-rss-square {
  --fa: "\f143";
  --fa--fa: "\f143\f143";
}

.fa-face-zany {
  --fa: "\e3a4";
  --fa--fa: "\e3a4\e3a4";
}

.fa-tricycle {
  --fa: "\e5c3";
  --fa--fa: "\e5c3\e5c3";
}

.fa-land-mine-on {
  --fa: "\e51b";
  --fa--fa: "\e51b\e51b";
}

.fa-square-arrow-up-left {
  --fa: "\e263";
  --fa--fa: "\e263\e263";
}

.fa-i-cursor {
  --fa: "\f246";
  --fa--fa: "\f246\f246";
}

.fa-chart-mixed-up-circle-dollar {
  --fa: "\e5d9";
  --fa--fa: "\e5d9\e5d9";
}

.fa-salt-shaker {
  --fa: "\e446";
  --fa--fa: "\e446\e446";
}

.fa-stamp {
  --fa: "\f5bf";
  --fa--fa: "\f5bf\f5bf";
}

.fa-file-plus {
  --fa: "\f319";
  --fa--fa: "\f319\f319";
}

.fa-draw-square {
  --fa: "\f5ef";
  --fa--fa: "\f5ef\f5ef";
}

.fa-toilet-paper-under-slash {
  --fa: "\e2a1";
  --fa--fa: "\e2a1\e2a1";
}

.fa-toilet-paper-reverse-slash {
  --fa: "\e2a1";
  --fa--fa: "\e2a1\e2a1";
}

.fa-stairs {
  --fa: "\e289";
  --fa--fa: "\e289\e289";
}

.fa-drone-front {
  --fa: "\f860";
  --fa--fa: "\f860\f860";
}

.fa-drone-alt {
  --fa: "\f860";
  --fa--fa: "\f860\f860";
}

.fa-glass-empty {
  --fa: "\e191";
  --fa--fa: "\e191\e191";
}

.fa-dial-high {
  --fa: "\e15c";
  --fa--fa: "\e15c\e15c";
}

.fa-user-helmet-safety {
  --fa: "\f82c";
  --fa--fa: "\f82c\f82c";
}

.fa-user-construction {
  --fa: "\f82c";
  --fa--fa: "\f82c\f82c";
}

.fa-user-hard-hat {
  --fa: "\f82c";
  --fa--fa: "\f82c\f82c";
}

.fa-i {
  --fa: "I";
  --fa--fa: "II";
}

.fa-hryvnia-sign {
  --fa: "\f6f2";
  --fa--fa: "\f6f2\f6f2";
}

.fa-hryvnia {
  --fa: "\f6f2";
  --fa--fa: "\f6f2\f6f2";
}

.fa-arrow-down-left-and-arrow-up-right-to-center {
  --fa: "\e092";
  --fa--fa: "\e092\e092";
}

.fa-pills {
  --fa: "\f484";
  --fa--fa: "\f484\f484";
}

.fa-face-grin-wide {
  --fa: "\f581";
  --fa--fa: "\f581\f581";
}

.fa-grin-alt {
  --fa: "\f581";
  --fa--fa: "\f581\f581";
}

.fa-tooth {
  --fa: "\f5c9";
  --fa--fa: "\f5c9\f5c9";
}

.fa-basketball-hoop {
  --fa: "\f435";
  --fa--fa: "\f435\f435";
}

.fa-objects-align-bottom {
  --fa: "\e3bb";
  --fa--fa: "\e3bb\e3bb";
}

.fa-v {
  --fa: "V";
  --fa--fa: "VV";
}

.fa-sparkles {
  --fa: "\f890";
  --fa--fa: "\f890\f890";
}

.fa-squid {
  --fa: "\e450";
  --fa--fa: "\e450\e450";
}

.fa-leafy-green {
  --fa: "\e41d";
  --fa--fa: "\e41d\e41d";
}

.fa-circle-arrow-up-right {
  --fa: "\e0fc";
  --fa--fa: "\e0fc\e0fc";
}

.fa-calendars {
  --fa: "\e0d7";
  --fa--fa: "\e0d7\e0d7";
}

.fa-bangladeshi-taka-sign {
  --fa: "\e2e6";
  --fa--fa: "\e2e6\e2e6";
}

.fa-bicycle {
  --fa: "\f206";
  --fa--fa: "\f206\f206";
}

.fa-hammer-war {
  --fa: "\f6e4";
  --fa--fa: "\f6e4\f6e4";
}

.fa-circle-d {
  --fa: "\e104";
  --fa--fa: "\e104\e104";
}

.fa-spider-black-widow {
  --fa: "\f718";
  --fa--fa: "\f718\f718";
}

.fa-staff-snake {
  --fa: "\e579";
  --fa--fa: "\e579\e579";
}

.fa-rod-asclepius {
  --fa: "\e579";
  --fa--fa: "\e579\e579";
}

.fa-rod-snake {
  --fa: "\e579";
  --fa--fa: "\e579\e579";
}

.fa-staff-aesculapius {
  --fa: "\e579";
  --fa--fa: "\e579\e579";
}

.fa-pear {
  --fa: "\e20c";
  --fa--fa: "\e20c\e20c";
}

.fa-head-side-cough-slash {
  --fa: "\e062";
  --fa--fa: "\e062\e062";
}

.fa-file-mov {
  --fa: "\e647";
  --fa--fa: "\e647\e647";
}

.fa-triangle {
  --fa: "\f2ec";
  --fa--fa: "\f2ec\f2ec";
}

.fa-apartment {
  --fa: "\e468";
  --fa--fa: "\e468\e468";
}

.fa-truck-medical {
  --fa: "\f0f9";
  --fa--fa: "\f0f9\f0f9";
}

.fa-ambulance {
  --fa: "\f0f9";
  --fa--fa: "\f0f9\f0f9";
}

.fa-pepper {
  --fa: "\e432";
  --fa--fa: "\e432\e432";
}

.fa-piano {
  --fa: "\f8d4";
  --fa--fa: "\f8d4\f8d4";
}

.fa-gun-squirt {
  --fa: "\e19d";
  --fa--fa: "\e19d\e19d";
}

.fa-wheat-awn-circle-exclamation {
  --fa: "\e598";
  --fa--fa: "\e598\e598";
}

.fa-snowman {
  --fa: "\f7d0";
  --fa--fa: "\f7d0\f7d0";
}

.fa-user-alien {
  --fa: "\e04a";
  --fa--fa: "\e04a\e04a";
}

.fa-shield-check {
  --fa: "\f2f7";
  --fa--fa: "\f2f7\f2f7";
}

.fa-mortar-pestle {
  --fa: "\f5a7";
  --fa--fa: "\f5a7\f5a7";
}

.fa-road-barrier {
  --fa: "\e562";
  --fa--fa: "\e562\e562";
}

.fa-chart-candlestick {
  --fa: "\e0e2";
  --fa--fa: "\e0e2\e0e2";
}

.fa-briefcase-blank {
  --fa: "\e0c8";
  --fa--fa: "\e0c8\e0c8";
}

.fa-school {
  --fa: "\f549";
  --fa--fa: "\f549\f549";
}

.fa-igloo {
  --fa: "\f7ae";
  --fa--fa: "\f7ae\f7ae";
}

.fa-bracket-round {
  --fa: "\(";
  --fa--fa: "\(\(";
}

.fa-parenthesis {
  --fa: "\(";
  --fa--fa: "\(\(";
}

.fa-joint {
  --fa: "\f595";
  --fa--fa: "\f595\f595";
}

.fa-horse-saddle {
  --fa: "\f8c3";
  --fa--fa: "\f8c3\f8c3";
}

.fa-mug-marshmallows {
  --fa: "\f7b7";
  --fa--fa: "\f7b7\f7b7";
}

.fa-filters {
  --fa: "\e17e";
  --fa--fa: "\e17e\e17e";
}

.fa-bell-on {
  --fa: "\f8fa";
  --fa--fa: "\f8fa\f8fa";
}

.fa-angle-right {
  --fa: "\f105";
  --fa--fa: "\f105\f105";
}

.fa-dial-med {
  --fa: "\e15f";
  --fa--fa: "\e15f\e15f";
}

.fa-horse {
  --fa: "\f6f0";
  --fa--fa: "\f6f0\f6f0";
}

.fa-q {
  --fa: "Q";
  --fa--fa: "QQ";
}

.fa-monitor-waveform {
  --fa: "\f611";
  --fa--fa: "\f611\f611";
}

.fa-monitor-heart-rate {
  --fa: "\f611";
  --fa--fa: "\f611\f611";
}

.fa-link-simple {
  --fa: "\e1cd";
  --fa--fa: "\e1cd\e1cd";
}

.fa-whistle {
  --fa: "\f460";
  --fa--fa: "\f460\f460";
}

.fa-g {
  --fa: "G";
  --fa--fa: "GG";
}

.fa-wine-glass-crack {
  --fa: "\f4bb";
  --fa--fa: "\f4bb\f4bb";
}

.fa-fragile {
  --fa: "\f4bb";
  --fa--fa: "\f4bb\f4bb";
}

.fa-slot-machine {
  --fa: "\e3ce";
  --fa--fa: "\e3ce\e3ce";
}

.fa-notes-medical {
  --fa: "\f481";
  --fa--fa: "\f481\f481";
}

.fa-car-wash {
  --fa: "\f5e6";
  --fa--fa: "\f5e6\f5e6";
}

.fa-escalator {
  --fa: "\e171";
  --fa--fa: "\e171\e171";
}

.fa-comment-image {
  --fa: "\e148";
  --fa--fa: "\e148\e148";
}

.fa-temperature-half {
  --fa: "\f2c9";
  --fa--fa: "\f2c9\f2c9";
}

.fa-temperature-2 {
  --fa: "\f2c9";
  --fa--fa: "\f2c9\f2c9";
}

.fa-thermometer-2 {
  --fa: "\f2c9";
  --fa--fa: "\f2c9\f2c9";
}

.fa-thermometer-half {
  --fa: "\f2c9";
  --fa--fa: "\f2c9\f2c9";
}

.fa-dong-sign {
  --fa: "\e169";
  --fa--fa: "\e169\e169";
}

.fa-donut {
  --fa: "\e406";
  --fa--fa: "\e406\e406";
}

.fa-doughnut {
  --fa: "\e406";
  --fa--fa: "\e406\e406";
}

.fa-capsules {
  --fa: "\f46b";
  --fa--fa: "\f46b\f46b";
}

.fa-poo-storm {
  --fa: "\f75a";
  --fa--fa: "\f75a\f75a";
}

.fa-poo-bolt {
  --fa: "\f75a";
  --fa--fa: "\f75a\f75a";
}

.fa-tally-1 {
  --fa: "\e294";
  --fa--fa: "\e294\e294";
}

.fa-file-vector {
  --fa: "\e64c";
  --fa--fa: "\e64c\e64c";
}

.fa-face-frown-open {
  --fa: "\f57a";
  --fa--fa: "\f57a\f57a";
}

.fa-frown-open {
  --fa: "\f57a";
  --fa--fa: "\f57a\f57a";
}

.fa-square-dashed {
  --fa: "\e269";
  --fa--fa: "\e269\e269";
}

.fa-bag-shopping-plus {
  --fa: "\e651";
  --fa--fa: "\e651\e651";
}

.fa-square-j {
  --fa: "\e273";
  --fa--fa: "\e273\e273";
}

.fa-hand-point-up {
  --fa: "\f0a6";
  --fa--fa: "\f0a6\f0a6";
}

.fa-money-bill {
  --fa: "\f0d6";
  --fa--fa: "\f0d6\f0d6";
}

.fa-arrow-up-big-small {
  --fa: "\f88e";
  --fa--fa: "\f88e\f88e";
}

.fa-sort-size-up {
  --fa: "\f88e";
  --fa--fa: "\f88e\f88e";
}

.fa-barcode-read {
  --fa: "\f464";
  --fa--fa: "\f464\f464";
}

.fa-baguette {
  --fa: "\e3d8";
  --fa--fa: "\e3d8\e3d8";
}

.fa-bowl-soft-serve {
  --fa: "\e46b";
  --fa--fa: "\e46b\e46b";
}

.fa-face-holding-back-tears {
  --fa: "\e482";
  --fa--fa: "\e482\e482";
}

.fa-square-up {
  --fa: "\f353";
  --fa--fa: "\f353\f353";
}

.fa-arrow-alt-square-up {
  --fa: "\f353";
  --fa--fa: "\f353\f353";
}

.fa-train-subway-tunnel {
  --fa: "\e2a3";
  --fa--fa: "\e2a3\e2a3";
}

.fa-subway-tunnel {
  --fa: "\e2a3";
  --fa--fa: "\e2a3\e2a3";
}

.fa-square-exclamation {
  --fa: "\f321";
  --fa--fa: "\f321\f321";
}

.fa-exclamation-square {
  --fa: "\f321";
  --fa--fa: "\f321\f321";
}

.fa-semicolon {
  --fa: "\;";
  --fa--fa: "\;\;";
}

.fa-bookmark {
  --fa: "\f02e";
  --fa--fa: "\f02e\f02e";
}

.fa-fan-table {
  --fa: "\e004";
  --fa--fa: "\e004\e004";
}

.fa-align-justify {
  --fa: "\f039";
  --fa--fa: "\f039\f039";
}

.fa-battery-low {
  --fa: "\e0b1";
  --fa--fa: "\e0b1\e0b1";
}

.fa-battery-1 {
  --fa: "\e0b1";
  --fa--fa: "\e0b1\e0b1";
}

.fa-credit-card-front {
  --fa: "\f38a";
  --fa--fa: "\f38a\f38a";
}

.fa-brain-arrow-curved-right {
  --fa: "\f677";
  --fa--fa: "\f677\f677";
}

.fa-mind-share {
  --fa: "\f677";
  --fa--fa: "\f677\f677";
}

.fa-umbrella-beach {
  --fa: "\f5ca";
  --fa--fa: "\f5ca\f5ca";
}

.fa-helmet-un {
  --fa: "\e503";
  --fa--fa: "\e503\e503";
}

.fa-location-smile {
  --fa: "\f60d";
  --fa--fa: "\f60d\f60d";
}

.fa-map-marker-smile {
  --fa: "\f60d";
  --fa--fa: "\f60d\f60d";
}

.fa-arrow-left-to-line {
  --fa: "\f33e";
  --fa--fa: "\f33e\f33e";
}

.fa-arrow-to-left {
  --fa: "\f33e";
  --fa--fa: "\f33e\f33e";
}

.fa-bullseye {
  --fa: "\f140";
  --fa--fa: "\f140\f140";
}

.fa-sushi {
  --fa: "\e48a";
  --fa--fa: "\e48a\e48a";
}

.fa-nigiri {
  --fa: "\e48a";
  --fa--fa: "\e48a\e48a";
}

.fa-message-captions {
  --fa: "\e1de";
  --fa--fa: "\e1de\e1de";
}

.fa-comment-alt-captions {
  --fa: "\e1de";
  --fa--fa: "\e1de\e1de";
}

.fa-trash-list {
  --fa: "\e2b1";
  --fa--fa: "\e2b1\e2b1";
}

.fa-bacon {
  --fa: "\f7e5";
  --fa--fa: "\f7e5\f7e5";
}

.fa-option {
  --fa: "\e318";
  --fa--fa: "\e318\e318";
}

.fa-raccoon {
  --fa: "\e613";
  --fa--fa: "\e613\e613";
}

.fa-hand-point-down {
  --fa: "\f0a7";
  --fa--fa: "\f0a7\f0a7";
}

.fa-arrow-up-from-bracket {
  --fa: "\e09a";
  --fa--fa: "\e09a\e09a";
}

.fa-head-side-gear {
  --fa: "\e611";
  --fa--fa: "\e611\e611";
}

.fa-trash-plus {
  --fa: "\e2b2";
  --fa--fa: "\e2b2\e2b2";
}

.fa-file-cad {
  --fa: "\e672";
  --fa--fa: "\e672\e672";
}

.fa-objects-align-top {
  --fa: "\e3c0";
  --fa--fa: "\e3c0\e3c0";
}

.fa-folder {
  --fa: "\f07b";
  --fa--fa: "\f07b\f07b";
}

.fa-folder-blank {
  --fa: "\f07b";
  --fa--fa: "\f07b\f07b";
}

.fa-face-anxious-sweat {
  --fa: "\e36a";
  --fa--fa: "\e36a\e36a";
}

.fa-credit-card-blank {
  --fa: "\f389";
  --fa--fa: "\f389\f389";
}

.fa-file-waveform {
  --fa: "\f478";
  --fa--fa: "\f478\f478";
}

.fa-file-medical-alt {
  --fa: "\f478";
  --fa--fa: "\f478\f478";
}

.fa-microchip-ai {
  --fa: "\e1ec";
  --fa--fa: "\e1ec\e1ec";
}

.fa-mug {
  --fa: "\f874";
  --fa--fa: "\f874\f874";
}

.fa-plane-up-slash {
  --fa: "\e22e";
  --fa--fa: "\e22e\e22e";
}

.fa-radiation {
  --fa: "\f7b9";
  --fa--fa: "\f7b9\f7b9";
}

.fa-pen-circle {
  --fa: "\e20e";
  --fa--fa: "\e20e\e20e";
}

.fa-bag-seedling {
  --fa: "\e5f2";
  --fa--fa: "\e5f2\e5f2";
}

.fa-chart-simple {
  --fa: "\e473";
  --fa--fa: "\e473\e473";
}

.fa-crutches {
  --fa: "\f7f8";
  --fa--fa: "\f7f8\f7f8";
}

.fa-circle-parking {
  --fa: "\f615";
  --fa--fa: "\f615\f615";
}

.fa-parking-circle {
  --fa: "\f615";
  --fa--fa: "\f615\f615";
}

.fa-mars-stroke {
  --fa: "\f229";
  --fa--fa: "\f229\f229";
}

.fa-leaf-oak {
  --fa: "\f6f7";
  --fa--fa: "\f6f7\f6f7";
}

.fa-square-bolt {
  --fa: "\e265";
  --fa--fa: "\e265\e265";
}

.fa-vial {
  --fa: "\f492";
  --fa--fa: "\f492\f492";
}

.fa-gauge {
  --fa: "\f624";
  --fa--fa: "\f624\f624";
}

.fa-dashboard {
  --fa: "\f624";
  --fa--fa: "\f624\f624";
}

.fa-gauge-med {
  --fa: "\f624";
  --fa--fa: "\f624\f624";
}

.fa-tachometer-alt-average {
  --fa: "\f624";
  --fa--fa: "\f624\f624";
}

.fa-wand-magic-sparkles {
  --fa: "\e2ca";
  --fa--fa: "\e2ca\e2ca";
}

.fa-magic-wand-sparkles {
  --fa: "\e2ca";
  --fa--fa: "\e2ca\e2ca";
}

.fa-lambda {
  --fa: "\f66e";
  --fa--fa: "\f66e\f66e";
}

.fa-e {
  --fa: "E";
  --fa--fa: "EE";
}

.fa-pizza {
  --fa: "\f817";
  --fa--fa: "\f817\f817";
}

.fa-bowl-chopsticks-noodles {
  --fa: "\e2ea";
  --fa--fa: "\e2ea\e2ea";
}

.fa-h3 {
  --fa: "\f315";
  --fa--fa: "\f315\f315";
}

.fa-pen-clip {
  --fa: "\f305";
  --fa--fa: "\f305\f305";
}

.fa-pen-alt {
  --fa: "\f305";
  --fa--fa: "\f305\f305";
}

.fa-bridge-circle-exclamation {
  --fa: "\e4ca";
  --fa--fa: "\e4ca\e4ca";
}

.fa-badge-percent {
  --fa: "\f646";
  --fa--fa: "\f646\f646";
}

.fa-rotate-reverse {
  --fa: "\e631";
  --fa--fa: "\e631\e631";
}

.fa-user {
  --fa: "\f007";
  --fa--fa: "\f007\f007";
}

.fa-sensor {
  --fa: "\e028";
  --fa--fa: "\e028\e028";
}

.fa-comma {
  --fa: "\,";
  --fa--fa: "\,\,";
}

.fa-school-circle-check {
  --fa: "\e56b";
  --fa--fa: "\e56b\e56b";
}

.fa-toilet-paper-under {
  --fa: "\e2a0";
  --fa--fa: "\e2a0\e2a0";
}

.fa-toilet-paper-reverse {
  --fa: "\e2a0";
  --fa--fa: "\e2a0\e2a0";
}

.fa-light-emergency {
  --fa: "\e41f";
  --fa--fa: "\e41f\e41f";
}

.fa-arrow-down-to-arc {
  --fa: "\e4ae";
  --fa--fa: "\e4ae\e4ae";
}

.fa-dumpster {
  --fa: "\f793";
  --fa--fa: "\f793\f793";
}

.fa-van-shuttle {
  --fa: "\f5b6";
  --fa--fa: "\f5b6\f5b6";
}

.fa-shuttle-van {
  --fa: "\f5b6";
  --fa--fa: "\f5b6\f5b6";
}

.fa-building-user {
  --fa: "\e4da";
  --fa--fa: "\e4da\e4da";
}

.fa-light-switch {
  --fa: "\e017";
  --fa--fa: "\e017\e017";
}

.fa-square-caret-left {
  --fa: "\f191";
  --fa--fa: "\f191\f191";
}

.fa-caret-square-left {
  --fa: "\f191";
  --fa--fa: "\f191\f191";
}

.fa-highlighter {
  --fa: "\f591";
  --fa--fa: "\f591\f591";
}

.fa-wave-pulse {
  --fa: "\f5f8";
  --fa--fa: "\f5f8\f5f8";
}

.fa-heart-rate {
  --fa: "\f5f8";
  --fa--fa: "\f5f8\f5f8";
}

.fa-key {
  --fa: "\f084";
  --fa--fa: "\f084\f084";
}

.fa-arrow-left-to-bracket {
  --fa: "\e669";
  --fa--fa: "\e669\e669";
}

.fa-hat-santa {
  --fa: "\f7a7";
  --fa--fa: "\f7a7\f7a7";
}

.fa-tamale {
  --fa: "\e451";
  --fa--fa: "\e451\e451";
}

.fa-box-check {
  --fa: "\f467";
  --fa--fa: "\f467\f467";
}

.fa-bullhorn {
  --fa: "\f0a1";
  --fa--fa: "\f0a1\f0a1";
}

.fa-steak {
  --fa: "\f824";
  --fa--fa: "\f824\f824";
}

.fa-location-crosshairs-slash {
  --fa: "\f603";
  --fa--fa: "\f603\f603";
}

.fa-location-slash {
  --fa: "\f603";
  --fa--fa: "\f603\f603";
}

.fa-person-dolly {
  --fa: "\f4d0";
  --fa--fa: "\f4d0\f4d0";
}

.fa-globe {
  --fa: "\f0ac";
  --fa--fa: "\f0ac\f0ac";
}

.fa-synagogue {
  --fa: "\f69b";
  --fa--fa: "\f69b\f69b";
}

.fa-file-chart-column {
  --fa: "\f659";
  --fa--fa: "\f659\f659";
}

.fa-file-chart-line {
  --fa: "\f659";
  --fa--fa: "\f659\f659";
}

.fa-person-half-dress {
  --fa: "\e548";
  --fa--fa: "\e548\e548";
}

.fa-folder-image {
  --fa: "\e18a";
  --fa--fa: "\e18a\e18a";
}

.fa-calendar-pen {
  --fa: "\f333";
  --fa--fa: "\f333\f333";
}

.fa-calendar-edit {
  --fa: "\f333";
  --fa--fa: "\f333\f333";
}

.fa-road-bridge {
  --fa: "\e563";
  --fa--fa: "\e563\e563";
}

.fa-face-smile-tear {
  --fa: "\e393";
  --fa--fa: "\e393\e393";
}

.fa-message-plus {
  --fa: "\f4a8";
  --fa--fa: "\f4a8\f4a8";
}

.fa-comment-alt-plus {
  --fa: "\f4a8";
  --fa--fa: "\f4a8\f4a8";
}

.fa-location-arrow {
  --fa: "\f124";
  --fa--fa: "\f124\f124";
}

.fa-c {
  --fa: "C";
  --fa--fa: "CC";
}

.fa-tablet-button {
  --fa: "\f10a";
  --fa--fa: "\f10a\f10a";
}

.fa-person-dress-fairy {
  --fa: "\e607";
  --fa--fa: "\e607\e607";
}

.fa-rectangle-history-circle-user {
  --fa: "\e4a4";
  --fa--fa: "\e4a4\e4a4";
}

.fa-building-lock {
  --fa: "\e4d6";
  --fa--fa: "\e4d6\e4d6";
}

.fa-chart-line-up {
  --fa: "\e0e5";
  --fa--fa: "\e0e5\e0e5";
}

.fa-mailbox {
  --fa: "\f813";
  --fa--fa: "\f813\f813";
}

.fa-sign-posts {
  --fa: "\e625";
  --fa--fa: "\e625\e625";
}

.fa-truck-bolt {
  --fa: "\e3d0";
  --fa--fa: "\e3d0\e3d0";
}

.fa-pizza-slice {
  --fa: "\f818";
  --fa--fa: "\f818\f818";
}

.fa-money-bill-wave {
  --fa: "\f53a";
  --fa--fa: "\f53a\f53a";
}

.fa-chart-area {
  --fa: "\f1fe";
  --fa--fa: "\f1fe\f1fe";
}

.fa-area-chart {
  --fa: "\f1fe";
  --fa--fa: "\f1fe\f1fe";
}

.fa-house-flag {
  --fa: "\e50d";
  --fa--fa: "\e50d\e50d";
}

.fa-circle-three-quarters-stroke {
  --fa: "\e5d4";
  --fa--fa: "\e5d4\e5d4";
}

.fa-person-circle-minus {
  --fa: "\e540";
  --fa--fa: "\e540\e540";
}

.fa-scalpel {
  --fa: "\f61d";
  --fa--fa: "\f61d\f61d";
}

.fa-ban {
  --fa: "\f05e";
  --fa--fa: "\f05e\f05e";
}

.fa-cancel {
  --fa: "\f05e";
  --fa--fa: "\f05e\f05e";
}

.fa-bell-exclamation {
  --fa: "\f848";
  --fa--fa: "\f848\f848";
}

.fa-circle-bookmark {
  --fa: "\e100";
  --fa--fa: "\e100\e100";
}

.fa-bookmark-circle {
  --fa: "\e100";
  --fa--fa: "\e100\e100";
}

.fa-egg-fried {
  --fa: "\f7fc";
  --fa--fa: "\f7fc\f7fc";
}

.fa-face-weary {
  --fa: "\e3a1";
  --fa--fa: "\e3a1\e3a1";
}

.fa-uniform-martial-arts {
  --fa: "\e3d1";
  --fa--fa: "\e3d1\e3d1";
}

.fa-camera-rotate {
  --fa: "\e0d8";
  --fa--fa: "\e0d8\e0d8";
}

.fa-sun-dust {
  --fa: "\f764";
  --fa--fa: "\f764\f764";
}

.fa-comment-text {
  --fa: "\e14d";
  --fa--fa: "\e14d\e14d";
}

.fa-spray-can-sparkles {
  --fa: "\f5d0";
  --fa--fa: "\f5d0\f5d0";
}

.fa-air-freshener {
  --fa: "\f5d0";
  --fa--fa: "\f5d0\f5d0";
}

.fa-signal-bars {
  --fa: "\f690";
  --fa--fa: "\f690\f690";
}

.fa-signal-alt {
  --fa: "\f690";
  --fa--fa: "\f690\f690";
}

.fa-signal-alt-4 {
  --fa: "\f690";
  --fa--fa: "\f690\f690";
}

.fa-signal-bars-strong {
  --fa: "\f690";
  --fa--fa: "\f690\f690";
}

.fa-diamond-exclamation {
  --fa: "\e405";
  --fa--fa: "\e405\e405";
}

.fa-star {
  --fa: "\f005";
  --fa--fa: "\f005\f005";
}

.fa-dial-min {
  --fa: "\e161";
  --fa--fa: "\e161\e161";
}

.fa-repeat {
  --fa: "\f363";
  --fa--fa: "\f363\f363";
}

.fa-cross {
  --fa: "\f654";
  --fa--fa: "\f654\f654";
}

.fa-page-caret-down {
  --fa: "\e429";
  --fa--fa: "\e429\e429";
}

.fa-file-caret-down {
  --fa: "\e429";
  --fa--fa: "\e429\e429";
}

.fa-box {
  --fa: "\f466";
  --fa--fa: "\f466\f466";
}

.fa-venus-mars {
  --fa: "\f228";
  --fa--fa: "\f228\f228";
}

.fa-clock-seven-thirty {
  --fa: "\e351";
  --fa--fa: "\e351\e351";
}

.fa-arrow-pointer {
  --fa: "\f245";
  --fa--fa: "\f245\f245";
}

.fa-mouse-pointer {
  --fa: "\f245";
  --fa--fa: "\f245\f245";
}

.fa-clock-four-thirty {
  --fa: "\e34b";
  --fa--fa: "\e34b\e34b";
}

.fa-signal-bars-good {
  --fa: "\f693";
  --fa--fa: "\f693\f693";
}

.fa-signal-alt-3 {
  --fa: "\f693";
  --fa--fa: "\f693\f693";
}

.fa-cactus {
  --fa: "\f8a7";
  --fa--fa: "\f8a7\f8a7";
}

.fa-lightbulb-gear {
  --fa: "\e5fd";
  --fa--fa: "\e5fd\e5fd";
}

.fa-maximize {
  --fa: "\f31e";
  --fa--fa: "\f31e\f31e";
}

.fa-expand-arrows-alt {
  --fa: "\f31e";
  --fa--fa: "\f31e\f31e";
}

.fa-charging-station {
  --fa: "\f5e7";
  --fa--fa: "\f5e7\f5e7";
}

.fa-shapes {
  --fa: "\f61f";
  --fa--fa: "\f61f\f61f";
}

.fa-triangle-circle-square {
  --fa: "\f61f";
  --fa--fa: "\f61f\f61f";
}

.fa-plane-tail {
  --fa: "\e22c";
  --fa--fa: "\e22c\e22c";
}

.fa-gauge-simple-max {
  --fa: "\f62b";
  --fa--fa: "\f62b\f62b";
}

.fa-tachometer-fastest {
  --fa: "\f62b";
  --fa--fa: "\f62b\f62b";
}

.fa-circle-u {
  --fa: "\e127";
  --fa--fa: "\e127\e127";
}

.fa-shield-slash {
  --fa: "\e24b";
  --fa--fa: "\e24b\e24b";
}

.fa-square-phone-hangup {
  --fa: "\e27a";
  --fa--fa: "\e27a\e27a";
}

.fa-phone-square-down {
  --fa: "\e27a";
  --fa--fa: "\e27a\e27a";
}

.fa-arrow-up-left {
  --fa: "\e09d";
  --fa--fa: "\e09d\e09d";
}

.fa-transporter-1 {
  --fa: "\e043";
  --fa--fa: "\e043\e043";
}

.fa-peanuts {
  --fa: "\e431";
  --fa--fa: "\e431\e431";
}

.fa-shuffle {
  --fa: "\f074";
  --fa--fa: "\f074\f074";
}

.fa-random {
  --fa: "\f074";
  --fa--fa: "\f074\f074";
}

.fa-person-running {
  --fa: "\f70c";
  --fa--fa: "\f70c\f70c";
}

.fa-running {
  --fa: "\f70c";
  --fa--fa: "\f70c\f70c";
}

.fa-mobile-retro {
  --fa: "\e527";
  --fa--fa: "\e527\e527";
}

.fa-grip-lines-vertical {
  --fa: "\f7a5";
  --fa--fa: "\f7a5\f7a5";
}

.fa-bin-bottles-recycle {
  --fa: "\e5f6";
  --fa--fa: "\e5f6\e5f6";
}

.fa-arrow-up-from-square {
  --fa: "\e09c";
  --fa--fa: "\e09c\e09c";
}

.fa-file-dashed-line {
  --fa: "\f877";
  --fa--fa: "\f877\f877";
}

.fa-page-break {
  --fa: "\f877";
  --fa--fa: "\f877\f877";
}

.fa-bracket-curly-right {
  --fa: "\}";
  --fa--fa: "\}\}";
}

.fa-spider {
  --fa: "\f717";
  --fa--fa: "\f717\f717";
}

.fa-clock-three {
  --fa: "\e356";
  --fa--fa: "\e356\e356";
}

.fa-hands-bound {
  --fa: "\e4f9";
  --fa--fa: "\e4f9\e4f9";
}

.fa-scalpel-line-dashed {
  --fa: "\f61e";
  --fa--fa: "\f61e\f61e";
}

.fa-scalpel-path {
  --fa: "\f61e";
  --fa--fa: "\f61e\f61e";
}

.fa-file-invoice-dollar {
  --fa: "\f571";
  --fa--fa: "\f571\f571";
}

.fa-pipe-smoking {
  --fa: "\e3c4";
  --fa--fa: "\e3c4\e3c4";
}

.fa-face-astonished {
  --fa: "\e36b";
  --fa--fa: "\e36b\e36b";
}

.fa-window {
  --fa: "\f40e";
  --fa--fa: "\f40e\f40e";
}

.fa-plane-circle-exclamation {
  --fa: "\e556";
  --fa--fa: "\e556\e556";
}

.fa-ear {
  --fa: "\f5f0";
  --fa--fa: "\f5f0\f5f0";
}

.fa-file-lock {
  --fa: "\e3a6";
  --fa--fa: "\e3a6\e3a6";
}

.fa-diagram-venn {
  --fa: "\e15a";
  --fa--fa: "\e15a\e15a";
}

.fa-arrow-down-from-bracket {
  --fa: "\e667";
  --fa--fa: "\e667\e667";
}

.fa-x-ray {
  --fa: "\f497";
  --fa--fa: "\f497\f497";
}

.fa-goal-net {
  --fa: "\e3ab";
  --fa--fa: "\e3ab\e3ab";
}

.fa-coffin-cross {
  --fa: "\e051";
  --fa--fa: "\e051\e051";
}

.fa-octopus {
  --fa: "\e688";
  --fa--fa: "\e688\e688";
}

.fa-spell-check {
  --fa: "\f891";
  --fa--fa: "\f891\f891";
}

.fa-location-xmark {
  --fa: "\f60e";
  --fa--fa: "\f60e\f60e";
}

.fa-map-marker-times {
  --fa: "\f60e";
  --fa--fa: "\f60e\f60e";
}

.fa-map-marker-xmark {
  --fa: "\f60e";
  --fa--fa: "\f60e\f60e";
}

.fa-circle-quarter-stroke {
  --fa: "\e5d3";
  --fa--fa: "\e5d3\e5d3";
}

.fa-lasso {
  --fa: "\f8c8";
  --fa--fa: "\f8c8\f8c8";
}

.fa-slash {
  --fa: "\f715";
  --fa--fa: "\f715\f715";
}

.fa-person-to-portal {
  --fa: "\e022";
  --fa--fa: "\e022\e022";
}

.fa-portal-enter {
  --fa: "\e022";
  --fa--fa: "\e022\e022";
}

.fa-calendar-star {
  --fa: "\f736";
  --fa--fa: "\f736\f736";
}

.fa-computer-mouse {
  --fa: "\f8cc";
  --fa--fa: "\f8cc\f8cc";
}

.fa-mouse {
  --fa: "\f8cc";
  --fa--fa: "\f8cc\f8cc";
}

.fa-arrow-right-to-bracket {
  --fa: "\f090";
  --fa--fa: "\f090\f090";
}

.fa-sign-in {
  --fa: "\f090";
  --fa--fa: "\f090\f090";
}

.fa-pegasus {
  --fa: "\f703";
  --fa--fa: "\f703\f703";
}

.fa-files-medical {
  --fa: "\f7fd";
  --fa--fa: "\f7fd\f7fd";
}

.fa-cannon {
  --fa: "\e642";
  --fa--fa: "\e642\e642";
}

.fa-nfc-lock {
  --fa: "\e1f8";
  --fa--fa: "\e1f8\e1f8";
}

.fa-person-ski-lift {
  --fa: "\f7c8";
  --fa--fa: "\f7c8\f7c8";
}

.fa-ski-lift {
  --fa: "\f7c8";
  --fa--fa: "\f7c8\f7c8";
}

.fa-square-6 {
  --fa: "\e25b";
  --fa--fa: "\e25b\e25b";
}

.fa-shop-slash {
  --fa: "\e070";
  --fa--fa: "\e070\e070";
}

.fa-store-alt-slash {
  --fa: "\e070";
  --fa--fa: "\e070\e070";
}

.fa-wind-turbine {
  --fa: "\f89b";
  --fa--fa: "\f89b\f89b";
}

.fa-sliders-simple {
  --fa: "\e253";
  --fa--fa: "\e253\e253";
}

.fa-grid-round {
  --fa: "\e5da";
  --fa--fa: "\e5da\e5da";
}

.fa-badge-sheriff {
  --fa: "\f8a2";
  --fa--fa: "\f8a2\f8a2";
}

.fa-server {
  --fa: "\f233";
  --fa--fa: "\f233\f233";
}

.fa-virus-covid-slash {
  --fa: "\e4a9";
  --fa--fa: "\e4a9\e4a9";
}

.fa-intersection {
  --fa: "\f668";
  --fa--fa: "\f668\f668";
}

.fa-shop-lock {
  --fa: "\e4a5";
  --fa--fa: "\e4a5\e4a5";
}

.fa-family {
  --fa: "\e300";
  --fa--fa: "\e300\e300";
}

.fa-hourglass-start {
  --fa: "\f251";
  --fa--fa: "\f251\f251";
}

.fa-hourglass-1 {
  --fa: "\f251";
  --fa--fa: "\f251\f251";
}

.fa-user-hair-buns {
  --fa: "\e3d3";
  --fa--fa: "\e3d3\e3d3";
}

.fa-blender-phone {
  --fa: "\f6b6";
  --fa--fa: "\f6b6\f6b6";
}

.fa-hourglass-clock {
  --fa: "\e41b";
  --fa--fa: "\e41b\e41b";
}

.fa-person-seat-reclined {
  --fa: "\e21f";
  --fa--fa: "\e21f\e21f";
}

.fa-paper-plane-top {
  --fa: "\e20a";
  --fa--fa: "\e20a\e20a";
}

.fa-paper-plane-alt {
  --fa: "\e20a";
  --fa--fa: "\e20a\e20a";
}

.fa-send {
  --fa: "\e20a";
  --fa--fa: "\e20a\e20a";
}

.fa-message-arrow-up {
  --fa: "\e1dc";
  --fa--fa: "\e1dc\e1dc";
}

.fa-comment-alt-arrow-up {
  --fa: "\e1dc";
  --fa--fa: "\e1dc\e1dc";
}

.fa-lightbulb-exclamation {
  --fa: "\f671";
  --fa--fa: "\f671\f671";
}

.fa-layer-minus {
  --fa: "\f5fe";
  --fa--fa: "\f5fe\f5fe";
}

.fa-layer-group-minus {
  --fa: "\f5fe";
  --fa--fa: "\f5fe\f5fe";
}

.fa-chart-pie-simple-circle-currency {
  --fa: "\e604";
  --fa--fa: "\e604\e604";
}

.fa-circle-e {
  --fa: "\e109";
  --fa--fa: "\e109\e109";
}

.fa-building-wheat {
  --fa: "\e4db";
  --fa--fa: "\e4db\e4db";
}

.fa-gauge-max {
  --fa: "\f626";
  --fa--fa: "\f626\f626";
}

.fa-tachometer-alt-fastest {
  --fa: "\f626";
  --fa--fa: "\f626\f626";
}

.fa-person-breastfeeding {
  --fa: "\e53a";
  --fa--fa: "\e53a\e53a";
}

.fa-apostrophe {
  --fa: "\'";
  --fa--fa: "\'\'";
}

.fa-file-png {
  --fa: "\e666";
  --fa--fa: "\e666\e666";
}

.fa-fire-hydrant {
  --fa: "\e17f";
  --fa--fa: "\e17f\e17f";
}

.fa-right-to-bracket {
  --fa: "\f2f6";
  --fa--fa: "\f2f6\f2f6";
}

.fa-sign-in-alt {
  --fa: "\f2f6";
  --fa--fa: "\f2f6\f2f6";
}

.fa-video-plus {
  --fa: "\f4e1";
  --fa--fa: "\f4e1\f4e1";
}

.fa-square-right {
  --fa: "\f352";
  --fa--fa: "\f352\f352";
}

.fa-arrow-alt-square-right {
  --fa: "\f352";
  --fa--fa: "\f352\f352";
}

.fa-comment-smile {
  --fa: "\f4b4";
  --fa--fa: "\f4b4\f4b4";
}

.fa-venus {
  --fa: "\f221";
  --fa--fa: "\f221\f221";
}

.fa-passport {
  --fa: "\f5ab";
  --fa--fa: "\f5ab\f5ab";
}

.fa-thumbtack-slash {
  --fa: "\e68f";
  --fa--fa: "\e68f\e68f";
}

.fa-thumb-tack-slash {
  --fa: "\e68f";
  --fa--fa: "\e68f\e68f";
}

.fa-inbox-in {
  --fa: "\f310";
  --fa--fa: "\f310\f310";
}

.fa-inbox-arrow-down {
  --fa: "\f310";
  --fa--fa: "\f310\f310";
}

.fa-heart-pulse {
  --fa: "\f21e";
  --fa--fa: "\f21e\f21e";
}

.fa-heartbeat {
  --fa: "\f21e";
  --fa--fa: "\f21e\f21e";
}

.fa-circle-8 {
  --fa: "\e0f5";
  --fa--fa: "\e0f5\e0f5";
}

.fa-clouds-moon {
  --fa: "\f745";
  --fa--fa: "\f745\f745";
}

.fa-clock-ten-thirty {
  --fa: "\e355";
  --fa--fa: "\e355\e355";
}

.fa-people-carry-box {
  --fa: "\f4ce";
  --fa--fa: "\f4ce\f4ce";
}

.fa-people-carry {
  --fa: "\f4ce";
  --fa--fa: "\f4ce\f4ce";
}

.fa-folder-user {
  --fa: "\e18e";
  --fa--fa: "\e18e\e18e";
}

.fa-trash-can-xmark {
  --fa: "\e2ae";
  --fa--fa: "\e2ae\e2ae";
}

.fa-temperature-high {
  --fa: "\f769";
  --fa--fa: "\f769\f769";
}

.fa-microchip {
  --fa: "\f2db";
  --fa--fa: "\f2db\f2db";
}

.fa-left-long-to-line {
  --fa: "\e41e";
  --fa--fa: "\e41e\e41e";
}

.fa-crown {
  --fa: "\f521";
  --fa--fa: "\f521\f521";
}

.fa-weight-hanging {
  --fa: "\f5cd";
  --fa--fa: "\f5cd\f5cd";
}

.fa-xmarks-lines {
  --fa: "\e59a";
  --fa--fa: "\e59a\e59a";
}

.fa-file-prescription {
  --fa: "\f572";
  --fa--fa: "\f572\f572";
}

.fa-table-cells-lock {
  --fa: "\e679";
  --fa--fa: "\e679\e679";
}

.fa-calendar-range {
  --fa: "\e0d6";
  --fa--fa: "\e0d6\e0d6";
}

.fa-flower-daffodil {
  --fa: "\f800";
  --fa--fa: "\f800\f800";
}

.fa-hand-back-point-up {
  --fa: "\e1a2";
  --fa--fa: "\e1a2\e1a2";
}

.fa-weight-scale {
  --fa: "\f496";
  --fa--fa: "\f496\f496";
}

.fa-weight {
  --fa: "\f496";
  --fa--fa: "\f496\f496";
}

.fa-arrow-up-to-arc {
  --fa: "\e617";
  --fa--fa: "\e617\e617";
}

.fa-star-exclamation {
  --fa: "\f2f3";
  --fa--fa: "\f2f3\f2f3";
}

.fa-books {
  --fa: "\f5db";
  --fa--fa: "\f5db\f5db";
}

.fa-user-group {
  --fa: "\f500";
  --fa--fa: "\f500\f500";
}

.fa-user-friends {
  --fa: "\f500";
  --fa--fa: "\f500\f500";
}

.fa-arrow-up-a-z {
  --fa: "\f15e";
  --fa--fa: "\f15e\f15e";
}

.fa-sort-alpha-up {
  --fa: "\f15e";
  --fa--fa: "\f15e\f15e";
}

.fa-layer-plus {
  --fa: "\f5ff";
  --fa--fa: "\f5ff\f5ff";
}

.fa-layer-group-plus {
  --fa: "\f5ff";
  --fa--fa: "\f5ff\f5ff";
}

.fa-play-pause {
  --fa: "\e22f";
  --fa--fa: "\e22f\e22f";
}

.fa-block-question {
  --fa: "\e3dd";
  --fa--fa: "\e3dd\e3dd";
}

.fa-snooze {
  --fa: "\f880";
  --fa--fa: "\f880\f880";
}

.fa-zzz {
  --fa: "\f880";
  --fa--fa: "\f880\f880";
}

.fa-scanner-image {
  --fa: "\f8f3";
  --fa--fa: "\f8f3\f8f3";
}

.fa-tv-retro {
  --fa: "\f401";
  --fa--fa: "\f401\f401";
}

.fa-square-t {
  --fa: "\e280";
  --fa--fa: "\e280\e280";
}

.fa-farm {
  --fa: "\f864";
  --fa--fa: "\f864\f864";
}

.fa-barn-silo {
  --fa: "\f864";
  --fa--fa: "\f864\f864";
}

.fa-chess-knight {
  --fa: "\f441";
  --fa--fa: "\f441\f441";
}

.fa-bars-sort {
  --fa: "\e0ae";
  --fa--fa: "\e0ae\e0ae";
}

.fa-pallet-boxes {
  --fa: "\f483";
  --fa--fa: "\f483\f483";
}

.fa-palette-boxes {
  --fa: "\f483";
  --fa--fa: "\f483\f483";
}

.fa-pallet-alt {
  --fa: "\f483";
  --fa--fa: "\f483\f483";
}

.fa-face-laugh-squint {
  --fa: "\f59b";
  --fa--fa: "\f59b\f59b";
}

.fa-laugh-squint {
  --fa: "\f59b";
  --fa--fa: "\f59b\f59b";
}

.fa-code-simple {
  --fa: "\e13d";
  --fa--fa: "\e13d\e13d";
}

.fa-bolt-slash {
  --fa: "\e0b8";
  --fa--fa: "\e0b8\e0b8";
}

.fa-panel-fire {
  --fa: "\e42f";
  --fa--fa: "\e42f\e42f";
}

.fa-binary-circle-check {
  --fa: "\e33c";
  --fa--fa: "\e33c\e33c";
}

.fa-comment-minus {
  --fa: "\f4b1";
  --fa--fa: "\f4b1\f4b1";
}

.fa-burrito {
  --fa: "\f7ed";
  --fa--fa: "\f7ed\f7ed";
}

.fa-violin {
  --fa: "\f8ed";
  --fa--fa: "\f8ed\f8ed";
}

.fa-objects-column {
  --fa: "\e3c1";
  --fa--fa: "\e3c1\e3c1";
}

.fa-square-chevron-down {
  --fa: "\f329";
  --fa--fa: "\f329\f329";
}

.fa-chevron-square-down {
  --fa: "\f329";
  --fa--fa: "\f329\f329";
}

.fa-comment-plus {
  --fa: "\f4b2";
  --fa--fa: "\f4b2\f4b2";
}

.fa-triangle-instrument {
  --fa: "\f8e2";
  --fa--fa: "\f8e2\f8e2";
}

.fa-triangle-music {
  --fa: "\f8e2";
  --fa--fa: "\f8e2\f8e2";
}

.fa-wheelchair {
  --fa: "\f193";
  --fa--fa: "\f193\f193";
}

.fa-user-pilot-tie {
  --fa: "\e2c1";
  --fa--fa: "\e2c1\e2c1";
}

.fa-piano-keyboard {
  --fa: "\f8d5";
  --fa--fa: "\f8d5\f8d5";
}

.fa-bed-empty {
  --fa: "\f8f9";
  --fa--fa: "\f8f9\f8f9";
}

.fa-circle-arrow-up {
  --fa: "\f0aa";
  --fa--fa: "\f0aa\f0aa";
}

.fa-arrow-circle-up {
  --fa: "\f0aa";
  --fa--fa: "\f0aa\f0aa";
}

.fa-toggle-on {
  --fa: "\f205";
  --fa--fa: "\f205\f205";
}

.fa-rectangle-vertical {
  --fa: "\f2fb";
  --fa--fa: "\f2fb\f2fb";
}

.fa-rectangle-portrait {
  --fa: "\f2fb";
  --fa--fa: "\f2fb\f2fb";
}

.fa-person-walking {
  --fa: "\f554";
  --fa--fa: "\f554\f554";
}

.fa-walking {
  --fa: "\f554";
  --fa--fa: "\f554\f554";
}

.fa-l {
  --fa: "L";
  --fa--fa: "LL";
}

.fa-signal-stream {
  --fa: "\f8dd";
  --fa--fa: "\f8dd\f8dd";
}

.fa-down-to-bracket {
  --fa: "\e4e7";
  --fa--fa: "\e4e7\e4e7";
}

.fa-circle-z {
  --fa: "\e130";
  --fa--fa: "\e130\e130";
}

.fa-stars {
  --fa: "\f762";
  --fa--fa: "\f762\f762";
}

.fa-fire {
  --fa: "\f06d";
  --fa--fa: "\f06d\f06d";
}

.fa-bed-pulse {
  --fa: "\f487";
  --fa--fa: "\f487\f487";
}

.fa-procedures {
  --fa: "\f487";
  --fa--fa: "\f487\f487";
}

.fa-house-day {
  --fa: "\e00e";
  --fa--fa: "\e00e\e00e";
}

.fa-shuttle-space {
  --fa: "\f197";
  --fa--fa: "\f197\f197";
}

.fa-space-shuttle {
  --fa: "\f197";
  --fa--fa: "\f197\f197";
}

.fa-shirt-long-sleeve {
  --fa: "\e3c7";
  --fa--fa: "\e3c7\e3c7";
}

.fa-chart-pie-simple {
  --fa: "\f64e";
  --fa--fa: "\f64e\f64e";
}

.fa-chart-pie-alt {
  --fa: "\f64e";
  --fa--fa: "\f64e\f64e";
}

.fa-face-laugh {
  --fa: "\f599";
  --fa--fa: "\f599\f599";
}

.fa-laugh {
  --fa: "\f599";
  --fa--fa: "\f599\f599";
}

.fa-folder-open {
  --fa: "\f07c";
  --fa--fa: "\f07c\f07c";
}

.fa-album-collection-circle-user {
  --fa: "\e48f";
  --fa--fa: "\e48f\e48f";
}

.fa-candy {
  --fa: "\e3e7";
  --fa--fa: "\e3e7\e3e7";
}

.fa-bowl-hot {
  --fa: "\f823";
  --fa--fa: "\f823\f823";
}

.fa-soup {
  --fa: "\f823";
  --fa--fa: "\f823\f823";
}

.fa-flatbread {
  --fa: "\e40b";
  --fa--fa: "\e40b\e40b";
}

.fa-heart-circle-plus {
  --fa: "\e500";
  --fa--fa: "\e500\e500";
}

.fa-code-fork {
  --fa: "\e13b";
  --fa--fa: "\e13b\e13b";
}

.fa-city {
  --fa: "\f64f";
  --fa--fa: "\f64f\f64f";
}

.fa-signal-bars-weak {
  --fa: "\f691";
  --fa--fa: "\f691\f691";
}

.fa-signal-alt-1 {
  --fa: "\f691";
  --fa--fa: "\f691\f691";
}

.fa-microphone-lines {
  --fa: "\f3c9";
  --fa--fa: "\f3c9\f3c9";
}

.fa-microphone-alt {
  --fa: "\f3c9";
  --fa--fa: "\f3c9\f3c9";
}

.fa-clock-twelve {
  --fa: "\e358";
  --fa--fa: "\e358\e358";
}

.fa-pepper-hot {
  --fa: "\f816";
  --fa--fa: "\f816\f816";
}

.fa-citrus-slice {
  --fa: "\e2f5";
  --fa--fa: "\e2f5\e2f5";
}

.fa-sheep {
  --fa: "\f711";
  --fa--fa: "\f711\f711";
}

.fa-unlock {
  --fa: "\f09c";
  --fa--fa: "\f09c\f09c";
}

.fa-colon-sign {
  --fa: "\e140";
  --fa--fa: "\e140\e140";
}

.fa-headset {
  --fa: "\f590";
  --fa--fa: "\f590\f590";
}

.fa-badger-honey {
  --fa: "\f6b4";
  --fa--fa: "\f6b4\f6b4";
}

.fa-h4 {
  --fa: "\f86a";
  --fa--fa: "\f86a\f86a";
}

.fa-store-slash {
  --fa: "\e071";
  --fa--fa: "\e071\e071";
}

.fa-road-circle-xmark {
  --fa: "\e566";
  --fa--fa: "\e566\e566";
}

.fa-signal-slash {
  --fa: "\f695";
  --fa--fa: "\f695\f695";
}

.fa-user-minus {
  --fa: "\f503";
  --fa--fa: "\f503\f503";
}

.fa-mars-stroke-up {
  --fa: "\f22a";
  --fa--fa: "\f22a\f22a";
}

.fa-mars-stroke-v {
  --fa: "\f22a";
  --fa--fa: "\f22a\f22a";
}

.fa-champagne-glasses {
  --fa: "\f79f";
  --fa--fa: "\f79f\f79f";
}

.fa-glass-cheers {
  --fa: "\f79f";
  --fa--fa: "\f79f\f79f";
}

.fa-taco {
  --fa: "\f826";
  --fa--fa: "\f826\f826";
}

.fa-hexagon-plus {
  --fa: "\f300";
  --fa--fa: "\f300\f300";
}

.fa-plus-hexagon {
  --fa: "\f300";
  --fa--fa: "\f300\f300";
}

.fa-clipboard {
  --fa: "\f328";
  --fa--fa: "\f328\f328";
}

.fa-house-circle-exclamation {
  --fa: "\e50a";
  --fa--fa: "\e50a\e50a";
}

.fa-file-arrow-up {
  --fa: "\f574";
  --fa--fa: "\f574\f574";
}

.fa-file-upload {
  --fa: "\f574";
  --fa--fa: "\f574\f574";
}

.fa-wifi {
  --fa: "\f1eb";
  --fa--fa: "\f1eb\f1eb";
}

.fa-wifi-3 {
  --fa: "\f1eb";
  --fa--fa: "\f1eb\f1eb";
}

.fa-wifi-strong {
  --fa: "\f1eb";
  --fa--fa: "\f1eb\f1eb";
}

.fa-messages {
  --fa: "\f4b6";
  --fa--fa: "\f4b6\f4b6";
}

.fa-comments-alt {
  --fa: "\f4b6";
  --fa--fa: "\f4b6\f4b6";
}

.fa-bath {
  --fa: "\f2cd";
  --fa--fa: "\f2cd\f2cd";
}

.fa-bathtub {
  --fa: "\f2cd";
  --fa--fa: "\f2cd\f2cd";
}

.fa-umbrella-simple {
  --fa: "\e2bc";
  --fa--fa: "\e2bc\e2bc";
}

.fa-umbrella-alt {
  --fa: "\e2bc";
  --fa--fa: "\e2bc\e2bc";
}

.fa-rectangle-history-circle-plus {
  --fa: "\e4a3";
  --fa--fa: "\e4a3\e4a3";
}

.fa-underline {
  --fa: "\f0cd";
  --fa--fa: "\f0cd\f0cd";
}

.fa-prescription-bottle-pill {
  --fa: "\e5c0";
  --fa--fa: "\e5c0\e5c0";
}

.fa-user-pen {
  --fa: "\f4ff";
  --fa--fa: "\f4ff\f4ff";
}

.fa-user-edit {
  --fa: "\f4ff";
  --fa--fa: "\f4ff\f4ff";
}

.fa-binary-slash {
  --fa: "\e33e";
  --fa--fa: "\e33e\e33e";
}

.fa-square-o {
  --fa: "\e278";
  --fa--fa: "\e278\e278";
}

.fa-caduceus {
  --fa: "\e681";
  --fa--fa: "\e681\e681";
}

.fa-signature {
  --fa: "\f5b7";
  --fa--fa: "\f5b7\f5b7";
}

.fa-stroopwafel {
  --fa: "\f551";
  --fa--fa: "\f551\f551";
}

.fa-bold {
  --fa: "\f032";
  --fa--fa: "\f032\f032";
}

.fa-anchor-lock {
  --fa: "\e4ad";
  --fa--fa: "\e4ad\e4ad";
}

.fa-building-ngo {
  --fa: "\e4d7";
  --fa--fa: "\e4d7\e4d7";
}

.fa-transporter-3 {
  --fa: "\e045";
  --fa--fa: "\e045\e045";
}

.fa-engine-warning {
  --fa: "\f5f2";
  --fa--fa: "\f5f2\f5f2";
}

.fa-engine-exclamation {
  --fa: "\f5f2";
  --fa--fa: "\f5f2\f5f2";
}

.fa-circle-down-right {
  --fa: "\e108";
  --fa--fa: "\e108\e108";
}

.fa-square-k {
  --fa: "\e274";
  --fa--fa: "\e274\e274";
}

.fa-manat-sign {
  --fa: "\e1d5";
  --fa--fa: "\e1d5\e1d5";
}

.fa-money-check-pen {
  --fa: "\f872";
  --fa--fa: "\f872\f872";
}

.fa-money-check-edit {
  --fa: "\f872";
  --fa--fa: "\f872\f872";
}

.fa-not-equal {
  --fa: "\f53e";
  --fa--fa: "\f53e\f53e";
}

.fa-border-top-left {
  --fa: "\f853";
  --fa--fa: "\f853\f853";
}

.fa-border-style {
  --fa: "\f853";
  --fa--fa: "\f853\f853";
}

.fa-map-location-dot {
  --fa: "\f5a0";
  --fa--fa: "\f5a0\f5a0";
}

.fa-map-marked-alt {
  --fa: "\f5a0";
  --fa--fa: "\f5a0\f5a0";
}

.fa-tilde {
  --fa: "\~";
  --fa--fa: "\~\~";
}

.fa-jedi {
  --fa: "\f669";
  --fa--fa: "\f669\f669";
}

.fa-square-poll-vertical {
  --fa: "\f681";
  --fa--fa: "\f681\f681";
}

.fa-poll {
  --fa: "\f681";
  --fa--fa: "\f681\f681";
}

.fa-arrow-down-square-triangle {
  --fa: "\f889";
  --fa--fa: "\f889\f889";
}

.fa-sort-shapes-down-alt {
  --fa: "\f889";
  --fa--fa: "\f889\f889";
}

.fa-mug-hot {
  --fa: "\f7b6";
  --fa--fa: "\f7b6\f7b6";
}

.fa-dog-leashed {
  --fa: "\f6d4";
  --fa--fa: "\f6d4\f6d4";
}

.fa-car-battery {
  --fa: "\f5df";
  --fa--fa: "\f5df\f5df";
}

.fa-battery-car {
  --fa: "\f5df";
  --fa--fa: "\f5df\f5df";
}

.fa-face-downcast-sweat {
  --fa: "\e371";
  --fa--fa: "\e371\e371";
}

.fa-mailbox-flag-up {
  --fa: "\e5bb";
  --fa--fa: "\e5bb\e5bb";
}

.fa-memo-circle-info {
  --fa: "\e49a";
  --fa--fa: "\e49a\e49a";
}

.fa-gift {
  --fa: "\f06b";
  --fa--fa: "\f06b\f06b";
}

.fa-dice-two {
  --fa: "\f528";
  --fa--fa: "\f528\f528";
}

.fa-volume {
  --fa: "\f6a8";
  --fa--fa: "\f6a8\f6a8";
}

.fa-volume-medium {
  --fa: "\f6a8";
  --fa--fa: "\f6a8\f6a8";
}

.fa-transporter-5 {
  --fa: "\e2a6";
  --fa--fa: "\e2a6\e2a6";
}

.fa-gauge-circle-bolt {
  --fa: "\e496";
  --fa--fa: "\e496\e496";
}

.fa-coin-front {
  --fa: "\e3fc";
  --fa--fa: "\e3fc\e3fc";
}

.fa-file-slash {
  --fa: "\e3a7";
  --fa--fa: "\e3a7\e3a7";
}

.fa-message-arrow-up-right {
  --fa: "\e1dd";
  --fa--fa: "\e1dd\e1dd";
}

.fa-treasure-chest {
  --fa: "\f723";
  --fa--fa: "\f723\f723";
}

.fa-chess-queen {
  --fa: "\f445";
  --fa--fa: "\f445\f445";
}

.fa-paintbrush-fine {
  --fa: "\f5a9";
  --fa--fa: "\f5a9\f5a9";
}

.fa-paint-brush-alt {
  --fa: "\f5a9";
  --fa--fa: "\f5a9\f5a9";
}

.fa-paint-brush-fine {
  --fa: "\f5a9";
  --fa--fa: "\f5a9\f5a9";
}

.fa-paintbrush-alt {
  --fa: "\f5a9";
  --fa--fa: "\f5a9\f5a9";
}

.fa-glasses {
  --fa: "\f530";
  --fa--fa: "\f530\f530";
}

.fa-hood-cloak {
  --fa: "\f6ef";
  --fa--fa: "\f6ef\f6ef";
}

.fa-square-quote {
  --fa: "\e329";
  --fa--fa: "\e329\e329";
}

.fa-up-left {
  --fa: "\e2bd";
  --fa--fa: "\e2bd\e2bd";
}

.fa-bring-front {
  --fa: "\f857";
  --fa--fa: "\f857\f857";
}

.fa-chess-board {
  --fa: "\f43c";
  --fa--fa: "\f43c\f43c";
}

.fa-burger-cheese {
  --fa: "\f7f1";
  --fa--fa: "\f7f1\f7f1";
}

.fa-cheeseburger {
  --fa: "\f7f1";
  --fa--fa: "\f7f1\f7f1";
}

.fa-building-circle-check {
  --fa: "\e4d2";
  --fa--fa: "\e4d2\e4d2";
}

.fa-repeat-1 {
  --fa: "\f365";
  --fa--fa: "\f365\f365";
}

.fa-arrow-down-to-line {
  --fa: "\f33d";
  --fa--fa: "\f33d\f33d";
}

.fa-arrow-to-bottom {
  --fa: "\f33d";
  --fa--fa: "\f33d\f33d";
}

.fa-grid-5 {
  --fa: "\e199";
  --fa--fa: "\e199\e199";
}

.fa-swap-arrows {
  --fa: "\e60a";
  --fa--fa: "\e60a\e60a";
}

.fa-right-long-to-line {
  --fa: "\e444";
  --fa--fa: "\e444\e444";
}

.fa-person-chalkboard {
  --fa: "\e53d";
  --fa--fa: "\e53d\e53d";
}

.fa-mars-stroke-right {
  --fa: "\f22b";
  --fa--fa: "\f22b\f22b";
}

.fa-mars-stroke-h {
  --fa: "\f22b";
  --fa--fa: "\f22b\f22b";
}

.fa-hand-back-fist {
  --fa: "\f255";
  --fa--fa: "\f255\f255";
}

.fa-hand-rock {
  --fa: "\f255";
  --fa--fa: "\f255\f255";
}

.fa-grid-round-5 {
  --fa: "\e5de";
  --fa--fa: "\e5de\e5de";
}

.fa-tally {
  --fa: "\f69c";
  --fa--fa: "\f69c\f69c";
}

.fa-tally-5 {
  --fa: "\f69c";
  --fa--fa: "\f69c\f69c";
}

.fa-square-caret-up {
  --fa: "\f151";
  --fa--fa: "\f151\f151";
}

.fa-caret-square-up {
  --fa: "\f151";
  --fa--fa: "\f151\f151";
}

.fa-cloud-showers-water {
  --fa: "\e4e4";
  --fa--fa: "\e4e4\e4e4";
}

.fa-chart-bar {
  --fa: "\f080";
  --fa--fa: "\f080\f080";
}

.fa-bar-chart {
  --fa: "\f080";
  --fa--fa: "\f080\f080";
}

.fa-hands-bubbles {
  --fa: "\e05e";
  --fa--fa: "\e05e\e05e";
}

.fa-hands-wash {
  --fa: "\e05e";
  --fa--fa: "\e05e\e05e";
}

.fa-less-than-equal {
  --fa: "\f537";
  --fa--fa: "\f537\f537";
}

.fa-train {
  --fa: "\f238";
  --fa--fa: "\f238\f238";
}

.fa-up-from-dotted-line {
  --fa: "\e456";
  --fa--fa: "\e456\e456";
}

.fa-eye-low-vision {
  --fa: "\f2a8";
  --fa--fa: "\f2a8\f2a8";
}

.fa-low-vision {
  --fa: "\f2a8";
  --fa--fa: "\f2a8\f2a8";
}

.fa-traffic-light-go {
  --fa: "\f638";
  --fa--fa: "\f638\f638";
}

.fa-face-exhaling {
  --fa: "\e480";
  --fa--fa: "\e480\e480";
}

.fa-sensor-fire {
  --fa: "\e02a";
  --fa--fa: "\e02a\e02a";
}

.fa-user-unlock {
  --fa: "\e058";
  --fa--fa: "\e058\e058";
}

.fa-hexagon-divide {
  --fa: "\e1ad";
  --fa--fa: "\e1ad\e1ad";
}

.fa-00 {
  --fa: "\e467";
  --fa--fa: "\e467\e467";
}

.fa-crow {
  --fa: "\f520";
  --fa--fa: "\f520\f520";
}

.fa-cassette-betamax {
  --fa: "\f8a4";
  --fa--fa: "\f8a4\f8a4";
}

.fa-betamax {
  --fa: "\f8a4";
  --fa--fa: "\f8a4\f8a4";
}

.fa-sailboat {
  --fa: "\e445";
  --fa--fa: "\e445\e445";
}

.fa-window-restore {
  --fa: "\f2d2";
  --fa--fa: "\f2d2\f2d2";
}

.fa-nfc-magnifying-glass {
  --fa: "\e1f9";
  --fa--fa: "\e1f9\e1f9";
}

.fa-file-binary {
  --fa: "\e175";
  --fa--fa: "\e175\e175";
}

.fa-circle-v {
  --fa: "\e12a";
  --fa--fa: "\e12a\e12a";
}

.fa-square-plus {
  --fa: "\f0fe";
  --fa--fa: "\f0fe\f0fe";
}

.fa-plus-square {
  --fa: "\f0fe";
  --fa--fa: "\f0fe\f0fe";
}

.fa-bowl-scoops {
  --fa: "\e3df";
  --fa--fa: "\e3df\e3df";
}

.fa-mistletoe {
  --fa: "\f7b4";
  --fa--fa: "\f7b4\f7b4";
}

.fa-custard {
  --fa: "\e403";
  --fa--fa: "\e403\e403";
}

.fa-lacrosse-stick {
  --fa: "\e3b5";
  --fa--fa: "\e3b5\e3b5";
}

.fa-hockey-mask {
  --fa: "\f6ee";
  --fa--fa: "\f6ee\f6ee";
}

.fa-sunrise {
  --fa: "\f766";
  --fa--fa: "\f766\f766";
}

.fa-subtitles {
  --fa: "\e60f";
  --fa--fa: "\e60f\e60f";
}

.fa-panel-ews {
  --fa: "\e42e";
  --fa--fa: "\e42e\e42e";
}

.fa-torii-gate {
  --fa: "\f6a1";
  --fa--fa: "\f6a1\f6a1";
}

.fa-cloud-exclamation {
  --fa: "\e491";
  --fa--fa: "\e491\e491";
}

.fa-message-lines {
  --fa: "\f4a6";
  --fa--fa: "\f4a6\f4a6";
}

.fa-comment-alt-lines {
  --fa: "\f4a6";
  --fa--fa: "\f4a6\f4a6";
}

.fa-frog {
  --fa: "\f52e";
  --fa--fa: "\f52e\f52e";
}

.fa-bucket {
  --fa: "\e4cf";
  --fa--fa: "\e4cf\e4cf";
}

.fa-floppy-disk-pen {
  --fa: "\e182";
  --fa--fa: "\e182\e182";
}

.fa-image {
  --fa: "\f03e";
  --fa--fa: "\f03e\f03e";
}

.fa-window-frame {
  --fa: "\e04f";
  --fa--fa: "\e04f\e04f";
}

.fa-microphone {
  --fa: "\f130";
  --fa--fa: "\f130\f130";
}

.fa-cow {
  --fa: "\f6c8";
  --fa--fa: "\f6c8\f6c8";
}

.fa-file-zip {
  --fa: "\e5ee";
  --fa--fa: "\e5ee\e5ee";
}

.fa-square-ring {
  --fa: "\e44f";
  --fa--fa: "\e44f\e44f";
}

.fa-down-from-line {
  --fa: "\f349";
  --fa--fa: "\f349\f349";
}

.fa-arrow-alt-from-top {
  --fa: "\f349";
  --fa--fa: "\f349\f349";
}

.fa-caret-up {
  --fa: "\f0d8";
  --fa--fa: "\f0d8\f0d8";
}

.fa-shield-xmark {
  --fa: "\e24c";
  --fa--fa: "\e24c\e24c";
}

.fa-shield-times {
  --fa: "\e24c";
  --fa--fa: "\e24c\e24c";
}

.fa-screwdriver {
  --fa: "\f54a";
  --fa--fa: "\f54a\f54a";
}

.fa-circle-sort-down {
  --fa: "\e031";
  --fa--fa: "\e031\e031";
}

.fa-sort-circle-down {
  --fa: "\e031";
  --fa--fa: "\e031\e031";
}

.fa-folder-closed {
  --fa: "\e185";
  --fa--fa: "\e185\e185";
}

.fa-house-tsunami {
  --fa: "\e515";
  --fa--fa: "\e515\e515";
}

.fa-square-nfi {
  --fa: "\e576";
  --fa--fa: "\e576\e576";
}

.fa-forklift {
  --fa: "\f47a";
  --fa--fa: "\f47a\f47a";
}

.fa-arrow-up-from-ground-water {
  --fa: "\e4b5";
  --fa--fa: "\e4b5\e4b5";
}

.fa-bracket-square-right {
  --fa: "\]";
  --fa--fa: "\]\]";
}

.fa-martini-glass {
  --fa: "\f57b";
  --fa--fa: "\f57b\f57b";
}

.fa-glass-martini-alt {
  --fa: "\f57b";
  --fa--fa: "\f57b\f57b";
}

.fa-square-binary {
  --fa: "\e69b";
  --fa--fa: "\e69b\e69b";
}

.fa-rotate-left {
  --fa: "\f2ea";
  --fa--fa: "\f2ea\f2ea";
}

.fa-rotate-back {
  --fa: "\f2ea";
  --fa--fa: "\f2ea\f2ea";
}

.fa-rotate-backward {
  --fa: "\f2ea";
  --fa--fa: "\f2ea\f2ea";
}

.fa-undo-alt {
  --fa: "\f2ea";
  --fa--fa: "\f2ea\f2ea";
}

.fa-table-columns {
  --fa: "\f0db";
  --fa--fa: "\f0db\f0db";
}

.fa-columns {
  --fa: "\f0db";
  --fa--fa: "\f0db\f0db";
}

.fa-square-a {
  --fa: "\e25f";
  --fa--fa: "\e25f\e25f";
}

.fa-tick {
  --fa: "\e32f";
  --fa--fa: "\e32f\e32f";
}

.fa-lemon {
  --fa: "\f094";
  --fa--fa: "\f094\f094";
}

.fa-head-side-mask {
  --fa: "\e063";
  --fa--fa: "\e063\e063";
}

.fa-handshake {
  --fa: "\f2b5";
  --fa--fa: "\f2b5\f2b5";
}

.fa-gem {
  --fa: "\f3a5";
  --fa--fa: "\f3a5\f3a5";
}

.fa-dolly {
  --fa: "\f472";
  --fa--fa: "\f472\f472";
}

.fa-dolly-box {
  --fa: "\f472";
  --fa--fa: "\f472\f472";
}

.fa-smoking {
  --fa: "\f48d";
  --fa--fa: "\f48d\f48d";
}

.fa-minimize {
  --fa: "\f78c";
  --fa--fa: "\f78c\f78c";
}

.fa-compress-arrows-alt {
  --fa: "\f78c";
  --fa--fa: "\f78c\f78c";
}

.fa-refrigerator {
  --fa: "\e026";
  --fa--fa: "\e026\e026";
}

.fa-monument {
  --fa: "\f5a6";
  --fa--fa: "\f5a6\f5a6";
}

.fa-octagon-xmark {
  --fa: "\f2f0";
  --fa--fa: "\f2f0\f2f0";
}

.fa-times-octagon {
  --fa: "\f2f0";
  --fa--fa: "\f2f0\f2f0";
}

.fa-xmark-octagon {
  --fa: "\f2f0";
  --fa--fa: "\f2f0\f2f0";
}

.fa-align-slash {
  --fa: "\f846";
  --fa--fa: "\f846\f846";
}

.fa-snowplow {
  --fa: "\f7d2";
  --fa--fa: "\f7d2\f7d2";
}

.fa-angles-right {
  --fa: "\f101";
  --fa--fa: "\f101\f101";
}

.fa-angle-double-right {
  --fa: "\f101";
  --fa--fa: "\f101\f101";
}

.fa-truck-ramp-couch {
  --fa: "\f4dd";
  --fa--fa: "\f4dd\f4dd";
}

.fa-truck-couch {
  --fa: "\f4dd";
  --fa--fa: "\f4dd\f4dd";
}

.fa-cannabis {
  --fa: "\f55f";
  --fa--fa: "\f55f\f55f";
}

.fa-circle-play {
  --fa: "\f144";
  --fa--fa: "\f144\f144";
}

.fa-play-circle {
  --fa: "\f144";
  --fa--fa: "\f144\f144";
}

.fa-arrow-up-right-and-arrow-down-left-from-center {
  --fa: "\e0a0";
  --fa--fa: "\e0a0\e0a0";
}

.fa-location-arrow-up {
  --fa: "\e63a";
  --fa--fa: "\e63a\e63a";
}

.fa-tablets {
  --fa: "\f490";
  --fa--fa: "\f490\f490";
}

.fa-360-degrees {
  --fa: "\e2dc";
  --fa--fa: "\e2dc\e2dc";
}

.fa-ethernet {
  --fa: "\f796";
  --fa--fa: "\f796\f796";
}

.fa-euro-sign {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-eur {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-euro {
  --fa: "\f153";
  --fa--fa: "\f153\f153";
}

.fa-chair {
  --fa: "\f6c0";
  --fa--fa: "\f6c0\f6c0";
}

.fa-circle-check {
  --fa: "\f058";
  --fa--fa: "\f058\f058";
}

.fa-check-circle {
  --fa: "\f058";
  --fa--fa: "\f058\f058";
}

.fa-square-dashed-circle-plus {
  --fa: "\e5c2";
  --fa--fa: "\e5c2\e5c2";
}

.fa-hand-holding-circle-dollar {
  --fa: "\e621";
  --fa--fa: "\e621\e621";
}

.fa-money-simple-from-bracket {
  --fa: "\e313";
  --fa--fa: "\e313\e313";
}

.fa-bat {
  --fa: "\f6b5";
  --fa--fa: "\f6b5\f6b5";
}

.fa-circle-stop {
  --fa: "\f28d";
  --fa--fa: "\f28d\f28d";
}

.fa-stop-circle {
  --fa: "\f28d";
  --fa--fa: "\f28d\f28d";
}

.fa-head-side-headphones {
  --fa: "\f8c2";
  --fa--fa: "\f8c2\f8c2";
}

.fa-phone-rotary {
  --fa: "\f8d3";
  --fa--fa: "\f8d3\f8d3";
}

.fa-arrow-up-to-bracket {
  --fa: "\e66a";
  --fa--fa: "\e66a\e66a";
}

.fa-compass-drafting {
  --fa: "\f568";
  --fa--fa: "\f568\f568";
}

.fa-drafting-compass {
  --fa: "\f568";
  --fa--fa: "\f568\f568";
}

.fa-plate-wheat {
  --fa: "\e55a";
  --fa--fa: "\e55a\e55a";
}

.fa-calendar-circle-minus {
  --fa: "\e46f";
  --fa--fa: "\e46f\e46f";
}

.fa-chopsticks {
  --fa: "\e3f7";
  --fa--fa: "\e3f7\e3f7";
}

.fa-car-wrench {
  --fa: "\f5e3";
  --fa--fa: "\f5e3\f5e3";
}

.fa-car-mechanic {
  --fa: "\f5e3";
  --fa--fa: "\f5e3\f5e3";
}

.fa-icicles {
  --fa: "\f7ad";
  --fa--fa: "\f7ad\f7ad";
}

.fa-person-shelter {
  --fa: "\e54f";
  --fa--fa: "\e54f\e54f";
}

.fa-neuter {
  --fa: "\f22c";
  --fa--fa: "\f22c\f22c";
}

.fa-id-badge {
  --fa: "\f2c1";
  --fa--fa: "\f2c1\f2c1";
}

.fa-kazoo {
  --fa: "\f8c7";
  --fa--fa: "\f8c7\f8c7";
}

.fa-marker {
  --fa: "\f5a1";
  --fa--fa: "\f5a1\f5a1";
}

.fa-bin-bottles {
  --fa: "\e5f5";
  --fa--fa: "\e5f5\e5f5";
}

.fa-face-laugh-beam {
  --fa: "\f59a";
  --fa--fa: "\f59a\f59a";
}

.fa-laugh-beam {
  --fa: "\f59a";
  --fa--fa: "\f59a\f59a";
}

.fa-square-arrow-down-left {
  --fa: "\e261";
  --fa--fa: "\e261\e261";
}

.fa-battery-bolt {
  --fa: "\f376";
  --fa--fa: "\f376\f376";
}

.fa-tree-large {
  --fa: "\f7dd";
  --fa--fa: "\f7dd\f7dd";
}

.fa-helicopter-symbol {
  --fa: "\e502";
  --fa--fa: "\e502\e502";
}

.fa-aperture {
  --fa: "\e2df";
  --fa--fa: "\e2df\e2df";
}

.fa-universal-access {
  --fa: "\f29a";
  --fa--fa: "\f29a\f29a";
}

.fa-gear-complex {
  --fa: "\e5e9";
  --fa--fa: "\e5e9\e5e9";
}

.fa-file-magnifying-glass {
  --fa: "\f865";
  --fa--fa: "\f865\f865";
}

.fa-file-search {
  --fa: "\f865";
  --fa--fa: "\f865\f865";
}

.fa-up-right {
  --fa: "\e2be";
  --fa--fa: "\e2be\e2be";
}

.fa-circle-chevron-up {
  --fa: "\f139";
  --fa--fa: "\f139\f139";
}

.fa-chevron-circle-up {
  --fa: "\f139";
  --fa--fa: "\f139\f139";
}

.fa-user-police {
  --fa: "\e333";
  --fa--fa: "\e333\e333";
}

.fa-lari-sign {
  --fa: "\e1c8";
  --fa--fa: "\e1c8\e1c8";
}

.fa-volcano {
  --fa: "\f770";
  --fa--fa: "\f770\f770";
}

.fa-teddy-bear {
  --fa: "\e3cf";
  --fa--fa: "\e3cf\e3cf";
}

.fa-stocking {
  --fa: "\f7d5";
  --fa--fa: "\f7d5\f7d5";
}

.fa-person-walking-dashed-line-arrow-right {
  --fa: "\e553";
  --fa--fa: "\e553\e553";
}

.fa-image-slash {
  --fa: "\e1b7";
  --fa--fa: "\e1b7\e1b7";
}

.fa-mask-snorkel {
  --fa: "\e3b7";
  --fa--fa: "\e3b7\e3b7";
}

.fa-smoke {
  --fa: "\f760";
  --fa--fa: "\f760\f760";
}

.fa-sterling-sign {
  --fa: "\f154";
  --fa--fa: "\f154\f154";
}

.fa-gbp {
  --fa: "\f154";
  --fa--fa: "\f154\f154";
}

.fa-pound-sign {
  --fa: "\f154";
  --fa--fa: "\f154\f154";
}

.fa-battery-exclamation {
  --fa: "\e0b0";
  --fa--fa: "\e0b0\e0b0";
}

.fa-viruses {
  --fa: "\e076";
  --fa--fa: "\e076\e076";
}

.fa-square-person-confined {
  --fa: "\e577";
  --fa--fa: "\e577\e577";
}

.fa-user-tie {
  --fa: "\f508";
  --fa--fa: "\f508\f508";
}

.fa-up-to-bracket {
  --fa: "\e66e";
  --fa--fa: "\e66e\e66e";
}

.fa-arrow-down-long {
  --fa: "\f175";
  --fa--fa: "\f175\f175";
}

.fa-long-arrow-down {
  --fa: "\f175";
  --fa--fa: "\f175\f175";
}

.fa-tent-arrow-down-to-line {
  --fa: "\e57e";
  --fa--fa: "\e57e\e57e";
}

.fa-certificate {
  --fa: "\f0a3";
  --fa--fa: "\f0a3\f0a3";
}

.fa-crystal-ball {
  --fa: "\e362";
  --fa--fa: "\e362\e362";
}

.fa-reply-all {
  --fa: "\f122";
  --fa--fa: "\f122\f122";
}

.fa-mail-reply-all {
  --fa: "\f122";
  --fa--fa: "\f122\f122";
}

.fa-suitcase {
  --fa: "\f0f2";
  --fa--fa: "\f0f2\f0f2";
}

.fa-person-skating {
  --fa: "\f7c5";
  --fa--fa: "\f7c5\f7c5";
}

.fa-skating {
  --fa: "\f7c5";
  --fa--fa: "\f7c5\f7c5";
}

.fa-star-shooting {
  --fa: "\e036";
  --fa--fa: "\e036\e036";
}

.fa-binary-lock {
  --fa: "\e33d";
  --fa--fa: "\e33d\e33d";
}

.fa-filter-circle-dollar {
  --fa: "\f662";
  --fa--fa: "\f662\f662";
}

.fa-funnel-dollar {
  --fa: "\f662";
  --fa--fa: "\f662\f662";
}

.fa-camera-retro {
  --fa: "\f083";
  --fa--fa: "\f083\f083";
}

.fa-circle-arrow-down {
  --fa: "\f0ab";
  --fa--fa: "\f0ab\f0ab";
}

.fa-arrow-circle-down {
  --fa: "\f0ab";
  --fa--fa: "\f0ab\f0ab";
}

.fa-comment-pen {
  --fa: "\f4ae";
  --fa--fa: "\f4ae\f4ae";
}

.fa-comment-edit {
  --fa: "\f4ae";
  --fa--fa: "\f4ae\f4ae";
}

.fa-file-import {
  --fa: "\f56f";
  --fa--fa: "\f56f\f56f";
}

.fa-arrow-right-to-file {
  --fa: "\f56f";
  --fa--fa: "\f56f\f56f";
}

.fa-banjo {
  --fa: "\f8a3";
  --fa--fa: "\f8a3\f8a3";
}

.fa-square-arrow-up-right {
  --fa: "\f14c";
  --fa--fa: "\f14c\f14c";
}

.fa-external-link-square {
  --fa: "\f14c";
  --fa--fa: "\f14c\f14c";
}

.fa-light-emergency-on {
  --fa: "\e420";
  --fa--fa: "\e420\e420";
}

.fa-kerning {
  --fa: "\f86f";
  --fa--fa: "\f86f\f86f";
}

.fa-box-open {
  --fa: "\f49e";
  --fa--fa: "\f49e\f49e";
}

.fa-square-f {
  --fa: "\e270";
  --fa--fa: "\e270\e270";
}

.fa-scroll {
  --fa: "\f70e";
  --fa--fa: "\f70e\f70e";
}

.fa-spa {
  --fa: "\f5bb";
  --fa--fa: "\f5bb\f5bb";
}

.fa-arrow-left-from-line {
  --fa: "\f344";
  --fa--fa: "\f344\f344";
}

.fa-arrow-from-right {
  --fa: "\f344";
  --fa--fa: "\f344\f344";
}

.fa-strawberry {
  --fa: "\e32b";
  --fa--fa: "\e32b\e32b";
}

.fa-location-pin-lock {
  --fa: "\e51f";
  --fa--fa: "\e51f\e51f";
}

.fa-pause {
  --fa: "\f04c";
  --fa--fa: "\f04c\f04c";
}

.fa-clock-eight-thirty {
  --fa: "\e346";
  --fa--fa: "\e346\e346";
}

.fa-plane-engines {
  --fa: "\f3de";
  --fa--fa: "\f3de\f3de";
}

.fa-plane-alt {
  --fa: "\f3de";
  --fa--fa: "\f3de\f3de";
}

.fa-hill-avalanche {
  --fa: "\e507";
  --fa--fa: "\e507\e507";
}

.fa-temperature-empty {
  --fa: "\f2cb";
  --fa--fa: "\f2cb\f2cb";
}

.fa-temperature-0 {
  --fa: "\f2cb";
  --fa--fa: "\f2cb\f2cb";
}

.fa-thermometer-0 {
  --fa: "\f2cb";
  --fa--fa: "\f2cb\f2cb";
}

.fa-thermometer-empty {
  --fa: "\f2cb";
  --fa--fa: "\f2cb\f2cb";
}

.fa-bomb {
  --fa: "\f1e2";
  --fa--fa: "\f1e2\f1e2";
}

.fa-gauge-low {
  --fa: "\f627";
  --fa--fa: "\f627\f627";
}

.fa-tachometer-alt-slow {
  --fa: "\f627";
  --fa--fa: "\f627\f627";
}

.fa-registered {
  --fa: "\f25d";
  --fa--fa: "\f25d\f25d";
}

.fa-trash-can-plus {
  --fa: "\e2ac";
  --fa--fa: "\e2ac\e2ac";
}

.fa-address-card {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-contact-card {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-vcard {
  --fa: "\f2bb";
  --fa--fa: "\f2bb\f2bb";
}

.fa-chart-fft {
  --fa: "\e69e";
  --fa--fa: "\e69e\e69e";
}

.fa-scale-unbalanced-flip {
  --fa: "\f516";
  --fa--fa: "\f516\f516";
}

.fa-balance-scale-right {
  --fa: "\f516";
  --fa--fa: "\f516\f516";
}

.fa-globe-snow {
  --fa: "\f7a3";
  --fa--fa: "\f7a3\f7a3";
}

.fa-subscript {
  --fa: "\f12c";
  --fa--fa: "\f12c\f12c";
}

.fa-diamond-turn-right {
  --fa: "\f5eb";
  --fa--fa: "\f5eb\f5eb";
}

.fa-directions {
  --fa: "\f5eb";
  --fa--fa: "\f5eb\f5eb";
}

.fa-integral {
  --fa: "\f667";
  --fa--fa: "\f667\f667";
}

.fa-burst {
  --fa: "\e4dc";
  --fa--fa: "\e4dc\e4dc";
}

.fa-house-laptop {
  --fa: "\e066";
  --fa--fa: "\e066\e066";
}

.fa-laptop-house {
  --fa: "\e066";
  --fa--fa: "\e066\e066";
}

.fa-face-tired {
  --fa: "\f5c8";
  --fa--fa: "\f5c8\f5c8";
}

.fa-tired {
  --fa: "\f5c8";
  --fa--fa: "\f5c8\f5c8";
}

.fa-money-bills {
  --fa: "\e1f3";
  --fa--fa: "\e1f3\e1f3";
}

.fa-blinds-raised {
  --fa: "\f8fd";
  --fa--fa: "\f8fd\f8fd";
}

.fa-smog {
  --fa: "\f75f";
  --fa--fa: "\f75f\f75f";
}

.fa-ufo-beam {
  --fa: "\e048";
  --fa--fa: "\e048\e048";
}

.fa-hydra {
  --fa: "\e686";
  --fa--fa: "\e686\e686";
}

.fa-circle-caret-up {
  --fa: "\f331";
  --fa--fa: "\f331\f331";
}

.fa-caret-circle-up {
  --fa: "\f331";
  --fa--fa: "\f331\f331";
}

.fa-user-vneck-hair-long {
  --fa: "\e463";
  --fa--fa: "\e463\e463";
}

.fa-square-a-lock {
  --fa: "\e44d";
  --fa--fa: "\e44d\e44d";
}

.fa-crutch {
  --fa: "\f7f7";
  --fa--fa: "\f7f7\f7f7";
}

.fa-gas-pump-slash {
  --fa: "\f5f4";
  --fa--fa: "\f5f4\f5f4";
}

.fa-cloud-arrow-up {
  --fa: "\f0ee";
  --fa--fa: "\f0ee\f0ee";
}

.fa-cloud-upload {
  --fa: "\f0ee";
  --fa--fa: "\f0ee\f0ee";
}

.fa-cloud-upload-alt {
  --fa: "\f0ee";
  --fa--fa: "\f0ee\f0ee";
}

.fa-palette {
  --fa: "\f53f";
  --fa--fa: "\f53f\f53f";
}

.fa-transporter-4 {
  --fa: "\e2a5";
  --fa--fa: "\e2a5\e2a5";
}

.fa-chart-mixed-up-circle-currency {
  --fa: "\e5d8";
  --fa--fa: "\e5d8\e5d8";
}

.fa-objects-align-right {
  --fa: "\e3bf";
  --fa--fa: "\e3bf\e3bf";
}

.fa-arrows-turn-right {
  --fa: "\e4c0";
  --fa--fa: "\e4c0\e4c0";
}

.fa-vest {
  --fa: "\e085";
  --fa--fa: "\e085\e085";
}

.fa-pig {
  --fa: "\f706";
  --fa--fa: "\f706\f706";
}

.fa-inbox-full {
  --fa: "\e1ba";
  --fa--fa: "\e1ba\e1ba";
}

.fa-circle-envelope {
  --fa: "\e10c";
  --fa--fa: "\e10c\e10c";
}

.fa-envelope-circle {
  --fa: "\e10c";
  --fa--fa: "\e10c\e10c";
}

.fa-triangle-person-digging {
  --fa: "\f85d";
  --fa--fa: "\f85d\f85d";
}

.fa-construction {
  --fa: "\f85d";
  --fa--fa: "\f85d\f85d";
}

.fa-ferry {
  --fa: "\e4ea";
  --fa--fa: "\e4ea\e4ea";
}

.fa-bullseye-arrow {
  --fa: "\f648";
  --fa--fa: "\f648\f648";
}

.fa-arrows-down-to-people {
  --fa: "\e4b9";
  --fa--fa: "\e4b9\e4b9";
}

.fa-seedling {
  --fa: "\f4d8";
  --fa--fa: "\f4d8\f4d8";
}

.fa-sprout {
  --fa: "\f4d8";
  --fa--fa: "\f4d8\f4d8";
}

.fa-clock-seven {
  --fa: "\e350";
  --fa--fa: "\e350\e350";
}

.fa-left-right {
  --fa: "\f337";
  --fa--fa: "\f337\f337";
}

.fa-arrows-alt-h {
  --fa: "\f337";
  --fa--fa: "\f337\f337";
}

.fa-boxes-packing {
  --fa: "\e4c7";
  --fa--fa: "\e4c7\e4c7";
}

.fa-circle-arrow-left {
  --fa: "\f0a8";
  --fa--fa: "\f0a8\f0a8";
}

.fa-arrow-circle-left {
  --fa: "\f0a8";
  --fa--fa: "\f0a8\f0a8";
}

.fa-flashlight {
  --fa: "\f8b8";
  --fa--fa: "\f8b8\f8b8";
}

.fa-file-jpg {
  --fa: "\e646";
  --fa--fa: "\e646\e646";
}

.fa-group-arrows-rotate {
  --fa: "\e4f6";
  --fa--fa: "\e4f6\e4f6";
}

.fa-bowl-food {
  --fa: "\e4c6";
  --fa--fa: "\e4c6\e4c6";
}

.fa-square-9 {
  --fa: "\e25e";
  --fa--fa: "\e25e\e25e";
}

.fa-candy-cane {
  --fa: "\f786";
  --fa--fa: "\f786\f786";
}

.fa-arrow-down-wide-short {
  --fa: "\f160";
  --fa--fa: "\f160\f160";
}

.fa-sort-amount-asc {
  --fa: "\f160";
  --fa--fa: "\f160\f160";
}

.fa-sort-amount-down {
  --fa: "\f160";
  --fa--fa: "\f160\f160";
}

.fa-square-dollar {
  --fa: "\f2e9";
  --fa--fa: "\f2e9\f2e9";
}

.fa-dollar-square {
  --fa: "\f2e9";
  --fa--fa: "\f2e9\f2e9";
}

.fa-usd-square {
  --fa: "\f2e9";
  --fa--fa: "\f2e9\f2e9";
}

.fa-phone-arrow-right {
  --fa: "\e5be";
  --fa--fa: "\e5be\e5be";
}

.fa-hand-holding-seedling {
  --fa: "\f4bf";
  --fa--fa: "\f4bf\f4bf";
}

.fa-message-check {
  --fa: "\f4a2";
  --fa--fa: "\f4a2\f4a2";
}

.fa-comment-alt-check {
  --fa: "\f4a2";
  --fa--fa: "\f4a2\f4a2";
}

.fa-cloud-bolt {
  --fa: "\f76c";
  --fa--fa: "\f76c\f76c";
}

.fa-thunderstorm {
  --fa: "\f76c";
  --fa--fa: "\f76c\f76c";
}

.fa-chart-line-up-down {
  --fa: "\e5d7";
  --fa--fa: "\e5d7\e5d7";
}

.fa-text-slash {
  --fa: "\f87d";
  --fa--fa: "\f87d\f87d";
}

.fa-remove-format {
  --fa: "\f87d";
  --fa--fa: "\f87d\f87d";
}

.fa-watch {
  --fa: "\f2e1";
  --fa--fa: "\f2e1\f2e1";
}

.fa-circle-down-left {
  --fa: "\e107";
  --fa--fa: "\e107\e107";
}

.fa-text {
  --fa: "\f893";
  --fa--fa: "\f893\f893";
}

.fa-projector {
  --fa: "\f8d6";
  --fa--fa: "\f8d6\f8d6";
}

.fa-face-smile-wink {
  --fa: "\f4da";
  --fa--fa: "\f4da\f4da";
}

.fa-smile-wink {
  --fa: "\f4da";
  --fa--fa: "\f4da\f4da";
}

.fa-tombstone-blank {
  --fa: "\f721";
  --fa--fa: "\f721\f721";
}

.fa-tombstone-alt {
  --fa: "\f721";
  --fa--fa: "\f721\f721";
}

.fa-chess-king-piece {
  --fa: "\f440";
  --fa--fa: "\f440\f440";
}

.fa-chess-king-alt {
  --fa: "\f440";
  --fa--fa: "\f440\f440";
}

.fa-circle-6 {
  --fa: "\e0f3";
  --fa--fa: "\e0f3\e0f3";
}

.fa-waves-sine {
  --fa: "\e65d";
  --fa--fa: "\e65d\e65d";
}

.fa-left {
  --fa: "\f355";
  --fa--fa: "\f355\f355";
}

.fa-arrow-alt-left {
  --fa: "\f355";
  --fa--fa: "\f355\f355";
}

.fa-file-word {
  --fa: "\f1c2";
  --fa--fa: "\f1c2\f1c2";
}

.fa-file-powerpoint {
  --fa: "\f1c4";
  --fa--fa: "\f1c4\f1c4";
}

.fa-square-down {
  --fa: "\f350";
  --fa--fa: "\f350\f350";
}

.fa-arrow-alt-square-down {
  --fa: "\f350";
  --fa--fa: "\f350\f350";
}

.fa-objects-align-center-vertical {
  --fa: "\e3bd";
  --fa--fa: "\e3bd\e3bd";
}

.fa-arrows-left-right {
  --fa: "\f07e";
  --fa--fa: "\f07e\f07e";
}

.fa-arrows-h {
  --fa: "\f07e";
  --fa--fa: "\f07e\f07e";
}

.fa-house-lock {
  --fa: "\e510";
  --fa--fa: "\e510\e510";
}

.fa-cloud-arrow-down {
  --fa: "\f0ed";
  --fa--fa: "\f0ed\f0ed";
}

.fa-cloud-download {
  --fa: "\f0ed";
  --fa--fa: "\f0ed\f0ed";
}

.fa-cloud-download-alt {
  --fa: "\f0ed";
  --fa--fa: "\f0ed\f0ed";
}

.fa-wreath {
  --fa: "\f7e2";
  --fa--fa: "\f7e2\f7e2";
}

.fa-children {
  --fa: "\e4e1";
  --fa--fa: "\e4e1\e4e1";
}

.fa-meter-droplet {
  --fa: "\e1ea";
  --fa--fa: "\e1ea\e1ea";
}

.fa-chalkboard {
  --fa: "\f51b";
  --fa--fa: "\f51b\f51b";
}

.fa-blackboard {
  --fa: "\f51b";
  --fa--fa: "\f51b\f51b";
}

.fa-user-large-slash {
  --fa: "\f4fa";
  --fa--fa: "\f4fa\f4fa";
}

.fa-user-alt-slash {
  --fa: "\f4fa";
  --fa--fa: "\f4fa\f4fa";
}

.fa-signal-strong {
  --fa: "\f68f";
  --fa--fa: "\f68f\f68f";
}

.fa-signal-4 {
  --fa: "\f68f";
  --fa--fa: "\f68f\f68f";
}

.fa-lollipop {
  --fa: "\e424";
  --fa--fa: "\e424\e424";
}

.fa-lollypop {
  --fa: "\e424";
  --fa--fa: "\e424\e424";
}

.fa-list-tree {
  --fa: "\e1d2";
  --fa--fa: "\e1d2\e1d2";
}

.fa-envelope-open {
  --fa: "\f2b6";
  --fa--fa: "\f2b6\f2b6";
}

.fa-draw-circle {
  --fa: "\f5ed";
  --fa--fa: "\f5ed\f5ed";
}

.fa-cat-space {
  --fa: "\e001";
  --fa--fa: "\e001\e001";
}

.fa-handshake-simple-slash {
  --fa: "\e05f";
  --fa--fa: "\e05f\e05f";
}

.fa-handshake-alt-slash {
  --fa: "\e05f";
  --fa--fa: "\e05f\e05f";
}

.fa-rabbit-running {
  --fa: "\f709";
  --fa--fa: "\f709\f709";
}

.fa-rabbit-fast {
  --fa: "\f709";
  --fa--fa: "\f709\f709";
}

.fa-memo-pad {
  --fa: "\e1da";
  --fa--fa: "\e1da\e1da";
}

.fa-mattress-pillow {
  --fa: "\e525";
  --fa--fa: "\e525\e525";
}

.fa-alarm-plus {
  --fa: "\f844";
  --fa--fa: "\f844\f844";
}

.fa-alicorn {
  --fa: "\f6b0";
  --fa--fa: "\f6b0\f6b0";
}

.fa-comment-question {
  --fa: "\e14b";
  --fa--fa: "\e14b\e14b";
}

.fa-gingerbread-man {
  --fa: "\f79d";
  --fa--fa: "\f79d\f79d";
}

.fa-guarani-sign {
  --fa: "\e19a";
  --fa--fa: "\e19a\e19a";
}

.fa-burger-fries {
  --fa: "\e0cd";
  --fa--fa: "\e0cd\e0cd";
}

.fa-mug-tea {
  --fa: "\f875";
  --fa--fa: "\f875\f875";
}

.fa-border-top {
  --fa: "\f855";
  --fa--fa: "\f855\f855";
}

.fa-arrows-rotate {
  --fa: "\f021";
  --fa--fa: "\f021\f021";
}

.fa-refresh {
  --fa: "\f021";
  --fa--fa: "\f021\f021";
}

.fa-sync {
  --fa: "\f021";
  --fa--fa: "\f021\f021";
}

.fa-circle-book-open {
  --fa: "\e0ff";
  --fa--fa: "\e0ff\e0ff";
}

.fa-book-circle {
  --fa: "\e0ff";
  --fa--fa: "\e0ff\e0ff";
}

.fa-arrows-to-dotted-line {
  --fa: "\e0a6";
  --fa--fa: "\e0a6\e0a6";
}

.fa-fire-extinguisher {
  --fa: "\f134";
  --fa--fa: "\f134\f134";
}

.fa-magnifying-glass-arrows-rotate {
  --fa: "\e65e";
  --fa--fa: "\e65e\e65e";
}

.fa-garage-open {
  --fa: "\e00b";
  --fa--fa: "\e00b\e00b";
}

.fa-shelves-empty {
  --fa: "\e246";
  --fa--fa: "\e246\e246";
}

.fa-cruzeiro-sign {
  --fa: "\e152";
  --fa--fa: "\e152\e152";
}

.fa-watch-apple {
  --fa: "\e2cb";
  --fa--fa: "\e2cb\e2cb";
}

.fa-watch-calculator {
  --fa: "\f8f0";
  --fa--fa: "\f8f0\f8f0";
}

.fa-list-dropdown {
  --fa: "\e1cf";
  --fa--fa: "\e1cf\e1cf";
}

.fa-cabinet-filing {
  --fa: "\f64b";
  --fa--fa: "\f64b\f64b";
}

.fa-burger-soda {
  --fa: "\f858";
  --fa--fa: "\f858\f858";
}

.fa-square-arrow-up {
  --fa: "\f33c";
  --fa--fa: "\f33c\f33c";
}

.fa-arrow-square-up {
  --fa: "\f33c";
  --fa--fa: "\f33c\f33c";
}

.fa-greater-than-equal {
  --fa: "\f532";
  --fa--fa: "\f532\f532";
}

.fa-pallet-box {
  --fa: "\e208";
  --fa--fa: "\e208\e208";
}

.fa-face-confounded {
  --fa: "\e36c";
  --fa--fa: "\e36c\e36c";
}

.fa-shield-halved {
  --fa: "\f3ed";
  --fa--fa: "\f3ed\f3ed";
}

.fa-shield-alt {
  --fa: "\f3ed";
  --fa--fa: "\f3ed\f3ed";
}

.fa-truck-plow {
  --fa: "\f7de";
  --fa--fa: "\f7de\f7de";
}

.fa-book-atlas {
  --fa: "\f558";
  --fa--fa: "\f558\f558";
}

.fa-atlas {
  --fa: "\f558";
  --fa--fa: "\f558\f558";
}

.fa-virus {
  --fa: "\e074";
  --fa--fa: "\e074\e074";
}

.fa-grid-round-2 {
  --fa: "\e5db";
  --fa--fa: "\e5db\e5db";
}

.fa-comment-middle-top {
  --fa: "\e14a";
  --fa--fa: "\e14a\e14a";
}

.fa-wave {
  --fa: "\e65b";
  --fa--fa: "\e65b\e65b";
}

.fa-envelope-circle-check {
  --fa: "\e4e8";
  --fa--fa: "\e4e8\e4e8";
}

.fa-layer-group {
  --fa: "\f5fd";
  --fa--fa: "\f5fd\f5fd";
}

.fa-restroom-simple {
  --fa: "\e23a";
  --fa--fa: "\e23a\e23a";
}

.fa-arrows-to-dot {
  --fa: "\e4be";
  --fa--fa: "\e4be\e4be";
}

.fa-border-outer {
  --fa: "\f851";
  --fa--fa: "\f851\f851";
}

.fa-hashtag-lock {
  --fa: "\e415";
  --fa--fa: "\e415\e415";
}

.fa-clock-two-thirty {
  --fa: "\e35b";
  --fa--fa: "\e35b\e35b";
}

.fa-archway {
  --fa: "\f557";
  --fa--fa: "\f557\f557";
}

.fa-heart-circle-check {
  --fa: "\e4fd";
  --fa--fa: "\e4fd\e4fd";
}

.fa-house-chimney-crack {
  --fa: "\f6f1";
  --fa--fa: "\f6f1\f6f1";
}

.fa-house-damage {
  --fa: "\f6f1";
  --fa--fa: "\f6f1\f6f1";
}

.fa-file-zipper {
  --fa: "\f1c6";
  --fa--fa: "\f1c6\f1c6";
}

.fa-file-archive {
  --fa: "\f1c6";
  --fa--fa: "\f1c6\f1c6";
}

.fa-ticket-perforated {
  --fa: "\e63e";
  --fa--fa: "\e63e\e63e";
}

.fa-heart-half {
  --fa: "\e1ab";
  --fa--fa: "\e1ab\e1ab";
}

.fa-comment-check {
  --fa: "\f4ac";
  --fa--fa: "\f4ac\f4ac";
}

.fa-square {
  --fa: "\f0c8";
  --fa--fa: "\f0c8\f0c8";
}

.fa-memo {
  --fa: "\e1d8";
  --fa--fa: "\e1d8\e1d8";
}

.fa-martini-glass-empty {
  --fa: "\f000";
  --fa--fa: "\f000\f000";
}

.fa-glass-martini {
  --fa: "\f000";
  --fa--fa: "\f000\f000";
}

.fa-couch {
  --fa: "\f4b8";
  --fa--fa: "\f4b8\f4b8";
}

.fa-cedi-sign {
  --fa: "\e0df";
  --fa--fa: "\e0df\e0df";
}

.fa-italic {
  --fa: "\f033";
  --fa--fa: "\f033\f033";
}

.fa-glass-citrus {
  --fa: "\f869";
  --fa--fa: "\f869\f869";
}

.fa-calendar-lines-pen {
  --fa: "\e472";
  --fa--fa: "\e472\e472";
}

.fa-table-cells-column-lock {
  --fa: "\e678";
  --fa--fa: "\e678\e678";
}

.fa-church {
  --fa: "\f51d";
  --fa--fa: "\f51d\f51d";
}

.fa-person-snowmobiling {
  --fa: "\f7d1";
  --fa--fa: "\f7d1\f7d1";
}

.fa-snowmobile {
  --fa: "\f7d1";
  --fa--fa: "\f7d1\f7d1";
}

.fa-face-hushed {
  --fa: "\e37b";
  --fa--fa: "\e37b\e37b";
}

.fa-comments-dollar {
  --fa: "\f653";
  --fa--fa: "\f653\f653";
}

.fa-tickets-simple {
  --fa: "\e659";
  --fa--fa: "\e659\e659";
}

.fa-pickaxe {
  --fa: "\e5bf";
  --fa--fa: "\e5bf\e5bf";
}

.fa-link-simple-slash {
  --fa: "\e1ce";
  --fa--fa: "\e1ce\e1ce";
}

.fa-democrat {
  --fa: "\f747";
  --fa--fa: "\f747\f747";
}

.fa-face-confused {
  --fa: "\e36d";
  --fa--fa: "\e36d\e36d";
}

.fa-pinball {
  --fa: "\e229";
  --fa--fa: "\e229\e229";
}

.fa-z {
  --fa: "Z";
  --fa--fa: "ZZ";
}

.fa-person-skiing {
  --fa: "\f7c9";
  --fa--fa: "\f7c9\f7c9";
}

.fa-skiing {
  --fa: "\f7c9";
  --fa--fa: "\f7c9\f7c9";
}

.fa-deer {
  --fa: "\f78e";
  --fa--fa: "\f78e\f78e";
}

.fa-input-pipe {
  --fa: "\e1be";
  --fa--fa: "\e1be\e1be";
}

.fa-road-lock {
  --fa: "\e567";
  --fa--fa: "\e567\e567";
}

.fa-a {
  --fa: "A";
  --fa--fa: "AA";
}

.fa-bookmark-slash {
  --fa: "\e0c2";
  --fa--fa: "\e0c2\e0c2";
}

.fa-temperature-arrow-down {
  --fa: "\e03f";
  --fa--fa: "\e03f\e03f";
}

.fa-temperature-down {
  --fa: "\e03f";
  --fa--fa: "\e03f\e03f";
}

.fa-mace {
  --fa: "\f6f8";
  --fa--fa: "\f6f8\f6f8";
}

.fa-feather-pointed {
  --fa: "\f56b";
  --fa--fa: "\f56b\f56b";
}

.fa-feather-alt {
  --fa: "\f56b";
  --fa--fa: "\f56b\f56b";
}

.fa-sausage {
  --fa: "\f820";
  --fa--fa: "\f820\f820";
}

.fa-trash-can-clock {
  --fa: "\e2aa";
  --fa--fa: "\e2aa\e2aa";
}

.fa-p {
  --fa: "P";
  --fa--fa: "PP";
}

.fa-broom-wide {
  --fa: "\e5d1";
  --fa--fa: "\e5d1\e5d1";
}

.fa-snowflake {
  --fa: "\f2dc";
  --fa--fa: "\f2dc\f2dc";
}

.fa-stomach {
  --fa: "\f623";
  --fa--fa: "\f623\f623";
}

.fa-newspaper {
  --fa: "\f1ea";
  --fa--fa: "\f1ea\f1ea";
}

.fa-rectangle-ad {
  --fa: "\f641";
  --fa--fa: "\f641\f641";
}

.fa-ad {
  --fa: "\f641";
  --fa--fa: "\f641\f641";
}

.fa-guitar-electric {
  --fa: "\f8be";
  --fa--fa: "\f8be\f8be";
}

.fa-arrow-turn-down-right {
  --fa: "\e3d6";
  --fa--fa: "\e3d6\e3d6";
}

.fa-moon-cloud {
  --fa: "\f754";
  --fa--fa: "\f754\f754";
}

.fa-bread-slice-butter {
  --fa: "\e3e1";
  --fa--fa: "\e3e1\e3e1";
}

.fa-circle-arrow-right {
  --fa: "\f0a9";
  --fa--fa: "\f0a9\f0a9";
}

.fa-arrow-circle-right {
  --fa: "\f0a9";
  --fa--fa: "\f0a9\f0a9";
}

.fa-user-group-crown {
  --fa: "\f6a5";
  --fa--fa: "\f6a5\f6a5";
}

.fa-users-crown {
  --fa: "\f6a5";
  --fa--fa: "\f6a5\f6a5";
}

.fa-circle-i {
  --fa: "\e111";
  --fa--fa: "\e111\e111";
}

.fa-toilet-paper-check {
  --fa: "\e5b2";
  --fa--fa: "\e5b2\e5b2";
}

.fa-filter-circle-xmark {
  --fa: "\e17b";
  --fa--fa: "\e17b\e17b";
}

.fa-locust {
  --fa: "\e520";
  --fa--fa: "\e520\e520";
}

.fa-sort {
  --fa: "\f0dc";
  --fa--fa: "\f0dc\f0dc";
}

.fa-unsorted {
  --fa: "\f0dc";
  --fa--fa: "\f0dc\f0dc";
}

.fa-list-ol {
  --fa: "\f0cb";
  --fa--fa: "\f0cb\f0cb";
}

.fa-list-1-2 {
  --fa: "\f0cb";
  --fa--fa: "\f0cb\f0cb";
}

.fa-list-numeric {
  --fa: "\f0cb";
  --fa--fa: "\f0cb\f0cb";
}

.fa-chart-waterfall {
  --fa: "\e0eb";
  --fa--fa: "\e0eb\e0eb";
}

.fa-sparkle {
  --fa: "\e5d6";
  --fa--fa: "\e5d6\e5d6";
}

.fa-face-party {
  --fa: "\e383";
  --fa--fa: "\e383\e383";
}

.fa-kidneys {
  --fa: "\f5fb";
  --fa--fa: "\f5fb\f5fb";
}

.fa-wifi-exclamation {
  --fa: "\e2cf";
  --fa--fa: "\e2cf\e2cf";
}

.fa-chart-network {
  --fa: "\f78a";
  --fa--fa: "\f78a\f78a";
}

.fa-person-dress-burst {
  --fa: "\e544";
  --fa--fa: "\e544\e544";
}

.fa-dice-d4 {
  --fa: "\f6d0";
  --fa--fa: "\f6d0\f6d0";
}

.fa-money-check-dollar {
  --fa: "\f53d";
  --fa--fa: "\f53d\f53d";
}

.fa-money-check-alt {
  --fa: "\f53d";
  --fa--fa: "\f53d\f53d";
}

.fa-vector-square {
  --fa: "\f5cb";
  --fa--fa: "\f5cb\f5cb";
}

.fa-bread-slice {
  --fa: "\f7ec";
  --fa--fa: "\f7ec\f7ec";
}

.fa-language {
  --fa: "\f1ab";
  --fa--fa: "\f1ab\f1ab";
}

.fa-wheat-awn-slash {
  --fa: "\e338";
  --fa--fa: "\e338\e338";
}

.fa-face-kiss-wink-heart {
  --fa: "\f598";
  --fa--fa: "\f598\f598";
}

.fa-kiss-wink-heart {
  --fa: "\f598";
  --fa--fa: "\f598\f598";
}

.fa-dagger {
  --fa: "\f6cb";
  --fa--fa: "\f6cb\f6cb";
}

.fa-podium {
  --fa: "\f680";
  --fa--fa: "\f680\f680";
}

.fa-diamonds-4 {
  --fa: "\e68b";
  --fa--fa: "\e68b\e68b";
}

.fa-memo-circle-check {
  --fa: "\e1d9";
  --fa--fa: "\e1d9\e1d9";
}

.fa-route-highway {
  --fa: "\f61a";
  --fa--fa: "\f61a\f61a";
}

.fa-down-to-line {
  --fa: "\f34a";
  --fa--fa: "\f34a\f34a";
}

.fa-arrow-alt-to-bottom {
  --fa: "\f34a";
  --fa--fa: "\f34a\f34a";
}

.fa-filter {
  --fa: "\f0b0";
  --fa--fa: "\f0b0\f0b0";
}

.fa-square-g {
  --fa: "\e271";
  --fa--fa: "\e271\e271";
}

.fa-circle-phone {
  --fa: "\e11b";
  --fa--fa: "\e11b\e11b";
}

.fa-phone-circle {
  --fa: "\e11b";
  --fa--fa: "\e11b\e11b";
}

.fa-clipboard-prescription {
  --fa: "\f5e8";
  --fa--fa: "\f5e8\f5e8";
}

.fa-user-nurse-hair {
  --fa: "\e45d";
  --fa--fa: "\e45d\e45d";
}

.fa-question {
  --fa: "\?";
  --fa--fa: "\?\?";
}

.fa-file-signature {
  --fa: "\f573";
  --fa--fa: "\f573\f573";
}

.fa-toggle-large-on {
  --fa: "\e5b1";
  --fa--fa: "\e5b1\e5b1";
}

.fa-up-down-left-right {
  --fa: "\f0b2";
  --fa--fa: "\f0b2\f0b2";
}

.fa-arrows-alt {
  --fa: "\f0b2";
  --fa--fa: "\f0b2\f0b2";
}

.fa-dryer-heat {
  --fa: "\f862";
  --fa--fa: "\f862\f862";
}

.fa-dryer-alt {
  --fa: "\f862";
  --fa--fa: "\f862\f862";
}

.fa-house-chimney-user {
  --fa: "\e065";
  --fa--fa: "\e065\e065";
}

.fa-hand-holding-heart {
  --fa: "\f4be";
  --fa--fa: "\f4be\f4be";
}

.fa-arrow-up-small-big {
  --fa: "\f88f";
  --fa--fa: "\f88f\f88f";
}

.fa-sort-size-up-alt {
  --fa: "\f88f";
  --fa--fa: "\f88f\f88f";
}

.fa-train-track {
  --fa: "\e453";
  --fa--fa: "\e453\e453";
}

.fa-puzzle-piece {
  --fa: "\f12e";
  --fa--fa: "\f12e\f12e";
}

.fa-money-check {
  --fa: "\f53c";
  --fa--fa: "\f53c\f53c";
}

.fa-star-half-stroke {
  --fa: "\f5c0";
  --fa--fa: "\f5c0\f5c0";
}

.fa-star-half-alt {
  --fa: "\f5c0";
  --fa--fa: "\f5c0\f5c0";
}

.fa-file-exclamation {
  --fa: "\f31a";
  --fa--fa: "\f31a\f31a";
}

.fa-code {
  --fa: "\f121";
  --fa--fa: "\f121\f121";
}

.fa-whiskey-glass {
  --fa: "\f7a0";
  --fa--fa: "\f7a0\f7a0";
}

.fa-glass-whiskey {
  --fa: "\f7a0";
  --fa--fa: "\f7a0\f7a0";
}

.fa-moon-stars {
  --fa: "\f755";
  --fa--fa: "\f755\f755";
}

.fa-building-circle-exclamation {
  --fa: "\e4d3";
  --fa--fa: "\e4d3\e4d3";
}

.fa-clothes-hanger {
  --fa: "\e136";
  --fa--fa: "\e136\e136";
}

.fa-mobile-notch {
  --fa: "\e1ee";
  --fa--fa: "\e1ee\e1ee";
}

.fa-mobile-iphone {
  --fa: "\e1ee";
  --fa--fa: "\e1ee\e1ee";
}

.fa-magnifying-glass-chart {
  --fa: "\e522";
  --fa--fa: "\e522\e522";
}

.fa-arrow-up-right-from-square {
  --fa: "\f08e";
  --fa--fa: "\f08e\f08e";
}

.fa-external-link {
  --fa: "\f08e";
  --fa--fa: "\f08e\f08e";
}

.fa-cubes-stacked {
  --fa: "\e4e6";
  --fa--fa: "\e4e6\e4e6";
}

.fa-images-user {
  --fa: "\e1b9";
  --fa--fa: "\e1b9\e1b9";
}

.fa-won-sign {
  --fa: "\f159";
  --fa--fa: "\f159\f159";
}

.fa-krw {
  --fa: "\f159";
  --fa--fa: "\f159\f159";
}

.fa-won {
  --fa: "\f159";
  --fa--fa: "\f159\f159";
}

.fa-image-polaroid-user {
  --fa: "\e1b6";
  --fa--fa: "\e1b6\e1b6";
}

.fa-virus-covid {
  --fa: "\e4a8";
  --fa--fa: "\e4a8\e4a8";
}

.fa-square-ellipsis {
  --fa: "\e26e";
  --fa--fa: "\e26e\e26e";
}

.fa-pie {
  --fa: "\f705";
  --fa--fa: "\f705\f705";
}

.fa-chess-knight-piece {
  --fa: "\f442";
  --fa--fa: "\f442\f442";
}

.fa-chess-knight-alt {
  --fa: "\f442";
  --fa--fa: "\f442\f442";
}

.fa-austral-sign {
  --fa: "\e0a9";
  --fa--fa: "\e0a9\e0a9";
}

.fa-cloud-plus {
  --fa: "\e35e";
  --fa--fa: "\e35e\e35e";
}

.fa-f {
  --fa: "F";
  --fa--fa: "FF";
}

.fa-leaf {
  --fa: "\f06c";
  --fa--fa: "\f06c\f06c";
}

.fa-bed-bunk {
  --fa: "\f8f8";
  --fa--fa: "\f8f8\f8f8";
}

.fa-road {
  --fa: "\f018";
  --fa--fa: "\f018\f018";
}

.fa-taxi {
  --fa: "\f1ba";
  --fa--fa: "\f1ba\f1ba";
}

.fa-cab {
  --fa: "\f1ba";
  --fa--fa: "\f1ba\f1ba";
}

.fa-person-circle-plus {
  --fa: "\e541";
  --fa--fa: "\e541\e541";
}

.fa-chart-pie {
  --fa: "\f200";
  --fa--fa: "\f200\f200";
}

.fa-pie-chart {
  --fa: "\f200";
  --fa--fa: "\f200\f200";
}

.fa-bolt-lightning {
  --fa: "\e0b7";
  --fa--fa: "\e0b7\e0b7";
}

.fa-clock-eight {
  --fa: "\e345";
  --fa--fa: "\e345\e345";
}

.fa-sack-xmark {
  --fa: "\e56a";
  --fa--fa: "\e56a\e56a";
}

.fa-file-xls {
  --fa: "\e64d";
  --fa--fa: "\e64d\e64d";
}

.fa-file-excel {
  --fa: "\f1c3";
  --fa--fa: "\f1c3\f1c3";
}

.fa-file-contract {
  --fa: "\f56c";
  --fa--fa: "\f56c\f56c";
}

.fa-fish-fins {
  --fa: "\e4f2";
  --fa--fa: "\e4f2\e4f2";
}

.fa-circle-q {
  --fa: "\e11e";
  --fa--fa: "\e11e\e11e";
}

.fa-building-flag {
  --fa: "\e4d5";
  --fa--fa: "\e4d5\e4d5";
}

.fa-face-grin-beam {
  --fa: "\f582";
  --fa--fa: "\f582\f582";
}

.fa-grin-beam {
  --fa: "\f582";
  --fa--fa: "\f582\f582";
}

.fa-object-ungroup {
  --fa: "\f248";
  --fa--fa: "\f248\f248";
}

.fa-face-disguise {
  --fa: "\e370";
  --fa--fa: "\e370\e370";
}

.fa-circle-arrow-down-right {
  --fa: "\e0fa";
  --fa--fa: "\e0fa\e0fa";
}

.fa-alien-8bit {
  --fa: "\f8f6";
  --fa--fa: "\f8f6\f8f6";
}

.fa-alien-monster {
  --fa: "\f8f6";
  --fa--fa: "\f8f6\f8f6";
}

.fa-hand-point-ribbon {
  --fa: "\e1a6";
  --fa--fa: "\e1a6\e1a6";
}

.fa-poop {
  --fa: "\f619";
  --fa--fa: "\f619\f619";
}

.fa-object-exclude {
  --fa: "\e49c";
  --fa--fa: "\e49c\e49c";
}

.fa-telescope {
  --fa: "\e03e";
  --fa--fa: "\e03e\e03e";
}

.fa-location-pin {
  --fa: "\f041";
  --fa--fa: "\f041\f041";
}

.fa-map-marker {
  --fa: "\f041";
  --fa--fa: "\f041\f041";
}

.fa-square-list {
  --fa: "\e489";
  --fa--fa: "\e489\e489";
}

.fa-kaaba {
  --fa: "\f66b";
  --fa--fa: "\f66b\f66b";
}

.fa-toilet-paper {
  --fa: "\f71e";
  --fa--fa: "\f71e\f71e";
}

.fa-helmet-safety {
  --fa: "\f807";
  --fa--fa: "\f807\f807";
}

.fa-hard-hat {
  --fa: "\f807";
  --fa--fa: "\f807\f807";
}

.fa-hat-hard {
  --fa: "\f807";
  --fa--fa: "\f807\f807";
}

.fa-comment-code {
  --fa: "\e147";
  --fa--fa: "\e147\e147";
}

.fa-sim-cards {
  --fa: "\e251";
  --fa--fa: "\e251\e251";
}

.fa-starship {
  --fa: "\e039";
  --fa--fa: "\e039\e039";
}

.fa-eject {
  --fa: "\f052";
  --fa--fa: "\f052\f052";
}

.fa-circle-right {
  --fa: "\f35a";
  --fa--fa: "\f35a\f35a";
}

.fa-arrow-alt-circle-right {
  --fa: "\f35a";
  --fa--fa: "\f35a\f35a";
}

.fa-plane-circle-check {
  --fa: "\e555";
  --fa--fa: "\e555\e555";
}

.fa-seal {
  --fa: "\e241";
  --fa--fa: "\e241\e241";
}

.fa-user-cowboy {
  --fa: "\f8ea";
  --fa--fa: "\f8ea\f8ea";
}

.fa-hexagon-vertical-nft {
  --fa: "\e505";
  --fa--fa: "\e505\e505";
}

.fa-face-rolling-eyes {
  --fa: "\f5a5";
  --fa--fa: "\f5a5\f5a5";
}

.fa-meh-rolling-eyes {
  --fa: "\f5a5";
  --fa--fa: "\f5a5\f5a5";
}

.fa-bread-loaf {
  --fa: "\f7eb";
  --fa--fa: "\f7eb\f7eb";
}

.fa-rings-wedding {
  --fa: "\f81b";
  --fa--fa: "\f81b\f81b";
}

.fa-object-group {
  --fa: "\f247";
  --fa--fa: "\f247\f247";
}

.fa-french-fries {
  --fa: "\f803";
  --fa--fa: "\f803\f803";
}

.fa-chart-line {
  --fa: "\f201";
  --fa--fa: "\f201\f201";
}

.fa-line-chart {
  --fa: "\f201";
  --fa--fa: "\f201\f201";
}

.fa-calendar-arrow-down {
  --fa: "\e0d0";
  --fa--fa: "\e0d0\e0d0";
}

.fa-calendar-download {
  --fa: "\e0d0";
  --fa--fa: "\e0d0\e0d0";
}

.fa-send-back {
  --fa: "\f87e";
  --fa--fa: "\f87e\f87e";
}

.fa-mask-ventilator {
  --fa: "\e524";
  --fa--fa: "\e524\e524";
}

.fa-tickets {
  --fa: "\e658";
  --fa--fa: "\e658\e658";
}

.fa-signature-lock {
  --fa: "\e3ca";
  --fa--fa: "\e3ca\e3ca";
}

.fa-arrow-right {
  --fa: "\f061";
  --fa--fa: "\f061\f061";
}

.fa-signs-post {
  --fa: "\f277";
  --fa--fa: "\f277\f277";
}

.fa-map-signs {
  --fa: "\f277";
  --fa--fa: "\f277\f277";
}

.fa-octagon-plus {
  --fa: "\f301";
  --fa--fa: "\f301\f301";
}

.fa-plus-octagon {
  --fa: "\f301";
  --fa--fa: "\f301\f301";
}

.fa-cash-register {
  --fa: "\f788";
  --fa--fa: "\f788\f788";
}

.fa-person-circle-question {
  --fa: "\e542";
  --fa--fa: "\e542\e542";
}

.fa-melon-slice {
  --fa: "\e311";
  --fa--fa: "\e311\e311";
}

.fa-space-station-moon {
  --fa: "\e033";
  --fa--fa: "\e033\e033";
}

.fa-message-smile {
  --fa: "\f4aa";
  --fa--fa: "\f4aa\f4aa";
}

.fa-comment-alt-smile {
  --fa: "\f4aa";
  --fa--fa: "\f4aa\f4aa";
}

.fa-cup-straw {
  --fa: "\e363";
  --fa--fa: "\e363\e363";
}

.fa-left-from-line {
  --fa: "\f348";
  --fa--fa: "\f348\f348";
}

.fa-arrow-alt-from-right {
  --fa: "\f348";
  --fa--fa: "\f348\f348";
}

.fa-h {
  --fa: "H";
  --fa--fa: "HH";
}

.fa-basket-shopping-simple {
  --fa: "\e0af";
  --fa--fa: "\e0af\e0af";
}

.fa-shopping-basket-alt {
  --fa: "\e0af";
  --fa--fa: "\e0af\e0af";
}

.fa-hands-holding-heart {
  --fa: "\f4c3";
  --fa--fa: "\f4c3\f4c3";
}

.fa-hands-heart {
  --fa: "\f4c3";
  --fa--fa: "\f4c3\f4c3";
}

.fa-clock-nine {
  --fa: "\e34c";
  --fa--fa: "\e34c\e34c";
}

.fa-hammer-brush {
  --fa: "\e620";
  --fa--fa: "\e620\e620";
}

.fa-tarp {
  --fa: "\e57b";
  --fa--fa: "\e57b\e57b";
}

.fa-face-sleepy {
  --fa: "\e38e";
  --fa--fa: "\e38e\e38e";
}

.fa-hand-horns {
  --fa: "\e1a9";
  --fa--fa: "\e1a9\e1a9";
}

.fa-screwdriver-wrench {
  --fa: "\f7d9";
  --fa--fa: "\f7d9\f7d9";
}

.fa-tools {
  --fa: "\f7d9";
  --fa--fa: "\f7d9\f7d9";
}

.fa-arrows-to-eye {
  --fa: "\e4bf";
  --fa--fa: "\e4bf\e4bf";
}

.fa-circle-three-quarters {
  --fa: "\e125";
  --fa--fa: "\e125\e125";
}

.fa-trophy-star {
  --fa: "\f2eb";
  --fa--fa: "\f2eb\f2eb";
}

.fa-trophy-alt {
  --fa: "\f2eb";
  --fa--fa: "\f2eb\f2eb";
}

.fa-plug-circle-bolt {
  --fa: "\e55b";
  --fa--fa: "\e55b\e55b";
}

.fa-face-thermometer {
  --fa: "\e39a";
  --fa--fa: "\e39a\e39a";
}

.fa-grid-round-4 {
  --fa: "\e5dd";
  --fa--fa: "\e5dd\e5dd";
}

.fa-sign-posts-wrench {
  --fa: "\e626";
  --fa--fa: "\e626\e626";
}

.fa-shirt-running {
  --fa: "\e3c8";
  --fa--fa: "\e3c8\e3c8";
}

.fa-book-circle-arrow-up {
  --fa: "\e0bd";
  --fa--fa: "\e0bd\e0bd";
}

.fa-face-nauseated {
  --fa: "\e381";
  --fa--fa: "\e381\e381";
}

.fa-heart {
  --fa: "\f004";
  --fa--fa: "\f004\f004";
}

.fa-file-chart-pie {
  --fa: "\f65a";
  --fa--fa: "\f65a\f65a";
}

.fa-mars-and-venus {
  --fa: "\f224";
  --fa--fa: "\f224\f224";
}

.fa-house-user {
  --fa: "\e1b0";
  --fa--fa: "\e1b0\e1b0";
}

.fa-home-user {
  --fa: "\e1b0";
  --fa--fa: "\e1b0\e1b0";
}

.fa-circle-arrow-down-left {
  --fa: "\e0f9";
  --fa--fa: "\e0f9\e0f9";
}

.fa-dumpster-fire {
  --fa: "\f794";
  --fa--fa: "\f794\f794";
}

.fa-hexagon-minus {
  --fa: "\f307";
  --fa--fa: "\f307\f307";
}

.fa-minus-hexagon {
  --fa: "\f307";
  --fa--fa: "\f307\f307";
}

.fa-left-to-line {
  --fa: "\f34b";
  --fa--fa: "\f34b\f34b";
}

.fa-arrow-alt-to-left {
  --fa: "\f34b";
  --fa--fa: "\f34b\f34b";
}

.fa-house-crack {
  --fa: "\e3b1";
  --fa--fa: "\e3b1\e3b1";
}

.fa-paw-simple {
  --fa: "\f701";
  --fa--fa: "\f701\f701";
}

.fa-paw-alt {
  --fa: "\f701";
  --fa--fa: "\f701\f701";
}

.fa-arrow-left-long-to-line {
  --fa: "\e3d4";
  --fa--fa: "\e3d4\e3d4";
}

.fa-brackets-round {
  --fa: "\e0c5";
  --fa--fa: "\e0c5\e0c5";
}

.fa-parentheses {
  --fa: "\e0c5";
  --fa--fa: "\e0c5\e0c5";
}

.fa-martini-glass-citrus {
  --fa: "\f561";
  --fa--fa: "\f561\f561";
}

.fa-cocktail {
  --fa: "\f561";
  --fa--fa: "\f561\f561";
}

.fa-user-shakespeare {
  --fa: "\e2c2";
  --fa--fa: "\e2c2\e2c2";
}

.fa-arrow-right-to-arc {
  --fa: "\e4b2";
  --fa--fa: "\e4b2\e4b2";
}

.fa-face-surprise {
  --fa: "\f5c2";
  --fa--fa: "\f5c2\f5c2";
}

.fa-surprise {
  --fa: "\f5c2";
  --fa--fa: "\f5c2\f5c2";
}

.fa-bottle-water {
  --fa: "\e4c5";
  --fa--fa: "\e4c5\e4c5";
}

.fa-circle-pause {
  --fa: "\f28b";
  --fa--fa: "\f28b\f28b";
}

.fa-pause-circle {
  --fa: "\f28b";
  --fa--fa: "\f28b\f28b";
}

.fa-gauge-circle-plus {
  --fa: "\e498";
  --fa--fa: "\e498\e498";
}

.fa-folders {
  --fa: "\f660";
  --fa--fa: "\f660\f660";
}

.fa-angel {
  --fa: "\f779";
  --fa--fa: "\f779\f779";
}

.fa-value-absolute {
  --fa: "\f6a6";
  --fa--fa: "\f6a6\f6a6";
}

.fa-rabbit {
  --fa: "\f708";
  --fa--fa: "\f708\f708";
}

.fa-toilet-paper-slash {
  --fa: "\e072";
  --fa--fa: "\e072\e072";
}

.fa-circle-euro {
  --fa: "\e5ce";
  --fa--fa: "\e5ce\e5ce";
}

.fa-apple-whole {
  --fa: "\f5d1";
  --fa--fa: "\f5d1\f5d1";
}

.fa-apple-alt {
  --fa: "\f5d1";
  --fa--fa: "\f5d1\f5d1";
}

.fa-kitchen-set {
  --fa: "\e51a";
  --fa--fa: "\e51a\e51a";
}

.fa-diamond-half {
  --fa: "\e5b7";
  --fa--fa: "\e5b7\e5b7";
}

.fa-lock-keyhole {
  --fa: "\f30d";
  --fa--fa: "\f30d\f30d";
}

.fa-lock-alt {
  --fa: "\f30d";
  --fa--fa: "\f30d\f30d";
}

.fa-r {
  --fa: "R";
  --fa--fa: "RR";
}

.fa-temperature-quarter {
  --fa: "\f2ca";
  --fa--fa: "\f2ca\f2ca";
}

.fa-temperature-1 {
  --fa: "\f2ca";
  --fa--fa: "\f2ca\f2ca";
}

.fa-thermometer-1 {
  --fa: "\f2ca";
  --fa--fa: "\f2ca\f2ca";
}

.fa-thermometer-quarter {
  --fa: "\f2ca";
  --fa--fa: "\f2ca\f2ca";
}

.fa-square-info {
  --fa: "\f30f";
  --fa--fa: "\f30f\f30f";
}

.fa-info-square {
  --fa: "\f30f";
  --fa--fa: "\f30f\f30f";
}

.fa-wifi-slash {
  --fa: "\f6ac";
  --fa--fa: "\f6ac\f6ac";
}

.fa-toilet-paper-xmark {
  --fa: "\e5b3";
  --fa--fa: "\e5b3\e5b3";
}

.fa-hands-holding-dollar {
  --fa: "\f4c5";
  --fa--fa: "\f4c5\f4c5";
}

.fa-hands-usd {
  --fa: "\f4c5";
  --fa--fa: "\f4c5\f4c5";
}

.fa-cube {
  --fa: "\f1b2";
  --fa--fa: "\f1b2\f1b2";
}

.fa-arrow-down-triangle-square {
  --fa: "\f888";
  --fa--fa: "\f888\f888";
}

.fa-sort-shapes-down {
  --fa: "\f888";
  --fa--fa: "\f888\f888";
}

.fa-bitcoin-sign {
  --fa: "\e0b4";
  --fa--fa: "\e0b4\e0b4";
}

.fa-shutters {
  --fa: "\e449";
  --fa--fa: "\e449\e449";
}

.fa-shield-dog {
  --fa: "\e573";
  --fa--fa: "\e573\e573";
}

.fa-solar-panel {
  --fa: "\f5ba";
  --fa--fa: "\f5ba\f5ba";
}

.fa-lock-open {
  --fa: "\f3c1";
  --fa--fa: "\f3c1\f3c1";
}

.fa-table-tree {
  --fa: "\e293";
  --fa--fa: "\e293\e293";
}

.fa-house-chimney-heart {
  --fa: "\e1b2";
  --fa--fa: "\e1b2\e1b2";
}

.fa-tally-3 {
  --fa: "\e296";
  --fa--fa: "\e296\e296";
}

.fa-elevator {
  --fa: "\e16d";
  --fa--fa: "\e16d\e16d";
}

.fa-money-bill-transfer {
  --fa: "\e528";
  --fa--fa: "\e528\e528";
}

.fa-money-bill-trend-up {
  --fa: "\e529";
  --fa--fa: "\e529\e529";
}

.fa-house-flood-water-circle-arrow-right {
  --fa: "\e50f";
  --fa--fa: "\e50f\e50f";
}

.fa-square-poll-horizontal {
  --fa: "\f682";
  --fa--fa: "\f682\f682";
}

.fa-poll-h {
  --fa: "\f682";
  --fa--fa: "\f682\f682";
}

.fa-circle {
  --fa: "\f111";
  --fa--fa: "\f111\f111";
}

.fa-left-to-bracket {
  --fa: "\e66d";
  --fa--fa: "\e66d\e66d";
}

.fa-cart-circle-exclamation {
  --fa: "\e3f2";
  --fa--fa: "\e3f2\e3f2";
}

.fa-sword {
  --fa: "\f71c";
  --fa--fa: "\f71c\f71c";
}

.fa-backward-fast {
  --fa: "\f049";
  --fa--fa: "\f049\f049";
}

.fa-fast-backward {
  --fa: "\f049";
  --fa--fa: "\f049\f049";
}

.fa-recycle {
  --fa: "\f1b8";
  --fa--fa: "\f1b8\f1b8";
}

.fa-user-astronaut {
  --fa: "\f4fb";
  --fa--fa: "\f4fb\f4fb";
}

.fa-interrobang {
  --fa: "\e5ba";
  --fa--fa: "\e5ba\e5ba";
}

.fa-plane-slash {
  --fa: "\e069";
  --fa--fa: "\e069\e069";
}

.fa-circle-dashed {
  --fa: "\e105";
  --fa--fa: "\e105\e105";
}

.fa-trademark {
  --fa: "\f25c";
  --fa--fa: "\f25c\f25c";
}

.fa-basketball {
  --fa: "\f434";
  --fa--fa: "\f434\f434";
}

.fa-basketball-ball {
  --fa: "\f434";
  --fa--fa: "\f434\f434";
}

.fa-fork-knife {
  --fa: "\f2e6";
  --fa--fa: "\f2e6\f2e6";
}

.fa-utensils-alt {
  --fa: "\f2e6";
  --fa--fa: "\f2e6\f2e6";
}

.fa-satellite-dish {
  --fa: "\f7c0";
  --fa--fa: "\f7c0\f7c0";
}

.fa-badge-check {
  --fa: "\f336";
  --fa--fa: "\f336\f336";
}

.fa-circle-up {
  --fa: "\f35b";
  --fa--fa: "\f35b\f35b";
}

.fa-arrow-alt-circle-up {
  --fa: "\f35b";
  --fa--fa: "\f35b\f35b";
}

.fa-slider {
  --fa: "\e252";
  --fa--fa: "\e252\e252";
}

.fa-mobile-screen-button {
  --fa: "\f3cd";
  --fa--fa: "\f3cd\f3cd";
}

.fa-mobile-alt {
  --fa: "\f3cd";
  --fa--fa: "\f3cd\f3cd";
}

.fa-clock-one-thirty {
  --fa: "\e34f";
  --fa--fa: "\e34f\e34f";
}

.fa-inbox-out {
  --fa: "\f311";
  --fa--fa: "\f311\f311";
}

.fa-inbox-arrow-up {
  --fa: "\f311";
  --fa--fa: "\f311\f311";
}

.fa-cloud-slash {
  --fa: "\e137";
  --fa--fa: "\e137\e137";
}

.fa-volume-high {
  --fa: "\f028";
  --fa--fa: "\f028\f028";
}

.fa-volume-up {
  --fa: "\f028";
  --fa--fa: "\f028\f028";
}

.fa-users-rays {
  --fa: "\e593";
  --fa--fa: "\e593\e593";
}

.fa-wallet {
  --fa: "\f555";
  --fa--fa: "\f555\f555";
}

.fa-octagon-check {
  --fa: "\e426";
  --fa--fa: "\e426\e426";
}

.fa-flatbread-stuffed {
  --fa: "\e40c";
  --fa--fa: "\e40c\e40c";
}

.fa-clipboard-check {
  --fa: "\f46c";
  --fa--fa: "\f46c\f46c";
}

.fa-cart-circle-plus {
  --fa: "\e3f3";
  --fa--fa: "\e3f3\e3f3";
}

.fa-truck-clock {
  --fa: "\f48c";
  --fa--fa: "\f48c\f48c";
}

.fa-shipping-timed {
  --fa: "\f48c";
  --fa--fa: "\f48c\f48c";
}

.fa-pool-8-ball {
  --fa: "\e3c5";
  --fa--fa: "\e3c5\e3c5";
}

.fa-file-audio {
  --fa: "\f1c7";
  --fa--fa: "\f1c7\f1c7";
}

.fa-turn-down-left {
  --fa: "\e331";
  --fa--fa: "\e331\e331";
}

.fa-lock-hashtag {
  --fa: "\e423";
  --fa--fa: "\e423\e423";
}

.fa-chart-radar {
  --fa: "\e0e7";
  --fa--fa: "\e0e7\e0e7";
}

.fa-staff {
  --fa: "\f71b";
  --fa--fa: "\f71b\f71b";
}

.fa-burger {
  --fa: "\f805";
  --fa--fa: "\f805\f805";
}

.fa-hamburger {
  --fa: "\f805";
  --fa--fa: "\f805\f805";
}

.fa-utility-pole {
  --fa: "\e2c3";
  --fa--fa: "\e2c3\e2c3";
}

.fa-transporter-6 {
  --fa: "\e2a7";
  --fa--fa: "\e2a7\e2a7";
}

.fa-arrow-turn-left {
  --fa: "\e632";
  --fa--fa: "\e632\e632";
}

.fa-wrench {
  --fa: "\f0ad";
  --fa--fa: "\f0ad\f0ad";
}

.fa-bugs {
  --fa: "\e4d0";
  --fa--fa: "\e4d0\e4d0";
}

.fa-vector-polygon {
  --fa: "\e2c7";
  --fa--fa: "\e2c7\e2c7";
}

.fa-diagram-nested {
  --fa: "\e157";
  --fa--fa: "\e157\e157";
}

.fa-rupee-sign {
  --fa: "\f156";
  --fa--fa: "\f156\f156";
}

.fa-rupee {
  --fa: "\f156";
  --fa--fa: "\f156\f156";
}

.fa-file-image {
  --fa: "\f1c5";
  --fa--fa: "\f1c5\f1c5";
}

.fa-circle-question {
  --fa: "\f059";
  --fa--fa: "\f059\f059";
}

.fa-question-circle {
  --fa: "\f059";
  --fa--fa: "\f059\f059";
}

.fa-tickets-perforated {
  --fa: "\e63f";
  --fa--fa: "\e63f\e63f";
}

.fa-image-user {
  --fa: "\e1b8";
  --fa--fa: "\e1b8\e1b8";
}

.fa-buoy {
  --fa: "\e5b5";
  --fa--fa: "\e5b5\e5b5";
}

.fa-plane-departure {
  --fa: "\f5b0";
  --fa--fa: "\f5b0\f5b0";
}

.fa-handshake-slash {
  --fa: "\e060";
  --fa--fa: "\e060\e060";
}

.fa-book-bookmark {
  --fa: "\e0bb";
  --fa--fa: "\e0bb\e0bb";
}

.fa-border-center-h {
  --fa: "\f89c";
  --fa--fa: "\f89c\f89c";
}

.fa-can-food {
  --fa: "\e3e6";
  --fa--fa: "\e3e6\e3e6";
}

.fa-typewriter {
  --fa: "\f8e7";
  --fa--fa: "\f8e7\f8e7";
}

.fa-arrow-right-from-arc {
  --fa: "\e4b1";
  --fa--fa: "\e4b1\e4b1";
}

.fa-circle-k {
  --fa: "\e113";
  --fa--fa: "\e113\e113";
}

.fa-face-hand-over-mouth {
  --fa: "\e378";
  --fa--fa: "\e378\e378";
}

.fa-popcorn {
  --fa: "\f819";
  --fa--fa: "\f819\f819";
}

.fa-house-water {
  --fa: "\f74f";
  --fa--fa: "\f74f\f74f";
}

.fa-house-flood {
  --fa: "\f74f";
  --fa--fa: "\f74f\f74f";
}

.fa-object-subtract {
  --fa: "\e49e";
  --fa--fa: "\e49e\e49e";
}

.fa-code-branch {
  --fa: "\f126";
  --fa--fa: "\f126\f126";
}

.fa-warehouse-full {
  --fa: "\f495";
  --fa--fa: "\f495\f495";
}

.fa-warehouse-alt {
  --fa: "\f495";
  --fa--fa: "\f495\f495";
}

.fa-hat-cowboy {
  --fa: "\f8c0";
  --fa--fa: "\f8c0\f8c0";
}

.fa-bridge {
  --fa: "\e4c8";
  --fa--fa: "\e4c8\e4c8";
}

.fa-phone-flip {
  --fa: "\f879";
  --fa--fa: "\f879\f879";
}

.fa-phone-alt {
  --fa: "\f879";
  --fa--fa: "\f879\f879";
}

.fa-arrow-down-from-dotted-line {
  --fa: "\e090";
  --fa--fa: "\e090\e090";
}

.fa-file-doc {
  --fa: "\e5ed";
  --fa--fa: "\e5ed\e5ed";
}

.fa-square-quarters {
  --fa: "\e44e";
  --fa--fa: "\e44e\e44e";
}

.fa-truck-front {
  --fa: "\e2b7";
  --fa--fa: "\e2b7\e2b7";
}

.fa-cat {
  --fa: "\f6be";
  --fa--fa: "\f6be\f6be";
}

.fa-trash-xmark {
  --fa: "\e2b4";
  --fa--fa: "\e2b4\e2b4";
}

.fa-circle-caret-left {
  --fa: "\f32e";
  --fa--fa: "\f32e\f32e";
}

.fa-caret-circle-left {
  --fa: "\f32e";
  --fa--fa: "\f32e\f32e";
}

.fa-files {
  --fa: "\e178";
  --fa--fa: "\e178\e178";
}

.fa-anchor-circle-exclamation {
  --fa: "\e4ab";
  --fa--fa: "\e4ab\e4ab";
}

.fa-face-clouds {
  --fa: "\e47d";
  --fa--fa: "\e47d\e47d";
}

.fa-user-crown {
  --fa: "\f6a4";
  --fa--fa: "\f6a4\f6a4";
}

.fa-basket-shopping-plus {
  --fa: "\e653";
  --fa--fa: "\e653\e653";
}

.fa-truck-field {
  --fa: "\e58d";
  --fa--fa: "\e58d\e58d";
}

.fa-route {
  --fa: "\f4d7";
  --fa--fa: "\f4d7\f4d7";
}

.fa-cart-circle-check {
  --fa: "\e3f1";
  --fa--fa: "\e3f1\e3f1";
}

.fa-clipboard-question {
  --fa: "\e4e3";
  --fa--fa: "\e4e3\e4e3";
}

.fa-panorama {
  --fa: "\e209";
  --fa--fa: "\e209\e209";
}

.fa-comment-medical {
  --fa: "\f7f5";
  --fa--fa: "\f7f5\f7f5";
}

.fa-teeth-open {
  --fa: "\f62f";
  --fa--fa: "\f62f\f62f";
}

.fa-user-tie-hair-long {
  --fa: "\e460";
  --fa--fa: "\e460\e460";
}

.fa-file-circle-minus {
  --fa: "\e4ed";
  --fa--fa: "\e4ed\e4ed";
}

.fa-head-side-medical {
  --fa: "\f809";
  --fa--fa: "\f809\f809";
}

.fa-arrow-turn-right {
  --fa: "\e635";
  --fa--fa: "\e635\e635";
}

.fa-tags {
  --fa: "\f02c";
  --fa--fa: "\f02c\f02c";
}

.fa-wine-glass {
  --fa: "\f4e3";
  --fa--fa: "\f4e3\f4e3";
}

.fa-forward-fast {
  --fa: "\f050";
  --fa--fa: "\f050\f050";
}

.fa-fast-forward {
  --fa: "\f050";
  --fa--fa: "\f050\f050";
}

.fa-face-meh-blank {
  --fa: "\f5a4";
  --fa--fa: "\f5a4\f5a4";
}

.fa-meh-blank {
  --fa: "\f5a4";
  --fa--fa: "\f5a4\f5a4";
}

.fa-user-robot {
  --fa: "\e04b";
  --fa--fa: "\e04b\e04b";
}

.fa-square-parking {
  --fa: "\f540";
  --fa--fa: "\f540\f540";
}

.fa-parking {
  --fa: "\f540";
  --fa--fa: "\f540\f540";
}

.fa-card-diamond {
  --fa: "\e3ea";
  --fa--fa: "\e3ea\e3ea";
}

.fa-face-zipper {
  --fa: "\e3a5";
  --fa--fa: "\e3a5\e3a5";
}

.fa-face-raised-eyebrow {
  --fa: "\e388";
  --fa--fa: "\e388\e388";
}

.fa-house-signal {
  --fa: "\e012";
  --fa--fa: "\e012\e012";
}

.fa-square-chevron-up {
  --fa: "\f32c";
  --fa--fa: "\f32c\f32c";
}

.fa-chevron-square-up {
  --fa: "\f32c";
  --fa--fa: "\f32c\f32c";
}

.fa-bars-progress {
  --fa: "\f828";
  --fa--fa: "\f828\f828";
}

.fa-tasks-alt {
  --fa: "\f828";
  --fa--fa: "\f828\f828";
}

.fa-faucet-drip {
  --fa: "\e006";
  --fa--fa: "\e006\e006";
}

.fa-arrows-to-line {
  --fa: "\e0a7";
  --fa--fa: "\e0a7\e0a7";
}

.fa-dolphin {
  --fa: "\e168";
  --fa--fa: "\e168\e168";
}

.fa-arrow-up-right {
  --fa: "\e09f";
  --fa--fa: "\e09f\e09f";
}

.fa-circle-r {
  --fa: "\e120";
  --fa--fa: "\e120\e120";
}

.fa-cart-flatbed {
  --fa: "\f474";
  --fa--fa: "\f474\f474";
}

.fa-dolly-flatbed {
  --fa: "\f474";
  --fa--fa: "\f474\f474";
}

.fa-ban-smoking {
  --fa: "\f54d";
  --fa--fa: "\f54d\f54d";
}

.fa-smoking-ban {
  --fa: "\f54d";
  --fa--fa: "\f54d\f54d";
}

.fa-circle-sort-up {
  --fa: "\e032";
  --fa--fa: "\e032\e032";
}

.fa-sort-circle-up {
  --fa: "\e032";
  --fa--fa: "\e032\e032";
}

.fa-terminal {
  --fa: "\f120";
  --fa--fa: "\f120\f120";
}

.fa-mobile-button {
  --fa: "\f10b";
  --fa--fa: "\f10b\f10b";
}

.fa-house-medical-flag {
  --fa: "\e514";
  --fa--fa: "\e514\e514";
}

.fa-basket-shopping {
  --fa: "\f291";
  --fa--fa: "\f291\f291";
}

.fa-shopping-basket {
  --fa: "\f291";
  --fa--fa: "\f291\f291";
}

.fa-tape {
  --fa: "\f4db";
  --fa--fa: "\f4db\f4db";
}

.fa-chestnut {
  --fa: "\e3f6";
  --fa--fa: "\e3f6\e3f6";
}

.fa-bus-simple {
  --fa: "\f55e";
  --fa--fa: "\f55e\f55e";
}

.fa-bus-alt {
  --fa: "\f55e";
  --fa--fa: "\f55e\f55e";
}

.fa-eye {
  --fa: "\f06e";
  --fa--fa: "\f06e\f06e";
}

.fa-face-sad-cry {
  --fa: "\f5b3";
  --fa--fa: "\f5b3\f5b3";
}

.fa-sad-cry {
  --fa: "\f5b3";
  --fa--fa: "\f5b3\f5b3";
}

.fa-heat {
  --fa: "\e00c";
  --fa--fa: "\e00c\e00c";
}

.fa-ticket-airline {
  --fa: "\e29a";
  --fa--fa: "\e29a\e29a";
}

.fa-ticket-perforated-plane {
  --fa: "\e29a";
  --fa--fa: "\e29a\e29a";
}

.fa-ticket-plane {
  --fa: "\e29a";
  --fa--fa: "\e29a\e29a";
}

.fa-boot-heeled {
  --fa: "\e33f";
  --fa--fa: "\e33f\e33f";
}

.fa-arrows-minimize {
  --fa: "\e0a5";
  --fa--fa: "\e0a5\e0a5";
}

.fa-compress-arrows {
  --fa: "\e0a5";
  --fa--fa: "\e0a5\e0a5";
}

.fa-audio-description {
  --fa: "\f29e";
  --fa--fa: "\f29e\f29e";
}

.fa-person-military-to-person {
  --fa: "\e54c";
  --fa--fa: "\e54c\e54c";
}

.fa-file-shield {
  --fa: "\e4f0";
  --fa--fa: "\e4f0\e4f0";
}

.fa-hexagon {
  --fa: "\f312";
  --fa--fa: "\f312\f312";
}

.fa-manhole {
  --fa: "\e1d6";
  --fa--fa: "\e1d6\e1d6";
}

.fa-user-slash {
  --fa: "\f506";
  --fa--fa: "\f506\f506";
}

.fa-pen {
  --fa: "\f304";
  --fa--fa: "\f304\f304";
}

.fa-tower-observation {
  --fa: "\e586";
  --fa--fa: "\e586\e586";
}

.fa-floppy-disks {
  --fa: "\e183";
  --fa--fa: "\e183\e183";
}

.fa-toilet-paper-blank-under {
  --fa: "\e29f";
  --fa--fa: "\e29f\e29f";
}

.fa-toilet-paper-reverse-alt {
  --fa: "\e29f";
  --fa--fa: "\e29f\e29f";
}

.fa-file-code {
  --fa: "\f1c9";
  --fa--fa: "\f1c9\f1c9";
}

.fa-signal {
  --fa: "\f012";
  --fa--fa: "\f012\f012";
}

.fa-signal-5 {
  --fa: "\f012";
  --fa--fa: "\f012\f012";
}

.fa-signal-perfect {
  --fa: "\f012";
  --fa--fa: "\f012\f012";
}

.fa-pump {
  --fa: "\e442";
  --fa--fa: "\e442\e442";
}

.fa-bus {
  --fa: "\f207";
  --fa--fa: "\f207\f207";
}

.fa-heart-circle-xmark {
  --fa: "\e501";
  --fa--fa: "\e501\e501";
}

.fa-arrow-up-left-from-circle {
  --fa: "\e09e";
  --fa--fa: "\e09e\e09e";
}

.fa-house-chimney {
  --fa: "\e3af";
  --fa--fa: "\e3af\e3af";
}

.fa-home-lg {
  --fa: "\e3af";
  --fa--fa: "\e3af\e3af";
}

.fa-window-maximize {
  --fa: "\f2d0";
  --fa--fa: "\f2d0\f2d0";
}

.fa-dryer {
  --fa: "\f861";
  --fa--fa: "\f861\f861";
}

.fa-face-frown {
  --fa: "\f119";
  --fa--fa: "\f119\f119";
}

.fa-frown {
  --fa: "\f119";
  --fa--fa: "\f119\f119";
}

.fa-chess-bishop-piece {
  --fa: "\f43b";
  --fa--fa: "\f43b\f43b";
}

.fa-chess-bishop-alt {
  --fa: "\f43b";
  --fa--fa: "\f43b\f43b";
}

.fa-shirt-tank-top {
  --fa: "\e3c9";
  --fa--fa: "\e3c9\e3c9";
}

.fa-diploma {
  --fa: "\f5ea";
  --fa--fa: "\f5ea\f5ea";
}

.fa-scroll-ribbon {
  --fa: "\f5ea";
  --fa--fa: "\f5ea\f5ea";
}

.fa-screencast {
  --fa: "\e23e";
  --fa--fa: "\e23e\e23e";
}

.fa-walker {
  --fa: "\f831";
  --fa--fa: "\f831\f831";
}

.fa-prescription {
  --fa: "\f5b1";
  --fa--fa: "\f5b1\f5b1";
}

.fa-shop {
  --fa: "\f54f";
  --fa--fa: "\f54f\f54f";
}

.fa-store-alt {
  --fa: "\f54f";
  --fa--fa: "\f54f\f54f";
}

.fa-floppy-disk {
  --fa: "\f0c7";
  --fa--fa: "\f0c7\f0c7";
}

.fa-save {
  --fa: "\f0c7";
  --fa--fa: "\f0c7\f0c7";
}

.fa-vihara {
  --fa: "\f6a7";
  --fa--fa: "\f6a7\f6a7";
}

.fa-face-kiss-closed-eyes {
  --fa: "\e37d";
  --fa--fa: "\e37d\e37d";
}

.fa-scale-unbalanced {
  --fa: "\f515";
  --fa--fa: "\f515\f515";
}

.fa-balance-scale-left {
  --fa: "\f515";
  --fa--fa: "\f515\f515";
}

.fa-file-user {
  --fa: "\f65c";
  --fa--fa: "\f65c\f65c";
}

.fa-user-police-tie {
  --fa: "\e334";
  --fa--fa: "\e334\e334";
}

.fa-face-tongue-money {
  --fa: "\e39d";
  --fa--fa: "\e39d\e39d";
}

.fa-tennis-ball {
  --fa: "\f45e";
  --fa--fa: "\f45e\f45e";
}

.fa-square-l {
  --fa: "\e275";
  --fa--fa: "\e275\e275";
}

.fa-sort-up {
  --fa: "\f0de";
  --fa--fa: "\f0de\f0de";
}

.fa-sort-asc {
  --fa: "\f0de";
  --fa--fa: "\f0de\f0de";
}

.fa-calendar-arrow-up {
  --fa: "\e0d1";
  --fa--fa: "\e0d1\e0d1";
}

.fa-calendar-upload {
  --fa: "\e0d1";
  --fa--fa: "\e0d1\e0d1";
}

.fa-comment-dots {
  --fa: "\f4ad";
  --fa--fa: "\f4ad\f4ad";
}

.fa-commenting {
  --fa: "\f4ad";
  --fa--fa: "\f4ad\f4ad";
}

.fa-plant-wilt {
  --fa: "\e5aa";
  --fa--fa: "\e5aa\e5aa";
}

.fa-scarf {
  --fa: "\f7c1";
  --fa--fa: "\f7c1\f7c1";
}

.fa-album-circle-plus {
  --fa: "\e48c";
  --fa--fa: "\e48c\e48c";
}

.fa-user-nurse-hair-long {
  --fa: "\e45e";
  --fa--fa: "\e45e\e45e";
}

.fa-diamond {
  --fa: "\f219";
  --fa--fa: "\f219\f219";
}

.fa-square-left {
  --fa: "\f351";
  --fa--fa: "\f351\f351";
}

.fa-arrow-alt-square-left {
  --fa: "\f351";
  --fa--fa: "\f351\f351";
}

.fa-face-grin-squint {
  --fa: "\f585";
  --fa--fa: "\f585\f585";
}

.fa-grin-squint {
  --fa: "\f585";
  --fa--fa: "\f585\f585";
}

.fa-circle-ellipsis-vertical {
  --fa: "\e10b";
  --fa--fa: "\e10b\e10b";
}

.fa-hand-holding-dollar {
  --fa: "\f4c0";
  --fa--fa: "\f4c0\f4c0";
}

.fa-hand-holding-usd {
  --fa: "\f4c0";
  --fa--fa: "\f4c0\f4c0";
}

.fa-grid-dividers {
  --fa: "\e3ad";
  --fa--fa: "\e3ad\e3ad";
}

.fa-chart-diagram {
  --fa: "\e695";
  --fa--fa: "\e695\e695";
}

.fa-bacterium {
  --fa: "\e05a";
  --fa--fa: "\e05a\e05a";
}

.fa-hand-pointer {
  --fa: "\f25a";
  --fa--fa: "\f25a\f25a";
}

.fa-drum-steelpan {
  --fa: "\f56a";
  --fa--fa: "\f56a\f56a";
}

.fa-hand-scissors {
  --fa: "\f257";
  --fa--fa: "\f257\f257";
}

.fa-hands-praying {
  --fa: "\f684";
  --fa--fa: "\f684\f684";
}

.fa-praying-hands {
  --fa: "\f684";
  --fa--fa: "\f684\f684";
}

.fa-face-pensive {
  --fa: "\e384";
  --fa--fa: "\e384\e384";
}

.fa-user-music {
  --fa: "\f8eb";
  --fa--fa: "\f8eb\f8eb";
}

.fa-arrow-rotate-right {
  --fa: "\f01e";
  --fa--fa: "\f01e\f01e";
}

.fa-arrow-right-rotate {
  --fa: "\f01e";
  --fa--fa: "\f01e\f01e";
}

.fa-arrow-rotate-forward {
  --fa: "\f01e";
  --fa--fa: "\f01e\f01e";
}

.fa-redo {
  --fa: "\f01e";
  --fa--fa: "\f01e\f01e";
}

.fa-messages-dollar {
  --fa: "\f652";
  --fa--fa: "\f652\f652";
}

.fa-comments-alt-dollar {
  --fa: "\f652";
  --fa--fa: "\f652\f652";
}

.fa-sensor-on {
  --fa: "\e02b";
  --fa--fa: "\e02b\e02b";
}

.fa-balloon {
  --fa: "\e2e3";
  --fa--fa: "\e2e3\e2e3";
}

.fa-biohazard {
  --fa: "\f780";
  --fa--fa: "\f780\f780";
}

.fa-chess-queen-piece {
  --fa: "\f446";
  --fa--fa: "\f446\f446";
}

.fa-chess-queen-alt {
  --fa: "\f446";
  --fa--fa: "\f446\f446";
}

.fa-location-crosshairs {
  --fa: "\f601";
  --fa--fa: "\f601\f601";
}

.fa-location {
  --fa: "\f601";
  --fa--fa: "\f601\f601";
}

.fa-mars-double {
  --fa: "\f227";
  --fa--fa: "\f227\f227";
}

.fa-left-from-bracket {
  --fa: "\e66c";
  --fa--fa: "\e66c\e66c";
}

.fa-house-person-leave {
  --fa: "\e00f";
  --fa--fa: "\e00f\e00f";
}

.fa-house-leave {
  --fa: "\e00f";
  --fa--fa: "\e00f\e00f";
}

.fa-house-person-depart {
  --fa: "\e00f";
  --fa--fa: "\e00f\e00f";
}

.fa-ruler-triangle {
  --fa: "\f61c";
  --fa--fa: "\f61c\f61c";
}

.fa-card-club {
  --fa: "\e3e9";
  --fa--fa: "\e3e9\e3e9";
}

.fa-child-dress {
  --fa: "\e59c";
  --fa--fa: "\e59c\e59c";
}

.fa-users-between-lines {
  --fa: "\e591";
  --fa--fa: "\e591\e591";
}

.fa-lungs-virus {
  --fa: "\e067";
  --fa--fa: "\e067\e067";
}

.fa-spinner-third {
  --fa: "\f3f4";
  --fa--fa: "\f3f4\f3f4";
}

.fa-face-grin-tears {
  --fa: "\f588";
  --fa--fa: "\f588\f588";
}

.fa-grin-tears {
  --fa: "\f588";
  --fa--fa: "\f588\f588";
}

.fa-phone {
  --fa: "\f095";
  --fa--fa: "\f095\f095";
}

.fa-computer-mouse-scrollwheel {
  --fa: "\f8cd";
  --fa--fa: "\f8cd\f8cd";
}

.fa-mouse-alt {
  --fa: "\f8cd";
  --fa--fa: "\f8cd\f8cd";
}

.fa-calendar-xmark {
  --fa: "\f273";
  --fa--fa: "\f273\f273";
}

.fa-calendar-times {
  --fa: "\f273";
  --fa--fa: "\f273\f273";
}

.fa-child-reaching {
  --fa: "\e59d";
  --fa--fa: "\e59d\e59d";
}

.fa-table-layout {
  --fa: "\e290";
  --fa--fa: "\e290\e290";
}

.fa-narwhal {
  --fa: "\f6fe";
  --fa--fa: "\f6fe\f6fe";
}

.fa-ramp-loading {
  --fa: "\f4d4";
  --fa--fa: "\f4d4\f4d4";
}

.fa-calendar-circle-plus {
  --fa: "\e470";
  --fa--fa: "\e470\e470";
}

.fa-toothbrush {
  --fa: "\f635";
  --fa--fa: "\f635\f635";
}

.fa-border-inner {
  --fa: "\f84e";
  --fa--fa: "\f84e\f84e";
}

.fa-paw-claws {
  --fa: "\f702";
  --fa--fa: "\f702\f702";
}

.fa-kiwi-fruit {
  --fa: "\e30c";
  --fa--fa: "\e30c\e30c";
}

.fa-traffic-light-slow {
  --fa: "\f639";
  --fa--fa: "\f639\f639";
}

.fa-rectangle-code {
  --fa: "\e322";
  --fa--fa: "\e322\e322";
}

.fa-head-side-virus {
  --fa: "\e064";
  --fa--fa: "\e064\e064";
}

.fa-keyboard-brightness {
  --fa: "\e1c0";
  --fa--fa: "\e1c0\e1c0";
}

.fa-books-medical {
  --fa: "\f7e8";
  --fa--fa: "\f7e8\f7e8";
}

.fa-lightbulb-slash {
  --fa: "\f673";
  --fa--fa: "\f673\f673";
}

.fa-house-blank {
  --fa: "\e487";
  --fa--fa: "\e487\e487";
}

.fa-home-blank {
  --fa: "\e487";
  --fa--fa: "\e487\e487";
}

.fa-square-5 {
  --fa: "\e25a";
  --fa--fa: "\e25a\e25a";
}

.fa-square-heart {
  --fa: "\f4c8";
  --fa--fa: "\f4c8\f4c8";
}

.fa-heart-square {
  --fa: "\f4c8";
  --fa--fa: "\f4c8\f4c8";
}

.fa-puzzle {
  --fa: "\e443";
  --fa--fa: "\e443\e443";
}

.fa-user-gear {
  --fa: "\f4fe";
  --fa--fa: "\f4fe\f4fe";
}

.fa-user-cog {
  --fa: "\f4fe";
  --fa--fa: "\f4fe\f4fe";
}

.fa-pipe-circle-check {
  --fa: "\e436";
  --fa--fa: "\e436\e436";
}

.fa-arrow-up-1-9 {
  --fa: "\f163";
  --fa--fa: "\f163\f163";
}

.fa-sort-numeric-up {
  --fa: "\f163";
  --fa--fa: "\f163\f163";
}

.fa-octagon-exclamation {
  --fa: "\e204";
  --fa--fa: "\e204\e204";
}

.fa-dial-low {
  --fa: "\e15d";
  --fa--fa: "\e15d\e15d";
}

.fa-door-closed {
  --fa: "\f52a";
  --fa--fa: "\f52a\f52a";
}

.fa-laptop-mobile {
  --fa: "\f87a";
  --fa--fa: "\f87a\f87a";
}

.fa-phone-laptop {
  --fa: "\f87a";
  --fa--fa: "\f87a\f87a";
}

.fa-conveyor-belt-boxes {
  --fa: "\f46f";
  --fa--fa: "\f46f\f46f";
}

.fa-conveyor-belt-alt {
  --fa: "\f46f";
  --fa--fa: "\f46f\f46f";
}

.fa-shield-virus {
  --fa: "\e06c";
  --fa--fa: "\e06c\e06c";
}

.fa-starfighter-twin-ion-engine-advanced {
  --fa: "\e28e";
  --fa--fa: "\e28e\e28e";
}

.fa-starfighter-alt-advanced {
  --fa: "\e28e";
  --fa--fa: "\e28e\e28e";
}

.fa-dice-six {
  --fa: "\f526";
  --fa--fa: "\f526\f526";
}

.fa-starfighter-twin-ion-engine {
  --fa: "\e038";
  --fa--fa: "\e038\e038";
}

.fa-starfighter-alt {
  --fa: "\e038";
  --fa--fa: "\e038\e038";
}

.fa-rocket-launch {
  --fa: "\e027";
  --fa--fa: "\e027\e027";
}

.fa-mosquito-net {
  --fa: "\e52c";
  --fa--fa: "\e52c\e52c";
}

.fa-file-fragment {
  --fa: "\e697";
  --fa--fa: "\e697\e697";
}

.fa-vent-damper {
  --fa: "\e465";
  --fa--fa: "\e465\e465";
}

.fa-bridge-water {
  --fa: "\e4ce";
  --fa--fa: "\e4ce\e4ce";
}

.fa-ban-bug {
  --fa: "\f7f9";
  --fa--fa: "\f7f9\f7f9";
}

.fa-debug {
  --fa: "\f7f9";
  --fa--fa: "\f7f9\f7f9";
}

.fa-person-booth {
  --fa: "\f756";
  --fa--fa: "\f756\f756";
}

.fa-text-width {
  --fa: "\f035";
  --fa--fa: "\f035\f035";
}

.fa-garage-car {
  --fa: "\e00a";
  --fa--fa: "\e00a\e00a";
}

.fa-square-kanban {
  --fa: "\e488";
  --fa--fa: "\e488\e488";
}

.fa-hat-wizard {
  --fa: "\f6e8";
  --fa--fa: "\f6e8\f6e8";
}

.fa-chart-kanban {
  --fa: "\e64f";
  --fa--fa: "\e64f\e64f";
}

.fa-pen-fancy {
  --fa: "\f5ac";
  --fa--fa: "\f5ac\f5ac";
}

.fa-coffee-pot {
  --fa: "\e002";
  --fa--fa: "\e002\e002";
}

.fa-mouse-field {
  --fa: "\e5a8";
  --fa--fa: "\e5a8\e5a8";
}

.fa-person-digging {
  --fa: "\f85e";
  --fa--fa: "\f85e\f85e";
}

.fa-digging {
  --fa: "\f85e";
  --fa--fa: "\f85e\f85e";
}

.fa-shower-down {
  --fa: "\e24d";
  --fa--fa: "\e24d\e24d";
}

.fa-shower-alt {
  --fa: "\e24d";
  --fa--fa: "\e24d\e24d";
}

.fa-box-circle-check {
  --fa: "\e0c4";
  --fa--fa: "\e0c4\e0c4";
}

.fa-brightness {
  --fa: "\e0c9";
  --fa--fa: "\e0c9\e0c9";
}

.fa-car-side-bolt {
  --fa: "\e344";
  --fa--fa: "\e344\e344";
}

.fa-file-xml {
  --fa: "\e654";
  --fa--fa: "\e654\e654";
}

.fa-ornament {
  --fa: "\f7b8";
  --fa--fa: "\f7b8\f7b8";
}

.fa-phone-arrow-down-left {
  --fa: "\e223";
  --fa--fa: "\e223\e223";
}

.fa-phone-arrow-down {
  --fa: "\e223";
  --fa--fa: "\e223\e223";
}

.fa-phone-incoming {
  --fa: "\e223";
  --fa--fa: "\e223\e223";
}

.fa-cloud-word {
  --fa: "\e138";
  --fa--fa: "\e138\e138";
}

.fa-hand-fingers-crossed {
  --fa: "\e1a3";
  --fa--fa: "\e1a3\e1a3";
}

.fa-trash {
  --fa: "\f1f8";
  --fa--fa: "\f1f8\f1f8";
}

.fa-gauge-simple {
  --fa: "\f629";
  --fa--fa: "\f629\f629";
}

.fa-gauge-simple-med {
  --fa: "\f629";
  --fa--fa: "\f629\f629";
}

.fa-tachometer-average {
  --fa: "\f629";
  --fa--fa: "\f629\f629";
}

.fa-arrow-down-small-big {
  --fa: "\f88d";
  --fa--fa: "\f88d\f88d";
}

.fa-sort-size-down-alt {
  --fa: "\f88d";
  --fa--fa: "\f88d\f88d";
}

.fa-book-medical {
  --fa: "\f7e6";
  --fa--fa: "\f7e6\f7e6";
}

.fa-face-melting {
  --fa: "\e483";
  --fa--fa: "\e483\e483";
}

.fa-poo {
  --fa: "\f2fe";
  --fa--fa: "\f2fe\f2fe";
}

.fa-pen-clip-slash {
  --fa: "\e20f";
  --fa--fa: "\e20f\e20f";
}

.fa-pen-alt-slash {
  --fa: "\e20f";
  --fa--fa: "\e20f\e20f";
}

.fa-quote-right {
  --fa: "\f10e";
  --fa--fa: "\f10e\f10e";
}

.fa-quote-right-alt {
  --fa: "\f10e";
  --fa--fa: "\f10e\f10e";
}

.fa-scroll-old {
  --fa: "\f70f";
  --fa--fa: "\f70f\f70f";
}

.fa-guitars {
  --fa: "\f8bf";
  --fa--fa: "\f8bf\f8bf";
}

.fa-phone-xmark {
  --fa: "\e227";
  --fa--fa: "\e227\e227";
}

.fa-hose {
  --fa: "\e419";
  --fa--fa: "\e419\e419";
}

.fa-clock-six {
  --fa: "\e352";
  --fa--fa: "\e352\e352";
}

.fa-shirt {
  --fa: "\f553";
  --fa--fa: "\f553\f553";
}

.fa-t-shirt {
  --fa: "\f553";
  --fa--fa: "\f553\f553";
}

.fa-tshirt {
  --fa: "\f553";
  --fa--fa: "\f553\f553";
}

.fa-billboard {
  --fa: "\e5cd";
  --fa--fa: "\e5cd\e5cd";
}

.fa-square-r {
  --fa: "\e27c";
  --fa--fa: "\e27c\e27c";
}

.fa-cubes {
  --fa: "\f1b3";
  --fa--fa: "\f1b3\f1b3";
}

.fa-envelope-open-dollar {
  --fa: "\f657";
  --fa--fa: "\f657\f657";
}

.fa-divide {
  --fa: "\f529";
  --fa--fa: "\f529\f529";
}

.fa-sun-cloud {
  --fa: "\f763";
  --fa--fa: "\f763\f763";
}

.fa-lamp-floor {
  --fa: "\e015";
  --fa--fa: "\e015\e015";
}

.fa-square-7 {
  --fa: "\e25c";
  --fa--fa: "\e25c\e25c";
}

.fa-tenge-sign {
  --fa: "\f7d7";
  --fa--fa: "\f7d7\f7d7";
}

.fa-tenge {
  --fa: "\f7d7";
  --fa--fa: "\f7d7\f7d7";
}

.fa-headphones {
  --fa: "\f025";
  --fa--fa: "\f025\f025";
}

.fa-hands-holding {
  --fa: "\f4c2";
  --fa--fa: "\f4c2\f4c2";
}

.fa-campfire {
  --fa: "\f6ba";
  --fa--fa: "\f6ba\f6ba";
}

.fa-circle-ampersand {
  --fa: "\e0f8";
  --fa--fa: "\e0f8\e0f8";
}

.fa-snowflakes {
  --fa: "\f7cf";
  --fa--fa: "\f7cf\f7cf";
}

.fa-hands-clapping {
  --fa: "\e1a8";
  --fa--fa: "\e1a8\e1a8";
}

.fa-republican {
  --fa: "\f75e";
  --fa--fa: "\f75e\f75e";
}

.fa-leaf-maple {
  --fa: "\f6f6";
  --fa--fa: "\f6f6\f6f6";
}

.fa-arrow-left {
  --fa: "\f060";
  --fa--fa: "\f060\f060";
}

.fa-person-circle-xmark {
  --fa: "\e543";
  --fa--fa: "\e543\e543";
}

.fa-ruler {
  --fa: "\f545";
  --fa--fa: "\f545\f545";
}

.fa-arrow-left-from-bracket {
  --fa: "\e668";
  --fa--fa: "\e668\e668";
}

.fa-cup-straw-swoosh {
  --fa: "\e364";
  --fa--fa: "\e364\e364";
}

.fa-temperature-sun {
  --fa: "\f76a";
  --fa--fa: "\f76a\f76a";
}

.fa-temperature-hot {
  --fa: "\f76a";
  --fa--fa: "\f76a\f76a";
}

.fa-align-left {
  --fa: "\f036";
  --fa--fa: "\f036\f036";
}

.fa-dice-d6 {
  --fa: "\f6d1";
  --fa--fa: "\f6d1\f6d1";
}

.fa-restroom {
  --fa: "\f7bd";
  --fa--fa: "\f7bd\f7bd";
}

.fa-high-definition {
  --fa: "\e1ae";
  --fa--fa: "\e1ae\e1ae";
}

.fa-rectangle-hd {
  --fa: "\e1ae";
  --fa--fa: "\e1ae\e1ae";
}

.fa-j {
  --fa: "J";
  --fa--fa: "JJ";
}

.fa-galaxy {
  --fa: "\e008";
  --fa--fa: "\e008\e008";
}

.fa-users-viewfinder {
  --fa: "\e595";
  --fa--fa: "\e595\e595";
}

.fa-file-video {
  --fa: "\f1c8";
  --fa--fa: "\f1c8\f1c8";
}

.fa-cherries {
  --fa: "\e0ec";
  --fa--fa: "\e0ec\e0ec";
}

.fa-up-right-from-square {
  --fa: "\f35d";
  --fa--fa: "\f35d\f35d";
}

.fa-external-link-alt {
  --fa: "\f35d";
  --fa--fa: "\f35d\f35d";
}

.fa-circle-sort {
  --fa: "\e030";
  --fa--fa: "\e030\e030";
}

.fa-sort-circle {
  --fa: "\e030";
  --fa--fa: "\e030\e030";
}

.fa-table-cells {
  --fa: "\f00a";
  --fa--fa: "\f00a\f00a";
}

.fa-th {
  --fa: "\f00a";
  --fa--fa: "\f00a\f00a";
}

.fa-bag-shopping-minus {
  --fa: "\e650";
  --fa--fa: "\e650\e650";
}

.fa-file-pdf {
  --fa: "\f1c1";
  --fa--fa: "\f1c1\f1c1";
}

.fa-siren {
  --fa: "\e02d";
  --fa--fa: "\e02d\e02d";
}

.fa-arrow-up-to-dotted-line {
  --fa: "\e0a1";
  --fa--fa: "\e0a1\e0a1";
}

.fa-image-landscape {
  --fa: "\e1b5";
  --fa--fa: "\e1b5\e1b5";
}

.fa-landscape {
  --fa: "\e1b5";
  --fa--fa: "\e1b5\e1b5";
}

.fa-tank-water {
  --fa: "\e452";
  --fa--fa: "\e452\e452";
}

.fa-curling-stone {
  --fa: "\f44a";
  --fa--fa: "\f44a\f44a";
}

.fa-curling {
  --fa: "\f44a";
  --fa--fa: "\f44a\f44a";
}

.fa-gamepad-modern {
  --fa: "\e5a2";
  --fa--fa: "\e5a2\e5a2";
}

.fa-gamepad-alt {
  --fa: "\e5a2";
  --fa--fa: "\e5a2\e5a2";
}

.fa-messages-question {
  --fa: "\e1e7";
  --fa--fa: "\e1e7\e1e7";
}

.fa-book-bible {
  --fa: "\f647";
  --fa--fa: "\f647\f647";
}

.fa-bible {
  --fa: "\f647";
  --fa--fa: "\f647\f647";
}

.fa-o {
  --fa: "O";
  --fa--fa: "OO";
}

.fa-suitcase-medical {
  --fa: "\f0fa";
  --fa--fa: "\f0fa\f0fa";
}

.fa-medkit {
  --fa: "\f0fa";
  --fa--fa: "\f0fa\f0fa";
}

.fa-briefcase-arrow-right {
  --fa: "\e2f2";
  --fa--fa: "\e2f2\e2f2";
}

.fa-expand-wide {
  --fa: "\f320";
  --fa--fa: "\f320\f320";
}

.fa-clock-eleven-thirty {
  --fa: "\e348";
  --fa--fa: "\e348\e348";
}

.fa-rv {
  --fa: "\f7be";
  --fa--fa: "\f7be\f7be";
}

.fa-user-secret {
  --fa: "\f21b";
  --fa--fa: "\f21b\f21b";
}

.fa-otter {
  --fa: "\f700";
  --fa--fa: "\f700\f700";
}

.fa-dreidel {
  --fa: "\f792";
  --fa--fa: "\f792\f792";
}

.fa-person-dress {
  --fa: "\f182";
  --fa--fa: "\f182\f182";
}

.fa-female {
  --fa: "\f182";
  --fa--fa: "\f182\f182";
}

.fa-comment-dollar {
  --fa: "\f651";
  --fa--fa: "\f651\f651";
}

.fa-business-time {
  --fa: "\f64a";
  --fa--fa: "\f64a\f64a";
}

.fa-briefcase-clock {
  --fa: "\f64a";
  --fa--fa: "\f64a\f64a";
}

.fa-flower-tulip {
  --fa: "\f801";
  --fa--fa: "\f801\f801";
}

.fa-people-pants-simple {
  --fa: "\e21a";
  --fa--fa: "\e21a\e21a";
}

.fa-cloud-drizzle {
  --fa: "\f738";
  --fa--fa: "\f738\f738";
}

.fa-table-cells-large {
  --fa: "\f009";
  --fa--fa: "\f009\f009";
}

.fa-th-large {
  --fa: "\f009";
  --fa--fa: "\f009\f009";
}

.fa-book-tanakh {
  --fa: "\f827";
  --fa--fa: "\f827\f827";
}

.fa-tanakh {
  --fa: "\f827";
  --fa--fa: "\f827\f827";
}

.fa-solar-system {
  --fa: "\e02f";
  --fa--fa: "\e02f\e02f";
}

.fa-seal-question {
  --fa: "\e243";
  --fa--fa: "\e243\e243";
}

.fa-phone-volume {
  --fa: "\f2a0";
  --fa--fa: "\f2a0\f2a0";
}

.fa-volume-control-phone {
  --fa: "\f2a0";
  --fa--fa: "\f2a0\f2a0";
}

.fa-disc-drive {
  --fa: "\f8b5";
  --fa--fa: "\f8b5\f8b5";
}

.fa-hat-cowboy-side {
  --fa: "\f8c1";
  --fa--fa: "\f8c1\f8c1";
}

.fa-table-rows {
  --fa: "\e292";
  --fa--fa: "\e292\e292";
}

.fa-rows {
  --fa: "\e292";
  --fa--fa: "\e292\e292";
}

.fa-location-exclamation {
  --fa: "\f608";
  --fa--fa: "\f608\f608";
}

.fa-map-marker-exclamation {
  --fa: "\f608";
  --fa--fa: "\f608\f608";
}

.fa-face-fearful {
  --fa: "\e375";
  --fa--fa: "\e375\e375";
}

.fa-clipboard-user {
  --fa: "\f7f3";
  --fa--fa: "\f7f3\f7f3";
}

.fa-bus-school {
  --fa: "\f5dd";
  --fa--fa: "\f5dd\f5dd";
}

.fa-film-slash {
  --fa: "\e179";
  --fa--fa: "\e179\e179";
}

.fa-square-arrow-down-right {
  --fa: "\e262";
  --fa--fa: "\e262\e262";
}

.fa-book-sparkles {
  --fa: "\f6b8";
  --fa--fa: "\f6b8\f6b8";
}

.fa-book-spells {
  --fa: "\f6b8";
  --fa--fa: "\f6b8\f6b8";
}

.fa-washing-machine {
  --fa: "\f898";
  --fa--fa: "\f898\f898";
}

.fa-washer {
  --fa: "\f898";
  --fa--fa: "\f898\f898";
}

.fa-child {
  --fa: "\f1ae";
  --fa--fa: "\f1ae\f1ae";
}

.fa-lira-sign {
  --fa: "\f195";
  --fa--fa: "\f195\f195";
}

.fa-user-visor {
  --fa: "\e04c";
  --fa--fa: "\e04c\e04c";
}

.fa-file-plus-minus {
  --fa: "\e177";
  --fa--fa: "\e177\e177";
}

.fa-chess-clock-flip {
  --fa: "\f43e";
  --fa--fa: "\f43e\f43e";
}

.fa-chess-clock-alt {
  --fa: "\f43e";
  --fa--fa: "\f43e\f43e";
}

.fa-satellite {
  --fa: "\f7bf";
  --fa--fa: "\f7bf\f7bf";
}

.fa-truck-fire {
  --fa: "\e65a";
  --fa--fa: "\e65a\e65a";
}

.fa-plane-lock {
  --fa: "\e558";
  --fa--fa: "\e558\e558";
}

.fa-steering-wheel {
  --fa: "\f622";
  --fa--fa: "\f622\f622";
}

.fa-tag {
  --fa: "\f02b";
  --fa--fa: "\f02b\f02b";
}

.fa-stretcher {
  --fa: "\f825";
  --fa--fa: "\f825\f825";
}

.fa-book-section {
  --fa: "\e0c1";
  --fa--fa: "\e0c1\e0c1";
}

.fa-book-law {
  --fa: "\e0c1";
  --fa--fa: "\e0c1\e0c1";
}

.fa-inboxes {
  --fa: "\e1bb";
  --fa--fa: "\e1bb\e1bb";
}

.fa-coffee-bean {
  --fa: "\e13e";
  --fa--fa: "\e13e\e13e";
}

.fa-circle-yen {
  --fa: "\e5d0";
  --fa--fa: "\e5d0\e5d0";
}

.fa-brackets-curly {
  --fa: "\f7ea";
  --fa--fa: "\f7ea\f7ea";
}

.fa-ellipsis-stroke-vertical {
  --fa: "\f39c";
  --fa--fa: "\f39c\f39c";
}

.fa-ellipsis-v-alt {
  --fa: "\f39c";
  --fa--fa: "\f39c\f39c";
}

.fa-comment {
  --fa: "\f075";
  --fa--fa: "\f075\f075";
}

.fa-square-1 {
  --fa: "\e256";
  --fa--fa: "\e256\e256";
}

.fa-cake-candles {
  --fa: "\f1fd";
  --fa--fa: "\f1fd\f1fd";
}

.fa-birthday-cake {
  --fa: "\f1fd";
  --fa--fa: "\f1fd\f1fd";
}

.fa-cake {
  --fa: "\f1fd";
  --fa--fa: "\f1fd\f1fd";
}

.fa-head-side {
  --fa: "\f6e9";
  --fa--fa: "\f6e9\f6e9";
}

.fa-truck-ladder {
  --fa: "\e657";
  --fa--fa: "\e657\e657";
}

.fa-envelope {
  --fa: "\f0e0";
  --fa--fa: "\f0e0\f0e0";
}

.fa-dolly-empty {
  --fa: "\f473";
  --fa--fa: "\f473\f473";
}

.fa-face-tissue {
  --fa: "\e39c";
  --fa--fa: "\e39c\e39c";
}

.fa-angles-up {
  --fa: "\f102";
  --fa--fa: "\f102\f102";
}

.fa-angle-double-up {
  --fa: "\f102";
  --fa--fa: "\f102\f102";
}

.fa-bin-recycle {
  --fa: "\e5f7";
  --fa--fa: "\e5f7\e5f7";
}

.fa-paperclip {
  --fa: "\f0c6";
  --fa--fa: "\f0c6\f0c6";
}

.fa-chart-line-down {
  --fa: "\f64d";
  --fa--fa: "\f64d\f64d";
}

.fa-arrow-right-to-city {
  --fa: "\e4b3";
  --fa--fa: "\e4b3\e4b3";
}

.fa-lock-a {
  --fa: "\e422";
  --fa--fa: "\e422\e422";
}

.fa-ribbon {
  --fa: "\f4d6";
  --fa--fa: "\f4d6\f4d6";
}

.fa-lungs {
  --fa: "\f604";
  --fa--fa: "\f604\f604";
}

.fa-person-pinball {
  --fa: "\e21d";
  --fa--fa: "\e21d\e21d";
}

.fa-arrow-up-9-1 {
  --fa: "\f887";
  --fa--fa: "\f887\f887";
}

.fa-sort-numeric-up-alt {
  --fa: "\f887";
  --fa--fa: "\f887\f887";
}

.fa-apple-core {
  --fa: "\e08f";
  --fa--fa: "\e08f\e08f";
}

.fa-circle-y {
  --fa: "\e12f";
  --fa--fa: "\e12f\e12f";
}

.fa-h6 {
  --fa: "\e413";
  --fa--fa: "\e413\e413";
}

.fa-litecoin-sign {
  --fa: "\e1d3";
  --fa--fa: "\e1d3\e1d3";
}

.fa-bottle-baby {
  --fa: "\e673";
  --fa--fa: "\e673\e673";
}

.fa-circle-small {
  --fa: "\e122";
  --fa--fa: "\e122\e122";
}

.fa-border-none {
  --fa: "\f850";
  --fa--fa: "\f850\f850";
}

.fa-arrow-turn-down-left {
  --fa: "\e2e1";
  --fa--fa: "\e2e1\e2e1";
}

.fa-circle-wifi-circle-wifi {
  --fa: "\e67e";
  --fa--fa: "\e67e\e67e";
}

.fa-circle-wifi-group {
  --fa: "\e67e";
  --fa--fa: "\e67e\e67e";
}

.fa-circle-nodes {
  --fa: "\e4e2";
  --fa--fa: "\e4e2\e4e2";
}

.fa-parachute-box {
  --fa: "\f4cd";
  --fa--fa: "\f4cd\f4cd";
}

.fa-reflect-horizontal {
  --fa: "\e664";
  --fa--fa: "\e664\e664";
}

.fa-message-medical {
  --fa: "\f7f4";
  --fa--fa: "\f7f4\f7f4";
}

.fa-comment-alt-medical {
  --fa: "\f7f4";
  --fa--fa: "\f7f4\f7f4";
}

.fa-rugby-ball {
  --fa: "\e3c6";
  --fa--fa: "\e3c6\e3c6";
}

.fa-comment-music {
  --fa: "\f8b0";
  --fa--fa: "\f8b0\f8b0";
}

.fa-indent {
  --fa: "\f03c";
  --fa--fa: "\f03c\f03c";
}

.fa-tree-deciduous {
  --fa: "\f400";
  --fa--fa: "\f400\f400";
}

.fa-tree-alt {
  --fa: "\f400";
  --fa--fa: "\f400\f400";
}

.fa-puzzle-piece-simple {
  --fa: "\e231";
  --fa--fa: "\e231\e231";
}

.fa-puzzle-piece-alt {
  --fa: "\e231";
  --fa--fa: "\e231\e231";
}

.fa-truck-field-un {
  --fa: "\e58e";
  --fa--fa: "\e58e\e58e";
}

.fa-nfc-trash {
  --fa: "\e1fd";
  --fa--fa: "\e1fd\e1fd";
}

.fa-hourglass {
  --fa: "\f254";
  --fa--fa: "\f254\f254";
}

.fa-hourglass-empty {
  --fa: "\f254";
  --fa--fa: "\f254\f254";
}

.fa-mountain {
  --fa: "\f6fc";
  --fa--fa: "\f6fc\f6fc";
}

.fa-file-xmark {
  --fa: "\f317";
  --fa--fa: "\f317\f317";
}

.fa-file-times {
  --fa: "\f317";
  --fa--fa: "\f317\f317";
}

.fa-house-heart {
  --fa: "\f4c9";
  --fa--fa: "\f4c9\f4c9";
}

.fa-home-heart {
  --fa: "\f4c9";
  --fa--fa: "\f4c9\f4c9";
}

.fa-house-chimney-blank {
  --fa: "\e3b0";
  --fa--fa: "\e3b0\e3b0";
}

.fa-meter-bolt {
  --fa: "\e1e9";
  --fa--fa: "\e1e9\e1e9";
}

.fa-user-doctor {
  --fa: "\f0f0";
  --fa--fa: "\f0f0\f0f0";
}

.fa-user-md {
  --fa: "\f0f0";
  --fa--fa: "\f0f0\f0f0";
}

.fa-slash-back {
  --fa: "\\";
  --fa--fa: "\\\\";
}

.fa-circle-info {
  --fa: "\f05a";
  --fa--fa: "\f05a\f05a";
}

.fa-info-circle {
  --fa: "\f05a";
  --fa--fa: "\f05a\f05a";
}

.fa-fishing-rod {
  --fa: "\e3a8";
  --fa--fa: "\e3a8\e3a8";
}

.fa-hammer-crash {
  --fa: "\e414";
  --fa--fa: "\e414\e414";
}

.fa-message-heart {
  --fa: "\e5c9";
  --fa--fa: "\e5c9\e5c9";
}

.fa-cloud-meatball {
  --fa: "\f73b";
  --fa--fa: "\f73b\f73b";
}

.fa-camera-polaroid {
  --fa: "\f8aa";
  --fa--fa: "\f8aa\f8aa";
}

.fa-camera {
  --fa: "\f030";
  --fa--fa: "\f030\f030";
}

.fa-camera-alt {
  --fa: "\f030";
  --fa--fa: "\f030\f030";
}

.fa-square-virus {
  --fa: "\e578";
  --fa--fa: "\e578\e578";
}

.fa-cart-arrow-up {
  --fa: "\e3ee";
  --fa--fa: "\e3ee\e3ee";
}

.fa-meteor {
  --fa: "\f753";
  --fa--fa: "\f753\f753";
}

.fa-car-on {
  --fa: "\e4dd";
  --fa--fa: "\e4dd\e4dd";
}

.fa-sleigh {
  --fa: "\f7cc";
  --fa--fa: "\f7cc\f7cc";
}

.fa-arrow-down-1-9 {
  --fa: "\f162";
  --fa--fa: "\f162\f162";
}

.fa-sort-numeric-asc {
  --fa: "\f162";
  --fa--fa: "\f162\f162";
}

.fa-sort-numeric-down {
  --fa: "\f162";
  --fa--fa: "\f162\f162";
}

.fa-buoy-mooring {
  --fa: "\e5b6";
  --fa--fa: "\e5b6\e5b6";
}

.fa-square-4 {
  --fa: "\e259";
  --fa--fa: "\e259\e259";
}

.fa-hand-holding-droplet {
  --fa: "\f4c1";
  --fa--fa: "\f4c1\f4c1";
}

.fa-hand-holding-water {
  --fa: "\f4c1";
  --fa--fa: "\f4c1\f4c1";
}

.fa-file-eps {
  --fa: "\e644";
  --fa--fa: "\e644\e644";
}

.fa-tricycle-adult {
  --fa: "\e5c4";
  --fa--fa: "\e5c4\e5c4";
}

.fa-waveform {
  --fa: "\f8f1";
  --fa--fa: "\f8f1\f8f1";
}

.fa-water {
  --fa: "\f773";
  --fa--fa: "\f773\f773";
}

.fa-star-sharp-half-stroke {
  --fa: "\e28d";
  --fa--fa: "\e28d\e28d";
}

.fa-star-sharp-half-alt {
  --fa: "\e28d";
  --fa--fa: "\e28d\e28d";
}

.fa-nfc-signal {
  --fa: "\e1fb";
  --fa--fa: "\e1fb\e1fb";
}

.fa-plane-prop {
  --fa: "\e22b";
  --fa--fa: "\e22b\e22b";
}

.fa-calendar-check {
  --fa: "\f274";
  --fa--fa: "\f274\f274";
}

.fa-clock-desk {
  --fa: "\e134";
  --fa--fa: "\e134\e134";
}

.fa-calendar-clock {
  --fa: "\e0d2";
  --fa--fa: "\e0d2\e0d2";
}

.fa-calendar-time {
  --fa: "\e0d2";
  --fa--fa: "\e0d2\e0d2";
}

.fa-braille {
  --fa: "\f2a1";
  --fa--fa: "\f2a1\f2a1";
}

.fa-prescription-bottle-medical {
  --fa: "\f486";
  --fa--fa: "\f486\f486";
}

.fa-prescription-bottle-alt {
  --fa: "\f486";
  --fa--fa: "\f486\f486";
}

.fa-plate-utensils {
  --fa: "\e43b";
  --fa--fa: "\e43b\e43b";
}

.fa-family-pants {
  --fa: "\e302";
  --fa--fa: "\e302\e302";
}

.fa-hose-reel {
  --fa: "\e41a";
  --fa--fa: "\e41a\e41a";
}

.fa-house-window {
  --fa: "\e3b3";
  --fa--fa: "\e3b3\e3b3";
}

.fa-landmark {
  --fa: "\f66f";
  --fa--fa: "\f66f\f66f";
}

.fa-truck {
  --fa: "\f0d1";
  --fa--fa: "\f0d1\f0d1";
}

.fa-music-magnifying-glass {
  --fa: "\e662";
  --fa--fa: "\e662\e662";
}

.fa-crosshairs {
  --fa: "\f05b";
  --fa--fa: "\f05b\f05b";
}

.fa-cloud-rainbow {
  --fa: "\f73e";
  --fa--fa: "\f73e\f73e";
}

.fa-person-cane {
  --fa: "\e53c";
  --fa--fa: "\e53c\e53c";
}

.fa-alien {
  --fa: "\f8f5";
  --fa--fa: "\f8f5\f8f5";
}

.fa-tent {
  --fa: "\e57d";
  --fa--fa: "\e57d\e57d";
}

.fa-laptop-binary {
  --fa: "\e5e7";
  --fa--fa: "\e5e7\e5e7";
}

.fa-vest-patches {
  --fa: "\e086";
  --fa--fa: "\e086\e086";
}

.fa-people-dress-simple {
  --fa: "\e218";
  --fa--fa: "\e218\e218";
}

.fa-check-double {
  --fa: "\f560";
  --fa--fa: "\f560\f560";
}

.fa-arrow-down-a-z {
  --fa: "\f15d";
  --fa--fa: "\f15d\f15d";
}

.fa-sort-alpha-asc {
  --fa: "\f15d";
  --fa--fa: "\f15d\f15d";
}

.fa-sort-alpha-down {
  --fa: "\f15d";
  --fa--fa: "\f15d\f15d";
}

.fa-bowling-ball-pin {
  --fa: "\e0c3";
  --fa--fa: "\e0c3\e0c3";
}

.fa-bell-school-slash {
  --fa: "\f5d6";
  --fa--fa: "\f5d6\f5d6";
}

.fa-plus-large {
  --fa: "\e59e";
  --fa--fa: "\e59e\e59e";
}

.fa-money-bill-wheat {
  --fa: "\e52a";
  --fa--fa: "\e52a\e52a";
}

.fa-camera-viewfinder {
  --fa: "\e0da";
  --fa--fa: "\e0da\e0da";
}

.fa-screenshot {
  --fa: "\e0da";
  --fa--fa: "\e0da\e0da";
}

.fa-message-music {
  --fa: "\f8af";
  --fa--fa: "\f8af\f8af";
}

.fa-comment-alt-music {
  --fa: "\f8af";
  --fa--fa: "\f8af\f8af";
}

.fa-car-building {
  --fa: "\f859";
  --fa--fa: "\f859\f859";
}

.fa-border-bottom-right {
  --fa: "\f854";
  --fa--fa: "\f854\f854";
}

.fa-border-style-alt {
  --fa: "\f854";
  --fa--fa: "\f854\f854";
}

.fa-octagon {
  --fa: "\f306";
  --fa--fa: "\f306\f306";
}

.fa-comment-arrow-up-right {
  --fa: "\e145";
  --fa--fa: "\e145\e145";
}

.fa-octagon-divide {
  --fa: "\e203";
  --fa--fa: "\e203\e203";
}

.fa-cookie {
  --fa: "\f563";
  --fa--fa: "\f563\f563";
}

.fa-arrow-rotate-left {
  --fa: "\f0e2";
  --fa--fa: "\f0e2\f0e2";
}

.fa-arrow-left-rotate {
  --fa: "\f0e2";
  --fa--fa: "\f0e2\f0e2";
}

.fa-arrow-rotate-back {
  --fa: "\f0e2";
  --fa--fa: "\f0e2\f0e2";
}

.fa-arrow-rotate-backward {
  --fa: "\f0e2";
  --fa--fa: "\f0e2\f0e2";
}

.fa-undo {
  --fa: "\f0e2";
  --fa--fa: "\f0e2\f0e2";
}

.fa-tv-music {
  --fa: "\f8e6";
  --fa--fa: "\f8e6\f8e6";
}

.fa-hard-drive {
  --fa: "\f0a0";
  --fa--fa: "\f0a0\f0a0";
}

.fa-hdd {
  --fa: "\f0a0";
  --fa--fa: "\f0a0\f0a0";
}

.fa-reel {
  --fa: "\e238";
  --fa--fa: "\e238\e238";
}

.fa-face-grin-squint-tears {
  --fa: "\f586";
  --fa--fa: "\f586\f586";
}

.fa-grin-squint-tears {
  --fa: "\f586";
  --fa--fa: "\f586\f586";
}

.fa-dumbbell {
  --fa: "\f44b";
  --fa--fa: "\f44b\f44b";
}

.fa-rectangle-list {
  --fa: "\f022";
  --fa--fa: "\f022\f022";
}

.fa-list-alt {
  --fa: "\f022";
  --fa--fa: "\f022\f022";
}

.fa-tarp-droplet {
  --fa: "\e57c";
  --fa--fa: "\e57c\e57c";
}

.fa-alarm-exclamation {
  --fa: "\f843";
  --fa--fa: "\f843\f843";
}

.fa-house-medical-circle-check {
  --fa: "\e511";
  --fa--fa: "\e511\e511";
}

.fa-traffic-cone {
  --fa: "\f636";
  --fa--fa: "\f636\f636";
}

.fa-grate {
  --fa: "\e193";
  --fa--fa: "\e193\e193";
}

.fa-arrow-down-right {
  --fa: "\e093";
  --fa--fa: "\e093\e093";
}

.fa-person-skiing-nordic {
  --fa: "\f7ca";
  --fa--fa: "\f7ca\f7ca";
}

.fa-skiing-nordic {
  --fa: "\f7ca";
  --fa--fa: "\f7ca\f7ca";
}

.fa-calendar-plus {
  --fa: "\f271";
  --fa--fa: "\f271\f271";
}

.fa-person-from-portal {
  --fa: "\e023";
  --fa--fa: "\e023\e023";
}

.fa-portal-exit {
  --fa: "\e023";
  --fa--fa: "\e023\e023";
}

.fa-plane-arrival {
  --fa: "\f5af";
  --fa--fa: "\f5af\f5af";
}

.fa-cowbell-circle-plus {
  --fa: "\f8b4";
  --fa--fa: "\f8b4\f8b4";
}

.fa-cowbell-more {
  --fa: "\f8b4";
  --fa--fa: "\f8b4\f8b4";
}

.fa-circle-left {
  --fa: "\f359";
  --fa--fa: "\f359\f359";
}

.fa-arrow-alt-circle-left {
  --fa: "\f359";
  --fa--fa: "\f359\f359";
}

.fa-distribute-spacing-vertical {
  --fa: "\e366";
  --fa--fa: "\e366\e366";
}

.fa-signal-bars-fair {
  --fa: "\f692";
  --fa--fa: "\f692\f692";
}

.fa-signal-alt-2 {
  --fa: "\f692";
  --fa--fa: "\f692\f692";
}

.fa-sportsball {
  --fa: "\e44b";
  --fa--fa: "\e44b\e44b";
}

.fa-game-console-handheld-crank {
  --fa: "\e5b9";
  --fa--fa: "\e5b9\e5b9";
}

.fa-train-subway {
  --fa: "\f239";
  --fa--fa: "\f239\f239";
}

.fa-subway {
  --fa: "\f239";
  --fa--fa: "\f239\f239";
}

.fa-chart-gantt {
  --fa: "\e0e4";
  --fa--fa: "\e0e4\e0e4";
}

.fa-face-smile-upside-down {
  --fa: "\e395";
  --fa--fa: "\e395\e395";
}

.fa-ball-pile {
  --fa: "\f77e";
  --fa--fa: "\f77e\f77e";
}

.fa-badge-dollar {
  --fa: "\f645";
  --fa--fa: "\f645\f645";
}

.fa-money-bills-simple {
  --fa: "\e1f4";
  --fa--fa: "\e1f4\e1f4";
}

.fa-money-bills-alt {
  --fa: "\e1f4";
  --fa--fa: "\e1f4\e1f4";
}

.fa-list-timeline {
  --fa: "\e1d1";
  --fa--fa: "\e1d1\e1d1";
}

.fa-indian-rupee-sign {
  --fa: "\e1bc";
  --fa--fa: "\e1bc\e1bc";
}

.fa-indian-rupee {
  --fa: "\e1bc";
  --fa--fa: "\e1bc\e1bc";
}

.fa-inr {
  --fa: "\e1bc";
  --fa--fa: "\e1bc\e1bc";
}

.fa-crop-simple {
  --fa: "\f565";
  --fa--fa: "\f565\f565";
}

.fa-crop-alt {
  --fa: "\f565";
  --fa--fa: "\f565\f565";
}

.fa-money-bill-1 {
  --fa: "\f3d1";
  --fa--fa: "\f3d1\f3d1";
}

.fa-money-bill-alt {
  --fa: "\f3d1";
  --fa--fa: "\f3d1\f3d1";
}

.fa-left-long {
  --fa: "\f30a";
  --fa--fa: "\f30a\f30a";
}

.fa-long-arrow-alt-left {
  --fa: "\f30a";
  --fa--fa: "\f30a\f30a";
}

.fa-keyboard-down {
  --fa: "\e1c2";
  --fa--fa: "\e1c2\e1c2";
}

.fa-circle-up-right {
  --fa: "\e129";
  --fa--fa: "\e129\e129";
}

.fa-cloud-bolt-moon {
  --fa: "\f76d";
  --fa--fa: "\f76d\f76d";
}

.fa-thunderstorm-moon {
  --fa: "\f76d";
  --fa--fa: "\f76d\f76d";
}

.fa-turn-left-up {
  --fa: "\e638";
  --fa--fa: "\e638\e638";
}

.fa-dna {
  --fa: "\f471";
  --fa--fa: "\f471\f471";
}

.fa-virus-slash {
  --fa: "\e075";
  --fa--fa: "\e075\e075";
}

.fa-bracket-round-right {
  --fa: "\)";
  --fa--fa: "\)\)";
}

.fa-circle-sterling {
  --fa: "\e5cf";
  --fa--fa: "\e5cf\e5cf";
}

.fa-circle-5 {
  --fa: "\e0f2";
  --fa--fa: "\e0f2\e0f2";
}

.fa-minus {
  --fa: "\f068";
  --fa--fa: "\f068\f068";
}

.fa-subtract {
  --fa: "\f068";
  --fa--fa: "\f068\f068";
}

.fa-fire-flame {
  --fa: "\f6df";
  --fa--fa: "\f6df\f6df";
}

.fa-flame {
  --fa: "\f6df";
  --fa--fa: "\f6df\f6df";
}

.fa-right-to-line {
  --fa: "\f34c";
  --fa--fa: "\f34c\f34c";
}

.fa-arrow-alt-to-right {
  --fa: "\f34c";
  --fa--fa: "\f34c\f34c";
}

.fa-gif {
  --fa: "\e190";
  --fa--fa: "\e190\e190";
}

.fa-chess {
  --fa: "\f439";
  --fa--fa: "\f439\f439";
}

.fa-trash-slash {
  --fa: "\e2b3";
  --fa--fa: "\e2b3\e2b3";
}

.fa-arrow-left-long {
  --fa: "\f177";
  --fa--fa: "\f177\f177";
}

.fa-long-arrow-left {
  --fa: "\f177";
  --fa--fa: "\f177\f177";
}

.fa-plug-circle-check {
  --fa: "\e55c";
  --fa--fa: "\e55c\e55c";
}

.fa-font-case {
  --fa: "\f866";
  --fa--fa: "\f866\f866";
}

.fa-street-view {
  --fa: "\f21d";
  --fa--fa: "\f21d\f21d";
}

.fa-arrow-down-left {
  --fa: "\e091";
  --fa--fa: "\e091\e091";
}

.fa-franc-sign {
  --fa: "\e18f";
  --fa--fa: "\e18f\e18f";
}

.fa-flask-round-poison {
  --fa: "\f6e0";
  --fa--fa: "\f6e0\f6e0";
}

.fa-flask-poison {
  --fa: "\f6e0";
  --fa--fa: "\f6e0\f6e0";
}

.fa-volume-off {
  --fa: "\f026";
  --fa--fa: "\f026\f026";
}

.fa-book-circle-arrow-right {
  --fa: "\e0bc";
  --fa--fa: "\e0bc\e0bc";
}

.fa-chart-user {
  --fa: "\f6a3";
  --fa--fa: "\f6a3\f6a3";
}

.fa-user-chart {
  --fa: "\f6a3";
  --fa--fa: "\f6a3\f6a3";
}

.fa-hands-asl-interpreting {
  --fa: "\f2a3";
  --fa--fa: "\f2a3\f2a3";
}

.fa-american-sign-language-interpreting {
  --fa: "\f2a3";
  --fa--fa: "\f2a3\f2a3";
}

.fa-asl-interpreting {
  --fa: "\f2a3";
  --fa--fa: "\f2a3\f2a3";
}

.fa-hands-american-sign-language-interpreting {
  --fa: "\f2a3";
  --fa--fa: "\f2a3\f2a3";
}

.fa-presentation-screen {
  --fa: "\f685";
  --fa--fa: "\f685\f685";
}

.fa-presentation {
  --fa: "\f685";
  --fa--fa: "\f685\f685";
}

.fa-circle-bolt {
  --fa: "\e0fe";
  --fa--fa: "\e0fe\e0fe";
}

.fa-face-smile-halo {
  --fa: "\e38f";
  --fa--fa: "\e38f\e38f";
}

.fa-cart-circle-arrow-down {
  --fa: "\e3ef";
  --fa--fa: "\e3ef\e3ef";
}

.fa-house-person-return {
  --fa: "\e011";
  --fa--fa: "\e011\e011";
}

.fa-house-person-arrive {
  --fa: "\e011";
  --fa--fa: "\e011\e011";
}

.fa-house-return {
  --fa: "\e011";
  --fa--fa: "\e011\e011";
}

.fa-message-xmark {
  --fa: "\f4ab";
  --fa--fa: "\f4ab\f4ab";
}

.fa-comment-alt-times {
  --fa: "\f4ab";
  --fa--fa: "\f4ab\f4ab";
}

.fa-message-times {
  --fa: "\f4ab";
  --fa--fa: "\f4ab\f4ab";
}

.fa-file-certificate {
  --fa: "\f5f3";
  --fa--fa: "\f5f3\f5f3";
}

.fa-file-award {
  --fa: "\f5f3";
  --fa--fa: "\f5f3\f5f3";
}

.fa-user-doctor-hair-long {
  --fa: "\e459";
  --fa--fa: "\e459\e459";
}

.fa-camera-security {
  --fa: "\f8fe";
  --fa--fa: "\f8fe\f8fe";
}

.fa-camera-home {
  --fa: "\f8fe";
  --fa--fa: "\f8fe\f8fe";
}

.fa-gear {
  --fa: "\f013";
  --fa--fa: "\f013\f013";
}

.fa-cog {
  --fa: "\f013";
  --fa--fa: "\f013\f013";
}

.fa-droplet-slash {
  --fa: "\f5c7";
  --fa--fa: "\f5c7\f5c7";
}

.fa-tint-slash {
  --fa: "\f5c7";
  --fa--fa: "\f5c7\f5c7";
}

.fa-book-heart {
  --fa: "\f499";
  --fa--fa: "\f499\f499";
}

.fa-mosque {
  --fa: "\f678";
  --fa--fa: "\f678\f678";
}

.fa-duck {
  --fa: "\f6d8";
  --fa--fa: "\f6d8\f6d8";
}

.fa-mosquito {
  --fa: "\e52b";
  --fa--fa: "\e52b\e52b";
}

.fa-star-of-david {
  --fa: "\f69a";
  --fa--fa: "\f69a\f69a";
}

.fa-flag-swallowtail {
  --fa: "\f74c";
  --fa--fa: "\f74c\f74c";
}

.fa-flag-alt {
  --fa: "\f74c";
  --fa--fa: "\f74c\f74c";
}

.fa-person-military-rifle {
  --fa: "\e54b";
  --fa--fa: "\e54b\e54b";
}

.fa-car-garage {
  --fa: "\f5e2";
  --fa--fa: "\f5e2\f5e2";
}

.fa-cart-shopping {
  --fa: "\f07a";
  --fa--fa: "\f07a\f07a";
}

.fa-shopping-cart {
  --fa: "\f07a";
  --fa--fa: "\f07a\f07a";
}

.fa-book-font {
  --fa: "\e0bf";
  --fa--fa: "\e0bf\e0bf";
}

.fa-shield-plus {
  --fa: "\e24a";
  --fa--fa: "\e24a\e24a";
}

.fa-vials {
  --fa: "\f493";
  --fa--fa: "\f493\f493";
}

.fa-eye-dropper-full {
  --fa: "\e172";
  --fa--fa: "\e172\e172";
}

.fa-distribute-spacing-horizontal {
  --fa: "\e365";
  --fa--fa: "\e365\e365";
}

.fa-tablet-rugged {
  --fa: "\f48f";
  --fa--fa: "\f48f\f48f";
}

.fa-temperature-snow {
  --fa: "\f768";
  --fa--fa: "\f768\f768";
}

.fa-temperature-frigid {
  --fa: "\f768";
  --fa--fa: "\f768\f768";
}

.fa-moped {
  --fa: "\e3b9";
  --fa--fa: "\e3b9\e3b9";
}

.fa-face-smile-plus {
  --fa: "\f5b9";
  --fa--fa: "\f5b9\f5b9";
}

.fa-smile-plus {
  --fa: "\f5b9";
  --fa--fa: "\f5b9\f5b9";
}

.fa-radio-tuner {
  --fa: "\f8d8";
  --fa--fa: "\f8d8\f8d8";
}

.fa-radio-alt {
  --fa: "\f8d8";
  --fa--fa: "\f8d8\f8d8";
}

.fa-face-swear {
  --fa: "\e399";
  --fa--fa: "\e399\e399";
}

.fa-water-arrow-down {
  --fa: "\f774";
  --fa--fa: "\f774\f774";
}

.fa-water-lower {
  --fa: "\f774";
  --fa--fa: "\f774\f774";
}

.fa-scanner-touchscreen {
  --fa: "\f48a";
  --fa--fa: "\f48a\f48a";
}

.fa-circle-7 {
  --fa: "\e0f4";
  --fa--fa: "\e0f4\e0f4";
}

.fa-plug-circle-plus {
  --fa: "\e55f";
  --fa--fa: "\e55f\e55f";
}

.fa-person-ski-jumping {
  --fa: "\f7c7";
  --fa--fa: "\f7c7\f7c7";
}

.fa-ski-jump {
  --fa: "\f7c7";
  --fa--fa: "\f7c7\f7c7";
}

.fa-place-of-worship {
  --fa: "\f67f";
  --fa--fa: "\f67f\f67f";
}

.fa-water-arrow-up {
  --fa: "\f775";
  --fa--fa: "\f775\f775";
}

.fa-water-rise {
  --fa: "\f775";
  --fa--fa: "\f775\f775";
}

.fa-waveform-lines {
  --fa: "\f8f2";
  --fa--fa: "\f8f2\f8f2";
}

.fa-waveform-path {
  --fa: "\f8f2";
  --fa--fa: "\f8f2\f8f2";
}

.fa-split {
  --fa: "\e254";
  --fa--fa: "\e254\e254";
}

.fa-film-canister {
  --fa: "\f8b7";
  --fa--fa: "\f8b7\f8b7";
}

.fa-film-cannister {
  --fa: "\f8b7";
  --fa--fa: "\f8b7\f8b7";
}

.fa-folder-xmark {
  --fa: "\f65f";
  --fa--fa: "\f65f\f65f";
}

.fa-folder-times {
  --fa: "\f65f";
  --fa--fa: "\f65f\f65f";
}

.fa-toilet-paper-blank {
  --fa: "\f71f";
  --fa--fa: "\f71f\f71f";
}

.fa-toilet-paper-alt {
  --fa: "\f71f";
  --fa--fa: "\f71f\f71f";
}

.fa-tablet-screen {
  --fa: "\f3fc";
  --fa--fa: "\f3fc\f3fc";
}

.fa-tablet-android-alt {
  --fa: "\f3fc";
  --fa--fa: "\f3fc\f3fc";
}

.fa-hexagon-vertical-nft-slanted {
  --fa: "\e506";
  --fa--fa: "\e506\e506";
}

.fa-folder-music {
  --fa: "\e18d";
  --fa--fa: "\e18d\e18d";
}

.fa-display-medical {
  --fa: "\e166";
  --fa--fa: "\e166\e166";
}

.fa-desktop-medical {
  --fa: "\e166";
  --fa--fa: "\e166\e166";
}

.fa-share-all {
  --fa: "\f367";
  --fa--fa: "\f367\f367";
}

.fa-peapod {
  --fa: "\e31c";
  --fa--fa: "\e31c\e31c";
}

.fa-chess-clock {
  --fa: "\f43d";
  --fa--fa: "\f43d\f43d";
}

.fa-axe {
  --fa: "\f6b2";
  --fa--fa: "\f6b2\f6b2";
}

.fa-square-d {
  --fa: "\e268";
  --fa--fa: "\e268\e268";
}

.fa-grip-vertical {
  --fa: "\f58e";
  --fa--fa: "\f58e\f58e";
}

.fa-mobile-signal-out {
  --fa: "\e1f0";
  --fa--fa: "\e1f0\e1f0";
}

.fa-hexagon-nodes {
  --fa: "\e699";
  --fa--fa: "\e699\e699";
}

.fa-arrow-turn-up {
  --fa: "\f148";
  --fa--fa: "\f148\f148";
}

.fa-level-up {
  --fa: "\f148";
  --fa--fa: "\f148\f148";
}

.fa-u {
  --fa: "U";
  --fa--fa: "UU";
}

.fa-arrow-up-from-dotted-line {
  --fa: "\e09b";
  --fa--fa: "\e09b\e09b";
}

.fa-square-root-variable {
  --fa: "\f698";
  --fa--fa: "\f698\f698";
}

.fa-square-root-alt {
  --fa: "\f698";
  --fa--fa: "\f698\f698";
}

.fa-light-switch-on {
  --fa: "\e019";
  --fa--fa: "\e019\e019";
}

.fa-arrow-down-arrow-up {
  --fa: "\f883";
  --fa--fa: "\f883\f883";
}

.fa-sort-alt {
  --fa: "\f883";
  --fa--fa: "\f883\f883";
}

.fa-raindrops {
  --fa: "\f75c";
  --fa--fa: "\f75c\f75c";
}

.fa-dash {
  --fa: "\e404";
  --fa--fa: "\e404\e404";
}

.fa-minus-large {
  --fa: "\e404";
  --fa--fa: "\e404\e404";
}

.fa-clock {
  --fa: "\f017";
  --fa--fa: "\f017\f017";
}

.fa-clock-four {
  --fa: "\f017";
  --fa--fa: "\f017\f017";
}

.fa-input-numeric {
  --fa: "\e1bd";
  --fa--fa: "\e1bd\e1bd";
}

.fa-truck-tow {
  --fa: "\e2b8";
  --fa--fa: "\e2b8\e2b8";
}

.fa-backward-step {
  --fa: "\f048";
  --fa--fa: "\f048\f048";
}

.fa-step-backward {
  --fa: "\f048";
  --fa--fa: "\f048\f048";
}

.fa-pallet {
  --fa: "\f482";
  --fa--fa: "\f482\f482";
}

.fa-car-bolt {
  --fa: "\e341";
  --fa--fa: "\e341\e341";
}

.fa-arrows-maximize {
  --fa: "\f31d";
  --fa--fa: "\f31d\f31d";
}

.fa-expand-arrows {
  --fa: "\f31d";
  --fa--fa: "\f31d\f31d";
}

.fa-faucet {
  --fa: "\e005";
  --fa--fa: "\e005\e005";
}

.fa-cloud-sleet {
  --fa: "\f741";
  --fa--fa: "\f741\f741";
}

.fa-lamp-street {
  --fa: "\e1c5";
  --fa--fa: "\e1c5\e1c5";
}

.fa-list-radio {
  --fa: "\e1d0";
  --fa--fa: "\e1d0\e1d0";
}

.fa-pen-nib-slash {
  --fa: "\e4a1";
  --fa--fa: "\e4a1\e4a1";
}

.fa-baseball-bat-ball {
  --fa: "\f432";
  --fa--fa: "\f432\f432";
}

.fa-square-up-left {
  --fa: "\e282";
  --fa--fa: "\e282\e282";
}

.fa-overline {
  --fa: "\f876";
  --fa--fa: "\f876\f876";
}

.fa-s {
  --fa: "S";
  --fa--fa: "SS";
}

.fa-timeline {
  --fa: "\e29c";
  --fa--fa: "\e29c\e29c";
}

.fa-keyboard {
  --fa: "\f11c";
  --fa--fa: "\f11c\f11c";
}

.fa-arrows-from-dotted-line {
  --fa: "\e0a3";
  --fa--fa: "\e0a3\e0a3";
}

.fa-usb-drive {
  --fa: "\f8e9";
  --fa--fa: "\f8e9\f8e9";
}

.fa-ballot {
  --fa: "\f732";
  --fa--fa: "\f732\f732";
}

.fa-caret-down {
  --fa: "\f0d7";
  --fa--fa: "\f0d7\f0d7";
}

.fa-location-dot-slash {
  --fa: "\f605";
  --fa--fa: "\f605\f605";
}

.fa-map-marker-alt-slash {
  --fa: "\f605";
  --fa--fa: "\f605\f605";
}

.fa-cards {
  --fa: "\e3ed";
  --fa--fa: "\e3ed\e3ed";
}

.fa-house-chimney-medical {
  --fa: "\f7f2";
  --fa--fa: "\f7f2\f7f2";
}

.fa-clinic-medical {
  --fa: "\f7f2";
  --fa--fa: "\f7f2\f7f2";
}

.fa-boxing-glove {
  --fa: "\f438";
  --fa--fa: "\f438\f438";
}

.fa-glove-boxing {
  --fa: "\f438";
  --fa--fa: "\f438\f438";
}

.fa-temperature-three-quarters {
  --fa: "\f2c8";
  --fa--fa: "\f2c8\f2c8";
}

.fa-temperature-3 {
  --fa: "\f2c8";
  --fa--fa: "\f2c8\f2c8";
}

.fa-thermometer-3 {
  --fa: "\f2c8";
  --fa--fa: "\f2c8\f2c8";
}

.fa-thermometer-three-quarters {
  --fa: "\f2c8";
  --fa--fa: "\f2c8\f2c8";
}

.fa-bell-school {
  --fa: "\f5d5";
  --fa--fa: "\f5d5\f5d5";
}

.fa-mobile-screen {
  --fa: "\f3cf";
  --fa--fa: "\f3cf\f3cf";
}

.fa-mobile-android-alt {
  --fa: "\f3cf";
  --fa--fa: "\f3cf\f3cf";
}

.fa-plane-up {
  --fa: "\e22d";
  --fa--fa: "\e22d\e22d";
}

.fa-folder-heart {
  --fa: "\e189";
  --fa--fa: "\e189\e189";
}

.fa-circle-location-arrow {
  --fa: "\f602";
  --fa--fa: "\f602\f602";
}

.fa-location-circle {
  --fa: "\f602";
  --fa--fa: "\f602\f602";
}

.fa-face-head-bandage {
  --fa: "\e37a";
  --fa--fa: "\e37a\e37a";
}

.fa-sushi-roll {
  --fa: "\e48b";
  --fa--fa: "\e48b\e48b";
}

.fa-maki-roll {
  --fa: "\e48b";
  --fa--fa: "\e48b\e48b";
}

.fa-makizushi {
  --fa: "\e48b";
  --fa--fa: "\e48b\e48b";
}

.fa-car-bump {
  --fa: "\f5e0";
  --fa--fa: "\f5e0\f5e0";
}

.fa-piggy-bank {
  --fa: "\f4d3";
  --fa--fa: "\f4d3\f4d3";
}

.fa-racquet {
  --fa: "\f45a";
  --fa--fa: "\f45a\f45a";
}

.fa-car-mirrors {
  --fa: "\e343";
  --fa--fa: "\e343\e343";
}

.fa-industry-windows {
  --fa: "\f3b3";
  --fa--fa: "\f3b3\f3b3";
}

.fa-industry-alt {
  --fa: "\f3b3";
  --fa--fa: "\f3b3\f3b3";
}

.fa-bolt-auto {
  --fa: "\e0b6";
  --fa--fa: "\e0b6\e0b6";
}

.fa-battery-half {
  --fa: "\f242";
  --fa--fa: "\f242\f242";
}

.fa-battery-3 {
  --fa: "\f242";
  --fa--fa: "\f242\f242";
}

.fa-flux-capacitor {
  --fa: "\f8ba";
  --fa--fa: "\f8ba\f8ba";
}

.fa-mountain-city {
  --fa: "\e52e";
  --fa--fa: "\e52e\e52e";
}

.fa-coins {
  --fa: "\f51e";
  --fa--fa: "\f51e\f51e";
}

.fa-honey-pot {
  --fa: "\e418";
  --fa--fa: "\e418\e418";
}

.fa-olive {
  --fa: "\e316";
  --fa--fa: "\e316\e316";
}

.fa-khanda {
  --fa: "\f66d";
  --fa--fa: "\f66d\f66d";
}

.fa-filter-list {
  --fa: "\e17c";
  --fa--fa: "\e17c\e17c";
}

.fa-outlet {
  --fa: "\e01c";
  --fa--fa: "\e01c\e01c";
}

.fa-sliders {
  --fa: "\f1de";
  --fa--fa: "\f1de\f1de";
}

.fa-sliders-h {
  --fa: "\f1de";
  --fa--fa: "\f1de\f1de";
}

.fa-cauldron {
  --fa: "\f6bf";
  --fa--fa: "\f6bf\f6bf";
}

.fa-people {
  --fa: "\e216";
  --fa--fa: "\e216\e216";
}

.fa-folder-tree {
  --fa: "\f802";
  --fa--fa: "\f802\f802";
}

.fa-network-wired {
  --fa: "\f6ff";
  --fa--fa: "\f6ff\f6ff";
}

.fa-croissant {
  --fa: "\f7f6";
  --fa--fa: "\f7f6\f7f6";
}

.fa-map-pin {
  --fa: "\f276";
  --fa--fa: "\f276\f276";
}

.fa-hamsa {
  --fa: "\f665";
  --fa--fa: "\f665\f665";
}

.fa-cent-sign {
  --fa: "\e3f5";
  --fa--fa: "\e3f5\e3f5";
}

.fa-swords-laser {
  --fa: "\e03d";
  --fa--fa: "\e03d\e03d";
}

.fa-flask {
  --fa: "\f0c3";
  --fa--fa: "\f0c3\f0c3";
}

.fa-person-pregnant {
  --fa: "\e31e";
  --fa--fa: "\e31e\e31e";
}

.fa-square-u {
  --fa: "\e281";
  --fa--fa: "\e281\e281";
}

.fa-wand-sparkles {
  --fa: "\f72b";
  --fa--fa: "\f72b\f72b";
}

.fa-router {
  --fa: "\f8da";
  --fa--fa: "\f8da\f8da";
}

.fa-ellipsis-vertical {
  --fa: "\f142";
  --fa--fa: "\f142\f142";
}

.fa-ellipsis-v {
  --fa: "\f142";
  --fa--fa: "\f142\f142";
}

.fa-sword-laser-alt {
  --fa: "\e03c";
  --fa--fa: "\e03c\e03c";
}

.fa-ticket {
  --fa: "\f145";
  --fa--fa: "\f145\f145";
}

.fa-power-off {
  --fa: "\f011";
  --fa--fa: "\f011\f011";
}

.fa-coin {
  --fa: "\f85c";
  --fa--fa: "\f85c\f85c";
}

.fa-laptop-slash {
  --fa: "\e1c7";
  --fa--fa: "\e1c7\e1c7";
}

.fa-right-long {
  --fa: "\f30b";
  --fa--fa: "\f30b\f30b";
}

.fa-long-arrow-alt-right {
  --fa: "\f30b";
  --fa--fa: "\f30b\f30b";
}

.fa-circle-b {
  --fa: "\e0fd";
  --fa--fa: "\e0fd\e0fd";
}

.fa-person-dress-simple {
  --fa: "\e21c";
  --fa--fa: "\e21c\e21c";
}

.fa-pipe-collar {
  --fa: "\e437";
  --fa--fa: "\e437\e437";
}

.fa-lights-holiday {
  --fa: "\f7b2";
  --fa--fa: "\f7b2\f7b2";
}

.fa-citrus {
  --fa: "\e2f4";
  --fa--fa: "\e2f4\e2f4";
}

.fa-flag-usa {
  --fa: "\f74d";
  --fa--fa: "\f74d\f74d";
}

.fa-laptop-file {
  --fa: "\e51d";
  --fa--fa: "\e51d\e51d";
}

.fa-tty {
  --fa: "\f1e4";
  --fa--fa: "\f1e4\f1e4";
}

.fa-teletype {
  --fa: "\f1e4";
  --fa--fa: "\f1e4\f1e4";
}

.fa-chart-tree-map {
  --fa: "\e0ea";
  --fa--fa: "\e0ea\e0ea";
}

.fa-diagram-next {
  --fa: "\e476";
  --fa--fa: "\e476\e476";
}

.fa-person-rifle {
  --fa: "\e54e";
  --fa--fa: "\e54e\e54e";
}

.fa-clock-five-thirty {
  --fa: "\e34a";
  --fa--fa: "\e34a\e34a";
}

.fa-pipe-valve {
  --fa: "\e439";
  --fa--fa: "\e439\e439";
}

.fa-lightbulb-message {
  --fa: "\e687";
  --fa--fa: "\e687\e687";
}

.fa-arrow-up-from-arc {
  --fa: "\e4b4";
  --fa--fa: "\e4b4\e4b4";
}

.fa-face-spiral-eyes {
  --fa: "\e485";
  --fa--fa: "\e485\e485";
}

.fa-compress-wide {
  --fa: "\f326";
  --fa--fa: "\f326\f326";
}

.fa-circle-phone-hangup {
  --fa: "\e11d";
  --fa--fa: "\e11d\e11d";
}

.fa-phone-circle-down {
  --fa: "\e11d";
  --fa--fa: "\e11d\e11d";
}

.fa-gear-complex-code {
  --fa: "\e5eb";
  --fa--fa: "\e5eb\e5eb";
}

.fa-house-medical-circle-exclamation {
  --fa: "\e512";
  --fa--fa: "\e512\e512";
}

.fa-badminton {
  --fa: "\e33a";
  --fa--fa: "\e33a\e33a";
}

.fa-closed-captioning {
  --fa: "\f20a";
  --fa--fa: "\f20a\f20a";
}

.fa-person-hiking {
  --fa: "\f6ec";
  --fa--fa: "\f6ec\f6ec";
}

.fa-hiking {
  --fa: "\f6ec";
  --fa--fa: "\f6ec\f6ec";
}

.fa-right-from-line {
  --fa: "\f347";
  --fa--fa: "\f347\f347";
}

.fa-arrow-alt-from-left {
  --fa: "\f347";
  --fa--fa: "\f347\f347";
}

.fa-venus-double {
  --fa: "\f226";
  --fa--fa: "\f226\f226";
}

.fa-images {
  --fa: "\f302";
  --fa--fa: "\f302\f302";
}

.fa-calculator {
  --fa: "\f1ec";
  --fa--fa: "\f1ec\f1ec";
}

.fa-shuttlecock {
  --fa: "\f45b";
  --fa--fa: "\f45b\f45b";
}

.fa-user-hair {
  --fa: "\e45a";
  --fa--fa: "\e45a\e45a";
}

.fa-eye-evil {
  --fa: "\f6db";
  --fa--fa: "\f6db\f6db";
}

.fa-people-pulling {
  --fa: "\e535";
  --fa--fa: "\e535\e535";
}

.fa-n {
  --fa: "N";
  --fa--fa: "NN";
}

.fa-swap {
  --fa: "\e609";
  --fa--fa: "\e609\e609";
}

.fa-garage {
  --fa: "\e009";
  --fa--fa: "\e009\e009";
}

.fa-cable-car {
  --fa: "\f7da";
  --fa--fa: "\f7da\f7da";
}

.fa-tram {
  --fa: "\f7da";
  --fa--fa: "\f7da\f7da";
}

.fa-shovel-snow {
  --fa: "\f7c3";
  --fa--fa: "\f7c3\f7c3";
}

.fa-cloud-rain {
  --fa: "\f73d";
  --fa--fa: "\f73d\f73d";
}

.fa-face-lying {
  --fa: "\e37e";
  --fa--fa: "\e37e\e37e";
}

.fa-sprinkler {
  --fa: "\e035";
  --fa--fa: "\e035\e035";
}

.fa-building-circle-xmark {
  --fa: "\e4d4";
  --fa--fa: "\e4d4\e4d4";
}

.fa-person-sledding {
  --fa: "\f7cb";
  --fa--fa: "\f7cb\f7cb";
}

.fa-sledding {
  --fa: "\f7cb";
  --fa--fa: "\f7cb\f7cb";
}

.fa-game-console-handheld {
  --fa: "\f8bb";
  --fa--fa: "\f8bb\f8bb";
}

.fa-ship {
  --fa: "\f21a";
  --fa--fa: "\f21a\f21a";
}

.fa-clock-six-thirty {
  --fa: "\e353";
  --fa--fa: "\e353\e353";
}

.fa-battery-slash {
  --fa: "\f377";
  --fa--fa: "\f377\f377";
}

.fa-tugrik-sign {
  --fa: "\e2ba";
  --fa--fa: "\e2ba\e2ba";
}

.fa-arrows-down-to-line {
  --fa: "\e4b8";
  --fa--fa: "\e4b8\e4b8";
}

.fa-download {
  --fa: "\f019";
  --fa--fa: "\f019\f019";
}

.fa-angles-up-down {
  --fa: "\e60d";
  --fa--fa: "\e60d\e60d";
}

.fa-shelves {
  --fa: "\f480";
  --fa--fa: "\f480\f480";
}

.fa-inventory {
  --fa: "\f480";
  --fa--fa: "\f480\f480";
}

.fa-cloud-snow {
  --fa: "\f742";
  --fa--fa: "\f742\f742";
}

.fa-face-grin {
  --fa: "\f580";
  --fa--fa: "\f580\f580";
}

.fa-grin {
  --fa: "\f580";
  --fa--fa: "\f580\f580";
}

.fa-delete-left {
  --fa: "\f55a";
  --fa--fa: "\f55a\f55a";
}

.fa-backspace {
  --fa: "\f55a";
  --fa--fa: "\f55a\f55a";
}

.fa-oven {
  --fa: "\e01d";
  --fa--fa: "\e01d\e01d";
}

.fa-cloud-binary {
  --fa: "\e601";
  --fa--fa: "\e601\e601";
}

.fa-eye-dropper {
  --fa: "\f1fb";
  --fa--fa: "\f1fb\f1fb";
}

.fa-eye-dropper-empty {
  --fa: "\f1fb";
  --fa--fa: "\f1fb\f1fb";
}

.fa-eyedropper {
  --fa: "\f1fb";
  --fa--fa: "\f1fb\f1fb";
}

.fa-comment-captions {
  --fa: "\e146";
  --fa--fa: "\e146\e146";
}

.fa-comments-question {
  --fa: "\e14e";
  --fa--fa: "\e14e\e14e";
}

.fa-scribble {
  --fa: "\e23f";
  --fa--fa: "\e23f\e23f";
}

.fa-rotate-exclamation {
  --fa: "\e23c";
  --fa--fa: "\e23c\e23c";
}

.fa-file-circle-check {
  --fa: "\e5a0";
  --fa--fa: "\e5a0\e5a0";
}

.fa-glass {
  --fa: "\f804";
  --fa--fa: "\f804\f804";
}

.fa-loader {
  --fa: "\e1d4";
  --fa--fa: "\e1d4\e1d4";
}

.fa-forward {
  --fa: "\f04e";
  --fa--fa: "\f04e\f04e";
}

.fa-user-pilot {
  --fa: "\e2c0";
  --fa--fa: "\e2c0\e2c0";
}

.fa-mobile {
  --fa: "\f3ce";
  --fa--fa: "\f3ce\f3ce";
}

.fa-mobile-android {
  --fa: "\f3ce";
  --fa--fa: "\f3ce\f3ce";
}

.fa-mobile-phone {
  --fa: "\f3ce";
  --fa--fa: "\f3ce\f3ce";
}

.fa-code-pull-request-closed {
  --fa: "\e3f9";
  --fa--fa: "\e3f9\e3f9";
}

.fa-face-meh {
  --fa: "\f11a";
  --fa--fa: "\f11a\f11a";
}

.fa-meh {
  --fa: "\f11a";
  --fa--fa: "\f11a\f11a";
}

.fa-align-center {
  --fa: "\f037";
  --fa--fa: "\f037\f037";
}

.fa-book-skull {
  --fa: "\f6b7";
  --fa--fa: "\f6b7\f6b7";
}

.fa-book-dead {
  --fa: "\f6b7";
  --fa--fa: "\f6b7\f6b7";
}

.fa-id-card {
  --fa: "\f2c2";
  --fa--fa: "\f2c2\f2c2";
}

.fa-drivers-license {
  --fa: "\f2c2";
  --fa--fa: "\f2c2\f2c2";
}

.fa-face-dotted {
  --fa: "\e47f";
  --fa--fa: "\e47f\e47f";
}

.fa-face-worried {
  --fa: "\e3a3";
  --fa--fa: "\e3a3\e3a3";
}

.fa-outdent {
  --fa: "\f03b";
  --fa--fa: "\f03b\f03b";
}

.fa-dedent {
  --fa: "\f03b";
  --fa--fa: "\f03b\f03b";
}

.fa-court-sport {
  --fa: "\e643";
  --fa--fa: "\e643\e643";
}

.fa-heart-circle-exclamation {
  --fa: "\e4fe";
  --fa--fa: "\e4fe\e4fe";
}

.fa-house {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home-alt {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-home-lg-alt {
  --fa: "\f015";
  --fa--fa: "\f015\f015";
}

.fa-vector-circle {
  --fa: "\e2c6";
  --fa--fa: "\e2c6\e2c6";
}

.fa-car-circle-bolt {
  --fa: "\e342";
  --fa--fa: "\e342\e342";
}

.fa-calendar-week {
  --fa: "\f784";
  --fa--fa: "\f784\f784";
}

.fa-flying-disc {
  --fa: "\e3a9";
  --fa--fa: "\e3a9\e3a9";
}

.fa-laptop-medical {
  --fa: "\f812";
  --fa--fa: "\f812\f812";
}

.fa-square-down-right {
  --fa: "\e26c";
  --fa--fa: "\e26c\e26c";
}

.fa-b {
  --fa: "B";
  --fa--fa: "BB";
}

.fa-seat-airline {
  --fa: "\e244";
  --fa--fa: "\e244\e244";
}

.fa-moon-over-sun {
  --fa: "\f74a";
  --fa--fa: "\f74a\f74a";
}

.fa-eclipse-alt {
  --fa: "\f74a";
  --fa--fa: "\f74a\f74a";
}

.fa-pipe {
  --fa: "\|";
  --fa--fa: "\|\|";
}

.fa-file-medical {
  --fa: "\f477";
  --fa--fa: "\f477\f477";
}

.fa-potato {
  --fa: "\e440";
  --fa--fa: "\e440\e440";
}

.fa-dice-one {
  --fa: "\f525";
  --fa--fa: "\f525\f525";
}

.fa-circle-a {
  --fa: "\e0f7";
  --fa--fa: "\e0f7\e0f7";
}

.fa-helmet-battle {
  --fa: "\f6eb";
  --fa--fa: "\f6eb\f6eb";
}

.fa-butter {
  --fa: "\e3e4";
  --fa--fa: "\e3e4\e3e4";
}

.fa-blanket-fire {
  --fa: "\e3da";
  --fa--fa: "\e3da\e3da";
}

.fa-kiwi-bird {
  --fa: "\f535";
  --fa--fa: "\f535\f535";
}

.fa-castle {
  --fa: "\e0de";
  --fa--fa: "\e0de\e0de";
}

.fa-golf-club {
  --fa: "\f451";
  --fa--fa: "\f451\f451";
}

.fa-arrow-right-arrow-left {
  --fa: "\f0ec";
  --fa--fa: "\f0ec\f0ec";
}

.fa-exchange {
  --fa: "\f0ec";
  --fa--fa: "\f0ec\f0ec";
}

.fa-rotate-right {
  --fa: "\f2f9";
  --fa--fa: "\f2f9\f2f9";
}

.fa-redo-alt {
  --fa: "\f2f9";
  --fa--fa: "\f2f9\f2f9";
}

.fa-rotate-forward {
  --fa: "\f2f9";
  --fa--fa: "\f2f9\f2f9";
}

.fa-utensils {
  --fa: "\f2e7";
  --fa--fa: "\f2e7\f2e7";
}

.fa-cutlery {
  --fa: "\f2e7";
  --fa--fa: "\f2e7\f2e7";
}

.fa-arrow-up-wide-short {
  --fa: "\f161";
  --fa--fa: "\f161\f161";
}

.fa-sort-amount-up {
  --fa: "\f161";
  --fa--fa: "\f161\f161";
}

.fa-chart-pie-simple-circle-dollar {
  --fa: "\e605";
  --fa--fa: "\e605\e605";
}

.fa-balloons {
  --fa: "\e2e4";
  --fa--fa: "\e2e4\e2e4";
}

.fa-mill-sign {
  --fa: "\e1ed";
  --fa--fa: "\e1ed\e1ed";
}

.fa-bowl-rice {
  --fa: "\e2eb";
  --fa--fa: "\e2eb\e2eb";
}

.fa-timeline-arrow {
  --fa: "\e29d";
  --fa--fa: "\e29d\e29d";
}

.fa-skull {
  --fa: "\f54c";
  --fa--fa: "\f54c\f54c";
}

.fa-game-board-simple {
  --fa: "\f868";
  --fa--fa: "\f868\f868";
}

.fa-game-board-alt {
  --fa: "\f868";
  --fa--fa: "\f868\f868";
}

.fa-circle-video {
  --fa: "\e12b";
  --fa--fa: "\e12b\e12b";
}

.fa-video-circle {
  --fa: "\e12b";
  --fa--fa: "\e12b\e12b";
}

.fa-chart-scatter-bubble {
  --fa: "\e0e9";
  --fa--fa: "\e0e9\e0e9";
}

.fa-house-turret {
  --fa: "\e1b4";
  --fa--fa: "\e1b4\e1b4";
}

.fa-banana {
  --fa: "\e2e5";
  --fa--fa: "\e2e5\e2e5";
}

.fa-hand-holding-skull {
  --fa: "\e1a4";
  --fa--fa: "\e1a4\e1a4";
}

.fa-people-dress {
  --fa: "\e217";
  --fa--fa: "\e217\e217";
}

.fa-loveseat {
  --fa: "\f4cc";
  --fa--fa: "\f4cc\f4cc";
}

.fa-couch-small {
  --fa: "\f4cc";
  --fa--fa: "\f4cc\f4cc";
}

.fa-tower-broadcast {
  --fa: "\f519";
  --fa--fa: "\f519\f519";
}

.fa-broadcast-tower {
  --fa: "\f519";
  --fa--fa: "\f519\f519";
}

.fa-truck-pickup {
  --fa: "\f63c";
  --fa--fa: "\f63c\f63c";
}

.fa-block-quote {
  --fa: "\e0b5";
  --fa--fa: "\e0b5\e0b5";
}

.fa-up-long {
  --fa: "\f30c";
  --fa--fa: "\f30c\f30c";
}

.fa-long-arrow-alt-up {
  --fa: "\f30c";
  --fa--fa: "\f30c\f30c";
}

.fa-stop {
  --fa: "\f04d";
  --fa--fa: "\f04d\f04d";
}

.fa-code-merge {
  --fa: "\f387";
  --fa--fa: "\f387\f387";
}

.fa-money-check-dollar-pen {
  --fa: "\f873";
  --fa--fa: "\f873\f873";
}

.fa-money-check-edit-alt {
  --fa: "\f873";
  --fa--fa: "\f873\f873";
}

.fa-up-from-line {
  --fa: "\f346";
  --fa--fa: "\f346\f346";
}

.fa-arrow-alt-from-bottom {
  --fa: "\f346";
  --fa--fa: "\f346\f346";
}

.fa-upload {
  --fa: "\f093";
  --fa--fa: "\f093\f093";
}

.fa-hurricane {
  --fa: "\f751";
  --fa--fa: "\f751\f751";
}

.fa-grid-round-2-plus {
  --fa: "\e5dc";
  --fa--fa: "\e5dc\e5dc";
}

.fa-people-pants {
  --fa: "\e219";
  --fa--fa: "\e219\e219";
}

.fa-mound {
  --fa: "\e52d";
  --fa--fa: "\e52d\e52d";
}

.fa-windsock {
  --fa: "\f777";
  --fa--fa: "\f777\f777";
}

.fa-circle-half {
  --fa: "\e110";
  --fa--fa: "\e110\e110";
}

.fa-brake-warning {
  --fa: "\e0c7";
  --fa--fa: "\e0c7\e0c7";
}

.fa-toilet-portable {
  --fa: "\e583";
  --fa--fa: "\e583\e583";
}

.fa-compact-disc {
  --fa: "\f51f";
  --fa--fa: "\f51f\f51f";
}

.fa-file-arrow-down {
  --fa: "\f56d";
  --fa--fa: "\f56d\f56d";
}

.fa-file-download {
  --fa: "\f56d";
  --fa--fa: "\f56d\f56d";
}

.fa-saxophone-fire {
  --fa: "\f8db";
  --fa--fa: "\f8db\f8db";
}

.fa-sax-hot {
  --fa: "\f8db";
  --fa--fa: "\f8db\f8db";
}

.fa-camera-web-slash {
  --fa: "\f833";
  --fa--fa: "\f833\f833";
}

.fa-webcam-slash {
  --fa: "\f833";
  --fa--fa: "\f833\f833";
}

.fa-folder-medical {
  --fa: "\e18c";
  --fa--fa: "\e18c\e18c";
}

.fa-folder-gear {
  --fa: "\e187";
  --fa--fa: "\e187\e187";
}

.fa-folder-cog {
  --fa: "\e187";
  --fa--fa: "\e187\e187";
}

.fa-hand-wave {
  --fa: "\e1a7";
  --fa--fa: "\e1a7\e1a7";
}

.fa-arrow-up-arrow-down {
  --fa: "\e099";
  --fa--fa: "\e099\e099";
}

.fa-sort-up-down {
  --fa: "\e099";
  --fa--fa: "\e099\e099";
}

.fa-caravan {
  --fa: "\f8ff";
  --fa--fa: "\f8ff\f8ff";
}

.fa-shield-cat {
  --fa: "\e572";
  --fa--fa: "\e572\e572";
}

.fa-message-slash {
  --fa: "\f4a9";
  --fa--fa: "\f4a9\f4a9";
}

.fa-comment-alt-slash {
  --fa: "\f4a9";
  --fa--fa: "\f4a9\f4a9";
}

.fa-bolt {
  --fa: "\f0e7";
  --fa--fa: "\f0e7\f0e7";
}

.fa-zap {
  --fa: "\f0e7";
  --fa--fa: "\f0e7\f0e7";
}

.fa-trash-can-check {
  --fa: "\e2a9";
  --fa--fa: "\e2a9\e2a9";
}

.fa-glass-water {
  --fa: "\e4f4";
  --fa--fa: "\e4f4\e4f4";
}

.fa-oil-well {
  --fa: "\e532";
  --fa--fa: "\e532\e532";
}

.fa-table-cells-column-unlock {
  --fa: "\e690";
  --fa--fa: "\e690\e690";
}

.fa-person-simple {
  --fa: "\e220";
  --fa--fa: "\e220\e220";
}

.fa-arrow-turn-left-up {
  --fa: "\e634";
  --fa--fa: "\e634\e634";
}

.fa-vault {
  --fa: "\e2c5";
  --fa--fa: "\e2c5\e2c5";
}

.fa-mars {
  --fa: "\f222";
  --fa--fa: "\f222\f222";
}

.fa-toilet {
  --fa: "\f7d8";
  --fa--fa: "\f7d8\f7d8";
}

.fa-plane-circle-xmark {
  --fa: "\e557";
  --fa--fa: "\e557\e557";
}

.fa-yen-sign {
  --fa: "\f157";
  --fa--fa: "\f157\f157";
}

.fa-cny {
  --fa: "\f157";
  --fa--fa: "\f157\f157";
}

.fa-jpy {
  --fa: "\f157";
  --fa--fa: "\f157\f157";
}

.fa-rmb {
  --fa: "\f157";
  --fa--fa: "\f157\f157";
}

.fa-yen {
  --fa: "\f157";
  --fa--fa: "\f157\f157";
}

.fa-gear-code {
  --fa: "\e5e8";
  --fa--fa: "\e5e8\e5e8";
}

.fa-notes {
  --fa: "\e202";
  --fa--fa: "\e202\e202";
}

.fa-ruble-sign {
  --fa: "\f158";
  --fa--fa: "\f158\f158";
}

.fa-rouble {
  --fa: "\f158";
  --fa--fa: "\f158\f158";
}

.fa-rub {
  --fa: "\f158";
  --fa--fa: "\f158\f158";
}

.fa-ruble {
  --fa: "\f158";
  --fa--fa: "\f158\f158";
}

.fa-trash-undo {
  --fa: "\f895";
  --fa--fa: "\f895\f895";
}

.fa-trash-arrow-turn-left {
  --fa: "\f895";
  --fa--fa: "\f895\f895";
}

.fa-champagne-glass {
  --fa: "\f79e";
  --fa--fa: "\f79e\f79e";
}

.fa-glass-champagne {
  --fa: "\f79e";
  --fa--fa: "\f79e\f79e";
}

.fa-objects-align-center-horizontal {
  --fa: "\e3bc";
  --fa--fa: "\e3bc\e3bc";
}

.fa-sun {
  --fa: "\f185";
  --fa--fa: "\f185\f185";
}

.fa-trash-can-slash {
  --fa: "\e2ad";
  --fa--fa: "\e2ad\e2ad";
}

.fa-trash-alt-slash {
  --fa: "\e2ad";
  --fa--fa: "\e2ad\e2ad";
}

.fa-screen-users {
  --fa: "\f63d";
  --fa--fa: "\f63d\f63d";
}

.fa-users-class {
  --fa: "\f63d";
  --fa--fa: "\f63d\f63d";
}

.fa-guitar {
  --fa: "\f7a6";
  --fa--fa: "\f7a6\f7a6";
}

.fa-square-arrow-left {
  --fa: "\f33a";
  --fa--fa: "\f33a\f33a";
}

.fa-arrow-square-left {
  --fa: "\f33a";
  --fa--fa: "\f33a\f33a";
}

.fa-square-8 {
  --fa: "\e25d";
  --fa--fa: "\e25d\e25d";
}

.fa-face-smile-hearts {
  --fa: "\e390";
  --fa--fa: "\e390\e390";
}

.fa-brackets-square {
  --fa: "\f7e9";
  --fa--fa: "\f7e9\f7e9";
}

.fa-brackets {
  --fa: "\f7e9";
  --fa--fa: "\f7e9\f7e9";
}

.fa-laptop-arrow-down {
  --fa: "\e1c6";
  --fa--fa: "\e1c6\e1c6";
}

.fa-hockey-stick-puck {
  --fa: "\e3ae";
  --fa--fa: "\e3ae\e3ae";
}

.fa-house-tree {
  --fa: "\e1b3";
  --fa--fa: "\e1b3\e1b3";
}

.fa-signal-fair {
  --fa: "\f68d";
  --fa--fa: "\f68d\f68d";
}

.fa-signal-2 {
  --fa: "\f68d";
  --fa--fa: "\f68d\f68d";
}

.fa-face-laugh-wink {
  --fa: "\f59c";
  --fa--fa: "\f59c\f59c";
}

.fa-laugh-wink {
  --fa: "\f59c";
  --fa--fa: "\f59c\f59c";
}

.fa-circle-dollar {
  --fa: "\f2e8";
  --fa--fa: "\f2e8\f2e8";
}

.fa-dollar-circle {
  --fa: "\f2e8";
  --fa--fa: "\f2e8\f2e8";
}

.fa-usd-circle {
  --fa: "\f2e8";
  --fa--fa: "\f2e8\f2e8";
}

.fa-horse-head {
  --fa: "\f7ab";
  --fa--fa: "\f7ab\f7ab";
}

.fa-arrows-repeat {
  --fa: "\f364";
  --fa--fa: "\f364\f364";
}

.fa-repeat-alt {
  --fa: "\f364";
  --fa--fa: "\f364\f364";
}

.fa-bore-hole {
  --fa: "\e4c3";
  --fa--fa: "\e4c3\e4c3";
}

.fa-industry {
  --fa: "\f275";
  --fa--fa: "\f275\f275";
}

.fa-image-polaroid {
  --fa: "\f8c4";
  --fa--fa: "\f8c4\f8c4";
}

.fa-wave-triangle {
  --fa: "\f89a";
  --fa--fa: "\f89a\f89a";
}

.fa-turn-left-down {
  --fa: "\e637";
  --fa--fa: "\e637\e637";
}

.fa-person-running-fast {
  --fa: "\e5ff";
  --fa--fa: "\e5ff\e5ff";
}

.fa-circle-down {
  --fa: "\f358";
  --fa--fa: "\f358\f358";
}

.fa-arrow-alt-circle-down {
  --fa: "\f358";
  --fa--fa: "\f358\f358";
}

.fa-grill {
  --fa: "\e5a3";
  --fa--fa: "\e5a3\e5a3";
}

.fa-arrows-turn-to-dots {
  --fa: "\e4c1";
  --fa--fa: "\e4c1\e4c1";
}

.fa-chart-mixed {
  --fa: "\f643";
  --fa--fa: "\f643\f643";
}

.fa-analytics {
  --fa: "\f643";
  --fa--fa: "\f643\f643";
}

.fa-florin-sign {
  --fa: "\e184";
  --fa--fa: "\e184\e184";
}

.fa-arrow-down-short-wide {
  --fa: "\f884";
  --fa--fa: "\f884\f884";
}

.fa-sort-amount-desc {
  --fa: "\f884";
  --fa--fa: "\f884\f884";
}

.fa-sort-amount-down-alt {
  --fa: "\f884";
  --fa--fa: "\f884\f884";
}

.fa-less-than {
  --fa: "\<";
  --fa--fa: "\<\<";
}

.fa-display-code {
  --fa: "\e165";
  --fa--fa: "\e165\e165";
}

.fa-desktop-code {
  --fa: "\e165";
  --fa--fa: "\e165\e165";
}

.fa-face-drooling {
  --fa: "\e372";
  --fa--fa: "\e372\e372";
}

.fa-oil-temperature {
  --fa: "\f614";
  --fa--fa: "\f614\f614";
}

.fa-oil-temp {
  --fa: "\f614";
  --fa--fa: "\f614\f614";
}

.fa-square-question {
  --fa: "\f2fd";
  --fa--fa: "\f2fd\f2fd";
}

.fa-question-square {
  --fa: "\f2fd";
  --fa--fa: "\f2fd\f2fd";
}

.fa-air-conditioner {
  --fa: "\f8f4";
  --fa--fa: "\f8f4\f8f4";
}

.fa-angle-down {
  --fa: "\f107";
  --fa--fa: "\f107\f107";
}

.fa-mountains {
  --fa: "\f6fd";
  --fa--fa: "\f6fd\f6fd";
}

.fa-omega {
  --fa: "\f67a";
  --fa--fa: "\f67a\f67a";
}

.fa-car-tunnel {
  --fa: "\e4de";
  --fa--fa: "\e4de\e4de";
}

.fa-person-dolly-empty {
  --fa: "\f4d1";
  --fa--fa: "\f4d1\f4d1";
}

.fa-pan-food {
  --fa: "\e42b";
  --fa--fa: "\e42b\e42b";
}

.fa-head-side-cough {
  --fa: "\e061";
  --fa--fa: "\e061\e061";
}

.fa-grip-lines {
  --fa: "\f7a4";
  --fa--fa: "\f7a4\f7a4";
}

.fa-thumbs-down {
  --fa: "\f165";
  --fa--fa: "\f165\f165";
}

.fa-user-lock {
  --fa: "\f502";
  --fa--fa: "\f502\f502";
}

.fa-arrow-right-long {
  --fa: "\f178";
  --fa--fa: "\f178\f178";
}

.fa-long-arrow-right {
  --fa: "\f178";
  --fa--fa: "\f178\f178";
}

.fa-tickets-airline {
  --fa: "\e29b";
  --fa--fa: "\e29b\e29b";
}

.fa-tickets-perforated-plane {
  --fa: "\e29b";
  --fa--fa: "\e29b\e29b";
}

.fa-tickets-plane {
  --fa: "\e29b";
  --fa--fa: "\e29b\e29b";
}

.fa-tent-double-peak {
  --fa: "\e627";
  --fa--fa: "\e627\e627";
}

.fa-anchor-circle-xmark {
  --fa: "\e4ac";
  --fa--fa: "\e4ac\e4ac";
}

.fa-ellipsis {
  --fa: "\f141";
  --fa--fa: "\f141\f141";
}

.fa-ellipsis-h {
  --fa: "\f141";
  --fa--fa: "\f141\f141";
}

.fa-nfc-slash {
  --fa: "\e1fc";
  --fa--fa: "\e1fc\e1fc";
}

.fa-chess-pawn {
  --fa: "\f443";
  --fa--fa: "\f443\f443";
}

.fa-kit-medical {
  --fa: "\f479";
  --fa--fa: "\f479\f479";
}

.fa-first-aid {
  --fa: "\f479";
  --fa--fa: "\f479\f479";
}

.fa-grid-2-plus {
  --fa: "\e197";
  --fa--fa: "\e197\e197";
}

.fa-bells {
  --fa: "\f77f";
  --fa--fa: "\f77f\f77f";
}

.fa-person-through-window {
  --fa: "\e5a9";
  --fa--fa: "\e5a9\e5a9";
}

.fa-toolbox {
  --fa: "\f552";
  --fa--fa: "\f552\f552";
}

.fa-globe-wifi {
  --fa: "\e685";
  --fa--fa: "\e685\e685";
}

.fa-envelope-dot {
  --fa: "\e16f";
  --fa--fa: "\e16f\e16f";
}

.fa-envelope-badge {
  --fa: "\e16f";
  --fa--fa: "\e16f\e16f";
}

.fa-magnifying-glass-waveform {
  --fa: "\e661";
  --fa--fa: "\e661\e661";
}

.fa-hands-holding-circle {
  --fa: "\e4fb";
  --fa--fa: "\e4fb\e4fb";
}

.fa-bug {
  --fa: "\f188";
  --fa--fa: "\f188\f188";
}

.fa-bowl-chopsticks {
  --fa: "\e2e9";
  --fa--fa: "\e2e9\e2e9";
}

.fa-credit-card {
  --fa: "\f09d";
  --fa--fa: "\f09d\f09d";
}

.fa-credit-card-alt {
  --fa: "\f09d";
  --fa--fa: "\f09d\f09d";
}

.fa-circle-s {
  --fa: "\e121";
  --fa--fa: "\e121\e121";
}

.fa-box-ballot {
  --fa: "\f735";
  --fa--fa: "\f735\f735";
}

.fa-car {
  --fa: "\f1b9";
  --fa--fa: "\f1b9\f1b9";
}

.fa-automobile {
  --fa: "\f1b9";
  --fa--fa: "\f1b9\f1b9";
}

.fa-hand-holding-hand {
  --fa: "\e4f7";
  --fa--fa: "\e4f7\e4f7";
}

.fa-user-tie-hair {
  --fa: "\e45f";
  --fa--fa: "\e45f\e45f";
}

.fa-podium-star {
  --fa: "\f758";
  --fa--fa: "\f758\f758";
}

.fa-user-hair-mullet {
  --fa: "\e45c";
  --fa--fa: "\e45c\e45c";
}

.fa-business-front {
  --fa: "\e45c";
  --fa--fa: "\e45c\e45c";
}

.fa-party-back {
  --fa: "\e45c";
  --fa--fa: "\e45c\e45c";
}

.fa-trian-balbot {
  --fa: "\e45c";
  --fa--fa: "\e45c\e45c";
}

.fa-microphone-stand {
  --fa: "\f8cb";
  --fa--fa: "\f8cb\f8cb";
}

.fa-book-open-reader {
  --fa: "\f5da";
  --fa--fa: "\f5da\f5da";
}

.fa-book-reader {
  --fa: "\f5da";
  --fa--fa: "\f5da\f5da";
}

.fa-family-dress {
  --fa: "\e301";
  --fa--fa: "\e301\e301";
}

.fa-circle-x {
  --fa: "\e12e";
  --fa--fa: "\e12e\e12e";
}

.fa-cabin {
  --fa: "\e46d";
  --fa--fa: "\e46d\e46d";
}

.fa-mountain-sun {
  --fa: "\e52f";
  --fa--fa: "\e52f\e52f";
}

.fa-chart-simple-horizontal {
  --fa: "\e474";
  --fa--fa: "\e474\e474";
}

.fa-arrows-left-right-to-line {
  --fa: "\e4ba";
  --fa--fa: "\e4ba\e4ba";
}

.fa-hand-back-point-left {
  --fa: "\e19f";
  --fa--fa: "\e19f\e19f";
}

.fa-message-dots {
  --fa: "\f4a3";
  --fa--fa: "\f4a3\f4a3";
}

.fa-comment-alt-dots {
  --fa: "\f4a3";
  --fa--fa: "\f4a3\f4a3";
}

.fa-messaging {
  --fa: "\f4a3";
  --fa--fa: "\f4a3\f4a3";
}

.fa-file-heart {
  --fa: "\e176";
  --fa--fa: "\e176\e176";
}

.fa-beer-mug {
  --fa: "\e0b3";
  --fa--fa: "\e0b3\e0b3";
}

.fa-beer-foam {
  --fa: "\e0b3";
  --fa--fa: "\e0b3\e0b3";
}

.fa-dice-d20 {
  --fa: "\f6cf";
  --fa--fa: "\f6cf\f6cf";
}

.fa-drone {
  --fa: "\f85f";
  --fa--fa: "\f85f\f85f";
}

.fa-truck-droplet {
  --fa: "\e58c";
  --fa--fa: "\e58c\e58c";
}

.fa-file-circle-xmark {
  --fa: "\e5a1";
  --fa--fa: "\e5a1\e5a1";
}

.fa-temperature-arrow-up {
  --fa: "\e040";
  --fa--fa: "\e040\e040";
}

.fa-temperature-up {
  --fa: "\e040";
  --fa--fa: "\e040\e040";
}

.fa-medal {
  --fa: "\f5a2";
  --fa--fa: "\f5a2\f5a2";
}

.fa-person-fairy {
  --fa: "\e608";
  --fa--fa: "\e608\e608";
}

.fa-bed {
  --fa: "\f236";
  --fa--fa: "\f236\f236";
}

.fa-book-copy {
  --fa: "\e0be";
  --fa--fa: "\e0be\e0be";
}

.fa-square-h {
  --fa: "\f0fd";
  --fa--fa: "\f0fd\f0fd";
}

.fa-h-square {
  --fa: "\f0fd";
  --fa--fa: "\f0fd\f0fd";
}

.fa-square-c {
  --fa: "\e266";
  --fa--fa: "\e266\e266";
}

.fa-clock-two {
  --fa: "\e35a";
  --fa--fa: "\e35a\e35a";
}

.fa-square-ellipsis-vertical {
  --fa: "\e26f";
  --fa--fa: "\e26f\e26f";
}

.fa-calendar-users {
  --fa: "\e5e2";
  --fa--fa: "\e5e2\e5e2";
}

.fa-podcast {
  --fa: "\f2ce";
  --fa--fa: "\f2ce\f2ce";
}

.fa-bee {
  --fa: "\e0b2";
  --fa--fa: "\e0b2\e0b2";
}

.fa-temperature-full {
  --fa: "\f2c7";
  --fa--fa: "\f2c7\f2c7";
}

.fa-temperature-4 {
  --fa: "\f2c7";
  --fa--fa: "\f2c7\f2c7";
}

.fa-thermometer-4 {
  --fa: "\f2c7";
  --fa--fa: "\f2c7\f2c7";
}

.fa-thermometer-full {
  --fa: "\f2c7";
  --fa--fa: "\f2c7\f2c7";
}

.fa-bell {
  --fa: "\f0f3";
  --fa--fa: "\f0f3\f0f3";
}

.fa-candy-bar {
  --fa: "\e3e8";
  --fa--fa: "\e3e8\e3e8";
}

.fa-chocolate-bar {
  --fa: "\e3e8";
  --fa--fa: "\e3e8\e3e8";
}

.fa-xmark-large {
  --fa: "\e59b";
  --fa--fa: "\e59b\e59b";
}

.fa-pinata {
  --fa: "\e3c3";
  --fa--fa: "\e3c3\e3c3";
}

.fa-file-ppt {
  --fa: "\e64a";
  --fa--fa: "\e64a\e64a";
}

.fa-arrows-from-line {
  --fa: "\e0a4";
  --fa--fa: "\e0a4\e0a4";
}

.fa-superscript {
  --fa: "\f12b";
  --fa--fa: "\f12b\f12b";
}

.fa-bowl-spoon {
  --fa: "\e3e0";
  --fa--fa: "\e3e0\e3e0";
}

.fa-hexagon-check {
  --fa: "\e416";
  --fa--fa: "\e416\e416";
}

.fa-plug-circle-xmark {
  --fa: "\e560";
  --fa--fa: "\e560\e560";
}

.fa-star-of-life {
  --fa: "\f621";
  --fa--fa: "\f621\f621";
}

.fa-phone-slash {
  --fa: "\f3dd";
  --fa--fa: "\f3dd\f3dd";
}

.fa-traffic-light-stop {
  --fa: "\f63a";
  --fa--fa: "\f63a\f63a";
}

.fa-paint-roller {
  --fa: "\f5aa";
  --fa--fa: "\f5aa\f5aa";
}

.fa-accent-grave {
  --fa: "\`";
  --fa--fa: "\`\`";
}

.fa-handshake-angle {
  --fa: "\f4c4";
  --fa--fa: "\f4c4\f4c4";
}

.fa-hands-helping {
  --fa: "\f4c4";
  --fa--fa: "\f4c4\f4c4";
}

.fa-circle-0 {
  --fa: "\e0ed";
  --fa--fa: "\e0ed\e0ed";
}

.fa-dial-med-low {
  --fa: "\e160";
  --fa--fa: "\e160\e160";
}

.fa-location-dot {
  --fa: "\f3c5";
  --fa--fa: "\f3c5\f3c5";
}

.fa-map-marker-alt {
  --fa: "\f3c5";
  --fa--fa: "\f3c5\f3c5";
}

.fa-crab {
  --fa: "\e3ff";
  --fa--fa: "\e3ff\e3ff";
}

.fa-box-open-full {
  --fa: "\f49c";
  --fa--fa: "\f49c\f49c";
}

.fa-box-full {
  --fa: "\f49c";
  --fa--fa: "\f49c\f49c";
}

.fa-file {
  --fa: "\f15b";
  --fa--fa: "\f15b\f15b";
}

.fa-greater-than {
  --fa: "\>";
  --fa--fa: "\>\>";
}

.fa-quotes {
  --fa: "\e234";
  --fa--fa: "\e234\e234";
}

.fa-pretzel {
  --fa: "\e441";
  --fa--fa: "\e441\e441";
}

.fa-t-rex {
  --fa: "\e629";
  --fa--fa: "\e629\e629";
}

.fa-person-swimming {
  --fa: "\f5c4";
  --fa--fa: "\f5c4\f5c4";
}

.fa-swimmer {
  --fa: "\f5c4";
  --fa--fa: "\f5c4\f5c4";
}

.fa-arrow-down {
  --fa: "\f063";
  --fa--fa: "\f063\f063";
}

.fa-user-robot-xmarks {
  --fa: "\e4a7";
  --fa--fa: "\e4a7\e4a7";
}

.fa-message-quote {
  --fa: "\e1e4";
  --fa--fa: "\e1e4\e1e4";
}

.fa-comment-alt-quote {
  --fa: "\e1e4";
  --fa--fa: "\e1e4\e1e4";
}

.fa-candy-corn {
  --fa: "\f6bd";
  --fa--fa: "\f6bd\f6bd";
}

.fa-folder-magnifying-glass {
  --fa: "\e18b";
  --fa--fa: "\e18b\e18b";
}

.fa-folder-search {
  --fa: "\e18b";
  --fa--fa: "\e18b\e18b";
}

.fa-notebook {
  --fa: "\e201";
  --fa--fa: "\e201\e201";
}

.fa-circle-wifi {
  --fa: "\e67d";
  --fa--fa: "\e67d\e67d";
}

.fa-droplet {
  --fa: "\f043";
  --fa--fa: "\f043\f043";
}

.fa-tint {
  --fa: "\f043";
  --fa--fa: "\f043\f043";
}

.fa-bullseye-pointer {
  --fa: "\f649";
  --fa--fa: "\f649\f649";
}

.fa-eraser {
  --fa: "\f12d";
  --fa--fa: "\f12d\f12d";
}

.fa-hexagon-image {
  --fa: "\e504";
  --fa--fa: "\e504\e504";
}

.fa-earth-americas {
  --fa: "\f57d";
  --fa--fa: "\f57d\f57d";
}

.fa-earth {
  --fa: "\f57d";
  --fa--fa: "\f57d\f57d";
}

.fa-earth-america {
  --fa: "\f57d";
  --fa--fa: "\f57d\f57d";
}

.fa-globe-americas {
  --fa: "\f57d";
  --fa--fa: "\f57d\f57d";
}

.fa-file-svg {
  --fa: "\e64b";
  --fa--fa: "\e64b\e64b";
}

.fa-crate-apple {
  --fa: "\f6b1";
  --fa--fa: "\f6b1\f6b1";
}

.fa-apple-crate {
  --fa: "\f6b1";
  --fa--fa: "\f6b1\f6b1";
}

.fa-person-burst {
  --fa: "\e53b";
  --fa--fa: "\e53b\e53b";
}

.fa-game-board {
  --fa: "\f867";
  --fa--fa: "\f867\f867";
}

.fa-hat-chef {
  --fa: "\f86b";
  --fa--fa: "\f86b\f86b";
}

.fa-hand-back-point-right {
  --fa: "\e1a1";
  --fa--fa: "\e1a1\e1a1";
}

.fa-dove {
  --fa: "\f4ba";
  --fa--fa: "\f4ba\f4ba";
}

.fa-snowflake-droplets {
  --fa: "\e5c1";
  --fa--fa: "\e5c1\e5c1";
}

.fa-battery-empty {
  --fa: "\f244";
  --fa--fa: "\f244\f244";
}

.fa-battery-0 {
  --fa: "\f244";
  --fa--fa: "\f244\f244";
}

.fa-grid-4 {
  --fa: "\e198";
  --fa--fa: "\e198\e198";
}

.fa-socks {
  --fa: "\f696";
  --fa--fa: "\f696\f696";
}

.fa-face-sunglasses {
  --fa: "\e398";
  --fa--fa: "\e398\e398";
}

.fa-inbox {
  --fa: "\f01c";
  --fa--fa: "\f01c\f01c";
}

.fa-square-0 {
  --fa: "\e255";
  --fa--fa: "\e255\e255";
}

.fa-section {
  --fa: "\e447";
  --fa--fa: "\e447\e447";
}

.fa-square-this-way-up {
  --fa: "\f49f";
  --fa--fa: "\f49f\f49f";
}

.fa-box-up {
  --fa: "\f49f";
  --fa--fa: "\f49f\f49f";
}

.fa-gauge-high {
  --fa: "\f625";
  --fa--fa: "\f625\f625";
}

.fa-tachometer-alt {
  --fa: "\f625";
  --fa--fa: "\f625\f625";
}

.fa-tachometer-alt-fast {
  --fa: "\f625";
  --fa--fa: "\f625\f625";
}

.fa-square-ampersand {
  --fa: "\e260";
  --fa--fa: "\e260\e260";
}

.fa-envelope-open-text {
  --fa: "\f658";
  --fa--fa: "\f658\f658";
}

.fa-lamp-desk {
  --fa: "\e014";
  --fa--fa: "\e014\e014";
}

.fa-hospital {
  --fa: "\f0f8";
  --fa--fa: "\f0f8\f0f8";
}

.fa-hospital-alt {
  --fa: "\f0f8";
  --fa--fa: "\f0f8\f0f8";
}

.fa-hospital-wide {
  --fa: "\f0f8";
  --fa--fa: "\f0f8\f0f8";
}

.fa-poll-people {
  --fa: "\f759";
  --fa--fa: "\f759\f759";
}

.fa-whiskey-glass-ice {
  --fa: "\f7a1";
  --fa--fa: "\f7a1\f7a1";
}

.fa-glass-whiskey-rocks {
  --fa: "\f7a1";
  --fa--fa: "\f7a1\f7a1";
}

.fa-wine-bottle {
  --fa: "\f72f";
  --fa--fa: "\f72f\f72f";
}

.fa-chess-rook {
  --fa: "\f447";
  --fa--fa: "\f447\f447";
}

.fa-user-bounty-hunter {
  --fa: "\e2bf";
  --fa--fa: "\e2bf\e2bf";
}

.fa-bars-staggered {
  --fa: "\f550";
  --fa--fa: "\f550\f550";
}

.fa-reorder {
  --fa: "\f550";
  --fa--fa: "\f550\f550";
}

.fa-stream {
  --fa: "\f550";
  --fa--fa: "\f550\f550";
}

.fa-diagram-sankey {
  --fa: "\e158";
  --fa--fa: "\e158\e158";
}

.fa-cloud-hail-mixed {
  --fa: "\f73a";
  --fa--fa: "\f73a\f73a";
}

.fa-circle-up-left {
  --fa: "\e128";
  --fa--fa: "\e128\e128";
}

.fa-dharmachakra {
  --fa: "\f655";
  --fa--fa: "\f655\f655";
}

.fa-objects-align-left {
  --fa: "\e3be";
  --fa--fa: "\e3be\e3be";
}

.fa-oil-can-drip {
  --fa: "\e205";
  --fa--fa: "\e205\e205";
}

.fa-face-smiling-hands {
  --fa: "\e396";
  --fa--fa: "\e396\e396";
}

.fa-broccoli {
  --fa: "\e3e2";
  --fa--fa: "\e3e2\e3e2";
}

.fa-route-interstate {
  --fa: "\f61b";
  --fa--fa: "\f61b\f61b";
}

.fa-ear-muffs {
  --fa: "\f795";
  --fa--fa: "\f795\f795";
}

.fa-hotdog {
  --fa: "\f80f";
  --fa--fa: "\f80f\f80f";
}

.fa-transporter-empty {
  --fa: "\e046";
  --fa--fa: "\e046\e046";
}

.fa-person-walking-with-cane {
  --fa: "\f29d";
  --fa--fa: "\f29d\f29d";
}

.fa-blind {
  --fa: "\f29d";
  --fa--fa: "\f29d\f29d";
}

.fa-angle-90 {
  --fa: "\e08d";
  --fa--fa: "\e08d\e08d";
}

.fa-rectangle-terminal {
  --fa: "\e236";
  --fa--fa: "\e236\e236";
}

.fa-kite {
  --fa: "\f6f4";
  --fa--fa: "\f6f4\f6f4";
}

.fa-drum {
  --fa: "\f569";
  --fa--fa: "\f569\f569";
}

.fa-scrubber {
  --fa: "\f2f8";
  --fa--fa: "\f2f8\f2f8";
}

.fa-ice-cream {
  --fa: "\f810";
  --fa--fa: "\f810\f810";
}

.fa-heart-circle-bolt {
  --fa: "\e4fc";
  --fa--fa: "\e4fc\e4fc";
}

.fa-fish-bones {
  --fa: "\e304";
  --fa--fa: "\e304\e304";
}

.fa-deer-rudolph {
  --fa: "\f78f";
  --fa--fa: "\f78f\f78f";
}

.fa-fax {
  --fa: "\f1ac";
  --fa--fa: "\f1ac\f1ac";
}

.fa-paragraph {
  --fa: "\f1dd";
  --fa--fa: "\f1dd\f1dd";
}

.fa-head-side-heart {
  --fa: "\e1aa";
  --fa--fa: "\e1aa\e1aa";
}

.fa-square-e {
  --fa: "\e26d";
  --fa--fa: "\e26d\e26d";
}

.fa-meter-fire {
  --fa: "\e1eb";
  --fa--fa: "\e1eb\e1eb";
}

.fa-cloud-hail {
  --fa: "\f739";
  --fa--fa: "\f739\f739";
}

.fa-check-to-slot {
  --fa: "\f772";
  --fa--fa: "\f772\f772";
}

.fa-vote-yea {
  --fa: "\f772";
  --fa--fa: "\f772\f772";
}

.fa-money-from-bracket {
  --fa: "\e312";
  --fa--fa: "\e312\e312";
}

.fa-star-half {
  --fa: "\f089";
  --fa--fa: "\f089\f089";
}

.fa-car-bus {
  --fa: "\f85a";
  --fa--fa: "\f85a\f85a";
}

.fa-speaker {
  --fa: "\f8df";
  --fa--fa: "\f8df\f8df";
}

.fa-timer {
  --fa: "\e29e";
  --fa--fa: "\e29e\e29e";
}

.fa-boxes-stacked {
  --fa: "\f468";
  --fa--fa: "\f468\f468";
}

.fa-boxes {
  --fa: "\f468";
  --fa--fa: "\f468\f468";
}

.fa-boxes-alt {
  --fa: "\f468";
  --fa--fa: "\f468\f468";
}

.fa-landmark-magnifying-glass {
  --fa: "\e622";
  --fa--fa: "\e622\e622";
}

.fa-grill-hot {
  --fa: "\e5a5";
  --fa--fa: "\e5a5\e5a5";
}

.fa-ballot-check {
  --fa: "\f733";
  --fa--fa: "\f733\f733";
}

.fa-link {
  --fa: "\f0c1";
  --fa--fa: "\f0c1\f0c1";
}

.fa-chain {
  --fa: "\f0c1";
  --fa--fa: "\f0c1\f0c1";
}

.fa-ear-listen {
  --fa: "\f2a2";
  --fa--fa: "\f2a2\f2a2";
}

.fa-assistive-listening-systems {
  --fa: "\f2a2";
  --fa--fa: "\f2a2\f2a2";
}

.fa-file-minus {
  --fa: "\f318";
  --fa--fa: "\f318\f318";
}

.fa-tree-city {
  --fa: "\e587";
  --fa--fa: "\e587\e587";
}

.fa-play {
  --fa: "\f04b";
  --fa--fa: "\f04b\f04b";
}

.fa-font {
  --fa: "\f031";
  --fa--fa: "\f031\f031";
}

.fa-cup-togo {
  --fa: "\f6c5";
  --fa--fa: "\f6c5\f6c5";
}

.fa-coffee-togo {
  --fa: "\f6c5";
  --fa--fa: "\f6c5\f6c5";
}

.fa-square-down-left {
  --fa: "\e26b";
  --fa--fa: "\e26b\e26b";
}

.fa-burger-lettuce {
  --fa: "\e3e3";
  --fa--fa: "\e3e3\e3e3";
}

.fa-table-cells-row-lock {
  --fa: "\e67a";
  --fa--fa: "\e67a\e67a";
}

.fa-rupiah-sign {
  --fa: "\e23d";
  --fa--fa: "\e23d\e23d";
}

.fa-magnifying-glass {
  --fa: "\f002";
  --fa--fa: "\f002\f002";
}

.fa-search {
  --fa: "\f002";
  --fa--fa: "\f002\f002";
}

.fa-table-tennis-paddle-ball {
  --fa: "\f45d";
  --fa--fa: "\f45d\f45d";
}

.fa-ping-pong-paddle-ball {
  --fa: "\f45d";
  --fa--fa: "\f45d\f45d";
}

.fa-table-tennis {
  --fa: "\f45d";
  --fa--fa: "\f45d\f45d";
}

.fa-person-dots-from-line {
  --fa: "\f470";
  --fa--fa: "\f470\f470";
}

.fa-diagnoses {
  --fa: "\f470";
  --fa--fa: "\f470\f470";
}

.fa-chevrons-down {
  --fa: "\f322";
  --fa--fa: "\f322\f322";
}

.fa-chevron-double-down {
  --fa: "\f322";
  --fa--fa: "\f322\f322";
}

.fa-trash-can-arrow-up {
  --fa: "\f82a";
  --fa--fa: "\f82a\f82a";
}

.fa-trash-restore-alt {
  --fa: "\f82a";
  --fa--fa: "\f82a\f82a";
}

.fa-signal-good {
  --fa: "\f68e";
  --fa--fa: "\f68e\f68e";
}

.fa-signal-3 {
  --fa: "\f68e";
  --fa--fa: "\f68e\f68e";
}

.fa-location-question {
  --fa: "\f60b";
  --fa--fa: "\f60b\f60b";
}

.fa-map-marker-question {
  --fa: "\f60b";
  --fa--fa: "\f60b\f60b";
}

.fa-floppy-disk-circle-xmark {
  --fa: "\e181";
  --fa--fa: "\e181\e181";
}

.fa-floppy-disk-times {
  --fa: "\e181";
  --fa--fa: "\e181\e181";
}

.fa-save-circle-xmark {
  --fa: "\e181";
  --fa--fa: "\e181\e181";
}

.fa-save-times {
  --fa: "\e181";
  --fa--fa: "\e181\e181";
}

.fa-naira-sign {
  --fa: "\e1f6";
  --fa--fa: "\e1f6\e1f6";
}

.fa-peach {
  --fa: "\e20b";
  --fa--fa: "\e20b\e20b";
}

.fa-circles-overlap-3 {
  --fa: "\e6a1";
  --fa--fa: "\e6a1\e6a1";
}

.fa-pronoun {
  --fa: "\e6a1";
  --fa--fa: "\e6a1\e6a1";
}

.fa-taxi-bus {
  --fa: "\e298";
  --fa--fa: "\e298\e298";
}

.fa-bracket-curly {
  --fa: "\{";
  --fa--fa: "\{\{";
}

.fa-bracket-curly-left {
  --fa: "\{";
  --fa--fa: "\{\{";
}

.fa-lobster {
  --fa: "\e421";
  --fa--fa: "\e421\e421";
}

.fa-cart-flatbed-empty {
  --fa: "\f476";
  --fa--fa: "\f476\f476";
}

.fa-dolly-flatbed-empty {
  --fa: "\f476";
  --fa--fa: "\f476\f476";
}

.fa-colon {
  --fa: "\:";
  --fa--fa: "\:\:";
}

.fa-cart-arrow-down {
  --fa: "\f218";
  --fa--fa: "\f218\f218";
}

.fa-wand {
  --fa: "\f72a";
  --fa--fa: "\f72a\f72a";
}

.fa-walkie-talkie {
  --fa: "\f8ef";
  --fa--fa: "\f8ef\f8ef";
}

.fa-file-pen {
  --fa: "\f31c";
  --fa--fa: "\f31c\f31c";
}

.fa-file-edit {
  --fa: "\f31c";
  --fa--fa: "\f31c\f31c";
}

.fa-receipt {
  --fa: "\f543";
  --fa--fa: "\f543\f543";
}

.fa-table-picnic {
  --fa: "\e32d";
  --fa--fa: "\e32d\e32d";
}

.fa-square-pen {
  --fa: "\f14b";
  --fa--fa: "\f14b\f14b";
}

.fa-pen-square {
  --fa: "\f14b";
  --fa--fa: "\f14b\f14b";
}

.fa-pencil-square {
  --fa: "\f14b";
  --fa--fa: "\f14b\f14b";
}

.fa-circle-microphone-lines {
  --fa: "\e117";
  --fa--fa: "\e117\e117";
}

.fa-microphone-circle-alt {
  --fa: "\e117";
  --fa--fa: "\e117\e117";
}

.fa-display-slash {
  --fa: "\e2fa";
  --fa--fa: "\e2fa\e2fa";
}

.fa-desktop-slash {
  --fa: "\e2fa";
  --fa--fa: "\e2fa\e2fa";
}

.fa-suitcase-rolling {
  --fa: "\f5c1";
  --fa--fa: "\f5c1\f5c1";
}

.fa-person-circle-exclamation {
  --fa: "\e53f";
  --fa--fa: "\e53f\e53f";
}

.fa-transporter-2 {
  --fa: "\e044";
  --fa--fa: "\e044\e044";
}

.fa-user-hoodie {
  --fa: "\e68a";
  --fa--fa: "\e68a\e68a";
}

.fa-hands-holding-diamond {
  --fa: "\f47c";
  --fa--fa: "\f47c\f47c";
}

.fa-hand-receiving {
  --fa: "\f47c";
  --fa--fa: "\f47c\f47c";
}

.fa-money-bill-simple-wave {
  --fa: "\e1f2";
  --fa--fa: "\e1f2\e1f2";
}

.fa-chevron-down {
  --fa: "\f078";
  --fa--fa: "\f078\f078";
}

.fa-battery-full {
  --fa: "\f240";
  --fa--fa: "\f240\f240";
}

.fa-battery {
  --fa: "\f240";
  --fa--fa: "\f240\f240";
}

.fa-battery-5 {
  --fa: "\f240";
  --fa--fa: "\f240\f240";
}

.fa-bell-plus {
  --fa: "\f849";
  --fa--fa: "\f849\f849";
}

.fa-book-arrow-right {
  --fa: "\e0b9";
  --fa--fa: "\e0b9\e0b9";
}

.fa-hospitals {
  --fa: "\f80e";
  --fa--fa: "\f80e\f80e";
}

.fa-club {
  --fa: "\f327";
  --fa--fa: "\f327\f327";
}

.fa-skull-crossbones {
  --fa: "\f714";
  --fa--fa: "\f714\f714";
}

.fa-droplet-degree {
  --fa: "\f748";
  --fa--fa: "\f748\f748";
}

.fa-dewpoint {
  --fa: "\f748";
  --fa--fa: "\f748\f748";
}

.fa-code-compare {
  --fa: "\e13a";
  --fa--fa: "\e13a\e13a";
}

.fa-list-ul {
  --fa: "\f0ca";
  --fa--fa: "\f0ca\f0ca";
}

.fa-list-dots {
  --fa: "\f0ca";
  --fa--fa: "\f0ca\f0ca";
}

.fa-hand-holding-magic {
  --fa: "\f6e5";
  --fa--fa: "\f6e5\f6e5";
}

.fa-watermelon-slice {
  --fa: "\e337";
  --fa--fa: "\e337\e337";
}

.fa-circle-ellipsis {
  --fa: "\e10a";
  --fa--fa: "\e10a\e10a";
}

.fa-school-lock {
  --fa: "\e56f";
  --fa--fa: "\e56f\e56f";
}

.fa-tower-cell {
  --fa: "\e585";
  --fa--fa: "\e585\e585";
}

.fa-sd-cards {
  --fa: "\e240";
  --fa--fa: "\e240\e240";
}

.fa-jug-bottle {
  --fa: "\e5fb";
  --fa--fa: "\e5fb\e5fb";
}

.fa-down-long {
  --fa: "\f309";
  --fa--fa: "\f309\f309";
}

.fa-long-arrow-alt-down {
  --fa: "\f309";
  --fa--fa: "\f309\f309";
}

.fa-envelopes {
  --fa: "\e170";
  --fa--fa: "\e170\e170";
}

.fa-phone-office {
  --fa: "\f67d";
  --fa--fa: "\f67d\f67d";
}

.fa-ranking-star {
  --fa: "\e561";
  --fa--fa: "\e561\e561";
}

.fa-chess-king {
  --fa: "\f43f";
  --fa--fa: "\f43f\f43f";
}

.fa-nfc-pen {
  --fa: "\e1fa";
  --fa--fa: "\e1fa\e1fa";
}

.fa-person-harassing {
  --fa: "\e549";
  --fa--fa: "\e549\e549";
}

.fa-magnifying-glass-play {
  --fa: "\e660";
  --fa--fa: "\e660\e660";
}

.fa-hat-winter {
  --fa: "\f7a8";
  --fa--fa: "\f7a8\f7a8";
}

.fa-brazilian-real-sign {
  --fa: "\e46c";
  --fa--fa: "\e46c\e46c";
}

.fa-landmark-dome {
  --fa: "\f752";
  --fa--fa: "\f752\f752";
}

.fa-landmark-alt {
  --fa: "\f752";
  --fa--fa: "\f752\f752";
}

.fa-bone-break {
  --fa: "\f5d8";
  --fa--fa: "\f5d8\f5d8";
}

.fa-arrow-up {
  --fa: "\f062";
  --fa--fa: "\f062\f062";
}

.fa-down-from-dotted-line {
  --fa: "\e407";
  --fa--fa: "\e407\e407";
}

.fa-tv {
  --fa: "\f26c";
  --fa--fa: "\f26c\f26c";
}

.fa-television {
  --fa: "\f26c";
  --fa--fa: "\f26c\f26c";
}

.fa-tv-alt {
  --fa: "\f26c";
  --fa--fa: "\f26c\f26c";
}

.fa-border-left {
  --fa: "\f84f";
  --fa--fa: "\f84f\f84f";
}

.fa-circle-divide {
  --fa: "\e106";
  --fa--fa: "\e106\e106";
}

.fa-shrimp {
  --fa: "\e448";
  --fa--fa: "\e448\e448";
}

.fa-list-check {
  --fa: "\f0ae";
  --fa--fa: "\f0ae\f0ae";
}

.fa-tasks {
  --fa: "\f0ae";
  --fa--fa: "\f0ae\f0ae";
}

.fa-diagram-subtask {
  --fa: "\e479";
  --fa--fa: "\e479\e479";
}

.fa-jug-detergent {
  --fa: "\e519";
  --fa--fa: "\e519\e519";
}

.fa-circle-user {
  --fa: "\f2bd";
  --fa--fa: "\f2bd\f2bd";
}

.fa-user-circle {
  --fa: "\f2bd";
  --fa--fa: "\f2bd\f2bd";
}

.fa-square-y {
  --fa: "\e287";
  --fa--fa: "\e287\e287";
}

.fa-user-doctor-hair {
  --fa: "\e458";
  --fa--fa: "\e458\e458";
}

.fa-planet-ringed {
  --fa: "\e020";
  --fa--fa: "\e020\e020";
}

.fa-mushroom {
  --fa: "\e425";
  --fa--fa: "\e425\e425";
}

.fa-user-shield {
  --fa: "\f505";
  --fa--fa: "\f505\f505";
}

.fa-megaphone {
  --fa: "\f675";
  --fa--fa: "\f675\f675";
}

.fa-wreath-laurel {
  --fa: "\e5d2";
  --fa--fa: "\e5d2\e5d2";
}

.fa-circle-exclamation-check {
  --fa: "\e10d";
  --fa--fa: "\e10d\e10d";
}

.fa-wind {
  --fa: "\f72e";
  --fa--fa: "\f72e\f72e";
}

.fa-box-dollar {
  --fa: "\f4a0";
  --fa--fa: "\f4a0\f4a0";
}

.fa-box-usd {
  --fa: "\f4a0";
  --fa--fa: "\f4a0\f4a0";
}

.fa-car-burst {
  --fa: "\f5e1";
  --fa--fa: "\f5e1\f5e1";
}

.fa-car-crash {
  --fa: "\f5e1";
  --fa--fa: "\f5e1\f5e1";
}

.fa-y {
  --fa: "Y";
  --fa--fa: "YY";
}

.fa-user-headset {
  --fa: "\f82d";
  --fa--fa: "\f82d\f82d";
}

.fa-arrows-retweet {
  --fa: "\f361";
  --fa--fa: "\f361\f361";
}

.fa-retweet-alt {
  --fa: "\f361";
  --fa--fa: "\f361\f361";
}

.fa-person-snowboarding {
  --fa: "\f7ce";
  --fa--fa: "\f7ce\f7ce";
}

.fa-snowboarding {
  --fa: "\f7ce";
  --fa--fa: "\f7ce\f7ce";
}

.fa-square-chevron-right {
  --fa: "\f32b";
  --fa--fa: "\f32b\f32b";
}

.fa-chevron-square-right {
  --fa: "\f32b";
  --fa--fa: "\f32b\f32b";
}

.fa-lacrosse-stick-ball {
  --fa: "\e3b6";
  --fa--fa: "\e3b6\e3b6";
}

.fa-truck-fast {
  --fa: "\f48b";
  --fa--fa: "\f48b\f48b";
}

.fa-shipping-fast {
  --fa: "\f48b";
  --fa--fa: "\f48b\f48b";
}

.fa-user-magnifying-glass {
  --fa: "\e5c5";
  --fa--fa: "\e5c5\e5c5";
}

.fa-star-sharp {
  --fa: "\e28b";
  --fa--fa: "\e28b\e28b";
}

.fa-comment-heart {
  --fa: "\e5c8";
  --fa--fa: "\e5c8\e5c8";
}

.fa-circle-1 {
  --fa: "\e0ee";
  --fa--fa: "\e0ee\e0ee";
}

.fa-circle-star {
  --fa: "\e123";
  --fa--fa: "\e123\e123";
}

.fa-star-circle {
  --fa: "\e123";
  --fa--fa: "\e123\e123";
}

.fa-fish {
  --fa: "\f578";
  --fa--fa: "\f578\f578";
}

.fa-cloud-fog {
  --fa: "\f74e";
  --fa--fa: "\f74e\f74e";
}

.fa-fog {
  --fa: "\f74e";
  --fa--fa: "\f74e\f74e";
}

.fa-waffle {
  --fa: "\e466";
  --fa--fa: "\e466\e466";
}

.fa-music-note {
  --fa: "\f8cf";
  --fa--fa: "\f8cf\f8cf";
}

.fa-music-alt {
  --fa: "\f8cf";
  --fa--fa: "\f8cf\f8cf";
}

.fa-hexagon-exclamation {
  --fa: "\e417";
  --fa--fa: "\e417\e417";
}

.fa-cart-shopping-fast {
  --fa: "\e0dc";
  --fa--fa: "\e0dc\e0dc";
}

.fa-object-union {
  --fa: "\e49f";
  --fa--fa: "\e49f\e49f";
}

.fa-user-graduate {
  --fa: "\f501";
  --fa--fa: "\f501\f501";
}

.fa-starfighter {
  --fa: "\e037";
  --fa--fa: "\e037\e037";
}

.fa-circle-half-stroke {
  --fa: "\f042";
  --fa--fa: "\f042\f042";
}

.fa-adjust {
  --fa: "\f042";
  --fa--fa: "\f042\f042";
}

.fa-arrow-right-long-to-line {
  --fa: "\e3d5";
  --fa--fa: "\e3d5\e3d5";
}

.fa-square-arrow-down {
  --fa: "\f339";
  --fa--fa: "\f339\f339";
}

.fa-arrow-square-down {
  --fa: "\f339";
  --fa--fa: "\f339\f339";
}

.fa-diamond-half-stroke {
  --fa: "\e5b8";
  --fa--fa: "\e5b8\e5b8";
}

.fa-clapperboard {
  --fa: "\e131";
  --fa--fa: "\e131\e131";
}

.fa-square-chevron-left {
  --fa: "\f32a";
  --fa--fa: "\f32a\f32a";
}

.fa-chevron-square-left {
  --fa: "\f32a";
  --fa--fa: "\f32a\f32a";
}

.fa-phone-intercom {
  --fa: "\e434";
  --fa--fa: "\e434\e434";
}

.fa-link-horizontal {
  --fa: "\e1cb";
  --fa--fa: "\e1cb\e1cb";
}

.fa-chain-horizontal {
  --fa: "\e1cb";
  --fa--fa: "\e1cb\e1cb";
}

.fa-mango {
  --fa: "\e30f";
  --fa--fa: "\e30f\e30f";
}

.fa-music-note-slash {
  --fa: "\f8d0";
  --fa--fa: "\f8d0\f8d0";
}

.fa-music-alt-slash {
  --fa: "\f8d0";
  --fa--fa: "\f8d0\f8d0";
}

.fa-circle-radiation {
  --fa: "\f7ba";
  --fa--fa: "\f7ba\f7ba";
}

.fa-radiation-alt {
  --fa: "\f7ba";
  --fa--fa: "\f7ba\f7ba";
}

.fa-face-tongue-sweat {
  --fa: "\e39e";
  --fa--fa: "\e39e\e39e";
}

.fa-globe-stand {
  --fa: "\f5f6";
  --fa--fa: "\f5f6\f5f6";
}

.fa-baseball {
  --fa: "\f433";
  --fa--fa: "\f433\f433";
}

.fa-baseball-ball {
  --fa: "\f433";
  --fa--fa: "\f433\f433";
}

.fa-circle-p {
  --fa: "\e11a";
  --fa--fa: "\e11a\e11a";
}

.fa-award-simple {
  --fa: "\e0ab";
  --fa--fa: "\e0ab\e0ab";
}

.fa-jet-fighter-up {
  --fa: "\e518";
  --fa--fa: "\e518\e518";
}

.fa-diagram-project {
  --fa: "\f542";
  --fa--fa: "\f542\f542";
}

.fa-project-diagram {
  --fa: "\f542";
  --fa--fa: "\f542\f542";
}

.fa-pedestal {
  --fa: "\e20d";
  --fa--fa: "\e20d\e20d";
}

.fa-chart-pyramid {
  --fa: "\e0e6";
  --fa--fa: "\e0e6\e0e6";
}

.fa-sidebar {
  --fa: "\e24e";
  --fa--fa: "\e24e\e24e";
}

.fa-snowman-head {
  --fa: "\f79b";
  --fa--fa: "\f79b\f79b";
}

.fa-frosty-head {
  --fa: "\f79b";
  --fa--fa: "\f79b\f79b";
}

.fa-copy {
  --fa: "\f0c5";
  --fa--fa: "\f0c5\f0c5";
}

.fa-burger-glass {
  --fa: "\e0ce";
  --fa--fa: "\e0ce\e0ce";
}

.fa-volume-xmark {
  --fa: "\f6a9";
  --fa--fa: "\f6a9\f6a9";
}

.fa-volume-mute {
  --fa: "\f6a9";
  --fa--fa: "\f6a9\f6a9";
}

.fa-volume-times {
  --fa: "\f6a9";
  --fa--fa: "\f6a9\f6a9";
}

.fa-hand-sparkles {
  --fa: "\e05d";
  --fa--fa: "\e05d\e05d";
}

.fa-bars-filter {
  --fa: "\e0ad";
  --fa--fa: "\e0ad\e0ad";
}

.fa-paintbrush-pencil {
  --fa: "\e206";
  --fa--fa: "\e206\e206";
}

.fa-party-bell {
  --fa: "\e31a";
  --fa--fa: "\e31a\e31a";
}

.fa-user-vneck-hair {
  --fa: "\e462";
  --fa--fa: "\e462\e462";
}

.fa-jack-o-lantern {
  --fa: "\f30e";
  --fa--fa: "\f30e\f30e";
}

.fa-grip {
  --fa: "\f58d";
  --fa--fa: "\f58d\f58d";
}

.fa-grip-horizontal {
  --fa: "\f58d";
  --fa--fa: "\f58d\f58d";
}

.fa-share-from-square {
  --fa: "\f14d";
  --fa--fa: "\f14d\f14d";
}

.fa-share-square {
  --fa: "\f14d";
  --fa--fa: "\f14d\f14d";
}

.fa-keynote {
  --fa: "\f66c";
  --fa--fa: "\f66c\f66c";
}

.fa-child-combatant {
  --fa: "\e4e0";
  --fa--fa: "\e4e0\e4e0";
}

.fa-child-rifle {
  --fa: "\e4e0";
  --fa--fa: "\e4e0\e4e0";
}

.fa-gun {
  --fa: "\e19b";
  --fa--fa: "\e19b\e19b";
}

.fa-square-phone {
  --fa: "\f098";
  --fa--fa: "\f098\f098";
}

.fa-phone-square {
  --fa: "\f098";
  --fa--fa: "\f098\f098";
}

.fa-hat-beach {
  --fa: "\e606";
  --fa--fa: "\e606\e606";
}

.fa-plus {
  --fa: "\+";
  --fa--fa: "\+\+";
}

.fa-add {
  --fa: "\+";
  --fa--fa: "\+\+";
}

.fa-expand {
  --fa: "\f065";
  --fa--fa: "\f065\f065";
}

.fa-computer {
  --fa: "\e4e5";
  --fa--fa: "\e4e5\e4e5";
}

.fa-fort {
  --fa: "\e486";
  --fa--fa: "\e486\e486";
}

.fa-cloud-check {
  --fa: "\e35c";
  --fa--fa: "\e35c\e35c";
}

.fa-xmark {
  --fa: "\f00d";
  --fa--fa: "\f00d\f00d";
}

.fa-close {
  --fa: "\f00d";
  --fa--fa: "\f00d\f00d";
}

.fa-multiply {
  --fa: "\f00d";
  --fa--fa: "\f00d\f00d";
}

.fa-remove {
  --fa: "\f00d";
  --fa--fa: "\f00d\f00d";
}

.fa-times {
  --fa: "\f00d";
  --fa--fa: "\f00d\f00d";
}

.fa-face-smirking {
  --fa: "\e397";
  --fa--fa: "\e397\e397";
}

.fa-arrows-up-down-left-right {
  --fa: "\f047";
  --fa--fa: "\f047\f047";
}

.fa-arrows {
  --fa: "\f047";
  --fa--fa: "\f047\f047";
}

.fa-chalkboard-user {
  --fa: "\f51c";
  --fa--fa: "\f51c\f51c";
}

.fa-chalkboard-teacher {
  --fa: "\f51c";
  --fa--fa: "\f51c\f51c";
}

.fa-rhombus {
  --fa: "\e23b";
  --fa--fa: "\e23b\e23b";
}

.fa-claw-marks {
  --fa: "\f6c2";
  --fa--fa: "\f6c2\f6c2";
}

.fa-peso-sign {
  --fa: "\e222";
  --fa--fa: "\e222\e222";
}

.fa-face-smile-tongue {
  --fa: "\e394";
  --fa--fa: "\e394\e394";
}

.fa-cart-circle-xmark {
  --fa: "\e3f4";
  --fa--fa: "\e3f4\e3f4";
}

.fa-building-shield {
  --fa: "\e4d8";
  --fa--fa: "\e4d8\e4d8";
}

.fa-circle-phone-flip {
  --fa: "\e11c";
  --fa--fa: "\e11c\e11c";
}

.fa-phone-circle-alt {
  --fa: "\e11c";
  --fa--fa: "\e11c\e11c";
}

.fa-baby {
  --fa: "\f77c";
  --fa--fa: "\f77c\f77c";
}

.fa-users-line {
  --fa: "\e592";
  --fa--fa: "\e592\e592";
}

.fa-quote-left {
  --fa: "\f10d";
  --fa--fa: "\f10d\f10d";
}

.fa-quote-left-alt {
  --fa: "\f10d";
  --fa--fa: "\f10d\f10d";
}

.fa-tractor {
  --fa: "\f722";
  --fa--fa: "\f722\f722";
}

.fa-down-from-bracket {
  --fa: "\e66b";
  --fa--fa: "\e66b\e66b";
}

.fa-key-skeleton {
  --fa: "\f6f3";
  --fa--fa: "\f6f3\f6f3";
}

.fa-trash-arrow-up {
  --fa: "\f829";
  --fa--fa: "\f829\f829";
}

.fa-trash-restore {
  --fa: "\f829";
  --fa--fa: "\f829\f829";
}

.fa-arrow-down-up-lock {
  --fa: "\e4b0";
  --fa--fa: "\e4b0\e4b0";
}

.fa-arrow-down-to-bracket {
  --fa: "\e094";
  --fa--fa: "\e094\e094";
}

.fa-lines-leaning {
  --fa: "\e51e";
  --fa--fa: "\e51e\e51e";
}

.fa-square-q {
  --fa: "\e27b";
  --fa--fa: "\e27b\e27b";
}

.fa-ruler-combined {
  --fa: "\f546";
  --fa--fa: "\f546\f546";
}

.fa-symbols {
  --fa: "\f86e";
  --fa--fa: "\f86e\f86e";
}

.fa-icons-alt {
  --fa: "\f86e";
  --fa--fa: "\f86e\f86e";
}

.fa-copyright {
  --fa: "\f1f9";
  --fa--fa: "\f1f9\f1f9";
}

.fa-flask-gear {
  --fa: "\e5f1";
  --fa--fa: "\e5f1\e5f1";
}

.fa-highlighter-line {
  --fa: "\e1af";
  --fa--fa: "\e1af\e1af";
}

.fa-bracket-square {
  --fa: "\[";
  --fa--fa: "\[\[";
}

.fa-bracket {
  --fa: "\[";
  --fa--fa: "\[\[";
}

.fa-bracket-left {
  --fa: "\[";
  --fa--fa: "\[\[";
}

.fa-island-tropical {
  --fa: "\f811";
  --fa--fa: "\f811\f811";
}

.fa-island-tree-palm {
  --fa: "\f811";
  --fa--fa: "\f811\f811";
}

.fa-arrow-right-from-line {
  --fa: "\f343";
  --fa--fa: "\f343\f343";
}

.fa-arrow-from-left {
  --fa: "\f343";
  --fa--fa: "\f343\f343";
}

.fa-h2 {
  --fa: "\f314";
  --fa--fa: "\f314\f314";
}

.fa-equals {
  --fa: "\=";
  --fa--fa: "\=\=";
}

.fa-cake-slice {
  --fa: "\e3e5";
  --fa--fa: "\e3e5\e3e5";
}

.fa-shortcake {
  --fa: "\e3e5";
  --fa--fa: "\e3e5\e3e5";
}

.fa-building-magnifying-glass {
  --fa: "\e61c";
  --fa--fa: "\e61c\e61c";
}

.fa-peanut {
  --fa: "\e430";
  --fa--fa: "\e430\e430";
}

.fa-wrench-simple {
  --fa: "\e2d1";
  --fa--fa: "\e2d1\e2d1";
}

.fa-blender {
  --fa: "\f517";
  --fa--fa: "\f517\f517";
}

.fa-teeth {
  --fa: "\f62e";
  --fa--fa: "\f62e\f62e";
}

.fa-tally-2 {
  --fa: "\e295";
  --fa--fa: "\e295\e295";
}

.fa-shekel-sign {
  --fa: "\f20b";
  --fa--fa: "\f20b\f20b";
}

.fa-ils {
  --fa: "\f20b";
  --fa--fa: "\f20b\f20b";
}

.fa-shekel {
  --fa: "\f20b";
  --fa--fa: "\f20b\f20b";
}

.fa-sheqel {
  --fa: "\f20b";
  --fa--fa: "\f20b\f20b";
}

.fa-sheqel-sign {
  --fa: "\f20b";
  --fa--fa: "\f20b\f20b";
}

.fa-cars {
  --fa: "\f85b";
  --fa--fa: "\f85b\f85b";
}

.fa-axe-battle {
  --fa: "\f6b3";
  --fa--fa: "\f6b3\f6b3";
}

.fa-user-hair-long {
  --fa: "\e45b";
  --fa--fa: "\e45b\e45b";
}

.fa-map {
  --fa: "\f279";
  --fa--fa: "\f279\f279";
}

.fa-arrow-left-from-arc {
  --fa: "\e615";
  --fa--fa: "\e615\e615";
}

.fa-file-circle-info {
  --fa: "\e493";
  --fa--fa: "\e493\e493";
}

.fa-face-disappointed {
  --fa: "\e36f";
  --fa--fa: "\e36f\e36f";
}

.fa-lasso-sparkles {
  --fa: "\e1c9";
  --fa--fa: "\e1c9\e1c9";
}

.fa-clock-eleven {
  --fa: "\e347";
  --fa--fa: "\e347\e347";
}

.fa-rocket {
  --fa: "\f135";
  --fa--fa: "\f135\f135";
}

.fa-siren-on {
  --fa: "\e02e";
  --fa--fa: "\e02e\e02e";
}

.fa-clock-ten {
  --fa: "\e354";
  --fa--fa: "\e354\e354";
}

.fa-candle-holder {
  --fa: "\f6bc";
  --fa--fa: "\f6bc\f6bc";
}

.fa-video-arrow-down-left {
  --fa: "\e2c8";
  --fa--fa: "\e2c8\e2c8";
}

.fa-photo-film {
  --fa: "\f87c";
  --fa--fa: "\f87c\f87c";
}

.fa-photo-video {
  --fa: "\f87c";
  --fa--fa: "\f87c\f87c";
}

.fa-floppy-disk-circle-arrow-right {
  --fa: "\e180";
  --fa--fa: "\e180\e180";
}

.fa-save-circle-arrow-right {
  --fa: "\e180";
  --fa--fa: "\e180\e180";
}

.fa-folder-minus {
  --fa: "\f65d";
  --fa--fa: "\f65d\f65d";
}

.fa-hexagon-nodes-bolt {
  --fa: "\e69a";
  --fa--fa: "\e69a\e69a";
}

.fa-planet-moon {
  --fa: "\e01f";
  --fa--fa: "\e01f\e01f";
}

.fa-face-eyes-xmarks {
  --fa: "\e374";
  --fa--fa: "\e374\e374";
}

.fa-chart-scatter {
  --fa: "\f7ee";
  --fa--fa: "\f7ee\f7ee";
}

.fa-circle-gf {
  --fa: "\e67f";
  --fa--fa: "\e67f\e67f";
}

.fa-display-arrow-down {
  --fa: "\e164";
  --fa--fa: "\e164\e164";
}

.fa-store {
  --fa: "\f54e";
  --fa--fa: "\f54e\f54e";
}

.fa-arrow-trend-up {
  --fa: "\e098";
  --fa--fa: "\e098\e098";
}

.fa-plug-circle-minus {
  --fa: "\e55e";
  --fa--fa: "\e55e\e55e";
}

.fa-olive-branch {
  --fa: "\e317";
  --fa--fa: "\e317\e317";
}

.fa-angle {
  --fa: "\e08c";
  --fa--fa: "\e08c\e08c";
}

.fa-vacuum-robot {
  --fa: "\e04e";
  --fa--fa: "\e04e\e04e";
}

.fa-sign-hanging {
  --fa: "\f4d9";
  --fa--fa: "\f4d9\f4d9";
}

.fa-sign {
  --fa: "\f4d9";
  --fa--fa: "\f4d9\f4d9";
}

.fa-square-divide {
  --fa: "\e26a";
  --fa--fa: "\e26a\e26a";
}

.fa-folder-check {
  --fa: "\e64e";
  --fa--fa: "\e64e\e64e";
}

.fa-signal-stream-slash {
  --fa: "\e250";
  --fa--fa: "\e250\e250";
}

.fa-bezier-curve {
  --fa: "\f55b";
  --fa--fa: "\f55b\f55b";
}

.fa-eye-dropper-half {
  --fa: "\e173";
  --fa--fa: "\e173\e173";
}

.fa-store-lock {
  --fa: "\e4a6";
  --fa--fa: "\e4a6\e4a6";
}

.fa-bell-slash {
  --fa: "\f1f6";
  --fa--fa: "\f1f6\f1f6";
}

.fa-cloud-bolt-sun {
  --fa: "\f76e";
  --fa--fa: "\f76e\f76e";
}

.fa-thunderstorm-sun {
  --fa: "\f76e";
  --fa--fa: "\f76e\f76e";
}

.fa-camera-slash {
  --fa: "\e0d9";
  --fa--fa: "\e0d9\e0d9";
}

.fa-comment-quote {
  --fa: "\e14c";
  --fa--fa: "\e14c\e14c";
}

.fa-tablet {
  --fa: "\f3fb";
  --fa--fa: "\f3fb\f3fb";
}

.fa-tablet-android {
  --fa: "\f3fb";
  --fa--fa: "\f3fb\f3fb";
}

.fa-school-flag {
  --fa: "\e56e";
  --fa--fa: "\e56e\e56e";
}

.fa-message-code {
  --fa: "\e1df";
  --fa--fa: "\e1df\e1df";
}

.fa-glass-half {
  --fa: "\e192";
  --fa--fa: "\e192\e192";
}

.fa-glass-half-empty {
  --fa: "\e192";
  --fa--fa: "\e192\e192";
}

.fa-glass-half-full {
  --fa: "\e192";
  --fa--fa: "\e192\e192";
}

.fa-fill {
  --fa: "\f575";
  --fa--fa: "\f575\f575";
}

.fa-message-minus {
  --fa: "\f4a7";
  --fa--fa: "\f4a7\f4a7";
}

.fa-comment-alt-minus {
  --fa: "\f4a7";
  --fa--fa: "\f4a7\f4a7";
}

.fa-angle-up {
  --fa: "\f106";
  --fa--fa: "\f106\f106";
}

.fa-dinosaur {
  --fa: "\e5fe";
  --fa--fa: "\e5fe\e5fe";
}

.fa-drumstick-bite {
  --fa: "\f6d7";
  --fa--fa: "\f6d7\f6d7";
}

.fa-link-horizontal-slash {
  --fa: "\e1cc";
  --fa--fa: "\e1cc\e1cc";
}

.fa-chain-horizontal-slash {
  --fa: "\e1cc";
  --fa--fa: "\e1cc\e1cc";
}

.fa-holly-berry {
  --fa: "\f7aa";
  --fa--fa: "\f7aa\f7aa";
}

.fa-nose {
  --fa: "\e5bd";
  --fa--fa: "\e5bd\e5bd";
}

.fa-arrow-left-to-arc {
  --fa: "\e616";
  --fa--fa: "\e616\e616";
}

.fa-chevron-left {
  --fa: "\f053";
  --fa--fa: "\f053\f053";
}

.fa-bacteria {
  --fa: "\e059";
  --fa--fa: "\e059\e059";
}

.fa-clouds {
  --fa: "\f744";
  --fa--fa: "\f744\f744";
}

.fa-money-bill-simple {
  --fa: "\e1f1";
  --fa--fa: "\e1f1\e1f1";
}

.fa-hand-lizard {
  --fa: "\f258";
  --fa--fa: "\f258\f258";
}

.fa-table-pivot {
  --fa: "\e291";
  --fa--fa: "\e291\e291";
}

.fa-filter-slash {
  --fa: "\e17d";
  --fa--fa: "\e17d\e17d";
}

.fa-trash-can-undo {
  --fa: "\f896";
  --fa--fa: "\f896\f896";
}

.fa-trash-can-arrow-turn-left {
  --fa: "\f896";
  --fa--fa: "\f896\f896";
}

.fa-trash-undo-alt {
  --fa: "\f896";
  --fa--fa: "\f896\f896";
}

.fa-notdef {
  --fa: "\e1fe";
  --fa--fa: "\e1fe\e1fe";
}

.fa-disease {
  --fa: "\f7fa";
  --fa--fa: "\f7fa\f7fa";
}

.fa-person-to-door {
  --fa: "\e433";
  --fa--fa: "\e433\e433";
}

.fa-turntable {
  --fa: "\f8e4";
  --fa--fa: "\f8e4\f8e4";
}

.fa-briefcase-medical {
  --fa: "\f469";
  --fa--fa: "\f469\f469";
}

.fa-genderless {
  --fa: "\f22d";
  --fa--fa: "\f22d\f22d";
}

.fa-chevron-right {
  --fa: "\f054";
  --fa--fa: "\f054\f054";
}

.fa-signal-weak {
  --fa: "\f68c";
  --fa--fa: "\f68c\f68c";
}

.fa-signal-1 {
  --fa: "\f68c";
  --fa--fa: "\f68c\f68c";
}

.fa-clock-five {
  --fa: "\e349";
  --fa--fa: "\e349\e349";
}

.fa-retweet {
  --fa: "\f079";
  --fa--fa: "\f079\f079";
}

.fa-car-rear {
  --fa: "\f5de";
  --fa--fa: "\f5de\f5de";
}

.fa-car-alt {
  --fa: "\f5de";
  --fa--fa: "\f5de\f5de";
}

.fa-pump-soap {
  --fa: "\e06b";
  --fa--fa: "\e06b\e06b";
}

.fa-computer-classic {
  --fa: "\f8b1";
  --fa--fa: "\f8b1\f8b1";
}

.fa-frame {
  --fa: "\e495";
  --fa--fa: "\e495\e495";
}

.fa-video-slash {
  --fa: "\f4e2";
  --fa--fa: "\f4e2\f4e2";
}

.fa-battery-quarter {
  --fa: "\f243";
  --fa--fa: "\f243\f243";
}

.fa-battery-2 {
  --fa: "\f243";
  --fa--fa: "\f243\f243";
}

.fa-ellipsis-stroke {
  --fa: "\f39b";
  --fa--fa: "\f39b\f39b";
}

.fa-ellipsis-h-alt {
  --fa: "\f39b";
  --fa--fa: "\f39b\f39b";
}

.fa-radio {
  --fa: "\f8d7";
  --fa--fa: "\f8d7\f8d7";
}

.fa-baby-carriage {
  --fa: "\f77d";
  --fa--fa: "\f77d\f77d";
}

.fa-carriage-baby {
  --fa: "\f77d";
  --fa--fa: "\f77d\f77d";
}

.fa-face-expressionless {
  --fa: "\e373";
  --fa--fa: "\e373\e373";
}

.fa-down-to-dotted-line {
  --fa: "\e408";
  --fa--fa: "\e408\e408";
}

.fa-cloud-music {
  --fa: "\f8ae";
  --fa--fa: "\f8ae\f8ae";
}

.fa-traffic-light {
  --fa: "\f637";
  --fa--fa: "\f637\f637";
}

.fa-cloud-minus {
  --fa: "\e35d";
  --fa--fa: "\e35d\e35d";
}

.fa-thermometer {
  --fa: "\f491";
  --fa--fa: "\f491\f491";
}

.fa-shield-minus {
  --fa: "\e249";
  --fa--fa: "\e249\e249";
}

.fa-vr-cardboard {
  --fa: "\f729";
  --fa--fa: "\f729\f729";
}

.fa-car-tilt {
  --fa: "\f5e5";
  --fa--fa: "\f5e5\f5e5";
}

.fa-gauge-circle-minus {
  --fa: "\e497";
  --fa--fa: "\e497\e497";
}

.fa-brightness-low {
  --fa: "\e0ca";
  --fa--fa: "\e0ca\e0ca";
}

.fa-hand-middle-finger {
  --fa: "\f806";
  --fa--fa: "\f806\f806";
}

.fa-percent {
  --fa: "\%";
  --fa--fa: "\%\%";
}

.fa-percentage {
  --fa: "\%";
  --fa--fa: "\%\%";
}

.fa-truck-moving {
  --fa: "\f4df";
  --fa--fa: "\f4df\f4df";
}

.fa-glass-water-droplet {
  --fa: "\e4f5";
  --fa--fa: "\e4f5\e4f5";
}

.fa-conveyor-belt {
  --fa: "\f46e";
  --fa--fa: "\f46e\f46e";
}

.fa-location-check {
  --fa: "\f606";
  --fa--fa: "\f606\f606";
}

.fa-map-marker-check {
  --fa: "\f606";
  --fa--fa: "\f606\f606";
}

.fa-coin-vertical {
  --fa: "\e3fd";
  --fa--fa: "\e3fd\e3fd";
}

.fa-display {
  --fa: "\e163";
  --fa--fa: "\e163\e163";
}

.fa-person-sign {
  --fa: "\f757";
  --fa--fa: "\f757\f757";
}

.fa-face-smile {
  --fa: "\f118";
  --fa--fa: "\f118\f118";
}

.fa-smile {
  --fa: "\f118";
  --fa--fa: "\f118\f118";
}

.fa-phone-hangup {
  --fa: "\e225";
  --fa--fa: "\e225\e225";
}

.fa-signature-slash {
  --fa: "\e3cb";
  --fa--fa: "\e3cb\e3cb";
}

.fa-thumbtack {
  --fa: "\f08d";
  --fa--fa: "\f08d\f08d";
}

.fa-thumb-tack {
  --fa: "\f08d";
  --fa--fa: "\f08d\f08d";
}

.fa-wheat-slash {
  --fa: "\e339";
  --fa--fa: "\e339\e339";
}

.fa-trophy {
  --fa: "\f091";
  --fa--fa: "\f091\f091";
}

.fa-clouds-sun {
  --fa: "\f746";
  --fa--fa: "\f746\f746";
}

.fa-person-praying {
  --fa: "\f683";
  --fa--fa: "\f683\f683";
}

.fa-pray {
  --fa: "\f683";
  --fa--fa: "\f683\f683";
}

.fa-hammer {
  --fa: "\f6e3";
  --fa--fa: "\f6e3\f6e3";
}

.fa-face-vomit {
  --fa: "\e3a0";
  --fa--fa: "\e3a0\e3a0";
}

.fa-speakers {
  --fa: "\f8e0";
  --fa--fa: "\f8e0\f8e0";
}

.fa-tty-answer {
  --fa: "\e2b9";
  --fa--fa: "\e2b9\e2b9";
}

.fa-teletype-answer {
  --fa: "\e2b9";
  --fa--fa: "\e2b9\e2b9";
}

.fa-mug-tea-saucer {
  --fa: "\e1f5";
  --fa--fa: "\e1f5\e1f5";
}

.fa-diagram-lean-canvas {
  --fa: "\e156";
  --fa--fa: "\e156\e156";
}

.fa-alt {
  --fa: "\e08a";
  --fa--fa: "\e08a\e08a";
}

.fa-dial {
  --fa: "\e15b";
  --fa--fa: "\e15b\e15b";
}

.fa-dial-med-high {
  --fa: "\e15b";
  --fa--fa: "\e15b\e15b";
}

.fa-hand-peace {
  --fa: "\f25b";
  --fa--fa: "\f25b\f25b";
}

.fa-circle-trash {
  --fa: "\e126";
  --fa--fa: "\e126\e126";
}

.fa-trash-circle {
  --fa: "\e126";
  --fa--fa: "\e126\e126";
}

.fa-rotate {
  --fa: "\f2f1";
  --fa--fa: "\f2f1\f2f1";
}

.fa-sync-alt {
  --fa: "\f2f1";
  --fa--fa: "\f2f1\f2f1";
}

.fa-circle-quarters {
  --fa: "\e3f8";
  --fa--fa: "\e3f8\e3f8";
}

.fa-spinner {
  --fa: "\f110";
  --fa--fa: "\f110\f110";
}

.fa-tower-control {
  --fa: "\e2a2";
  --fa--fa: "\e2a2\e2a2";
}

.fa-arrow-up-triangle-square {
  --fa: "\f88a";
  --fa--fa: "\f88a\f88a";
}

.fa-sort-shapes-up {
  --fa: "\f88a";
  --fa--fa: "\f88a\f88a";
}

.fa-whale {
  --fa: "\f72c";
  --fa--fa: "\f72c\f72c";
}

.fa-robot {
  --fa: "\f544";
  --fa--fa: "\f544\f544";
}

.fa-peace {
  --fa: "\f67c";
  --fa--fa: "\f67c\f67c";
}

.fa-party-horn {
  --fa: "\e31b";
  --fa--fa: "\e31b\e31b";
}

.fa-gears {
  --fa: "\f085";
  --fa--fa: "\f085\f085";
}

.fa-cogs {
  --fa: "\f085";
  --fa--fa: "\f085\f085";
}

.fa-sun-bright {
  --fa: "\e28f";
  --fa--fa: "\e28f\e28f";
}

.fa-sun-alt {
  --fa: "\e28f";
  --fa--fa: "\e28f\e28f";
}

.fa-warehouse {
  --fa: "\f494";
  --fa--fa: "\f494\f494";
}

.fa-conveyor-belt-arm {
  --fa: "\e5f8";
  --fa--fa: "\e5f8\e5f8";
}

.fa-lock-keyhole-open {
  --fa: "\f3c2";
  --fa--fa: "\f3c2\f3c2";
}

.fa-lock-open-alt {
  --fa: "\f3c2";
  --fa--fa: "\f3c2\f3c2";
}

.fa-square-fragile {
  --fa: "\f49b";
  --fa--fa: "\f49b\f49b";
}

.fa-box-fragile {
  --fa: "\f49b";
  --fa--fa: "\f49b\f49b";
}

.fa-square-wine-glass-crack {
  --fa: "\f49b";
  --fa--fa: "\f49b\f49b";
}

.fa-arrow-up-right-dots {
  --fa: "\e4b7";
  --fa--fa: "\e4b7\e4b7";
}

.fa-square-n {
  --fa: "\e277";
  --fa--fa: "\e277\e277";
}

.fa-splotch {
  --fa: "\f5bc";
  --fa--fa: "\f5bc\f5bc";
}

.fa-face-grin-hearts {
  --fa: "\f584";
  --fa--fa: "\f584\f584";
}

.fa-grin-hearts {
  --fa: "\f584";
  --fa--fa: "\f584\f584";
}

.fa-meter {
  --fa: "\e1e8";
  --fa--fa: "\e1e8\e1e8";
}

.fa-mandolin {
  --fa: "\f6f9";
  --fa--fa: "\f6f9\f6f9";
}

.fa-dice-four {
  --fa: "\f524";
  --fa--fa: "\f524\f524";
}

.fa-sim-card {
  --fa: "\f7c4";
  --fa--fa: "\f7c4\f7c4";
}

.fa-transgender {
  --fa: "\f225";
  --fa--fa: "\f225\f225";
}

.fa-transgender-alt {
  --fa: "\f225";
  --fa--fa: "\f225\f225";
}

.fa-mercury {
  --fa: "\f223";
  --fa--fa: "\f223\f223";
}

.fa-up-from-bracket {
  --fa: "\e590";
  --fa--fa: "\e590\e590";
}

.fa-knife-kitchen {
  --fa: "\f6f5";
  --fa--fa: "\f6f5\f6f5";
}

.fa-border-right {
  --fa: "\f852";
  --fa--fa: "\f852\f852";
}

.fa-arrow-turn-down {
  --fa: "\f149";
  --fa--fa: "\f149\f149";
}

.fa-level-down {
  --fa: "\f149";
  --fa--fa: "\f149\f149";
}

.fa-spade {
  --fa: "\f2f4";
  --fa--fa: "\f2f4\f2f4";
}

.fa-card-spade {
  --fa: "\e3ec";
  --fa--fa: "\e3ec\e3ec";
}

.fa-line-columns {
  --fa: "\f870";
  --fa--fa: "\f870\f870";
}

.fa-ant {
  --fa: "\e680";
  --fa--fa: "\e680\e680";
}

.fa-arrow-right-to-line {
  --fa: "\f340";
  --fa--fa: "\f340\f340";
}

.fa-arrow-to-right {
  --fa: "\f340";
  --fa--fa: "\f340\f340";
}

.fa-person-falling-burst {
  --fa: "\e547";
  --fa--fa: "\e547\e547";
}

.fa-flag-pennant {
  --fa: "\f456";
  --fa--fa: "\f456\f456";
}

.fa-pennant {
  --fa: "\f456";
  --fa--fa: "\f456\f456";
}

.fa-conveyor-belt-empty {
  --fa: "\e150";
  --fa--fa: "\e150\e150";
}

.fa-user-group-simple {
  --fa: "\e603";
  --fa--fa: "\e603\e603";
}

.fa-award {
  --fa: "\f559";
  --fa--fa: "\f559\f559";
}

.fa-ticket-simple {
  --fa: "\f3ff";
  --fa--fa: "\f3ff\f3ff";
}

.fa-ticket-alt {
  --fa: "\f3ff";
  --fa--fa: "\f3ff\f3ff";
}

.fa-building {
  --fa: "\f1ad";
  --fa--fa: "\f1ad\f1ad";
}

.fa-angles-left {
  --fa: "\f100";
  --fa--fa: "\f100\f100";
}

.fa-angle-double-left {
  --fa: "\f100";
  --fa--fa: "\f100\f100";
}

.fa-camcorder {
  --fa: "\f8a8";
  --fa--fa: "\f8a8\f8a8";
}

.fa-video-handheld {
  --fa: "\f8a8";
  --fa--fa: "\f8a8\f8a8";
}

.fa-pancakes {
  --fa: "\e42d";
  --fa--fa: "\e42d\e42d";
}

.fa-album-circle-user {
  --fa: "\e48d";
  --fa--fa: "\e48d\e48d";
}

.fa-subtitles-slash {
  --fa: "\e610";
  --fa--fa: "\e610\e610";
}

.fa-qrcode {
  --fa: "\f029";
  --fa--fa: "\f029\f029";
}

.fa-dice-d10 {
  --fa: "\f6cd";
  --fa--fa: "\f6cd\f6cd";
}

.fa-fireplace {
  --fa: "\f79a";
  --fa--fa: "\f79a\f79a";
}

.fa-browser {
  --fa: "\f37e";
  --fa--fa: "\f37e\f37e";
}

.fa-pen-paintbrush {
  --fa: "\f618";
  --fa--fa: "\f618\f618";
}

.fa-pencil-paintbrush {
  --fa: "\f618";
  --fa--fa: "\f618\f618";
}

.fa-fish-cooked {
  --fa: "\f7fe";
  --fa--fa: "\f7fe\f7fe";
}

.fa-chair-office {
  --fa: "\f6c1";
  --fa--fa: "\f6c1\f6c1";
}

.fa-magnifying-glass-music {
  --fa: "\e65f";
  --fa--fa: "\e65f\e65f";
}

.fa-nesting-dolls {
  --fa: "\e3ba";
  --fa--fa: "\e3ba\e3ba";
}

.fa-clock-rotate-left {
  --fa: "\f1da";
  --fa--fa: "\f1da\f1da";
}

.fa-history {
  --fa: "\f1da";
  --fa--fa: "\f1da\f1da";
}

.fa-trumpet {
  --fa: "\f8e3";
  --fa--fa: "\f8e3\f8e3";
}

.fa-face-grin-beam-sweat {
  --fa: "\f583";
  --fa--fa: "\f583\f583";
}

.fa-grin-beam-sweat {
  --fa: "\f583";
  --fa--fa: "\f583\f583";
}

.fa-fire-smoke {
  --fa: "\f74b";
  --fa--fa: "\f74b\f74b";
}

.fa-phone-missed {
  --fa: "\e226";
  --fa--fa: "\e226\e226";
}

.fa-file-export {
  --fa: "\f56e";
  --fa--fa: "\f56e\f56e";
}

.fa-arrow-right-from-file {
  --fa: "\f56e";
  --fa--fa: "\f56e\f56e";
}

.fa-shield {
  --fa: "\f132";
  --fa--fa: "\f132\f132";
}

.fa-shield-blank {
  --fa: "\f132";
  --fa--fa: "\f132\f132";
}

.fa-arrow-up-short-wide {
  --fa: "\f885";
  --fa--fa: "\f885\f885";
}

.fa-sort-amount-up-alt {
  --fa: "\f885";
  --fa--fa: "\f885\f885";
}

.fa-arrows-repeat-1 {
  --fa: "\f366";
  --fa--fa: "\f366\f366";
}

.fa-repeat-1-alt {
  --fa: "\f366";
  --fa--fa: "\f366\f366";
}

.fa-gun-slash {
  --fa: "\e19c";
  --fa--fa: "\e19c\e19c";
}

.fa-avocado {
  --fa: "\e0aa";
  --fa--fa: "\e0aa\e0aa";
}

.fa-binary {
  --fa: "\e33b";
  --fa--fa: "\e33b\e33b";
}

.fa-comment-nodes {
  --fa: "\e696";
  --fa--fa: "\e696\e696";
}

.fa-glasses-round {
  --fa: "\f5f5";
  --fa--fa: "\f5f5\f5f5";
}

.fa-glasses-alt {
  --fa: "\f5f5";
  --fa--fa: "\f5f5\f5f5";
}

.fa-phone-plus {
  --fa: "\f4d2";
  --fa--fa: "\f4d2\f4d2";
}

.fa-ditto {
  --fa: "\"";
  --fa--fa: "\"\"";
}

.fa-person-seat {
  --fa: "\e21e";
  --fa--fa: "\e21e\e21e";
}

.fa-house-medical {
  --fa: "\e3b2";
  --fa--fa: "\e3b2\e3b2";
}

.fa-golf-ball-tee {
  --fa: "\f450";
  --fa--fa: "\f450\f450";
}

.fa-golf-ball {
  --fa: "\f450";
  --fa--fa: "\f450\f450";
}

.fa-circle-chevron-left {
  --fa: "\f137";
  --fa--fa: "\f137\f137";
}

.fa-chevron-circle-left {
  --fa: "\f137";
  --fa--fa: "\f137\f137";
}

.fa-house-chimney-window {
  --fa: "\e00d";
  --fa--fa: "\e00d\e00d";
}

.fa-scythe {
  --fa: "\f710";
  --fa--fa: "\f710\f710";
}

.fa-pen-nib {
  --fa: "\f5ad";
  --fa--fa: "\f5ad\f5ad";
}

.fa-ban-parking {
  --fa: "\f616";
  --fa--fa: "\f616\f616";
}

.fa-parking-circle-slash {
  --fa: "\f616";
  --fa--fa: "\f616\f616";
}

.fa-tent-arrow-turn-left {
  --fa: "\e580";
  --fa--fa: "\e580\e580";
}

.fa-face-diagonal-mouth {
  --fa: "\e47e";
  --fa--fa: "\e47e\e47e";
}

.fa-diagram-cells {
  --fa: "\e475";
  --fa--fa: "\e475\e475";
}

.fa-cricket-bat-ball {
  --fa: "\f449";
  --fa--fa: "\f449\f449";
}

.fa-cricket {
  --fa: "\f449";
  --fa--fa: "\f449\f449";
}

.fa-tents {
  --fa: "\e582";
  --fa--fa: "\e582\e582";
}

.fa-wand-magic {
  --fa: "\f0d0";
  --fa--fa: "\f0d0\f0d0";
}

.fa-magic {
  --fa: "\f0d0";
  --fa--fa: "\f0d0\f0d0";
}

.fa-dog {
  --fa: "\f6d3";
  --fa--fa: "\f6d3\f6d3";
}

.fa-pen-line {
  --fa: "\e212";
  --fa--fa: "\e212\e212";
}

.fa-atom-simple {
  --fa: "\f5d3";
  --fa--fa: "\f5d3\f5d3";
}

.fa-atom-alt {
  --fa: "\f5d3";
  --fa--fa: "\f5d3\f5d3";
}

.fa-ampersand {
  --fa: "\&";
  --fa--fa: "\&\&";
}

.fa-carrot {
  --fa: "\f787";
  --fa--fa: "\f787\f787";
}

.fa-arrow-up-from-line {
  --fa: "\f342";
  --fa--fa: "\f342\f342";
}

.fa-arrow-from-bottom {
  --fa: "\f342";
  --fa--fa: "\f342\f342";
}

.fa-moon {
  --fa: "\f186";
  --fa--fa: "\f186\f186";
}

.fa-pen-slash {
  --fa: "\e213";
  --fa--fa: "\e213\e213";
}

.fa-wine-glass-empty {
  --fa: "\f5ce";
  --fa--fa: "\f5ce\f5ce";
}

.fa-wine-glass-alt {
  --fa: "\f5ce";
  --fa--fa: "\f5ce\f5ce";
}

.fa-square-star {
  --fa: "\e27f";
  --fa--fa: "\e27f\e27f";
}

.fa-cheese {
  --fa: "\f7ef";
  --fa--fa: "\f7ef\f7ef";
}

.fa-send-backward {
  --fa: "\f87f";
  --fa--fa: "\f87f\f87f";
}

.fa-yin-yang {
  --fa: "\f6ad";
  --fa--fa: "\f6ad\f6ad";
}

.fa-music {
  --fa: "\f001";
  --fa--fa: "\f001\f001";
}

.fa-compass-slash {
  --fa: "\f5e9";
  --fa--fa: "\f5e9\f5e9";
}

.fa-clock-one {
  --fa: "\e34e";
  --fa--fa: "\e34e\e34e";
}

.fa-file-music {
  --fa: "\f8b6";
  --fa--fa: "\f8b6\f8b6";
}

.fa-code-commit {
  --fa: "\f386";
  --fa--fa: "\f386\f386";
}

.fa-temperature-low {
  --fa: "\f76b";
  --fa--fa: "\f76b\f76b";
}

.fa-person-biking {
  --fa: "\f84a";
  --fa--fa: "\f84a\f84a";
}

.fa-biking {
  --fa: "\f84a";
  --fa--fa: "\f84a\f84a";
}

.fa-display-chart-up-circle-currency {
  --fa: "\e5e5";
  --fa--fa: "\e5e5\e5e5";
}

.fa-skeleton {
  --fa: "\f620";
  --fa--fa: "\f620\f620";
}

.fa-circle-g {
  --fa: "\e10f";
  --fa--fa: "\e10f\e10f";
}

.fa-circle-arrow-up-left {
  --fa: "\e0fb";
  --fa--fa: "\e0fb\e0fb";
}

.fa-coin-blank {
  --fa: "\e3fb";
  --fa--fa: "\e3fb\e3fb";
}

.fa-broom {
  --fa: "\f51a";
  --fa--fa: "\f51a\f51a";
}

.fa-vacuum {
  --fa: "\e04d";
  --fa--fa: "\e04d\e04d";
}

.fa-shield-heart {
  --fa: "\e574";
  --fa--fa: "\e574\e574";
}

.fa-card-heart {
  --fa: "\e3eb";
  --fa--fa: "\e3eb\e3eb";
}

.fa-lightbulb-cfl-on {
  --fa: "\e5a7";
  --fa--fa: "\e5a7\e5a7";
}

.fa-melon {
  --fa: "\e310";
  --fa--fa: "\e310\e310";
}

.fa-gopuram {
  --fa: "\f664";
  --fa--fa: "\f664\f664";
}

.fa-earth-oceania {
  --fa: "\e47b";
  --fa--fa: "\e47b\e47b";
}

.fa-globe-oceania {
  --fa: "\e47b";
  --fa--fa: "\e47b\e47b";
}

.fa-container-storage {
  --fa: "\f4b7";
  --fa--fa: "\f4b7\f4b7";
}

.fa-face-pouting {
  --fa: "\e387";
  --fa--fa: "\e387\e387";
}

.fa-square-xmark {
  --fa: "\f2d3";
  --fa--fa: "\f2d3\f2d3";
}

.fa-times-square {
  --fa: "\f2d3";
  --fa--fa: "\f2d3\f2d3";
}

.fa-xmark-square {
  --fa: "\f2d3";
  --fa--fa: "\f2d3\f2d3";
}

.fa-face-explode {
  --fa: "\e2fe";
  --fa--fa: "\e2fe\e2fe";
}

.fa-exploding-head {
  --fa: "\e2fe";
  --fa--fa: "\e2fe\e2fe";
}

.fa-hashtag {
  --fa: "\#";
  --fa--fa: "\#\#";
}

.fa-up-right-and-down-left-from-center {
  --fa: "\f424";
  --fa--fa: "\f424\f424";
}

.fa-expand-alt {
  --fa: "\f424";
  --fa--fa: "\f424\f424";
}

.fa-oil-can {
  --fa: "\f613";
  --fa--fa: "\f613\f613";
}

.fa-t {
  --fa: "T";
  --fa--fa: "TT";
}

.fa-transformer-bolt {
  --fa: "\e2a4";
  --fa--fa: "\e2a4\e2a4";
}

.fa-hippo {
  --fa: "\f6ed";
  --fa--fa: "\f6ed\f6ed";
}

.fa-chart-column {
  --fa: "\e0e3";
  --fa--fa: "\e0e3\e0e3";
}

.fa-cassette-vhs {
  --fa: "\f8ec";
  --fa--fa: "\f8ec\f8ec";
}

.fa-vhs {
  --fa: "\f8ec";
  --fa--fa: "\f8ec\f8ec";
}

.fa-infinity {
  --fa: "\f534";
  --fa--fa: "\f534\f534";
}

.fa-vial-circle-check {
  --fa: "\e596";
  --fa--fa: "\e596\e596";
}

.fa-chimney {
  --fa: "\f78b";
  --fa--fa: "\f78b\f78b";
}

.fa-object-intersect {
  --fa: "\e49d";
  --fa--fa: "\e49d\e49d";
}

.fa-person-arrow-down-to-line {
  --fa: "\e538";
  --fa--fa: "\e538\e538";
}

.fa-voicemail {
  --fa: "\f897";
  --fa--fa: "\f897\f897";
}

.fa-block-brick {
  --fa: "\e3db";
  --fa--fa: "\e3db\e3db";
}

.fa-wall-brick {
  --fa: "\e3db";
  --fa--fa: "\e3db\e3db";
}

.fa-fan {
  --fa: "\f863";
  --fa--fa: "\f863\f863";
}

.fa-bags-shopping {
  --fa: "\f847";
  --fa--fa: "\f847\f847";
}

.fa-paragraph-left {
  --fa: "\f878";
  --fa--fa: "\f878\f878";
}

.fa-paragraph-rtl {
  --fa: "\f878";
  --fa--fa: "\f878\f878";
}

.fa-person-walking-luggage {
  --fa: "\e554";
  --fa--fa: "\e554\e554";
}

.fa-caravan-simple {
  --fa: "\e000";
  --fa--fa: "\e000\e000";
}

.fa-caravan-alt {
  --fa: "\e000";
  --fa--fa: "\e000\e000";
}

.fa-turtle {
  --fa: "\f726";
  --fa--fa: "\f726\f726";
}

.fa-pencil-mechanical {
  --fa: "\e5ca";
  --fa--fa: "\e5ca\e5ca";
}

.fa-up-down {
  --fa: "\f338";
  --fa--fa: "\f338\f338";
}

.fa-arrows-alt-v {
  --fa: "\f338";
  --fa--fa: "\f338\f338";
}

.fa-cloud-moon-rain {
  --fa: "\f73c";
  --fa--fa: "\f73c\f73c";
}

.fa-booth-curtain {
  --fa: "\f734";
  --fa--fa: "\f734\f734";
}

.fa-calendar {
  --fa: "\f133";
  --fa--fa: "\f133\f133";
}

.fa-box-heart {
  --fa: "\f49d";
  --fa--fa: "\f49d\f49d";
}

.fa-trailer {
  --fa: "\e041";
  --fa--fa: "\e041\e041";
}

.fa-user-doctor-message {
  --fa: "\f82e";
  --fa--fa: "\f82e\f82e";
}

.fa-user-md-chat {
  --fa: "\f82e";
  --fa--fa: "\f82e\f82e";
}

.fa-bahai {
  --fa: "\f666";
  --fa--fa: "\f666\f666";
}

.fa-haykal {
  --fa: "\f666";
  --fa--fa: "\f666\f666";
}

.fa-lighthouse {
  --fa: "\e612";
  --fa--fa: "\e612\e612";
}

.fa-amp-guitar {
  --fa: "\f8a1";
  --fa--fa: "\f8a1\f8a1";
}

.fa-sd-card {
  --fa: "\f7c2";
  --fa--fa: "\f7c2\f7c2";
}

.fa-volume-slash {
  --fa: "\f2e2";
  --fa--fa: "\f2e2\f2e2";
}

.fa-border-bottom {
  --fa: "\f84d";
  --fa--fa: "\f84d\f84d";
}

.fa-wifi-weak {
  --fa: "\f6aa";
  --fa--fa: "\f6aa\f6aa";
}

.fa-wifi-1 {
  --fa: "\f6aa";
  --fa--fa: "\f6aa\f6aa";
}

.fa-dragon {
  --fa: "\f6d5";
  --fa--fa: "\f6d5\f6d5";
}

.fa-shoe-prints {
  --fa: "\f54b";
  --fa--fa: "\f54b\f54b";
}

.fa-circle-plus {
  --fa: "\f055";
  --fa--fa: "\f055\f055";
}

.fa-plus-circle {
  --fa: "\f055";
  --fa--fa: "\f055\f055";
}

.fa-face-grin-tongue-wink {
  --fa: "\f58b";
  --fa--fa: "\f58b\f58b";
}

.fa-grin-tongue-wink {
  --fa: "\f58b";
  --fa--fa: "\f58b\f58b";
}

.fa-hand-holding {
  --fa: "\f4bd";
  --fa--fa: "\f4bd\f4bd";
}

.fa-plug-circle-exclamation {
  --fa: "\e55d";
  --fa--fa: "\e55d\e55d";
}

.fa-link-slash {
  --fa: "\f127";
  --fa--fa: "\f127\f127";
}

.fa-chain-broken {
  --fa: "\f127";
  --fa--fa: "\f127\f127";
}

.fa-chain-slash {
  --fa: "\f127";
  --fa--fa: "\f127\f127";
}

.fa-unlink {
  --fa: "\f127";
  --fa--fa: "\f127\f127";
}

.fa-clone {
  --fa: "\f24d";
  --fa--fa: "\f24d\f24d";
}

.fa-person-walking-arrow-loop-left {
  --fa: "\e551";
  --fa--fa: "\e551\e551";
}

.fa-arrow-up-z-a {
  --fa: "\f882";
  --fa--fa: "\f882\f882";
}

.fa-sort-alpha-up-alt {
  --fa: "\f882";
  --fa--fa: "\f882\f882";
}

.fa-fire-flame-curved {
  --fa: "\f7e4";
  --fa--fa: "\f7e4\f7e4";
}

.fa-fire-alt {
  --fa: "\f7e4";
  --fa--fa: "\f7e4\f7e4";
}

.fa-tornado {
  --fa: "\f76f";
  --fa--fa: "\f76f\f76f";
}

.fa-file-circle-plus {
  --fa: "\e494";
  --fa--fa: "\e494\e494";
}

.fa-delete-right {
  --fa: "\e154";
  --fa--fa: "\e154\e154";
}

.fa-book-quran {
  --fa: "\f687";
  --fa--fa: "\f687\f687";
}

.fa-quran {
  --fa: "\f687";
  --fa--fa: "\f687\f687";
}

.fa-circle-quarter {
  --fa: "\e11f";
  --fa--fa: "\e11f\e11f";
}

.fa-anchor {
  --fa: "\f13d";
  --fa--fa: "\f13d\f13d";
}

.fa-border-all {
  --fa: "\f84c";
  --fa--fa: "\f84c\f84c";
}

.fa-function {
  --fa: "\f661";
  --fa--fa: "\f661\f661";
}

.fa-face-angry {
  --fa: "\f556";
  --fa--fa: "\f556\f556";
}

.fa-angry {
  --fa: "\f556";
  --fa--fa: "\f556\f556";
}

.fa-people-simple {
  --fa: "\e21b";
  --fa--fa: "\e21b\e21b";
}

.fa-cookie-bite {
  --fa: "\f564";
  --fa--fa: "\f564\f564";
}

.fa-arrow-trend-down {
  --fa: "\e097";
  --fa--fa: "\e097\e097";
}

.fa-rss {
  --fa: "\f09e";
  --fa--fa: "\f09e\f09e";
}

.fa-feed {
  --fa: "\f09e";
  --fa--fa: "\f09e\f09e";
}

.fa-face-monocle {
  --fa: "\e380";
  --fa--fa: "\e380\e380";
}

.fa-draw-polygon {
  --fa: "\f5ee";
  --fa--fa: "\f5ee\f5ee";
}

.fa-scale-balanced {
  --fa: "\f24e";
  --fa--fa: "\f24e\f24e";
}

.fa-balance-scale {
  --fa: "\f24e";
  --fa--fa: "\f24e\f24e";
}

.fa-calendar-lines {
  --fa: "\e0d5";
  --fa--fa: "\e0d5\e0d5";
}

.fa-calendar-note {
  --fa: "\e0d5";
  --fa--fa: "\e0d5\e0d5";
}

.fa-arrow-down-big-small {
  --fa: "\f88c";
  --fa--fa: "\f88c\f88c";
}

.fa-sort-size-down {
  --fa: "\f88c";
  --fa--fa: "\f88c\f88c";
}

.fa-gauge-simple-high {
  --fa: "\f62a";
  --fa--fa: "\f62a\f62a";
}

.fa-tachometer {
  --fa: "\f62a";
  --fa--fa: "\f62a\f62a";
}

.fa-tachometer-fast {
  --fa: "\f62a";
  --fa--fa: "\f62a\f62a";
}

.fa-do-not-enter {
  --fa: "\f5ec";
  --fa--fa: "\f5ec\f5ec";
}

.fa-shower {
  --fa: "\f2cc";
  --fa--fa: "\f2cc\f2cc";
}

.fa-dice-d8 {
  --fa: "\f6d2";
  --fa--fa: "\f6d2\f6d2";
}

.fa-desktop {
  --fa: "\f390";
  --fa--fa: "\f390\f390";
}

.fa-desktop-alt {
  --fa: "\f390";
  --fa--fa: "\f390\f390";
}

.fa-m {
  --fa: "M";
  --fa--fa: "MM";
}

.fa-spinner-scale {
  --fa: "\e62a";
  --fa--fa: "\e62a\e62a";
}

.fa-grip-dots-vertical {
  --fa: "\e411";
  --fa--fa: "\e411\e411";
}

.fa-face-viewfinder {
  --fa: "\e2ff";
  --fa--fa: "\e2ff\e2ff";
}

.fa-soft-serve {
  --fa: "\e400";
  --fa--fa: "\e400\e400";
}

.fa-creemee {
  --fa: "\e400";
  --fa--fa: "\e400\e400";
}

.fa-h5 {
  --fa: "\e412";
  --fa--fa: "\e412\e412";
}

.fa-hand-back-point-down {
  --fa: "\e19e";
  --fa--fa: "\e19e\e19e";
}

.fa-table-list {
  --fa: "\f00b";
  --fa--fa: "\f00b\f00b";
}

.fa-th-list {
  --fa: "\f00b";
  --fa--fa: "\f00b\f00b";
}

.fa-basket-shopping-minus {
  --fa: "\e652";
  --fa--fa: "\e652\e652";
}

.fa-comment-sms {
  --fa: "\f7cd";
  --fa--fa: "\f7cd\f7cd";
}

.fa-sms {
  --fa: "\f7cd";
  --fa--fa: "\f7cd\f7cd";
}

.fa-rectangle {
  --fa: "\f2fa";
  --fa--fa: "\f2fa\f2fa";
}

.fa-rectangle-landscape {
  --fa: "\f2fa";
  --fa--fa: "\f2fa\f2fa";
}

.fa-clipboard-list-check {
  --fa: "\f737";
  --fa--fa: "\f737\f737";
}

.fa-turkey {
  --fa: "\f725";
  --fa--fa: "\f725\f725";
}

.fa-book {
  --fa: "\f02d";
  --fa--fa: "\f02d\f02d";
}

.fa-user-plus {
  --fa: "\f234";
  --fa--fa: "\f234\f234";
}

.fa-ice-skate {
  --fa: "\f7ac";
  --fa--fa: "\f7ac\f7ac";
}

.fa-check {
  --fa: "\f00c";
  --fa--fa: "\f00c\f00c";
}

.fa-battery-three-quarters {
  --fa: "\f241";
  --fa--fa: "\f241\f241";
}

.fa-battery-4 {
  --fa: "\f241";
  --fa--fa: "\f241\f241";
}

.fa-tomato {
  --fa: "\e330";
  --fa--fa: "\e330\e330";
}

.fa-sword-laser {
  --fa: "\e03b";
  --fa--fa: "\e03b\e03b";
}

.fa-house-circle-check {
  --fa: "\e509";
  --fa--fa: "\e509\e509";
}

.fa-buildings {
  --fa: "\e0cc";
  --fa--fa: "\e0cc\e0cc";
}

.fa-angle-left {
  --fa: "\f104";
  --fa--fa: "\f104\f104";
}

.fa-cart-flatbed-boxes {
  --fa: "\f475";
  --fa--fa: "\f475\f475";
}

.fa-dolly-flatbed-alt {
  --fa: "\f475";
  --fa--fa: "\f475\f475";
}

.fa-diagram-successor {
  --fa: "\e47a";
  --fa--fa: "\e47a\e47a";
}

.fa-truck-arrow-right {
  --fa: "\e58b";
  --fa--fa: "\e58b\e58b";
}

.fa-square-w {
  --fa: "\e285";
  --fa--fa: "\e285\e285";
}

.fa-arrows-split-up-and-left {
  --fa: "\e4bc";
  --fa--fa: "\e4bc\e4bc";
}

.fa-lamp {
  --fa: "\f4ca";
  --fa--fa: "\f4ca\f4ca";
}

.fa-airplay {
  --fa: "\e089";
  --fa--fa: "\e089\e089";
}

.fa-hand-fist {
  --fa: "\f6de";
  --fa--fa: "\f6de\f6de";
}

.fa-fist-raised {
  --fa: "\f6de";
  --fa--fa: "\f6de\f6de";
}

.fa-shield-quartered {
  --fa: "\e575";
  --fa--fa: "\e575\e575";
}

.fa-slash-forward {
  --fa: "\/";
  --fa--fa: "\/\/";
}

.fa-location-pen {
  --fa: "\f607";
  --fa--fa: "\f607\f607";
}

.fa-map-marker-edit {
  --fa: "\f607";
  --fa--fa: "\f607\f607";
}

.fa-cloud-moon {
  --fa: "\f6c3";
  --fa--fa: "\f6c3\f6c3";
}

.fa-pot-food {
  --fa: "\e43f";
  --fa--fa: "\e43f\e43f";
}

.fa-briefcase {
  --fa: "\f0b1";
  --fa--fa: "\f0b1\f0b1";
}

.fa-person-falling {
  --fa: "\e546";
  --fa--fa: "\e546\e546";
}

.fa-image-portrait {
  --fa: "\f3e0";
  --fa--fa: "\f3e0\f3e0";
}

.fa-portrait {
  --fa: "\f3e0";
  --fa--fa: "\f3e0\f3e0";
}

.fa-user-tag {
  --fa: "\f507";
  --fa--fa: "\f507\f507";
}

.fa-rug {
  --fa: "\e569";
  --fa--fa: "\e569\e569";
}

.fa-print-slash {
  --fa: "\f686";
  --fa--fa: "\f686\f686";
}

.fa-earth-europe {
  --fa: "\f7a2";
  --fa--fa: "\f7a2\f7a2";
}

.fa-globe-europe {
  --fa: "\f7a2";
  --fa--fa: "\f7a2\f7a2";
}

.fa-cart-flatbed-suitcase {
  --fa: "\f59d";
  --fa--fa: "\f59d\f59d";
}

.fa-luggage-cart {
  --fa: "\f59d";
  --fa--fa: "\f59d\f59d";
}

.fa-hand-back-point-ribbon {
  --fa: "\e1a0";
  --fa--fa: "\e1a0\e1a0";
}

.fa-rectangle-xmark {
  --fa: "\f410";
  --fa--fa: "\f410\f410";
}

.fa-rectangle-times {
  --fa: "\f410";
  --fa--fa: "\f410\f410";
}

.fa-times-rectangle {
  --fa: "\f410";
  --fa--fa: "\f410\f410";
}

.fa-window-close {
  --fa: "\f410";
  --fa--fa: "\f410\f410";
}

.fa-tire-rugged {
  --fa: "\f634";
  --fa--fa: "\f634\f634";
}

.fa-lightbulb-dollar {
  --fa: "\f670";
  --fa--fa: "\f670\f670";
}

.fa-cowbell {
  --fa: "\f8b3";
  --fa--fa: "\f8b3\f8b3";
}

.fa-baht-sign {
  --fa: "\e0ac";
  --fa--fa: "\e0ac\e0ac";
}

.fa-corner {
  --fa: "\e3fe";
  --fa--fa: "\e3fe\e3fe";
}

.fa-chevrons-right {
  --fa: "\f324";
  --fa--fa: "\f324\f324";
}

.fa-chevron-double-right {
  --fa: "\f324";
  --fa--fa: "\f324\f324";
}

.fa-book-open {
  --fa: "\f518";
  --fa--fa: "\f518\f518";
}

.fa-book-journal-whills {
  --fa: "\f66a";
  --fa--fa: "\f66a\f66a";
}

.fa-journal-whills {
  --fa: "\f66a";
  --fa--fa: "\f66a\f66a";
}

.fa-inhaler {
  --fa: "\f5f9";
  --fa--fa: "\f5f9\f5f9";
}

.fa-handcuffs {
  --fa: "\e4f8";
  --fa--fa: "\e4f8\e4f8";
}

.fa-snake {
  --fa: "\f716";
  --fa--fa: "\f716\f716";
}

.fa-triangle-exclamation {
  --fa: "\f071";
  --fa--fa: "\f071\f071";
}

.fa-exclamation-triangle {
  --fa: "\f071";
  --fa--fa: "\f071\f071";
}

.fa-warning {
  --fa: "\f071";
  --fa--fa: "\f071\f071";
}

.fa-note-medical {
  --fa: "\e200";
  --fa--fa: "\e200\e200";
}

.fa-database {
  --fa: "\f1c0";
  --fa--fa: "\f1c0\f1c0";
}

.fa-down-left {
  --fa: "\e16a";
  --fa--fa: "\e16a\e16a";
}

.fa-share {
  --fa: "\f064";
  --fa--fa: "\f064\f064";
}

.fa-mail-forward {
  --fa: "\f064";
  --fa--fa: "\f064\f064";
}

.fa-face-thinking {
  --fa: "\e39b";
  --fa--fa: "\e39b\e39b";
}

.fa-turn-down-right {
  --fa: "\e455";
  --fa--fa: "\e455\e455";
}

.fa-bottle-droplet {
  --fa: "\e4c4";
  --fa--fa: "\e4c4\e4c4";
}

.fa-mask-face {
  --fa: "\e1d7";
  --fa--fa: "\e1d7\e1d7";
}

.fa-hill-rockslide {
  --fa: "\e508";
  --fa--fa: "\e508\e508";
}

.fa-scanner-keyboard {
  --fa: "\f489";
  --fa--fa: "\f489\f489";
}

.fa-circle-o {
  --fa: "\e119";
  --fa--fa: "\e119\e119";
}

.fa-grid-horizontal {
  --fa: "\e307";
  --fa--fa: "\e307\e307";
}

.fa-message-dollar {
  --fa: "\f650";
  --fa--fa: "\f650\f650";
}

.fa-comment-alt-dollar {
  --fa: "\f650";
  --fa--fa: "\f650\f650";
}

.fa-right-left {
  --fa: "\f362";
  --fa--fa: "\f362\f362";
}

.fa-exchange-alt {
  --fa: "\f362";
  --fa--fa: "\f362\f362";
}

.fa-columns-3 {
  --fa: "\e361";
  --fa--fa: "\e361\e361";
}

.fa-paper-plane {
  --fa: "\f1d8";
  --fa--fa: "\f1d8\f1d8";
}

.fa-road-circle-exclamation {
  --fa: "\e565";
  --fa--fa: "\e565\e565";
}

.fa-dungeon {
  --fa: "\f6d9";
  --fa--fa: "\f6d9\f6d9";
}

.fa-hand-holding-box {
  --fa: "\f47b";
  --fa--fa: "\f47b\f47b";
}

.fa-input-text {
  --fa: "\e1bf";
  --fa--fa: "\e1bf\e1bf";
}

.fa-window-flip {
  --fa: "\f40f";
  --fa--fa: "\f40f\f40f";
}

.fa-window-alt {
  --fa: "\f40f";
  --fa--fa: "\f40f\f40f";
}

.fa-align-right {
  --fa: "\f038";
  --fa--fa: "\f038\f038";
}

.fa-scanner-gun {
  --fa: "\f488";
  --fa--fa: "\f488\f488";
}

.fa-scanner {
  --fa: "\f488";
  --fa--fa: "\f488\f488";
}

.fa-tire {
  --fa: "\f631";
  --fa--fa: "\f631\f631";
}

.fa-engine {
  --fa: "\e16e";
  --fa--fa: "\e16e\e16e";
}

.fa-money-bill-1-wave {
  --fa: "\f53b";
  --fa--fa: "\f53b\f53b";
}

.fa-money-bill-wave-alt {
  --fa: "\f53b";
  --fa--fa: "\f53b\f53b";
}

.fa-life-ring {
  --fa: "\f1cd";
  --fa--fa: "\f1cd\f1cd";
}

.fa-hands {
  --fa: "\f2a7";
  --fa--fa: "\f2a7\f2a7";
}

.fa-sign-language {
  --fa: "\f2a7";
  --fa--fa: "\f2a7\f2a7";
}

.fa-signing {
  --fa: "\f2a7";
  --fa--fa: "\f2a7\f2a7";
}

.fa-circle-caret-right {
  --fa: "\f330";
  --fa--fa: "\f330\f330";
}

.fa-caret-circle-right {
  --fa: "\f330";
  --fa--fa: "\f330\f330";
}

.fa-turn-left {
  --fa: "\e636";
  --fa--fa: "\e636\e636";
}

.fa-wheat {
  --fa: "\f72d";
  --fa--fa: "\f72d\f72d";
}

.fa-file-spreadsheet {
  --fa: "\f65b";
  --fa--fa: "\f65b\f65b";
}

.fa-audio-description-slash {
  --fa: "\e0a8";
  --fa--fa: "\e0a8\e0a8";
}

.fa-bell-ring {
  --fa: "\e62c";
  --fa--fa: "\e62c\e62c";
}

.fa-calendar-day {
  --fa: "\f783";
  --fa--fa: "\f783\f783";
}

.fa-water-ladder {
  --fa: "\f5c5";
  --fa--fa: "\f5c5\f5c5";
}

.fa-ladder-water {
  --fa: "\f5c5";
  --fa--fa: "\f5c5\f5c5";
}

.fa-swimming-pool {
  --fa: "\f5c5";
  --fa--fa: "\f5c5\f5c5";
}

.fa-arrows-up-down {
  --fa: "\f07d";
  --fa--fa: "\f07d\f07d";
}

.fa-arrows-v {
  --fa: "\f07d";
  --fa--fa: "\f07d\f07d";
}

.fa-chess-pawn-piece {
  --fa: "\f444";
  --fa--fa: "\f444\f444";
}

.fa-chess-pawn-alt {
  --fa: "\f444";
  --fa--fa: "\f444\f444";
}

.fa-face-grimace {
  --fa: "\f57f";
  --fa--fa: "\f57f\f57f";
}

.fa-grimace {
  --fa: "\f57f";
  --fa--fa: "\f57f\f57f";
}

.fa-wheelchair-move {
  --fa: "\e2ce";
  --fa--fa: "\e2ce\e2ce";
}

.fa-wheelchair-alt {
  --fa: "\e2ce";
  --fa--fa: "\e2ce\e2ce";
}

.fa-turn-down {
  --fa: "\f3be";
  --fa--fa: "\f3be\f3be";
}

.fa-level-down-alt {
  --fa: "\f3be";
  --fa--fa: "\f3be\f3be";
}

.fa-square-s {
  --fa: "\e27d";
  --fa--fa: "\e27d\e27d";
}

.fa-rectangle-barcode {
  --fa: "\f463";
  --fa--fa: "\f463\f463";
}

.fa-barcode-alt {
  --fa: "\f463";
  --fa--fa: "\f463\f463";
}

.fa-person-walking-arrow-right {
  --fa: "\e552";
  --fa--fa: "\e552\e552";
}

.fa-square-envelope {
  --fa: "\f199";
  --fa--fa: "\f199\f199";
}

.fa-envelope-square {
  --fa: "\f199";
  --fa--fa: "\f199\f199";
}

.fa-dice {
  --fa: "\f522";
  --fa--fa: "\f522\f522";
}

.fa-unicorn {
  --fa: "\f727";
  --fa--fa: "\f727\f727";
}

.fa-bowling-ball {
  --fa: "\f436";
  --fa--fa: "\f436\f436";
}

.fa-pompebled {
  --fa: "\e43d";
  --fa--fa: "\e43d\e43d";
}

.fa-brain {
  --fa: "\f5dc";
  --fa--fa: "\f5dc\f5dc";
}

.fa-watch-smart {
  --fa: "\e2cc";
  --fa--fa: "\e2cc\e2cc";
}

.fa-book-user {
  --fa: "\f7e7";
  --fa--fa: "\f7e7\f7e7";
}

.fa-sensor-cloud {
  --fa: "\e02c";
  --fa--fa: "\e02c\e02c";
}

.fa-sensor-smoke {
  --fa: "\e02c";
  --fa--fa: "\e02c\e02c";
}

.fa-clapperboard-play {
  --fa: "\e132";
  --fa--fa: "\e132\e132";
}

.fa-bandage {
  --fa: "\f462";
  --fa--fa: "\f462\f462";
}

.fa-band-aid {
  --fa: "\f462";
  --fa--fa: "\f462\f462";
}

.fa-calendar-minus {
  --fa: "\f272";
  --fa--fa: "\f272\f272";
}

.fa-circle-xmark {
  --fa: "\f057";
  --fa--fa: "\f057\f057";
}

.fa-times-circle {
  --fa: "\f057";
  --fa--fa: "\f057\f057";
}

.fa-xmark-circle {
  --fa: "\f057";
  --fa--fa: "\f057\f057";
}

.fa-circle-4 {
  --fa: "\e0f1";
  --fa--fa: "\e0f1\e0f1";
}

.fa-gifts {
  --fa: "\f79c";
  --fa--fa: "\f79c\f79c";
}

.fa-album-collection {
  --fa: "\f8a0";
  --fa--fa: "\f8a0\f8a0";
}

.fa-hotel {
  --fa: "\f594";
  --fa--fa: "\f594\f594";
}

.fa-earth-asia {
  --fa: "\f57e";
  --fa--fa: "\f57e\f57e";
}

.fa-globe-asia {
  --fa: "\f57e";
  --fa--fa: "\f57e\f57e";
}

.fa-id-card-clip {
  --fa: "\f47f";
  --fa--fa: "\f47f\f47f";
}

.fa-id-card-alt {
  --fa: "\f47f";
  --fa--fa: "\f47f\f47f";
}

.fa-magnifying-glass-plus {
  --fa: "\f00e";
  --fa--fa: "\f00e\f00e";
}

.fa-search-plus {
  --fa: "\f00e";
  --fa--fa: "\f00e\f00e";
}

.fa-thumbs-up {
  --fa: "\f164";
  --fa--fa: "\f164\f164";
}

.fa-cloud-showers {
  --fa: "\f73f";
  --fa--fa: "\f73f\f73f";
}

.fa-user-clock {
  --fa: "\f4fd";
  --fa--fa: "\f4fd\f4fd";
}

.fa-onion {
  --fa: "\e427";
  --fa--fa: "\e427\e427";
}

.fa-clock-twelve-thirty {
  --fa: "\e359";
  --fa--fa: "\e359\e359";
}

.fa-arrow-down-to-dotted-line {
  --fa: "\e095";
  --fa--fa: "\e095\e095";
}

.fa-hand-dots {
  --fa: "\f461";
  --fa--fa: "\f461\f461";
}

.fa-allergies {
  --fa: "\f461";
  --fa--fa: "\f461\f461";
}

.fa-file-invoice {
  --fa: "\f570";
  --fa--fa: "\f570\f570";
}

.fa-window-minimize {
  --fa: "\f2d1";
  --fa--fa: "\f2d1\f2d1";
}

.fa-rectangle-wide {
  --fa: "\f2fc";
  --fa--fa: "\f2fc\f2fc";
}

.fa-comment-arrow-up {
  --fa: "\e144";
  --fa--fa: "\e144\e144";
}

.fa-garlic {
  --fa: "\e40e";
  --fa--fa: "\e40e\e40e";
}

.fa-mug-saucer {
  --fa: "\f0f4";
  --fa--fa: "\f0f4\f0f4";
}

.fa-coffee {
  --fa: "\f0f4";
  --fa--fa: "\f0f4\f0f4";
}

.fa-brush {
  --fa: "\f55d";
  --fa--fa: "\f55d\f55d";
}

.fa-file-half-dashed {
  --fa: "\e698";
  --fa--fa: "\e698\e698";
}

.fa-tree-decorated {
  --fa: "\f7dc";
  --fa--fa: "\f7dc\f7dc";
}

.fa-mask {
  --fa: "\f6fa";
  --fa--fa: "\f6fa\f6fa";
}

.fa-calendar-heart {
  --fa: "\e0d3";
  --fa--fa: "\e0d3\e0d3";
}

.fa-magnifying-glass-minus {
  --fa: "\f010";
  --fa--fa: "\f010\f010";
}

.fa-search-minus {
  --fa: "\f010";
  --fa--fa: "\f010\f010";
}

.fa-flower {
  --fa: "\f7ff";
  --fa--fa: "\f7ff\f7ff";
}

.fa-arrow-down-from-arc {
  --fa: "\e614";
  --fa--fa: "\e614\e614";
}

.fa-right-left-large {
  --fa: "\e5e1";
  --fa--fa: "\e5e1\e5e1";
}

.fa-ruler-vertical {
  --fa: "\f548";
  --fa--fa: "\f548\f548";
}

.fa-circles-overlap {
  --fa: "\e600";
  --fa--fa: "\e600\e600";
}

.fa-user-large {
  --fa: "\f406";
  --fa--fa: "\f406\f406";
}

.fa-user-alt {
  --fa: "\f406";
  --fa--fa: "\f406\f406";
}

.fa-starship-freighter {
  --fa: "\e03a";
  --fa--fa: "\e03a\e03a";
}

.fa-train-tram {
  --fa: "\e5b4";
  --fa--fa: "\e5b4\e5b4";
}

.fa-bridge-suspension {
  --fa: "\e4cd";
  --fa--fa: "\e4cd\e4cd";
}

.fa-trash-check {
  --fa: "\e2af";
  --fa--fa: "\e2af\e2af";
}

.fa-user-nurse {
  --fa: "\f82f";
  --fa--fa: "\f82f\f82f";
}

.fa-boombox {
  --fa: "\f8a5";
  --fa--fa: "\f8a5\f8a5";
}

.fa-syringe {
  --fa: "\f48e";
  --fa--fa: "\f48e\f48e";
}

.fa-cloud-sun {
  --fa: "\f6c4";
  --fa--fa: "\f6c4\f6c4";
}

.fa-shield-exclamation {
  --fa: "\e247";
  --fa--fa: "\e247\e247";
}

.fa-stopwatch-20 {
  --fa: "\e06f";
  --fa--fa: "\e06f\e06f";
}

.fa-square-full {
  --fa: "\f45c";
  --fa--fa: "\f45c\f45c";
}

.fa-grip-dots {
  --fa: "\e410";
  --fa--fa: "\e410\e410";
}

.fa-comment-exclamation {
  --fa: "\f4af";
  --fa--fa: "\f4af\f4af";
}

.fa-pen-swirl {
  --fa: "\e214";
  --fa--fa: "\e214\e214";
}

.fa-falafel {
  --fa: "\e40a";
  --fa--fa: "\e40a\e40a";
}

.fa-circle-2 {
  --fa: "\e0ef";
  --fa--fa: "\e0ef\e0ef";
}

.fa-magnet {
  --fa: "\f076";
  --fa--fa: "\f076\f076";
}

.fa-jar {
  --fa: "\e516";
  --fa--fa: "\e516\e516";
}

.fa-gramophone {
  --fa: "\f8bd";
  --fa--fa: "\f8bd\f8bd";
}

.fa-dice-d12 {
  --fa: "\f6ce";
  --fa--fa: "\f6ce\f6ce";
}

.fa-note-sticky {
  --fa: "\f249";
  --fa--fa: "\f249\f249";
}

.fa-sticky-note {
  --fa: "\f249";
  --fa--fa: "\f249\f249";
}

.fa-down {
  --fa: "\f354";
  --fa--fa: "\f354\f354";
}

.fa-arrow-alt-down {
  --fa: "\f354";
  --fa--fa: "\f354\f354";
}

.fa-hundred-points {
  --fa: "\e41c";
  --fa--fa: "\e41c\e41c";
}

.fa-100 {
  --fa: "\e41c";
  --fa--fa: "\e41c\e41c";
}

.fa-paperclip-vertical {
  --fa: "\e3c2";
  --fa--fa: "\e3c2\e3c2";
}

.fa-wind-warning {
  --fa: "\f776";
  --fa--fa: "\f776\f776";
}

.fa-wind-circle-exclamation {
  --fa: "\f776";
  --fa--fa: "\f776\f776";
}

.fa-location-pin-slash {
  --fa: "\f60c";
  --fa--fa: "\f60c\f60c";
}

.fa-map-marker-slash {
  --fa: "\f60c";
  --fa--fa: "\f60c\f60c";
}

.fa-face-sad-sweat {
  --fa: "\e38a";
  --fa--fa: "\e38a\e38a";
}

.fa-bug-slash {
  --fa: "\e490";
  --fa--fa: "\e490\e490";
}

.fa-cupcake {
  --fa: "\e402";
  --fa--fa: "\e402\e402";
}

.fa-light-switch-off {
  --fa: "\e018";
  --fa--fa: "\e018\e018";
}

.fa-toggle-large-off {
  --fa: "\e5b0";
  --fa--fa: "\e5b0\e5b0";
}

.fa-pen-fancy-slash {
  --fa: "\e210";
  --fa--fa: "\e210\e210";
}

.fa-truck-container {
  --fa: "\f4dc";
  --fa--fa: "\f4dc\f4dc";
}

.fa-boot {
  --fa: "\f782";
  --fa--fa: "\f782\f782";
}

.fa-arrow-up-from-water-pump {
  --fa: "\e4b6";
  --fa--fa: "\e4b6\e4b6";
}

.fa-file-check {
  --fa: "\f316";
  --fa--fa: "\f316\f316";
}

.fa-bone {
  --fa: "\f5d7";
  --fa--fa: "\f5d7\f5d7";
}

.fa-cards-blank {
  --fa: "\e4df";
  --fa--fa: "\e4df\e4df";
}

.fa-circle-3 {
  --fa: "\e0f0";
  --fa--fa: "\e0f0\e0f0";
}

.fa-bench-tree {
  --fa: "\e2e7";
  --fa--fa: "\e2e7\e2e7";
}

.fa-keyboard-brightness-low {
  --fa: "\e1c1";
  --fa--fa: "\e1c1\e1c1";
}

.fa-ski-boot-ski {
  --fa: "\e3cd";
  --fa--fa: "\e3cd\e3cd";
}

.fa-brain-circuit {
  --fa: "\e0c6";
  --fa--fa: "\e0c6\e0c6";
}

.fa-table-cells-row-unlock {
  --fa: "\e691";
  --fa--fa: "\e691\e691";
}

.fa-user-injured {
  --fa: "\f728";
  --fa--fa: "\f728\f728";
}

.fa-block-brick-fire {
  --fa: "\e3dc";
  --fa--fa: "\e3dc\e3dc";
}

.fa-firewall {
  --fa: "\e3dc";
  --fa--fa: "\e3dc\e3dc";
}

.fa-face-sad-tear {
  --fa: "\f5b4";
  --fa--fa: "\f5b4\f5b4";
}

.fa-sad-tear {
  --fa: "\f5b4";
  --fa--fa: "\f5b4\f5b4";
}

.fa-plane {
  --fa: "\f072";
  --fa--fa: "\f072\f072";
}

.fa-tent-arrows-down {
  --fa: "\e581";
  --fa--fa: "\e581\e581";
}

.fa-exclamation {
  --fa: "\!";
  --fa--fa: "\!\!";
}

.fa-arrows-spin {
  --fa: "\e4bb";
  --fa--fa: "\e4bb\e4bb";
}

.fa-face-smile-relaxed {
  --fa: "\e392";
  --fa--fa: "\e392\e392";
}

.fa-comment-xmark {
  --fa: "\f4b5";
  --fa--fa: "\f4b5\f4b5";
}

.fa-comment-times {
  --fa: "\f4b5";
  --fa--fa: "\f4b5\f4b5";
}

.fa-print {
  --fa: "\f02f";
  --fa--fa: "\f02f\f02f";
}

.fa-turkish-lira-sign {
  --fa: "\e2bb";
  --fa--fa: "\e2bb\e2bb";
}

.fa-try {
  --fa: "\e2bb";
  --fa--fa: "\e2bb\e2bb";
}

.fa-turkish-lira {
  --fa: "\e2bb";
  --fa--fa: "\e2bb\e2bb";
}

.fa-face-nose-steam {
  --fa: "\e382";
  --fa--fa: "\e382\e382";
}

.fa-circle-waveform-lines {
  --fa: "\e12d";
  --fa--fa: "\e12d\e12d";
}

.fa-waveform-circle {
  --fa: "\e12d";
  --fa--fa: "\e12d\e12d";
}

.fa-dollar-sign {
  --fa: "\$";
  --fa--fa: "\$\$";
}

.fa-dollar {
  --fa: "\$";
  --fa--fa: "\$\$";
}

.fa-usd {
  --fa: "\$";
  --fa--fa: "\$\$";
}

.fa-ferris-wheel {
  --fa: "\e174";
  --fa--fa: "\e174\e174";
}

.fa-computer-speaker {
  --fa: "\f8b2";
  --fa--fa: "\f8b2\f8b2";
}

.fa-skull-cow {
  --fa: "\f8de";
  --fa--fa: "\f8de\f8de";
}

.fa-x {
  --fa: "X";
  --fa--fa: "XX";
}

.fa-magnifying-glass-dollar {
  --fa: "\f688";
  --fa--fa: "\f688\f688";
}

.fa-search-dollar {
  --fa: "\f688";
  --fa--fa: "\f688\f688";
}

.fa-users-gear {
  --fa: "\f509";
  --fa--fa: "\f509\f509";
}

.fa-users-cog {
  --fa: "\f509";
  --fa--fa: "\f509\f509";
}

.fa-person-military-pointing {
  --fa: "\e54a";
  --fa--fa: "\e54a\e54a";
}

.fa-building-columns {
  --fa: "\f19c";
  --fa--fa: "\f19c\f19c";
}

.fa-bank {
  --fa: "\f19c";
  --fa--fa: "\f19c\f19c";
}

.fa-institution {
  --fa: "\f19c";
  --fa--fa: "\f19c\f19c";
}

.fa-museum {
  --fa: "\f19c";
  --fa--fa: "\f19c\f19c";
}

.fa-university {
  --fa: "\f19c";
  --fa--fa: "\f19c\f19c";
}

.fa-circle-t {
  --fa: "\e124";
  --fa--fa: "\e124\e124";
}

.fa-sack {
  --fa: "\f81c";
  --fa--fa: "\f81c\f81c";
}

.fa-grid-2 {
  --fa: "\e196";
  --fa--fa: "\e196\e196";
}

.fa-camera-cctv {
  --fa: "\f8ac";
  --fa--fa: "\f8ac\f8ac";
}

.fa-cctv {
  --fa: "\f8ac";
  --fa--fa: "\f8ac\f8ac";
}

.fa-umbrella {
  --fa: "\f0e9";
  --fa--fa: "\f0e9\f0e9";
}

.fa-trowel {
  --fa: "\e589";
  --fa--fa: "\e589\e589";
}

.fa-horizontal-rule {
  --fa: "\f86c";
  --fa--fa: "\f86c\f86c";
}

.fa-bed-front {
  --fa: "\f8f7";
  --fa--fa: "\f8f7\f8f7";
}

.fa-bed-alt {
  --fa: "\f8f7";
  --fa--fa: "\f8f7\f8f7";
}

.fa-d {
  --fa: "D";
  --fa--fa: "DD";
}

.fa-stapler {
  --fa: "\e5af";
  --fa--fa: "\e5af\e5af";
}

.fa-masks-theater {
  --fa: "\f630";
  --fa--fa: "\f630\f630";
}

.fa-theater-masks {
  --fa: "\f630";
  --fa--fa: "\f630\f630";
}

.fa-file-gif {
  --fa: "\e645";
  --fa--fa: "\e645\e645";
}

.fa-kip-sign {
  --fa: "\e1c4";
  --fa--fa: "\e1c4\e1c4";
}

.fa-face-woozy {
  --fa: "\e3a2";
  --fa--fa: "\e3a2\e3a2";
}

.fa-cloud-question {
  --fa: "\e492";
  --fa--fa: "\e492\e492";
}

.fa-pineapple {
  --fa: "\e31f";
  --fa--fa: "\e31f\e31f";
}

.fa-hand-point-left {
  --fa: "\f0a5";
  --fa--fa: "\f0a5\f0a5";
}

.fa-gallery-thumbnails {
  --fa: "\e3aa";
  --fa--fa: "\e3aa\e3aa";
}

.fa-circle-j {
  --fa: "\e112";
  --fa--fa: "\e112\e112";
}

.fa-eyes {
  --fa: "\e367";
  --fa--fa: "\e367\e367";
}

.fa-handshake-simple {
  --fa: "\f4c6";
  --fa--fa: "\f4c6\f4c6";
}

.fa-handshake-alt {
  --fa: "\f4c6";
  --fa--fa: "\f4c6\f4c6";
}

.fa-page-caret-up {
  --fa: "\e42a";
  --fa--fa: "\e42a\e42a";
}

.fa-file-caret-up {
  --fa: "\e42a";
  --fa--fa: "\e42a\e42a";
}

.fa-jet-fighter {
  --fa: "\f0fb";
  --fa--fa: "\f0fb\f0fb";
}

.fa-fighter-jet {
  --fa: "\f0fb";
  --fa--fa: "\f0fb\f0fb";
}

.fa-comet {
  --fa: "\e003";
  --fa--fa: "\e003\e003";
}

.fa-square-share-nodes {
  --fa: "\f1e1";
  --fa--fa: "\f1e1\f1e1";
}

.fa-share-alt-square {
  --fa: "\f1e1";
  --fa--fa: "\f1e1\f1e1";
}

.fa-reflect-vertical {
  --fa: "\e665";
  --fa--fa: "\e665\e665";
}

.fa-shield-keyhole {
  --fa: "\e248";
  --fa--fa: "\e248\e248";
}

.fa-file-mp4 {
  --fa: "\e649";
  --fa--fa: "\e649\e649";
}

.fa-barcode {
  --fa: "\f02a";
  --fa--fa: "\f02a\f02a";
}

.fa-bulldozer {
  --fa: "\e655";
  --fa--fa: "\e655\e655";
}

.fa-plus-minus {
  --fa: "\e43c";
  --fa--fa: "\e43c\e43c";
}

.fa-square-sliders-vertical {
  --fa: "\f3f2";
  --fa--fa: "\f3f2\f3f2";
}

.fa-sliders-v-square {
  --fa: "\f3f2";
  --fa--fa: "\f3f2\f3f2";
}

.fa-video {
  --fa: "\f03d";
  --fa--fa: "\f03d\f03d";
}

.fa-video-camera {
  --fa: "\f03d";
  --fa--fa: "\f03d\f03d";
}

.fa-message-middle {
  --fa: "\e1e1";
  --fa--fa: "\e1e1\e1e1";
}

.fa-comment-middle-alt {
  --fa: "\e1e1";
  --fa--fa: "\e1e1\e1e1";
}

.fa-graduation-cap {
  --fa: "\f19d";
  --fa--fa: "\f19d\f19d";
}

.fa-mortar-board {
  --fa: "\f19d";
  --fa--fa: "\f19d\f19d";
}

.fa-hand-holding-medical {
  --fa: "\e05c";
  --fa--fa: "\e05c\e05c";
}

.fa-person-circle-check {
  --fa: "\e53e";
  --fa--fa: "\e53e\e53e";
}

.fa-square-z {
  --fa: "\e288";
  --fa--fa: "\e288\e288";
}

.fa-message-text {
  --fa: "\e1e6";
  --fa--fa: "\e1e6\e1e6";
}

.fa-comment-alt-text {
  --fa: "\e1e6";
  --fa--fa: "\e1e6\e1e6";
}

.fa-turn-up {
  --fa: "\f3bf";
  --fa--fa: "\f3bf\f3bf";
}

.fa-level-up-alt {
  --fa: "\f3bf";
  --fa--fa: "\f3bf\f3bf";
}

.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fonts/fa-solid-900.woff2") format("woff2"), url("fonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("fonts/fa-light-300.woff2") format("woff2"), url("fonts/fa-light-300.ttf") format("truetype");
}
.fal,
.fa-light {
  font-weight: 300;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fa-regular-400.woff2") format("woff2"), url("fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.ttf") format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}

.fa-monero {
  --fa: "\f3d0";
}

.fa-hooli {
  --fa: "\f427";
}

.fa-yelp {
  --fa: "\f1e9";
}

.fa-cc-visa {
  --fa: "\f1f0";
}

.fa-lastfm {
  --fa: "\f202";
}

.fa-shopware {
  --fa: "\f5b5";
}

.fa-creative-commons-nc {
  --fa: "\f4e8";
}

.fa-aws {
  --fa: "\f375";
}

.fa-redhat {
  --fa: "\f7bc";
}

.fa-yoast {
  --fa: "\f2b1";
}

.fa-cloudflare {
  --fa: "\e07d";
}

.fa-ups {
  --fa: "\f7e0";
}

.fa-pixiv {
  --fa: "\e640";
}

.fa-wpexplorer {
  --fa: "\f2de";
}

.fa-dyalog {
  --fa: "\f399";
}

.fa-bity {
  --fa: "\f37a";
}

.fa-stackpath {
  --fa: "\f842";
}

.fa-buysellads {
  --fa: "\f20d";
}

.fa-first-order {
  --fa: "\f2b0";
}

.fa-modx {
  --fa: "\f285";
}

.fa-guilded {
  --fa: "\e07e";
}

.fa-vnv {
  --fa: "\f40b";
}

.fa-square-js {
  --fa: "\f3b9";
}

.fa-js-square {
  --fa: "\f3b9";
}

.fa-microsoft {
  --fa: "\f3ca";
}

.fa-qq {
  --fa: "\f1d6";
}

.fa-orcid {
  --fa: "\f8d2";
}

.fa-java {
  --fa: "\f4e4";
}

.fa-invision {
  --fa: "\f7b0";
}

.fa-creative-commons-pd-alt {
  --fa: "\f4ed";
}

.fa-centercode {
  --fa: "\f380";
}

.fa-glide-g {
  --fa: "\f2a6";
}

.fa-drupal {
  --fa: "\f1a9";
}

.fa-jxl {
  --fa: "\e67b";
}

.fa-dart-lang {
  --fa: "\e693";
}

.fa-hire-a-helper {
  --fa: "\f3b0";
}

.fa-creative-commons-by {
  --fa: "\f4e7";
}

.fa-unity {
  --fa: "\e049";
}

.fa-whmcs {
  --fa: "\f40d";
}

.fa-rocketchat {
  --fa: "\f3e8";
}

.fa-vk {
  --fa: "\f189";
}

.fa-untappd {
  --fa: "\f405";
}

.fa-mailchimp {
  --fa: "\f59e";
}

.fa-css3-alt {
  --fa: "\f38b";
}

.fa-square-reddit {
  --fa: "\f1a2";
}

.fa-reddit-square {
  --fa: "\f1a2";
}

.fa-vimeo-v {
  --fa: "\f27d";
}

.fa-contao {
  --fa: "\f26d";
}

.fa-square-font-awesome {
  --fa: "\e5ad";
}

.fa-deskpro {
  --fa: "\f38f";
}

.fa-brave {
  --fa: "\e63c";
}

.fa-sistrix {
  --fa: "\f3ee";
}

.fa-square-instagram {
  --fa: "\e055";
}

.fa-instagram-square {
  --fa: "\e055";
}

.fa-battle-net {
  --fa: "\f835";
}

.fa-the-red-yeti {
  --fa: "\f69d";
}

.fa-square-hacker-news {
  --fa: "\f3af";
}

.fa-hacker-news-square {
  --fa: "\f3af";
}

.fa-edge {
  --fa: "\f282";
}

.fa-threads {
  --fa: "\e618";
}

.fa-napster {
  --fa: "\f3d2";
}

.fa-square-snapchat {
  --fa: "\f2ad";
}

.fa-snapchat-square {
  --fa: "\f2ad";
}

.fa-google-plus-g {
  --fa: "\f0d5";
}

.fa-artstation {
  --fa: "\f77a";
}

.fa-markdown {
  --fa: "\f60f";
}

.fa-sourcetree {
  --fa: "\f7d3";
}

.fa-google-plus {
  --fa: "\f2b3";
}

.fa-diaspora {
  --fa: "\f791";
}

.fa-foursquare {
  --fa: "\f180";
}

.fa-stack-overflow {
  --fa: "\f16c";
}

.fa-github-alt {
  --fa: "\f113";
}

.fa-phoenix-squadron {
  --fa: "\f511";
}

.fa-pagelines {
  --fa: "\f18c";
}

.fa-algolia {
  --fa: "\f36c";
}

.fa-red-river {
  --fa: "\f3e3";
}

.fa-creative-commons-sa {
  --fa: "\f4ef";
}

.fa-safari {
  --fa: "\f267";
}

.fa-google {
  --fa: "\f1a0";
}

.fa-square-font-awesome-stroke {
  --fa: "\f35c";
}

.fa-font-awesome-alt {
  --fa: "\f35c";
}

.fa-atlassian {
  --fa: "\f77b";
}

.fa-linkedin-in {
  --fa: "\f0e1";
}

.fa-digital-ocean {
  --fa: "\f391";
}

.fa-nimblr {
  --fa: "\f5a8";
}

.fa-chromecast {
  --fa: "\f838";
}

.fa-evernote {
  --fa: "\f839";
}

.fa-hacker-news {
  --fa: "\f1d4";
}

.fa-creative-commons-sampling {
  --fa: "\f4f0";
}

.fa-adversal {
  --fa: "\f36a";
}

.fa-creative-commons {
  --fa: "\f25e";
}

.fa-watchman-monitoring {
  --fa: "\e087";
}

.fa-fonticons {
  --fa: "\f280";
}

.fa-weixin {
  --fa: "\f1d7";
}

.fa-shirtsinbulk {
  --fa: "\f214";
}

.fa-codepen {
  --fa: "\f1cb";
}

.fa-git-alt {
  --fa: "\f841";
}

.fa-lyft {
  --fa: "\f3c3";
}

.fa-rev {
  --fa: "\f5b2";
}

.fa-windows {
  --fa: "\f17a";
}

.fa-wizards-of-the-coast {
  --fa: "\f730";
}

.fa-square-viadeo {
  --fa: "\f2aa";
}

.fa-viadeo-square {
  --fa: "\f2aa";
}

.fa-meetup {
  --fa: "\f2e0";
}

.fa-centos {
  --fa: "\f789";
}

.fa-adn {
  --fa: "\f170";
}

.fa-cloudsmith {
  --fa: "\f384";
}

.fa-opensuse {
  --fa: "\e62b";
}

.fa-pied-piper-alt {
  --fa: "\f1a8";
}

.fa-square-dribbble {
  --fa: "\f397";
}

.fa-dribbble-square {
  --fa: "\f397";
}

.fa-codiepie {
  --fa: "\f284";
}

.fa-node {
  --fa: "\f419";
}

.fa-mix {
  --fa: "\f3cb";
}

.fa-steam {
  --fa: "\f1b6";
}

.fa-cc-apple-pay {
  --fa: "\f416";
}

.fa-scribd {
  --fa: "\f28a";
}

.fa-debian {
  --fa: "\e60b";
}

.fa-openid {
  --fa: "\f19b";
}

.fa-instalod {
  --fa: "\e081";
}

.fa-files-pinwheel {
  --fa: "\e69f";
}

.fa-expeditedssl {
  --fa: "\f23e";
}

.fa-sellcast {
  --fa: "\f2da";
}

.fa-square-twitter {
  --fa: "\f081";
}

.fa-twitter-square {
  --fa: "\f081";
}

.fa-r-project {
  --fa: "\f4f7";
}

.fa-delicious {
  --fa: "\f1a5";
}

.fa-freebsd {
  --fa: "\f3a4";
}

.fa-vuejs {
  --fa: "\f41f";
}

.fa-accusoft {
  --fa: "\f369";
}

.fa-ioxhost {
  --fa: "\f208";
}

.fa-fonticons-fi {
  --fa: "\f3a2";
}

.fa-app-store {
  --fa: "\f36f";
}

.fa-cc-mastercard {
  --fa: "\f1f1";
}

.fa-itunes-note {
  --fa: "\f3b5";
}

.fa-golang {
  --fa: "\e40f";
}

.fa-kickstarter {
  --fa: "\f3bb";
}

.fa-square-kickstarter {
  --fa: "\f3bb";
}

.fa-grav {
  --fa: "\f2d6";
}

.fa-weibo {
  --fa: "\f18a";
}

.fa-uncharted {
  --fa: "\e084";
}

.fa-firstdraft {
  --fa: "\f3a1";
}

.fa-square-youtube {
  --fa: "\f431";
}

.fa-youtube-square {
  --fa: "\f431";
}

.fa-wikipedia-w {
  --fa: "\f266";
}

.fa-wpressr {
  --fa: "\f3e4";
}

.fa-rendact {
  --fa: "\f3e4";
}

.fa-angellist {
  --fa: "\f209";
}

.fa-galactic-republic {
  --fa: "\f50c";
}

.fa-nfc-directional {
  --fa: "\e530";
}

.fa-skype {
  --fa: "\f17e";
}

.fa-joget {
  --fa: "\f3b7";
}

.fa-fedora {
  --fa: "\f798";
}

.fa-stripe-s {
  --fa: "\f42a";
}

.fa-meta {
  --fa: "\e49b";
}

.fa-laravel {
  --fa: "\f3bd";
}

.fa-hotjar {
  --fa: "\f3b1";
}

.fa-bluetooth-b {
  --fa: "\f294";
}

.fa-square-letterboxd {
  --fa: "\e62e";
}

.fa-sticker-mule {
  --fa: "\f3f7";
}

.fa-creative-commons-zero {
  --fa: "\f4f3";
}

.fa-hips {
  --fa: "\f452";
}

.fa-css {
  --fa: "\e6a2";
}

.fa-behance {
  --fa: "\f1b4";
}

.fa-reddit {
  --fa: "\f1a1";
}

.fa-discord {
  --fa: "\f392";
}

.fa-chrome {
  --fa: "\f268";
}

.fa-app-store-ios {
  --fa: "\f370";
}

.fa-cc-discover {
  --fa: "\f1f2";
}

.fa-wpbeginner {
  --fa: "\f297";
}

.fa-confluence {
  --fa: "\f78d";
}

.fa-shoelace {
  --fa: "\e60c";
}

.fa-mdb {
  --fa: "\f8ca";
}

.fa-dochub {
  --fa: "\f394";
}

.fa-accessible-icon {
  --fa: "\f368";
}

.fa-ebay {
  --fa: "\f4f4";
}

.fa-amazon {
  --fa: "\f270";
}

.fa-unsplash {
  --fa: "\e07c";
}

.fa-yarn {
  --fa: "\f7e3";
}

.fa-square-steam {
  --fa: "\f1b7";
}

.fa-steam-square {
  --fa: "\f1b7";
}

.fa-500px {
  --fa: "\f26e";
}

.fa-square-vimeo {
  --fa: "\f194";
}

.fa-vimeo-square {
  --fa: "\f194";
}

.fa-asymmetrik {
  --fa: "\f372";
}

.fa-font-awesome {
  --fa: "\f2b4";
}

.fa-font-awesome-flag {
  --fa: "\f2b4";
}

.fa-font-awesome-logo-full {
  --fa: "\f2b4";
}

.fa-gratipay {
  --fa: "\f184";
}

.fa-apple {
  --fa: "\f179";
}

.fa-hive {
  --fa: "\e07f";
}

.fa-gitkraken {
  --fa: "\f3a6";
}

.fa-keybase {
  --fa: "\f4f5";
}

.fa-apple-pay {
  --fa: "\f415";
}

.fa-padlet {
  --fa: "\e4a0";
}

.fa-amazon-pay {
  --fa: "\f42c";
}

.fa-square-github {
  --fa: "\f092";
}

.fa-github-square {
  --fa: "\f092";
}

.fa-stumbleupon {
  --fa: "\f1a4";
}

.fa-fedex {
  --fa: "\f797";
}

.fa-phoenix-framework {
  --fa: "\f3dc";
}

.fa-shopify {
  --fa: "\e057";
}

.fa-neos {
  --fa: "\f612";
}

.fa-square-threads {
  --fa: "\e619";
}

.fa-hackerrank {
  --fa: "\f5f7";
}

.fa-researchgate {
  --fa: "\f4f8";
}

.fa-swift {
  --fa: "\f8e1";
}

.fa-angular {
  --fa: "\f420";
}

.fa-speakap {
  --fa: "\f3f3";
}

.fa-angrycreative {
  --fa: "\f36e";
}

.fa-y-combinator {
  --fa: "\f23b";
}

.fa-empire {
  --fa: "\f1d1";
}

.fa-envira {
  --fa: "\f299";
}

.fa-google-scholar {
  --fa: "\e63b";
}

.fa-square-gitlab {
  --fa: "\e5ae";
}

.fa-gitlab-square {
  --fa: "\e5ae";
}

.fa-studiovinari {
  --fa: "\f3f8";
}

.fa-pied-piper {
  --fa: "\f2ae";
}

.fa-wordpress {
  --fa: "\f19a";
}

.fa-product-hunt {
  --fa: "\f288";
}

.fa-firefox {
  --fa: "\f269";
}

.fa-linode {
  --fa: "\f2b8";
}

.fa-goodreads {
  --fa: "\f3a8";
}

.fa-square-odnoklassniki {
  --fa: "\f264";
}

.fa-odnoklassniki-square {
  --fa: "\f264";
}

.fa-jsfiddle {
  --fa: "\f1cc";
}

.fa-sith {
  --fa: "\f512";
}

.fa-themeisle {
  --fa: "\f2b2";
}

.fa-page4 {
  --fa: "\f3d7";
}

.fa-hashnode {
  --fa: "\e499";
}

.fa-react {
  --fa: "\f41b";
}

.fa-cc-paypal {
  --fa: "\f1f4";
}

.fa-squarespace {
  --fa: "\f5be";
}

.fa-cc-stripe {
  --fa: "\f1f5";
}

.fa-creative-commons-share {
  --fa: "\f4f2";
}

.fa-bitcoin {
  --fa: "\f379";
}

.fa-keycdn {
  --fa: "\f3ba";
}

.fa-opera {
  --fa: "\f26a";
}

.fa-itch-io {
  --fa: "\f83a";
}

.fa-umbraco {
  --fa: "\f8e8";
}

.fa-galactic-senate {
  --fa: "\f50d";
}

.fa-ubuntu {
  --fa: "\f7df";
}

.fa-draft2digital {
  --fa: "\f396";
}

.fa-stripe {
  --fa: "\f429";
}

.fa-houzz {
  --fa: "\f27c";
}

.fa-gg {
  --fa: "\f260";
}

.fa-dhl {
  --fa: "\f790";
}

.fa-square-pinterest {
  --fa: "\f0d3";
}

.fa-pinterest-square {
  --fa: "\f0d3";
}

.fa-xing {
  --fa: "\f168";
}

.fa-blackberry {
  --fa: "\f37b";
}

.fa-creative-commons-pd {
  --fa: "\f4ec";
}

.fa-playstation {
  --fa: "\f3df";
}

.fa-quinscape {
  --fa: "\f459";
}

.fa-less {
  --fa: "\f41d";
}

.fa-blogger-b {
  --fa: "\f37d";
}

.fa-opencart {
  --fa: "\f23d";
}

.fa-vine {
  --fa: "\f1ca";
}

.fa-signal-messenger {
  --fa: "\e663";
}

.fa-paypal {
  --fa: "\f1ed";
}

.fa-gitlab {
  --fa: "\f296";
}

.fa-typo3 {
  --fa: "\f42b";
}

.fa-reddit-alien {
  --fa: "\f281";
}

.fa-yahoo {
  --fa: "\f19e";
}

.fa-dailymotion {
  --fa: "\e052";
}

.fa-affiliatetheme {
  --fa: "\f36b";
}

.fa-pied-piper-pp {
  --fa: "\f1a7";
}

.fa-bootstrap {
  --fa: "\f836";
}

.fa-odnoklassniki {
  --fa: "\f263";
}

.fa-nfc-symbol {
  --fa: "\e531";
}

.fa-mintbit {
  --fa: "\e62f";
}

.fa-ethereum {
  --fa: "\f42e";
}

.fa-speaker-deck {
  --fa: "\f83c";
}

.fa-creative-commons-nc-eu {
  --fa: "\f4e9";
}

.fa-patreon {
  --fa: "\f3d9";
}

.fa-avianex {
  --fa: "\f374";
}

.fa-ello {
  --fa: "\f5f1";
}

.fa-gofore {
  --fa: "\f3a7";
}

.fa-bimobject {
  --fa: "\f378";
}

.fa-brave-reverse {
  --fa: "\e63d";
}

.fa-facebook-f {
  --fa: "\f39e";
}

.fa-square-google-plus {
  --fa: "\f0d4";
}

.fa-google-plus-square {
  --fa: "\f0d4";
}

.fa-web-awesome {
  --fa: "\e682";
}

.fa-mandalorian {
  --fa: "\f50f";
}

.fa-first-order-alt {
  --fa: "\f50a";
}

.fa-osi {
  --fa: "\f41a";
}

.fa-google-wallet {
  --fa: "\f1ee";
}

.fa-d-and-d-beyond {
  --fa: "\f6ca";
}

.fa-periscope {
  --fa: "\f3da";
}

.fa-fulcrum {
  --fa: "\f50b";
}

.fa-cloudscale {
  --fa: "\f383";
}

.fa-forumbee {
  --fa: "\f211";
}

.fa-mizuni {
  --fa: "\f3cc";
}

.fa-schlix {
  --fa: "\f3ea";
}

.fa-square-xing {
  --fa: "\f169";
}

.fa-xing-square {
  --fa: "\f169";
}

.fa-bandcamp {
  --fa: "\f2d5";
}

.fa-wpforms {
  --fa: "\f298";
}

.fa-cloudversify {
  --fa: "\f385";
}

.fa-usps {
  --fa: "\f7e1";
}

.fa-megaport {
  --fa: "\f5a3";
}

.fa-magento {
  --fa: "\f3c4";
}

.fa-spotify {
  --fa: "\f1bc";
}

.fa-optin-monster {
  --fa: "\f23c";
}

.fa-fly {
  --fa: "\f417";
}

.fa-square-bluesky {
  --fa: "\e6a3";
}

.fa-aviato {
  --fa: "\f421";
}

.fa-itunes {
  --fa: "\f3b4";
}

.fa-cuttlefish {
  --fa: "\f38c";
}

.fa-blogger {
  --fa: "\f37c";
}

.fa-flickr {
  --fa: "\f16e";
}

.fa-viber {
  --fa: "\f409";
}

.fa-soundcloud {
  --fa: "\f1be";
}

.fa-digg {
  --fa: "\f1a6";
}

.fa-tencent-weibo {
  --fa: "\f1d5";
}

.fa-letterboxd {
  --fa: "\e62d";
}

.fa-symfony {
  --fa: "\f83d";
}

.fa-maxcdn {
  --fa: "\f136";
}

.fa-etsy {
  --fa: "\f2d7";
}

.fa-facebook-messenger {
  --fa: "\f39f";
}

.fa-audible {
  --fa: "\f373";
}

.fa-think-peaks {
  --fa: "\f731";
}

.fa-bilibili {
  --fa: "\e3d9";
}

.fa-erlang {
  --fa: "\f39d";
}

.fa-x-twitter {
  --fa: "\e61b";
}

.fa-cotton-bureau {
  --fa: "\f89e";
}

.fa-dashcube {
  --fa: "\f210";
}

.fa-42-group {
  --fa: "\e080";
}

.fa-innosoft {
  --fa: "\e080";
}

.fa-stack-exchange {
  --fa: "\f18d";
}

.fa-elementor {
  --fa: "\f430";
}

.fa-square-pied-piper {
  --fa: "\e01e";
}

.fa-pied-piper-square {
  --fa: "\e01e";
}

.fa-creative-commons-nd {
  --fa: "\f4eb";
}

.fa-palfed {
  --fa: "\f3d8";
}

.fa-superpowers {
  --fa: "\f2dd";
}

.fa-resolving {
  --fa: "\f3e7";
}

.fa-xbox {
  --fa: "\f412";
}

.fa-square-web-awesome-stroke {
  --fa: "\e684";
}

.fa-searchengin {
  --fa: "\f3eb";
}

.fa-tiktok {
  --fa: "\e07b";
}

.fa-square-facebook {
  --fa: "\f082";
}

.fa-facebook-square {
  --fa: "\f082";
}

.fa-renren {
  --fa: "\f18b";
}

.fa-linux {
  --fa: "\f17c";
}

.fa-glide {
  --fa: "\f2a5";
}

.fa-linkedin {
  --fa: "\f08c";
}

.fa-hubspot {
  --fa: "\f3b2";
}

.fa-deploydog {
  --fa: "\f38e";
}

.fa-twitch {
  --fa: "\f1e8";
}

.fa-flutter {
  --fa: "\e694";
}

.fa-ravelry {
  --fa: "\f2d9";
}

.fa-mixer {
  --fa: "\e056";
}

.fa-square-lastfm {
  --fa: "\f203";
}

.fa-lastfm-square {
  --fa: "\f203";
}

.fa-vimeo {
  --fa: "\f40a";
}

.fa-mendeley {
  --fa: "\f7b3";
}

.fa-uniregistry {
  --fa: "\f404";
}

.fa-figma {
  --fa: "\f799";
}

.fa-creative-commons-remix {
  --fa: "\f4ee";
}

.fa-cc-amazon-pay {
  --fa: "\f42d";
}

.fa-dropbox {
  --fa: "\f16b";
}

.fa-instagram {
  --fa: "\f16d";
}

.fa-cmplid {
  --fa: "\e360";
}

.fa-upwork {
  --fa: "\e641";
}

.fa-facebook {
  --fa: "\f09a";
}

.fa-gripfire {
  --fa: "\f3ac";
}

.fa-jedi-order {
  --fa: "\f50e";
}

.fa-uikit {
  --fa: "\f403";
}

.fa-fort-awesome-alt {
  --fa: "\f3a3";
}

.fa-phabricator {
  --fa: "\f3db";
}

.fa-ussunnah {
  --fa: "\f407";
}

.fa-earlybirds {
  --fa: "\f39a";
}

.fa-trade-federation {
  --fa: "\f513";
}

.fa-autoprefixer {
  --fa: "\f41c";
}

.fa-whatsapp {
  --fa: "\f232";
}

.fa-square-upwork {
  --fa: "\e67c";
}

.fa-slideshare {
  --fa: "\f1e7";
}

.fa-google-play {
  --fa: "\f3ab";
}

.fa-viadeo {
  --fa: "\f2a9";
}

.fa-line {
  --fa: "\f3c0";
}

.fa-google-drive {
  --fa: "\f3aa";
}

.fa-servicestack {
  --fa: "\f3ec";
}

.fa-simplybuilt {
  --fa: "\f215";
}

.fa-bitbucket {
  --fa: "\f171";
}

.fa-imdb {
  --fa: "\f2d8";
}

.fa-deezer {
  --fa: "\e077";
}

.fa-raspberry-pi {
  --fa: "\f7bb";
}

.fa-jira {
  --fa: "\f7b1";
}

.fa-docker {
  --fa: "\f395";
}

.fa-screenpal {
  --fa: "\e570";
}

.fa-bluetooth {
  --fa: "\f293";
}

.fa-gitter {
  --fa: "\f426";
}

.fa-d-and-d {
  --fa: "\f38d";
}

.fa-microblog {
  --fa: "\e01a";
}

.fa-cc-diners-club {
  --fa: "\f24c";
}

.fa-gg-circle {
  --fa: "\f261";
}

.fa-pied-piper-hat {
  --fa: "\f4e5";
}

.fa-kickstarter-k {
  --fa: "\f3bc";
}

.fa-yandex {
  --fa: "\f413";
}

.fa-readme {
  --fa: "\f4d5";
}

.fa-html5 {
  --fa: "\f13b";
}

.fa-sellsy {
  --fa: "\f213";
}

.fa-square-web-awesome {
  --fa: "\e683";
}

.fa-sass {
  --fa: "\f41e";
}

.fa-wirsindhandwerk {
  --fa: "\e2d0";
}

.fa-wsh {
  --fa: "\e2d0";
}

.fa-buromobelexperte {
  --fa: "\f37f";
}

.fa-salesforce {
  --fa: "\f83b";
}

.fa-octopus-deploy {
  --fa: "\e082";
}

.fa-medapps {
  --fa: "\f3c6";
}

.fa-ns8 {
  --fa: "\f3d5";
}

.fa-pinterest-p {
  --fa: "\f231";
}

.fa-apper {
  --fa: "\f371";
}

.fa-fort-awesome {
  --fa: "\f286";
}

.fa-waze {
  --fa: "\f83f";
}

.fa-bluesky {
  --fa: "\e671";
}

.fa-cc-jcb {
  --fa: "\f24b";
}

.fa-snapchat {
  --fa: "\f2ab";
}

.fa-snapchat-ghost {
  --fa: "\f2ab";
}

.fa-fantasy-flight-games {
  --fa: "\f6dc";
}

.fa-rust {
  --fa: "\e07a";
}

.fa-wix {
  --fa: "\f5cf";
}

.fa-square-behance {
  --fa: "\f1b5";
}

.fa-behance-square {
  --fa: "\f1b5";
}

.fa-supple {
  --fa: "\f3f9";
}

.fa-webflow {
  --fa: "\e65c";
}

.fa-rebel {
  --fa: "\f1d0";
}

.fa-css3 {
  --fa: "\f13c";
}

.fa-staylinked {
  --fa: "\f3f5";
}

.fa-kaggle {
  --fa: "\f5fa";
}

.fa-space-awesome {
  --fa: "\e5ac";
}

.fa-deviantart {
  --fa: "\f1bd";
}

.fa-cpanel {
  --fa: "\f388";
}

.fa-goodreads-g {
  --fa: "\f3a9";
}

.fa-square-git {
  --fa: "\f1d2";
}

.fa-git-square {
  --fa: "\f1d2";
}

.fa-square-tumblr {
  --fa: "\f174";
}

.fa-tumblr-square {
  --fa: "\f174";
}

.fa-trello {
  --fa: "\f181";
}

.fa-creative-commons-nc-jp {
  --fa: "\f4ea";
}

.fa-get-pocket {
  --fa: "\f265";
}

.fa-perbyte {
  --fa: "\e083";
}

.fa-grunt {
  --fa: "\f3ad";
}

.fa-weebly {
  --fa: "\f5cc";
}

.fa-connectdevelop {
  --fa: "\f20e";
}

.fa-leanpub {
  --fa: "\f212";
}

.fa-black-tie {
  --fa: "\f27e";
}

.fa-themeco {
  --fa: "\f5c6";
}

.fa-python {
  --fa: "\f3e2";
}

.fa-android {
  --fa: "\f17b";
}

.fa-bots {
  --fa: "\e340";
}

.fa-free-code-camp {
  --fa: "\f2c5";
}

.fa-hornbill {
  --fa: "\f592";
}

.fa-js {
  --fa: "\f3b8";
}

.fa-ideal {
  --fa: "\e013";
}

.fa-git {
  --fa: "\f1d3";
}

.fa-dev {
  --fa: "\f6cc";
}

.fa-sketch {
  --fa: "\f7c6";
}

.fa-yandex-international {
  --fa: "\f414";
}

.fa-cc-amex {
  --fa: "\f1f3";
}

.fa-uber {
  --fa: "\f402";
}

.fa-github {
  --fa: "\f09b";
}

.fa-php {
  --fa: "\f457";
}

.fa-alipay {
  --fa: "\f642";
}

.fa-youtube {
  --fa: "\f167";
}

.fa-skyatlas {
  --fa: "\f216";
}

.fa-firefox-browser {
  --fa: "\e007";
}

.fa-replyd {
  --fa: "\f3e6";
}

.fa-suse {
  --fa: "\f7d6";
}

.fa-jenkins {
  --fa: "\f3b6";
}

.fa-twitter {
  --fa: "\f099";
}

.fa-rockrms {
  --fa: "\f3e9";
}

.fa-pinterest {
  --fa: "\f0d2";
}

.fa-buffer {
  --fa: "\f837";
}

.fa-npm {
  --fa: "\f3d4";
}

.fa-yammer {
  --fa: "\f840";
}

.fa-btc {
  --fa: "\f15a";
}

.fa-dribbble {
  --fa: "\f17d";
}

.fa-stumbleupon-circle {
  --fa: "\f1a3";
}

.fa-internet-explorer {
  --fa: "\f26b";
}

.fa-stubber {
  --fa: "\e5c7";
}

.fa-telegram {
  --fa: "\f2c6";
}

.fa-telegram-plane {
  --fa: "\f2c6";
}

.fa-old-republic {
  --fa: "\f510";
}

.fa-odysee {
  --fa: "\e5c6";
}

.fa-square-whatsapp {
  --fa: "\f40c";
}

.fa-whatsapp-square {
  --fa: "\f40c";
}

.fa-node-js {
  --fa: "\f3d3";
}

.fa-edge-legacy {
  --fa: "\e078";
}

.fa-slack {
  --fa: "\f198";
}

.fa-slack-hash {
  --fa: "\f198";
}

.fa-medrt {
  --fa: "\f3c8";
}

.fa-usb {
  --fa: "\f287";
}

.fa-tumblr {
  --fa: "\f173";
}

.fa-vaadin {
  --fa: "\f408";
}

.fa-quora {
  --fa: "\f2c4";
}

.fa-square-x-twitter {
  --fa: "\e61a";
}

.fa-reacteurope {
  --fa: "\f75d";
}

.fa-medium {
  --fa: "\f23a";
}

.fa-medium-m {
  --fa: "\f23a";
}

.fa-amilia {
  --fa: "\f36d";
}

.fa-mixcloud {
  --fa: "\f289";
}

.fa-flipboard {
  --fa: "\f44d";
}

.fa-viacoin {
  --fa: "\f237";
}

.fa-critical-role {
  --fa: "\f6c9";
}

.fa-sitrox {
  --fa: "\e44a";
}

.fa-discourse {
  --fa: "\f393";
}

.fa-joomla {
  --fa: "\f1aa";
}

.fa-mastodon {
  --fa: "\f4f6";
}

.fa-airbnb {
  --fa: "\f834";
}

.fa-wolf-pack-battalion {
  --fa: "\f514";
}

.fa-buy-n-large {
  --fa: "\f8a6";
}

.fa-gulp {
  --fa: "\f3ae";
}

.fa-creative-commons-sampling-plus {
  --fa: "\f4f1";
}

.fa-strava {
  --fa: "\f428";
}

.fa-ember {
  --fa: "\f423";
}

.fa-canadian-maple-leaf {
  --fa: "\f785";
}

.fa-teamspeak {
  --fa: "\f4f9";
}

.fa-pushed {
  --fa: "\f3e1";
}

.fa-wordpress-simple {
  --fa: "\f411";
}

.fa-nutritionix {
  --fa: "\f3d6";
}

.fa-wodu {
  --fa: "\e088";
}

.fa-google-pay {
  --fa: "\e079";
}

.fa-intercom {
  --fa: "\f7af";
}

.fa-zhihu {
  --fa: "\f63f";
}

.fa-korvue {
  --fa: "\f42f";
}

.fa-pix {
  --fa: "\e43a";
}

.fa-steam-symbol {
  --fa: "\f3f6";
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-duotone: "Font Awesome 6 Duotone";
  --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";
}

@font-face {
  font-family: "Font Awesome 6 Duotone";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("fonts/fa-duotone-900.woff2") format("woff2"), url("fonts/fa-duotone-900.ttf") format("truetype");
}
.fad,
.fa-duotone {
  position: relative;
  font-weight: 900;
  letter-spacing: normal;
}

.fad::before,
.fa-duotone::before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: var(--fa-primary-opacity, 1);
}

.fad::after,
.fa-duotone::after {
  color: var(--fa-secondary-color, inherit);
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad::before,
.fa-swap-opacity .fa-duotone::before,
.fad.fa-swap-opacity::before,
.fa-duotone.fa-swap-opacity::before {
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad::after,
.fa-swap-opacity .fa-duotone::after,
.fad.fa-swap-opacity::after,
.fa-duotone.fa-swap-opacity::after {
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse,
.fa-duotone.fa-inverse {
  color: var(--fa-inverse, #fff);
}

.fad.fa-stack-1x, .fad.fa-stack-2x,
.fa-duotone.fa-stack-1x, .fa-duotone.fa-stack-2x {
  position: absolute;
}

/*!
 * Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Pro";
  --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Pro";
}

@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url("fonts/fa-thin-100.woff2") format("woff2"), url("fonts/fa-thin-100.ttf") format("truetype");
}
.fat,
.fa-thin {
  font-weight: 100;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.datosprop b {
  display: block;
}

.report-content .views-rep {
  text-align: center;
  display: block;
  border: 1px solid #ddd;
  padding: 20px 0;
  border-radius: 4px;
  font-size: 30px;
  line-height: 1em;
  font-weight: 800;
  margin-bottom: 30px;
}
.report-content .views-rep span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 200;
}

#gdpr-cookie-message {
  position: fixed;
  bottom: 30px;
  left: 10px;
  max-width: 320px;
  background-color: #eaeaea;
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  font-family: system-ui;
}
@media (min-width: 768px) {
  #gdpr-cookie-message {
    right: 30px;
    max-width: 380px;
  }
}

#gdpr-cookie-message h4, #gdpr-cookie-message .h4 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

#gdpr-cookie-message h5, #gdpr-cookie-message .h5 {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

#gdpr-cookie-message p,
#gdpr-cookie-message ul {
  color: #000;
  font-size: 14px;
  line-height: 1.5em;
}

#gdpr-cookie-message ul {
  padding-left: 10px;
}

#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  text-align: center;
  padding-left: 0;
}

#gdpr-cookie-message li {
  width: 49%;
  display: inline-block;
  font-size: 13px;
}

#gdpr-cookie-message a {
  color: #c19046;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
  color: #000;
  border-bottom-color: #000;
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
  border: none;
  background: #000;
  color: white;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 3px;
  margin: 10px 10px 10px 0;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
  background: white;
  color: #000;
  transition: all 0.3s ease-in;
}

button#gdpr-cookie-deny,
button#gdpr-cookie-advanced {
  background: white;
  color: #000;
}

#gdpr-cookie-message button:disabled {
  opacity: 0.3;
}

#gdpr-cookie-message input[type=checkbox] {
  float: none;
  margin-top: 0;
  margin-right: 5px;
}

/* formulario custom para usar en contacto, ficha de propiedad, etc */
.custom-form textarea, .modal:not(#galleryModal):not(#economyModal) form textarea, .page-contact .contact-form form textarea, #economyModal form textarea, .property-form #requestInfoForm textarea, #newsletterForm2 textarea,
.custom-form span.customSelect,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect,
.page-contact .contact-form form span.customSelect,
#economyModal form span.customSelect,
.property-form #requestInfoForm span.customSelect,
#newsletterForm2 span.customSelect,
.custom-form input[type=text],
.modal:not(#galleryModal):not(#economyModal) form input[type=text],
.page-contact .contact-form form input[type=text],
#economyModal form input[type=text],
.property-form #requestInfoForm input[type=text],
#newsletterForm2 input[type=text],
.custom-form input[type=password],
.modal:not(#galleryModal):not(#economyModal) form input[type=password],
.page-contact .contact-form form input[type=password],
#economyModal form input[type=password],
.property-form #requestInfoForm input[type=password],
#newsletterForm2 input[type=password],
.custom-form .form-select,
.modal:not(#galleryModal):not(#economyModal) form .form-select,
.page-contact .contact-form form .form-select,
#economyModal form .form-select,
.property-form #requestInfoForm .form-select,
#newsletterForm2 .form-select,
.custom-form .select2-container--default .select2-selection--multiple,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple,
#economyModal form .select2-container--default .select2-selection--multiple,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple,
#newsletterForm2 .select2-container--default .select2-selection--multiple,
.custom-form .select2-container-multi .select2-choices,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices,
.page-contact .contact-form form .select2-container-multi .select2-choices,
#economyModal form .select2-container-multi .select2-choices,
.property-form #requestInfoForm .select2-container-multi .select2-choices,
#newsletterForm2 .select2-container-multi .select2-choices,
.custom-form .select2-container .select2-choice,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice,
.page-contact .contact-form form .select2-container .select2-choice,
#economyModal form .select2-container .select2-choice,
.property-form #requestInfoForm .select2-container .select2-choice,
#newsletterForm2 .select2-container .select2-choice {
  border-radius: 0px;
  border: 0;
  background-color: #fff;
  min-height: 60px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding-left: 15px;
  color: #181a19;
}
.custom-form textarea::-webkit-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea::-webkit-input-placeholder, .page-contact .contact-form form textarea::-webkit-input-placeholder, #economyModal form textarea::-webkit-input-placeholder, .property-form #requestInfoForm textarea::-webkit-input-placeholder, #newsletterForm2 textarea::-webkit-input-placeholder,
.custom-form span.customSelect::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect::-webkit-input-placeholder,
.page-contact .contact-form form span.customSelect::-webkit-input-placeholder,
#economyModal form span.customSelect::-webkit-input-placeholder,
.property-form #requestInfoForm span.customSelect::-webkit-input-placeholder,
#newsletterForm2 span.customSelect::-webkit-input-placeholder,
.custom-form input[type=text]::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text]::-webkit-input-placeholder,
.page-contact .contact-form form input[type=text]::-webkit-input-placeholder,
#economyModal form input[type=text]::-webkit-input-placeholder,
.property-form #requestInfoForm input[type=text]::-webkit-input-placeholder,
#newsletterForm2 input[type=text]::-webkit-input-placeholder,
.custom-form input[type=password]::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password]::-webkit-input-placeholder,
.page-contact .contact-form form input[type=password]::-webkit-input-placeholder,
#economyModal form input[type=password]::-webkit-input-placeholder,
.property-form #requestInfoForm input[type=password]::-webkit-input-placeholder,
#newsletterForm2 input[type=password]::-webkit-input-placeholder,
.custom-form .form-select::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select::-webkit-input-placeholder,
.page-contact .contact-form form .form-select::-webkit-input-placeholder,
#economyModal form .form-select::-webkit-input-placeholder,
.property-form #requestInfoForm .form-select::-webkit-input-placeholder,
#newsletterForm2 .form-select::-webkit-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple::-webkit-input-placeholder,
.custom-form .select2-container-multi .select2-choices::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices::-webkit-input-placeholder,
#economyModal form .select2-container-multi .select2-choices::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices::-webkit-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices::-webkit-input-placeholder,
.custom-form .select2-container .select2-choice::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice::-webkit-input-placeholder,
#economyModal form .select2-container .select2-choice::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice::-webkit-input-placeholder,
#newsletterForm2 .select2-container .select2-choice::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #181a19;
}
.custom-form textarea:-moz-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea:-moz-placeholder, .page-contact .contact-form form textarea:-moz-placeholder, #economyModal form textarea:-moz-placeholder, .property-form #requestInfoForm textarea:-moz-placeholder, #newsletterForm2 textarea:-moz-placeholder,
.custom-form span.customSelect:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect:-moz-placeholder,
.page-contact .contact-form form span.customSelect:-moz-placeholder,
#economyModal form span.customSelect:-moz-placeholder,
.property-form #requestInfoForm span.customSelect:-moz-placeholder,
#newsletterForm2 span.customSelect:-moz-placeholder,
.custom-form input[type=text]:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text]:-moz-placeholder,
.page-contact .contact-form form input[type=text]:-moz-placeholder,
#economyModal form input[type=text]:-moz-placeholder,
.property-form #requestInfoForm input[type=text]:-moz-placeholder,
#newsletterForm2 input[type=text]:-moz-placeholder,
.custom-form input[type=password]:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password]:-moz-placeholder,
.page-contact .contact-form form input[type=password]:-moz-placeholder,
#economyModal form input[type=password]:-moz-placeholder,
.property-form #requestInfoForm input[type=password]:-moz-placeholder,
#newsletterForm2 input[type=password]:-moz-placeholder,
.custom-form .form-select:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select:-moz-placeholder,
.page-contact .contact-form form .form-select:-moz-placeholder,
#economyModal form .form-select:-moz-placeholder,
.property-form #requestInfoForm .form-select:-moz-placeholder,
#newsletterForm2 .form-select:-moz-placeholder,
.custom-form .select2-container--default .select2-selection--multiple:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple:-moz-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple:-moz-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple:-moz-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple:-moz-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple:-moz-placeholder,
.custom-form .select2-container-multi .select2-choices:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices:-moz-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices:-moz-placeholder,
#economyModal form .select2-container-multi .select2-choices:-moz-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices:-moz-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices:-moz-placeholder,
.custom-form .select2-container .select2-choice:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice:-moz-placeholder,
.page-contact .contact-form form .select2-container .select2-choice:-moz-placeholder,
#economyModal form .select2-container .select2-choice:-moz-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice:-moz-placeholder,
#newsletterForm2 .select2-container .select2-choice:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #181a19;
  opacity: 1;
}
.custom-form textarea::-moz-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea::-moz-placeholder, .page-contact .contact-form form textarea::-moz-placeholder, #economyModal form textarea::-moz-placeholder, .property-form #requestInfoForm textarea::-moz-placeholder, #newsletterForm2 textarea::-moz-placeholder,
.custom-form span.customSelect::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect::-moz-placeholder,
.page-contact .contact-form form span.customSelect::-moz-placeholder,
#economyModal form span.customSelect::-moz-placeholder,
.property-form #requestInfoForm span.customSelect::-moz-placeholder,
#newsletterForm2 span.customSelect::-moz-placeholder,
.custom-form input[type=text]::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text]::-moz-placeholder,
.page-contact .contact-form form input[type=text]::-moz-placeholder,
#economyModal form input[type=text]::-moz-placeholder,
.property-form #requestInfoForm input[type=text]::-moz-placeholder,
#newsletterForm2 input[type=text]::-moz-placeholder,
.custom-form input[type=password]::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password]::-moz-placeholder,
.page-contact .contact-form form input[type=password]::-moz-placeholder,
#economyModal form input[type=password]::-moz-placeholder,
.property-form #requestInfoForm input[type=password]::-moz-placeholder,
#newsletterForm2 input[type=password]::-moz-placeholder,
.custom-form .form-select::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select::-moz-placeholder,
.page-contact .contact-form form .form-select::-moz-placeholder,
#economyModal form .form-select::-moz-placeholder,
.property-form #requestInfoForm .form-select::-moz-placeholder,
#newsletterForm2 .form-select::-moz-placeholder,
.custom-form .select2-container--default .select2-selection--multiple::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple::-moz-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple::-moz-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple::-moz-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple::-moz-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple::-moz-placeholder,
.custom-form .select2-container-multi .select2-choices::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices::-moz-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices::-moz-placeholder,
#economyModal form .select2-container-multi .select2-choices::-moz-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices::-moz-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices::-moz-placeholder,
.custom-form .select2-container .select2-choice::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice::-moz-placeholder,
.page-contact .contact-form form .select2-container .select2-choice::-moz-placeholder,
#economyModal form .select2-container .select2-choice::-moz-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice::-moz-placeholder,
#newsletterForm2 .select2-container .select2-choice::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #181a19;
  opacity: 1;
}
.custom-form textarea:-ms-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea:-ms-input-placeholder, .page-contact .contact-form form textarea:-ms-input-placeholder, #economyModal form textarea:-ms-input-placeholder, .property-form #requestInfoForm textarea:-ms-input-placeholder, #newsletterForm2 textarea:-ms-input-placeholder,
.custom-form span.customSelect:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect:-ms-input-placeholder,
.page-contact .contact-form form span.customSelect:-ms-input-placeholder,
#economyModal form span.customSelect:-ms-input-placeholder,
.property-form #requestInfoForm span.customSelect:-ms-input-placeholder,
#newsletterForm2 span.customSelect:-ms-input-placeholder,
.custom-form input[type=text]:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text]:-ms-input-placeholder,
.page-contact .contact-form form input[type=text]:-ms-input-placeholder,
#economyModal form input[type=text]:-ms-input-placeholder,
.property-form #requestInfoForm input[type=text]:-ms-input-placeholder,
#newsletterForm2 input[type=text]:-ms-input-placeholder,
.custom-form input[type=password]:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password]:-ms-input-placeholder,
.page-contact .contact-form form input[type=password]:-ms-input-placeholder,
#economyModal form input[type=password]:-ms-input-placeholder,
.property-form #requestInfoForm input[type=password]:-ms-input-placeholder,
#newsletterForm2 input[type=password]:-ms-input-placeholder,
.custom-form .form-select:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select:-ms-input-placeholder,
.page-contact .contact-form form .form-select:-ms-input-placeholder,
#economyModal form .form-select:-ms-input-placeholder,
.property-form #requestInfoForm .form-select:-ms-input-placeholder,
#newsletterForm2 .form-select:-ms-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple:-ms-input-placeholder,
.custom-form .select2-container-multi .select2-choices:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices:-ms-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices:-ms-input-placeholder,
#economyModal form .select2-container-multi .select2-choices:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices:-ms-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices:-ms-input-placeholder,
.custom-form .select2-container .select2-choice:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice:-ms-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice:-ms-input-placeholder,
#economyModal form .select2-container .select2-choice:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice:-ms-input-placeholder,
#newsletterForm2 .select2-container .select2-choice:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #181a19;
}
.custom-form textarea::-ms-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea::-ms-input-placeholder, .page-contact .contact-form form textarea::-ms-input-placeholder, #economyModal form textarea::-ms-input-placeholder, .property-form #requestInfoForm textarea::-ms-input-placeholder, #newsletterForm2 textarea::-ms-input-placeholder,
.custom-form span.customSelect::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect::-ms-input-placeholder,
.page-contact .contact-form form span.customSelect::-ms-input-placeholder,
#economyModal form span.customSelect::-ms-input-placeholder,
.property-form #requestInfoForm span.customSelect::-ms-input-placeholder,
#newsletterForm2 span.customSelect::-ms-input-placeholder,
.custom-form input[type=text]::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text]::-ms-input-placeholder,
.page-contact .contact-form form input[type=text]::-ms-input-placeholder,
#economyModal form input[type=text]::-ms-input-placeholder,
.property-form #requestInfoForm input[type=text]::-ms-input-placeholder,
#newsletterForm2 input[type=text]::-ms-input-placeholder,
.custom-form input[type=password]::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password]::-ms-input-placeholder,
.page-contact .contact-form form input[type=password]::-ms-input-placeholder,
#economyModal form input[type=password]::-ms-input-placeholder,
.property-form #requestInfoForm input[type=password]::-ms-input-placeholder,
#newsletterForm2 input[type=password]::-ms-input-placeholder,
.custom-form .form-select::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select::-ms-input-placeholder,
.page-contact .contact-form form .form-select::-ms-input-placeholder,
#economyModal form .form-select::-ms-input-placeholder,
.property-form #requestInfoForm .form-select::-ms-input-placeholder,
#newsletterForm2 .form-select::-ms-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple::-ms-input-placeholder,
.custom-form .select2-container-multi .select2-choices::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices::-ms-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices::-ms-input-placeholder,
#economyModal form .select2-container-multi .select2-choices::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices::-ms-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices::-ms-input-placeholder,
.custom-form .select2-container .select2-choice::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice::-ms-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice::-ms-input-placeholder,
#economyModal form .select2-container .select2-choice::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice::-ms-input-placeholder,
#newsletterForm2 .select2-container .select2-choice::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #181a19;
}
.custom-form textarea.grey::-webkit-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea.grey::-webkit-input-placeholder, .page-contact .contact-form form textarea.grey::-webkit-input-placeholder, #economyModal form textarea.grey::-webkit-input-placeholder, .property-form #requestInfoForm textarea.grey::-webkit-input-placeholder, #newsletterForm2 textarea.grey::-webkit-input-placeholder,
.custom-form span.customSelect.grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect.grey::-webkit-input-placeholder,
.page-contact .contact-form form span.customSelect.grey::-webkit-input-placeholder,
#economyModal form span.customSelect.grey::-webkit-input-placeholder,
.property-form #requestInfoForm span.customSelect.grey::-webkit-input-placeholder,
#newsletterForm2 span.customSelect.grey::-webkit-input-placeholder,
.custom-form input[type=text].grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text].grey::-webkit-input-placeholder,
.page-contact .contact-form form input[type=text].grey::-webkit-input-placeholder,
#economyModal form input[type=text].grey::-webkit-input-placeholder,
.property-form #requestInfoForm input[type=text].grey::-webkit-input-placeholder,
#newsletterForm2 input[type=text].grey::-webkit-input-placeholder,
.custom-form input[type=password].grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password].grey::-webkit-input-placeholder,
.page-contact .contact-form form input[type=password].grey::-webkit-input-placeholder,
#economyModal form input[type=password].grey::-webkit-input-placeholder,
.property-form #requestInfoForm input[type=password].grey::-webkit-input-placeholder,
#newsletterForm2 input[type=password].grey::-webkit-input-placeholder,
.custom-form .form-select.grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select.grey::-webkit-input-placeholder,
.page-contact .contact-form form .form-select.grey::-webkit-input-placeholder,
#economyModal form .form-select.grey::-webkit-input-placeholder,
.property-form #requestInfoForm .form-select.grey::-webkit-input-placeholder,
#newsletterForm2 .form-select.grey::-webkit-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple.grey::-webkit-input-placeholder,
.custom-form .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
#economyModal form .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices.grey::-webkit-input-placeholder,
.custom-form .select2-container .select2-choice.grey::-webkit-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice.grey::-webkit-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice.grey::-webkit-input-placeholder,
#economyModal form .select2-container .select2-choice.grey::-webkit-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice.grey::-webkit-input-placeholder,
#newsletterForm2 .select2-container .select2-choice.grey::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #9797a3;
}
.custom-form textarea.grey:-moz-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea.grey:-moz-placeholder, .page-contact .contact-form form textarea.grey:-moz-placeholder, #economyModal form textarea.grey:-moz-placeholder, .property-form #requestInfoForm textarea.grey:-moz-placeholder, #newsletterForm2 textarea.grey:-moz-placeholder,
.custom-form span.customSelect.grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect.grey:-moz-placeholder,
.page-contact .contact-form form span.customSelect.grey:-moz-placeholder,
#economyModal form span.customSelect.grey:-moz-placeholder,
.property-form #requestInfoForm span.customSelect.grey:-moz-placeholder,
#newsletterForm2 span.customSelect.grey:-moz-placeholder,
.custom-form input[type=text].grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text].grey:-moz-placeholder,
.page-contact .contact-form form input[type=text].grey:-moz-placeholder,
#economyModal form input[type=text].grey:-moz-placeholder,
.property-form #requestInfoForm input[type=text].grey:-moz-placeholder,
#newsletterForm2 input[type=text].grey:-moz-placeholder,
.custom-form input[type=password].grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password].grey:-moz-placeholder,
.page-contact .contact-form form input[type=password].grey:-moz-placeholder,
#economyModal form input[type=password].grey:-moz-placeholder,
.property-form #requestInfoForm input[type=password].grey:-moz-placeholder,
#newsletterForm2 input[type=password].grey:-moz-placeholder,
.custom-form .form-select.grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select.grey:-moz-placeholder,
.page-contact .contact-form form .form-select.grey:-moz-placeholder,
#economyModal form .form-select.grey:-moz-placeholder,
.property-form #requestInfoForm .form-select.grey:-moz-placeholder,
#newsletterForm2 .form-select.grey:-moz-placeholder,
.custom-form .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple.grey:-moz-placeholder,
.custom-form .select2-container-multi .select2-choices.grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices.grey:-moz-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices.grey:-moz-placeholder,
#economyModal form .select2-container-multi .select2-choices.grey:-moz-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices.grey:-moz-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices.grey:-moz-placeholder,
.custom-form .select2-container .select2-choice.grey:-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice.grey:-moz-placeholder,
.page-contact .contact-form form .select2-container .select2-choice.grey:-moz-placeholder,
#economyModal form .select2-container .select2-choice.grey:-moz-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice.grey:-moz-placeholder,
#newsletterForm2 .select2-container .select2-choice.grey:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #9797a3;
}
.custom-form textarea.grey::-moz-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea.grey::-moz-placeholder, .page-contact .contact-form form textarea.grey::-moz-placeholder, #economyModal form textarea.grey::-moz-placeholder, .property-form #requestInfoForm textarea.grey::-moz-placeholder, #newsletterForm2 textarea.grey::-moz-placeholder,
.custom-form span.customSelect.grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect.grey::-moz-placeholder,
.page-contact .contact-form form span.customSelect.grey::-moz-placeholder,
#economyModal form span.customSelect.grey::-moz-placeholder,
.property-form #requestInfoForm span.customSelect.grey::-moz-placeholder,
#newsletterForm2 span.customSelect.grey::-moz-placeholder,
.custom-form input[type=text].grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text].grey::-moz-placeholder,
.page-contact .contact-form form input[type=text].grey::-moz-placeholder,
#economyModal form input[type=text].grey::-moz-placeholder,
.property-form #requestInfoForm input[type=text].grey::-moz-placeholder,
#newsletterForm2 input[type=text].grey::-moz-placeholder,
.custom-form input[type=password].grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password].grey::-moz-placeholder,
.page-contact .contact-form form input[type=password].grey::-moz-placeholder,
#economyModal form input[type=password].grey::-moz-placeholder,
.property-form #requestInfoForm input[type=password].grey::-moz-placeholder,
#newsletterForm2 input[type=password].grey::-moz-placeholder,
.custom-form .form-select.grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select.grey::-moz-placeholder,
.page-contact .contact-form form .form-select.grey::-moz-placeholder,
#economyModal form .form-select.grey::-moz-placeholder,
.property-form #requestInfoForm .form-select.grey::-moz-placeholder,
#newsletterForm2 .form-select.grey::-moz-placeholder,
.custom-form .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple.grey::-moz-placeholder,
.custom-form .select2-container-multi .select2-choices.grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices.grey::-moz-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices.grey::-moz-placeholder,
#economyModal form .select2-container-multi .select2-choices.grey::-moz-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices.grey::-moz-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices.grey::-moz-placeholder,
.custom-form .select2-container .select2-choice.grey::-moz-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice.grey::-moz-placeholder,
.page-contact .contact-form form .select2-container .select2-choice.grey::-moz-placeholder,
#economyModal form .select2-container .select2-choice.grey::-moz-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice.grey::-moz-placeholder,
#newsletterForm2 .select2-container .select2-choice.grey::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9797a3;
}
.custom-form textarea.grey:-ms-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea.grey:-ms-input-placeholder, .page-contact .contact-form form textarea.grey:-ms-input-placeholder, #economyModal form textarea.grey:-ms-input-placeholder, .property-form #requestInfoForm textarea.grey:-ms-input-placeholder, #newsletterForm2 textarea.grey:-ms-input-placeholder,
.custom-form span.customSelect.grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect.grey:-ms-input-placeholder,
.page-contact .contact-form form span.customSelect.grey:-ms-input-placeholder,
#economyModal form span.customSelect.grey:-ms-input-placeholder,
.property-form #requestInfoForm span.customSelect.grey:-ms-input-placeholder,
#newsletterForm2 span.customSelect.grey:-ms-input-placeholder,
.custom-form input[type=text].grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text].grey:-ms-input-placeholder,
.page-contact .contact-form form input[type=text].grey:-ms-input-placeholder,
#economyModal form input[type=text].grey:-ms-input-placeholder,
.property-form #requestInfoForm input[type=text].grey:-ms-input-placeholder,
#newsletterForm2 input[type=text].grey:-ms-input-placeholder,
.custom-form input[type=password].grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password].grey:-ms-input-placeholder,
.page-contact .contact-form form input[type=password].grey:-ms-input-placeholder,
#economyModal form input[type=password].grey:-ms-input-placeholder,
.property-form #requestInfoForm input[type=password].grey:-ms-input-placeholder,
#newsletterForm2 input[type=password].grey:-ms-input-placeholder,
.custom-form .form-select.grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select.grey:-ms-input-placeholder,
.page-contact .contact-form form .form-select.grey:-ms-input-placeholder,
#economyModal form .form-select.grey:-ms-input-placeholder,
.property-form #requestInfoForm .form-select.grey:-ms-input-placeholder,
#newsletterForm2 .form-select.grey:-ms-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple.grey:-ms-input-placeholder,
.custom-form .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
#economyModal form .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices.grey:-ms-input-placeholder,
.custom-form .select2-container .select2-choice.grey:-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice.grey:-ms-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice.grey:-ms-input-placeholder,
#economyModal form .select2-container .select2-choice.grey:-ms-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice.grey:-ms-input-placeholder,
#newsletterForm2 .select2-container .select2-choice.grey:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9797a3;
}
.custom-form textarea.grey::-ms-input-placeholder, .modal:not(#galleryModal):not(#economyModal) form textarea.grey::-ms-input-placeholder, .page-contact .contact-form form textarea.grey::-ms-input-placeholder, #economyModal form textarea.grey::-ms-input-placeholder, .property-form #requestInfoForm textarea.grey::-ms-input-placeholder, #newsletterForm2 textarea.grey::-ms-input-placeholder,
.custom-form span.customSelect.grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect.grey::-ms-input-placeholder,
.page-contact .contact-form form span.customSelect.grey::-ms-input-placeholder,
#economyModal form span.customSelect.grey::-ms-input-placeholder,
.property-form #requestInfoForm span.customSelect.grey::-ms-input-placeholder,
#newsletterForm2 span.customSelect.grey::-ms-input-placeholder,
.custom-form input[type=text].grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=text].grey::-ms-input-placeholder,
.page-contact .contact-form form input[type=text].grey::-ms-input-placeholder,
#economyModal form input[type=text].grey::-ms-input-placeholder,
.property-form #requestInfoForm input[type=text].grey::-ms-input-placeholder,
#newsletterForm2 input[type=text].grey::-ms-input-placeholder,
.custom-form input[type=password].grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form input[type=password].grey::-ms-input-placeholder,
.page-contact .contact-form form input[type=password].grey::-ms-input-placeholder,
#economyModal form input[type=password].grey::-ms-input-placeholder,
.property-form #requestInfoForm input[type=password].grey::-ms-input-placeholder,
#newsletterForm2 input[type=password].grey::-ms-input-placeholder,
.custom-form .form-select.grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .form-select.grey::-ms-input-placeholder,
.page-contact .contact-form form .form-select.grey::-ms-input-placeholder,
#economyModal form .form-select.grey::-ms-input-placeholder,
.property-form #requestInfoForm .form-select.grey::-ms-input-placeholder,
#newsletterForm2 .form-select.grey::-ms-input-placeholder,
.custom-form .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
#economyModal form .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
#newsletterForm2 .select2-container--default .select2-selection--multiple.grey::-ms-input-placeholder,
.custom-form .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
.page-contact .contact-form form .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
#economyModal form .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
#newsletterForm2 .select2-container-multi .select2-choices.grey::-ms-input-placeholder,
.custom-form .select2-container .select2-choice.grey::-ms-input-placeholder,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice.grey::-ms-input-placeholder,
.page-contact .contact-form form .select2-container .select2-choice.grey::-ms-input-placeholder,
#economyModal form .select2-container .select2-choice.grey::-ms-input-placeholder,
.property-form #requestInfoForm .select2-container .select2-choice.grey::-ms-input-placeholder,
#newsletterForm2 .select2-container .select2-choice.grey::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9797a3;
}
.custom-form textarea .select2-arrow, .modal:not(#galleryModal):not(#economyModal) form textarea .select2-arrow, .page-contact .contact-form form textarea .select2-arrow, #economyModal form textarea .select2-arrow, .property-form #requestInfoForm textarea .select2-arrow, #newsletterForm2 textarea .select2-arrow,
.custom-form span.customSelect .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect .select2-arrow,
.page-contact .contact-form form span.customSelect .select2-arrow,
#economyModal form span.customSelect .select2-arrow,
.property-form #requestInfoForm span.customSelect .select2-arrow,
#newsletterForm2 span.customSelect .select2-arrow,
.custom-form input[type=text] .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form input[type=text] .select2-arrow,
.page-contact .contact-form form input[type=text] .select2-arrow,
#economyModal form input[type=text] .select2-arrow,
.property-form #requestInfoForm input[type=text] .select2-arrow,
#newsletterForm2 input[type=text] .select2-arrow,
.custom-form input[type=password] .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form input[type=password] .select2-arrow,
.page-contact .contact-form form input[type=password] .select2-arrow,
#economyModal form input[type=password] .select2-arrow,
.property-form #requestInfoForm input[type=password] .select2-arrow,
#newsletterForm2 input[type=password] .select2-arrow,
.custom-form .form-select .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form .form-select .select2-arrow,
.page-contact .contact-form form .form-select .select2-arrow,
#economyModal form .form-select .select2-arrow,
.property-form #requestInfoForm .form-select .select2-arrow,
#newsletterForm2 .form-select .select2-arrow,
.custom-form .select2-container--default .select2-selection--multiple .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple .select2-arrow,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple .select2-arrow,
#economyModal form .select2-container--default .select2-selection--multiple .select2-arrow,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple .select2-arrow,
#newsletterForm2 .select2-container--default .select2-selection--multiple .select2-arrow,
.custom-form .select2-container-multi .select2-choices .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices .select2-arrow,
.page-contact .contact-form form .select2-container-multi .select2-choices .select2-arrow,
#economyModal form .select2-container-multi .select2-choices .select2-arrow,
.property-form #requestInfoForm .select2-container-multi .select2-choices .select2-arrow,
#newsletterForm2 .select2-container-multi .select2-choices .select2-arrow,
.custom-form .select2-container .select2-choice .select2-arrow,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice .select2-arrow,
.page-contact .contact-form form .select2-container .select2-choice .select2-arrow,
#economyModal form .select2-container .select2-choice .select2-arrow,
.property-form #requestInfoForm .select2-container .select2-choice .select2-arrow,
#newsletterForm2 .select2-container .select2-choice .select2-arrow {
  background-color: transparent;
}
.custom-form textarea .select2-arrow b, .modal:not(#galleryModal):not(#economyModal) form textarea .select2-arrow b, .page-contact .contact-form form textarea .select2-arrow b, #economyModal form textarea .select2-arrow b, .property-form #requestInfoForm textarea .select2-arrow b, #newsletterForm2 textarea .select2-arrow b,
.custom-form span.customSelect .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect .select2-arrow b,
.page-contact .contact-form form span.customSelect .select2-arrow b,
#economyModal form span.customSelect .select2-arrow b,
.property-form #requestInfoForm span.customSelect .select2-arrow b,
#newsletterForm2 span.customSelect .select2-arrow b,
.custom-form input[type=text] .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form input[type=text] .select2-arrow b,
.page-contact .contact-form form input[type=text] .select2-arrow b,
#economyModal form input[type=text] .select2-arrow b,
.property-form #requestInfoForm input[type=text] .select2-arrow b,
#newsletterForm2 input[type=text] .select2-arrow b,
.custom-form input[type=password] .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form input[type=password] .select2-arrow b,
.page-contact .contact-form form input[type=password] .select2-arrow b,
#economyModal form input[type=password] .select2-arrow b,
.property-form #requestInfoForm input[type=password] .select2-arrow b,
#newsletterForm2 input[type=password] .select2-arrow b,
.custom-form .form-select .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form .form-select .select2-arrow b,
.page-contact .contact-form form .form-select .select2-arrow b,
#economyModal form .form-select .select2-arrow b,
.property-form #requestInfoForm .form-select .select2-arrow b,
#newsletterForm2 .form-select .select2-arrow b,
.custom-form .select2-container--default .select2-selection--multiple .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple .select2-arrow b,
.page-contact .contact-form form .select2-container--default .select2-selection--multiple .select2-arrow b,
#economyModal form .select2-container--default .select2-selection--multiple .select2-arrow b,
.property-form #requestInfoForm .select2-container--default .select2-selection--multiple .select2-arrow b,
#newsletterForm2 .select2-container--default .select2-selection--multiple .select2-arrow b,
.custom-form .select2-container-multi .select2-choices .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices .select2-arrow b,
.page-contact .contact-form form .select2-container-multi .select2-choices .select2-arrow b,
#economyModal form .select2-container-multi .select2-choices .select2-arrow b,
.property-form #requestInfoForm .select2-container-multi .select2-choices .select2-arrow b,
#newsletterForm2 .select2-container-multi .select2-choices .select2-arrow b,
.custom-form .select2-container .select2-choice .select2-arrow b,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice .select2-arrow b,
.page-contact .contact-form form .select2-container .select2-choice .select2-arrow b,
#economyModal form .select2-container .select2-choice .select2-arrow b,
.property-form #requestInfoForm .select2-container .select2-choice .select2-arrow b,
#newsletterForm2 .select2-container .select2-choice .select2-arrow b {
  background-color: transparent;
}
.custom-form.custom-form-small textarea, .modal:not(#galleryModal):not(#economyModal) form.custom-form-small textarea, .page-contact .contact-form form.custom-form-small textarea, #economyModal form.custom-form-small textarea, .property-form .custom-form-small#requestInfoForm textarea, .custom-form-small#newsletterForm2 textarea,
.custom-form.custom-form-small span.customSelect,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small span.customSelect,
.page-contact .contact-form form.custom-form-small span.customSelect,
#economyModal form.custom-form-small span.customSelect,
.property-form .custom-form-small#requestInfoForm span.customSelect,
.custom-form-small#newsletterForm2 span.customSelect,
.custom-form.custom-form-small input[type=text],
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small input[type=text],
.page-contact .contact-form form.custom-form-small input[type=text],
#economyModal form.custom-form-small input[type=text],
.property-form .custom-form-small#requestInfoForm input[type=text],
.custom-form-small#newsletterForm2 input[type=text],
.custom-form.custom-form-small input[type=password],
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small input[type=password],
.page-contact .contact-form form.custom-form-small input[type=password],
#economyModal form.custom-form-small input[type=password],
.property-form .custom-form-small#requestInfoForm input[type=password],
.custom-form-small#newsletterForm2 input[type=password],
.custom-form.custom-form-small .form-select,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small .form-select,
.page-contact .contact-form form.custom-form-small .form-select,
#economyModal form.custom-form-small .form-select,
.property-form .custom-form-small#requestInfoForm .form-select,
.custom-form-small#newsletterForm2 .form-select,
.custom-form.custom-form-small .select2-container--default .select2-selection--multiple,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small .select2-container--default .select2-selection--multiple,
.page-contact .contact-form form.custom-form-small .select2-container--default .select2-selection--multiple,
#economyModal form.custom-form-small .select2-container--default .select2-selection--multiple,
.property-form .custom-form-small#requestInfoForm .select2-container--default .select2-selection--multiple,
.custom-form-small#newsletterForm2 .select2-container--default .select2-selection--multiple,
.custom-form.custom-form-small .select2-container-multi .select2-choices,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small .select2-container-multi .select2-choices,
.page-contact .contact-form form.custom-form-small .select2-container-multi .select2-choices,
#economyModal form.custom-form-small .select2-container-multi .select2-choices,
.property-form .custom-form-small#requestInfoForm .select2-container-multi .select2-choices,
.custom-form-small#newsletterForm2 .select2-container-multi .select2-choices,
.custom-form.custom-form-small .select2-container .select2-choice,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-small .select2-container .select2-choice,
.page-contact .contact-form form.custom-form-small .select2-container .select2-choice,
#economyModal form.custom-form-small .select2-container .select2-choice,
.property-form .custom-form-small#requestInfoForm .select2-container .select2-choice,
.custom-form-small#newsletterForm2 .select2-container .select2-choice {
  min-height: 50px;
  font-size: 14px;
  letter-spacing: 0.25px;
  padding-left: 15px;
}
.custom-form textarea, .modal:not(#galleryModal):not(#economyModal) form textarea, .page-contact .contact-form form textarea, #economyModal form textarea, .property-form #requestInfoForm textarea, #newsletterForm2 textarea {
  padding-top: 15px;
}
.custom-form .checkcontainer, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer, .page-contact .contact-form form .checkcontainer, #economyModal form .checkcontainer, .property-form #requestInfoForm .checkcontainer, #newsletterForm2 .checkcontainer {
  min-width: 95%;
  display: block;
  margin-top: 4px;
  position: relative;
  cursor: pointer;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.custom-form .checkcontainer input, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer input, .page-contact .contact-form form .checkcontainer input, #economyModal form .checkcontainer input, .property-form #requestInfoForm .checkcontainer input, #newsletterForm2 .checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-form .checkcontainer .checkmark, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark, .page-contact .contact-form form .checkcontainer .checkmark, #economyModal form .checkcontainer .checkmark, .property-form #requestInfoForm .checkcontainer .checkmark, #newsletterForm2 .checkcontainer .checkmark {
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}
.custom-form .checkcontainer:hover input ~ .checkmark, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer:hover input ~ .checkmark, .page-contact .contact-form form .checkcontainer:hover input ~ .checkmark, #economyModal form .checkcontainer:hover input ~ .checkmark, .property-form #requestInfoForm .checkcontainer:hover input ~ .checkmark, #newsletterForm2 .checkcontainer:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.6);
}
.custom-form .checkcontainer input:checked ~ .checkmark, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer input:checked ~ .checkmark, .page-contact .contact-form form .checkcontainer input:checked ~ .checkmark, #economyModal form .checkcontainer input:checked ~ .checkmark, .property-form #requestInfoForm .checkcontainer input:checked ~ .checkmark, #newsletterForm2 .checkcontainer input:checked ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.3);
}
.custom-form .checkcontainer .checkmark:after, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark:after, .page-contact .contact-form form .checkcontainer .checkmark:after, #economyModal form .checkcontainer .checkmark:after, .property-form #requestInfoForm .checkcontainer .checkmark:after, #newsletterForm2 .checkcontainer .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-form .checkcontainer input:checked ~ .checkmark:after, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer input:checked ~ .checkmark:after, .page-contact .contact-form form .checkcontainer input:checked ~ .checkmark:after, #economyModal form .checkcontainer input:checked ~ .checkmark:after, .property-form #requestInfoForm .checkcontainer input:checked ~ .checkmark:after, #newsletterForm2 .checkcontainer input:checked ~ .checkmark:after {
  display: block;
}
.custom-form .checkcontainer .checkmark:after, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark:after, .page-contact .contact-form form .checkcontainer .checkmark:after, #economyModal form .checkcontainer .checkmark:after, .property-form #requestInfoForm .checkcontainer .checkmark:after, #newsletterForm2 .checkcontainer .checkmark:after {
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: all ease-in-out 0.3s;
}
.custom-form .checkcontainer, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer, .page-contact .contact-form form .checkcontainer, #economyModal form .checkcontainer, .property-form #requestInfoForm .checkcontainer, #newsletterForm2 .checkcontainer {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: white;
  letter-spacing: normal;
  text-transform: none;
  padding-left: calc(15px + 23px);
}
.custom-form .checkcontainer a, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer a, .page-contact .contact-form form .checkcontainer a, #economyModal form .checkcontainer a, .property-form #requestInfoForm .checkcontainer a, #newsletterForm2 .checkcontainer a {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
}
.custom-form .checkcontainer a:hover, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer a:hover, .page-contact .contact-form form .checkcontainer a:hover, #economyModal form .checkcontainer a:hover, .property-form #requestInfoForm .checkcontainer a:hover, #newsletterForm2 .checkcontainer a:hover {
  text-decoration: underline;
}
.custom-form .checkcontainer .checkmark, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark, .page-contact .contact-form form .checkcontainer .checkmark, #economyModal form .checkcontainer .checkmark, .property-form #requestInfoForm .checkcontainer .checkmark, #newsletterForm2 .checkcontainer .checkmark {
  background-color: transparent;
  border: 1px solid #c19046;
  height: 23px;
  width: 23px;
  border-radius: 50%;
  transition: all ease-in-out 0.3s;
}
.custom-form .checkcontainer .checkmark:hover, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark:hover, .page-contact .contact-form form .checkcontainer .checkmark:hover, #economyModal form .checkcontainer .checkmark:hover, .property-form #requestInfoForm .checkcontainer .checkmark:hover, #newsletterForm2 .checkcontainer .checkmark:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.custom-form .checkcontainer .checkmark:after, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer .checkmark:after, .page-contact .contact-form form .checkcontainer .checkmark:after, #economyModal form .checkcontainer .checkmark:after, .property-form #requestInfoForm .checkcontainer .checkmark:after, #newsletterForm2 .checkcontainer .checkmark:after {
  border-color: white;
  left: calc(12px - 4px);
  top: calc((12px - 4px) / 2);
  width: calc(12px / 2.5);
  height: 12px;
}
.custom-form .checkcontainer input:checked ~ .checkmark, .modal:not(#galleryModal):not(#economyModal) form .checkcontainer input:checked ~ .checkmark, .page-contact .contact-form form .checkcontainer input:checked ~ .checkmark, #economyModal form .checkcontainer input:checked ~ .checkmark, .property-form #requestInfoForm .checkcontainer input:checked ~ .checkmark, #newsletterForm2 .checkcontainer input:checked ~ .checkmark {
  background-color: #c19046;
  border: 1px solid #c19046;
}
.custom-form .gdpr, .modal:not(#galleryModal):not(#economyModal) form .gdpr, .page-contact .contact-form form .gdpr, #economyModal form .gdpr, .property-form #requestInfoForm .gdpr, #newsletterForm2 .gdpr {
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  color: #000000;
  letter-spacing: normal;
  height: 45px;
  overflow-x: hidden;
  overflow-y: auto;
}
.custom-form .opacity-25, .modal:not(#galleryModal):not(#economyModal) form .opacity-25, .page-contact .contact-form form .opacity-25, #economyModal form .opacity-25, .property-form #requestInfoForm .opacity-25, #newsletterForm2 .opacity-25 {
  opacity: 0.25;
}
.custom-form.custom-form-white .checkcontainer, .modal:not(#galleryModal):not(#economyModal) form.custom-form-white .checkcontainer, .page-contact .contact-form form.custom-form-white .checkcontainer, #economyModal form.custom-form-white .checkcontainer, .property-form #requestInfoForm .checkcontainer, .custom-form-white#newsletterForm2 .checkcontainer,
.custom-form.custom-form-white .gdpr,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-white .gdpr,
.page-contact .contact-form form.custom-form-white .gdpr,
#economyModal form.custom-form-white .gdpr,
.property-form #requestInfoForm .gdpr,
.custom-form-white#newsletterForm2 .gdpr {
  color: #e6e1f1;
}
.custom-form.custom-form-white .checkcontainer a, .modal:not(#galleryModal):not(#economyModal) form.custom-form-white .checkcontainer a, .page-contact .contact-form form.custom-form-white .checkcontainer a, #economyModal form.custom-form-white .checkcontainer a, .property-form #requestInfoForm .checkcontainer a, .custom-form-white#newsletterForm2 .checkcontainer a,
.custom-form.custom-form-white .gdpr a,
.modal:not(#galleryModal):not(#economyModal) form.custom-form-white .gdpr a,
.page-contact .contact-form form.custom-form-white .gdpr a,
#economyModal form.custom-form-white .gdpr a,
.property-form #requestInfoForm .gdpr a,
.custom-form-white#newsletterForm2 .gdpr a {
  color: #e6e1f1;
}

.custom-drop-down, #footer ul li .dropdown-menu, .main-header #main-nav li .dropdown-menu, .idiomas-dropdown .dropdown-menu {
  background-color: #000000;
  box-shadow: none;
  border: 0;
  border-radius: 0px;
  inset: 10px auto auto 0px !important;
  line-height: 30px;
  padding: 0px;
}
.custom-drop-down li.dropdown-item, #footer ul li .dropdown-menu li.dropdown-item, .main-header #main-nav li .dropdown-menu li.dropdown-item, .idiomas-dropdown .dropdown-menu li.dropdown-item {
  transition: all ease-in-out 0.3s;
  padding: 0.5rem 3rem 0.5rem 1rem;
  border: 0rem solid transparent;
  background-color: #000000;
  border-radius: 0px;
  font-size: 12px;
}
.custom-drop-down li.dropdown-item:not(:last-child), #footer ul li .dropdown-menu li.dropdown-item:not(:last-child), .main-header #main-nav li .dropdown-menu li.dropdown-item:not(:last-child), .idiomas-dropdown .dropdown-menu li.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(242, 242, 242, 0.1);
}
.custom-drop-down li.dropdown-item a, #footer ul li .dropdown-menu li.dropdown-item a, .main-header #main-nav li .dropdown-menu li.dropdown-item a, .idiomas-dropdown .dropdown-menu li.dropdown-item a {
  transition: all ease-in-out 0.3s;
  padding: 0;
  box-shadow: none;
  border: 0;
  display: inline-block;
  width: 100%;
  color: #ffffff;
}
.custom-drop-down li.dropdown-item:hover a, #footer ul li .dropdown-menu li.dropdown-item:hover a, .main-header #main-nav li .dropdown-menu li.dropdown-item:hover a, .idiomas-dropdown .dropdown-menu li.dropdown-item:hover a {
  color: #c19046;
  background-color: transparent;
}

.slides-custom .slides .slick-next, .property-slider-center .slides .slick-next, .property-gallery .property-gal .slides .slick-next, .property-list-box .slides .slick-next,
.slides-custom .slides .slick-prev,
.property-slider-center .slides .slick-prev,
.property-gallery .property-gal .slides .slick-prev,
.property-list-box .slides .slick-prev {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 60px;
  opacity: 0.8;
  height: 100%;
  background: none;
  transition: background 0.4s;
  transform: none;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .slides-custom .slides .slick-next, .property-slider-center .slides .slick-next, .property-gallery .property-gal .slides .slick-next, .property-list-box .slides .slick-next,
  .slides-custom .slides .slick-prev,
  .property-slider-center .slides .slick-prev,
  .property-gallery .property-gal .slides .slick-prev,
  .property-list-box .slides .slick-prev {
    width: 50px;
  }
}
.slides-custom .slides .slick-next:hover::before, .property-slider-center .slides .slick-next:hover::before, .property-gallery .property-gal .slides .slick-next:hover::before, .property-list-box .slides .slick-next:hover::before,
.slides-custom .slides .slick-prev:hover::before,
.property-slider-center .slides .slick-prev:hover::before,
.property-gallery .property-gal .slides .slick-prev:hover::before,
.property-list-box .slides .slick-prev:hover::before {
  opacity: 0.7;
}
.slides-custom .slides .slick-next::before, .property-slider-center .slides .slick-next::before, .property-gallery .property-gal .slides .slick-next::before, .property-list-box .slides .slick-next::before,
.slides-custom .slides .slick-prev::before,
.property-slider-center .slides .slick-prev::before,
.property-gallery .property-gal .slides .slick-prev::before,
.property-list-box .slides .slick-prev::before {
  content: url(/media/images/website/properties/next-dark.svg);
  transform: rotate(180deg);
  background-color: #fff;
  opacity: 1;
  display: inline-block;
  line-height: 32px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.slides-custom .slides .slick-next, .property-slider-center .slides .slick-next, .property-gallery .property-gal .slides .slick-next, .property-list-box .slides .slick-next {
  left: auto;
  right: 0;
}
.slides-custom .slides .slick-next:before, .property-slider-center .slides .slick-next:before, .property-gallery .property-gal .slides .slick-next:before, .property-list-box .slides .slick-next:before {
  transform: rotate(0deg);
}

.slick-dots {
  position: unset;
  flex-wrap: wrap;
  row-gap: 5px;
  -moz-column-gap: 0px;
       column-gap: 0px;
  height: -moz-fit-content;
  height: fit-content;
  display: inline-flex !important;
  align-items: center;
  align-content: flex-end;
  justify-content: center;
  margin: 30px 0 20px;
}
.slick-dots li {
  margin: 0 5px;
  width: 24px;
  height: 24px;
}
.slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #434343;
  padding: 0;
  transition: all ease-in-out 0.3s;
}
.slick-dots li button::before {
  width: 16px;
  height: 16px;
  color: transparent !important;
}
.slick-dots li:hover button {
  color: #c19046;
}
.slick-dots li.slick-active {
  width: 24px;
  height: 24px;
}
.slick-dots li.slick-active button {
  background-color: #000000;
  width: 24px;
  height: 24px;
}
.slick-dots li.slick-active button::before {
  width: 24px;
  height: 24px;
}
@media (max-width: 991.98px) {
  .slick-dots {
    margin-top: 50px 0 20px;
  }
}

.header-sec {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.header-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d1319;
  opacity: 0.15;
  z-index: 2;
}
.header-sec img {
  position: relative;
  z-index: 1;
}
.header-sec .contenido-banner {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-sec .botton-banner {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-20px);
}
@media (max-width: 991.98px) {
  .header-sec .botton-banner img {
    max-width: 50px;
    height: auto;
  }
}

.labels-default, .property-gallery .property-gal .labels, .noticia .marco-foto .date, #featured-properties .slides-item a.property-featured .porta-img .labels,
#ofertas-properties .slides-item a.property-featured .porta-img .labels,
#similares-properties .slides-item a.property-featured .porta-img .labels,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels, .property-list-box .property .porta-img .labels {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .labels-default, .property-gallery .property-gal .labels, .noticia .marco-foto .date, #featured-properties .slides-item a.property-featured .porta-img .labels,
  #ofertas-properties .slides-item a.property-featured .porta-img .labels,
  #similares-properties .slides-item a.property-featured .porta-img .labels,
  #similares-properties-modal .slides-item a.property-featured .porta-img .labels,
  #similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels, .property-list-box .property .porta-img .labels {
    top: 4px;
    left: 5px;
  }
}
.labels-default .badge-default, .labels-default .property-data .badge-pill, .property-data .labels-default .badge-pill, .labels-default .property-data .labels .badge, .property-data .labels .labels-default .badge, .property-gallery .property-gal .labels .badge-default, .property-gallery .property-gal .labels .property-data .badge-pill, .property-data .property-gallery .property-gal .labels .badge-pill, .property-gallery .property-gal .labels .badge, .labels-default .page-new .fecha, .property-gallery .property-gal .labels .page-new .fecha, .page-new .labels-default .fecha, .page-new .property-gallery .property-gal .labels .fecha, .property-gallery .property-gal .page-new .labels .fecha, .labels-default .noticia .marco-foto .date, .property-gallery .property-gal .labels .noticia .marco-foto .date, .noticia .marco-foto .labels-default .date, .noticia .marco-foto .property-gallery .property-gal .labels .date, .property-gallery .property-gal .noticia .marco-foto .labels .date, .noticia .marco-foto .date .badge-default, .noticia .marco-foto .date .property-data .badge-pill, .property-data .noticia .marco-foto .date .badge-pill, .noticia .marco-foto .date .property-data .labels .badge, .property-data .labels .noticia .marco-foto .date .badge, .noticia .marco-foto .date .page-new .fecha, .page-new .noticia .marco-foto .date .fecha, .noticia .marco-foto .date .date, #featured-properties .slides-item a.property-featured .porta-img .labels .badge-default, #featured-properties .slides-item a.property-featured .porta-img .labels .property-data .badge-pill, .property-data #featured-properties .slides-item a.property-featured .porta-img .labels .badge-pill, #featured-properties .slides-item a.property-featured .porta-img .labels .page-new .fecha, .page-new #featured-properties .slides-item a.property-featured .porta-img .labels .fecha, #featured-properties .slides-item a.property-featured .porta-img .labels .noticia .marco-foto .date, .noticia .marco-foto #featured-properties .slides-item a.property-featured .porta-img .labels .date, #featured-properties .slides-item a.property-featured .porta-img .labels .badge,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .badge-default,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .property-data .badge-pill,
.property-data #ofertas-properties .slides-item a.property-featured .porta-img .labels .badge-pill,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .page-new .fecha,
.page-new #ofertas-properties .slides-item a.property-featured .porta-img .labels .fecha,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .noticia .marco-foto .date,
.noticia .marco-foto #ofertas-properties .slides-item a.property-featured .porta-img .labels .date,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties .slides-item a.property-featured .porta-img .labels .badge-default,
#similares-properties .slides-item a.property-featured .porta-img .labels .property-data .badge-pill,
.property-data #similares-properties .slides-item a.property-featured .porta-img .labels .badge-pill,
#similares-properties .slides-item a.property-featured .porta-img .labels .page-new .fecha,
.page-new #similares-properties .slides-item a.property-featured .porta-img .labels .fecha,
#similares-properties .slides-item a.property-featured .porta-img .labels .noticia .marco-foto .date,
.noticia .marco-foto #similares-properties .slides-item a.property-featured .porta-img .labels .date,
#similares-properties .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .badge-default,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .property-data .badge-pill,
.property-data #similares-properties-modal .slides-item a.property-featured .porta-img .labels .badge-pill,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .page-new .fecha,
.page-new #similares-properties-modal .slides-item a.property-featured .porta-img .labels .fecha,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .noticia .marco-foto .date,
.noticia .marco-foto #similares-properties-modal .slides-item a.property-featured .porta-img .labels .date,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .badge-default,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .property-data .badge-pill,
.property-data #similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .badge-pill,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .page-new .fecha,
.page-new #similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .fecha,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .noticia .marco-foto .date,
.noticia .marco-foto #similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .date,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .badge, .property-list-box .property .porta-img .labels .badge-default, .property-list-box .property .porta-img .labels .property-data .badge-pill, .property-data .property-list-box .property .porta-img .labels .badge-pill, .property-list-box .property .porta-img .labels .page-new .fecha, .page-new .property-list-box .property .porta-img .labels .fecha, .property-list-box .property .porta-img .labels .noticia .marco-foto .date, .noticia .marco-foto .property-list-box .property .porta-img .labels .date, .property-list-box .property .porta-img .labels .badge {
  margin-left: 0px;
  margin-right: 5px;
  margin-bottom: 2px;
}

.badge-default, .property-data .badge-pill, .property-data .labels .badge, .property-gallery .property-gal .labels .badge, .page-new .fecha, .noticia .marco-foto .date, #featured-properties .slides-item a.property-featured .porta-img .labels .badge,
#ofertas-properties .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties-modal .slides-item a.property-featured .porta-img .labels .badge,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .badge, .property-list-box .property .porta-img .labels .badge {
  padding: 7px 13px;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 80px;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .badge-default, .property-data .badge-pill, .property-data .labels .badge, .property-gallery .property-gal .labels .badge, .page-new .fecha, .noticia .marco-foto .date, #featured-properties .slides-item a.property-featured .porta-img .labels .badge,
  #ofertas-properties .slides-item a.property-featured .porta-img .labels .badge,
  #similares-properties .slides-item a.property-featured .porta-img .labels .badge,
  #similares-properties-modal .slides-item a.property-featured .porta-img .labels .badge,
  #similares-properties-bajada-modal .slides-item a.property-featured .porta-img .labels .badge, .property-list-box .property .porta-img .labels .badge {
    min-width: 72px;
    padding: 7px 9px;
  }
}

.item-list-property, #featured-properties .slides-item a.property-featured .property-detail,
#ofertas-properties .slides-item a.property-featured .property-detail,
#similares-properties .slides-item a.property-featured .property-detail,
#similares-properties-modal .slides-item a.property-featured .property-detail,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail, .property-list-box .property a.textos .property-detail {
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.item-list-property h3, #featured-properties .slides-item a.property-featured .property-detail h3,
#ofertas-properties .slides-item a.property-featured .property-detail h3,
#similares-properties .slides-item a.property-featured .property-detail h3,
#similares-properties-modal .slides-item a.property-featured .property-detail h3,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail h3, .property-list-box .property a.textos .property-detail h3, .item-list-property .h3, #featured-properties .slides-item a.property-featured .property-detail .h3,
#ofertas-properties .slides-item a.property-featured .property-detail .h3,
#similares-properties .slides-item a.property-featured .property-detail .h3,
#similares-properties-modal .slides-item a.property-featured .property-detail .h3,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .h3, .property-list-box .property a.textos .property-detail .h3 {
  font-size: 29px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
}
@media (max-width: 1279.98px) {
  .item-list-property h3 em, #featured-properties .slides-item a.property-featured .property-detail h3 em,
  #ofertas-properties .slides-item a.property-featured .property-detail h3 em,
  #similares-properties .slides-item a.property-featured .property-detail h3 em,
  #similares-properties-modal .slides-item a.property-featured .property-detail h3 em,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail h3 em, .property-list-box .property a.textos .property-detail h3 em, .item-list-property .h3 em, #featured-properties .slides-item a.property-featured .property-detail .h3 em,
  #ofertas-properties .slides-item a.property-featured .property-detail .h3 em,
  #similares-properties .slides-item a.property-featured .property-detail .h3 em,
  #similares-properties-modal .slides-item a.property-featured .property-detail .h3 em,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .h3 em, .property-list-box .property a.textos .property-detail .h3 em {
    display: block;
  }
}
.item-list-property h4, #featured-properties .slides-item a.property-featured .property-detail h4,
#ofertas-properties .slides-item a.property-featured .property-detail h4,
#similares-properties .slides-item a.property-featured .property-detail h4,
#similares-properties-modal .slides-item a.property-featured .property-detail h4,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail h4, .property-list-box .property a.textos .property-detail h4, .item-list-property .h4, #featured-properties .slides-item a.property-featured .property-detail .h4,
#ofertas-properties .slides-item a.property-featured .property-detail .h4,
#similares-properties .slides-item a.property-featured .property-detail .h4,
#similares-properties-modal .slides-item a.property-featured .property-detail .h4,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .h4, .property-list-box .property a.textos .property-detail .h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.95px;
  color: #c19046;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-list-property h4 em, #featured-properties .slides-item a.property-featured .property-detail h4 em,
#ofertas-properties .slides-item a.property-featured .property-detail h4 em,
#similares-properties .slides-item a.property-featured .property-detail h4 em,
#similares-properties-modal .slides-item a.property-featured .property-detail h4 em,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail h4 em, .property-list-box .property a.textos .property-detail h4 em, .item-list-property .h4 em, #featured-properties .slides-item a.property-featured .property-detail .h4 em,
#ofertas-properties .slides-item a.property-featured .property-detail .h4 em,
#similares-properties .slides-item a.property-featured .property-detail .h4 em,
#similares-properties-modal .slides-item a.property-featured .property-detail .h4 em,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .h4 em, .property-list-box .property a.textos .property-detail .h4 em {
  font-style: normal;
}
@media (max-width: 1279.98px) {
  .item-list-property h4 em, #featured-properties .slides-item a.property-featured .property-detail h4 em,
  #ofertas-properties .slides-item a.property-featured .property-detail h4 em,
  #similares-properties .slides-item a.property-featured .property-detail h4 em,
  #similares-properties-modal .slides-item a.property-featured .property-detail h4 em,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail h4 em, .property-list-box .property a.textos .property-detail h4 em, .item-list-property .h4 em, #featured-properties .slides-item a.property-featured .property-detail .h4 em,
  #ofertas-properties .slides-item a.property-featured .property-detail .h4 em,
  #similares-properties .slides-item a.property-featured .property-detail .h4 em,
  #similares-properties-modal .slides-item a.property-featured .property-detail .h4 em,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .h4 em, .property-list-box .property a.textos .property-detail .h4 em {
    display: block;
  }
}
.item-list-property .icons, #featured-properties .slides-item a.property-featured .property-detail .icons,
#ofertas-properties .slides-item a.property-featured .property-detail .icons,
#similares-properties .slides-item a.property-featured .property-detail .icons,
#similares-properties-modal .slides-item a.property-featured .property-detail .icons,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons, .property-list-box .property a.textos .property-detail .icons {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.45px;
  color: #000000;
  text-align: center;
  margin: 25px 0 35px;
}
@media (max-width: 991.98px) {
  .item-list-property .icons, #featured-properties .slides-item a.property-featured .property-detail .icons,
  #ofertas-properties .slides-item a.property-featured .property-detail .icons,
  #similares-properties .slides-item a.property-featured .property-detail .icons,
  #similares-properties-modal .slides-item a.property-featured .property-detail .icons,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons, .property-list-box .property a.textos .property-detail .icons {
    margin: 15px 0;
  }
}
.item-list-property .icons span, #featured-properties .slides-item a.property-featured .property-detail .icons span,
#ofertas-properties .slides-item a.property-featured .property-detail .icons span,
#similares-properties .slides-item a.property-featured .property-detail .icons span,
#similares-properties-modal .slides-item a.property-featured .property-detail .icons span,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons span, .property-list-box .property a.textos .property-detail .icons span {
  font-weight: 600;
}
.item-list-property .icons strong, #featured-properties .slides-item a.property-featured .property-detail .icons strong,
#ofertas-properties .slides-item a.property-featured .property-detail .icons strong,
#similares-properties .slides-item a.property-featured .property-detail .icons strong,
#similares-properties-modal .slides-item a.property-featured .property-detail .icons strong,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons strong, .property-list-box .property a.textos .property-detail .icons strong {
  font-weight: 400;
}
.item-list-property .icons ul, #featured-properties .slides-item a.property-featured .property-detail .icons ul,
#ofertas-properties .slides-item a.property-featured .property-detail .icons ul,
#similares-properties .slides-item a.property-featured .property-detail .icons ul,
#similares-properties-modal .slides-item a.property-featured .property-detail .icons ul,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons ul, .property-list-box .property a.textos .property-detail .icons ul {
  padding: 0px;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.item-list-property .icons ul li, #featured-properties .slides-item a.property-featured .property-detail .icons ul li,
#ofertas-properties .slides-item a.property-featured .property-detail .icons ul li,
#similares-properties .slides-item a.property-featured .property-detail .icons ul li,
#similares-properties-modal .slides-item a.property-featured .property-detail .icons ul li,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .icons ul li, .property-list-box .property a.textos .property-detail .icons ul li {
  display: inline;
}
.item-list-property .description, #featured-properties .slides-item a.property-featured .property-detail .description,
#ofertas-properties .slides-item a.property-featured .property-detail .description,
#similares-properties .slides-item a.property-featured .property-detail .description,
#similares-properties-modal .slides-item a.property-featured .property-detail .description,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .description, .property-list-box .property a.textos .property-detail .description {
  display: none;
}
.item-list-property .referencia, #featured-properties .slides-item a.property-featured .property-detail .referencia,
#ofertas-properties .slides-item a.property-featured .property-detail .referencia,
#similares-properties .slides-item a.property-featured .property-detail .referencia,
#similares-properties-modal .slides-item a.property-featured .property-detail .referencia,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .referencia, .property-list-box .property a.textos .property-detail .referencia {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  color: #000000;
  text-transform: uppercase;
}
.item-list-property .prices, #featured-properties .slides-item a.property-featured .property-detail .prices,
#ofertas-properties .slides-item a.property-featured .property-detail .prices,
#similares-properties .slides-item a.property-featured .property-detail .prices,
#similares-properties-modal .slides-item a.property-featured .property-detail .prices,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices, .property-list-box .property a.textos .property-detail .prices {
  transition: all ease-in-out 0.3s;
  padding-left: 35px;
  padding-right: unset;
  background-color: #f2f2f2;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
  color: #181a19;
}
.item-list-property .prices span:not(.d-inline-block), #featured-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
#ofertas-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
#similares-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
#similares-properties-modal .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block), .property-list-box .property a.textos .property-detail .prices span:not(.d-inline-block),
.item-list-property .prices del,
#featured-properties .slides-item a.property-featured .property-detail .prices del,
#ofertas-properties .slides-item a.property-featured .property-detail .prices del,
#similares-properties .slides-item a.property-featured .property-detail .prices del,
#similares-properties-modal .slides-item a.property-featured .property-detail .prices del,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices del,
.property-list-box .property a.textos .property-detail .prices del {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.48px;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .item-list-property .prices, #featured-properties .slides-item a.property-featured .property-detail .prices,
  #ofertas-properties .slides-item a.property-featured .property-detail .prices,
  #similares-properties .slides-item a.property-featured .property-detail .prices,
  #similares-properties-modal .slides-item a.property-featured .property-detail .prices,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices, .property-list-box .property a.textos .property-detail .prices {
    padding-left: 15px;
    font-size: 18px;
    letter-spacing: 0.7px;
  }
  .item-list-property .prices span:not(.d-inline-block), #featured-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
  #ofertas-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
  #similares-properties .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
  #similares-properties-modal .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block),
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices span:not(.d-inline-block), .property-list-box .property a.textos .property-detail .prices span:not(.d-inline-block),
  .item-list-property .prices del,
  #featured-properties .slides-item a.property-featured .property-detail .prices del,
  #ofertas-properties .slides-item a.property-featured .property-detail .prices del,
  #similares-properties .slides-item a.property-featured .property-detail .prices del,
  #similares-properties-modal .slides-item a.property-featured .property-detail .prices del,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices del,
  .property-list-box .property a.textos .property-detail .prices del {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
}
.item-list-property .prices i, #featured-properties .slides-item a.property-featured .property-detail .prices i,
#ofertas-properties .slides-item a.property-featured .property-detail .prices i,
#similares-properties .slides-item a.property-featured .property-detail .prices i,
#similares-properties-modal .slides-item a.property-featured .property-detail .prices i,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices i, .property-list-box .property a.textos .property-detail .prices i {
  transition: all ease-in-out 0.3s;
  transform: scale(0);
  opacity: 0;
  color: #181a19 !important;
}
.item-list-property .referencia, #featured-properties .slides-item a.property-featured .property-detail .referencia,
#ofertas-properties .slides-item a.property-featured .property-detail .referencia,
#similares-properties .slides-item a.property-featured .property-detail .referencia,
#similares-properties-modal .slides-item a.property-featured .property-detail .referencia,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .referencia, .property-list-box .property a.textos .property-detail .referencia,
.item-list-property .prices,
#featured-properties .slides-item a.property-featured .property-detail .prices,
#ofertas-properties .slides-item a.property-featured .property-detail .prices,
#similares-properties .slides-item a.property-featured .property-detail .prices,
#similares-properties-modal .slides-item a.property-featured .property-detail .prices,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices,
.property-list-box .property a.textos .property-detail .prices {
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .item-list-property .referencia, #featured-properties .slides-item a.property-featured .property-detail .referencia,
  #ofertas-properties .slides-item a.property-featured .property-detail .referencia,
  #similares-properties .slides-item a.property-featured .property-detail .referencia,
  #similares-properties-modal .slides-item a.property-featured .property-detail .referencia,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .referencia, .property-list-box .property a.textos .property-detail .referencia,
  .item-list-property .prices,
  #featured-properties .slides-item a.property-featured .property-detail .prices,
  #ofertas-properties .slides-item a.property-featured .property-detail .prices,
  #similares-properties .slides-item a.property-featured .property-detail .prices,
  #similares-properties-modal .slides-item a.property-featured .property-detail .prices,
  #similares-properties-bajada-modal .slides-item a.property-featured .property-detail .prices,
  .property-list-box .property a.textos .property-detail .prices {
    gap: 2px;
  }
}
.item-list-property .border-top, #featured-properties .slides-item a.property-featured .property-detail .border-top,
#ofertas-properties .slides-item a.property-featured .property-detail .border-top,
#similares-properties .slides-item a.property-featured .property-detail .border-top,
#similares-properties-modal .slides-item a.property-featured .property-detail .border-top,
#similares-properties-bajada-modal .slides-item a.property-featured .property-detail .border-top, .property-list-box .property a.textos .property-detail .border-top {
  border-top: 1px solid #101820 !important;
}

.fav-default, #featured-properties .slides-item .add-fav,
#featured-properties .slides-item .rem-fav,
#featured-properties .slides-item .add-fav2,
#featured-properties .slides-item .rem-fav2,
#ofertas-properties .slides-item .add-fav,
#ofertas-properties .slides-item .rem-fav,
#ofertas-properties .slides-item .add-fav2,
#ofertas-properties .slides-item .rem-fav2,
#similares-properties .slides-item .add-fav,
#similares-properties .slides-item .rem-fav,
#similares-properties .slides-item .add-fav2,
#similares-properties .slides-item .rem-fav2,
#similares-properties-modal .slides-item .add-fav,
#similares-properties-modal .slides-item .rem-fav,
#similares-properties-modal .slides-item .add-fav2,
#similares-properties-modal .slides-item .rem-fav2,
#similares-properties-bajada-modal .slides-item .add-fav,
#similares-properties-bajada-modal .slides-item .rem-fav,
#similares-properties-bajada-modal .slides-item .add-fav2,
#similares-properties-bajada-modal .slides-item .rem-fav2, .property-list-box .add-fav,
.property-list-box .rem-fav,
.property-list-box .add-fav2,
.property-list-box .rem-fav2 {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 0px;
  min-height: unset;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .fav-default, #featured-properties .slides-item .add-fav,
  #featured-properties .slides-item .rem-fav,
  #featured-properties .slides-item .add-fav2,
  #featured-properties .slides-item .rem-fav2,
  #ofertas-properties .slides-item .add-fav,
  #ofertas-properties .slides-item .rem-fav,
  #ofertas-properties .slides-item .add-fav2,
  #ofertas-properties .slides-item .rem-fav2,
  #similares-properties .slides-item .add-fav,
  #similares-properties .slides-item .rem-fav,
  #similares-properties .slides-item .add-fav2,
  #similares-properties .slides-item .rem-fav2,
  #similares-properties-modal .slides-item .add-fav,
  #similares-properties-modal .slides-item .rem-fav,
  #similares-properties-modal .slides-item .add-fav2,
  #similares-properties-modal .slides-item .rem-fav2,
  #similares-properties-bajada-modal .slides-item .add-fav,
  #similares-properties-bajada-modal .slides-item .rem-fav,
  #similares-properties-bajada-modal .slides-item .add-fav2,
  #similares-properties-bajada-modal .slides-item .rem-fav2, .property-list-box .add-fav,
  .property-list-box .rem-fav,
  .property-list-box .add-fav2,
  .property-list-box .rem-fav2 {
    top: 5px;
    right: 5px;
  }
}

.form-group,
.porta-order,
.porta-num,
.relative {
  position: relative;
}

.porta-order,
.porta-num {
  height: 40px;
  border: none;
  border-radius: 0px;
  border-bottom: 1px solid #c9c9c9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.porta-order .form-control,
.porta-order span.customSelect,
.porta-order span.customSelectInner,
.porta-num .form-control,
.porta-num span.customSelect,
.porta-num span.customSelectInner {
  border: 0 !important;
  border-radius: 0;
  background-color: transparent;
  color: #181a19;
  font-size: 14px;
  font-weight: 400;
}
.porta-order span.customSelectInner,
.porta-num span.customSelectInner {
  padding-left: 14px;
}

.views-properties .btn, .views-properties .property-data .nav-tabs li a, .property-data .nav-tabs li .views-properties a, .views-properties .property-data .btn-collapse-desc, .property-data .views-properties .btn-collapse-desc,
.views-properties .property-data .btn-collapse,
.property-data .views-properties .btn-collapse, .views-properties .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .views-properties .read-more, .views-properties .noticia .text-new .read-more, .noticia .text-new .views-properties .read-more {
  padding: 0 !important;
  width: 45px;
  height: 45px;
  min-height: 45px;
  text-align: center;
  border: 0 !important;
  border-radius: 50%;
  min-height: unset;
}
@media (max-width: 767.98px) {
  .views-properties .btn, .views-properties .property-data .nav-tabs li a, .property-data .nav-tabs li .views-properties a, .views-properties .property-data .btn-collapse-desc, .property-data .views-properties .btn-collapse-desc,
  .views-properties .property-data .btn-collapse,
  .property-data .views-properties .btn-collapse, .views-properties .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .views-properties .read-more, .views-properties .noticia .text-new .read-more, .noticia .text-new .views-properties .read-more {
    border-radius: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.views-properties .btn:hover, .views-properties .property-data .nav-tabs li a:hover, .property-data .nav-tabs li .views-properties a:hover, .views-properties .property-data .btn-collapse-desc:hover, .property-data .views-properties .btn-collapse-desc:hover,
.views-properties .property-data .btn-collapse:hover,
.property-data .views-properties .btn-collapse:hover, .views-properties .page-news .sidebar-news .last-news .noticia .read-more:hover, .page-news .sidebar-news .last-news .noticia .views-properties .read-more:hover, .views-properties .noticia .text-new .read-more:hover, .noticia .text-new .views-properties .read-more:hover {
  z-index: 0 !important;
  background-color: #000000;
}
.views-properties .btn:focus, .views-properties .property-data .nav-tabs li a:focus, .property-data .nav-tabs li .views-properties a:focus, .views-properties .property-data .btn-collapse-desc:focus, .property-data .views-properties .btn-collapse-desc:focus,
.views-properties .property-data .btn-collapse:focus,
.property-data .views-properties .btn-collapse:focus, .views-properties .page-news .sidebar-news .last-news .noticia .read-more:focus, .page-news .sidebar-news .last-news .noticia .views-properties .read-more:focus, .views-properties .noticia .text-new .read-more:focus, .noticia .text-new .views-properties .read-more:focus, .views-properties .btn:active, .views-properties .property-data .nav-tabs li a:active, .property-data .nav-tabs li .views-properties a:active, .views-properties .property-data .btn-collapse-desc:active, .property-data .views-properties .btn-collapse-desc:active,
.views-properties .property-data .btn-collapse:active,
.property-data .views-properties .btn-collapse:active, .views-properties .page-news .sidebar-news .last-news .noticia .read-more:active, .page-news .sidebar-news .last-news .noticia .views-properties .read-more:active, .views-properties .noticia .text-new .read-more:active, .noticia .text-new .views-properties .read-more:active {
  box-shadow: none;
}
.property-list-box {
  padding-top: 1px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 991.98px) {
  .property-list-box {
    margin-bottom: 20px;
  }
}
.property-list-box .property {
  text-decoration: none;
  display: block;
  transition: all ease-in-out 0.3s;
}
.property-list-box .property .porta-img {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 20px;
}
@media (max-width: 991.98px) {
  .property-list-box .property .porta-img {
    margin: 5px;
  }
}
.property-list-box .property .porta-img img {
  width: 100%;
  transition: all ease-in-out 0.3s;
}
.property-list-box .property a.textos {
  text-decoration: none;
}
.property-list-box .property .description {
  display: none;
}
.property-list-box:hover .property a.textos .prices {
  background-color: #c19046;
  color: white;
  padding-left: unset;
}
.property-list-box:hover .property a.textos .prices i {
  transition: all ease-in-out 0.3s;
  transform: scale(1);
  opacity: 1;
}
.property-list-box .slick-arrow {
  border-color: transparent;
}
.property-list-box .loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3) url(/media/images/website/large-loading.gif) no-repeat center center;
}

.btn-props-list {
  display: none;
}

@media (min-width: 768px) {
  .sidebar-content .property-list-list {
    width: 100% !important;
    min-width: 100% !important;
  }
  .sidebar-content .vistas-prop {
    min-width: 100% !important;
  }
}
.sidebar-content-full .property-list-list {
  width: 100% !important;
  min-width: 100% !important;
}
.sidebar-content-full .property-list-list .property-list-box .property .description {
  display: block;
}
.sidebar-content-full .property-list-list .property-list-box .property .property-detail {
  padding-top: 15px;
}
.sidebar-content-full .property-list-list .property-list-box .porta-img {
  padding-left: 0;
}
.sidebar-content-full .property-list-list .property-list-box .textos {
  text-align: left;
}
.sidebar-content-full .property-list-list:nth-child(even) .property-list-box .textos {
  position: relative;
  z-index: 1;
}
.sidebar-content-full .text-map {
  font-family: "Outfit", sans-serif !important;
  font-optical-sizing: auto;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: white;
}
.sidebar-content-full .icon-marker-map {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: white;
}

.sidebar-form {
  margin-bottom: -15px;
}
#mapa_propiedades {
  height: 700px;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 1399.98px) {
  #mapa_propiedades {
    height: 450px;
  }
}
#mapa_propiedades .leaflet-pane h4, #mapa_propiedades .leaflet-pane .h4 {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 12px;
  color: #000000;
  margin-bottom: 8px;
}
#mapa_propiedades .leaflet-pane h4 small, #mapa_propiedades .leaflet-pane .h4 small, #mapa_propiedades .leaflet-pane h4 .small, #mapa_propiedades .leaflet-pane .h4 .small {
  padding-top: 3px;
  display: block;
  font-size: 10px;
  color: #c19046;
}
#mapa_propiedades .leaflet-pane .referencia,
#mapa_propiedades .leaflet-pane .prices {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 8px;
}
#mapa_propiedades .leaflet-pane .referencia strong,
#mapa_propiedades .leaflet-pane .prices strong {
  font-weight: 700;
}
#mapa_propiedades .leaflet-popup-content-wrapper {
  padding: 1px;
  padding-top: 10px;
  text-align: left;
  border-radius: 0px;
}
#mapa_propiedades .leaflet-container a.leaflet-popup-close-button {
  color: #c19046;
  font-weight: 400;
}
#mapa_propiedades .leaflet-popup-tip-container {
  transform: translateY(-1px);
}

#mapa img {
  max-width: none;
}

.cluster {
  color: #fff;
  text-align: center;
  font-size: 10px;
  text-align: center;
  font-weight: 300;
  text-shadow: 0 0 2px #fff;
  line-height: 58px;
}

.cluster-1,
.cluster-2,
.cluster-3 {
  background: url(/media/images/website/map-cluster.png) no-repeat;
  width: 55px;
  height: 55px;
}

.viewed-props-full a.wrapper {
  display: block;
  text-decoration: none;
  background-color: #fff;
  transition: all ease-in-out 0.3s;
  border: solid 1px #e3e3e3;
}
@media (min-width: 1400px) {
  .viewed-props-full a.wrapper .col-xxl-6:first-child {
    width: 47.9166666667%;
  }
  .viewed-props-full a.wrapper .col-xxl-6:last-child {
    width: 52.0833333333%;
  }
}
.viewed-props-full a.wrapper .col-image {
  overflow: hidden;
}
.viewed-props-full a.wrapper .col-image img {
  transition: all ease-in-out 0.3s;
}
@media (min-width: 1280px) and (max-width: 1399.98px) {
  .viewed-props-full a.wrapper h3, .viewed-props-full a.wrapper .h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767.98px) {
  .viewed-props-full a.wrapper h3, .viewed-props-full a.wrapper .h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
.viewed-props-full a.wrapper .prices {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #0d1319;
}
.viewed-props-full a.wrapper:hover .col-image img {
  transform: scale(1.025);
}

.vistas-prop .btn .badge, .vistas-prop .property-data .nav-tabs li a .badge, .property-data .nav-tabs li .vistas-prop a .badge, .vistas-prop .property-data .btn-collapse-desc .badge, .property-data .vistas-prop .btn-collapse-desc .badge,
.vistas-prop .property-data .btn-collapse .badge,
.property-data .vistas-prop .btn-collapse .badge, .vistas-prop .page-news .sidebar-news .last-news .noticia .read-more .badge, .page-news .sidebar-news .last-news .noticia .vistas-prop .read-more .badge, .vistas-prop .noticia .text-new .read-more .badge, .noticia .text-new .vistas-prop .read-more .badge {
  position: absolute;
  top: 5px;
  right: 15px;
}

.btn, .property-data .nav-tabs li a, .property-data .btn-collapse-desc,
.property-data .btn-collapse, .page-news .sidebar-news .last-news .noticia .read-more, .noticia .text-new .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 0px;
  vertical-align: middle;
  transition: all ease-in-out 0.3s;
}
.btn.btn-small, .property-data .nav-tabs li a.btn-small, .property-data .btn-small.btn-collapse-desc,
.property-data .btn-small.btn-collapse, .page-news .sidebar-news .last-news .noticia .btn-small.read-more, .noticia .text-new .btn-small.read-more {
  font-size: 14px;
  letter-spacing: 2.1px;
}
.btn:active, .property-data .nav-tabs li a:active, .property-data .btn-collapse-desc:active,
.property-data .btn-collapse:active, .page-news .sidebar-news .last-news .noticia .read-more:active, .noticia .text-new .read-more:active, .btn:focus, .property-data .nav-tabs li a:focus, .property-data .btn-collapse-desc:focus,
.property-data .btn-collapse:focus, .page-news .sidebar-news .last-news .noticia .read-more:focus, .noticia .text-new .read-more:focus {
  box-shadow: unset;
}
.btn:hover, .property-data .nav-tabs li a:hover, .property-data .btn-collapse-desc:hover,
.property-data .btn-collapse:hover, .page-news .sidebar-news .last-news .noticia .read-more:hover, .noticia .text-new .read-more:hover {
  font-weight: 600;
}

.btn-whats {
  background-color: #38b567;
}
.btn-whats:hover {
  background-color: rgb(43.9493670886, 142.0506329114, 80.835443038);
}

.btn-grey {
  background-color: #c9c9c9;
}
.btn-grey:hover {
  background-color: rgb(175.5, 175.5, 175.5);
}

.btn-danger {
  background-color: #8b0303;
}
.btn-danger:hover {
  background-color: rgb(89.0774647887, 1.9225352113, 1.9225352113);
}

.btn-light,
.btn-outline-light {
  color: #0d1319 !important;
}
.btn-light.btn-light:hover,
.btn-outline-light.btn-light:hover {
  background-color: #0d1319;
  border-color: #000000;
  color: white !important;
}

.btn-primary-deg {
  background: linear-gradient(to right, #e1bd7a 0%, #c19046 100%);
  background-size: 125%;
  background-position: center 0%;
  border-color: transparent;
}
.btn-primary-deg:hover {
  background-position: center 100%;
}

.img-left {
  margin: 0 0 10px 0;
  padding: 0;
}

.img-right {
  margin: 0 0 10px 0;
  padding: 0;
}

@media (min-width: 768px) {
  .img-left {
    float: left;
    margin: 0 20px 10px 0;
    padding: 0;
    min-width: 100%;
  }
  .img-right {
    float: right;
    margin: 0 0 10px 20px;
    padding: 0;
    min-width: 100%;
  }
}
@media (min-width: 992px) {
  .img-left {
    min-width: auto !important;
  }
  .img-right {
    min-width: auto !important;
  }
}
.img-pan {
  margin: 0 0 10px;
  padding: 0;
  width: 100% !important;
  height: auto;
}

.help-block.error {
  color: #fff;
  font-size: 11px;
  margin: 2px 0 5px;
  display: block;
  background: red;
  padding: 2px 8px;
  border-radius: 4px;
}

.form-group,
.porta-order,
.porta-num,
.relative {
  position: relative;
}

.dropdown-menu {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.cms-table {
  width: 100%;
  table-layout: fixed;
}
.cms-table td {
  display: block;
  vertical-align: top;
}
@media (min-width: 576px) {
  .cms-table td {
    display: table-cell;
    padding-right: 15px;
  }
  .cms-table td + td {
    padding-left: 15px;
  }
}

.main-header-top .dropdown-toggle:focus,
.main-header .dropdown-toggle:focus,
#footer .dropdown-toggle:focus {
  outline: none !important;
}

.card-img-top {
  min-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

a.fav-hide {
  display: none !important;
}

form .loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3) url(/media/images/website/large-loading.gif) no-repeat center center;
}

#gdpr-cookie-message a {
  display: block;
  padding-top: 4px;
}

#gdpr-cookie-accept, button#gdpr-cookie-deny, button#gdpr-cookie-advanced {
  width: 100%;
  display: block;
  padding: 8px 8px;
}

#gdpr-cookie-message h4, #gdpr-cookie-message .h4 {
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  button#gdpr-cookie-deny, button#gdpr-cookie-advanced {
    background-color: transparent;
    border: 1px solid #a8a8a8;
    width: 100%;
    padding: 8px 8px;
    margin-left: 0;
    margin-right: 8px;
    white-space: nowrap;
    display: inline-block;
    margin-top: 6px;
  }
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 86.5px 0 0;
  text-rendering: optimizeLegibility;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  font-family: "Albert Sans", sans-serif !important;
  font-optical-sizing: auto;
  padding: 70px 0 0;
}
body li,
body p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: 26px;
  color: #0d1319;
}
body li b,
body li strong,
body p b,
body p strong {
  font-weight: 600;
}
@media (min-width: 1280px) {
  body {
    padding: 86.5px 0 0;
  }
}

.idiomas-dropdown a {
  text-decoration: unset;
}
.idiomas-dropdown .btn, .idiomas-dropdown .property-data .nav-tabs li a, .property-data .nav-tabs li .idiomas-dropdown a, .idiomas-dropdown .property-data .btn-collapse-desc, .property-data .idiomas-dropdown .btn-collapse-desc,
.idiomas-dropdown .property-data .btn-collapse,
.property-data .idiomas-dropdown .btn-collapse, .idiomas-dropdown .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .idiomas-dropdown .read-more, .idiomas-dropdown .noticia .text-new .read-more, .noticia .text-new .idiomas-dropdown .read-more {
  min-height: unset;
}
.idiomas-dropdown .dropdown-toggle::after {
  border: unset;
  background-image: url(/media/images/website/chevron-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 6px;
  vertical-align: middle;
  margin-left: 4px;
}
@media (max-width: 1279.98px) {
  .idiomas-dropdown .dropdown-toggle::after {
    width: 12px;
    height: 8px;
    margin-left: 0px;
  }
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 2;
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #bfc2c3;
  background-color: #0d1319;
}
.main-header.small-font {
  font-size: 13px;
  letter-spacing: 0.6px;
}
@media (max-width: 1399.98px) {
  .main-header.small-font {
    font-size: 11px;
    letter-spacing: 0.4px;
  }
}
.main-header a {
  text-decoration: none;
  color: #bfc2c3;
  transition: all ease-in-out 0.3s;
}
.main-header a:hover {
  color: white;
}
.main-header #main-nav {
  position: relative;
  margin: 0;
}
.main-header #main-nav li {
  padding-left: 10px;
  padding-right: 10px;
}
.main-header #main-nav li.active a {
  color: white;
}
.main-header #main-nav li.hidden-on-main-nav {
  display: none;
}
.main-header #main-nav li.left-item {
  margin-right: auto;
}
.main-header #main-nav li.right-item {
  margin-left: auto;
}
.main-header #main-nav .btn-menu-lateral {
  background-color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.main-header .col-brand {
  transition: all ease-in-out 0.3s;
  transition-property: transform;
}
.main-header .col-brand .brand {
  max-height: 45.8px;
  width: auto;
}
@media (min-width: 1280px) {
  .main-header .col-brand {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .main-header .col-brand .brand {
    max-height: 58px;
  }
}
.main-header .col-menu {
  display: block;
  line-height: 60px;
}
@media (min-width: 1280px) {
  .main-header .col-menu {
    width: 100% !important;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1280px) {
  .main-header {
    height: 86.5px;
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
  }
  .main-header.fix-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999;
  }
  .main-header #main-nav .menu {
    width: 80%;
  }
  .main-header #main-nav li.hidden-on-main-nav-lg {
    display: none;
  }
  .main-header #main-nav .btn-menu-lateral {
    border: 1px solid #c19046;
    max-height: 46px;
    padding: 5px 18px;
    background-color: unset;
    width: unset;
    height: unset;
    border-radius: 0%;
  }
}
.mega-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999999999999;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mega-menu .bg-color-modal {
  margin-left: auto;
  width: 70%;
  min-height: 10%;
  background-color: #000000;
  position: relative;
}
.mega-menu .bg-color-modal .container {
  position: relative;
  z-index: 2;
  max-width: 1385px;
  min-width: 340px;
}
@media (max-width: 1399.98px) {
  .mega-menu .bg-color-modal {
    width: 80%;
    min-height: 120%;
  }
}
@media screen and (max-width: 1399.98px) and (min-height: 628px) {
  .mega-menu .bg-color-modal {
    min-height: 170%;
  }
}
@media screen and (max-width: 1399.98px) and (min-height: 1024px) {
  .mega-menu .bg-color-modal {
    min-height: 100%;
  }
}
@media (max-width: 1279.98px) {
  .mega-menu .bg-color-modal {
    min-height: 140%;
  }
}
@media screen and (max-width: 1279.98px) and (min-height: 1024px) {
  .mega-menu .bg-color-modal {
    min-height: 140%;
  }
}
@media screen and (max-width: 1279.98px) and (min-height: 1024px) and (min-width: 1024px) {
  .mega-menu .bg-color-modal {
    min-height: 100%;
  }
}
@media (max-width: 991.98px) {
  .mega-menu .bg-color-modal {
    min-height: 140%;
  }
}
@media screen and (max-width: 991.98px) and (min-height: 1024px) {
  .mega-menu .bg-color-modal {
    min-height: 105%;
  }
}
@media (max-width: 767.98px) {
  .mega-menu .bg-color-modal {
    height: unset !important;
    width: 100%;
    min-height: 100%;
  }
}
.mega-menu .bg-image {
  background-image: url(/media/images/website/banners/menu-burguer.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100%;
}
.mega-menu .btn-menu-lateral:not(.close) {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #101820;
  width: 119px;
  height: 46px;
  background-color: #c19046;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: unset;
  margin-right: auto;
  margin-bottom: 30px;
}
.mega-menu .btn-menu-lateral:not(.close) i {
  transition: all ease-in-out 0.3s;
  transform: scaleX(2.5);
}
.mega-menu .btn-menu-lateral:not(.close):hover i {
  transform: scaleX(3.5);
}
.mega-menu .btn-menu-lateral.close {
  width: 44px;
  height: 44px;
  background-color: #c19046;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  opacity: 1;
}
.mega-menu ul a {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 20px 8px 20px 0px;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 1400px) {
  .mega-menu ul a {
    padding: 30px 8px 30px 0px;
  }
}
.mega-menu ul a:after {
  border: 0 !important;
}
.mega-menu ul a:hover {
  text-decoration: underline;
}
.mega-menu ul .hidden-on-burguer-nav {
  display: none;
}
.mega-menu ul li {
  display: block;
  width: 100%;
}
@media (min-width: 1400px) {
  .mega-menu ul li {
    display: inline-block;
    width: 48%;
  }
}
.mega-menu ul li .dropdown-menu {
  position: static !important;
  transform: none !important;
  background-color: transparent !important;
  box-shadow: none;
  border: 0;
  padding: 0 30px;
  transition: all ease-in-out 1s;
  height: 0;
  opacity: 0;
}
.mega-menu ul li .dropdown-menu.show {
  height: auto;
  opacity: 1;
}
.mega-menu ul li .dropdown-menu li {
  transition: all ease-in-out 0.3s;
  background-color: transparent !important;
}
.mega-menu ul li .dropdown-menu a {
  padding: 10px 8px 10px 0px;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 1400px) {
  .mega-menu ul li .dropdown-menu a {
    padding: 20px 8px 20px 0px;
  }
}
.mega-menu ul li .dropdown-menu a:after {
  border: 0 !important;
}

#modal-search {
  background-color: #e5e5e5;
  position: fixed;
  padding: 40px !important;
  top: 0;
  right: -104%;
  bottom: 0;
  width: 60vw;
  min-width: 720px;
  z-index: 999999;
  box-shadow: -30px 0 30px 0 rgba(0, 0, 0, 0.16);
  overflow-y: auto;
  overflow-x: hidden;
  transition: all ease-in-out 0.3s;
}
#modal-search .w-modal-search {
  width: 100%;
}
#modal-search.open-modal-search {
  right: 0;
}
#modal-search .buscador {
  margin-top: 0;
  display: block;
  position: relative !important;
  bottom: auto;
}
@media (max-width: 991.98px) {
  #modal-search {
    display: none;
  }
}

.main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
.modal:not(#galleryModal) .page-content h3,
.page-content .modal:not(#galleryModal) h3,
.modal:not(#galleryModal) .page-content .h3,
.page-content .modal:not(#galleryModal) .h3, .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .home-text h1, .home-text .h1, .page-content h2, .page-content .h2,
.page-content h3,
.page-content .h3 {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  margin: 30px 0 30px;
}
.main-title small, .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .main-title small, .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .page-content h2 small, .page-content .modal:not(#galleryModal) h2 small, .modal:not(#galleryModal) .page-content .h2 small, .page-content .modal:not(#galleryModal) .h2 small,
.modal:not(#galleryModal) .page-content h3 small,
.page-content .modal:not(#galleryModal) h3 small,
.modal:not(#galleryModal) .page-content .h3 small,
.page-content .modal:not(#galleryModal) .h3 small, .modal:not(#galleryModal) .home-text h1 small, .home-text .modal:not(#galleryModal) h1 small, .modal:not(#galleryModal) .home-text .h1 small, .home-text .modal:not(#galleryModal) .h1 small, .home-text h1 small, .home-text .h1 small, .page-content h2 small, .page-content .h2 small,
.page-content h3 small,
.page-content .h3 small, .main-title .small, .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .main-title .small, .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .page-content h2 .small, .page-content .modal:not(#galleryModal) h2 .small, .modal:not(#galleryModal) .page-content .h2 .small, .page-content .modal:not(#galleryModal) .h2 .small,
.modal:not(#galleryModal) .page-content h3 .small,
.page-content .modal:not(#galleryModal) h3 .small,
.modal:not(#galleryModal) .page-content .h3 .small,
.page-content .modal:not(#galleryModal) .h3 .small, .modal:not(#galleryModal) .home-text h1 .small, .home-text .modal:not(#galleryModal) h1 .small, .modal:not(#galleryModal) .home-text .h1 .small, .home-text .modal:not(#galleryModal) .h1 .small, .home-text h1 .small, .home-text .h1 .small, .page-content h2 .small, .page-content .h2 .small,
.page-content h3 .small,
.page-content .h3 .small {
  font-family: "Albert Sans", sans-serif !important;
  font-optical-sizing: auto;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2.1px;
  color: #c19046;
  margin: 10px 0;
}
.main-title strong, .modal:not(#galleryModal) .modal-title strong, .modal:not(#galleryModal) .main-title strong, .modal:not(#galleryModal) .modal-title strong, .modal:not(#galleryModal) .page-content h2 strong, .page-content .modal:not(#galleryModal) h2 strong, .modal:not(#galleryModal) .page-content .h2 strong, .page-content .modal:not(#galleryModal) .h2 strong,
.modal:not(#galleryModal) .page-content h3 strong,
.page-content .modal:not(#galleryModal) h3 strong,
.modal:not(#galleryModal) .page-content .h3 strong,
.page-content .modal:not(#galleryModal) .h3 strong, .modal:not(#galleryModal) .home-text h1 strong, .home-text .modal:not(#galleryModal) h1 strong, .modal:not(#galleryModal) .home-text .h1 strong, .home-text .modal:not(#galleryModal) .h1 strong, .home-text h1 strong, .home-text .h1 strong, .page-content h2 strong, .page-content .h2 strong,
.page-content h3 strong,
.page-content .h3 strong {
  font-weight: 300;
  color: #c19046;
}
.main-title.custom-title, .modal:not(#galleryModal) .custom-title.modal-title, .modal:not(#galleryModal) .custom-title.main-title, .modal:not(#galleryModal) .custom-title.modal-title, .modal:not(#galleryModal) .page-content h2.custom-title, .page-content .modal:not(#galleryModal) h2.custom-title, .modal:not(#galleryModal) .page-content .custom-title.h2, .page-content .modal:not(#galleryModal) .custom-title.h2,
.modal:not(#galleryModal) .page-content h3.custom-title,
.page-content .modal:not(#galleryModal) h3.custom-title,
.modal:not(#galleryModal) .page-content .custom-title.h3,
.page-content .modal:not(#galleryModal) .custom-title.h3, .modal:not(#galleryModal) .home-text h1.custom-title, .home-text .modal:not(#galleryModal) h1.custom-title, .modal:not(#galleryModal) .home-text .custom-title.h1, .home-text .modal:not(#galleryModal) .custom-title.h1, .home-text h1.custom-title, .home-text .custom-title.h1, .page-content h2.custom-title, .page-content .custom-title.h2,
.page-content h3.custom-title,
.page-content .custom-title.h3 {
  line-height: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.4px;
}
.main-title.subtitle, .modal:not(#galleryModal) .subtitle.modal-title, .modal:not(#galleryModal) .subtitle.main-title, .modal:not(#galleryModal) .subtitle.modal-title, .modal:not(#galleryModal) .page-content h2.subtitle, .page-content .modal:not(#galleryModal) h2.subtitle, .modal:not(#galleryModal) .page-content .subtitle.h2, .page-content .modal:not(#galleryModal) .subtitle.h2,
.modal:not(#galleryModal) .page-content h3.subtitle,
.page-content .modal:not(#galleryModal) h3.subtitle,
.modal:not(#galleryModal) .page-content .subtitle.h3,
.page-content .modal:not(#galleryModal) .subtitle.h3, .modal:not(#galleryModal) .home-text h1.subtitle, .home-text .modal:not(#galleryModal) h1.subtitle, .modal:not(#galleryModal) .home-text .subtitle.h1, .home-text .modal:not(#galleryModal) .subtitle.h1, .home-text h1.subtitle, .home-text .subtitle.h1, .page-content h2.subtitle, .page-content .subtitle.h2,
.page-content h3.subtitle,
.page-content .subtitle.h3 {
  font-family: "Albert Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 400;
}
.main-title.subtitle span, .modal:not(#galleryModal) .subtitle.modal-title span, .modal:not(#galleryModal) .subtitle.main-title span, .modal:not(#galleryModal) .subtitle.modal-title span, .modal:not(#galleryModal) .page-content h2.subtitle span, .page-content .modal:not(#galleryModal) h2.subtitle span, .modal:not(#galleryModal) .page-content .subtitle.h2 span, .page-content .modal:not(#galleryModal) .subtitle.h2 span,
.modal:not(#galleryModal) .page-content h3.subtitle span,
.page-content .modal:not(#galleryModal) h3.subtitle span,
.modal:not(#galleryModal) .page-content .subtitle.h3 span,
.page-content .modal:not(#galleryModal) .subtitle.h3 span, .modal:not(#galleryModal) .home-text h1.subtitle span, .home-text .modal:not(#galleryModal) h1.subtitle span, .modal:not(#galleryModal) .home-text .subtitle.h1 span, .home-text .modal:not(#galleryModal) .subtitle.h1 span, .home-text h1.subtitle span, .home-text .subtitle.h1 span, .page-content h2.subtitle span, .page-content .subtitle.h2 span,
.page-content h3.subtitle span,
.page-content .subtitle.h3 span {
  font-size: 32px;
}
.main-title.fs-24, .modal:not(#galleryModal) .fs-24.modal-title, .modal:not(#galleryModal) .fs-24.main-title, .modal:not(#galleryModal) .fs-24.modal-title, .modal:not(#galleryModal) .page-content h2.fs-24, .page-content .modal:not(#galleryModal) h2.fs-24, .modal:not(#galleryModal) .page-content .fs-24.h2, .page-content .modal:not(#galleryModal) .fs-24.h2,
.modal:not(#galleryModal) .page-content h3.fs-24,
.page-content .modal:not(#galleryModal) h3.fs-24,
.modal:not(#galleryModal) .page-content .fs-24.h3,
.page-content .modal:not(#galleryModal) .fs-24.h3, .modal:not(#galleryModal) .home-text h1.fs-24, .home-text .modal:not(#galleryModal) h1.fs-24, .modal:not(#galleryModal) .home-text .fs-24.h1, .home-text .modal:not(#galleryModal) .fs-24.h1, .home-text h1.fs-24, .home-text .fs-24.h1, .page-content h2.fs-24, .page-content .fs-24.h2,
.page-content h3.fs-24,
.page-content .custom-table h3,
.page-content .fs-24.h3,
.page-content .custom-table .h3 {
  font-size: 24px;
  line-height: 30px;
}
.main-title.fs-25, .modal:not(#galleryModal) .fs-25.modal-title, .modal:not(#galleryModal) .fs-25.main-title, .modal:not(#galleryModal) .fs-25.modal-title, .modal:not(#galleryModal) .page-content h2.fs-25, .page-content .modal:not(#galleryModal) h2.fs-25, .modal:not(#galleryModal) .page-content .fs-25.h2, .page-content .modal:not(#galleryModal) .fs-25.h2,
.modal:not(#galleryModal) .page-content h3.fs-25,
.page-content .modal:not(#galleryModal) h3.fs-25,
.modal:not(#galleryModal) .page-content .fs-25.h3,
.page-content .modal:not(#galleryModal) .fs-25.h3, .modal:not(#galleryModal) .home-text h1.fs-25, .home-text .modal:not(#galleryModal) h1.fs-25, .modal:not(#galleryModal) .home-text .fs-25.h1, .home-text .modal:not(#galleryModal) .fs-25.h1, .home-text h1.fs-25, .home-text .fs-25.h1, .page-content h2.fs-25, .page-content .fs-25.h2,
.page-content h3.fs-25,
.page-content .fs-25.h3 {
  font-size: 25px;
  line-height: 35px;
}
.main-title.fs-29, .modal:not(#galleryModal) .fs-29.modal-title, .modal:not(#galleryModal) .fs-29.main-title, .modal:not(#galleryModal) .fs-29.modal-title, .modal:not(#galleryModal) .page-content h2.fs-29, .page-content .modal:not(#galleryModal) h2.fs-29, .modal:not(#galleryModal) .page-content .fs-29.h2, .page-content .modal:not(#galleryModal) .fs-29.h2,
.modal:not(#galleryModal) .page-content h3.fs-29,
.page-content .modal:not(#galleryModal) h3.fs-29,
.modal:not(#galleryModal) .page-content .fs-29.h3,
.page-content .modal:not(#galleryModal) .fs-29.h3, .modal:not(#galleryModal) .home-text h1.fs-29, .home-text .modal:not(#galleryModal) h1.fs-29, .modal:not(#galleryModal) .home-text .fs-29.h1, .home-text .modal:not(#galleryModal) .fs-29.h1, .home-text h1.fs-29, .home-text .fs-29.h1, .page-content h2, .page-content .h2,
.page-content h3,
.page-content .h3 {
  font-size: 29px;
  line-height: 40px;
}
.main-title.fs-29 small, .modal:not(#galleryModal) .fs-29.modal-title small, .modal:not(#galleryModal) .fs-29.main-title small, .modal:not(#galleryModal) .fs-29.modal-title small, .modal:not(#galleryModal) .page-content h2.fs-29 small, .page-content .modal:not(#galleryModal) h2.fs-29 small, .modal:not(#galleryModal) .page-content .fs-29.h2 small, .page-content .modal:not(#galleryModal) .fs-29.h2 small,
.modal:not(#galleryModal) .page-content h3.fs-29 small,
.page-content .modal:not(#galleryModal) h3.fs-29 small,
.modal:not(#galleryModal) .page-content .fs-29.h3 small,
.page-content .modal:not(#galleryModal) .fs-29.h3 small, .modal:not(#galleryModal) .home-text h1.fs-29 small, .home-text .modal:not(#galleryModal) h1.fs-29 small, .modal:not(#galleryModal) .home-text .fs-29.h1 small, .home-text .modal:not(#galleryModal) .fs-29.h1 small, .home-text h1.fs-29 small, .home-text .fs-29.h1 small, .page-content h2 small, .page-content .h2 small,
.page-content h3 small,
.page-content .h3 small, .main-title.fs-29 .small, .modal:not(#galleryModal) .fs-29.modal-title .small, .modal:not(#galleryModal) .fs-29.main-title .small, .modal:not(#galleryModal) .fs-29.modal-title .small, .modal:not(#galleryModal) .page-content h2.fs-29 .small, .page-content .modal:not(#galleryModal) h2.fs-29 .small, .modal:not(#galleryModal) .page-content .fs-29.h2 .small, .page-content .modal:not(#galleryModal) .fs-29.h2 .small,
.modal:not(#galleryModal) .page-content h3.fs-29 .small,
.page-content .modal:not(#galleryModal) h3.fs-29 .small,
.modal:not(#galleryModal) .page-content .fs-29.h3 .small,
.page-content .modal:not(#galleryModal) .fs-29.h3 .small, .modal:not(#galleryModal) .home-text h1.fs-29 .small, .home-text .modal:not(#galleryModal) h1.fs-29 .small, .modal:not(#galleryModal) .home-text .fs-29.h1 .small, .home-text .modal:not(#galleryModal) .fs-29.h1 .small, .home-text h1.fs-29 .small, .home-text .fs-29.h1 .small, .page-content h2 .small, .page-content .h2 .small,
.page-content h3 .small,
.page-content .h3 .small {
  font-size: 13px;
  letter-spacing: 1.95px;
}
.main-title.fs-35, .modal:not(#galleryModal) .fs-35.modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content .main-title.h2, .modal:not(#galleryModal) .page-content .h2.modal-title, .page-content .modal:not(#galleryModal) .main-title.h2, .page-content .modal:not(#galleryModal) .h2.modal-title,
.modal:not(#galleryModal) .page-content h3.main-title,
.modal:not(#galleryModal) .page-content h3.modal-title,
.page-content .modal:not(#galleryModal) h3.main-title,
.page-content .modal:not(#galleryModal) h3.modal-title,
.modal:not(#galleryModal) .page-content .main-title.h3,
.modal:not(#galleryModal) .page-content .h3.modal-title,
.page-content .modal:not(#galleryModal) .main-title.h3,
.page-content .modal:not(#galleryModal) .h3.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text .main-title.h1, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .main-title.h1, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .fs-35.main-title, .modal:not(#galleryModal) .fs-35.modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content .main-title.h2, .modal:not(#galleryModal) .page-content .h2.modal-title, .page-content .modal:not(#galleryModal) .main-title.h2, .page-content .modal:not(#galleryModal) .h2.modal-title,
.modal:not(#galleryModal) .page-content h3.main-title,
.modal:not(#galleryModal) .page-content h3.modal-title,
.page-content .modal:not(#galleryModal) h3.main-title,
.page-content .modal:not(#galleryModal) h3.modal-title,
.modal:not(#galleryModal) .page-content .main-title.h3,
.modal:not(#galleryModal) .page-content .h3.modal-title,
.page-content .modal:not(#galleryModal) .main-title.h3,
.page-content .modal:not(#galleryModal) .h3.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text .main-title.h1, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .main-title.h1, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .page-content h2.fs-35, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content h2.h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h2,
.modal:not(#galleryModal) .page-content h2.h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h3, .modal:not(#galleryModal) .page-content .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content h2.h1, .home-text .modal:not(#galleryModal) .page-content h2.h1, .page-content .modal:not(#galleryModal) h2.fs-35, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .page-content .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2,
.page-content .modal:not(#galleryModal) .page-content h2.h3,
.page-content .modal:not(#galleryModal) h2.h3, .page-content .modal:not(#galleryModal) .home-text h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .modal:not(#galleryModal) .page-content .fs-35.h2, .modal:not(#galleryModal) .page-content .h2.main-title, .modal:not(#galleryModal) .page-content .h2.modal-title, .modal:not(#galleryModal) .page-content h2.h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h2, .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h2,
.modal:not(#galleryModal) .page-content h3.h2,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h2,
.modal:not(#galleryModal) .page-content .h2.h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h2.h3, .modal:not(#galleryModal) .page-content .home-text h1.h2, .modal:not(#galleryModal) .home-text .page-content h1.h2, .home-text .modal:not(#galleryModal) .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text .h2.h1, .modal:not(#galleryModal) .home-text .page-content .h2.h1, .home-text .modal:not(#galleryModal) .page-content .h2.h1, .page-content .modal:not(#galleryModal) .fs-35.h2, .page-content .modal:not(#galleryModal) .h2.main-title, .page-content .modal:not(#galleryModal) .h2.modal-title, .page-content .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2, .page-content .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
.page-content .modal:not(#galleryModal) .page-content h3.h2,
.page-content .modal:not(#galleryModal) h3.h2,
.page-content .modal:not(#galleryModal) .page-content .h2.h3,
.page-content .modal:not(#galleryModal) .h2.h3, .page-content .modal:not(#galleryModal) .home-text h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .modal:not(#galleryModal) .home-text .h2.h1, .page-content .home-text .modal:not(#galleryModal) .h2.h1, .home-text .page-content .modal:not(#galleryModal) .h2.h1,
.modal:not(#galleryModal) .page-content h3.fs-35,
.modal:not(#galleryModal) .page-content h3.main-title,
.modal:not(#galleryModal) .page-content h3.modal-title,
.modal:not(#galleryModal) .page-content h3.h2,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h2,
.modal:not(#galleryModal) .page-content h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3,
.modal:not(#galleryModal) .page-content h3.h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h3,
.modal:not(#galleryModal) .page-content .home-text h3.h1,
.modal:not(#galleryModal) .home-text .page-content h3.h1,
.home-text .modal:not(#galleryModal) .page-content h3.h1,
.page-content .modal:not(#galleryModal) h3.fs-35,
.page-content .modal:not(#galleryModal) h3.main-title,
.page-content .modal:not(#galleryModal) h3.modal-title,
.page-content .modal:not(#galleryModal) .page-content h3.h2,
.page-content .modal:not(#galleryModal) h3.h2,
.page-content .modal:not(#galleryModal) .page-content h3,
.page-content .modal:not(#galleryModal) h3,
.page-content .modal:not(#galleryModal) .page-content h3.h3,
.page-content .modal:not(#galleryModal) h3.h3,
.page-content .modal:not(#galleryModal) .home-text h3.h1,
.page-content .home-text .modal:not(#galleryModal) h3.h1,
.home-text .page-content .modal:not(#galleryModal) h3.h1,
.modal:not(#galleryModal) .page-content .fs-35.h3,
.modal:not(#galleryModal) .page-content .h3.main-title,
.modal:not(#galleryModal) .page-content .h3.modal-title,
.modal:not(#galleryModal) .page-content h2.h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h3,
.modal:not(#galleryModal) .page-content .h3.h2,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h3.h2,
.modal:not(#galleryModal) .page-content h3.h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h3,
.modal:not(#galleryModal) .page-content .h3,
.modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h3,
.modal:not(#galleryModal) .page-content .home-text h1.h3,
.modal:not(#galleryModal) .home-text .page-content h1.h3,
.home-text .modal:not(#galleryModal) .page-content h1.h3,
.modal:not(#galleryModal) .page-content .home-text .h3.h1,
.modal:not(#galleryModal) .home-text .page-content .h3.h1,
.home-text .modal:not(#galleryModal) .page-content .h3.h1,
.page-content .modal:not(#galleryModal) .fs-35.h3,
.page-content .modal:not(#galleryModal) .h3.main-title,
.page-content .modal:not(#galleryModal) .h3.modal-title,
.page-content .modal:not(#galleryModal) .page-content h2.h3,
.page-content .modal:not(#galleryModal) h2.h3,
.page-content .modal:not(#galleryModal) .page-content .h3.h2,
.page-content .modal:not(#galleryModal) .h3.h2,
.page-content .modal:not(#galleryModal) .page-content h3.h3,
.page-content .modal:not(#galleryModal) h3.h3,
.page-content .modal:not(#galleryModal) .page-content .h3,
.page-content .modal:not(#galleryModal) .h3,
.page-content .modal:not(#galleryModal) .home-text h1.h3,
.page-content .home-text .modal:not(#galleryModal) h1.h3,
.home-text .page-content .modal:not(#galleryModal) h1.h3,
.page-content .modal:not(#galleryModal) .home-text .h3.h1,
.page-content .home-text .modal:not(#galleryModal) .h3.h1,
.home-text .page-content .modal:not(#galleryModal) .h3.h1, .modal:not(#galleryModal) .home-text h1.fs-35, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .modal:not(#galleryModal) .home-text .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text h1.h2, .page-content .modal:not(#galleryModal) .home-text h1.h2,
.modal:not(#galleryModal) .home-text .page-content h1.h3,
.modal:not(#galleryModal) .page-content .home-text h1.h3,
.page-content .modal:not(#galleryModal) .home-text h1.h3, .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text h1.h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1.h1, .home-text .modal:not(#galleryModal) h1.fs-35, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2,
.home-text .modal:not(#galleryModal) .page-content h1.h3,
.home-text .page-content .modal:not(#galleryModal) h1.h3,
.page-content .home-text .modal:not(#galleryModal) h1.h3, .home-text .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .fs-35.h1, .modal:not(#galleryModal) .home-text .h1.main-title, .modal:not(#galleryModal) .home-text .h1.modal-title, .modal:not(#galleryModal) .home-text .page-content h2.h1, .modal:not(#galleryModal) .page-content .home-text h2.h1, .page-content .modal:not(#galleryModal) .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content .h1.h2, .modal:not(#galleryModal) .page-content .home-text .h1.h2, .page-content .modal:not(#galleryModal) .home-text .h1.h2,
.modal:not(#galleryModal) .home-text .page-content h3.h1,
.modal:not(#galleryModal) .page-content .home-text h3.h1,
.page-content .modal:not(#galleryModal) .home-text h3.h1,
.modal:not(#galleryModal) .home-text .page-content .h1.h3,
.modal:not(#galleryModal) .page-content .home-text .h1.h3,
.page-content .modal:not(#galleryModal) .home-text .h1.h3, .modal:not(#galleryModal) .home-text h1.h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .fs-35.h1, .home-text .modal:not(#galleryModal) .h1.main-title, .home-text .modal:not(#galleryModal) .h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .modal:not(#galleryModal) .page-content .h1.h2, .home-text .page-content .modal:not(#galleryModal) .h1.h2, .page-content .home-text .modal:not(#galleryModal) .h1.h2,
.home-text .modal:not(#galleryModal) .page-content h3.h1,
.home-text .page-content .modal:not(#galleryModal) h3.h1,
.page-content .home-text .modal:not(#galleryModal) h3.h1,
.home-text .modal:not(#galleryModal) .page-content .h1.h3,
.home-text .page-content .modal:not(#galleryModal) .h1.h3,
.page-content .home-text .modal:not(#galleryModal) .h1.h3, .home-text .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .home-text .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .home-text h1.fs-35, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .modal:not(#galleryModal) .home-text h1.h2,
.home-text .modal:not(#galleryModal) .page-content h1.h3,
.modal:not(#galleryModal) .page-content .home-text h1.h3,
.home-text .page-content .modal:not(#galleryModal) h1.h3,
.page-content .modal:not(#galleryModal) .home-text h1.h3, .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .home-text .fs-35.h1, .home-text .modal:not(#galleryModal) .h1.main-title, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .home-text .h1.main-title, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h2.h1, .modal:not(#galleryModal) .page-content .home-text h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .page-content .modal:not(#galleryModal) .home-text h2.h1, .home-text .modal:not(#galleryModal) .page-content .h1.h2, .modal:not(#galleryModal) .page-content .home-text .h1.h2, .home-text .page-content .modal:not(#galleryModal) .h1.h2, .page-content .modal:not(#galleryModal) .home-text .h1.h2,
.home-text .modal:not(#galleryModal) .page-content h3.h1,
.modal:not(#galleryModal) .page-content .home-text h3.h1,
.home-text .page-content .modal:not(#galleryModal) h3.h1,
.page-content .modal:not(#galleryModal) .home-text h3.h1,
.home-text .modal:not(#galleryModal) .page-content .h1.h3,
.modal:not(#galleryModal) .page-content .home-text .h1.h3,
.home-text .page-content .modal:not(#galleryModal) .h1.h3,
.page-content .modal:not(#galleryModal) .home-text .h1.h3, .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .page-content h2.fs-35, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2,
.modal:not(#galleryModal) .page-content h2.h3,
.page-content .modal:not(#galleryModal) h2.h3, .page-content .modal:not(#galleryModal) .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .modal:not(#galleryModal) .page-content h2.h1, .page-content .fs-35.h2, .page-content .modal:not(#galleryModal) .h2.main-title, .page-content .modal:not(#galleryModal) .h2.modal-title, .modal:not(#galleryModal) .page-content .h2.main-title, .modal:not(#galleryModal) .page-content .h2.modal-title, .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2, .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
.modal:not(#galleryModal) .page-content h3.h2,
.page-content .modal:not(#galleryModal) h3.h2,
.modal:not(#galleryModal) .page-content .h2.h3,
.page-content .modal:not(#galleryModal) .h2.h3, .page-content .modal:not(#galleryModal) .home-text h1.h2, .modal:not(#galleryModal) .home-text .page-content h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2, .home-text .modal:not(#galleryModal) .page-content h1.h2, .page-content .modal:not(#galleryModal) .home-text .h2.h1, .modal:not(#galleryModal) .home-text .page-content .h2.h1, .page-content .home-text .modal:not(#galleryModal) .h2.h1, .home-text .modal:not(#galleryModal) .page-content .h2.h1,
.page-content h3.fs-35,
.page-content .modal:not(#galleryModal) h3.main-title,
.page-content .modal:not(#galleryModal) h3.modal-title,
.modal:not(#galleryModal) .page-content h3.main-title,
.modal:not(#galleryModal) .page-content h3.modal-title,
.modal:not(#galleryModal) .page-content h3.h2,
.page-content .modal:not(#galleryModal) h3.h2,
.modal:not(#galleryModal) .page-content h3,
.page-content .modal:not(#galleryModal) h3,
.modal:not(#galleryModal) .page-content h3.h3,
.page-content .modal:not(#galleryModal) h3.h3,
.page-content .modal:not(#galleryModal) .home-text h3.h1,
.modal:not(#galleryModal) .home-text .page-content h3.h1,
.page-content .home-text .modal:not(#galleryModal) h3.h1,
.home-text .modal:not(#galleryModal) .page-content h3.h1,
.page-content .fs-35.h3,
.page-content .modal:not(#galleryModal) .h3.main-title,
.page-content .modal:not(#galleryModal) .h3.modal-title,
.modal:not(#galleryModal) .page-content .h3.main-title,
.modal:not(#galleryModal) .page-content .h3.modal-title,
.modal:not(#galleryModal) .page-content h2.h3,
.page-content .modal:not(#galleryModal) h2.h3,
.modal:not(#galleryModal) .page-content .h3.h2,
.page-content .modal:not(#galleryModal) .h3.h2,
.modal:not(#galleryModal) .page-content h3.h3,
.page-content .modal:not(#galleryModal) h3.h3,
.modal:not(#galleryModal) .page-content .h3,
.page-content .modal:not(#galleryModal) .h3,
.page-content .modal:not(#galleryModal) .home-text h1.h3,
.modal:not(#galleryModal) .home-text .page-content h1.h3,
.page-content .home-text .modal:not(#galleryModal) h1.h3,
.home-text .modal:not(#galleryModal) .page-content h1.h3,
.page-content .modal:not(#galleryModal) .home-text .h3.h1,
.modal:not(#galleryModal) .home-text .page-content .h3.h1,
.page-content .home-text .modal:not(#galleryModal) .h3.h1,
.home-text .modal:not(#galleryModal) .page-content .h3.h1 {
  font-size: 35px;
  line-height: 40px;
}
.main-title.fs-40, .modal:not(#galleryModal) .fs-40.modal-title, .modal:not(#galleryModal) .fs-40.main-title, .modal:not(#galleryModal) .fs-40.modal-title, .modal:not(#galleryModal) .page-content h2.fs-40, .page-content .modal:not(#galleryModal) h2.fs-40, .modal:not(#galleryModal) .page-content .fs-40.h2, .page-content .modal:not(#galleryModal) .fs-40.h2,
.modal:not(#galleryModal) .page-content h3.fs-40,
.page-content .modal:not(#galleryModal) h3.fs-40,
.modal:not(#galleryModal) .page-content .fs-40.h3,
.page-content .modal:not(#galleryModal) .fs-40.h3, .modal:not(#galleryModal) .home-text h1.fs-40, .home-text .modal:not(#galleryModal) h1.fs-40, .modal:not(#galleryModal) .home-text .fs-40.h1, .home-text .modal:not(#galleryModal) .fs-40.h1, .home-text h1.fs-40, .home-text .fs-40.h1, .page-content h2.fs-40, .page-content .fs-40.h2,
.page-content h3.fs-40,
.page-content .fs-40.h3 {
  font-size: 40px;
  line-height: 50px;
}
.main-title.fs-55, .modal:not(#galleryModal) .fs-55.modal-title, .modal:not(#galleryModal) .fs-55.main-title, .modal:not(#galleryModal) .fs-55.modal-title, .modal:not(#galleryModal) .page-content h2.fs-55, .page-content .modal:not(#galleryModal) h2.fs-55, .modal:not(#galleryModal) .page-content .fs-55.h2, .page-content .modal:not(#galleryModal) .fs-55.h2,
.modal:not(#galleryModal) .page-content h3.fs-55,
.page-content .modal:not(#galleryModal) h3.fs-55,
.modal:not(#galleryModal) .page-content .fs-55.h3,
.page-content .modal:not(#galleryModal) .fs-55.h3, .modal:not(#galleryModal) .home-text h1.fs-55, .home-text .modal:not(#galleryModal) h1.fs-55, .modal:not(#galleryModal) .home-text .fs-55.h1, .home-text .modal:not(#galleryModal) .fs-55.h1, .home-text h1.fs-55, .home-text .fs-55.h1, .page-content h2.fs-55, .page-content .fs-55.h2,
.page-content h3.fs-55,
.page-content .fs-55.h3 {
  font-size: 40px;
  line-height: 35px;
}
@media (min-width: 992px) {
  .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
  .modal:not(#galleryModal) .page-content h3,
  .page-content .modal:not(#galleryModal) h3,
  .modal:not(#galleryModal) .page-content .h3,
  .page-content .modal:not(#galleryModal) .h3, .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .home-text h1, .home-text .h1, .page-content h2, .page-content .h2,
  .page-content h3,
  .page-content .h3 {
    font-size: 32px;
    line-height: 45px;
  }
  .main-title.fs-29, .modal:not(#galleryModal) .fs-29.modal-title, .modal:not(#galleryModal) .fs-29.main-title, .modal:not(#galleryModal) .fs-29.modal-title, .modal:not(#galleryModal) .page-content h2.fs-29, .page-content .modal:not(#galleryModal) h2.fs-29, .modal:not(#galleryModal) .page-content .fs-29.h2, .page-content .modal:not(#galleryModal) .fs-29.h2,
  .modal:not(#galleryModal) .page-content h3.fs-29,
  .page-content .modal:not(#galleryModal) h3.fs-29,
  .modal:not(#galleryModal) .page-content .fs-29.h3,
  .page-content .modal:not(#galleryModal) .fs-29.h3, .modal:not(#galleryModal) .home-text h1.fs-29, .home-text .modal:not(#galleryModal) h1.fs-29, .modal:not(#galleryModal) .home-text .fs-29.h1, .home-text .modal:not(#galleryModal) .fs-29.h1, .home-text h1.fs-29, .home-text .fs-29.h1, .page-content h2, .page-content .h2,
  .page-content h3,
  .page-content .h3 {
    font-size: 29px;
    line-height: 40px;
  }
  .main-title.fs-29 small, .modal:not(#galleryModal) .fs-29.modal-title small, .modal:not(#galleryModal) .fs-29.main-title small, .modal:not(#galleryModal) .fs-29.modal-title small, .modal:not(#galleryModal) .page-content h2.fs-29 small, .page-content .modal:not(#galleryModal) h2.fs-29 small, .modal:not(#galleryModal) .page-content .fs-29.h2 small, .page-content .modal:not(#galleryModal) .fs-29.h2 small,
  .modal:not(#galleryModal) .page-content h3.fs-29 small,
  .page-content .modal:not(#galleryModal) h3.fs-29 small,
  .modal:not(#galleryModal) .page-content .fs-29.h3 small,
  .page-content .modal:not(#galleryModal) .fs-29.h3 small, .modal:not(#galleryModal) .home-text h1.fs-29 small, .home-text .modal:not(#galleryModal) h1.fs-29 small, .modal:not(#galleryModal) .home-text .fs-29.h1 small, .home-text .modal:not(#galleryModal) .fs-29.h1 small, .home-text h1.fs-29 small, .home-text .fs-29.h1 small, .page-content h2 small, .page-content .h2 small,
  .page-content h3 small,
  .page-content .h3 small, .main-title.fs-29 .small, .modal:not(#galleryModal) .fs-29.modal-title .small, .modal:not(#galleryModal) .fs-29.main-title .small, .modal:not(#galleryModal) .fs-29.modal-title .small, .modal:not(#galleryModal) .page-content h2.fs-29 .small, .page-content .modal:not(#galleryModal) h2.fs-29 .small, .modal:not(#galleryModal) .page-content .fs-29.h2 .small, .page-content .modal:not(#galleryModal) .fs-29.h2 .small,
  .modal:not(#galleryModal) .page-content h3.fs-29 .small,
  .page-content .modal:not(#galleryModal) h3.fs-29 .small,
  .modal:not(#galleryModal) .page-content .fs-29.h3 .small,
  .page-content .modal:not(#galleryModal) .fs-29.h3 .small, .modal:not(#galleryModal) .home-text h1.fs-29 .small, .home-text .modal:not(#galleryModal) h1.fs-29 .small, .modal:not(#galleryModal) .home-text .fs-29.h1 .small, .home-text .modal:not(#galleryModal) .fs-29.h1 .small, .home-text h1.fs-29 .small, .home-text .fs-29.h1 .small, .page-content h2 .small, .page-content .h2 .small,
  .page-content h3 .small,
  .page-content .h3 .small {
    font-size: 13px;
    letter-spacing: 1.95px;
  }
  .main-title.fs-35, .modal:not(#galleryModal) .fs-35.modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content .main-title.h2, .modal:not(#galleryModal) .page-content .h2.modal-title, .page-content .modal:not(#galleryModal) .main-title.h2, .page-content .modal:not(#galleryModal) .h2.modal-title,
  .modal:not(#galleryModal) .page-content h3.main-title,
  .modal:not(#galleryModal) .page-content h3.modal-title,
  .page-content .modal:not(#galleryModal) h3.main-title,
  .page-content .modal:not(#galleryModal) h3.modal-title,
  .modal:not(#galleryModal) .page-content .main-title.h3,
  .modal:not(#galleryModal) .page-content .h3.modal-title,
  .page-content .modal:not(#galleryModal) .main-title.h3,
  .page-content .modal:not(#galleryModal) .h3.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text .main-title.h1, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .main-title.h1, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .fs-35.main-title, .modal:not(#galleryModal) .fs-35.modal-title, .modal:not(#galleryModal) .main-title, .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content .main-title.h2, .modal:not(#galleryModal) .page-content .h2.modal-title, .page-content .modal:not(#galleryModal) .main-title.h2, .page-content .modal:not(#galleryModal) .h2.modal-title,
  .modal:not(#galleryModal) .page-content h3.main-title,
  .modal:not(#galleryModal) .page-content h3.modal-title,
  .page-content .modal:not(#galleryModal) h3.main-title,
  .page-content .modal:not(#galleryModal) h3.modal-title,
  .modal:not(#galleryModal) .page-content .main-title.h3,
  .modal:not(#galleryModal) .page-content .h3.modal-title,
  .page-content .modal:not(#galleryModal) .main-title.h3,
  .page-content .modal:not(#galleryModal) .h3.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text .main-title.h1, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .main-title.h1, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .page-content h2.fs-35, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content h2.h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h2,
  .modal:not(#galleryModal) .page-content h2.h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h3, .modal:not(#galleryModal) .page-content .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content h2.h1, .home-text .modal:not(#galleryModal) .page-content h2.h1, .page-content .modal:not(#galleryModal) h2.fs-35, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .page-content .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2,
  .page-content .modal:not(#galleryModal) .page-content h2.h3,
  .page-content .modal:not(#galleryModal) h2.h3, .page-content .modal:not(#galleryModal) .home-text h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .modal:not(#galleryModal) .page-content .fs-35.h2, .modal:not(#galleryModal) .page-content .h2.main-title, .modal:not(#galleryModal) .page-content .h2.modal-title, .modal:not(#galleryModal) .page-content h2.h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h2, .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h2,
  .modal:not(#galleryModal) .page-content h3.h2,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h2,
  .modal:not(#galleryModal) .page-content .h2.h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h2.h3, .modal:not(#galleryModal) .page-content .home-text h1.h2, .modal:not(#galleryModal) .home-text .page-content h1.h2, .home-text .modal:not(#galleryModal) .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text .h2.h1, .modal:not(#galleryModal) .home-text .page-content .h2.h1, .home-text .modal:not(#galleryModal) .page-content .h2.h1, .page-content .modal:not(#galleryModal) .fs-35.h2, .page-content .modal:not(#galleryModal) .h2.main-title, .page-content .modal:not(#galleryModal) .h2.modal-title, .page-content .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2, .page-content .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
  .page-content .modal:not(#galleryModal) .page-content h3.h2,
  .page-content .modal:not(#galleryModal) h3.h2,
  .page-content .modal:not(#galleryModal) .page-content .h2.h3,
  .page-content .modal:not(#galleryModal) .h2.h3, .page-content .modal:not(#galleryModal) .home-text h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .modal:not(#galleryModal) .home-text .h2.h1, .page-content .home-text .modal:not(#galleryModal) .h2.h1, .home-text .page-content .modal:not(#galleryModal) .h2.h1,
  .modal:not(#galleryModal) .page-content h3.fs-35,
  .modal:not(#galleryModal) .page-content h3.main-title,
  .modal:not(#galleryModal) .page-content h3.modal-title,
  .modal:not(#galleryModal) .page-content h3.h2,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h2,
  .modal:not(#galleryModal) .page-content h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3,
  .modal:not(#galleryModal) .page-content h3.h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h3,
  .modal:not(#galleryModal) .page-content .home-text h3.h1,
  .modal:not(#galleryModal) .home-text .page-content h3.h1,
  .home-text .modal:not(#galleryModal) .page-content h3.h1,
  .page-content .modal:not(#galleryModal) h3.fs-35,
  .page-content .modal:not(#galleryModal) h3.main-title,
  .page-content .modal:not(#galleryModal) h3.modal-title,
  .page-content .modal:not(#galleryModal) .page-content h3.h2,
  .page-content .modal:not(#galleryModal) h3.h2,
  .page-content .modal:not(#galleryModal) .page-content h3,
  .page-content .modal:not(#galleryModal) h3,
  .page-content .modal:not(#galleryModal) .page-content h3.h3,
  .page-content .modal:not(#galleryModal) h3.h3,
  .page-content .modal:not(#galleryModal) .home-text h3.h1,
  .page-content .home-text .modal:not(#galleryModal) h3.h1,
  .home-text .page-content .modal:not(#galleryModal) h3.h1,
  .modal:not(#galleryModal) .page-content .fs-35.h3,
  .modal:not(#galleryModal) .page-content .h3.main-title,
  .modal:not(#galleryModal) .page-content .h3.modal-title,
  .modal:not(#galleryModal) .page-content h2.h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h2.h3,
  .modal:not(#galleryModal) .page-content .h3.h2,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h3.h2,
  .modal:not(#galleryModal) .page-content h3.h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) h3.h3,
  .modal:not(#galleryModal) .page-content .h3,
  .modal:not(#galleryModal) .page-content .modal:not(#galleryModal) .h3,
  .modal:not(#galleryModal) .page-content .home-text h1.h3,
  .modal:not(#galleryModal) .home-text .page-content h1.h3,
  .home-text .modal:not(#galleryModal) .page-content h1.h3,
  .modal:not(#galleryModal) .page-content .home-text .h3.h1,
  .modal:not(#galleryModal) .home-text .page-content .h3.h1,
  .home-text .modal:not(#galleryModal) .page-content .h3.h1,
  .page-content .modal:not(#galleryModal) .fs-35.h3,
  .page-content .modal:not(#galleryModal) .h3.main-title,
  .page-content .modal:not(#galleryModal) .h3.modal-title,
  .page-content .modal:not(#galleryModal) .page-content h2.h3,
  .page-content .modal:not(#galleryModal) h2.h3,
  .page-content .modal:not(#galleryModal) .page-content .h3.h2,
  .page-content .modal:not(#galleryModal) .h3.h2,
  .page-content .modal:not(#galleryModal) .page-content h3.h3,
  .page-content .modal:not(#galleryModal) h3.h3,
  .page-content .modal:not(#galleryModal) .page-content .h3,
  .page-content .modal:not(#galleryModal) .h3,
  .page-content .modal:not(#galleryModal) .home-text h1.h3,
  .page-content .home-text .modal:not(#galleryModal) h1.h3,
  .home-text .page-content .modal:not(#galleryModal) h1.h3,
  .page-content .modal:not(#galleryModal) .home-text .h3.h1,
  .page-content .home-text .modal:not(#galleryModal) .h3.h1,
  .home-text .page-content .modal:not(#galleryModal) .h3.h1, .modal:not(#galleryModal) .home-text h1.fs-35, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .modal:not(#galleryModal) .home-text .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text h1.h2, .page-content .modal:not(#galleryModal) .home-text h1.h2,
  .modal:not(#galleryModal) .home-text .page-content h1.h3,
  .modal:not(#galleryModal) .page-content .home-text h1.h3,
  .page-content .modal:not(#galleryModal) .home-text h1.h3, .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text h1.h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1.h1, .home-text .modal:not(#galleryModal) h1.fs-35, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2,
  .home-text .modal:not(#galleryModal) .page-content h1.h3,
  .home-text .page-content .modal:not(#galleryModal) h1.h3,
  .page-content .home-text .modal:not(#galleryModal) h1.h3, .home-text .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .fs-35.h1, .modal:not(#galleryModal) .home-text .h1.main-title, .modal:not(#galleryModal) .home-text .h1.modal-title, .modal:not(#galleryModal) .home-text .page-content h2.h1, .modal:not(#galleryModal) .page-content .home-text h2.h1, .page-content .modal:not(#galleryModal) .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content .h1.h2, .modal:not(#galleryModal) .page-content .home-text .h1.h2, .page-content .modal:not(#galleryModal) .home-text .h1.h2,
  .modal:not(#galleryModal) .home-text .page-content h3.h1,
  .modal:not(#galleryModal) .page-content .home-text h3.h1,
  .page-content .modal:not(#galleryModal) .home-text h3.h1,
  .modal:not(#galleryModal) .home-text .page-content .h1.h3,
  .modal:not(#galleryModal) .page-content .home-text .h1.h3,
  .page-content .modal:not(#galleryModal) .home-text .h1.h3, .modal:not(#galleryModal) .home-text h1.h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .fs-35.h1, .home-text .modal:not(#galleryModal) .h1.main-title, .home-text .modal:not(#galleryModal) .h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .modal:not(#galleryModal) .page-content .h1.h2, .home-text .page-content .modal:not(#galleryModal) .h1.h2, .page-content .home-text .modal:not(#galleryModal) .h1.h2,
  .home-text .modal:not(#galleryModal) .page-content h3.h1,
  .home-text .page-content .modal:not(#galleryModal) h3.h1,
  .page-content .home-text .modal:not(#galleryModal) h3.h1,
  .home-text .modal:not(#galleryModal) .page-content .h1.h3,
  .home-text .page-content .modal:not(#galleryModal) .h1.h3,
  .page-content .home-text .modal:not(#galleryModal) .h1.h3, .home-text .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .home-text .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .home-text h1.fs-35, .home-text .modal:not(#galleryModal) h1.main-title, .home-text .modal:not(#galleryModal) h1.modal-title, .modal:not(#galleryModal) .home-text h1.main-title, .modal:not(#galleryModal) .home-text h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h1.h2, .modal:not(#galleryModal) .page-content .home-text h1.h2, .home-text .page-content .modal:not(#galleryModal) h1.h2, .page-content .modal:not(#galleryModal) .home-text h1.h2,
  .home-text .modal:not(#galleryModal) .page-content h1.h3,
  .modal:not(#galleryModal) .page-content .home-text h1.h3,
  .home-text .page-content .modal:not(#galleryModal) h1.h3,
  .page-content .modal:not(#galleryModal) .home-text h1.h3, .modal:not(#galleryModal) .home-text h1, .home-text .modal:not(#galleryModal) h1, .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .home-text .fs-35.h1, .home-text .modal:not(#galleryModal) .h1.main-title, .home-text .modal:not(#galleryModal) .h1.modal-title, .modal:not(#galleryModal) .home-text .h1.main-title, .modal:not(#galleryModal) .home-text .h1.modal-title, .home-text .modal:not(#galleryModal) .page-content h2.h1, .modal:not(#galleryModal) .page-content .home-text h2.h1, .home-text .page-content .modal:not(#galleryModal) h2.h1, .page-content .modal:not(#galleryModal) .home-text h2.h1, .home-text .modal:not(#galleryModal) .page-content .h1.h2, .modal:not(#galleryModal) .page-content .home-text .h1.h2, .home-text .page-content .modal:not(#galleryModal) .h1.h2, .page-content .modal:not(#galleryModal) .home-text .h1.h2,
  .home-text .modal:not(#galleryModal) .page-content h3.h1,
  .modal:not(#galleryModal) .page-content .home-text h3.h1,
  .home-text .page-content .modal:not(#galleryModal) h3.h1,
  .page-content .modal:not(#galleryModal) .home-text h3.h1,
  .home-text .modal:not(#galleryModal) .page-content .h1.h3,
  .modal:not(#galleryModal) .page-content .home-text .h1.h3,
  .home-text .page-content .modal:not(#galleryModal) .h1.h3,
  .page-content .modal:not(#galleryModal) .home-text .h1.h3, .modal:not(#galleryModal) .home-text h1.h1, .home-text .modal:not(#galleryModal) h1.h1, .modal:not(#galleryModal) .home-text .h1, .home-text .modal:not(#galleryModal) .h1, .page-content h2.fs-35, .page-content .modal:not(#galleryModal) h2.main-title, .page-content .modal:not(#galleryModal) h2.modal-title, .modal:not(#galleryModal) .page-content h2.main-title, .modal:not(#galleryModal) .page-content h2.modal-title, .modal:not(#galleryModal) .page-content h2, .page-content .modal:not(#galleryModal) h2, .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2,
  .modal:not(#galleryModal) .page-content h2.h3,
  .page-content .modal:not(#galleryModal) h2.h3, .page-content .modal:not(#galleryModal) .home-text h2.h1, .modal:not(#galleryModal) .home-text .page-content h2.h1, .page-content .home-text .modal:not(#galleryModal) h2.h1, .home-text .modal:not(#galleryModal) .page-content h2.h1, .page-content .fs-35.h2, .page-content .modal:not(#galleryModal) .h2.main-title, .page-content .modal:not(#galleryModal) .h2.modal-title, .modal:not(#galleryModal) .page-content .h2.main-title, .modal:not(#galleryModal) .page-content .h2.modal-title, .modal:not(#galleryModal) .page-content h2.h2, .page-content .modal:not(#galleryModal) h2.h2, .modal:not(#galleryModal) .page-content .h2, .page-content .modal:not(#galleryModal) .h2,
  .modal:not(#galleryModal) .page-content h3.h2,
  .page-content .modal:not(#galleryModal) h3.h2,
  .modal:not(#galleryModal) .page-content .h2.h3,
  .page-content .modal:not(#galleryModal) .h2.h3, .page-content .modal:not(#galleryModal) .home-text h1.h2, .modal:not(#galleryModal) .home-text .page-content h1.h2, .page-content .home-text .modal:not(#galleryModal) h1.h2, .home-text .modal:not(#galleryModal) .page-content h1.h2, .page-content .modal:not(#galleryModal) .home-text .h2.h1, .modal:not(#galleryModal) .home-text .page-content .h2.h1, .page-content .home-text .modal:not(#galleryModal) .h2.h1, .home-text .modal:not(#galleryModal) .page-content .h2.h1,
  .page-content h3.fs-35,
  .page-content .modal:not(#galleryModal) h3.main-title,
  .page-content .modal:not(#galleryModal) h3.modal-title,
  .modal:not(#galleryModal) .page-content h3.main-title,
  .modal:not(#galleryModal) .page-content h3.modal-title,
  .modal:not(#galleryModal) .page-content h3.h2,
  .page-content .modal:not(#galleryModal) h3.h2,
  .modal:not(#galleryModal) .page-content h3,
  .page-content .modal:not(#galleryModal) h3,
  .modal:not(#galleryModal) .page-content h3.h3,
  .page-content .modal:not(#galleryModal) h3.h3,
  .page-content .modal:not(#galleryModal) .home-text h3.h1,
  .modal:not(#galleryModal) .home-text .page-content h3.h1,
  .page-content .home-text .modal:not(#galleryModal) h3.h1,
  .home-text .modal:not(#galleryModal) .page-content h3.h1,
  .page-content .fs-35.h3,
  .page-content .modal:not(#galleryModal) .h3.main-title,
  .page-content .modal:not(#galleryModal) .h3.modal-title,
  .modal:not(#galleryModal) .page-content .h3.main-title,
  .modal:not(#galleryModal) .page-content .h3.modal-title,
  .modal:not(#galleryModal) .page-content h2.h3,
  .page-content .modal:not(#galleryModal) h2.h3,
  .modal:not(#galleryModal) .page-content .h3.h2,
  .page-content .modal:not(#galleryModal) .h3.h2,
  .modal:not(#galleryModal) .page-content h3.h3,
  .page-content .modal:not(#galleryModal) h3.h3,
  .modal:not(#galleryModal) .page-content .h3,
  .page-content .modal:not(#galleryModal) .h3,
  .page-content .modal:not(#galleryModal) .home-text h1.h3,
  .modal:not(#galleryModal) .home-text .page-content h1.h3,
  .page-content .home-text .modal:not(#galleryModal) h1.h3,
  .home-text .modal:not(#galleryModal) .page-content h1.h3,
  .page-content .modal:not(#galleryModal) .home-text .h3.h1,
  .modal:not(#galleryModal) .home-text .page-content .h3.h1,
  .page-content .home-text .modal:not(#galleryModal) .h3.h1,
  .home-text .modal:not(#galleryModal) .page-content .h3.h1 {
    font-size: 35px;
    line-height: 40px;
  }
  .main-title.fs-40, .modal:not(#galleryModal) .fs-40.modal-title, .modal:not(#galleryModal) .fs-40.main-title, .modal:not(#galleryModal) .fs-40.modal-title, .modal:not(#galleryModal) .page-content h2.fs-40, .page-content .modal:not(#galleryModal) h2.fs-40, .modal:not(#galleryModal) .page-content .fs-40.h2, .page-content .modal:not(#galleryModal) .fs-40.h2,
  .modal:not(#galleryModal) .page-content h3.fs-40,
  .page-content .modal:not(#galleryModal) h3.fs-40,
  .modal:not(#galleryModal) .page-content .fs-40.h3,
  .page-content .modal:not(#galleryModal) .fs-40.h3, .modal:not(#galleryModal) .home-text h1.fs-40, .home-text .modal:not(#galleryModal) h1.fs-40, .modal:not(#galleryModal) .home-text .fs-40.h1, .home-text .modal:not(#galleryModal) .fs-40.h1, .home-text h1.fs-40, .home-text .fs-40.h1, .page-content h2.fs-40, .page-content .fs-40.h2,
  .page-content h3.fs-40,
  .page-content .fs-40.h3 {
    font-size: 40px;
    line-height: 50px;
  }
  .main-title.fs-55, .modal:not(#galleryModal) .fs-55.modal-title, .modal:not(#galleryModal) .fs-55.main-title, .modal:not(#galleryModal) .fs-55.modal-title, .modal:not(#galleryModal) .page-content h2.fs-55, .page-content .modal:not(#galleryModal) h2.fs-55, .modal:not(#galleryModal) .page-content .fs-55.h2, .page-content .modal:not(#galleryModal) .fs-55.h2,
  .modal:not(#galleryModal) .page-content h3.fs-55,
  .page-content .modal:not(#galleryModal) h3.fs-55,
  .modal:not(#galleryModal) .page-content .fs-55.h3,
  .page-content .modal:not(#galleryModal) .fs-55.h3, .modal:not(#galleryModal) .home-text h1.fs-55, .home-text .modal:not(#galleryModal) h1.fs-55, .modal:not(#galleryModal) .home-text .fs-55.h1, .home-text .modal:not(#galleryModal) .fs-55.h1, .home-text h1.fs-55, .home-text .fs-55.h1, .page-content h2.fs-55, .page-content .fs-55.h2,
  .page-content h3.fs-55,
  .page-content .fs-55.h3 {
    font-size: 55px;
    line-height: 65px;
  }
}

.half-fluid .left-half,
.half-fluid .right-half {
  position: relative;
}
.half-fluid .left-half .image,
.half-fluid .right-half .image {
  background-size: cover;
  background-position: center;
  min-height: 255px;
  height: 100%;
}
@media (min-width: 768px) {
  .half-fluid .left-half .image,
  .half-fluid .right-half .image {
    min-height: 350px;
  }
  .half-fluid .left-half .image img,
  .half-fluid .right-half .image img {
    transform: translate(-50%, 50%);
  }
}
@media (min-width: 768px) {
  .half-fluid .left-half img,
  .half-fluid .right-half img {
    transform: translate(-50%, 50%);
  }
}
@media (max-width: 991.98px) {
  .half-fluid .left-half img,
  .half-fluid .right-half img {
    width: 12.5%;
  }
}
@media (max-width: 991.98px) {
  .half-fluid {
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .half-fluid .left-half,
  .half-fluid .right-half {
    padding: 0px;
    max-width: 100vw;
  }
  .half-fluid .left-half {
    padding-left: 0 !important;
    position: absolute;
    left: 0;
    right: 65%;
    margin-left: auto;
    width: auto;
    z-index: 1;
  }
  .half-fluid .right-half {
    padding-right: 0 !important;
    position: absolute;
    right: 0;
    left: 70%;
    margin-left: auto;
    width: auto;
    z-index: 1;
  }
}
@media (min-width: 1280px) {
  .half-fluid .left-half {
    right: 55%;
  }
  .half-fluid .right-half {
    left: 54%;
  }
  .half-fluid .left-half .image.image-big,
  .half-fluid .right-half .image.image-big {
    min-height: 555px;
  }
}

.row-decoration hr {
  background-color: #707070;
  margin: 0;
  opacity: 1;
}
.row-decoration img.isotipo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 20px;
  padding-right: 20px;
}

.custom-list ul, .home-text ul {
  text-align: start;
  list-style: none;
}
.custom-list ul li, .home-text ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 16px;
}
.custom-list ul li::before, .home-text ul li::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(50%);
  width: 16px;
  height: 12px;
  background: url(/media/images/website/check.svg) no-repeat;
  background-size: contain;
}

.bg-blacker {
  background-color: #101820;
}
.bg-blacker.mb-1 {
  margin-bottom: 2px !important;
}
.bg-blacker.mt-1 {
  margin-top: 2px !important;
}

.bg-pale-grey {
  background-color: #f5f7f7;
}

@media (min-width: 768px) {
  .page-content .column-2 {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 45px;
         column-gap: 45px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
  }
  .page-content .column-2 h2, .page-content .column-2 .h2,
  .page-content .column-2 h3,
  .page-content .column-2 .h3 {
    -moz-column-break-before: column;
         break-before: column;
    page-break-before: always;
  }
}
.page-content .custom-list.column-3 ul li, .page-content .column-3.home-text ul li {
  padding-left: 26px;
}
.page-content .custom-list.column-3 ol li::marker, .page-content .column-3.home-text ol li::marker {
  color: #c19046;
  font-size: 20px;
}
.page-content .banner-bottom {
  background: linear-gradient(to top, white 0%, white 70%, black 70%, black 100%);
}
.page-content .custom-table table {
  counter-reset: cell-number;
}
.page-content .custom-table table tr:nth-of-type(-n+2) td h3, .page-content .custom-table table tr:nth-of-type(-n+2) td .h3, .page-content .custom-table table tr:nth-of-type(3) td:first-child h3, .page-content .custom-table table tr:nth-of-type(3) td:first-child .h3 {
  display: flex;
  gap: 15px;
}
.page-content .custom-table table tr:nth-of-type(-n+2) td h3::before, .page-content .custom-table table tr:nth-of-type(-n+2) td .h3::before, .page-content .custom-table table tr:nth-of-type(3) td:first-child h3::before, .page-content .custom-table table tr:nth-of-type(3) td:first-child .h3::before {
  counter-increment: cell-number;
  content: counter(cell-number) " ";
  font-family: "Albert Sans", sans-serif !important;
  font-optical-sizing: auto;
  color: #c19046;
}
@media (min-width: 992px) {
  .page-content .text-with-padding h2, .page-content .text-with-padding .h2 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1400px) {
  .page-content .text-with-padding h2, .page-content .text-with-padding .h2 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.main-slider {
  position: relative;
  width: 100%;
  max-width: 2048px;
  margin-left: auto;
  margin-right: auto;
  height: calc(100vh - 70px);
  min-height: 260px;
  background-position: center center;
  background-size: cover;
  margin-bottom: 30px;
}
.main-slider #lexi-video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 576px) {
  .main-slider {
    height: 40vh;
    max-height: 480px;
  }
}
@media (min-width: 992px) {
  .main-slider {
    height: calc(100vh - 70px);
    max-height: unset;
  }
}
@media (min-width: 1280px) {
  .main-slider {
    height: calc(100vh - 86.5px);
    max-height: 1080px;
  }
}
@media screen and (min-width: 1280px) and (max-height: 628px) {
  .main-slider {
    height: calc(127vh - 86.5px);
  }
}
.main-slider.main-error small p, .main-slider.main-error .small p {
  letter-spacing: normal;
  line-height: normal;
  margin-bottom: 0;
  color: white !important;
  text-align: center;
}
@media (min-width: 1280px) {
  .main-slider.main-error small p, .main-slider.main-error .small p {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 33px;
  }
}
@media (min-width: 1280px) {
  .main-slider.main-error {
    height: calc(90vh - 86.5px);
  }
}
.main-slider .caption {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.main-slider .caption .main-title, .main-slider .caption .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .main-slider .caption .modal-title, .main-slider .caption .modal:not(#galleryModal) .main-title, .main-slider .caption .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .main-slider .caption .main-title, .modal:not(#galleryModal) .main-slider .caption .modal-title, .main-slider .caption .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .main-slider .caption h2, .main-slider .caption .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .main-slider .caption h2, .main-slider .caption .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .main-slider .caption .h2, .main-slider .caption .page-content .modal:not(#galleryModal) .h2, .page-content .modal:not(#galleryModal) .main-slider .caption .h2,
.main-slider .caption .modal:not(#galleryModal) .page-content h3,
.modal:not(#galleryModal) .page-content .main-slider .caption h3,
.main-slider .caption .page-content .modal:not(#galleryModal) h3,
.page-content .modal:not(#galleryModal) .main-slider .caption h3,
.main-slider .caption .modal:not(#galleryModal) .page-content .h3,
.modal:not(#galleryModal) .page-content .main-slider .caption .h3,
.main-slider .caption .page-content .modal:not(#galleryModal) .h3,
.page-content .modal:not(#galleryModal) .main-slider .caption .h3, .main-slider .caption .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .main-slider .caption h1, .main-slider .caption .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .main-slider .caption h1, .main-slider .caption .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .main-slider .caption .h1, .main-slider .caption .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .main-slider .caption .h1, .main-slider .caption .home-text h1, .home-text .main-slider .caption h1, .main-slider .caption .home-text .h1, .home-text .main-slider .caption .h1, .main-slider .caption .page-content h2, .page-content .main-slider .caption h2, .main-slider .caption .page-content .h2, .page-content .main-slider .caption .h2,
.main-slider .caption .page-content h3,
.page-content .main-slider .caption h3,
.main-slider .caption .page-content .h3,
.page-content .main-slider .caption .h3 {
  font-weight: 600;
}
.main-slider .caption small, .main-slider .caption .small {
  display: block;
  font-size: 18px;
  padding: 10px 0;
}
.main-slider .caption-button {
  position: absolute;
  top: 100%;
  transform: translateY(calc(-100% - 5px));
  left: 0;
  right: 0;
}

.wrapper-slider-search {
  background-color: #e8e8e8;
}
@media (min-width: 992px) {
  .wrapper-slider-search {
    background-color: unset;
  }
  .wrapper-slider-search.center-form {
    position: relative;
    z-index: 1;
  }
  .wrapper-slider-search.center-form .main-slider .caption {
    top: 29%;
  }
  .wrapper-slider-search.center-form .main-slider.main-error .caption {
    top: 35%;
  }
  .wrapper-slider-search.center-form .buscador {
    top: 70%;
    position: absolute;
  }
}
div.mini-banner,
a.mini-banner {
  display: block;
  text-decoration: none;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  div.mini-banner,
  a.mini-banner {
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  div.mini-banner,
  a.mini-banner {
    margin-bottom: 30px;
  }
}
div.mini-banner:before,
a.mini-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background: linear-gradient(to bottom, #e1bd7a 0%, #c19046 100%);
  transition: all ease-in-out 0.3s;
  opacity: 0;
  z-index: 2;
}
div.mini-banner .content-banner,
a.mini-banner .content-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 3;
}
div.mini-banner .content-banner img,
a.mini-banner .content-banner img {
  transition: all ease-in-out 0.3s;
  opacity: 0;
  scale: 3;
  transform-origin: center;
}
div.mini-banner .content-hover,
a.mini-banner .content-hover {
  transition: all ease-in-out 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  transform: scaleY(0);
  transform-origin: center bottom;
  opacity: 0;
}
div.mini-banner .content-hover .btn, div.mini-banner .content-hover .property-data .nav-tabs li a, .property-data .nav-tabs li div.mini-banner .content-hover a, div.mini-banner .content-hover .property-data .btn-collapse-desc, .property-data div.mini-banner .content-hover .btn-collapse-desc,
div.mini-banner .content-hover .property-data .btn-collapse,
.property-data div.mini-banner .content-hover .btn-collapse, div.mini-banner .content-hover .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia div.mini-banner .content-hover .read-more, div.mini-banner .content-hover .noticia .text-new .read-more, .noticia .text-new div.mini-banner .content-hover .read-more,
a.mini-banner .content-hover .btn,
a.mini-banner .content-hover .property-data .nav-tabs li a,
.property-data .nav-tabs li a.mini-banner .content-hover a,
a.mini-banner .content-hover .property-data .btn-collapse-desc,
.property-data a.mini-banner .content-hover .btn-collapse-desc,
a.mini-banner .content-hover .property-data .btn-collapse,
.property-data a.mini-banner .content-hover .btn-collapse,
a.mini-banner .content-hover .page-news .sidebar-news .last-news .noticia .read-more,
.page-news .sidebar-news .last-news .noticia a.mini-banner .content-hover .read-more,
a.mini-banner .content-hover .noticia .text-new .read-more,
.noticia .text-new a.mini-banner .content-hover .read-more {
  color: white;
}
div.mini-banner .content-hover .col-button:not(.order-last)::after,
a.mini-banner .content-hover .col-button:not(.order-last)::after {
  content: "";
  display: block;
  margin: auto;
  width: 40px;
  height: 1px;
  background-color: #000000;
}
div.mini-banner .content-hover .col-button.order-last,
a.mini-banner .content-hover .col-button.order-last {
  margin-bottom: 30px;
}
@media (max-width: 1399.98px) {
  div.mini-banner .content-hover .col-button.order-last,
  a.mini-banner .content-hover .col-button.order-last {
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  div.mini-banner .content-hover .col-button.order-last,
  a.mini-banner .content-hover .col-button.order-last {
    margin-bottom: 20px;
  }
}
div.mini-banner:hover:before,
a.mini-banner:hover:before {
  opacity: 0.71;
}
div.mini-banner:hover .content-banner img,
a.mini-banner:hover .content-banner img {
  opacity: 1;
  scale: 1;
}
@media (min-width: 1280px) and (max-width: 1399.98px) {
  div.mini-banner:hover .content-banner img,
  a.mini-banner:hover .content-banner img {
    scale: 0.75;
  }
}
@media (min-width: 992px) and (max-width: 1279.98px) {
  div.mini-banner:hover .content-banner img,
  a.mini-banner:hover .content-banner img {
    scale: 0.35;
  }
}
div.mini-banner:hover .content-hover,
a.mini-banner:hover .content-hover {
  opacity: 1;
  transform: scaleY(1);
}

.buscador {
  position: fixed;
  height: calc(100% - 0px);
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999999999;
  background: rgba(0, 0, 0, 0.7);
  background: rgba(232, 232, 232, 0.95);
}
@media (max-width: 767.98px) {
  .buscador > .row, .sidebar-content-full .property-list-list .property-list-box .buscador > .property, .page-content .custom-list.column-3 .buscador > ul, .page-content .column-3.home-text .buscador > ul, .page-content .custom-list.column-3 .buscador > ol, .page-content .column-3.home-text .buscador > ol, .page-content .custom-table table .buscador > tr {
    margin-left: 0;
    margin-right: 0;
  }
}
.buscador .responsive-search-button {
  display: inline-block;
  width: 44px;
  height: 44px;
  background-color: #c19046;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.buscador .btn, .buscador .property-data .nav-tabs li a, .property-data .nav-tabs li .buscador a, .buscador .property-data .btn-collapse-desc, .property-data .buscador .btn-collapse-desc,
.buscador .property-data .btn-collapse,
.property-data .buscador .btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .buscador .read-more, .buscador .noticia .text-new .read-more, .noticia .text-new .buscador .read-more {
  padding: 0 5px;
}
@media (min-width: 992px) {
  .buscador .btn, .buscador .property-data .nav-tabs li a, .property-data .nav-tabs li .buscador a, .buscador .property-data .btn-collapse-desc, .property-data .buscador .btn-collapse-desc,
  .buscador .property-data .btn-collapse,
  .property-data .buscador .btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .buscador .read-more, .buscador .noticia .text-new .read-more, .noticia .text-new .buscador .read-more {
    min-height: 57px;
    height: 57px;
  }
}
@media (min-width: 1400px) {
  .buscador .btn, .buscador .property-data .nav-tabs li a, .property-data .nav-tabs li .buscador a, .buscador .property-data .btn-collapse-desc, .property-data .buscador .btn-collapse-desc,
  .buscador .property-data .btn-collapse,
  .property-data .buscador .btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .buscador .read-more, .buscador .noticia .text-new .read-more, .noticia .text-new .buscador .read-more {
    min-height: 65px;
    height: 65px;
  }
}
.buscador .btn.btn-white, .buscador .property-data .nav-tabs li a.btn-white, .property-data .nav-tabs li .buscador a.btn-white, .buscador .property-data .btn-white.btn-collapse-desc, .property-data .buscador .btn-white.btn-collapse-desc,
.buscador .property-data .btn-white.btn-collapse,
.property-data .buscador .btn-white.btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .btn-white.read-more, .page-news .sidebar-news .last-news .noticia .buscador .btn-white.read-more, .buscador .noticia .text-new .btn-white.read-more, .noticia .text-new .buscador .btn-white.read-more {
  background-color: #e0e0e0;
  color: #c19046;
}
@media (max-width: 991.98px) {
  .buscador .btn.btn-white, .buscador .property-data .nav-tabs li a.btn-white, .property-data .nav-tabs li .buscador a.btn-white, .buscador .property-data .btn-white.btn-collapse-desc, .property-data .buscador .btn-white.btn-collapse-desc,
  .buscador .property-data .btn-white.btn-collapse,
  .property-data .buscador .btn-white.btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .btn-white.read-more, .page-news .sidebar-news .last-news .noticia .buscador .btn-white.read-more, .buscador .noticia .text-new .btn-white.read-more, .noticia .text-new .buscador .btn-white.read-more {
    background-color: #bfc2c3;
    color: #000000;
  }
}
.buscador .btn.btn-filter, .buscador .property-data .nav-tabs li a.btn-filter, .property-data .nav-tabs li .buscador a.btn-filter, .buscador .property-data .btn-filter.btn-collapse-desc, .property-data .buscador .btn-filter.btn-collapse-desc,
.buscador .property-data .btn-filter.btn-collapse,
.property-data .buscador .btn-filter.btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .btn-filter.read-more, .page-news .sidebar-news .last-news .noticia .buscador .btn-filter.read-more, .buscador .noticia .text-new .btn-filter.read-more, .noticia .text-new .buscador .btn-filter.read-more {
  border-left: 1px solid #c19046;
  border-right: 1px solid #c19046;
}
@media (max-width: 991.98px) {
  .buscador .btn.btn-filter, .buscador .property-data .nav-tabs li a.btn-filter, .property-data .nav-tabs li .buscador a.btn-filter, .buscador .property-data .btn-filter.btn-collapse-desc, .property-data .buscador .btn-filter.btn-collapse-desc,
  .buscador .property-data .btn-filter.btn-collapse,
  .property-data .buscador .btn-filter.btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .btn-filter.read-more, .page-news .sidebar-news .last-news .noticia .buscador .btn-filter.read-more, .buscador .noticia .text-new .btn-filter.read-more, .noticia .text-new .buscador .btn-filter.read-more {
    border: unset;
  }
}
@media (max-width: 767.98px) {
  .buscador .btn.btn-filter, .buscador .property-data .nav-tabs li a.btn-filter, .property-data .nav-tabs li .buscador a.btn-filter, .buscador .property-data .btn-filter.btn-collapse-desc, .property-data .buscador .btn-filter.btn-collapse-desc,
  .buscador .property-data .btn-filter.btn-collapse,
  .property-data .buscador .btn-filter.btn-collapse, .buscador .page-news .sidebar-news .last-news .noticia .btn-filter.read-more, .page-news .sidebar-news .last-news .noticia .buscador .btn-filter.read-more, .buscador .noticia .text-new .btn-filter.read-more, .noticia .text-new .buscador .btn-filter.read-more {
    background-color: transparent;
  }
}
.buscador .select2-search__field::placeholder,
.buscador .select2-search__field:-ms-input-placeholder,
.buscador .select2-search__field::-ms-input-placeholder {
  color: #181a19;
  font-size: 15px !important;
  letter-spacing: 0.3px;
  font-weight: 400 !important;
}
.buscador input,
.buscador .form-control,
.buscador .hasCustomSelect,
.buscador span.customSelect,
.buscador span.customSelectInner,
.buscador .select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border: 0;
  color: #181a19;
  font-size: 15px !important;
  letter-spacing: 0.3px;
  font-weight: 400 !important;
  background-color: transparent;
  box-shadow: unset !important;
  padding-left: 0;
}
.buscador input::-moz-placeholder, .buscador .form-control::-moz-placeholder, .buscador .hasCustomSelect::-moz-placeholder, .buscador span.customSelect::-moz-placeholder, .buscador span.customSelectInner::-moz-placeholder, .buscador .select2-container--default .select2-selection--multiple::-moz-placeholder {
  color: #181a19;
  font-size: 15px !important;
  letter-spacing: 0.3px;
  font-weight: 400 !important;
}
.buscador input::placeholder,
.buscador .form-control::placeholder,
.buscador .hasCustomSelect::placeholder,
.buscador span.customSelect::placeholder,
.buscador span.customSelectInner::placeholder,
.buscador .select2-container--default .select2-selection--multiple::placeholder {
  color: #181a19;
  font-size: 15px !important;
  letter-spacing: 0.3px;
  font-weight: 400 !important;
}
.buscador .row-inputs .col-input {
  height: 57px;
  background-color: #ffffff;
}
.buscador .row-inputs .col-input .form-group {
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .buscador .row-inputs .col-input {
    margin-bottom: 2px;
  }
  .buscador .row-inputs .col-input.col-6:nth-child(1n) {
    border-right: 1px solid rgba(232, 232, 232, 0.95);
  }
  .buscador .row-inputs .col-input.col-6:nth-child(2n) {
    border-left: 1px solid rgba(232, 232, 232, 0.95);
  }
}
@media (min-width: 992px) {
  .buscador .row-inputs.gy-lg-1 {
    --bs-gutter-y: 2px;
  }
  .buscador .row-inputs .col-input:not(:last-child):not(.last-before-referencia):not(.referencia) .form-group {
    position: relative;
  }
  .buscador .row-inputs .col-input:not(:last-child):not(.last-before-referencia):not(.referencia) .form-group:after {
    content: "";
    position: absolute;
    right: -13.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 38px;
    background-color: #e3e3e3;
  }
}
@media (min-width: 1400px) {
  .buscador .row-inputs {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .buscador .row-inputs.gy-xl-2 {
    --bs-gutter-y: 9px;
  }
  .buscador .row-inputs .col-input {
    outline: 4px solid white;
  }
}
.buscador .row-inputs .col-referencia {
  background-color: #e5e5e5;
}
@media (max-width: 767.98px) {
  .buscador .row-inputs .col-referencia {
    border: 2px solid white;
  }
}
.buscador .row-inputs .col-referencia input::-moz-placeholder {
  background-color: #e5e5e5;
}
.buscador .row-inputs .col-referencia .form-control,
.buscador .row-inputs .col-referencia input,
.buscador .row-inputs .col-referencia input::placeholder {
  background-color: #e5e5e5;
}
.buscador .row-status .form-group {
  min-height: 45px;
  transition: all ease-in-out 0.3s;
}
.buscador .row-status .form-group .checkcontainer {
  transition: all ease-in-out 0.3s;
  text-transform: uppercase;
  color: #181a19;
  font-size: 15px !important;
  letter-spacing: 0px;
  font-weight: 400 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.buscador .row-status .form-group .checkcontainer:has(input:checked) {
  background-color: rgba(193, 144, 70, 0.8);
  color: white;
}
@media (max-width: 991.98px) {
  .buscador .row-status .form-group .checkcontainer {
    font-size: 14px !important;
  }
}
@media (max-width: 767.98px) {
  .buscador .row-status {
    margin-bottom: 2px;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .buscador .row-status.row-status-lit .form-group .checkcontainer {
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
  }
  .buscador .row-status.row-status-lit .form-group .checkcontainer .checkmark {
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }
  .buscador .row-status.row-status-lit .form-group .checkcontainer .checkmark::after {
    border-width: 0 2px 2px 0;
    left: 9.5px;
    top: 13px;
    width: 4.5px;
    height: 10.5px;
  }
}
@media (min-width: 992px) {
  .buscador .row-buttons .mt-lg-1 {
    margin-top: 1px !important;
  }
}

body.home .buscador {
  display: none;
}

body:not(.home) .buscador {
  display: none;
}

@media (min-width: 768px) {
  .buscador {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    z-index: 1;
    background: none;
  }
  .buscador.b-home {
    display: block !important;
  }
  .buscador.b-properties {
    display: block !important;
    overflow-x: hidden;
  }
}
.select2-container {
  z-index: 99999999;
}

.buscador_avanzado label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2.1px;
  color: #c19046;
  text-transform: uppercase;
  margin: 10px 0;
}
.buscador_avanzado .bg-white textarea, .buscador_avanzado .property-data .nav-tabs li a.active textarea, .property-data .nav-tabs li .buscador_avanzado a.active textarea,
.buscador_avanzado .bg-white span.customSelect,
.buscador_avanzado .property-data .nav-tabs li a.active span.customSelect,
.property-data .nav-tabs li .buscador_avanzado a.active span.customSelect,
.buscador_avanzado .bg-white input[type=text],
.buscador_avanzado .property-data .nav-tabs li a.active input[type=text],
.property-data .nav-tabs li .buscador_avanzado a.active input[type=text],
.buscador_avanzado .bg-white input[type=password],
.buscador_avanzado .property-data .nav-tabs li a.active input[type=password],
.property-data .nav-tabs li .buscador_avanzado a.active input[type=password],
.buscador_avanzado .bg-white .form-select,
.buscador_avanzado .property-data .nav-tabs li a.active .form-select,
.property-data .nav-tabs li .buscador_avanzado a.active .form-select,
.buscador_avanzado .bg-white .select2-container--default .select2-selection--multiple,
.buscador_avanzado .property-data .nav-tabs li a.active .select2-container--default .select2-selection--multiple,
.property-data .nav-tabs li .buscador_avanzado a.active .select2-container--default .select2-selection--multiple,
.buscador_avanzado .bg-white .select2-container-multi .select2-choices,
.buscador_avanzado .property-data .nav-tabs li a.active .select2-container-multi .select2-choices,
.property-data .nav-tabs li .buscador_avanzado a.active .select2-container-multi .select2-choices,
.buscador_avanzado .bg-white .select2-container .select2-choice,
.buscador_avanzado .property-data .nav-tabs li a.active .select2-container .select2-choice,
.property-data .nav-tabs li .buscador_avanzado a.active .select2-container .select2-choice {
  border: 1px solid #ebebeb;
  background-color: #f8f9f9;
}
.buscador_avanzado input::-moz-placeholder {
  min-height: 60px !important;
  color: #000;
}
.buscador_avanzado .btn, .buscador_avanzado .property-data .nav-tabs li a, .property-data .nav-tabs li .buscador_avanzado a, .buscador_avanzado .property-data .btn-collapse-desc, .property-data .buscador_avanzado .btn-collapse-desc,
.buscador_avanzado .property-data .btn-collapse,
.property-data .buscador_avanzado .btn-collapse, .buscador_avanzado .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .buscador_avanzado .read-more, .buscador_avanzado .noticia .text-new .read-more, .noticia .text-new .buscador_avanzado .read-more,
.buscador_avanzado input,
.buscador_avanzado input::placeholder {
  min-height: 60px !important;
  color: #000;
}
.buscador_avanzado .form-control,
.buscador_avanzado .hasCustomSelect,
.buscador_avanzado span.customSelect,
.buscador_avanzado span.customSelectInner,
.buscador_avanzado .select2-container--default .select2-selection--multiple,
.buscador_avanzado .customSelect {
  min-height: 60px;
}
.buscador_avanzado .customSelectInner {
  padding-top: 15px;
  background: url(/media/images/website/chevron-down.svg) no-repeat 96.5% 55%;
}
.buscador_avanzado .select2-selection--multiple::after {
  right: 15px;
}
.buscador_avanzado .select2-container--default .select2-selection--multiple .select2-selection__choice,
.buscador_avanzado .select2-container--default .select2-results__option {
  color: #181a19;
}
.buscador_avanzado .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-left: 0;
}
.buscador_avanzado .select2-container--default .select2-selection--multiple .select2-selection__choice {
  line-height: 40px;
  margin-top: 16px;
}
.buscador_avanzado .select2-selection__rendered,
.buscador_avanzado .select2-container .select2-search--inline {
  padding-left: 0;
}
.buscador_avanzado .select2-selection__rendered .select2-search__field,
.buscador_avanzado .select2-container .select2-search--inline .select2-search__field {
  color: #181a19;
  min-height: 60px;
}

#featured-properties,
#ofertas-properties,
#similares-properties,
#similares-properties-modal,
#similares-properties-bajada-modal {
  overflow: hidden;
}
#featured-properties .slick-list,
#ofertas-properties .slick-list,
#similares-properties .slick-list,
#similares-properties-modal .slick-list,
#similares-properties-bajada-modal .slick-list {
  overflow: visible;
}
#featured-properties .slides-item,
#ofertas-properties .slides-item,
#similares-properties .slides-item,
#similares-properties-modal .slides-item,
#similares-properties-bajada-modal .slides-item {
  margin: 20px 12.5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all ease-in-out 0.3s;
}
#featured-properties .slides-item:not(.slick-active),
#ofertas-properties .slides-item:not(.slick-active),
#similares-properties .slides-item:not(.slick-active),
#similares-properties-modal .slides-item:not(.slick-active),
#similares-properties-bajada-modal .slides-item:not(.slick-active) {
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  #featured-properties .slides-item,
  #ofertas-properties .slides-item,
  #similares-properties .slides-item,
  #similares-properties-modal .slides-item,
  #similares-properties-bajada-modal .slides-item {
    margin: 0 10px;
  }
}
#featured-properties .slides-item a.property-featured,
#ofertas-properties .slides-item a.property-featured,
#similares-properties .slides-item a.property-featured,
#similares-properties-modal .slides-item a.property-featured,
#similares-properties-bajada-modal .slides-item a.property-featured {
  text-decoration: none;
  display: block;
  transition: all ease-in-out 0.3s;
}
#featured-properties .slides-item a.property-featured .porta-img,
#ofertas-properties .slides-item a.property-featured .porta-img,
#similares-properties .slides-item a.property-featured .porta-img,
#similares-properties-modal .slides-item a.property-featured .porta-img,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 20px;
}
@media (max-width: 991.98px) {
  #featured-properties .slides-item a.property-featured .porta-img,
  #ofertas-properties .slides-item a.property-featured .porta-img,
  #similares-properties .slides-item a.property-featured .porta-img,
  #similares-properties-modal .slides-item a.property-featured .porta-img,
  #similares-properties-bajada-modal .slides-item a.property-featured .porta-img {
    margin: 5px;
  }
}
#featured-properties .slides-item a.property-featured .porta-img img,
#ofertas-properties .slides-item a.property-featured .porta-img img,
#similares-properties .slides-item a.property-featured .porta-img img,
#similares-properties-modal .slides-item a.property-featured .porta-img img,
#similares-properties-bajada-modal .slides-item a.property-featured .porta-img img {
  width: 100%;
  transition: all ease-in-out 0.3s;
}
#featured-properties .slides-item:hover a.property-featured .porta-img img.img-fluid, #featured-properties .slides-item:hover a.property-featured .porta-img img.img-left, #featured-properties .slides-item:hover a.property-featured .porta-img img.img-right, #featured-properties .slides-item:hover a.property-featured .porta-img .page-content .custom-table table tr td img, .page-content .custom-table table tr td #featured-properties .slides-item:hover a.property-featured .porta-img img,
#ofertas-properties .slides-item:hover a.property-featured .porta-img img.img-fluid,
#ofertas-properties .slides-item:hover a.property-featured .porta-img img.img-left,
#ofertas-properties .slides-item:hover a.property-featured .porta-img img.img-right,
#ofertas-properties .slides-item:hover a.property-featured .porta-img .page-content .custom-table table tr td img,
.page-content .custom-table table tr td #ofertas-properties .slides-item:hover a.property-featured .porta-img img,
#similares-properties .slides-item:hover a.property-featured .porta-img img.img-fluid,
#similares-properties .slides-item:hover a.property-featured .porta-img img.img-left,
#similares-properties .slides-item:hover a.property-featured .porta-img img.img-right,
#similares-properties .slides-item:hover a.property-featured .porta-img .page-content .custom-table table tr td img,
.page-content .custom-table table tr td #similares-properties .slides-item:hover a.property-featured .porta-img img,
#similares-properties-modal .slides-item:hover a.property-featured .porta-img img.img-fluid,
#similares-properties-modal .slides-item:hover a.property-featured .porta-img img.img-left,
#similares-properties-modal .slides-item:hover a.property-featured .porta-img img.img-right,
#similares-properties-modal .slides-item:hover a.property-featured .porta-img .page-content .custom-table table tr td img,
.page-content .custom-table table tr td #similares-properties-modal .slides-item:hover a.property-featured .porta-img img,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .porta-img img.img-fluid,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .porta-img img.img-left,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .porta-img img.img-right,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .porta-img .page-content .custom-table table tr td img,
.page-content .custom-table table tr td #similares-properties-bajada-modal .slides-item:hover a.property-featured .porta-img img {
  transform: scale(1.05);
}
#featured-properties .slides-item:hover a.property-featured .prices,
#ofertas-properties .slides-item:hover a.property-featured .prices,
#similares-properties .slides-item:hover a.property-featured .prices,
#similares-properties-modal .slides-item:hover a.property-featured .prices,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .prices {
  background-color: #c19046;
  color: white;
  padding-left: unset;
}
#featured-properties .slides-item:hover a.property-featured .prices i,
#ofertas-properties .slides-item:hover a.property-featured .prices i,
#similares-properties .slides-item:hover a.property-featured .prices i,
#similares-properties-modal .slides-item:hover a.property-featured .prices i,
#similares-properties-bajada-modal .slides-item:hover a.property-featured .prices i {
  transition: all ease-in-out 0.3s;
  transform: scale(1);
  opacity: 1;
}

.noticia a {
  text-decoration: none !important;
  transition: all ease-in-out 0.3s;
}
.noticia .marco-foto {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.noticia .marco-foto img {
  transition: all ease-in-out 1s;
}
.noticia .marco-foto .date {
  top: 8px;
  left: 7px;
}
.noticia .text-new .read-more {
  min-height: unset;
}
.noticia .text-new .date {
  margin-bottom: 20px;
}
.noticia:hover .text-new h4 a, .noticia:hover .text-new .h4 a {
  color: #c19046;
}
.noticia:hover .marco-foto img.img-fluid, .noticia:hover .marco-foto img.img-left, .noticia:hover .marco-foto img.img-right, .noticia:hover .marco-foto .page-content .custom-table table tr td img, .page-content .custom-table table tr td .noticia:hover .marco-foto img {
  transform: scale(1.05);
}
.page-news {
  padding-top: 30px;
}
.page-news .redes a {
  margin-right: 15px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: bold;
}
.page-news .redes a.facebook {
  color: #0061a8;
}
.page-news .redes a.twitter {
  color: #0bd1f5;
}
.page-news .redes a.linkedin {
  color: #00497e;
}
.page-news .redes a.pinterest {
  color: #e60000;
}
.page-news .redes a i {
  font-size: 21px;
}
.page-news .redes a:hover {
  scale: 0.8;
}
.page-news .sidebar-news h2, .page-news .sidebar-news .h2 {
  font-size: 20px;
  font-weight: 500;
  color: #c19046;
  margin: 30px 0 15px;
}
.page-news .sidebar-news h2:first-child, .page-news .sidebar-news .h2:first-child {
  margin-top: 0px;
}
.page-news .sidebar-news .list-group .list-group-item {
  font-size: 14px;
  padding-left: 2px;
  line-height: 1.8;
  color: #000000;
  background-color: transparent;
  text-transform: uppercase;
  border: 0;
  transition: all ease-in-out 0.3s;
}
.page-news .sidebar-news .list-group .list-group-item:hover {
  color: #000000;
  font-weight: bold;
}
.page-news .sidebar-news .list-group .list-group-item.active {
  color: #c19046;
  font-weight: bold;
}
.page-news .sidebar-news .custom-form textarea, .page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form textarea, .modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form textarea, .page-news .sidebar-news .page-contact .contact-form form textarea, .page-contact .contact-form .page-news .sidebar-news form textarea, .page-news .sidebar-news #economyModal form textarea, #economyModal .page-news .sidebar-news form textarea, .page-news .sidebar-news .property-form #requestInfoForm textarea, .property-form .page-news .sidebar-news #requestInfoForm textarea, .page-news .sidebar-news #newsletterForm2 textarea,
.page-news .sidebar-news .custom-form span.customSelect,
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form span.customSelect,
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form span.customSelect,
.page-news .sidebar-news .page-contact .contact-form form span.customSelect,
.page-contact .contact-form .page-news .sidebar-news form span.customSelect,
.page-news .sidebar-news #economyModal form span.customSelect,
#economyModal .page-news .sidebar-news form span.customSelect,
.page-news .sidebar-news .property-form #requestInfoForm span.customSelect,
.property-form .page-news .sidebar-news #requestInfoForm span.customSelect,
.page-news .sidebar-news #newsletterForm2 span.customSelect,
.page-news .sidebar-news .custom-form input[type=text],
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form input[type=text],
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form input[type=text],
.page-news .sidebar-news .page-contact .contact-form form input[type=text],
.page-contact .contact-form .page-news .sidebar-news form input[type=text],
.page-news .sidebar-news #economyModal form input[type=text],
#economyModal .page-news .sidebar-news form input[type=text],
.page-news .sidebar-news .property-form #requestInfoForm input[type=text],
.property-form .page-news .sidebar-news #requestInfoForm input[type=text],
.page-news .sidebar-news #newsletterForm2 input[type=text],
.page-news .sidebar-news .custom-form input[type=password],
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form input[type=password],
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form input[type=password],
.page-news .sidebar-news .page-contact .contact-form form input[type=password],
.page-contact .contact-form .page-news .sidebar-news form input[type=password],
.page-news .sidebar-news #economyModal form input[type=password],
#economyModal .page-news .sidebar-news form input[type=password],
.page-news .sidebar-news .property-form #requestInfoForm input[type=password],
.property-form .page-news .sidebar-news #requestInfoForm input[type=password],
.page-news .sidebar-news #newsletterForm2 input[type=password],
.page-news .sidebar-news .custom-form .form-select,
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form .form-select,
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form .form-select,
.page-news .sidebar-news .page-contact .contact-form form .form-select,
.page-contact .contact-form .page-news .sidebar-news form .form-select,
.page-news .sidebar-news #economyModal form .form-select,
#economyModal .page-news .sidebar-news form .form-select,
.page-news .sidebar-news .property-form #requestInfoForm .form-select,
.property-form .page-news .sidebar-news #requestInfoForm .form-select,
.page-news .sidebar-news #newsletterForm2 .form-select,
.page-news .sidebar-news .custom-form .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple,
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news .page-contact .contact-form form .select2-container--default .select2-selection--multiple,
.page-contact .contact-form .page-news .sidebar-news form .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news #economyModal form .select2-container--default .select2-selection--multiple,
#economyModal .page-news .sidebar-news form .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news .property-form #requestInfoForm .select2-container--default .select2-selection--multiple,
.property-form .page-news .sidebar-news #requestInfoForm .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news #newsletterForm2 .select2-container--default .select2-selection--multiple,
.page-news .sidebar-news .custom-form .select2-container-multi .select2-choices,
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices,
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form .select2-container-multi .select2-choices,
.page-news .sidebar-news .page-contact .contact-form form .select2-container-multi .select2-choices,
.page-contact .contact-form .page-news .sidebar-news form .select2-container-multi .select2-choices,
.page-news .sidebar-news #economyModal form .select2-container-multi .select2-choices,
#economyModal .page-news .sidebar-news form .select2-container-multi .select2-choices,
.page-news .sidebar-news .property-form #requestInfoForm .select2-container-multi .select2-choices,
.property-form .page-news .sidebar-news #requestInfoForm .select2-container-multi .select2-choices,
.page-news .sidebar-news #newsletterForm2 .select2-container-multi .select2-choices,
.page-news .sidebar-news .custom-form .select2-container .select2-choice,
.page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice,
.modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form .select2-container .select2-choice,
.page-news .sidebar-news .page-contact .contact-form form .select2-container .select2-choice,
.page-contact .contact-form .page-news .sidebar-news form .select2-container .select2-choice,
.page-news .sidebar-news #economyModal form .select2-container .select2-choice,
#economyModal .page-news .sidebar-news form .select2-container .select2-choice,
.page-news .sidebar-news .property-form #requestInfoForm .select2-container .select2-choice,
.property-form .page-news .sidebar-news #requestInfoForm .select2-container .select2-choice,
.page-news .sidebar-news #newsletterForm2 .select2-container .select2-choice {
  border: 1px solid #ebebeb;
}
.page-news .sidebar-news .custom-form .checkcontainer, .page-news .sidebar-news .modal:not(#galleryModal):not(#economyModal) form .checkcontainer, .modal:not(#galleryModal):not(#economyModal) .page-news .sidebar-news form .checkcontainer, .page-news .sidebar-news .page-contact .contact-form form .checkcontainer, .page-contact .contact-form .page-news .sidebar-news form .checkcontainer, .page-news .sidebar-news #economyModal form .checkcontainer, #economyModal .page-news .sidebar-news form .checkcontainer, .page-news .sidebar-news .property-form #requestInfoForm .checkcontainer, .property-form .page-news .sidebar-news #requestInfoForm .checkcontainer, .page-news .sidebar-news #newsletterForm2 .checkcontainer {
  color: #000000;
}
.page-news .sidebar-news .last-news .noticia h4 a, .page-news .sidebar-news .last-news .noticia .h4 a {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.page-news .sidebar-news .last-news .noticia h4 a:hover, .page-news .sidebar-news .last-news .noticia .h4 a:hover {
  text-decoration: underline;
}
.page-news .sidebar-news .last-news .noticia .date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.page-news .sidebar-news .last-news .noticia .read-more {
  min-height: unset;
}

.page-new .fecha {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .home-text p {
    padding-right: 1.75rem;
  }
}
@media (max-width: 1399.98px) {
  .home-text:not(.home-text-2) {
    background: linear-gradient(to bottom, white 0%, white 92%, black 92%, black 100%);
  }
  .home-text:is(.home-text-2) {
    background: #000000;
  }
}
#footer {
  padding: 90px 0 45px;
  color: #fff;
  background: #0d1319;
  position: relative;
}
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: url(/media/images/website/website-isotipo-primary.svg);
  background-position: 103.5% 50%;
  background-size: 20%;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 1;
}
@media (max-width: 767.98px) {
  #footer::before {
    background-position: -5400% 94%;
    background-size: 101%;
  }
}
#footer .container {
  position: relative;
  z-index: 1;
}
#footer a {
  text-decoration: none;
  color: #fff;
  transition: all ease-in-out 0.3s;
}
#footer a:hover {
  text-decoration: underline;
}
#footer ul {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
#footer ul .dropup .dropdown-toggle::after {
  display: none;
}
#footer ul .hidden-on-footer-nav {
  display: none;
}
#footer ul li {
  width: 47%;
  margin-bottom: 20px;
  float: left;
}
#footer ul li .dropdown-menu {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
#footer ul li .dropdown-menu li {
  float: none;
  width: auto;
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  #footer ul li {
    display: block;
    margin-bottom: 15px;
  }
}

.social-detail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #c19046;
  color: #c19046 !important;
  text-decoration: none !important;
  transition: all ease-in-out 0.3s;
  font-size: 24px;
  font-weight: 100 !important;
  padding: 8px;
}
.social-detail a#facebook {
  font-size: 21px;
}
.social-detail a:not(:last-child) {
  margin-right: 10px;
}
.social-detail a:hover {
  color: white !important;
  border-color: white !important;
}

.contact-detail p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 20px;
  color: #c19046;
}
.contact-detail p span {
  display: block;
  text-transform: uppercase;
}
.contact-detail p a {
  font-size: 15px;
  letter-spacing: normal;
  font-weight: 400;
  color: white;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.contact-detail p a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .contact-detail p {
    margin-bottom: 1.5rem;
  }
}

#footer-second {
  background: #000000;
  color: #fff;
}
#footer-second p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0 !important;
}
#footer-second p a {
  color: inherit !important;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
#footer-second p a:hover {
  text-decoration: underline;
}

.quicklinks-links {
  background: #0d1319;
  padding: 30px;
  margin-top: -22px;
}

.landings-links {
  background: #000000;
  padding: 30px;
  margin-top: -22px;
}

.quicklinks-links a,
.landings-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin: 5px 0;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.quicklinks-links a:hover,
.landings-links a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .quicklinks-links {
    margin-top: 0;
  }
  .landings-links {
    margin-top: 0;
  }
  .quicklinks-links a,
  .landings-links a {
    font-size: 12px;
  }
}
.property-title {
  background-color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .property-title {
    border-bottom: 1px solid #000000;
  }
}
.property-title .main-title, .property-title .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-title .modal-title, .property-title .modal:not(#galleryModal) .main-title, .property-title .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-title .main-title, .modal:not(#galleryModal) .property-title .modal-title, .property-title .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .property-title h2, .property-title .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .property-title h2, .property-title .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .property-title .h2, .property-title .page-content .modal:not(#galleryModal) .h2, .page-content .modal:not(#galleryModal) .property-title .h2,
.property-title .modal:not(#galleryModal) .page-content h3,
.modal:not(#galleryModal) .page-content .property-title h3,
.property-title .page-content .modal:not(#galleryModal) h3,
.page-content .modal:not(#galleryModal) .property-title h3,
.property-title .modal:not(#galleryModal) .page-content .h3,
.modal:not(#galleryModal) .page-content .property-title .h3,
.property-title .page-content .modal:not(#galleryModal) .h3,
.page-content .modal:not(#galleryModal) .property-title .h3, .property-title .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .property-title h1, .property-title .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .property-title h1, .property-title .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .property-title .h1, .property-title .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .property-title .h1, .property-title .page-content h2, .page-content .property-title h2, .property-title .page-content .h2, .page-content .property-title .h2,
.property-title .page-content h3,
.page-content .property-title h3,
.property-title .page-content .h3,
.page-content .property-title .h3, .property-title .home-text h1, .home-text .property-title h1, .property-title .home-text .h1, .home-text .property-title .h1 {
  display: inline-block;
  margin-bottom: 0 !important;
  margin-top: 10px !important;
  text-align: start;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  line-height: 21px;
}
.property-title .main-title small, .property-title .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .property-title .modal-title small, .property-title .modal:not(#galleryModal) .main-title small, .property-title .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .property-title .main-title small, .modal:not(#galleryModal) .property-title .modal-title small, .property-title .modal:not(#galleryModal) .page-content h2 small, .modal:not(#galleryModal) .page-content .property-title h2 small, .property-title .page-content .modal:not(#galleryModal) h2 small, .page-content .modal:not(#galleryModal) .property-title h2 small, .property-title .modal:not(#galleryModal) .page-content .h2 small, .modal:not(#galleryModal) .page-content .property-title .h2 small, .property-title .page-content .modal:not(#galleryModal) .h2 small, .page-content .modal:not(#galleryModal) .property-title .h2 small,
.property-title .modal:not(#galleryModal) .page-content h3 small,
.modal:not(#galleryModal) .page-content .property-title h3 small,
.property-title .page-content .modal:not(#galleryModal) h3 small,
.page-content .modal:not(#galleryModal) .property-title h3 small,
.property-title .modal:not(#galleryModal) .page-content .h3 small,
.modal:not(#galleryModal) .page-content .property-title .h3 small,
.property-title .page-content .modal:not(#galleryModal) .h3 small,
.page-content .modal:not(#galleryModal) .property-title .h3 small, .property-title .modal:not(#galleryModal) .home-text h1 small, .modal:not(#galleryModal) .home-text .property-title h1 small, .property-title .home-text .modal:not(#galleryModal) h1 small, .home-text .modal:not(#galleryModal) .property-title h1 small, .property-title .modal:not(#galleryModal) .home-text .h1 small, .modal:not(#galleryModal) .home-text .property-title .h1 small, .property-title .home-text .modal:not(#galleryModal) .h1 small, .home-text .modal:not(#galleryModal) .property-title .h1 small, .property-title .page-content h2 small, .page-content .property-title h2 small, .property-title .page-content .h2 small, .page-content .property-title .h2 small,
.property-title .page-content h3 small,
.page-content .property-title h3 small,
.property-title .page-content .h3 small,
.page-content .property-title .h3 small, .property-title .home-text h1 small, .home-text .property-title h1 small, .property-title .home-text .h1 small, .home-text .property-title .h1 small, .property-title .main-title .small, .property-title .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .property-title .modal-title .small, .property-title .modal:not(#galleryModal) .main-title .small, .property-title .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .property-title .main-title .small, .modal:not(#galleryModal) .property-title .modal-title .small, .property-title .modal:not(#galleryModal) .page-content h2 .small, .modal:not(#galleryModal) .page-content .property-title h2 .small, .property-title .page-content .modal:not(#galleryModal) h2 .small, .page-content .modal:not(#galleryModal) .property-title h2 .small, .property-title .modal:not(#galleryModal) .page-content .h2 .small, .modal:not(#galleryModal) .page-content .property-title .h2 .small, .property-title .page-content .modal:not(#galleryModal) .h2 .small, .page-content .modal:not(#galleryModal) .property-title .h2 .small,
.property-title .modal:not(#galleryModal) .page-content h3 .small,
.modal:not(#galleryModal) .page-content .property-title h3 .small,
.property-title .page-content .modal:not(#galleryModal) h3 .small,
.page-content .modal:not(#galleryModal) .property-title h3 .small,
.property-title .modal:not(#galleryModal) .page-content .h3 .small,
.modal:not(#galleryModal) .page-content .property-title .h3 .small,
.property-title .page-content .modal:not(#galleryModal) .h3 .small,
.page-content .modal:not(#galleryModal) .property-title .h3 .small, .property-title .modal:not(#galleryModal) .home-text h1 .small, .modal:not(#galleryModal) .home-text .property-title h1 .small, .property-title .home-text .modal:not(#galleryModal) h1 .small, .home-text .modal:not(#galleryModal) .property-title h1 .small, .property-title .modal:not(#galleryModal) .home-text .h1 .small, .modal:not(#galleryModal) .home-text .property-title .h1 .small, .property-title .home-text .modal:not(#galleryModal) .h1 .small, .home-text .modal:not(#galleryModal) .property-title .h1 .small, .property-title .page-content h2 .small, .page-content .property-title h2 .small, .property-title .page-content .h2 .small, .page-content .property-title .h2 .small,
.property-title .page-content h3 .small,
.page-content .property-title h3 .small,
.property-title .page-content .h3 .small,
.page-content .property-title .h3 .small, .property-title .home-text h1 .small, .home-text .property-title h1 .small, .property-title .home-text .h1 .small, .home-text .property-title .h1 .small,
.property-title .main-title span,
.property-title .modal:not(#galleryModal) .modal-title span,
.modal:not(#galleryModal) .property-title .modal-title span,
.property-title .modal:not(#galleryModal) .main-title span,
.property-title .modal:not(#galleryModal) .modal-title span,
.modal:not(#galleryModal) .property-title .main-title span,
.modal:not(#galleryModal) .property-title .modal-title span,
.property-title .modal:not(#galleryModal) .page-content h2 span,
.modal:not(#galleryModal) .page-content .property-title h2 span,
.property-title .page-content .modal:not(#galleryModal) h2 span,
.page-content .modal:not(#galleryModal) .property-title h2 span,
.property-title .modal:not(#galleryModal) .page-content .h2 span,
.modal:not(#galleryModal) .page-content .property-title .h2 span,
.property-title .page-content .modal:not(#galleryModal) .h2 span,
.page-content .modal:not(#galleryModal) .property-title .h2 span,
.property-title .modal:not(#galleryModal) .page-content h3 span,
.modal:not(#galleryModal) .page-content .property-title h3 span,
.property-title .page-content .modal:not(#galleryModal) h3 span,
.page-content .modal:not(#galleryModal) .property-title h3 span,
.property-title .modal:not(#galleryModal) .page-content .h3 span,
.modal:not(#galleryModal) .page-content .property-title .h3 span,
.property-title .page-content .modal:not(#galleryModal) .h3 span,
.page-content .modal:not(#galleryModal) .property-title .h3 span,
.property-title .modal:not(#galleryModal) .home-text h1 span,
.modal:not(#galleryModal) .home-text .property-title h1 span,
.property-title .home-text .modal:not(#galleryModal) h1 span,
.home-text .modal:not(#galleryModal) .property-title h1 span,
.property-title .modal:not(#galleryModal) .home-text .h1 span,
.modal:not(#galleryModal) .home-text .property-title .h1 span,
.property-title .home-text .modal:not(#galleryModal) .h1 span,
.home-text .modal:not(#galleryModal) .property-title .h1 span,
.property-title .page-content h2 span,
.page-content .property-title h2 span,
.property-title .page-content .h2 span,
.page-content .property-title .h2 span,
.property-title .page-content h3 span,
.page-content .property-title h3 span,
.property-title .page-content .h3 span,
.page-content .property-title .h3 span,
.property-title .home-text h1 span,
.home-text .property-title h1 span,
.property-title .home-text .h1 span,
.home-text .property-title .h1 span {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.property-title .main-title .text-secondary, .property-title .modal:not(#galleryModal) .modal-title .text-secondary, .modal:not(#galleryModal) .property-title .modal-title .text-secondary, .property-title .modal:not(#galleryModal) .main-title .text-secondary, .property-title .modal:not(#galleryModal) .modal-title .text-secondary, .modal:not(#galleryModal) .property-title .main-title .text-secondary, .modal:not(#galleryModal) .property-title .modal-title .text-secondary, .property-title .modal:not(#galleryModal) .page-content h2 .text-secondary, .modal:not(#galleryModal) .page-content .property-title h2 .text-secondary, .property-title .page-content .modal:not(#galleryModal) h2 .text-secondary, .page-content .modal:not(#galleryModal) .property-title h2 .text-secondary, .property-title .modal:not(#galleryModal) .page-content .h2 .text-secondary, .modal:not(#galleryModal) .page-content .property-title .h2 .text-secondary, .property-title .page-content .modal:not(#galleryModal) .h2 .text-secondary, .page-content .modal:not(#galleryModal) .property-title .h2 .text-secondary,
.property-title .modal:not(#galleryModal) .page-content h3 .text-secondary,
.modal:not(#galleryModal) .page-content .property-title h3 .text-secondary,
.property-title .page-content .modal:not(#galleryModal) h3 .text-secondary,
.page-content .modal:not(#galleryModal) .property-title h3 .text-secondary,
.property-title .modal:not(#galleryModal) .page-content .h3 .text-secondary,
.modal:not(#galleryModal) .page-content .property-title .h3 .text-secondary,
.property-title .page-content .modal:not(#galleryModal) .h3 .text-secondary,
.page-content .modal:not(#galleryModal) .property-title .h3 .text-secondary, .property-title .modal:not(#galleryModal) .home-text h1 .text-secondary, .modal:not(#galleryModal) .home-text .property-title h1 .text-secondary, .property-title .home-text .modal:not(#galleryModal) h1 .text-secondary, .home-text .modal:not(#galleryModal) .property-title h1 .text-secondary, .property-title .modal:not(#galleryModal) .home-text .h1 .text-secondary, .modal:not(#galleryModal) .home-text .property-title .h1 .text-secondary, .property-title .home-text .modal:not(#galleryModal) .h1 .text-secondary, .home-text .modal:not(#galleryModal) .property-title .h1 .text-secondary, .property-title .page-content h2 .text-secondary, .page-content .property-title h2 .text-secondary, .property-title .page-content .h2 .text-secondary, .page-content .property-title .h2 .text-secondary,
.property-title .page-content h3 .text-secondary,
.page-content .property-title h3 .text-secondary,
.property-title .page-content .h3 .text-secondary,
.page-content .property-title .h3 .text-secondary, .property-title .home-text h1 .text-secondary, .home-text .property-title h1 .text-secondary, .property-title .home-text .h1 .text-secondary, .home-text .property-title .h1 .text-secondary {
  vertical-align: text-top;
}
@media (max-width: 991.98px) {
  .property-title .main-title, .property-title .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-title .modal-title, .property-title .modal:not(#galleryModal) .main-title, .property-title .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-title .main-title, .modal:not(#galleryModal) .property-title .modal-title, .property-title .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .property-title h2, .property-title .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .property-title h2, .property-title .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .property-title .h2, .property-title .page-content .modal:not(#galleryModal) .h2, .page-content .modal:not(#galleryModal) .property-title .h2,
  .property-title .modal:not(#galleryModal) .page-content h3,
  .modal:not(#galleryModal) .page-content .property-title h3,
  .property-title .page-content .modal:not(#galleryModal) h3,
  .page-content .modal:not(#galleryModal) .property-title h3,
  .property-title .modal:not(#galleryModal) .page-content .h3,
  .modal:not(#galleryModal) .page-content .property-title .h3,
  .property-title .page-content .modal:not(#galleryModal) .h3,
  .page-content .modal:not(#galleryModal) .property-title .h3, .property-title .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .property-title h1, .property-title .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .property-title h1, .property-title .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .property-title .h1, .property-title .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .property-title .h1, .property-title .page-content h2, .page-content .property-title h2, .property-title .page-content .h2, .page-content .property-title .h2,
  .property-title .page-content h3,
  .page-content .property-title h3,
  .property-title .page-content .h3,
  .page-content .property-title .h3, .property-title .home-text h1, .home-text .property-title h1, .property-title .home-text .h1, .home-text .property-title .h1 {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .property-title .main-title small span:last-child, .property-title .modal:not(#galleryModal) .modal-title small span:last-child, .modal:not(#galleryModal) .property-title .modal-title small span:last-child, .property-title .modal:not(#galleryModal) .main-title small span:last-child, .property-title .modal:not(#galleryModal) .modal-title small span:last-child, .modal:not(#galleryModal) .property-title .main-title small span:last-child, .modal:not(#galleryModal) .property-title .modal-title small span:last-child, .property-title .modal:not(#galleryModal) .page-content h2 small span:last-child, .modal:not(#galleryModal) .page-content .property-title h2 small span:last-child, .property-title .page-content .modal:not(#galleryModal) h2 small span:last-child, .page-content .modal:not(#galleryModal) .property-title h2 small span:last-child, .property-title .modal:not(#galleryModal) .page-content .h2 small span:last-child, .modal:not(#galleryModal) .page-content .property-title .h2 small span:last-child, .property-title .page-content .modal:not(#galleryModal) .h2 small span:last-child, .page-content .modal:not(#galleryModal) .property-title .h2 small span:last-child,
  .property-title .modal:not(#galleryModal) .page-content h3 small span:last-child,
  .modal:not(#galleryModal) .page-content .property-title h3 small span:last-child,
  .property-title .page-content .modal:not(#galleryModal) h3 small span:last-child,
  .page-content .modal:not(#galleryModal) .property-title h3 small span:last-child,
  .property-title .modal:not(#galleryModal) .page-content .h3 small span:last-child,
  .modal:not(#galleryModal) .page-content .property-title .h3 small span:last-child,
  .property-title .page-content .modal:not(#galleryModal) .h3 small span:last-child,
  .page-content .modal:not(#galleryModal) .property-title .h3 small span:last-child, .property-title .modal:not(#galleryModal) .home-text h1 small span:last-child, .modal:not(#galleryModal) .home-text .property-title h1 small span:last-child, .property-title .home-text .modal:not(#galleryModal) h1 small span:last-child, .home-text .modal:not(#galleryModal) .property-title h1 small span:last-child, .property-title .modal:not(#galleryModal) .home-text .h1 small span:last-child, .modal:not(#galleryModal) .home-text .property-title .h1 small span:last-child, .property-title .home-text .modal:not(#galleryModal) .h1 small span:last-child, .home-text .modal:not(#galleryModal) .property-title .h1 small span:last-child, .property-title .page-content h2 small span:last-child, .page-content .property-title h2 small span:last-child, .property-title .page-content .h2 small span:last-child, .page-content .property-title .h2 small span:last-child,
  .property-title .page-content h3 small span:last-child,
  .page-content .property-title h3 small span:last-child,
  .property-title .page-content .h3 small span:last-child,
  .page-content .property-title .h3 small span:last-child, .property-title .home-text h1 small span:last-child, .home-text .property-title h1 small span:last-child, .property-title .home-text .h1 small span:last-child, .home-text .property-title .h1 small span:last-child, .property-title .main-title .small span:last-child, .property-title .modal:not(#galleryModal) .modal-title .small span:last-child, .modal:not(#galleryModal) .property-title .modal-title .small span:last-child, .property-title .modal:not(#galleryModal) .main-title .small span:last-child, .property-title .modal:not(#galleryModal) .modal-title .small span:last-child, .modal:not(#galleryModal) .property-title .main-title .small span:last-child, .modal:not(#galleryModal) .property-title .modal-title .small span:last-child, .property-title .modal:not(#galleryModal) .page-content h2 .small span:last-child, .modal:not(#galleryModal) .page-content .property-title h2 .small span:last-child, .property-title .page-content .modal:not(#galleryModal) h2 .small span:last-child, .page-content .modal:not(#galleryModal) .property-title h2 .small span:last-child, .property-title .modal:not(#galleryModal) .page-content .h2 .small span:last-child, .modal:not(#galleryModal) .page-content .property-title .h2 .small span:last-child, .property-title .page-content .modal:not(#galleryModal) .h2 .small span:last-child, .page-content .modal:not(#galleryModal) .property-title .h2 .small span:last-child,
  .property-title .modal:not(#galleryModal) .page-content h3 .small span:last-child,
  .modal:not(#galleryModal) .page-content .property-title h3 .small span:last-child,
  .property-title .page-content .modal:not(#galleryModal) h3 .small span:last-child,
  .page-content .modal:not(#galleryModal) .property-title h3 .small span:last-child,
  .property-title .modal:not(#galleryModal) .page-content .h3 .small span:last-child,
  .modal:not(#galleryModal) .page-content .property-title .h3 .small span:last-child,
  .property-title .page-content .modal:not(#galleryModal) .h3 .small span:last-child,
  .page-content .modal:not(#galleryModal) .property-title .h3 .small span:last-child, .property-title .modal:not(#galleryModal) .home-text h1 .small span:last-child, .modal:not(#galleryModal) .home-text .property-title h1 .small span:last-child, .property-title .home-text .modal:not(#galleryModal) h1 .small span:last-child, .home-text .modal:not(#galleryModal) .property-title h1 .small span:last-child, .property-title .modal:not(#galleryModal) .home-text .h1 .small span:last-child, .modal:not(#galleryModal) .home-text .property-title .h1 .small span:last-child, .property-title .home-text .modal:not(#galleryModal) .h1 .small span:last-child, .home-text .modal:not(#galleryModal) .property-title .h1 .small span:last-child, .property-title .page-content h2 .small span:last-child, .page-content .property-title h2 .small span:last-child, .property-title .page-content .h2 .small span:last-child, .page-content .property-title .h2 .small span:last-child,
  .property-title .page-content h3 .small span:last-child,
  .page-content .property-title h3 .small span:last-child,
  .property-title .page-content .h3 .small span:last-child,
  .page-content .property-title .h3 .small span:last-child, .property-title .home-text h1 .small span:last-child, .home-text .property-title h1 .small span:last-child, .property-title .home-text .h1 .small span:last-child, .home-text .property-title .h1 .small span:last-child {
    display: block;
  }
}
.property-title .referencia {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  color: #000000;
  line-height: 12px;
}
.property-title .referencia:after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background-color: #c19046;
  margin: 5px 0;
}
@media (min-width: 992px) {
  .property-title .referencia:after {
    margin-left: auto;
  }
}
.property-title .precio {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
  color: #181a19;
  line-height: 21px;
}
.property-title .precio del,
.property-title .precio small,
.property-title .precio .small {
  font-size: 14px;
  letter-spacing: 0.56px;
  color: #797979;
}
@media (max-width: 991.98px) {
  .property-title .precio {
    font-size: 20px;
    letter-spacing: 0.8px;
  }
  .property-title .precio del,
  .property-title .precio small,
  .property-title .precio .small {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}
.property-title .gx-1 .col {
  padding-left: 2px;
  padding-right: 2px;
}
.property-title .col-whats {
  width: 65px;
  flex: unset;
}
.property-title .col-whats:has(.close) {
  border: 1px solid #c9c9c9;
  border-radius: 50%;
}
.property-title.fix-property-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999999999;
}
@media (max-width: 767.98px) {
  .property-title.fix-property-header .price-responsive {
    display: none;
  }
}

.property-gallery .property-gal {
  position: relative;
  z-index: 1;
}
.property-gallery .property-gal .labels {
  left: 10px;
  top: 5px;
  bottom: unset;
}
@media (min-width: 768px) {
  .property-gallery .property-gal .labels {
    left: 12%;
  }
}
@media (min-width: 1280px) {
  .property-gallery .property-gal .labels {
    left: 17%;
  }
}
@media (min-width: 1400px) {
  .property-gallery .property-gal .labels {
    left: 21%;
  }
}
.property-gallery .property-gal .labels .badge {
  display: inline-block;
}
@media (min-width: 768px) {
  .property-gallery .slides .slick-prev {
    left: 12%;
  }
  .property-gallery .slides .slick-next {
    right: 12%;
  }
}
@media (min-width: 1280px) {
  .property-gallery .slides .slick-prev {
    left: 17%;
  }
  .property-gallery .slides .slick-next {
    right: 17%;
  }
}
@media (min-width: 1400px) {
  .property-gallery .slides .slick-prev {
    left: 21%;
  }
  .property-gallery .slides .slick-next {
    right: 21%;
  }
}
.property-gallery .energia {
  position: absolute;
  right: 8px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
  padding: 6px 7px;
  text-align: center;
  border-radius: 12px;
  margin-right: 12px;
}
.property-gallery .energia img {
  height: 30px;
  margin: 0 auto;
}
.property-gallery .energia span {
  display: block;
  margin-top: 5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
}
@media (min-width: 1280px) {
  .property-gallery .energia {
    right: 21%;
  }
}
@media (max-width: 991.98px) {
  .property-gallery .energia img {
    height: 25px;
  }
  .property-gallery .energia span {
    margin: 5px 2.5px;
    font-size: 8px;
  }
}
.property-gallery .photos {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
.property-gallery .photos .btn-white {
  background-color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991.98px) {
  .property-gallery .photos {
    bottom: 15px;
  }
  .property-gallery .photos .btn-white {
    min-height: 40px;
  }
}

.property-slider-center {
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
}
.property-slider-center .slick-list {
  z-index: 1;
}
.property-slider-center .slides .slick-slide {
  z-index: 1;
}
@media (min-width: 768px) {
  .property-slider-center .slides .slick-slide {
    margin: 0px 5px;
  }
}
@media (min-width: 992px) {
  .property-slider-center .slides .slick-slide {
    margin: 0px 10px;
  }
}
.property-slider-center .slides .slick-slide img {
  width: 100%;
}
.property-slider-center .slides .slick-current {
  opacity: 1;
}
.property-slider-center .slides a {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .property-data .botonera .col {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.property-data .botonera .col.col-xxl-2:not(:last-child) {
  border-left: 1px solid #c9c9c9;
}
@media (max-width: 767.98px) {
  .property-data .botonera .col.col-xxl-2:not(:last-child).col-360 {
    border-left: unset;
  }
}
@media (max-width: 991.98px) {
  .property-data .botonera .col {
    height: 45px;
  }
  .property-data .botonera .col .btn, .property-data .botonera .col .nav-tabs li a, .property-data .nav-tabs li .botonera .col a, .property-data .botonera .col .btn-collapse-desc,
  .property-data .botonera .col .btn-collapse, .property-data .botonera .col .noticia .text-new .read-more, .noticia .text-new .property-data .botonera .col .read-more, .property-data .botonera .col .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .property-data .botonera .col .read-more {
    min-height: 45px;
  }
}
.property-data .botonera .col-circle {
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex: unset;
  width: 60px;
  height: 60px;
}
.property-data .botonera .col-circle .btn, .property-data .botonera .col-circle .nav-tabs li a, .property-data .nav-tabs li .botonera .col-circle a, .property-data .botonera .col-circle .btn-collapse-desc,
.property-data .botonera .col-circle .btn-collapse, .property-data .botonera .col-circle .noticia .text-new .read-more, .noticia .text-new .property-data .botonera .col-circle .read-more, .property-data .botonera .col-circle .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .property-data .botonera .col-circle .read-more {
  min-width: 60px;
  min-height: 60px;
}
.property-data .botonera .dropdown-menu.show {
  border: 1px solid #797979 !important;
  border-radius: 10px !important;
  margin-top: 5px !important;
}
.property-data .botonera .dropdown-item {
  width: calc(100% - 4px);
  margin: 0 auto;
}
.property-data .botonera .social-links {
  padding-top: 0;
  padding-bottom: 0;
}
.property-data .botonera .social-links a {
  transition: all ease-in-out 0.3s;
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
  position: relative;
  padding: 8px 10px;
  border-radius: 10px;
  width: 48px;
  text-align: center;
  color: #c19046;
}
.property-data .botonera .social-links a i {
  font-weight: 300;
}
.property-data .botonera .social-links a:hover {
  background-color: #797979;
  color: #000000;
}
.property-data .labels {
  text-align: center;
}
.property-data .labels .badge {
  display: inline-block;
}
@media (min-width: 1280px) {
  .property-data .labels .badge {
    padding: 8px 14px;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
.property-data .iconos ul {
  margin: 0;
  list-style: none;
}
.property-data .iconos ul strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #c19046;
  text-transform: uppercase;
}
.property-data .iconos ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: left;
}
.property-data .iconos ul li:not(:last-child) {
  margin-right: 0;
}
.property-data .caracteristicas {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: left;
}
.property-data .caracteristicas strong {
  font-weight: 400;
}
.property-data .caracteristicas span {
  font-weight: 600;
}
.property-data .caracteristicas .collapse,
.property-data .caracteristicas .collapsing {
  height: auto;
}
@media (min-width: 992px) {
  .property-data .caracteristicas .collapse,
  .property-data .caracteristicas .collapsing {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .property-data .caracteristicas .collapse,
  .property-data .caracteristicas .collapsing {
    height: 175px;
    /* [NUM_OF_LINES] x [LINE_HEIGHT] */
    position: relative;
    padding-bottom: 10px;
  }
  .property-data .caracteristicas .collapse:before,
  .property-data .caracteristicas .collapsing:before {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    position: absolute;
  }
  .property-data .caracteristicas .collapse {
    position: relative;
    /* For ...'s content absolute positioning */
    display: block;
    overflow: hidden;
  }
  .property-data .caracteristicas .collapse.show {
    height: auto;
    /* You need to reset the height when not collapsed */
  }
  .property-data .caracteristicas .collapse.show:before {
    display: none;
    /* Of course you don't want to display ... */
  }
}
.property-data .btn-collapse-desc,
.property-data .btn-collapse {
  flex-direction: column;
}
.property-data .title-description .main-title, .property-data .title-description .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-data .title-description .modal-title, .property-data .title-description .modal:not(#galleryModal) .main-title, .property-data .title-description .modal:not(#galleryModal) .modal-title, .modal:not(#galleryModal) .property-data .title-description .main-title, .modal:not(#galleryModal) .property-data .title-description .modal-title, .property-data .title-description .modal:not(#galleryModal) .page-content h2, .modal:not(#galleryModal) .page-content .property-data .title-description h2, .property-data .title-description .page-content .modal:not(#galleryModal) h2, .page-content .modal:not(#galleryModal) .property-data .title-description h2, .property-data .title-description .modal:not(#galleryModal) .page-content .h2, .modal:not(#galleryModal) .page-content .property-data .title-description .h2, .property-data .title-description .page-content .modal:not(#galleryModal) .h2, .page-content .modal:not(#galleryModal) .property-data .title-description .h2,
.property-data .title-description .modal:not(#galleryModal) .page-content h3,
.modal:not(#galleryModal) .page-content .property-data .title-description h3,
.property-data .title-description .page-content .modal:not(#galleryModal) h3,
.page-content .modal:not(#galleryModal) .property-data .title-description h3,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3, .property-data .title-description .modal:not(#galleryModal) .home-text h1, .modal:not(#galleryModal) .home-text .property-data .title-description h1, .property-data .title-description .home-text .modal:not(#galleryModal) h1, .home-text .modal:not(#galleryModal) .property-data .title-description h1, .property-data .title-description .modal:not(#galleryModal) .home-text .h1, .modal:not(#galleryModal) .home-text .property-data .title-description .h1, .property-data .title-description .home-text .modal:not(#galleryModal) .h1, .home-text .modal:not(#galleryModal) .property-data .title-description .h1, .property-data .title-description .page-content h2, .page-content .property-data .title-description h2, .property-data .title-description .page-content .h2, .page-content .property-data .title-description .h2,
.property-data .title-description .page-content h3,
.page-content .property-data .title-description h3,
.property-data .title-description .page-content .h3,
.page-content .property-data .title-description .h3, .property-data .title-description .home-text h1, .home-text .property-data .title-description h1, .property-data .title-description .home-text .h1, .home-text .property-data .title-description .h1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 0 !important;
  margin-top: 5px !important;
  width: 100%;
  vertical-align: bottom;
  line-height: 23px;
}
.property-data .title-description .main-title span, .property-data .title-description .modal:not(#galleryModal) .modal-title span, .modal:not(#galleryModal) .property-data .title-description .modal-title span, .property-data .title-description .modal:not(#galleryModal) .main-title span, .property-data .title-description .modal:not(#galleryModal) .modal-title span, .modal:not(#galleryModal) .property-data .title-description .main-title span, .modal:not(#galleryModal) .property-data .title-description .modal-title span, .property-data .title-description .modal:not(#galleryModal) .page-content h2 span, .modal:not(#galleryModal) .page-content .property-data .title-description h2 span, .property-data .title-description .page-content .modal:not(#galleryModal) h2 span, .page-content .modal:not(#galleryModal) .property-data .title-description h2 span, .property-data .title-description .modal:not(#galleryModal) .page-content .h2 span, .modal:not(#galleryModal) .page-content .property-data .title-description .h2 span, .property-data .title-description .page-content .modal:not(#galleryModal) .h2 span, .page-content .modal:not(#galleryModal) .property-data .title-description .h2 span,
.property-data .title-description .modal:not(#galleryModal) .page-content h3 span,
.modal:not(#galleryModal) .page-content .property-data .title-description h3 span,
.property-data .title-description .page-content .modal:not(#galleryModal) h3 span,
.page-content .modal:not(#galleryModal) .property-data .title-description h3 span,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3 span,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3 span,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3 span,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3 span, .property-data .title-description .modal:not(#galleryModal) .home-text h1 span, .modal:not(#galleryModal) .home-text .property-data .title-description h1 span, .property-data .title-description .home-text .modal:not(#galleryModal) h1 span, .home-text .modal:not(#galleryModal) .property-data .title-description h1 span, .property-data .title-description .modal:not(#galleryModal) .home-text .h1 span, .modal:not(#galleryModal) .home-text .property-data .title-description .h1 span, .property-data .title-description .home-text .modal:not(#galleryModal) .h1 span, .home-text .modal:not(#galleryModal) .property-data .title-description .h1 span, .property-data .title-description .page-content h2 span, .page-content .property-data .title-description h2 span, .property-data .title-description .page-content .h2 span, .page-content .property-data .title-description .h2 span,
.property-data .title-description .page-content h3 span,
.page-content .property-data .title-description h3 span,
.property-data .title-description .page-content .h3 span,
.page-content .property-data .title-description .h3 span, .property-data .title-description .home-text h1 span, .home-text .property-data .title-description h1 span, .property-data .title-description .home-text .h1 span, .home-text .property-data .title-description .h1 span {
  margin-top: unset;
}
.property-data .title-description .main-title .text-secondary, .property-data .title-description .modal:not(#galleryModal) .modal-title .text-secondary, .modal:not(#galleryModal) .property-data .title-description .modal-title .text-secondary, .property-data .title-description .modal:not(#galleryModal) .main-title .text-secondary, .property-data .title-description .modal:not(#galleryModal) .modal-title .text-secondary, .modal:not(#galleryModal) .property-data .title-description .main-title .text-secondary, .modal:not(#galleryModal) .property-data .title-description .modal-title .text-secondary, .property-data .title-description .modal:not(#galleryModal) .page-content h2 .text-secondary, .modal:not(#galleryModal) .page-content .property-data .title-description h2 .text-secondary, .property-data .title-description .page-content .modal:not(#galleryModal) h2 .text-secondary, .page-content .modal:not(#galleryModal) .property-data .title-description h2 .text-secondary, .property-data .title-description .modal:not(#galleryModal) .page-content .h2 .text-secondary, .modal:not(#galleryModal) .page-content .property-data .title-description .h2 .text-secondary, .property-data .title-description .page-content .modal:not(#galleryModal) .h2 .text-secondary, .page-content .modal:not(#galleryModal) .property-data .title-description .h2 .text-secondary,
.property-data .title-description .modal:not(#galleryModal) .page-content h3 .text-secondary,
.modal:not(#galleryModal) .page-content .property-data .title-description h3 .text-secondary,
.property-data .title-description .page-content .modal:not(#galleryModal) h3 .text-secondary,
.page-content .modal:not(#galleryModal) .property-data .title-description h3 .text-secondary,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3 .text-secondary,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3 .text-secondary,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3 .text-secondary,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3 .text-secondary, .property-data .title-description .modal:not(#galleryModal) .home-text h1 .text-secondary, .modal:not(#galleryModal) .home-text .property-data .title-description h1 .text-secondary, .property-data .title-description .home-text .modal:not(#galleryModal) h1 .text-secondary, .home-text .modal:not(#galleryModal) .property-data .title-description h1 .text-secondary, .property-data .title-description .modal:not(#galleryModal) .home-text .h1 .text-secondary, .modal:not(#galleryModal) .home-text .property-data .title-description .h1 .text-secondary, .property-data .title-description .home-text .modal:not(#galleryModal) .h1 .text-secondary, .home-text .modal:not(#galleryModal) .property-data .title-description .h1 .text-secondary, .property-data .title-description .page-content h2 .text-secondary, .page-content .property-data .title-description h2 .text-secondary, .property-data .title-description .page-content .h2 .text-secondary, .page-content .property-data .title-description .h2 .text-secondary,
.property-data .title-description .page-content h3 .text-secondary,
.page-content .property-data .title-description h3 .text-secondary,
.property-data .title-description .page-content .h3 .text-secondary,
.page-content .property-data .title-description .h3 .text-secondary, .property-data .title-description .home-text h1 .text-secondary, .home-text .property-data .title-description h1 .text-secondary, .property-data .title-description .home-text .h1 .text-secondary, .home-text .property-data .title-description .h1 .text-secondary {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 23px;
  font-weight: 400;
}
.property-data .title-description .main-title .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .modal-title .text-secondary strong, .modal:not(#galleryModal) .property-data .title-description .modal-title .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .main-title .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .modal-title .text-secondary strong, .modal:not(#galleryModal) .property-data .title-description .main-title .text-secondary strong, .modal:not(#galleryModal) .property-data .title-description .modal-title .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .page-content h2 .text-secondary strong, .modal:not(#galleryModal) .page-content .property-data .title-description h2 .text-secondary strong, .property-data .title-description .page-content .modal:not(#galleryModal) h2 .text-secondary strong, .page-content .modal:not(#galleryModal) .property-data .title-description h2 .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .page-content .h2 .text-secondary strong, .modal:not(#galleryModal) .page-content .property-data .title-description .h2 .text-secondary strong, .property-data .title-description .page-content .modal:not(#galleryModal) .h2 .text-secondary strong, .page-content .modal:not(#galleryModal) .property-data .title-description .h2 .text-secondary strong,
.property-data .title-description .modal:not(#galleryModal) .page-content h3 .text-secondary strong,
.modal:not(#galleryModal) .page-content .property-data .title-description h3 .text-secondary strong,
.property-data .title-description .page-content .modal:not(#galleryModal) h3 .text-secondary strong,
.page-content .modal:not(#galleryModal) .property-data .title-description h3 .text-secondary strong,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3 .text-secondary strong,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3 .text-secondary strong,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3 .text-secondary strong,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3 .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .home-text h1 .text-secondary strong, .modal:not(#galleryModal) .home-text .property-data .title-description h1 .text-secondary strong, .property-data .title-description .home-text .modal:not(#galleryModal) h1 .text-secondary strong, .home-text .modal:not(#galleryModal) .property-data .title-description h1 .text-secondary strong, .property-data .title-description .modal:not(#galleryModal) .home-text .h1 .text-secondary strong, .modal:not(#galleryModal) .home-text .property-data .title-description .h1 .text-secondary strong, .property-data .title-description .home-text .modal:not(#galleryModal) .h1 .text-secondary strong, .home-text .modal:not(#galleryModal) .property-data .title-description .h1 .text-secondary strong, .property-data .title-description .page-content h2 .text-secondary strong, .page-content .property-data .title-description h2 .text-secondary strong, .property-data .title-description .page-content .h2 .text-secondary strong, .page-content .property-data .title-description .h2 .text-secondary strong,
.property-data .title-description .page-content h3 .text-secondary strong,
.page-content .property-data .title-description h3 .text-secondary strong,
.property-data .title-description .page-content .h3 .text-secondary strong,
.page-content .property-data .title-description .h3 .text-secondary strong, .property-data .title-description .home-text h1 .text-secondary strong, .home-text .property-data .title-description h1 .text-secondary strong, .property-data .title-description .home-text .h1 .text-secondary strong, .home-text .property-data .title-description .h1 .text-secondary strong {
  font-weight: 500;
}
.property-data .title-description .main-title small, .property-data .title-description .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .property-data .title-description .modal-title small, .property-data .title-description .modal:not(#galleryModal) .main-title small, .property-data .title-description .modal:not(#galleryModal) .modal-title small, .modal:not(#galleryModal) .property-data .title-description .main-title small, .modal:not(#galleryModal) .property-data .title-description .modal-title small, .property-data .title-description .modal:not(#galleryModal) .page-content h2 small, .modal:not(#galleryModal) .page-content .property-data .title-description h2 small, .property-data .title-description .page-content .modal:not(#galleryModal) h2 small, .page-content .modal:not(#galleryModal) .property-data .title-description h2 small, .property-data .title-description .modal:not(#galleryModal) .page-content .h2 small, .modal:not(#galleryModal) .page-content .property-data .title-description .h2 small, .property-data .title-description .page-content .modal:not(#galleryModal) .h2 small, .page-content .modal:not(#galleryModal) .property-data .title-description .h2 small,
.property-data .title-description .modal:not(#galleryModal) .page-content h3 small,
.modal:not(#galleryModal) .page-content .property-data .title-description h3 small,
.property-data .title-description .page-content .modal:not(#galleryModal) h3 small,
.page-content .modal:not(#galleryModal) .property-data .title-description h3 small,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3 small,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3 small,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3 small,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3 small, .property-data .title-description .modal:not(#galleryModal) .home-text h1 small, .modal:not(#galleryModal) .home-text .property-data .title-description h1 small, .property-data .title-description .home-text .modal:not(#galleryModal) h1 small, .home-text .modal:not(#galleryModal) .property-data .title-description h1 small, .property-data .title-description .modal:not(#galleryModal) .home-text .h1 small, .modal:not(#galleryModal) .home-text .property-data .title-description .h1 small, .property-data .title-description .home-text .modal:not(#galleryModal) .h1 small, .home-text .modal:not(#galleryModal) .property-data .title-description .h1 small, .property-data .title-description .page-content h2 small, .page-content .property-data .title-description h2 small, .property-data .title-description .page-content .h2 small, .page-content .property-data .title-description .h2 small,
.property-data .title-description .page-content h3 small,
.page-content .property-data .title-description h3 small,
.property-data .title-description .page-content .h3 small,
.page-content .property-data .title-description .h3 small, .property-data .title-description .home-text h1 small, .home-text .property-data .title-description h1 small, .property-data .title-description .home-text .h1 small, .home-text .property-data .title-description .h1 small, .property-data .title-description .main-title .small, .property-data .title-description .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .property-data .title-description .modal-title .small, .property-data .title-description .modal:not(#galleryModal) .main-title .small, .property-data .title-description .modal:not(#galleryModal) .modal-title .small, .modal:not(#galleryModal) .property-data .title-description .main-title .small, .modal:not(#galleryModal) .property-data .title-description .modal-title .small, .property-data .title-description .modal:not(#galleryModal) .page-content h2 .small, .modal:not(#galleryModal) .page-content .property-data .title-description h2 .small, .property-data .title-description .page-content .modal:not(#galleryModal) h2 .small, .page-content .modal:not(#galleryModal) .property-data .title-description h2 .small, .property-data .title-description .modal:not(#galleryModal) .page-content .h2 .small, .modal:not(#galleryModal) .page-content .property-data .title-description .h2 .small, .property-data .title-description .page-content .modal:not(#galleryModal) .h2 .small, .page-content .modal:not(#galleryModal) .property-data .title-description .h2 .small,
.property-data .title-description .modal:not(#galleryModal) .page-content h3 .small,
.modal:not(#galleryModal) .page-content .property-data .title-description h3 .small,
.property-data .title-description .page-content .modal:not(#galleryModal) h3 .small,
.page-content .modal:not(#galleryModal) .property-data .title-description h3 .small,
.property-data .title-description .modal:not(#galleryModal) .page-content .h3 .small,
.modal:not(#galleryModal) .page-content .property-data .title-description .h3 .small,
.property-data .title-description .page-content .modal:not(#galleryModal) .h3 .small,
.page-content .modal:not(#galleryModal) .property-data .title-description .h3 .small, .property-data .title-description .modal:not(#galleryModal) .home-text h1 .small, .modal:not(#galleryModal) .home-text .property-data .title-description h1 .small, .property-data .title-description .home-text .modal:not(#galleryModal) h1 .small, .home-text .modal:not(#galleryModal) .property-data .title-description h1 .small, .property-data .title-description .modal:not(#galleryModal) .home-text .h1 .small, .modal:not(#galleryModal) .home-text .property-data .title-description .h1 .small, .property-data .title-description .home-text .modal:not(#galleryModal) .h1 .small, .home-text .modal:not(#galleryModal) .property-data .title-description .h1 .small, .property-data .title-description .page-content h2 .small, .page-content .property-data .title-description h2 .small, .property-data .title-description .page-content .h2 .small, .page-content .property-data .title-description .h2 .small,
.property-data .title-description .page-content h3 .small,
.page-content .property-data .title-description h3 .small,
.property-data .title-description .page-content .h3 .small,
.page-content .property-data .title-description .h3 .small, .property-data .title-description .home-text h1 .small, .home-text .property-data .title-description h1 .small, .property-data .title-description .home-text .h1 .small, .home-text .property-data .title-description .h1 .small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}
.property-data .title-description .precio {
  font-family: "Cormorant Garamond", serif !important;
  font-optical-sizing: auto;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  line-height: 17px;
}
.property-data .title-description .precio del,
.property-data .title-description .precio small,
.property-data .title-description .precio .small {
  font-size: 14px;
  font-weight: 400;
}
.property-data .title-description .precio small, .property-data .title-description .precio .small {
  display: block;
  margin-bottom: 5px;
}
.property-data .title-description h1, .property-data .title-description .h1 {
  font-size: 18px;
  font-weight: 500;
  color: #181a19;
}
.property-data .bloque-texto p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 30px;
  color: #222222;
}
.property-data .bloque-texto .property-description {
  min-height: 70px;
}
.property-data .bloque-texto .collapse,
.property-data .bloque-texto .collapsing {
  height: 120px;
  /* [NUM_OF_LINES] x [LINE_HEIGHT] */
  position: relative;
  padding-bottom: 10px;
}
.property-data .bloque-texto .collapse:before,
.property-data .bloque-texto .collapsing:before {
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  position: absolute;
}
.property-data .bloque-texto .collapse {
  position: relative;
  /* For ...'s content absolute positioning */
  display: block;
  overflow: hidden;
}
.property-data .bloque-texto .collapse.show {
  height: auto;
  /* You need to reset the height when not collapsed */
}
.property-data .bloque-texto .collapse.show:before {
  display: none;
  /* Of course you don't want to display ... */
}
.property-data .nav-tabs {
  display: none;
}
.property-data .nav-tabs li a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all ease-in-out 0.3s;
  min-height: 45px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: #c9c9c9;
  border: none !important;
}
.property-data .nav-tabs li a:hover {
  color: #c19046;
}
.property-data .nav-tabs li a.active {
  color: #c19046;
}
@media (min-width: 1280px) {
  .property-data .nav-tabs li a {
    min-width: 180px;
  }
}
.property-data .calendar-disp {
  min-height: 300px;
}
.property-data .tab-content .tab-pane {
  display: block;
  padding-bottom: 20px;
}
@media (max-width: 767.98px) {
  .property-data .tab-content .tab-pane {
    padding-bottom: 5px;
  }
}
@media (min-width: 992px) {
  .property-data .nav-tabs {
    display: flex;
    justify-content: center;
    padding: 0;
    border-bottom: 1px solid #253646;
  }
  .property-data .cardx {
    border: none;
  }
  .property-data .cardx .card-header {
    display: none;
  }
  .property-data .cardx .collapse {
    display: block;
  }
}
.gallery-grid .btn-light {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .gallery-grid {
    margin-bottom: 0px;
  }
  .gallery-grid .small-image-link {
    width: calc(50% - 8px);
    float: left;
  }
}
.gallery-grid .small-image-link {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.gallery-grid .small-image-link .btn.all-img, .gallery-grid .small-image-link .noticia .text-new .all-img.read-more, .noticia .text-new .gallery-grid .small-image-link .all-img.read-more, .gallery-grid .small-image-link .page-news .sidebar-news .last-news .noticia .all-img.read-more, .page-news .sidebar-news .last-news .noticia .gallery-grid .small-image-link .all-img.read-more, .gallery-grid .small-image-link .property-data .all-img.btn-collapse-desc, .property-data .gallery-grid .small-image-link .all-img.btn-collapse-desc,
.gallery-grid .small-image-link .property-data .all-img.btn-collapse,
.property-data .gallery-grid .small-image-link .all-img.btn-collapse, .gallery-grid .small-image-link .property-data .nav-tabs li a.all-img, .property-data .nav-tabs li .gallery-grid .small-image-link a.all-img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .gallery-grid .small-image-link .btn.all-img, .gallery-grid .small-image-link .noticia .text-new .all-img.read-more, .noticia .text-new .gallery-grid .small-image-link .all-img.read-more, .gallery-grid .small-image-link .page-news .sidebar-news .last-news .noticia .all-img.read-more, .page-news .sidebar-news .last-news .noticia .gallery-grid .small-image-link .all-img.read-more, .gallery-grid .small-image-link .property-data .all-img.btn-collapse-desc, .property-data .gallery-grid .small-image-link .all-img.btn-collapse-desc,
  .gallery-grid .small-image-link .property-data .all-img.btn-collapse,
  .property-data .gallery-grid .small-image-link .all-img.btn-collapse, .gallery-grid .small-image-link .property-data .nav-tabs li a.all-img, .property-data .nav-tabs li .gallery-grid .small-image-link a.all-img {
    display: none;
  }
}
.gallery-grid .main-photo {
  position: relative;
  z-index: 0;
}
.gallery-grid .gallProp {
  display: inline-block;
}
.gallery-grid .gallProp + .gallProp {
  margin-top: 10px;
}

#pane-calendar .fc-state-default.fc-corner-right,
#pane-calendar .fc-state-default.fc-corner-left {
  border-radius: 0;
  background: #eaeaea;
  border-color: #eaeaea;
}
#pane-calendar .fc-unthemed th,
#pane-calendar .fc-unthemed td,
#pane-calendar .fc-unthemed thead,
#pane-calendar .fc-unthemed tbody,
#pane-calendar .fc-unthemed .fc-divider,
#pane-calendar .fc-unthemed .fc-row,
#pane-calendar .fc-unthemed .fc-content,
#pane-calendar .fc-unthemed .fc-popover,
#pane-calendar .fc-unthemed .fc-list-view,
#pane-calendar .fc-unthemed .fc-list-heading td {
  border-color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#pane-calendar .fc-unthemed .fc-row {
  background: #eaeaea;
}
@media (min-width: 992px) {
  #pane-calendar .fc-unthemed .fc-row {
    max-height: 78px;
  }
}
#pane-calendar .fc-unthemed td.fc-today {
  background-color: #c19046;
  color: #fff;
}
#pane-calendar .fc-event,
#pane-calendar .fc-event-dot {
  background-color: #000000;
}
#pane-calendar .fc-unthemed th {
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  #pane-calendar .fc-scroller.fc-day-grid-container {
    max-height: 540px;
  }
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  opacity: 0.6;
}

#aviso {
  position: fixed;
  z-index: 9999999;
  width: 280px;
  top: 30%;
  left: 50%;
  margin-left: -140px;
  padding: 15px;
  background: #e5e5e5;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.7;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
}

.card-team {
  border-radius: 0;
  background: transparent;
}
.card-team .nombre {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}
.card-team .nombre .cargo {
  font-size: 10px;
  line-height: 12px;
}
.card-team .card-info p {
  color: white;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}
.card-team .card-info p a {
  color: #b1b1b1;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}
.card-team .card-info p a:hover {
  color: white;
}
.card-team .card-info p a:hover.text-hover {
  color: #000000;
}
.card-team .card-body {
  transform: translateY(-40px);
}

.modal .modal-dialog.modal-full-screen {
  margin: 0 !important;
  max-width: 100%;
}
.modal .modal-dialog.modal-full-screen .modal-content {
  border-radius: 0;
}
.modal .modal-dialog.modal-full-screen .btn-close-modal {
  position: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-dialog.modal-full-screen .header-modal {
  position: sticky;
  z-index: 9999999999;
  top: 0px;
  left: 0px;
  right: 0px;
}
@media (max-width: 991.98px) {
  .modal .modal-dialog.modal-full-screen .header-modal {
    position: static;
  }
  .modal .modal-dialog.modal-full-screen .header-modal .property-title .price-responsive {
    display: block !important;
  }
}
.modal .modal-dialog.modal-full-screen .header-modal .main-title, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .modal-title, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .main-title, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .modal-title, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .page-content h2, .modal:not(#galleryModal) .page-content .modal-dialog.modal-full-screen .header-modal h2, .page-content .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal h2, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .page-content .h2, .modal:not(#galleryModal) .page-content .modal-dialog.modal-full-screen .header-modal .h2, .page-content .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .h2,
.modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .page-content h3,
.modal:not(#galleryModal) .page-content .modal-dialog.modal-full-screen .header-modal h3,
.page-content .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal h3,
.modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .page-content .h3,
.modal:not(#galleryModal) .page-content .modal-dialog.modal-full-screen .header-modal .h3,
.page-content .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .h3, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .home-text h1, .modal:not(#galleryModal) .home-text .modal-dialog.modal-full-screen .header-modal h1, .home-text .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal h1, .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .home-text .h1, .modal:not(#galleryModal) .home-text .modal-dialog.modal-full-screen .header-modal .h1, .home-text .modal:not(#galleryModal) .modal-dialog.modal-full-screen .header-modal .h1, .modal .modal-dialog.modal-full-screen .header-modal .page-content h2, .page-content .modal .modal-dialog.modal-full-screen .header-modal h2, .modal .modal-dialog.modal-full-screen .header-modal .page-content .h2, .page-content .modal .modal-dialog.modal-full-screen .header-modal .h2,
.modal .modal-dialog.modal-full-screen .header-modal .page-content h3,
.page-content .modal .modal-dialog.modal-full-screen .header-modal h3,
.modal .modal-dialog.modal-full-screen .header-modal .page-content .h3,
.page-content .modal .modal-dialog.modal-full-screen .header-modal .h3, .modal .modal-dialog.modal-full-screen .header-modal .home-text h1, .home-text .modal .modal-dialog.modal-full-screen .header-modal h1, .modal .modal-dialog.modal-full-screen .header-modal .home-text .h1, .home-text .modal .modal-dialog.modal-full-screen .header-modal .h1 {
  margin: 0 !important;
  text-align: left !important;
}

.property .swal-overlay {
  z-index: 9999999999;
}

#economyModal form textarea,
#economyModal form span.customSelect,
#economyModal form input[type=text],
#economyModal form input[type=password],
#economyModal form .form-select,
#economyModal form .select2-container--default .select2-selection--multiple,
#economyModal form .select2-container-multi .select2-choices,
#economyModal form .select2-container .select2-choice {
  border: 1px solid #ebebeb;
  background-color: #f8f9f9;
}
@media (min-width: 992px) {
  #economyModal .modal-lg,
  #economyModal .modal-xl {
    max-width: 850px;
  }
}
#economyModal .btn, #economyModal .noticia .text-new .read-more, .noticia .text-new #economyModal .read-more, #economyModal .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia #economyModal .read-more, #economyModal .property-data .btn-collapse-desc, .property-data #economyModal .btn-collapse-desc,
#economyModal .property-data .btn-collapse,
.property-data #economyModal .btn-collapse, #economyModal .property-data .nav-tabs li a, .property-data .nav-tabs li #economyModal a {
  min-height: 60px;
}
#economyModal .customSelectInner {
  margin-top: 10px;
  background: url(/media/images/website/chevron-down.svg) no-repeat 95% 55%;
}
#economyModal .pagos-mensuales label {
  line-height: 29px;
  text-align: center;
  text-transform: initial;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
#economyModal .pagos-mensuales input {
  border: 1px solid #c9c9c9;
  background-color: #fff;
  color: #c19046;
  font-weight: 700;
  font-size: 17px;
}
#economyModal .list-exchange {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px 15px;
  margin-bottom: 0px;
}
#economyModal .list-exchange li {
  display: inline-flex;
  justify-content: left;
  width: 48%;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 2;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  #economyModal .list-exchange li {
    width: 100%;
  }
}
#economyModal .list-exchange li strong {
  width: 50%;
  letter-spacing: 0.7px;
  font-weight: 400;
  margin-right: 5px;
  text-align: start;
  text-transform: initial;
}

.vendido-tag-big {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: "Teachers", sans-serif !important;
  font-optical-sizing: auto;
  font-size: 93px;
  letter-spacing: 4.65px;
  font-weight: 800;
  color: #cc3636;
  text-transform: uppercase;
}
.vendido-tag-big.vendido-tag-smaller {
  font-size: 63px;
  letter-spacing: 2.65px;
}
@media (min-width: 1280px) {
  .vendido-tag-big {
    font-size: 153px;
    letter-spacing: 8.65px;
  }
  .vendido-tag-big.vendido-tag-smaller {
    font-size: 133px;
    letter-spacing: 6.65px;
  }
}

.vendido-tag-lit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: "Teachers", sans-serif !important;
  font-optical-sizing: auto;
  font-size: 90px;
  letter-spacing: 3.65px;
  font-weight: 800;
  color: #cc3636;
  text-transform: uppercase;
}
.vendido-tag-lit.vendido-tag-smaller {
  font-size: 70px;
  letter-spacing: 2.65px;
}
@media (min-width: 1280px) {
  .vendido-tag-lit {
    font-size: 133px;
    letter-spacing: 8.65px;
  }
  .vendido-tag-lit.vendido-tag-smaller {
    font-size: 103px;
    letter-spacing: 4.65px;
  }
}

.alert-danger {
  color: #fff;
  text-align: center;
  background-color: rgba(204, 54, 54, 0.8);
  border: unset;
  border-radius: 0;
  overflow: hidden;
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-map iframe {
  width: 100%;
  height: 430px;
}

.gdpr {
  display: block;
  margin: 10px 0 0;
  font-size: 9px;
  line-height: 14px;
  height: 40px;
  overflow: scroll;
}
.gdpr b {
  font-weight: 800;
}

.page-contact .bg-mid-secondary {
  background: linear-gradient(to top, white 0%, white 50%, black 50%, black 100%);
}
.g-recaptcha {
  width: 100px;
  height: 70px;
  max-width: 100%;
  transform: scale(0.7);
  transform-origin: 0 0;
}

@media (max-width: 991.98px) {
  .search-btn-props {
    position: fixed;
    z-index: 999999999;
    top: 90px;
    right: 9px;
    transition: all ease-in-out 0.3s;
    background: #c19046;
    border-radius: 50%;
    width: 45px;
    height: 45px;
  }
  .search-btn-props a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  .search-btn-props a img {
    margin-right: 2px;
  }
  .search-btn-props:hover {
    opacity: 1;
  }
}
.bottom-bar-new {
  position: fixed;
  bottom: 10px;
  left: auto;
  right: 9px;
  z-index: 99999999;
  transition: 0.5s;
}
.bottom-bar-new .col-circle {
  flex: unset;
  width: -moz-fit-content;
  width: fit-content;
}
.bottom-bar-new .btn.btn-whatsapp, .bottom-bar-new .noticia .text-new .btn-whatsapp.read-more, .noticia .text-new .bottom-bar-new .btn-whatsapp.read-more, .bottom-bar-new .page-news .sidebar-news .last-news .noticia .btn-whatsapp.read-more, .page-news .sidebar-news .last-news .noticia .bottom-bar-new .btn-whatsapp.read-more, .bottom-bar-new .property-data .btn-whatsapp.btn-collapse-desc, .property-data .bottom-bar-new .btn-whatsapp.btn-collapse-desc,
.bottom-bar-new .property-data .btn-whatsapp.btn-collapse,
.property-data .bottom-bar-new .btn-whatsapp.btn-collapse, .bottom-bar-new .property-data .nav-tabs li a.btn-whatsapp, .property-data .nav-tabs li .bottom-bar-new a.btn-whatsapp {
  color: #fff;
  border-radius: 30px;
  background-color: #38b567;
  border-color: #38b567;
}
.bottom-bar-new .bottom-btn-whatsapp {
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 10px;
  text-align: center;
  text-transform: initial;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  background-color: #38b567;
  border-color: #38b567;
  min-width: 165px;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
}
.bottom-bar-new .bottom-btn-whatsapp strong {
  transition: all ease-in-out 0.3s;
}
.bottom-bar-new .bottom-btn-whatsapp:hover strong {
  transform: translateX(-5px);
}
@media (max-width: 767.98px) {
  .bottom-bar-new.bottom-bar-new-prop {
    left: 0;
  }
  .bottom-bar-new.bottom-bar-new-prop .btn, .bottom-bar-new.bottom-bar-new-prop .noticia .text-new .read-more, .noticia .text-new .bottom-bar-new.bottom-bar-new-prop .read-more, .bottom-bar-new.bottom-bar-new-prop .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .bottom-bar-new.bottom-bar-new-prop .read-more, .bottom-bar-new.bottom-bar-new-prop .property-data .btn-collapse-desc, .property-data .bottom-bar-new.bottom-bar-new-prop .btn-collapse-desc,
  .bottom-bar-new.bottom-bar-new-prop .property-data .btn-collapse,
  .property-data .bottom-bar-new.bottom-bar-new-prop .btn-collapse, .bottom-bar-new.bottom-bar-new-prop .property-data .nav-tabs li a, .property-data .nav-tabs li .bottom-bar-new.bottom-bar-new-prop a {
    min-height: 55px;
  }
  .bottom-bar-new.bottom-bar-new-prop .btn-whatsapp {
    border-radius: 0;
  }
}

.porta-gmap .gmap {
  height: 350px;
}
.porta-gmap .gmap img {
  max-width: auto;
}

span.customSelect {
  padding: 0;
  width: 100%;
  height: 35px;
  line-height: 29px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #181a19;
  text-align: left;
}

.customSelectInner {
  cursor: pointer;
  background: url(/media/images/website/chevron-down.svg) no-repeat 100% 55%;
  background-size: 11px;
  padding-right: 15px;
  padding-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100% !important;
}

select.hasCustomSelect {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.select2-selection--multiple {
  max-height: 90px;
  overflow-y: none;
}
.select2-selection--multiple::after {
  content: "";
  background: url(/media/images/website/chevron-down.svg) no-repeat center right;
  background-size: 11px;
  display: inline-block;
  position: absolute;
  right: 0px;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  height: 6px;
  width: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 13px;
  background: #fff;
  color: #181a19;
  line-height: 22px;
}

.select2-container--open {
  position: relative;
  z-index: 1000000000000000000 !important;
}

/*  Check en los select del buscador */
.select2-container--default .select2-results__option {
  position: relative;
  color: #3e3e3e;
  font-size: 12px;
}
.select2-container--default .select2-results__option:after {
  content: "\f0c8";
  font-family: "Font Awesome 5 Pro";
  color: #181a19;
  position: absolute;
  font-weight: 300;
  right: 15px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-flex;
  justify-content: flex-start;
  padding-left: 0;
}
.select2-container .select2-selection--multiple .select2-selection__rendered:has(.select2-selection__choice) {
  overflow-x: auto;
}

.select2-container--default .select2-results__option--highlighted:after {
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #000000;
  transition: all ease-in-out 0.3s;
}

.select2-container--default .select2-results__option[aria-selected]:hover {
  background-color: #000000;
  color: white;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option--highlighted[aria-selected=true] {
  background-color: #e5e5e5 !important;
  color: #000000 !important;
}
.select2-container--default .select2-results__option[aria-selected=true]:after,
.select2-container--default .select2-results__option--highlighted[aria-selected=true]:after {
  content: "\f14a";
  color: #000000 !important;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  font-size: 13px !important;
  white-space: unset;
}
@media (max-width: 1279.98px) {
  .select2-container--default .select2-results__option[aria-disabled=true] {
    font-size: 13px !important;
  }
}
.select2-container--default .select2-results__option[aria-disabled=true]::after {
  content: unset !important;
}

.select2-results__options::-webkit-scrollbar {
  width: 14px;
  background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-track {
  background-color: #eaeaea;
  height: 5px;
  background-clip: padding-box;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 2px solid rgba(0, 0, 0, 0);
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  background-color: #000000;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 2px solid rgba(0, 0, 0, 0);
  border-top: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 8px solid rgba(0, 0, 0, 0);
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.pagination {
  clear: both;
  margin: 10px 0 30px;
}
.pagination .btn, .pagination .noticia .text-new .read-more, .noticia .text-new .pagination .read-more, .pagination .page-news .sidebar-news .last-news .noticia .read-more, .page-news .sidebar-news .last-news .noticia .pagination .read-more, .pagination .property-data .btn-collapse-desc, .property-data .pagination .btn-collapse-desc,
.pagination .property-data .btn-collapse,
.property-data .pagination .btn-collapse, .pagination .property-data .nav-tabs li a, .property-data .nav-tabs li .pagination a {
  cursor: pointer;
  min-height: unset;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  margin: 0 5px;
}
.pagination .btn:hover, .pagination .noticia .text-new .read-more:hover, .noticia .text-new .pagination .read-more:hover, .pagination .page-news .sidebar-news .last-news .noticia .read-more:hover, .page-news .sidebar-news .last-news .noticia .pagination .read-more:hover, .pagination .property-data .btn-collapse-desc:hover, .property-data .pagination .btn-collapse-desc:hover,
.pagination .property-data .btn-collapse:hover,
.property-data .pagination .btn-collapse:hover, .pagination .property-data .nav-tabs li a:hover, .property-data .nav-tabs li .pagination a:hover {
  color: #000000;
  scale: 0.95;
}
.pagination .btn-arrow {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.3s;
}
.pagination .btn:not(.btn-arrow), .pagination .noticia .text-new .read-more:not(.btn-arrow), .noticia .text-new .pagination .read-more:not(.btn-arrow), .pagination .page-news .sidebar-news .last-news .noticia .read-more:not(.btn-arrow), .page-news .sidebar-news .last-news .noticia .pagination .read-more:not(.btn-arrow), .pagination .property-data .btn-collapse-desc:not(.btn-arrow), .property-data .pagination .btn-collapse-desc:not(.btn-arrow),
.pagination .property-data .btn-collapse:not(.btn-arrow),
.property-data .pagination .btn-collapse:not(.btn-arrow), .pagination .property-data .nav-tabs li a:not(.btn-arrow), .property-data .nav-tabs li .pagination a:not(.btn-arrow) {
  border-color: #ebebeb;
  background: #ebebeb;
  color: #0d1319;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}
.pagination .btn:not(.btn-arrow):hover, .pagination .noticia .text-new .read-more:not(.btn-arrow):hover, .noticia .text-new .pagination .read-more:not(.btn-arrow):hover, .pagination .page-news .sidebar-news .last-news .noticia .read-more:not(.btn-arrow):hover, .page-news .sidebar-news .last-news .noticia .pagination .read-more:not(.btn-arrow):hover, .pagination .property-data .btn-collapse-desc:not(.btn-arrow):hover, .property-data .pagination .btn-collapse-desc:not(.btn-arrow):hover,
.pagination .property-data .btn-collapse:not(.btn-arrow):hover,
.property-data .pagination .btn-collapse:not(.btn-arrow):hover, .pagination .property-data .nav-tabs li a:not(.btn-arrow):hover, .property-data .nav-tabs li .pagination a:not(.btn-arrow):hover {
  background-color: #000000;
  color: white;
}
.pagination .btn-primary {
  background: #c19046 !important;
}

.modal:not(#galleryModal):not(#economyModal) {
  z-index: 2000000000;
}
.modal:not(#galleryModal):not(#economyModal) .g-recaptcha iframe {
  transform: scale(0.9);
  transform-origin: 0;
}
@media (min-width: 768px) {
  .modal:not(#galleryModal):not(#economyModal) .g-recaptcha iframe {
    transform: none;
    transform-origin: none;
  }
}
.modal:not(#galleryModal):not(#economyModal) form textarea,
.modal:not(#galleryModal):not(#economyModal) form span.customSelect,
.modal:not(#galleryModal):not(#economyModal) form input[type=text],
.modal:not(#galleryModal):not(#economyModal) form input[type=password],
.modal:not(#galleryModal):not(#economyModal) form .form-select,
.modal:not(#galleryModal):not(#economyModal) form .select2-container--default .select2-selection--multiple,
.modal:not(#galleryModal):not(#economyModal) form .select2-container-multi .select2-choices,
.modal:not(#galleryModal):not(#economyModal) form .select2-container .select2-choice {
  border: 1px solid #ebebeb;
  background-color: #f8f9f9;
}
.modal:not(#galleryModal):not(#economyModal) form .checkcontainer {
  color: #000000;
}
.modal:not(#galleryModal) .btn-close-lateral,
.modal:not(#galleryModal) .btn-close-modal {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.modal:not(#galleryModal) .btn-close-lateral:hover,
.modal:not(#galleryModal) .btn-close-modal:hover {
  scale: 0.8;
}
.modal:not(#galleryModal) .modal-header,
.modal:not(#galleryModal) .modal-body,
.modal:not(#galleryModal) .modal-content {
  background-color: white;
  border-radius: 0px;
}
.modal:not(#galleryModal) .modal-header {
  border-bottom: unset;
}
.modal:not(#galleryModal) .modal-body {
  border-top: unset;
}
.modal:not(#galleryModal) .modal-footer {
  border-top: unset;
  background-color: #e5e5e5;
}
.modal:not(#galleryModal) .subtitle {
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.modal:not(#galleryModal) .paragraf {
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 25px;
}

.boton-lateral-fijo {
  position: fixed;
  top: 45%;
  right: -60px;
  padding: 10px 12px;
  background-color: #172038;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.32px;
  transform: rotate(270deg);
  z-index: 999;
}

.boton-lateral-fijo img {
  height: 22px;
}

.boton-lateral-fijo:hover {
  color: #fff !important;
  text-decoration: none;
}

select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

@media (min-width: 1280px) {
  *::-webkit-scrollbar {
    width: 8px;
  }
  *::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 8px;
  }
  *::-webkit-scrollbar-thumb {
    background: #c19046;
    border-radius: 10px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  *::-webkit-scrollbar-thumb:hover {
    background: #000000;
  }
  * {
    scrollbar-width: thin;
    scrollbar-color: #000000 #e5e5e5;
  }
}
.sitemap .page-content .favor {
  display: none;
}
.sitemap .page-content a {
  text-decoration: none;
}
