@import url(https://fonts.googleapis.com/css?family=Nunito);
@import url(https://fonts.googleapis.com/css?family=Arvo);
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Nunito:200,600);
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-fast {
  -webkit-animation-duration: .2s;
  animation-duration: .2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.ftco-animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

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

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

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    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 {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-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);
  }
}

@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;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

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

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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 {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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 {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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 {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    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 {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

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

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

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

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-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);
  }
}

@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 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    transform: translate3d(0, -50px, 0);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);*/
    transform: translate3d(0, -50px, 0);
  }

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    transform: translate3d(-50px, 0, 0);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);*/
    transform: translate3d(-50px, 0, 0);
  }

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    transform: translate3d(50px, 0, 0);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);*/
    transform: translate3d(50px, 0, 0);
  }

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    transform: translate3d(0, 40px, 0);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    transform: translate3d(0, 40px, 0);
  }

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
    transform: translate3d(0, 20px, 0);
  }

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

.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 40px, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 40px, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}

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

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

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

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

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

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

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

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    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);
  }
}

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

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

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

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

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

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

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-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;
  }
}

@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 {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

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

@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 {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

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

@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 {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

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

@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 {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

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

@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 {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

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

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-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;
  }
}

@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 {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    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;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

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

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

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

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

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

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

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

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@font-face {
  font-family: "Flaticon";
  src: url(/fonts/Flaticon.eot?4732ac79f6ebd436342280d0d4127c00);
  src: url(/fonts/Flaticon.eot?4732ac79f6ebd436342280d0d4127c00?#iefix) format("embedded-opentype"),
       url(/fonts/Flaticon.woff?84ce17d1d96748498014855ba9250b58) format("woff"),
       url(/fonts/Flaticon.ttf?12e5bfdc2ba0c37952b52d41c0ee66d7) format("truetype"),
       url(/fonts/Flaticon.svg?915342b043f734d3b064fc07c5644c90#Flaticon) format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url(/fonts/Flaticon.svg?915342b043f734d3b064fc07c5644c90#Flaticon) format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

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

.flaticon-customer-review:before { content: "\f100"; }
.flaticon-complete:before { content: "\f101"; }
.flaticon-coffee:before { content: "\f102"; }
.flaticon-code:before { content: "\f103"; }
.flaticon-web-programming:before { content: "\f104"; }
.flaticon-vector:before { content: "\f105"; }

.tns-outer{padding:0 !important}.tns-outer [hidden]{display:none !important}.tns-outer [aria-controls],.tns-outer [data-action]{cursor:pointer}.tns-slider{transition:all 0s}.tns-slider>.tns-item{box-sizing:border-box}.tns-horizontal.tns-subpixel{white-space:nowrap}.tns-horizontal.tns-subpixel>.tns-item{display:inline-block;vertical-align:top;white-space:normal}.tns-horizontal.tns-no-subpixel:after{content:'';display:table;clear:both}.tns-horizontal.tns-no-subpixel>.tns-item{float:left}.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item{margin-right:-100%}.tns-no-calc{position:relative;left:0}.tns-gallery{position:relative;left:0;min-height:1px}.tns-gallery>.tns-item{position:absolute;left:-100%;transition:transform 0s, opacity 0s}.tns-gallery>.tns-slide-active{position:relative;left:auto !important}.tns-gallery>.tns-moving{transition:all 0.25s}.tns-autowidth{display:inline-block}.tns-lazy-img{transition:opacity 0.6s;opacity:0.6}.tns-lazy-img.tns-complete{opacity:1}.tns-ah{transition:height 0s}.tns-ovh{overflow:hidden}.tns-visually-hidden{position:absolute;left:-10000em}.tns-transparent{opacity:0;visibility:hidden}.tns-fadeIn{opacity:1;filter:alpha(opacity=100);z-index:0}.tns-normal,.tns-fadeOut{opacity:0;filter:alpha(opacity=0);z-index:-1}.tns-vpfix{white-space:nowrap}.tns-vpfix>div,.tns-vpfix>li{display:inline-block}.tns-t-subp2{margin:0 auto;width:310px;position:relative;height:10px;overflow:hidden}.tns-t-ct{width:2333.3333333%;width:calc(100% * 70 / 3);position:absolute;right:0}.tns-t-ct:after{content:'';display:table;clear:both}.tns-t-ct>div{width:1.4285714%;width:calc(100% / 70);height:10px;float:left}

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */

.glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;touch-action:none;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{transition:transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:flex!important;justify-content:center;align-items:center;transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;align-items:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:flex;justify-content:center;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;touch-action:auto}.gslide-image{align-items:center}.gslide-image img{max-height:100vh;display:block;max-width:100%;margin:0;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;transition:none}.gslide-video{width:100%;max-width:100%;position:relative;width:100vh;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:block;display:inline-flex;display:flex;width:auto}.zoomed .gslide-media{box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;flex-direction:column}.gslide-description{position:relative;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:15px;padding:19px 11px;max-width:100vw!important;order:2!important;max-height:78vh;overflow:auto!important;background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{transition:opacity .5s ease;opacity:1}.greset{transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:100%;position:fixed;top:0;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{background-repeat:no-repeat;z-index:99999;cursor:pointer;width:26px;height:44px;display:block;background-position:0 0;border:none}.gclose svg,.gnext svg,.gprev svg{display:block;width:100%;height:auto}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description,.glightbox-modern .gslide-description{background:#fff}.glightbox-clean .gdesc-inner,.glightbox-modern .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title,.glightbox-modern .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc,.glightbox-modern .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video,.glightbox-modern .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev,.glightbox-modern .gclose,.glightbox-modern .gnext,.glightbox-modern .gprev{background-color:rgba(0,0,0,.12)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover,.glightbox-modern .gclose:hover,.glightbox-modern .gnext:hover,.glightbox-modern .gprev:hover{background-color:rgba(0,0,0,.2)}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path,.glightbox-modern .gclose path,.glightbox-modern .gnext path,.glightbox-modern .gprev path{fill:#fff}.glightbox-clean button:focus:not(.focused):not(.disabled),.glightbox-modern button:focus:not(.focused):not(.disabled){outline:0}.glightbox-clean .gprev,.glightbox-modern .gprev{position:absolute;top:-100%;left:30px;width:40px;height:56px}.glightbox-clean .gnext,.glightbox-modern .gnext{position:absolute;top:-100%;right:30px;width:40px;height:56px}.glightbox-clean .gclose,.glightbox-modern .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute;opacity:.7;background-position:-59px 2px}.glightbox-clean .gclose svg,.glightbox-modern .gclose svg{width:20px}.glightbox-clean .gclose:hover,.glightbox-modern .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes lightboxLoader{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;transform:translate3d(-60%,0,0)}to{visibility:visible;transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;transform:translate3d(-60%,0,0)}to{visibility:visible;transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;transform:translate3d(0,0,0)}to{transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;transform:translate3d(0,0,0)}to{transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;transform:translate3d(60%,0,0)}to{transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;transform:translate3d(60%,0,0)}to{transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;transform:translate3d(0,0,0)}to{transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;transform:translate3d(0,0,0)}to{transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{order:1}.glightbox-container .ginner-container.desc-left .gslide-description{order:0}.glightbox-container .ginner-container.desc-left .gslide-image{order:1}.gslide-image img{max-height:97vh;max-width:calc(100% - 20px);max-width:100%}.gslide-image img.zoomable{cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media,.glightbox-modern .gslide-media{box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner,.glightbox-modern .description-left .gdesc-inner,.glightbox-modern .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gprev,.glightbox-modern .gprev{top:45%}.glightbox-clean .gnext,.glightbox-modern .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose,.glightbox-modern .gclose{right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}}
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
@charset "UTF-8";
.page_404 {
  padding: 40px 0;
  background: #fff;
  font-family: "Arvo", serif;
}
.page_404 img {
  width: 100%;
}
.page_404 .four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 400px;
  background-position: center;
}
.page_404 .four_zero_four_bg h1, .page_404 .four_zero_four_bg .h1 {
  font-size: 80px;
}
.page_404 .contant_box_404 {
  margin-top: -50px;
}

.container-500 {
  font-family: "Montserrat", sans-serif;
  height: 250px;
}
.container-500 .content {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.container-500 h1, .container-500 .h1, .container-500 body.building-frontend .h1, body.building-frontend .container-500 .h1, .container-500 body.backend .h1, body.backend .container-500 .h1 {
  position: absolute;
  font-size: 80px;
  text-align: center;
  width: 300px;
}
.container-500 h1#five, .container-500 #five.h1 {
  left: -50px;
}
.container-500 h1#zero2, .container-500 #zero2.h1 {
  left: 50px;
}
.container-500 h1#point1, .container-500 #point1.h1 {
  font-size: 100px;
  top: -50px;
  left: 0px;
  -webkit-animation: moveeye1 7s infinite ease-in;
          animation: moveeye1 7s infinite ease-in;
}
.container-500 h1#point2, .container-500 #point2.h1 {
  font-size: 100px;
  top: -50px;
  left: 50px;
  -webkit-animation: moveeye2 7s infinite ease-in;
          animation: moveeye2 7s infinite ease-in;
}
.container-500 h2, .container-500 .h2, .container-500 body.building-frontend .h2, body.building-frontend .container-500 .h2, .container-500 body.backend .h2, body.backend .container-500 .h2 {
  position: absolute;
  font-size: 20px;
  text-align: center;
  width: 300px;
}
.container-500 h2#err, .container-500 #err.h2 {
  top: 5px;
}
.container-500 h2#what, .container-500 #what.h2 {
  top: 160px;
}
@-webkit-keyframes moveeye1 {
  0% {
    top: -50px;
    left: 0px;
  }
  20% {
    top: -70px;
    left: 10px;
  }
  40% {
    top: -70px;
    left: 10px;
  }
  60% {
    top: -40px;
    left: -10px;
  }
  80% {
    top: -40px;
    left: 10px;
  }
  100% {
    top: -50px;
    left: 0px;
  }
}
@keyframes moveeye1 {
  0% {
    top: -50px;
    left: 0px;
  }
  20% {
    top: -70px;
    left: 10px;
  }
  40% {
    top: -70px;
    left: 10px;
  }
  60% {
    top: -40px;
    left: -10px;
  }
  80% {
    top: -40px;
    left: 10px;
  }
  100% {
    top: -50px;
    left: 0px;
  }
}
@-webkit-keyframes moveeye2 {
  0% {
    top: -50px;
    left: 50px;
  }
  20% {
    top: -70px;
    left: 60px;
  }
  40% {
    top: -70px;
    left: 60px;
  }
  60% {
    top: -40px;
    left: 40px;
  }
  80% {
    top: -40px;
    left: 60px;
  }
  100% {
    top: -50px;
    left: 50px;
  }
}
@keyframes moveeye2 {
  0% {
    top: -50px;
    left: 50px;
  }
  20% {
    top: -70px;
    left: 60px;
  }
  40% {
    top: -70px;
    left: 60px;
  }
  60% {
    top: -40px;
    left: 40px;
  }
  80% {
    top: -40px;
    left: 60px;
  }
  100% {
    top: -50px;
    left: 50px;
  }
}

table.packages {
  margin-top: 50px;
  border: none;
  width: 100%;
  background: none;
  border-collapse: collapse;
  border-spacing: 0;
}
table.packages thead {
  background: none;
}
table.packages thead td {
  padding: 9px 10px;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  font-size: 16px;
}
table.packages thead td.gold {
  border-radius: 0;
  color: #8E610D;
}
table.packages tbody tr:nth-child(even), table.packages tbody tr:nth-child(odd) {
  background: none;
}
table.packages tr:hover td {
  background: #EEE7C6;
}
table.packages tr:hover td.feature, table.packages tr:hover td.blank {
  background: inherit;
}
table.packages tr.register:hover td, table.packages tr:hover td.blank.gold {
  background: #fff;
}
table.packages tr.register:hover td.feature {
  background: transparent;
}
table.packages td {
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #EEE7C6;
  font-family: "Avenir Next LT W01 Bold";
  font-size: 18px;
  color: #000000;
  line-height: 20px;
  padding: 15px 10px;
  position: relative;
  z-index: 2;
}
table.packages tr.bottom td {
  border: none;
}
table.packages td {
  box-shadow: inset -4px 0 4px -2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset -4px 0 4px -2px rgba(0, 0, 0, 0.3);
  position: relative;
}
table.packages thead td:after {
  box-shadow: inset -4px 0 4px -2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset -4px 0 4px -2px rgba(0, 0, 0, 0.3);
}
table.packages tr td:last-child, table.packages tr td:last-child:after {
  box-shadow: none;
  -webkit-box-shadow: none;
}
table.packages td.infin {
  font-size: 40px;
}
table.packages td.feature:after {
  position: absolute;
  content: "";
  left: 0;
  border-bottom: 1px solid #12fee8;
  bottom: 0;
  right: -20px;
}
table.packages .register td.feature:after, table.packages .highlight td.feature:after, table.packages td.feature.no-border:after {
  display: none;
}
table.packages td.blank {
  border: none;
}
table.packages td.feature, table.packages td.blank {
  background: none;
}
table.packages td.feature {
  font-family: "AvenirNextLTW01-Regular";
  font-size: 18px;
  color: #FFFFFF;
  line-height: 20px;
  text-align: left;
  border-bottom: none;
  position: relative;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
table.packages td.gold {
  border-left: 10px solid #E4D7A0;
  border-right: 10px solid #E4D7A0;
}
table.packages .top td.gold {
  height: 20px;
  background: #fff;
  border: 10px solid #E4D7A0;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}
table.packages .bottom td.gold {
  height: 20px;
  background: #fff;
  border: 10px solid #E4D7A0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
table.packages .highlight td {
  padding: 18px 10px;
  vertical-align: middle;
  font-family: "AvenirNextLTW01-Regular";
  line-height: 20px;
  height: 120px;
}
table.packages .highlight td strong {
  font-family: "Avenir Next LT W01 Bold";
}
table.packages .highlight td span {
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
}
table.packages .register td {
  padding: 18px 10px;
  vertical-align: middle;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
table.packages .register td.gold {
  border-bottom: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
}
table.packages td {
  position: relative;
}
table.packages td:after {
  content: "";
  position: absolute;
}
table.packages thead td {
  border-radius: 0;
  position: relative;
  text-transform: uppercase;
}
table.packages thead td.first {
  border-radius: 5px 0 0 0;
}
table.packages thead td.second:after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 10px;
  width: 100%;
  left: 0;
  background: #fff;
  border-radius: 5px 0 0 0;
}
table.packages thead td.third:after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 20px;
  width: 100%;
  left: 0;
  background: #fff;
  border-radius: 5px 0 0 0;
}
table.packages thead td.fourth:after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 30px;
  width: 100%;
  left: 0;
  background: #fff;
  border-radius: 5px 0 0;
}
table.packages thead td.fifth:after {
  content: "";
  position: absolute;
  bottom: 100%;
  height: 40px;
  width: 100%;
  left: 0;
  background: #fff;
  border-radius: 5px 5px 0 0;
}
table.packages td.feature {
  padding-right: 20px !important;
  min-width: 250px;
}
table.packages td.active {
  background: #2D281B;
  color: #fff;
  border-bottom: 1px solid #575349;
}
table.packages .bottom td.first {
  border-radius: 0 0 0 5px;
}
table.packages tr:hover td {
  background: #fff;
}
table.packages tr:hover td.active {
  background: #2D281B;
}
table.packages tr:hover td.feature {
  background: transparent;
}
table.packages .plans td {
  padding: 18px 10px;
  font-family: "AvenirNextLTW01-Regular";
  line-height: 20px;
}
table.packages .plans td strong {
  font-family: "Avenir Next LT W01 Bold";
}
table.packages .plans td span {
  font-size: 16px;
  margin-bottom: 20px;
  display: inline-block;
}
table.packages .plans td .button {
  margin-top: 20px;
}

body.backend {
  /*!
   * AdminKit v3.2.0 (https://adminkit.io/)
   * Copyright 2022 Paul Laros
   * Copyright 2022 AdminKit
   * Licensed under MIT (https://github.com/adminkit/adminkit/blob/master/LICENSE)
   */
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  /* rtl:begin:remove */
  /* rtl:end:remove */
  /* Rtl support */
  /*
        /*rtl:begin:ignore*/
  /*
        /*rtl:end:ignore*/
  /*
        /*rtl:begin:ignore*/
  /*
        /*rtl:end:ignore*/
}
body.backend :root {
  --bs-blue: #3B7DDD;
  --bs-indigo: #0a0a0a;
  --bs-purple: #6f42c1;
  --bs-pink: #e83e8c;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #fcb92c;
  --bs-green: #1cbb8c;
  --bs-teal: #20c997;
  --bs-cyan: #17a2b8;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #01dcc8;
  --bs-secondary: #6c757d;
  --bs-success: #1cbb8c;
  --bs-info: #17a2b8;
  --bs-warning: #fcb92c;
  --bs-danger: #dc3545;
  --bs-light: #f5f7fb;
  --bs-dark: #212529;
  --bs-primary-rgb: 1, 220, 200;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 28, 187, 140;
  --bs-info-rgb: 23, 162, 184;
  --bs-warning-rgb: 252, 185, 44;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 245, 247, 251;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 73, 80, 87;
  --bs-body-bg-rgb: 248, 250, 252;
  --bs-font-sans-serif: "Nunito", sans-serif;
  --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));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #495057;
  --bs-body-bg: #f8fafc;
}
body.backend *,
body.backend *::before,
body.backend *::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  body.backend :root {
    scroll-behavior: smooth;
  }
}
body.backend body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.backend hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
body.backend hr:not([size]) {
  height: 1px;
}
body.backend h6, body.backend .h6, body.backend h5, body.backend .h5, body.backend h4, body.backend .h4, body.backend h3, body.backend .h3, body.backend h2, body.backend .h2, body.backend h1, body.backend .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}
body.backend h1, body.backend .h1 {
  font-size: 1.8rem;
}
body.backend h2, body.backend .h2 {
  font-size: 1.575rem;
}
body.backend h3, body.backend .h3 {
  font-size: 1.35rem;
}
body.backend h4, body.backend .h4 {
  font-size: 1.125rem;
}
body.backend h5, body.backend .h5 {
  font-size: 0.9rem;
}
body.backend h6, body.backend .h6 {
  font-size: 0.9rem;
}
body.backend p {
  margin-top: 0;
  margin-bottom: 1rem;
}
body.backend abbr[title],
body.backend 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;
}
body.backend address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
body.backend ol,
body.backend ul {
  padding-left: 2rem;
}
body.backend ol,
body.backend ul,
body.backend dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
body.backend ol ol,
body.backend ul ul,
body.backend ol ul,
body.backend ul ol {
  margin-bottom: 0;
}
body.backend dt {
  font-weight: 600;
}
body.backend dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
body.backend blockquote {
  margin: 0 0 1rem;
}
body.backend b,
body.backend strong {
  font-weight: bolder;
}
body.backend small, body.backend .small {
  font-size: 80%;
}
body.backend mark, body.backend .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
body.backend sub,
body.backend sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
body.backend sub {
  bottom: -0.25em;
}
body.backend sup {
  top: -0.5em;
}
body.backend a {
  color: #01dcc8;
  text-decoration: none;
}
body.backend a:hover {
  color: #01b0a0;
  text-decoration: underline;
}
body.backend a:not([href]):not([class]), body.backend a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
body.backend pre,
body.backend code,
body.backend kbd,
body.backend samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
body.backend pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 80%;
}
body.backend pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
body.backend code {
  font-size: 80%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > body.backend code {
  color: inherit;
}
body.backend kbd {
  padding: 0.2rem 0.4rem;
  font-size: 80%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.1rem;
}
body.backend kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 600;
}
body.backend figure {
  margin: 0 0 1rem;
}
body.backend img,
body.backend svg {
  vertical-align: middle;
}
body.backend table {
  caption-side: bottom;
  border-collapse: collapse;
}
body.backend caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
}
body.backend th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
body.backend thead,
body.backend tbody,
body.backend tfoot,
body.backend tr,
body.backend td,
body.backend th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
body.backend label {
  display: inline-block;
}
body.backend button {
  border-radius: 0;
}
body.backend button:focus:not(:focus-visible) {
  outline: 0;
}
body.backend input,
body.backend button,
body.backend select,
body.backend optgroup,
body.backend textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
body.backend button,
body.backend select {
  text-transform: none;
}
body.backend [role=button] {
  cursor: pointer;
}
body.backend select {
  word-wrap: normal;
}
body.backend select:disabled {
  opacity: 1;
}
body.backend [list]::-webkit-calendar-picker-indicator {
  display: none;
}
body.backend button,
body.backend [type=button],
body.backend [type=reset],
body.backend [type=submit] {
  -webkit-appearance: button;
}
body.backend button:not(:disabled),
body.backend [type=button]:not(:disabled),
body.backend [type=reset]:not(:disabled),
body.backend [type=submit]:not(:disabled) {
  cursor: pointer;
}
body.backend ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
body.backend textarea {
  resize: vertical;
}
body.backend fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
body.backend legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
}
body.backend legend + * {
  clear: left;
}
body.backend ::-webkit-datetime-edit-fields-wrapper,
body.backend ::-webkit-datetime-edit-text,
body.backend ::-webkit-datetime-edit-minute,
body.backend ::-webkit-datetime-edit-hour-field,
body.backend ::-webkit-datetime-edit-day-field,
body.backend ::-webkit-datetime-edit-month-field,
body.backend ::-webkit-datetime-edit-year-field {
  padding: 0;
}
body.backend ::-webkit-inner-spin-button {
  height: auto;
}
body.backend [type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
body.backend ::-webkit-search-decoration {
  -webkit-appearance: none;
}
body.backend ::-webkit-color-swatch-wrapper {
  padding: 0;
}
body.backend ::-webkit-file-upload-button {
  font: inherit;
}
body.backend ::file-selector-button {
  font: inherit;
}
body.backend ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
body.backend output {
  display: inline-block;
}
body.backend iframe {
  border: 0;
}
body.backend summary {
  display: list-item;
  cursor: pointer;
}
body.backend progress {
  vertical-align: baseline;
}
body.backend [hidden] {
  display: none !important;
}
body.backend .lead {
  font-size: 1.125rem;
  font-weight: 300;
}
body.backend .display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .display-6 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
body.backend .list-unstyled {
  padding-left: 0;
  list-style: none;
}
body.backend .list-inline {
  padding-left: 0;
  list-style: none;
}
body.backend .list-inline-item {
  display: inline-block;
}
body.backend .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
body.backend .initialism {
  font-size: 80%;
  text-transform: uppercase;
}
body.backend .blockquote {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
body.backend .blockquote > :last-child {
  margin-bottom: 0;
}
body.backend .blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 80%;
  color: #6c757d;
}
body.backend .blockquote-footer::before {
  content: "— ";
}
body.backend .img-fluid {
  max-width: 100%;
  height: auto;
}
body.backend .img-thumbnail {
  padding: 0.25rem;
  background-color: #f8fafc;
  border: 1px solid #dee2e6;
  border-radius: 0.2rem;
  max-width: 100%;
  height: auto;
}
body.backend .figure {
  display: inline-block;
}
body.backend .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
body.backend .figure-caption {
  font-size: 80%;
  color: #6c757d;
}
body.backend .container,
body.backend .container-fluid,
body.backend .container-xxl,
body.backend .container-xl,
body.backend .container-lg,
body.backend .container-md,
body.backend .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) {
  body.backend .container-sm, body.backend .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.backend .container-md, body.backend .container-sm, body.backend .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.backend .container-lg, body.backend .container-md, body.backend .container-sm, body.backend .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.backend .container-xl, body.backend .container-lg, body.backend .container-md, body.backend .container-sm, body.backend .container {
    max-width: 1200px;
  }
}
body.backend .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
body.backend .row > * {
  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);
}
body.backend .col {
  flex: 1 0 0%;
}
body.backend .row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
body.backend .row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
body.backend .row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
body.backend .row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
body.backend .row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
body.backend .row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
body.backend .row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
body.backend .col-auto {
  flex: 0 0 auto;
  width: auto;
}
body.backend .col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
body.backend .col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
body.backend .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
body.backend .col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
body.backend .col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
body.backend .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
body.backend .col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
body.backend .col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
body.backend .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
body.backend .col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
body.backend .col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
body.backend .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
body.backend .offset-1 {
  margin-left: 8.33333333%;
}
body.backend .offset-2 {
  margin-left: 16.66666667%;
}
body.backend .offset-3 {
  margin-left: 25%;
}
body.backend .offset-4 {
  margin-left: 33.33333333%;
}
body.backend .offset-5 {
  margin-left: 41.66666667%;
}
body.backend .offset-6 {
  margin-left: 50%;
}
body.backend .offset-7 {
  margin-left: 58.33333333%;
}
body.backend .offset-8 {
  margin-left: 66.66666667%;
}
body.backend .offset-9 {
  margin-left: 75%;
}
body.backend .offset-10 {
  margin-left: 83.33333333%;
}
body.backend .offset-11 {
  margin-left: 91.66666667%;
}
body.backend .g-0,
body.backend .gx-0 {
  --bs-gutter-x: 0;
}
body.backend .g-0,
body.backend .gy-0 {
  --bs-gutter-y: 0;
}
body.backend .g-1,
body.backend .gx-1 {
  --bs-gutter-x: 0.25rem;
}
body.backend .g-1,
body.backend .gy-1 {
  --bs-gutter-y: 0.25rem;
}
body.backend .g-2,
body.backend .gx-2 {
  --bs-gutter-x: 0.5rem;
}
body.backend .g-2,
body.backend .gy-2 {
  --bs-gutter-y: 0.5rem;
}
body.backend .g-3,
body.backend .gx-3 {
  --bs-gutter-x: 1rem;
}
body.backend .g-3,
body.backend .gy-3 {
  --bs-gutter-y: 1rem;
}
body.backend .g-4,
body.backend .gx-4 {
  --bs-gutter-x: 1.5rem;
}
body.backend .g-4,
body.backend .gy-4 {
  --bs-gutter-y: 1.5rem;
}
body.backend .g-5,
body.backend .gx-5 {
  --bs-gutter-x: 3rem;
}
body.backend .g-5,
body.backend .gy-5 {
  --bs-gutter-y: 3rem;
}
body.backend .g-6,
body.backend .gx-6 {
  --bs-gutter-x: 4.5rem;
}
body.backend .g-6,
body.backend .gy-6 {
  --bs-gutter-y: 4.5rem;
}
body.backend .g-7,
body.backend .gx-7 {
  --bs-gutter-x: 6rem;
}
body.backend .g-7,
body.backend .gy-7 {
  --bs-gutter-y: 6rem;
}
@media (min-width: 576px) {
  body.backend .col-sm {
    flex: 1 0 0%;
  }
  body.backend .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.backend .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.backend .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  body.backend .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.backend .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.backend .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.backend .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.backend .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.backend .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.backend .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.backend .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.backend .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.backend .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .offset-sm-0 {
    margin-left: 0;
  }
  body.backend .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  body.backend .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  body.backend .offset-sm-3 {
    margin-left: 25%;
  }
  body.backend .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  body.backend .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  body.backend .offset-sm-6 {
    margin-left: 50%;
  }
  body.backend .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  body.backend .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  body.backend .offset-sm-9 {
    margin-left: 75%;
  }
  body.backend .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  body.backend .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  body.backend .g-sm-0,
body.backend .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  body.backend .g-sm-0,
body.backend .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  body.backend .g-sm-1,
body.backend .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.backend .g-sm-1,
body.backend .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.backend .g-sm-2,
body.backend .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.backend .g-sm-2,
body.backend .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.backend .g-sm-3,
body.backend .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  body.backend .g-sm-3,
body.backend .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  body.backend .g-sm-4,
body.backend .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.backend .g-sm-4,
body.backend .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.backend .g-sm-5,
body.backend .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  body.backend .g-sm-5,
body.backend .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
  body.backend .g-sm-6,
body.backend .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  body.backend .g-sm-6,
body.backend .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
  body.backend .g-sm-7,
body.backend .gx-sm-7 {
    --bs-gutter-x: 6rem;
  }
  body.backend .g-sm-7,
body.backend .gy-sm-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 768px) {
  body.backend .col-md {
    flex: 1 0 0%;
  }
  body.backend .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.backend .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.backend .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  body.backend .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.backend .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.backend .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.backend .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.backend .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.backend .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.backend .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.backend .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.backend .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.backend .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .offset-md-0 {
    margin-left: 0;
  }
  body.backend .offset-md-1 {
    margin-left: 8.33333333%;
  }
  body.backend .offset-md-2 {
    margin-left: 16.66666667%;
  }
  body.backend .offset-md-3 {
    margin-left: 25%;
  }
  body.backend .offset-md-4 {
    margin-left: 33.33333333%;
  }
  body.backend .offset-md-5 {
    margin-left: 41.66666667%;
  }
  body.backend .offset-md-6 {
    margin-left: 50%;
  }
  body.backend .offset-md-7 {
    margin-left: 58.33333333%;
  }
  body.backend .offset-md-8 {
    margin-left: 66.66666667%;
  }
  body.backend .offset-md-9 {
    margin-left: 75%;
  }
  body.backend .offset-md-10 {
    margin-left: 83.33333333%;
  }
  body.backend .offset-md-11 {
    margin-left: 91.66666667%;
  }
  body.backend .g-md-0,
body.backend .gx-md-0 {
    --bs-gutter-x: 0;
  }
  body.backend .g-md-0,
body.backend .gy-md-0 {
    --bs-gutter-y: 0;
  }
  body.backend .g-md-1,
body.backend .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.backend .g-md-1,
body.backend .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.backend .g-md-2,
body.backend .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.backend .g-md-2,
body.backend .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.backend .g-md-3,
body.backend .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  body.backend .g-md-3,
body.backend .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  body.backend .g-md-4,
body.backend .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.backend .g-md-4,
body.backend .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.backend .g-md-5,
body.backend .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  body.backend .g-md-5,
body.backend .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
  body.backend .g-md-6,
body.backend .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  body.backend .g-md-6,
body.backend .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
  body.backend .g-md-7,
body.backend .gx-md-7 {
    --bs-gutter-x: 6rem;
  }
  body.backend .g-md-7,
body.backend .gy-md-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 992px) {
  body.backend .col-lg {
    flex: 1 0 0%;
  }
  body.backend .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.backend .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.backend .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  body.backend .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.backend .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.backend .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.backend .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.backend .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.backend .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.backend .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.backend .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.backend .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.backend .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .offset-lg-0 {
    margin-left: 0;
  }
  body.backend .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  body.backend .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  body.backend .offset-lg-3 {
    margin-left: 25%;
  }
  body.backend .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  body.backend .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  body.backend .offset-lg-6 {
    margin-left: 50%;
  }
  body.backend .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  body.backend .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  body.backend .offset-lg-9 {
    margin-left: 75%;
  }
  body.backend .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  body.backend .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  body.backend .g-lg-0,
body.backend .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  body.backend .g-lg-0,
body.backend .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  body.backend .g-lg-1,
body.backend .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.backend .g-lg-1,
body.backend .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.backend .g-lg-2,
body.backend .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.backend .g-lg-2,
body.backend .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.backend .g-lg-3,
body.backend .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  body.backend .g-lg-3,
body.backend .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  body.backend .g-lg-4,
body.backend .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.backend .g-lg-4,
body.backend .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.backend .g-lg-5,
body.backend .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  body.backend .g-lg-5,
body.backend .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
  body.backend .g-lg-6,
body.backend .gx-lg-6 {
    --bs-gutter-x: 4.5rem;
  }
  body.backend .g-lg-6,
body.backend .gy-lg-6 {
    --bs-gutter-y: 4.5rem;
  }
  body.backend .g-lg-7,
body.backend .gx-lg-7 {
    --bs-gutter-x: 6rem;
  }
  body.backend .g-lg-7,
body.backend .gy-lg-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 1200px) {
  body.backend .col-xl {
    flex: 1 0 0%;
  }
  body.backend .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.backend .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.backend .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  body.backend .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.backend .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.backend .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.backend .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.backend .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.backend .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.backend .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.backend .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.backend .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.backend .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .offset-xl-0 {
    margin-left: 0;
  }
  body.backend .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  body.backend .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  body.backend .offset-xl-3 {
    margin-left: 25%;
  }
  body.backend .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  body.backend .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  body.backend .offset-xl-6 {
    margin-left: 50%;
  }
  body.backend .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  body.backend .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  body.backend .offset-xl-9 {
    margin-left: 75%;
  }
  body.backend .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  body.backend .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  body.backend .g-xl-0,
body.backend .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  body.backend .g-xl-0,
body.backend .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  body.backend .g-xl-1,
body.backend .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.backend .g-xl-1,
body.backend .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.backend .g-xl-2,
body.backend .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.backend .g-xl-2,
body.backend .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.backend .g-xl-3,
body.backend .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  body.backend .g-xl-3,
body.backend .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  body.backend .g-xl-4,
body.backend .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.backend .g-xl-4,
body.backend .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.backend .g-xl-5,
body.backend .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  body.backend .g-xl-5,
body.backend .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
  body.backend .g-xl-6,
body.backend .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  body.backend .g-xl-6,
body.backend .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
  body.backend .g-xl-7,
body.backend .gx-xl-7 {
    --bs-gutter-x: 6rem;
  }
  body.backend .g-xl-7,
body.backend .gy-xl-7 {
    --bs-gutter-y: 6rem;
  }
}
@media (min-width: 1440px) {
  body.backend .col-xxl {
    flex: 1 0 0%;
  }
  body.backend .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.backend .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.backend .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  body.backend .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.backend .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.backend .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.backend .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.backend .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.backend .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.backend .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.backend .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.backend .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.backend .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.backend .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.backend .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.backend .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.backend .offset-xxl-0 {
    margin-left: 0;
  }
  body.backend .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  body.backend .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  body.backend .offset-xxl-3 {
    margin-left: 25%;
  }
  body.backend .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  body.backend .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  body.backend .offset-xxl-6 {
    margin-left: 50%;
  }
  body.backend .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  body.backend .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  body.backend .offset-xxl-9 {
    margin-left: 75%;
  }
  body.backend .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  body.backend .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  body.backend .g-xxl-0,
body.backend .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  body.backend .g-xxl-0,
body.backend .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  body.backend .g-xxl-1,
body.backend .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.backend .g-xxl-1,
body.backend .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.backend .g-xxl-2,
body.backend .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.backend .g-xxl-2,
body.backend .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.backend .g-xxl-3,
body.backend .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  body.backend .g-xxl-3,
body.backend .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  body.backend .g-xxl-4,
body.backend .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.backend .g-xxl-4,
body.backend .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.backend .g-xxl-5,
body.backend .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  body.backend .g-xxl-5,
body.backend .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
  body.backend .g-xxl-6,
body.backend .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  body.backend .g-xxl-6,
body.backend .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
  body.backend .g-xxl-7,
body.backend .gx-xxl-7 {
    --bs-gutter-x: 6rem;
  }
  body.backend .g-xxl-7,
body.backend .gy-xxl-7 {
    --bs-gutter-y: 6rem;
  }
}
body.backend .table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #495057;
  --bs-table-striped-bg: #f8f9fa;
  --bs-table-active-color: #495057;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #495057;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.0375);
  width: 100%;
  margin-bottom: 1rem;
  color: #495057;
  vertical-align: top;
  border-color: #dee2e6;
}
body.backend .table > :not(caption) > * > * {
  padding: 0.75rem 0.75rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
body.backend .table > tbody {
  vertical-align: inherit;
}
body.backend .table > thead {
  vertical-align: bottom;
}
body.backend .table > :not(:first-child) {
  border-top: 2px solid currentColor;
}
body.backend .caption-top {
  caption-side: top;
}
body.backend .table-sm > :not(caption) > * > * {
  padding: 0.3rem 0.3rem;
}
body.backend .table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
body.backend .table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
body.backend .table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
body.backend .table-borderless > :not(:first-child) {
  border-top-width: 0;
}
body.backend .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
body.backend .table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
body.backend .table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
body.backend .table-primary {
  --bs-table-bg: #ccf8f4;
  --bs-table-striped-bg: #c2ece8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8dfdc;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bde5e2;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8dfdc;
}
body.backend .table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}
body.backend .table-success {
  --bs-table-bg: #d2f1e8;
  --bs-table-striped-bg: #c8e5dc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bdd9d1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c2dfd7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bdd9d1;
}
body.backend .table-info {
  --bs-table-bg: #d1ecf1;
  --bs-table-striped-bg: #c7e0e5;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd4d9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1dadf;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd4d9;
}
body.backend .table-warning {
  --bs-table-bg: #fef1d5;
  --bs-table-striped-bg: #f1e5ca;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e5d9c0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ebdfc5;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e5d9c0;
}
body.backend .table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}
body.backend .table-light {
  --bs-table-bg: #f5f7fb;
  --bs-table-striped-bg: #e9ebee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dddee2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e3e4e8;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dddee2;
}
body.backend .table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}
body.backend .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  body.backend .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  body.backend .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  body.backend .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  body.backend .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1439.98px) {
  body.backend .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
body.backend .form-label {
  margin-bottom: 0.5rem;
}
body.backend .col-form-label {
  padding-top: calc(0.3rem + 1px);
  padding-bottom: calc(0.3rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}
body.backend .col-form-label-lg {
  padding-top: calc(0.4rem + 1px);
  padding-bottom: calc(0.4rem + 1px);
  font-size: 0.925rem;
}
body.backend .col-form-label-sm {
  padding-top: calc(0.2rem + 1px);
  padding-bottom: calc(0.2rem + 1px);
  font-size: 0.75rem;
}
body.backend .form-text {
  margin-top: 0.25rem;
  font-size: 80%;
  color: #6c757d;
}
body.backend .form-control {
  display: block;
  width: 100%;
  padding: 0.3rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.2rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  body.backend .form-control {
    transition: none;
  }
}
body.backend .form-control[type=file] {
  overflow: hidden;
}
body.backend .form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
body.backend .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .form-control::-webkit-date-and-time-value {
  height: 1.6em;
}
body.backend .form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
body.backend .form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
body.backend .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
body.backend .form-control:disabled, body.backend .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
body.backend .form-control::-webkit-file-upload-button {
  padding: 0.3rem 0.85rem;
  margin: -0.3rem -0.85rem;
  -webkit-margin-end: 0.85rem;
          margin-inline-end: 0.85rem;
  color: #495057;
  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;
}
body.backend .form-control::file-selector-button {
  padding: 0.3rem 0.85rem;
  margin: -0.3rem -0.85rem;
  -webkit-margin-end: 0.85rem;
          margin-inline-end: 0.85rem;
  color: #495057;
  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) {
  body.backend .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  body.backend .form-control::file-selector-button {
    transition: none;
  }
}
body.backend .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
body.backend .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
body.backend .form-control::-webkit-file-upload-button {
  padding: 0.3rem 0.85rem;
  margin: -0.3rem -0.85rem;
  -webkit-margin-end: 0.85rem;
          margin-inline-end: 0.85rem;
  color: #495057;
  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) {
  body.backend .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
body.backend .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
body.backend .form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.3rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  color: #495057;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
body.backend .form-control-plaintext.form-control-sm, body.backend .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
body.backend .form-control-sm {
  min-height: calc(1.525rem + 2px);
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}
body.backend .form-control-sm::-webkit-file-upload-button {
  padding: 0.2rem 0.5rem;
  margin: -0.2rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.backend .form-control-sm::file-selector-button {
  padding: 0.2rem 0.5rem;
  margin: -0.2rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.backend .form-control-sm::-webkit-file-upload-button {
  padding: 0.2rem 0.5rem;
  margin: -0.2rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.backend .form-control-lg {
  min-height: calc(2.1875rem + 2px);
  padding: 0.4rem 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}
body.backend .form-control-lg::-webkit-file-upload-button {
  padding: 0.4rem 1rem;
  margin: -0.4rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.backend .form-control-lg::file-selector-button {
  padding: 0.4rem 1rem;
  margin: -0.4rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.backend .form-control-lg::-webkit-file-upload-button {
  padding: 0.4rem 1rem;
  margin: -0.4rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.backend textarea.form-control {
  min-height: calc(2.04rem + 2px);
}
body.backend textarea.form-control-sm {
  min-height: calc(1.525rem + 2px);
}
body.backend textarea.form-control-lg {
  min-height: calc(2.1875rem + 2px);
}
body.backend .form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.3rem;
}
body.backend .form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
body.backend .form-control-color::-moz-color-swatch {
  height: 1.6em;
  border-radius: 0.2rem;
}
body.backend .form-control-color::-webkit-color-swatch {
  height: 1.6em;
  border-radius: 0.2rem;
}
body.backend .form-select {
  display: block;
  width: 100%;
  padding: 0.3rem 2.55rem 0.3rem 0.85rem;
  -moz-padding-start: calc(0.85rem - 3px);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  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.85rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
  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) {
  body.backend .form-select {
    transition: none;
  }
}
body.backend .form-select:focus {
  border-color: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .form-select[multiple], body.backend .form-select[size]:not([size="1"]) {
  padding-right: 0.85rem;
  background-image: none;
}
body.backend .form-select:disabled {
  background-color: #e9ecef;
}
body.backend .form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
body.backend .form-select-sm {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}
body.backend .form-select-lg {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}
body.backend .form-check {
  display: block;
  min-height: 1.44rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
body.backend .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
body.backend .form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  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;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
body.backend .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
body.backend .form-check-input[type=radio] {
  border-radius: 50%;
}
body.backend .form-check-input:active {
  filter: brightness(90%);
}
body.backend .form-check-input:focus {
  border-color: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .form-check-input:checked {
  background-color: #01dcc8;
  border-color: #01dcc8;
}
body.backend .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");
}
body.backend .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");
}
body.backend .form-check-input[type=checkbox]:indeterminate {
  background-color: #01dcc8;
  border-color: #01dcc8;
  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");
}
body.backend .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
body.backend .form-check-input[disabled] ~ .form-check-label, body.backend .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
body.backend .form-switch {
  padding-left: 2.5em;
}
body.backend .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) {
  body.backend .form-switch .form-check-input {
    transition: none;
  }
}
body.backend .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='%2380eee4'/%3e%3c/svg%3e");
}
body.backend .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");
}
body.backend .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
body.backend .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
body.backend .btn-check[disabled] + .btn, body.backend .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
body.backend .form-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body.backend .form-range:focus {
  outline: 0;
}
body.backend .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .form-range::-moz-focus-outer {
  border: 0;
}
body.backend .form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #01dcc8;
  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) {
  body.backend .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
body.backend .form-range::-webkit-slider-thumb:active {
  background-color: #b3f5ef;
}
body.backend .form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
body.backend .form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #01dcc8;
  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) {
  body.backend .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
body.backend .form-range::-moz-range-thumb:active {
  background-color: #b3f5ef;
}
body.backend .form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
body.backend .form-range:disabled {
  pointer-events: none;
}
body.backend .form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
body.backend .form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
body.backend .form-floating {
  position: relative;
}
body.backend .form-floating > .form-control,
body.backend .form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
body.backend .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.85rem;
  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) {
  body.backend .form-floating > label {
    transition: none;
  }
}
body.backend .form-floating > .form-control {
  padding: 1rem 0.85rem;
}
body.backend .form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
body.backend .form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
body.backend .form-floating > .form-control::placeholder {
  color: transparent;
}
body.backend .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.backend .form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.backend .form-floating > .form-control:focus, body.backend .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.backend .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.backend .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.backend .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.backend .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.backend .form-floating > .form-control:focus ~ label,
body.backend .form-floating > .form-control:not(:placeholder-shown) ~ label,
body.backend .form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.backend .form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.backend .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
body.backend .input-group > .form-control,
body.backend .input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
body.backend .input-group > .form-control:focus,
body.backend .input-group > .form-select:focus {
  z-index: 3;
}
body.backend .input-group .btn {
  position: relative;
  z-index: 2;
}
body.backend .input-group .btn:focus {
  z-index: 3;
}
body.backend .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
}
body.backend .input-group-lg > .form-control,
body.backend .input-group-lg > .form-select,
body.backend .input-group-lg > .input-group-text,
body.backend .input-group-lg > .btn {
  padding: 0.4rem 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}
body.backend .input-group-sm > .form-control,
body.backend .input-group-sm > .form-select,
body.backend .input-group-sm > .input-group-text,
body.backend .input-group-sm > .btn {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}
body.backend .input-group-lg > .form-select,
body.backend .input-group-sm > .form-select {
  padding-right: 3.4rem;
}
body.backend .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
body.backend .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.backend .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
body.backend .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.backend .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;
}
body.backend .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #1cbb8c;
}
body.backend .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.75rem;
  color: #000;
  background-color: rgba(28, 187, 140, 0.9);
  border-radius: 0.2rem;
}
.was-validated body.backend:valid ~ .valid-feedback,
.was-validated body.backend:valid ~ .valid-tooltip, body.backend.is-valid ~ .valid-feedback,
body.backend.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated body.backend .form-control:valid, body.backend .form-control.is-valid {
  border-color: #1cbb8c;
}
.was-validated body.backend .form-control:valid:focus, body.backend .form-control.is-valid:focus {
  border-color: #1cbb8c;
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}
.was-validated body.backend .form-select:valid, body.backend .form-select.is-valid {
  border-color: #1cbb8c;
}
.was-validated body.backend .form-select:valid:focus, body.backend .form-select.is-valid:focus {
  border-color: #1cbb8c;
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}
.was-validated body.backend .form-check-input:valid, body.backend .form-check-input.is-valid {
  border-color: #1cbb8c;
}
.was-validated body.backend .form-check-input:valid:checked, body.backend .form-check-input.is-valid:checked {
  background-color: #1cbb8c;
}
.was-validated body.backend .form-check-input:valid:focus, body.backend .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.25);
}
.was-validated body.backend .form-check-input:valid ~ .form-check-label, body.backend .form-check-input.is-valid ~ .form-check-label {
  color: #1cbb8c;
}
body.backend .form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated body.backend .input-group .form-control:valid, body.backend .input-group .form-control.is-valid,
.was-validated body.backend .input-group .form-select:valid,
body.backend .input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated body.backend .input-group .form-control:valid:focus, body.backend .input-group .form-control.is-valid:focus,
.was-validated body.backend .input-group .form-select:valid:focus,
body.backend .input-group .form-select.is-valid:focus {
  z-index: 3;
}
body.backend .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
body.backend .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.75rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.2rem;
}
.was-validated body.backend:invalid ~ .invalid-feedback,
.was-validated body.backend:invalid ~ .invalid-tooltip, body.backend.is-invalid ~ .invalid-feedback,
body.backend.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated body.backend .form-control:invalid, body.backend .form-control.is-invalid {
  border-color: #dc3545;
}
.was-validated body.backend .form-control:invalid:focus, body.backend .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated body.backend .form-select:invalid, body.backend .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated body.backend .form-select:invalid:focus, body.backend .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated body.backend .form-check-input:invalid, body.backend .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated body.backend .form-check-input:invalid:checked, body.backend .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated body.backend .form-check-input:invalid:focus, body.backend .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated body.backend .form-check-input:invalid ~ .form-check-label, body.backend .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
body.backend .form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated body.backend .input-group .form-control:invalid, body.backend .input-group .form-control.is-invalid,
.was-validated body.backend .input-group .form-select:invalid,
body.backend .input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated body.backend .input-group .form-control:invalid:focus, body.backend .input-group .form-control.is-invalid:focus,
.was-validated body.backend .input-group .form-select:invalid:focus,
body.backend .input-group .form-select.is-invalid:focus {
  z-index: 3;
}
body.backend .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.3rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 0.2rem;
  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) {
  body.backend .btn {
    transition: none;
  }
}
body.backend .btn:hover {
  color: #495057;
  text-decoration: none;
}
.btn-check:focus + body.backend .btn, body.backend .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
}
body.backend .btn:disabled, body.backend .btn.disabled, fieldset:disabled body.backend .btn {
  pointer-events: none;
  opacity: 0.65;
}
body.backend .btn-primary {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
body.backend .btn-primary:hover {
  color: #000;
  background-color: #27e1d0;
  border-color: #1ae0ce;
}
.btn-check:focus + body.backend .btn-primary, body.backend .btn-primary:focus {
  color: #000;
  background-color: #27e1d0;
  border-color: #1ae0ce;
  box-shadow: 0 0 0 0.2rem rgba(1, 187, 170, 0.5);
}
.btn-check:checked + body.backend .btn-primary, .btn-check:active + body.backend .btn-primary, body.backend .btn-primary:active, body.backend .btn-primary.active, .show > body.backend .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #34e3d3;
  border-color: #1ae0ce;
}
.btn-check:checked + body.backend .btn-primary:focus, .btn-check:active + body.backend .btn-primary:focus, body.backend .btn-primary:active:focus, body.backend .btn-primary.active:focus, .show > body.backend .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 187, 170, 0.5);
}
body.backend .btn-primary:disabled, body.backend .btn-primary.disabled {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
body.backend .btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
body.backend .btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + body.backend .btn-secondary, body.backend .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + body.backend .btn-secondary, .btn-check:active + body.backend .btn-secondary, body.backend .btn-secondary:active, body.backend .btn-secondary.active, .show > body.backend .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:checked + body.backend .btn-secondary:focus, .btn-check:active + body.backend .btn-secondary:focus, body.backend .btn-secondary:active:focus, body.backend .btn-secondary.active:focus, .show > body.backend .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
body.backend .btn-secondary:disabled, body.backend .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
body.backend .btn-success {
  color: #000;
  background-color: #1cbb8c;
  border-color: #1cbb8c;
}
body.backend .btn-success:hover {
  color: #000;
  background-color: #3ec59d;
  border-color: #33c298;
}
.btn-check:focus + body.backend .btn-success, body.backend .btn-success:focus {
  color: #000;
  background-color: #3ec59d;
  border-color: #33c298;
  box-shadow: 0 0 0 0.2rem rgba(24, 159, 119, 0.5);
}
.btn-check:checked + body.backend .btn-success, .btn-check:active + body.backend .btn-success, body.backend .btn-success:active, body.backend .btn-success.active, .show > body.backend .btn-success.dropdown-toggle {
  color: #000;
  background-color: #49c9a3;
  border-color: #33c298;
}
.btn-check:checked + body.backend .btn-success:focus, .btn-check:active + body.backend .btn-success:focus, body.backend .btn-success:active:focus, body.backend .btn-success.active:focus, .show > body.backend .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 159, 119, 0.5);
}
body.backend .btn-success:disabled, body.backend .btn-success.disabled {
  color: #000;
  background-color: #1cbb8c;
  border-color: #1cbb8c;
}
body.backend .btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
body.backend .btn-info:hover {
  color: #fff;
  background-color: #148a9c;
  border-color: #128293;
}
.btn-check:focus + body.backend .btn-info, body.backend .btn-info:focus {
  color: #fff;
  background-color: #148a9c;
  border-color: #128293;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-check:checked + body.backend .btn-info, .btn-check:active + body.backend .btn-info, body.backend .btn-info:active, body.backend .btn-info.active, .show > body.backend .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #128293;
  border-color: #117a8a;
}
.btn-check:checked + body.backend .btn-info:focus, .btn-check:active + body.backend .btn-info:focus, body.backend .btn-info:active:focus, body.backend .btn-info.active:focus, .show > body.backend .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
body.backend .btn-info:disabled, body.backend .btn-info.disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
body.backend .btn-warning {
  color: #000;
  background-color: #fcb92c;
  border-color: #fcb92c;
}
body.backend .btn-warning:hover {
  color: #000;
  background-color: #fcc44c;
  border-color: #fcc041;
}
.btn-check:focus + body.backend .btn-warning, body.backend .btn-warning:focus {
  color: #000;
  background-color: #fcc44c;
  border-color: #fcc041;
  box-shadow: 0 0 0 0.2rem rgba(214, 157, 37, 0.5);
}
.btn-check:checked + body.backend .btn-warning, .btn-check:active + body.backend .btn-warning, body.backend .btn-warning:active, body.backend .btn-warning.active, .show > body.backend .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #fdc756;
  border-color: #fcc041;
}
.btn-check:checked + body.backend .btn-warning:focus, .btn-check:active + body.backend .btn-warning:focus, body.backend .btn-warning:active:focus, body.backend .btn-warning.active:focus, .show > body.backend .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(214, 157, 37, 0.5);
}
body.backend .btn-warning:disabled, body.backend .btn-warning.disabled {
  color: #000;
  background-color: #fcb92c;
  border-color: #fcb92c;
}
body.backend .btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
body.backend .btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + body.backend .btn-danger, body.backend .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + body.backend .btn-danger, .btn-check:active + body.backend .btn-danger, body.backend .btn-danger:active, body.backend .btn-danger.active, .show > body.backend .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + body.backend .btn-danger:focus, .btn-check:active + body.backend .btn-danger:focus, body.backend .btn-danger:active:focus, body.backend .btn-danger.active:focus, .show > body.backend .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
body.backend .btn-danger:disabled, body.backend .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
body.backend .btn-light {
  color: #000;
  background-color: #f5f7fb;
  border-color: #f5f7fb;
}
body.backend .btn-light:hover {
  color: #000;
  background-color: #f7f8fc;
  border-color: #f6f8fb;
}
.btn-check:focus + body.backend .btn-light, body.backend .btn-light:focus {
  color: #000;
  background-color: #f7f8fc;
  border-color: #f6f8fb;
  box-shadow: 0 0 0 0.2rem rgba(208, 210, 213, 0.5);
}
.btn-check:checked + body.backend .btn-light, .btn-check:active + body.backend .btn-light, body.backend .btn-light:active, body.backend .btn-light.active, .show > body.backend .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f7f9fc;
  border-color: #f6f8fb;
}
.btn-check:checked + body.backend .btn-light:focus, .btn-check:active + body.backend .btn-light:focus, body.backend .btn-light:active:focus, body.backend .btn-light.active:focus, .show > body.backend .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(208, 210, 213, 0.5);
}
body.backend .btn-light:disabled, body.backend .btn-light.disabled {
  color: #000;
  background-color: #f5f7fb;
  border-color: #f5f7fb;
}
body.backend .btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
body.backend .btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + body.backend .btn-dark, body.backend .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + body.backend .btn-dark, .btn-check:active + body.backend .btn-dark, body.backend .btn-dark:active, body.backend .btn-dark.active, .show > body.backend .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + body.backend .btn-dark:focus, .btn-check:active + body.backend .btn-dark:focus, body.backend .btn-dark:active:focus, body.backend .btn-dark.active:focus, .show > body.backend .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 70, 73, 0.5);
}
body.backend .btn-dark:disabled, body.backend .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
body.backend .btn-outline-primary {
  color: #01dcc8;
  border-color: #01dcc8;
}
body.backend .btn-outline-primary:hover {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.btn-check:focus + body.backend .btn-outline-primary, body.backend .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.5);
}
.btn-check:checked + body.backend .btn-outline-primary, .btn-check:active + body.backend .btn-outline-primary, body.backend .btn-outline-primary:active, body.backend .btn-outline-primary.active, body.backend .btn-outline-primary.dropdown-toggle.show {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.btn-check:checked + body.backend .btn-outline-primary:focus, .btn-check:active + body.backend .btn-outline-primary:focus, body.backend .btn-outline-primary:active:focus, body.backend .btn-outline-primary.active:focus, body.backend .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.5);
}
body.backend .btn-outline-primary:disabled, body.backend .btn-outline-primary.disabled {
  color: #01dcc8;
  background-color: transparent;
}
body.backend .btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
body.backend .btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + body.backend .btn-outline-secondary, body.backend .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + body.backend .btn-outline-secondary, .btn-check:active + body.backend .btn-outline-secondary, body.backend .btn-outline-secondary:active, body.backend .btn-outline-secondary.active, body.backend .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + body.backend .btn-outline-secondary:focus, .btn-check:active + body.backend .btn-outline-secondary:focus, body.backend .btn-outline-secondary:active:focus, body.backend .btn-outline-secondary.active:focus, body.backend .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
body.backend .btn-outline-secondary:disabled, body.backend .btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}
body.backend .btn-outline-success {
  color: #1cbb8c;
  border-color: #1cbb8c;
}
body.backend .btn-outline-success:hover {
  color: #000;
  background-color: #1cbb8c;
  border-color: #1cbb8c;
}
.btn-check:focus + body.backend .btn-outline-success, body.backend .btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.5);
}
.btn-check:checked + body.backend .btn-outline-success, .btn-check:active + body.backend .btn-outline-success, body.backend .btn-outline-success:active, body.backend .btn-outline-success.active, body.backend .btn-outline-success.dropdown-toggle.show {
  color: #000;
  background-color: #1cbb8c;
  border-color: #1cbb8c;
}
.btn-check:checked + body.backend .btn-outline-success:focus, .btn-check:active + body.backend .btn-outline-success:focus, body.backend .btn-outline-success:active:focus, body.backend .btn-outline-success.active:focus, body.backend .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(28, 187, 140, 0.5);
}
body.backend .btn-outline-success:disabled, body.backend .btn-outline-success.disabled {
  color: #1cbb8c;
  background-color: transparent;
}
body.backend .btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
body.backend .btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-check:focus + body.backend .btn-outline-info, body.backend .btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-check:checked + body.backend .btn-outline-info, .btn-check:active + body.backend .btn-outline-info, body.backend .btn-outline-info:active, body.backend .btn-outline-info.active, body.backend .btn-outline-info.dropdown-toggle.show {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-check:checked + body.backend .btn-outline-info:focus, .btn-check:active + body.backend .btn-outline-info:focus, body.backend .btn-outline-info:active:focus, body.backend .btn-outline-info.active:focus, body.backend .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
body.backend .btn-outline-info:disabled, body.backend .btn-outline-info.disabled {
  color: #17a2b8;
  background-color: transparent;
}
body.backend .btn-outline-warning {
  color: #fcb92c;
  border-color: #fcb92c;
}
body.backend .btn-outline-warning:hover {
  color: #000;
  background-color: #fcb92c;
  border-color: #fcb92c;
}
.btn-check:focus + body.backend .btn-outline-warning, body.backend .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(252, 185, 44, 0.5);
}
.btn-check:checked + body.backend .btn-outline-warning, .btn-check:active + body.backend .btn-outline-warning, body.backend .btn-outline-warning:active, body.backend .btn-outline-warning.active, body.backend .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #fcb92c;
  border-color: #fcb92c;
}
.btn-check:checked + body.backend .btn-outline-warning:focus, .btn-check:active + body.backend .btn-outline-warning:focus, body.backend .btn-outline-warning:active:focus, body.backend .btn-outline-warning.active:focus, body.backend .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(252, 185, 44, 0.5);
}
body.backend .btn-outline-warning:disabled, body.backend .btn-outline-warning.disabled {
  color: #fcb92c;
  background-color: transparent;
}
body.backend .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
body.backend .btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + body.backend .btn-outline-danger, body.backend .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + body.backend .btn-outline-danger, .btn-check:active + body.backend .btn-outline-danger, body.backend .btn-outline-danger:active, body.backend .btn-outline-danger.active, body.backend .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + body.backend .btn-outline-danger:focus, .btn-check:active + body.backend .btn-outline-danger:focus, body.backend .btn-outline-danger:active:focus, body.backend .btn-outline-danger.active:focus, body.backend .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
body.backend .btn-outline-danger:disabled, body.backend .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}
body.backend .btn-outline-light {
  color: #f5f7fb;
  border-color: #f5f7fb;
}
body.backend .btn-outline-light:hover {
  color: #000;
  background-color: #f5f7fb;
  border-color: #f5f7fb;
}
.btn-check:focus + body.backend .btn-outline-light, body.backend .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 247, 251, 0.5);
}
.btn-check:checked + body.backend .btn-outline-light, .btn-check:active + body.backend .btn-outline-light, body.backend .btn-outline-light:active, body.backend .btn-outline-light.active, body.backend .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f5f7fb;
  border-color: #f5f7fb;
}
.btn-check:checked + body.backend .btn-outline-light:focus, .btn-check:active + body.backend .btn-outline-light:focus, body.backend .btn-outline-light:active:focus, body.backend .btn-outline-light.active:focus, body.backend .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 247, 251, 0.5);
}
body.backend .btn-outline-light:disabled, body.backend .btn-outline-light.disabled {
  color: #f5f7fb;
  background-color: transparent;
}
body.backend .btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
body.backend .btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + body.backend .btn-outline-dark, body.backend .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + body.backend .btn-outline-dark, .btn-check:active + body.backend .btn-outline-dark, body.backend .btn-outline-dark:active, body.backend .btn-outline-dark.active, body.backend .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + body.backend .btn-outline-dark:focus, .btn-check:active + body.backend .btn-outline-dark:focus, body.backend .btn-outline-dark:active:focus, body.backend .btn-outline-dark.active:focus, body.backend .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
}
body.backend .btn-outline-dark:disabled, body.backend .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}
body.backend .btn-link {
  font-weight: 400;
  color: #01dcc8;
  text-decoration: none;
}
body.backend .btn-link:hover {
  color: #01b0a0;
  text-decoration: underline;
}
body.backend .btn-link:focus {
  text-decoration: underline;
}
body.backend .btn-link:disabled, body.backend .btn-link.disabled {
  color: #6c757d;
}
body.backend .btn-lg, body.backend .btn-group-lg > .btn, body.backend body.building-frontend .btn-group-lg > .btn {
  padding: 0.4rem 1rem;
  font-size: 0.925rem;
  border-radius: 0.3rem;
}
body.backend .btn-sm, body.backend .btn-group-sm > .btn, body.backend body.building-frontend .btn-group-sm > .btn {
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.1rem;
}
body.backend .fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  body.backend .fade {
    transition: none;
  }
}
body.backend .fade:not(.show) {
  opacity: 0;
}
body.backend .collapse:not(.show) {
  display: none;
}
body.backend .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.backend .collapsing {
    transition: none;
  }
}
body.backend .collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.backend .collapsing.collapse-horizontal {
    transition: none;
  }
}
body.backend .dropup,
body.backend .dropend,
body.backend .dropdown,
body.backend .dropstart {
  position: relative;
}
body.backend .dropdown-toggle {
  white-space: nowrap;
}
body.backend .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;
}
body.backend .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.backend .dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.9rem;
  color: #495057;
  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.2rem;
}
body.backend .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
body.backend .dropdown-menu-start {
  --bs-position: start;
}
body.backend .dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
body.backend .dropdown-menu-end {
  --bs-position: end;
}
body.backend .dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  body.backend .dropdown-menu-sm-start {
    --bs-position: start;
  }
  body.backend .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.backend .dropdown-menu-sm-end {
    --bs-position: end;
  }
  body.backend .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  body.backend .dropdown-menu-md-start {
    --bs-position: start;
  }
  body.backend .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.backend .dropdown-menu-md-end {
    --bs-position: end;
  }
  body.backend .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  body.backend .dropdown-menu-lg-start {
    --bs-position: start;
  }
  body.backend .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.backend .dropdown-menu-lg-end {
    --bs-position: end;
  }
  body.backend .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  body.backend .dropdown-menu-xl-start {
    --bs-position: start;
  }
  body.backend .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.backend .dropdown-menu-xl-end {
    --bs-position: end;
  }
  body.backend .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1440px) {
  body.backend .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  body.backend .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.backend .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  body.backend .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
body.backend .dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
body.backend .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;
}
body.backend .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.backend .dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
body.backend .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;
}
body.backend .dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.backend .dropend .dropdown-toggle::after {
  vertical-align: 0;
}
body.backend .dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
body.backend .dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
body.backend .dropstart .dropdown-toggle::after {
  display: none;
}
body.backend .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;
}
body.backend .dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.backend .dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
body.backend .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
body.backend .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
body.backend .dropdown-item:hover, body.backend .dropdown-item:focus {
  color: #1e2125;
  text-decoration: none;
  background-color: #e9ecef;
}
body.backend .dropdown-item.active, body.backend .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #01dcc8;
}
body.backend .dropdown-item.disabled, body.backend .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
body.backend .dropdown-menu.show {
  display: block;
}
body.backend .dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #6c757d;
  white-space: nowrap;
}
body.backend .dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}
body.backend .dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
body.backend .dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
body.backend .dropdown-menu-dark .dropdown-item:hover, body.backend .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
body.backend .dropdown-menu-dark .dropdown-item.active, body.backend .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #01dcc8;
}
body.backend .dropdown-menu-dark .dropdown-item.disabled, body.backend .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
body.backend .dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
body.backend .dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
body.backend .dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}
body.backend .btn-group,
body.backend .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
body.backend .btn-group > .btn,
body.backend .btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
body.backend .btn-group > .btn-check:checked + .btn,
body.backend .btn-group > .btn-check:focus + .btn,
body.backend .btn-group > .btn:hover,
body.backend .btn-group > .btn:focus,
body.backend .btn-group > .btn:active,
body.backend .btn-group > .btn.active,
body.backend .btn-group-vertical > .btn-check:checked + .btn,
body.backend .btn-group-vertical > .btn-check:focus + .btn,
body.backend .btn-group-vertical > .btn:hover,
body.backend .btn-group-vertical > .btn:focus,
body.backend .btn-group-vertical > .btn:active,
body.backend .btn-group-vertical > .btn.active {
  z-index: 1;
}
body.backend .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
body.backend .btn-toolbar .input-group {
  width: auto;
}
body.backend .btn-group > .btn:not(:first-child),
body.backend .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
body.backend .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
body.backend .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.backend .btn-group > .btn:nth-child(n+3),
body.backend .btn-group > :not(.btn-check) + .btn,
body.backend .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.backend .dropdown-toggle-split {
  padding-right: 0.6375rem;
  padding-left: 0.6375rem;
}
body.backend .dropdown-toggle-split::after, .dropup body.backend .dropdown-toggle-split::after, .dropend body.backend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart body.backend .dropdown-toggle-split::before {
  margin-right: 0;
}
body.backend .btn-sm + .dropdown-toggle-split, body.backend .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
body.backend .btn-lg + .dropdown-toggle-split, body.backend .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
body.backend .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body.backend .btn-group-vertical > .btn,
body.backend .btn-group-vertical > .btn-group {
  width: 100%;
}
body.backend .btn-group-vertical > .btn:not(:first-child),
body.backend .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
body.backend .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
body.backend .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
body.backend .btn-group-vertical > .btn ~ .btn,
body.backend .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body.backend .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
body.backend .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #01dcc8;
  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) {
  body.backend .nav-link {
    transition: none;
  }
}
body.backend .nav-link:hover, body.backend .nav-link:focus {
  color: #01b0a0;
  text-decoration: none;
}
body.backend .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
body.backend .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
body.backend .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}
body.backend .nav-tabs .nav-link:hover, body.backend .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
body.backend .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
body.backend .nav-tabs .nav-link.active,
body.backend .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #f8fafc;
  border-color: #dee2e6 #dee2e6 #f8fafc;
}
body.backend .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body.backend .nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.2rem;
}
body.backend .nav-pills .nav-link.active,
body.backend .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #01dcc8;
}
body.backend .nav-fill > .nav-link,
body.backend .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
body.backend .nav-justified > .nav-link,
body.backend .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
body.backend .nav-fill .nav-item .nav-link,
body.backend .nav-justified .nav-item .nav-link {
  width: 100%;
}
body.backend .tab-content > .tab-pane {
  display: none;
}
body.backend .tab-content > .active {
  display: block;
}
body.backend .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-right: 1.375rem;
  padding-bottom: 0.875rem;
  padding-left: 1.375rem;
}
body.backend .navbar > .container,
body.backend .navbar > .container-fluid,
body.backend .navbar > .container-sm,
body.backend .navbar > .container-md,
body.backend .navbar > .container-lg,
body.backend .navbar > .container-xl,
body.backend .navbar > .container-xxl, body.backend body.building-frontend .navbar > .container,
body.backend body.building-frontend .navbar > .container-fluid,
body.backend body.building-frontend .navbar > .container-xxl,
body.backend body.building-frontend .navbar > .container-xl,
body.backend body.building-frontend .navbar > .container-lg,
body.backend body.building-frontend .navbar > .container-md,
body.backend body.building-frontend .navbar > .container-sm {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
body.backend .navbar-brand {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  margin-right: 1rem;
  font-size: 1.15rem;
  white-space: nowrap;
}
body.backend .navbar-brand:hover, body.backend .navbar-brand:focus {
  text-decoration: none;
}
body.backend .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
body.backend .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
body.backend .navbar-nav .dropdown-menu {
  position: static;
}
body.backend .navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
body.backend .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
body.backend .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 0.925rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  body.backend .navbar-toggler {
    transition: none;
  }
}
body.backend .navbar-toggler:hover {
  text-decoration: none;
}
body.backend .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.2rem;
}
body.backend .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%;
}
body.backend .navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  body.backend .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.backend .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  body.backend .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.backend .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.backend .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  body.backend .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.backend .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  body.backend .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  body.backend .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  body.backend .navbar-expand-sm .offcanvas-top,
body.backend .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  body.backend .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  body.backend .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.backend .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  body.backend .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.backend .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.backend .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  body.backend .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.backend .navbar-expand-md .navbar-toggler {
    display: none;
  }
  body.backend .navbar-expand-md .offcanvas-header {
    display: none;
  }
  body.backend .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  body.backend .navbar-expand-md .offcanvas-top,
body.backend .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  body.backend .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  body.backend .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.backend .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  body.backend .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.backend .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.backend .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  body.backend .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.backend .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  body.backend .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  body.backend .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  body.backend .navbar-expand-lg .offcanvas-top,
body.backend .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  body.backend .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  body.backend .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.backend .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  body.backend .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.backend .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.backend .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  body.backend .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.backend .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  body.backend .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  body.backend .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  body.backend .navbar-expand-xl .offcanvas-top,
body.backend .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  body.backend .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1440px) {
  body.backend .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.backend .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  body.backend .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.backend .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.backend .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  body.backend .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.backend .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  body.backend .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  body.backend .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  body.backend .navbar-expand-xxl .offcanvas-top,
body.backend .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  body.backend .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
body.backend .navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
body.backend .navbar-expand .navbar-nav {
  flex-direction: row;
}
body.backend .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
body.backend .navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
body.backend .navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
body.backend .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
body.backend .navbar-expand .navbar-toggler {
  display: none;
}
body.backend .navbar-expand .offcanvas-header {
  display: none;
}
body.backend .navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
body.backend .navbar-expand .offcanvas-top,
body.backend .navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
body.backend .navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
body.backend .navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
body.backend .navbar-light .navbar-brand:hover, body.backend .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
body.backend .navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
body.backend .navbar-light .navbar-nav .nav-link:hover, body.backend .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
body.backend .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
body.backend .navbar-light .navbar-nav .show > .nav-link,
body.backend .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
body.backend .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
body.backend .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");
}
body.backend .navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
body.backend .navbar-light .navbar-text a,
body.backend .navbar-light .navbar-text a:hover,
body.backend .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
body.backend .navbar-dark .navbar-brand {
  color: #fff;
}
body.backend .navbar-dark .navbar-brand:hover, body.backend .navbar-dark .navbar-brand:focus {
  color: #fff;
}
body.backend .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
body.backend .navbar-dark .navbar-nav .nav-link:hover, body.backend .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
body.backend .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
body.backend .navbar-dark .navbar-nav .show > .nav-link,
body.backend .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
body.backend .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
body.backend .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");
}
body.backend .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
body.backend .navbar-dark .navbar-text a,
body.backend .navbar-dark .navbar-text a:hover,
body.backend .navbar-dark .navbar-text a:focus {
  color: #fff;
}
body.backend .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid transparent;
  border-radius: 0.25rem;
}
body.backend .card > hr {
  margin-right: 0;
  margin-left: 0;
}
body.backend .card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
body.backend .card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
body.backend .card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
body.backend .card > .card-header + .list-group,
body.backend .card > .list-group + .card-footer {
  border-top: 0;
}
body.backend .card-body {
  flex: 1 1 auto;
  padding: 1.25rem 1.25rem;
}
body.backend .card-title {
  margin-bottom: 0.5rem;
}
body.backend .card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
body.backend .card-text:last-child {
  margin-bottom: 0;
}
body.backend .card-link:hover {
  text-decoration: none;
}
body.backend .card-link + .card-link {
  margin-left: 1.25rem;
}
body.backend .card-header {
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 0 solid transparent;
}
body.backend .card-header:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}
body.backend .card-footer {
  padding: 1rem 1.25rem;
  background-color: #fff;
  border-top: 0 solid transparent;
}
body.backend .card-footer:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}
body.backend .card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -1rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
body.backend .card-header-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff;
}
body.backend .card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
body.backend .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 0.25rem;
}
body.backend .card-img,
body.backend .card-img-top,
body.backend .card-img-bottom {
  width: 100%;
}
body.backend .card-img,
body.backend .card-img-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
body.backend .card-img,
body.backend .card-img-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
body.backend .card-group > .card {
  margin-bottom: 12px;
}
@media (min-width: 576px) {
  body.backend .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  body.backend .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  body.backend .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  body.backend .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  body.backend .card-group > .card:not(:last-child) .card-img-top,
body.backend .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  body.backend .card-group > .card:not(:last-child) .card-img-bottom,
body.backend .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  body.backend .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  body.backend .card-group > .card:not(:first-child) .card-img-top,
body.backend .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  body.backend .card-group > .card:not(:first-child) .card-img-bottom,
body.backend .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
body.backend .badge {
  display: inline-block;
  padding: 0.3em 0.45em;
  font-size: 80%;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.2rem;
}
body.backend .badge:empty {
  display: none;
}
body.backend .btn .badge {
  position: relative;
  top: -1px;
}
body.backend .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.2rem;
}
body.backend .list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
body.backend .list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
body.backend .list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
body.backend .list-group-item-action:hover, body.backend .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
body.backend .list-group-item-action:active {
  color: #495057;
  background-color: #e9ecef;
}
body.backend .list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
body.backend .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
body.backend .list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
body.backend .list-group-item.disabled, body.backend .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
body.backend .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
body.backend .list-group-item + body.backend .list-group-item {
  border-top-width: 0;
}
body.backend .list-group-item + body.backend .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
body.backend .list-group-horizontal {
  flex-direction: row;
}
body.backend .list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.2rem;
  border-top-right-radius: 0;
}
body.backend .list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.2rem;
  border-bottom-left-radius: 0;
}
body.backend .list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
body.backend .list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
body.backend .list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width: 576px) {
  body.backend .list-group-horizontal-sm {
    flex-direction: row;
  }
  body.backend .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.2rem;
    border-top-right-radius: 0;
  }
  body.backend .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.2rem;
    border-bottom-left-radius: 0;
  }
  body.backend .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  body.backend .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.backend .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  body.backend .list-group-horizontal-md {
    flex-direction: row;
  }
  body.backend .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.2rem;
    border-top-right-radius: 0;
  }
  body.backend .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.2rem;
    border-bottom-left-radius: 0;
  }
  body.backend .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  body.backend .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.backend .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  body.backend .list-group-horizontal-lg {
    flex-direction: row;
  }
  body.backend .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.2rem;
    border-top-right-radius: 0;
  }
  body.backend .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.2rem;
    border-bottom-left-radius: 0;
  }
  body.backend .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  body.backend .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.backend .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  body.backend .list-group-horizontal-xl {
    flex-direction: row;
  }
  body.backend .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.2rem;
    border-top-right-radius: 0;
  }
  body.backend .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.2rem;
    border-bottom-left-radius: 0;
  }
  body.backend .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  body.backend .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.backend .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1440px) {
  body.backend .list-group-horizontal-xxl {
    flex-direction: row;
  }
  body.backend .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.2rem;
    border-top-right-radius: 0;
  }
  body.backend .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.2rem;
    border-bottom-left-radius: 0;
  }
  body.backend .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  body.backend .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.backend .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
body.backend .list-group-flush {
  border-radius: 0;
}
body.backend .list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
body.backend .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
body.backend .list-group-item-primary {
  color: #018478;
  background-color: #ccf8f4;
}
body.backend .list-group-item-primary.list-group-item-action:hover, body.backend .list-group-item-primary.list-group-item-action:focus {
  color: #018478;
  background-color: #b8dfdc;
}
body.backend .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #018478;
  border-color: #018478;
}
body.backend .list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
body.backend .list-group-item-secondary.list-group-item-action:hover, body.backend .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
body.backend .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}
body.backend .list-group-item-success {
  color: #117054;
  background-color: #d2f1e8;
}
body.backend .list-group-item-success.list-group-item-action:hover, body.backend .list-group-item-success.list-group-item-action:focus {
  color: #117054;
  background-color: #bdd9d1;
}
body.backend .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #117054;
  border-color: #117054;
}
body.backend .list-group-item-info {
  color: #0e616e;
  background-color: #d1ecf1;
}
body.backend .list-group-item-info.list-group-item-action:hover, body.backend .list-group-item-info.list-group-item-action:focus {
  color: #0e616e;
  background-color: #bcd4d9;
}
body.backend .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0e616e;
  border-color: #0e616e;
}
body.backend .list-group-item-warning {
  color: #976f1a;
  background-color: #fef1d5;
}
body.backend .list-group-item-warning.list-group-item-action:hover, body.backend .list-group-item-warning.list-group-item-action:focus {
  color: #976f1a;
  background-color: #e5d9c0;
}
body.backend .list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #976f1a;
  border-color: #976f1a;
}
body.backend .list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
body.backend .list-group-item-danger.list-group-item-action:hover, body.backend .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
body.backend .list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}
body.backend .list-group-item-light {
  color: #626364;
  background-color: #fdfdfe;
}
body.backend .list-group-item-light.list-group-item-action:hover, body.backend .list-group-item-light.list-group-item-action:focus {
  color: #626364;
  background-color: #e4e4e5;
}
body.backend .list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #626364;
  border-color: #626364;
}
body.backend .list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
body.backend .list-group-item-dark.list-group-item-action:hover, body.backend .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
body.backend .list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}
body.backend .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.2rem;
  opacity: 0.5;
}
body.backend .btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
body.backend .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 220, 200, 0.25);
  opacity: 1;
}
body.backend .btn-close:disabled, body.backend .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}
body.backend .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
body.backend .clearfix::after {
  display: block;
  clear: both;
  content: "";
}
body.backend .link-primary {
  color: #01dcc8;
}
body.backend .link-primary:hover, body.backend .link-primary:focus {
  color: #34e3d3;
}
body.backend .link-secondary {
  color: #6c757d;
}
body.backend .link-secondary:hover, body.backend .link-secondary:focus {
  color: #565e64;
}
body.backend .link-success {
  color: #1cbb8c;
}
body.backend .link-success:hover, body.backend .link-success:focus {
  color: #49c9a3;
}
body.backend .link-info {
  color: #17a2b8;
}
body.backend .link-info:hover, body.backend .link-info:focus {
  color: #128293;
}
body.backend .link-warning {
  color: #fcb92c;
}
body.backend .link-warning:hover, body.backend .link-warning:focus {
  color: #fdc756;
}
body.backend .link-danger {
  color: #dc3545;
}
body.backend .link-danger:hover, body.backend .link-danger:focus {
  color: #b02a37;
}
body.backend .link-light {
  color: #f5f7fb;
}
body.backend .link-light:hover, body.backend .link-light:focus {
  color: #f7f9fc;
}
body.backend .link-dark {
  color: #212529;
}
body.backend .link-dark:hover, body.backend .link-dark:focus {
  color: #1a1e21;
}
body.backend .ratio {
  position: relative;
  width: 100%;
}
body.backend .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
body.backend .ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.backend .ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
body.backend .ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
body.backend .ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
body.backend .ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
body.backend .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
body.backend .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
body.backend .sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  body.backend .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  body.backend .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  body.backend .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  body.backend .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1440px) {
  body.backend .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
body.backend .hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
body.backend .vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
body.backend .visually-hidden,
body.backend .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;
}
body.backend .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
body.backend .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.backend .vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}
body.backend .align-baseline {
  vertical-align: baseline !important;
}
body.backend .align-top {
  vertical-align: top !important;
}
body.backend .align-middle {
  vertical-align: middle !important;
}
body.backend .align-bottom {
  vertical-align: bottom !important;
}
body.backend .align-text-bottom {
  vertical-align: text-bottom !important;
}
body.backend .align-text-top {
  vertical-align: text-top !important;
}
body.backend .float-start {
  float: left !important;
}
body.backend .float-end {
  float: right !important;
}
body.backend .float-none {
  float: none !important;
}
body.backend .opacity-0 {
  opacity: 0 !important;
}
body.backend .opacity-25 {
  opacity: 0.25 !important;
}
body.backend .opacity-50 {
  opacity: 0.5 !important;
}
body.backend .opacity-75 {
  opacity: 0.75 !important;
}
body.backend .opacity-100 {
  opacity: 1 !important;
}
body.backend .overflow-auto {
  overflow: auto !important;
}
body.backend .overflow-hidden {
  overflow: hidden !important;
}
body.backend .overflow-visible {
  overflow: visible !important;
}
body.backend .overflow-scroll {
  overflow: scroll !important;
}
body.backend .d-inline {
  display: inline !important;
}
body.backend .d-inline-block {
  display: inline-block !important;
}
body.backend .d-block {
  display: block !important;
}
body.backend .d-grid {
  display: grid !important;
}
body.backend .d-table {
  display: table !important;
}
body.backend .d-table-row {
  display: table-row !important;
}
body.backend .d-table-cell {
  display: table-cell !important;
}
body.backend .d-flex {
  display: flex !important;
}
body.backend .d-inline-flex {
  display: inline-flex !important;
}
body.backend .d-none {
  display: none !important;
}
body.backend .shadow {
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}
body.backend .shadow-sm {
  box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}
body.backend .shadow-lg {
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.05) !important;
}
body.backend .shadow-none {
  box-shadow: none !important;
}
body.backend .position-static {
  position: static !important;
}
body.backend .position-relative {
  position: relative !important;
}
body.backend .position-absolute {
  position: absolute !important;
}
body.backend .position-fixed {
  position: fixed !important;
}
body.backend .position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
body.backend .top-0 {
  top: 0 !important;
}
body.backend .top-50 {
  top: 50% !important;
}
body.backend .top-100 {
  top: 100% !important;
}
body.backend .bottom-0 {
  bottom: 0 !important;
}
body.backend .bottom-50 {
  bottom: 50% !important;
}
body.backend .bottom-100 {
  bottom: 100% !important;
}
body.backend .start-0 {
  left: 0 !important;
}
body.backend .start-50 {
  left: 50% !important;
}
body.backend .start-100 {
  left: 100% !important;
}
body.backend .end-0 {
  right: 0 !important;
}
body.backend .end-50 {
  right: 50% !important;
}
body.backend .end-100 {
  right: 100% !important;
}
body.backend .translate-middle {
  transform: translate(-50%, -50%) !important;
}
body.backend .translate-middle-x {
  transform: translateX(-50%) !important;
}
body.backend .translate-middle-y {
  transform: translateY(-50%) !important;
}
body.backend .border {
  border: 1px solid #dee2e6 !important;
}
body.backend .border-0 {
  border: 0 !important;
}
body.backend .border-top {
  border-top: 1px solid #dee2e6 !important;
}
body.backend .border-top-0 {
  border-top: 0 !important;
}
body.backend .border-end {
  border-right: 1px solid #dee2e6 !important;
}
body.backend .border-end-0 {
  border-right: 0 !important;
}
body.backend .border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
body.backend .border-bottom-0 {
  border-bottom: 0 !important;
}
body.backend .border-start {
  border-left: 1px solid #dee2e6 !important;
}
body.backend .border-start-0 {
  border-left: 0 !important;
}
body.backend .border-primary {
  border-color: #01dcc8 !important;
}
body.backend .border-secondary {
  border-color: #6c757d !important;
}
body.backend .border-success {
  border-color: #1cbb8c !important;
}
body.backend .border-info {
  border-color: #17a2b8 !important;
}
body.backend .border-warning {
  border-color: #fcb92c !important;
}
body.backend .border-danger {
  border-color: #dc3545 !important;
}
body.backend .border-light {
  border-color: #f5f7fb !important;
}
body.backend .border-dark {
  border-color: #212529 !important;
}
body.backend .border-white {
  border-color: #fff !important;
}
body.backend .border-1 {
  border-width: 1px !important;
}
body.backend .border-2 {
  border-width: 2px !important;
}
body.backend .border-3 {
  border-width: 3px !important;
}
body.backend .border-4 {
  border-width: 4px !important;
}
body.backend .border-5 {
  border-width: 5px !important;
}
body.backend .w-25 {
  width: 25% !important;
}
body.backend .w-50 {
  width: 50% !important;
}
body.backend .w-75 {
  width: 75% !important;
}
body.backend .w-100 {
  width: 100% !important;
}
body.backend .w-auto {
  width: auto !important;
}
body.backend .mw-100 {
  max-width: 100% !important;
}
body.backend .vw-100 {
  width: 100vw !important;
}
body.backend .min-vw-100 {
  min-width: 100vw !important;
}
body.backend .h-25 {
  height: 25% !important;
}
body.backend .h-50 {
  height: 50% !important;
}
body.backend .h-75 {
  height: 75% !important;
}
body.backend .h-100 {
  height: 100% !important;
}
body.backend .h-auto {
  height: auto !important;
}
body.backend .mh-100 {
  max-height: 100% !important;
}
body.backend .vh-100 {
  height: 100vh !important;
}
body.backend .min-vh-100 {
  min-height: 100vh !important;
}
body.backend .flex-fill {
  flex: 1 1 auto !important;
}
body.backend .flex-row {
  flex-direction: row !important;
}
body.backend .flex-column {
  flex-direction: column !important;
}
body.backend .flex-row-reverse {
  flex-direction: row-reverse !important;
}
body.backend .flex-column-reverse {
  flex-direction: column-reverse !important;
}
body.backend .flex-grow-0 {
  flex-grow: 0 !important;
}
body.backend .flex-grow-1 {
  flex-grow: 1 !important;
}
body.backend .flex-shrink-0 {
  flex-shrink: 0 !important;
}
body.backend .flex-shrink-1 {
  flex-shrink: 1 !important;
}
body.backend .flex-wrap {
  flex-wrap: wrap !important;
}
body.backend .flex-nowrap {
  flex-wrap: nowrap !important;
}
body.backend .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
body.backend .gap-0 {
  gap: 0 !important;
}
body.backend .gap-1 {
  gap: 0.25rem !important;
}
body.backend .gap-2 {
  gap: 0.5rem !important;
}
body.backend .gap-3 {
  gap: 1rem !important;
}
body.backend .gap-4 {
  gap: 1.5rem !important;
}
body.backend .gap-5 {
  gap: 3rem !important;
}
body.backend .gap-6 {
  gap: 4.5rem !important;
}
body.backend .gap-7 {
  gap: 6rem !important;
}
body.backend .justify-content-start {
  justify-content: flex-start !important;
}
body.backend .justify-content-end {
  justify-content: flex-end !important;
}
body.backend .justify-content-center {
  justify-content: center !important;
}
body.backend .justify-content-between {
  justify-content: space-between !important;
}
body.backend .justify-content-around {
  justify-content: space-around !important;
}
body.backend .justify-content-evenly {
  justify-content: space-evenly !important;
}
body.backend .align-items-start {
  align-items: flex-start !important;
}
body.backend .align-items-end {
  align-items: flex-end !important;
}
body.backend .align-items-center {
  align-items: center !important;
}
body.backend .align-items-baseline {
  align-items: baseline !important;
}
body.backend .align-items-stretch {
  align-items: stretch !important;
}
body.backend .align-content-start {
  align-content: flex-start !important;
}
body.backend .align-content-end {
  align-content: flex-end !important;
}
body.backend .align-content-center {
  align-content: center !important;
}
body.backend .align-content-between {
  align-content: space-between !important;
}
body.backend .align-content-around {
  align-content: space-around !important;
}
body.backend .align-content-stretch {
  align-content: stretch !important;
}
body.backend .align-self-auto {
  align-self: auto !important;
}
body.backend .align-self-start {
  align-self: flex-start !important;
}
body.backend .align-self-end {
  align-self: flex-end !important;
}
body.backend .align-self-center {
  align-self: center !important;
}
body.backend .align-self-baseline {
  align-self: baseline !important;
}
body.backend .align-self-stretch {
  align-self: stretch !important;
}
body.backend .order-first {
  order: -1 !important;
}
body.backend .order-0 {
  order: 0 !important;
}
body.backend .order-1 {
  order: 1 !important;
}
body.backend .order-2 {
  order: 2 !important;
}
body.backend .order-3 {
  order: 3 !important;
}
body.backend .order-4 {
  order: 4 !important;
}
body.backend .order-5 {
  order: 5 !important;
}
body.backend .order-last {
  order: 6 !important;
}
body.backend .m-0 {
  margin: 0 !important;
}
body.backend .m-1 {
  margin: 0.25rem !important;
}
body.backend .m-2 {
  margin: 0.5rem !important;
}
body.backend .m-3 {
  margin: 1rem !important;
}
body.backend .m-4 {
  margin: 1.5rem !important;
}
body.backend .m-5 {
  margin: 3rem !important;
}
body.backend .m-6 {
  margin: 4.5rem !important;
}
body.backend .m-7 {
  margin: 6rem !important;
}
body.backend .m-auto {
  margin: auto !important;
}
body.backend .mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
body.backend .mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
body.backend .mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
body.backend .mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
body.backend .mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
body.backend .mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
body.backend .mx-6 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}
body.backend .mx-7 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}
body.backend .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
body.backend .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.backend .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
body.backend .my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
body.backend .my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
body.backend .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
body.backend .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
body.backend .my-6 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}
body.backend .my-7 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
body.backend .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
body.backend .mt-0 {
  margin-top: 0 !important;
}
body.backend .mt-1 {
  margin-top: 0.25rem !important;
}
body.backend .mt-2 {
  margin-top: 0.5rem !important;
}
body.backend .mt-3 {
  margin-top: 1rem !important;
}
body.backend .mt-4 {
  margin-top: 1.5rem !important;
}
body.backend .mt-5 {
  margin-top: 3rem !important;
}
body.backend .mt-6 {
  margin-top: 4.5rem !important;
}
body.backend .mt-7 {
  margin-top: 6rem !important;
}
body.backend .mt-auto {
  margin-top: auto !important;
}
body.backend .me-0 {
  margin-right: 0 !important;
}
body.backend .me-1 {
  margin-right: 0.25rem !important;
}
body.backend .me-2 {
  margin-right: 0.5rem !important;
}
body.backend .me-3 {
  margin-right: 1rem !important;
}
body.backend .me-4 {
  margin-right: 1.5rem !important;
}
body.backend .me-5 {
  margin-right: 3rem !important;
}
body.backend .me-6 {
  margin-right: 4.5rem !important;
}
body.backend .me-7 {
  margin-right: 6rem !important;
}
body.backend .me-auto {
  margin-right: auto !important;
}
body.backend .mb-0 {
  margin-bottom: 0 !important;
}
body.backend .mb-1 {
  margin-bottom: 0.25rem !important;
}
body.backend .mb-2 {
  margin-bottom: 0.5rem !important;
}
body.backend .mb-3 {
  margin-bottom: 1rem !important;
}
body.backend .mb-4 {
  margin-bottom: 1.5rem !important;
}
body.backend .mb-5 {
  margin-bottom: 3rem !important;
}
body.backend .mb-6 {
  margin-bottom: 4.5rem !important;
}
body.backend .mb-7 {
  margin-bottom: 6rem !important;
}
body.backend .mb-auto {
  margin-bottom: auto !important;
}
body.backend .ms-0 {
  margin-left: 0 !important;
}
body.backend .ms-1 {
  margin-left: 0.25rem !important;
}
body.backend .ms-2 {
  margin-left: 0.5rem !important;
}
body.backend .ms-3 {
  margin-left: 1rem !important;
}
body.backend .ms-4 {
  margin-left: 1.5rem !important;
}
body.backend .ms-5 {
  margin-left: 3rem !important;
}
body.backend .ms-6 {
  margin-left: 4.5rem !important;
}
body.backend .ms-7 {
  margin-left: 6rem !important;
}
body.backend .ms-auto {
  margin-left: auto !important;
}
body.backend .m-n1 {
  margin: -0.25rem !important;
}
body.backend .m-n2 {
  margin: -0.5rem !important;
}
body.backend .m-n3 {
  margin: -1rem !important;
}
body.backend .m-n4 {
  margin: -1.5rem !important;
}
body.backend .m-n5 {
  margin: -3rem !important;
}
body.backend .m-n6 {
  margin: -4.5rem !important;
}
body.backend .m-n7 {
  margin: -6rem !important;
}
body.backend .mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
body.backend .mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
body.backend .mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
body.backend .mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
body.backend .mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
body.backend .mx-n6 {
  margin-right: -4.5rem !important;
  margin-left: -4.5rem !important;
}
body.backend .mx-n7 {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}
body.backend .my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
body.backend .my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
body.backend .my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
body.backend .my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
body.backend .my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
body.backend .my-n6 {
  margin-top: -4.5rem !important;
  margin-bottom: -4.5rem !important;
}
body.backend .my-n7 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}
body.backend .mt-n1 {
  margin-top: -0.25rem !important;
}
body.backend .mt-n2 {
  margin-top: -0.5rem !important;
}
body.backend .mt-n3 {
  margin-top: -1rem !important;
}
body.backend .mt-n4 {
  margin-top: -1.5rem !important;
}
body.backend .mt-n5 {
  margin-top: -3rem !important;
}
body.backend .mt-n6 {
  margin-top: -4.5rem !important;
}
body.backend .mt-n7 {
  margin-top: -6rem !important;
}
body.backend .me-n1 {
  margin-right: -0.25rem !important;
}
body.backend .me-n2 {
  margin-right: -0.5rem !important;
}
body.backend .me-n3 {
  margin-right: -1rem !important;
}
body.backend .me-n4 {
  margin-right: -1.5rem !important;
}
body.backend .me-n5 {
  margin-right: -3rem !important;
}
body.backend .me-n6 {
  margin-right: -4.5rem !important;
}
body.backend .me-n7 {
  margin-right: -6rem !important;
}
body.backend .mb-n1 {
  margin-bottom: -0.25rem !important;
}
body.backend .mb-n2 {
  margin-bottom: -0.5rem !important;
}
body.backend .mb-n3 {
  margin-bottom: -1rem !important;
}
body.backend .mb-n4 {
  margin-bottom: -1.5rem !important;
}
body.backend .mb-n5 {
  margin-bottom: -3rem !important;
}
body.backend .mb-n6 {
  margin-bottom: -4.5rem !important;
}
body.backend .mb-n7 {
  margin-bottom: -6rem !important;
}
body.backend .ms-n1 {
  margin-left: -0.25rem !important;
}
body.backend .ms-n2 {
  margin-left: -0.5rem !important;
}
body.backend .ms-n3 {
  margin-left: -1rem !important;
}
body.backend .ms-n4 {
  margin-left: -1.5rem !important;
}
body.backend .ms-n5 {
  margin-left: -3rem !important;
}
body.backend .ms-n6 {
  margin-left: -4.5rem !important;
}
body.backend .ms-n7 {
  margin-left: -6rem !important;
}
body.backend .p-0 {
  padding: 0 !important;
}
body.backend .p-1 {
  padding: 0.25rem !important;
}
body.backend .p-2 {
  padding: 0.5rem !important;
}
body.backend .p-3 {
  padding: 1rem !important;
}
body.backend .p-4 {
  padding: 1.5rem !important;
}
body.backend .p-5 {
  padding: 3rem !important;
}
body.backend .p-6 {
  padding: 4.5rem !important;
}
body.backend .p-7 {
  padding: 6rem !important;
}
body.backend .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
body.backend .px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
body.backend .px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
body.backend .px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
body.backend .px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
body.backend .px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
body.backend .px-6 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}
body.backend .px-7 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}
body.backend .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.backend .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
body.backend .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
body.backend .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
body.backend .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
body.backend .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
body.backend .py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
body.backend .py-7 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}
body.backend .pt-0 {
  padding-top: 0 !important;
}
body.backend .pt-1 {
  padding-top: 0.25rem !important;
}
body.backend .pt-2 {
  padding-top: 0.5rem !important;
}
body.backend .pt-3 {
  padding-top: 1rem !important;
}
body.backend .pt-4 {
  padding-top: 1.5rem !important;
}
body.backend .pt-5 {
  padding-top: 3rem !important;
}
body.backend .pt-6 {
  padding-top: 4.5rem !important;
}
body.backend .pt-7 {
  padding-top: 6rem !important;
}
body.backend .pe-0 {
  padding-right: 0 !important;
}
body.backend .pe-1 {
  padding-right: 0.25rem !important;
}
body.backend .pe-2 {
  padding-right: 0.5rem !important;
}
body.backend .pe-3 {
  padding-right: 1rem !important;
}
body.backend .pe-4 {
  padding-right: 1.5rem !important;
}
body.backend .pe-5 {
  padding-right: 3rem !important;
}
body.backend .pe-6 {
  padding-right: 4.5rem !important;
}
body.backend .pe-7 {
  padding-right: 6rem !important;
}
body.backend .pb-0 {
  padding-bottom: 0 !important;
}
body.backend .pb-1 {
  padding-bottom: 0.25rem !important;
}
body.backend .pb-2 {
  padding-bottom: 0.5rem !important;
}
body.backend .pb-3 {
  padding-bottom: 1rem !important;
}
body.backend .pb-4 {
  padding-bottom: 1.5rem !important;
}
body.backend .pb-5 {
  padding-bottom: 3rem !important;
}
body.backend .pb-6 {
  padding-bottom: 4.5rem !important;
}
body.backend .pb-7 {
  padding-bottom: 6rem !important;
}
body.backend .ps-0 {
  padding-left: 0 !important;
}
body.backend .ps-1 {
  padding-left: 0.25rem !important;
}
body.backend .ps-2 {
  padding-left: 0.5rem !important;
}
body.backend .ps-3 {
  padding-left: 1rem !important;
}
body.backend .ps-4 {
  padding-left: 1.5rem !important;
}
body.backend .ps-5 {
  padding-left: 3rem !important;
}
body.backend .ps-6 {
  padding-left: 4.5rem !important;
}
body.backend .ps-7 {
  padding-left: 6rem !important;
}
body.backend .font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
body.backend .fs-1 {
  font-size: 1.8rem !important;
}
body.backend .fs-2 {
  font-size: 1.575rem !important;
}
body.backend .fs-3 {
  font-size: 1.35rem !important;
}
body.backend .fs-4 {
  font-size: 1.125rem !important;
}
body.backend .fs-5 {
  font-size: 0.9rem !important;
}
body.backend .fs-6 {
  font-size: 0.9rem !important;
}
body.backend .fst-italic {
  font-style: italic !important;
}
body.backend .fst-normal {
  font-style: normal !important;
}
body.backend .fw-light {
  font-weight: 300 !important;
}
body.backend .fw-lighter {
  font-weight: lighter !important;
}
body.backend .fw-normal {
  font-weight: 400 !important;
}
body.backend .fw-bold {
  font-weight: 600 !important;
}
body.backend .fw-bolder {
  font-weight: bolder !important;
}
body.backend .lh-1 {
  line-height: 1 !important;
}
body.backend .lh-sm {
  line-height: 1.5 !important;
}
body.backend .lh-base {
  line-height: 1.6 !important;
}
body.backend .lh-lg {
  line-height: 1.5 !important;
}
body.backend .text-start {
  text-align: left !important;
}
body.backend .text-end {
  text-align: right !important;
}
body.backend .text-center {
  text-align: center !important;
}
body.backend .text-decoration-none {
  text-decoration: none !important;
}
body.backend .text-decoration-underline {
  text-decoration: underline !important;
}
body.backend .text-decoration-line-through {
  text-decoration: line-through !important;
}
body.backend .text-lowercase {
  text-transform: lowercase !important;
}
body.backend .text-uppercase {
  text-transform: uppercase !important;
}
body.backend .text-capitalize {
  text-transform: capitalize !important;
}
body.backend .text-wrap {
  white-space: normal !important;
}
body.backend .text-nowrap {
  white-space: nowrap !important;
}
body.backend .text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
body.backend .text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
body.backend .text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}
body.backend .text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
body.backend .text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
body.backend .text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
body.backend .text-opacity-25 {
  --bs-text-opacity: 0.25;
}
body.backend .text-opacity-50 {
  --bs-text-opacity: 0.5;
}
body.backend .text-opacity-75 {
  --bs-text-opacity: 0.75;
}
body.backend .text-opacity-100 {
  --bs-text-opacity: 1;
}
body.backend .bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
body.backend .bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
body.backend .bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
body.backend .bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
body.backend .bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
body.backend .bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
body.backend .bg-opacity-100 {
  --bs-bg-opacity: 1;
}
body.backend .bg-gradient {
  background-image: var(--bs-gradient) !important;
}
body.backend .user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}
body.backend .user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}
body.backend .user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
body.backend .pe-none {
  pointer-events: none !important;
}
body.backend .pe-auto {
  pointer-events: auto !important;
}
body.backend .rounded {
  border-radius: 0.2rem !important;
}
body.backend .rounded-0 {
  border-radius: 0 !important;
}
body.backend .rounded-1 {
  border-radius: 0.1rem !important;
}
body.backend .rounded-2 {
  border-radius: 0.2rem !important;
}
body.backend .rounded-3 {
  border-radius: 0.3rem !important;
}
body.backend .rounded-circle {
  border-radius: 50% !important;
}
body.backend .rounded-pill {
  border-radius: 50rem !important;
}
body.backend .rounded-top {
  border-top-left-radius: 0.2rem !important;
  border-top-right-radius: 0.2rem !important;
}
body.backend .rounded-end {
  border-top-right-radius: 0.2rem !important;
  border-bottom-right-radius: 0.2rem !important;
}
body.backend .rounded-bottom {
  border-bottom-right-radius: 0.2rem !important;
  border-bottom-left-radius: 0.2rem !important;
}
body.backend .rounded-start {
  border-bottom-left-radius: 0.2rem !important;
  border-top-left-radius: 0.2rem !important;
}
body.backend .visible {
  visibility: visible !important;
}
body.backend .invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  body.backend .float-sm-start {
    float: left !important;
  }
  body.backend .float-sm-end {
    float: right !important;
  }
  body.backend .float-sm-none {
    float: none !important;
  }
  body.backend .d-sm-inline {
    display: inline !important;
  }
  body.backend .d-sm-inline-block {
    display: inline-block !important;
  }
  body.backend .d-sm-block {
    display: block !important;
  }
  body.backend .d-sm-grid {
    display: grid !important;
  }
  body.backend .d-sm-table {
    display: table !important;
  }
  body.backend .d-sm-table-row {
    display: table-row !important;
  }
  body.backend .d-sm-table-cell {
    display: table-cell !important;
  }
  body.backend .d-sm-flex {
    display: flex !important;
  }
  body.backend .d-sm-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-sm-none {
    display: none !important;
  }
  body.backend .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  body.backend .flex-sm-row {
    flex-direction: row !important;
  }
  body.backend .flex-sm-column {
    flex-direction: column !important;
  }
  body.backend .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.backend .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.backend .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  body.backend .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  body.backend .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.backend .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.backend .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  body.backend .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  body.backend .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.backend .gap-sm-0 {
    gap: 0 !important;
  }
  body.backend .gap-sm-1 {
    gap: 0.25rem !important;
  }
  body.backend .gap-sm-2 {
    gap: 0.5rem !important;
  }
  body.backend .gap-sm-3 {
    gap: 1rem !important;
  }
  body.backend .gap-sm-4 {
    gap: 1.5rem !important;
  }
  body.backend .gap-sm-5 {
    gap: 3rem !important;
  }
  body.backend .gap-sm-6 {
    gap: 4.5rem !important;
  }
  body.backend .gap-sm-7 {
    gap: 6rem !important;
  }
  body.backend .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  body.backend .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  body.backend .justify-content-sm-center {
    justify-content: center !important;
  }
  body.backend .justify-content-sm-between {
    justify-content: space-between !important;
  }
  body.backend .justify-content-sm-around {
    justify-content: space-around !important;
  }
  body.backend .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  body.backend .align-items-sm-start {
    align-items: flex-start !important;
  }
  body.backend .align-items-sm-end {
    align-items: flex-end !important;
  }
  body.backend .align-items-sm-center {
    align-items: center !important;
  }
  body.backend .align-items-sm-baseline {
    align-items: baseline !important;
  }
  body.backend .align-items-sm-stretch {
    align-items: stretch !important;
  }
  body.backend .align-content-sm-start {
    align-content: flex-start !important;
  }
  body.backend .align-content-sm-end {
    align-content: flex-end !important;
  }
  body.backend .align-content-sm-center {
    align-content: center !important;
  }
  body.backend .align-content-sm-between {
    align-content: space-between !important;
  }
  body.backend .align-content-sm-around {
    align-content: space-around !important;
  }
  body.backend .align-content-sm-stretch {
    align-content: stretch !important;
  }
  body.backend .align-self-sm-auto {
    align-self: auto !important;
  }
  body.backend .align-self-sm-start {
    align-self: flex-start !important;
  }
  body.backend .align-self-sm-end {
    align-self: flex-end !important;
  }
  body.backend .align-self-sm-center {
    align-self: center !important;
  }
  body.backend .align-self-sm-baseline {
    align-self: baseline !important;
  }
  body.backend .align-self-sm-stretch {
    align-self: stretch !important;
  }
  body.backend .order-sm-first {
    order: -1 !important;
  }
  body.backend .order-sm-0 {
    order: 0 !important;
  }
  body.backend .order-sm-1 {
    order: 1 !important;
  }
  body.backend .order-sm-2 {
    order: 2 !important;
  }
  body.backend .order-sm-3 {
    order: 3 !important;
  }
  body.backend .order-sm-4 {
    order: 4 !important;
  }
  body.backend .order-sm-5 {
    order: 5 !important;
  }
  body.backend .order-sm-last {
    order: 6 !important;
  }
  body.backend .m-sm-0 {
    margin: 0 !important;
  }
  body.backend .m-sm-1 {
    margin: 0.25rem !important;
  }
  body.backend .m-sm-2 {
    margin: 0.5rem !important;
  }
  body.backend .m-sm-3 {
    margin: 1rem !important;
  }
  body.backend .m-sm-4 {
    margin: 1.5rem !important;
  }
  body.backend .m-sm-5 {
    margin: 3rem !important;
  }
  body.backend .m-sm-6 {
    margin: 4.5rem !important;
  }
  body.backend .m-sm-7 {
    margin: 6rem !important;
  }
  body.backend .m-sm-auto {
    margin: auto !important;
  }
  body.backend .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.backend .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.backend .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.backend .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.backend .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.backend .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.backend .mx-sm-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  body.backend .mx-sm-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  body.backend .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.backend .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.backend .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.backend .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.backend .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.backend .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.backend .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.backend .my-sm-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  body.backend .my-sm-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  body.backend .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.backend .mt-sm-0 {
    margin-top: 0 !important;
  }
  body.backend .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  body.backend .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  body.backend .mt-sm-3 {
    margin-top: 1rem !important;
  }
  body.backend .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  body.backend .mt-sm-5 {
    margin-top: 3rem !important;
  }
  body.backend .mt-sm-6 {
    margin-top: 4.5rem !important;
  }
  body.backend .mt-sm-7 {
    margin-top: 6rem !important;
  }
  body.backend .mt-sm-auto {
    margin-top: auto !important;
  }
  body.backend .me-sm-0 {
    margin-right: 0 !important;
  }
  body.backend .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  body.backend .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  body.backend .me-sm-3 {
    margin-right: 1rem !important;
  }
  body.backend .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  body.backend .me-sm-5 {
    margin-right: 3rem !important;
  }
  body.backend .me-sm-6 {
    margin-right: 4.5rem !important;
  }
  body.backend .me-sm-7 {
    margin-right: 6rem !important;
  }
  body.backend .me-sm-auto {
    margin-right: auto !important;
  }
  body.backend .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  body.backend .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  body.backend .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  body.backend .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  body.backend .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  body.backend .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  body.backend .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  body.backend .mb-sm-7 {
    margin-bottom: 6rem !important;
  }
  body.backend .mb-sm-auto {
    margin-bottom: auto !important;
  }
  body.backend .ms-sm-0 {
    margin-left: 0 !important;
  }
  body.backend .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  body.backend .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  body.backend .ms-sm-3 {
    margin-left: 1rem !important;
  }
  body.backend .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  body.backend .ms-sm-5 {
    margin-left: 3rem !important;
  }
  body.backend .ms-sm-6 {
    margin-left: 4.5rem !important;
  }
  body.backend .ms-sm-7 {
    margin-left: 6rem !important;
  }
  body.backend .ms-sm-auto {
    margin-left: auto !important;
  }
  body.backend .m-sm-n1 {
    margin: -0.25rem !important;
  }
  body.backend .m-sm-n2 {
    margin: -0.5rem !important;
  }
  body.backend .m-sm-n3 {
    margin: -1rem !important;
  }
  body.backend .m-sm-n4 {
    margin: -1.5rem !important;
  }
  body.backend .m-sm-n5 {
    margin: -3rem !important;
  }
  body.backend .m-sm-n6 {
    margin: -4.5rem !important;
  }
  body.backend .m-sm-n7 {
    margin: -6rem !important;
  }
  body.backend .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  body.backend .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  body.backend .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  body.backend .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  body.backend .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  body.backend .mx-sm-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  body.backend .mx-sm-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  body.backend .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  body.backend .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  body.backend .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  body.backend .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  body.backend .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  body.backend .my-sm-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  body.backend .my-sm-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  body.backend .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  body.backend .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  body.backend .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  body.backend .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  body.backend .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  body.backend .mt-sm-n6 {
    margin-top: -4.5rem !important;
  }
  body.backend .mt-sm-n7 {
    margin-top: -6rem !important;
  }
  body.backend .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  body.backend .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  body.backend .me-sm-n3 {
    margin-right: -1rem !important;
  }
  body.backend .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  body.backend .me-sm-n5 {
    margin-right: -3rem !important;
  }
  body.backend .me-sm-n6 {
    margin-right: -4.5rem !important;
  }
  body.backend .me-sm-n7 {
    margin-right: -6rem !important;
  }
  body.backend .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  body.backend .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  body.backend .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  body.backend .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  body.backend .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  body.backend .mb-sm-n6 {
    margin-bottom: -4.5rem !important;
  }
  body.backend .mb-sm-n7 {
    margin-bottom: -6rem !important;
  }
  body.backend .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  body.backend .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  body.backend .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  body.backend .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  body.backend .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  body.backend .ms-sm-n6 {
    margin-left: -4.5rem !important;
  }
  body.backend .ms-sm-n7 {
    margin-left: -6rem !important;
  }
  body.backend .p-sm-0 {
    padding: 0 !important;
  }
  body.backend .p-sm-1 {
    padding: 0.25rem !important;
  }
  body.backend .p-sm-2 {
    padding: 0.5rem !important;
  }
  body.backend .p-sm-3 {
    padding: 1rem !important;
  }
  body.backend .p-sm-4 {
    padding: 1.5rem !important;
  }
  body.backend .p-sm-5 {
    padding: 3rem !important;
  }
  body.backend .p-sm-6 {
    padding: 4.5rem !important;
  }
  body.backend .p-sm-7 {
    padding: 6rem !important;
  }
  body.backend .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.backend .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.backend .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.backend .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.backend .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.backend .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.backend .px-sm-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  body.backend .px-sm-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  body.backend .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.backend .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.backend .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.backend .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.backend .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.backend .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.backend .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  body.backend .py-sm-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  body.backend .pt-sm-0 {
    padding-top: 0 !important;
  }
  body.backend .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  body.backend .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  body.backend .pt-sm-3 {
    padding-top: 1rem !important;
  }
  body.backend .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  body.backend .pt-sm-5 {
    padding-top: 3rem !important;
  }
  body.backend .pt-sm-6 {
    padding-top: 4.5rem !important;
  }
  body.backend .pt-sm-7 {
    padding-top: 6rem !important;
  }
  body.backend .pe-sm-0 {
    padding-right: 0 !important;
  }
  body.backend .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  body.backend .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  body.backend .pe-sm-3 {
    padding-right: 1rem !important;
  }
  body.backend .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  body.backend .pe-sm-5 {
    padding-right: 3rem !important;
  }
  body.backend .pe-sm-6 {
    padding-right: 4.5rem !important;
  }
  body.backend .pe-sm-7 {
    padding-right: 6rem !important;
  }
  body.backend .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  body.backend .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  body.backend .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  body.backend .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  body.backend .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  body.backend .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  body.backend .pb-sm-6 {
    padding-bottom: 4.5rem !important;
  }
  body.backend .pb-sm-7 {
    padding-bottom: 6rem !important;
  }
  body.backend .ps-sm-0 {
    padding-left: 0 !important;
  }
  body.backend .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  body.backend .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  body.backend .ps-sm-3 {
    padding-left: 1rem !important;
  }
  body.backend .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  body.backend .ps-sm-5 {
    padding-left: 3rem !important;
  }
  body.backend .ps-sm-6 {
    padding-left: 4.5rem !important;
  }
  body.backend .ps-sm-7 {
    padding-left: 6rem !important;
  }
  body.backend .text-sm-start {
    text-align: left !important;
  }
  body.backend .text-sm-end {
    text-align: right !important;
  }
  body.backend .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  body.backend .float-md-start {
    float: left !important;
  }
  body.backend .float-md-end {
    float: right !important;
  }
  body.backend .float-md-none {
    float: none !important;
  }
  body.backend .d-md-inline {
    display: inline !important;
  }
  body.backend .d-md-inline-block {
    display: inline-block !important;
  }
  body.backend .d-md-block {
    display: block !important;
  }
  body.backend .d-md-grid {
    display: grid !important;
  }
  body.backend .d-md-table {
    display: table !important;
  }
  body.backend .d-md-table-row {
    display: table-row !important;
  }
  body.backend .d-md-table-cell {
    display: table-cell !important;
  }
  body.backend .d-md-flex {
    display: flex !important;
  }
  body.backend .d-md-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-md-none {
    display: none !important;
  }
  body.backend .flex-md-fill {
    flex: 1 1 auto !important;
  }
  body.backend .flex-md-row {
    flex-direction: row !important;
  }
  body.backend .flex-md-column {
    flex-direction: column !important;
  }
  body.backend .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.backend .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.backend .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  body.backend .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  body.backend .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.backend .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.backend .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  body.backend .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  body.backend .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.backend .gap-md-0 {
    gap: 0 !important;
  }
  body.backend .gap-md-1 {
    gap: 0.25rem !important;
  }
  body.backend .gap-md-2 {
    gap: 0.5rem !important;
  }
  body.backend .gap-md-3 {
    gap: 1rem !important;
  }
  body.backend .gap-md-4 {
    gap: 1.5rem !important;
  }
  body.backend .gap-md-5 {
    gap: 3rem !important;
  }
  body.backend .gap-md-6 {
    gap: 4.5rem !important;
  }
  body.backend .gap-md-7 {
    gap: 6rem !important;
  }
  body.backend .justify-content-md-start {
    justify-content: flex-start !important;
  }
  body.backend .justify-content-md-end {
    justify-content: flex-end !important;
  }
  body.backend .justify-content-md-center {
    justify-content: center !important;
  }
  body.backend .justify-content-md-between {
    justify-content: space-between !important;
  }
  body.backend .justify-content-md-around {
    justify-content: space-around !important;
  }
  body.backend .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  body.backend .align-items-md-start {
    align-items: flex-start !important;
  }
  body.backend .align-items-md-end {
    align-items: flex-end !important;
  }
  body.backend .align-items-md-center {
    align-items: center !important;
  }
  body.backend .align-items-md-baseline {
    align-items: baseline !important;
  }
  body.backend .align-items-md-stretch {
    align-items: stretch !important;
  }
  body.backend .align-content-md-start {
    align-content: flex-start !important;
  }
  body.backend .align-content-md-end {
    align-content: flex-end !important;
  }
  body.backend .align-content-md-center {
    align-content: center !important;
  }
  body.backend .align-content-md-between {
    align-content: space-between !important;
  }
  body.backend .align-content-md-around {
    align-content: space-around !important;
  }
  body.backend .align-content-md-stretch {
    align-content: stretch !important;
  }
  body.backend .align-self-md-auto {
    align-self: auto !important;
  }
  body.backend .align-self-md-start {
    align-self: flex-start !important;
  }
  body.backend .align-self-md-end {
    align-self: flex-end !important;
  }
  body.backend .align-self-md-center {
    align-self: center !important;
  }
  body.backend .align-self-md-baseline {
    align-self: baseline !important;
  }
  body.backend .align-self-md-stretch {
    align-self: stretch !important;
  }
  body.backend .order-md-first {
    order: -1 !important;
  }
  body.backend .order-md-0 {
    order: 0 !important;
  }
  body.backend .order-md-1 {
    order: 1 !important;
  }
  body.backend .order-md-2 {
    order: 2 !important;
  }
  body.backend .order-md-3 {
    order: 3 !important;
  }
  body.backend .order-md-4 {
    order: 4 !important;
  }
  body.backend .order-md-5 {
    order: 5 !important;
  }
  body.backend .order-md-last {
    order: 6 !important;
  }
  body.backend .m-md-0 {
    margin: 0 !important;
  }
  body.backend .m-md-1 {
    margin: 0.25rem !important;
  }
  body.backend .m-md-2 {
    margin: 0.5rem !important;
  }
  body.backend .m-md-3 {
    margin: 1rem !important;
  }
  body.backend .m-md-4 {
    margin: 1.5rem !important;
  }
  body.backend .m-md-5 {
    margin: 3rem !important;
  }
  body.backend .m-md-6 {
    margin: 4.5rem !important;
  }
  body.backend .m-md-7 {
    margin: 6rem !important;
  }
  body.backend .m-md-auto {
    margin: auto !important;
  }
  body.backend .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.backend .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.backend .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.backend .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.backend .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.backend .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.backend .mx-md-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  body.backend .mx-md-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  body.backend .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.backend .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.backend .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.backend .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.backend .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.backend .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.backend .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.backend .my-md-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  body.backend .my-md-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  body.backend .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.backend .mt-md-0 {
    margin-top: 0 !important;
  }
  body.backend .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  body.backend .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  body.backend .mt-md-3 {
    margin-top: 1rem !important;
  }
  body.backend .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  body.backend .mt-md-5 {
    margin-top: 3rem !important;
  }
  body.backend .mt-md-6 {
    margin-top: 4.5rem !important;
  }
  body.backend .mt-md-7 {
    margin-top: 6rem !important;
  }
  body.backend .mt-md-auto {
    margin-top: auto !important;
  }
  body.backend .me-md-0 {
    margin-right: 0 !important;
  }
  body.backend .me-md-1 {
    margin-right: 0.25rem !important;
  }
  body.backend .me-md-2 {
    margin-right: 0.5rem !important;
  }
  body.backend .me-md-3 {
    margin-right: 1rem !important;
  }
  body.backend .me-md-4 {
    margin-right: 1.5rem !important;
  }
  body.backend .me-md-5 {
    margin-right: 3rem !important;
  }
  body.backend .me-md-6 {
    margin-right: 4.5rem !important;
  }
  body.backend .me-md-7 {
    margin-right: 6rem !important;
  }
  body.backend .me-md-auto {
    margin-right: auto !important;
  }
  body.backend .mb-md-0 {
    margin-bottom: 0 !important;
  }
  body.backend .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  body.backend .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  body.backend .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  body.backend .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  body.backend .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  body.backend .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  body.backend .mb-md-7 {
    margin-bottom: 6rem !important;
  }
  body.backend .mb-md-auto {
    margin-bottom: auto !important;
  }
  body.backend .ms-md-0 {
    margin-left: 0 !important;
  }
  body.backend .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  body.backend .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  body.backend .ms-md-3 {
    margin-left: 1rem !important;
  }
  body.backend .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  body.backend .ms-md-5 {
    margin-left: 3rem !important;
  }
  body.backend .ms-md-6 {
    margin-left: 4.5rem !important;
  }
  body.backend .ms-md-7 {
    margin-left: 6rem !important;
  }
  body.backend .ms-md-auto {
    margin-left: auto !important;
  }
  body.backend .m-md-n1 {
    margin: -0.25rem !important;
  }
  body.backend .m-md-n2 {
    margin: -0.5rem !important;
  }
  body.backend .m-md-n3 {
    margin: -1rem !important;
  }
  body.backend .m-md-n4 {
    margin: -1.5rem !important;
  }
  body.backend .m-md-n5 {
    margin: -3rem !important;
  }
  body.backend .m-md-n6 {
    margin: -4.5rem !important;
  }
  body.backend .m-md-n7 {
    margin: -6rem !important;
  }
  body.backend .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  body.backend .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  body.backend .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  body.backend .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  body.backend .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  body.backend .mx-md-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  body.backend .mx-md-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  body.backend .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  body.backend .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  body.backend .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  body.backend .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  body.backend .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  body.backend .my-md-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  body.backend .my-md-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  body.backend .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  body.backend .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  body.backend .mt-md-n3 {
    margin-top: -1rem !important;
  }
  body.backend .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  body.backend .mt-md-n5 {
    margin-top: -3rem !important;
  }
  body.backend .mt-md-n6 {
    margin-top: -4.5rem !important;
  }
  body.backend .mt-md-n7 {
    margin-top: -6rem !important;
  }
  body.backend .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  body.backend .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  body.backend .me-md-n3 {
    margin-right: -1rem !important;
  }
  body.backend .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  body.backend .me-md-n5 {
    margin-right: -3rem !important;
  }
  body.backend .me-md-n6 {
    margin-right: -4.5rem !important;
  }
  body.backend .me-md-n7 {
    margin-right: -6rem !important;
  }
  body.backend .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  body.backend .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  body.backend .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  body.backend .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  body.backend .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  body.backend .mb-md-n6 {
    margin-bottom: -4.5rem !important;
  }
  body.backend .mb-md-n7 {
    margin-bottom: -6rem !important;
  }
  body.backend .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  body.backend .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  body.backend .ms-md-n3 {
    margin-left: -1rem !important;
  }
  body.backend .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  body.backend .ms-md-n5 {
    margin-left: -3rem !important;
  }
  body.backend .ms-md-n6 {
    margin-left: -4.5rem !important;
  }
  body.backend .ms-md-n7 {
    margin-left: -6rem !important;
  }
  body.backend .p-md-0 {
    padding: 0 !important;
  }
  body.backend .p-md-1 {
    padding: 0.25rem !important;
  }
  body.backend .p-md-2 {
    padding: 0.5rem !important;
  }
  body.backend .p-md-3 {
    padding: 1rem !important;
  }
  body.backend .p-md-4 {
    padding: 1.5rem !important;
  }
  body.backend .p-md-5 {
    padding: 3rem !important;
  }
  body.backend .p-md-6 {
    padding: 4.5rem !important;
  }
  body.backend .p-md-7 {
    padding: 6rem !important;
  }
  body.backend .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.backend .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.backend .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.backend .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.backend .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.backend .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.backend .px-md-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  body.backend .px-md-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  body.backend .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.backend .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.backend .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.backend .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.backend .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.backend .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.backend .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  body.backend .py-md-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  body.backend .pt-md-0 {
    padding-top: 0 !important;
  }
  body.backend .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  body.backend .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  body.backend .pt-md-3 {
    padding-top: 1rem !important;
  }
  body.backend .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  body.backend .pt-md-5 {
    padding-top: 3rem !important;
  }
  body.backend .pt-md-6 {
    padding-top: 4.5rem !important;
  }
  body.backend .pt-md-7 {
    padding-top: 6rem !important;
  }
  body.backend .pe-md-0 {
    padding-right: 0 !important;
  }
  body.backend .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  body.backend .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  body.backend .pe-md-3 {
    padding-right: 1rem !important;
  }
  body.backend .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  body.backend .pe-md-5 {
    padding-right: 3rem !important;
  }
  body.backend .pe-md-6 {
    padding-right: 4.5rem !important;
  }
  body.backend .pe-md-7 {
    padding-right: 6rem !important;
  }
  body.backend .pb-md-0 {
    padding-bottom: 0 !important;
  }
  body.backend .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  body.backend .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  body.backend .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  body.backend .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  body.backend .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  body.backend .pb-md-6 {
    padding-bottom: 4.5rem !important;
  }
  body.backend .pb-md-7 {
    padding-bottom: 6rem !important;
  }
  body.backend .ps-md-0 {
    padding-left: 0 !important;
  }
  body.backend .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  body.backend .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  body.backend .ps-md-3 {
    padding-left: 1rem !important;
  }
  body.backend .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  body.backend .ps-md-5 {
    padding-left: 3rem !important;
  }
  body.backend .ps-md-6 {
    padding-left: 4.5rem !important;
  }
  body.backend .ps-md-7 {
    padding-left: 6rem !important;
  }
  body.backend .text-md-start {
    text-align: left !important;
  }
  body.backend .text-md-end {
    text-align: right !important;
  }
  body.backend .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  body.backend .float-lg-start {
    float: left !important;
  }
  body.backend .float-lg-end {
    float: right !important;
  }
  body.backend .float-lg-none {
    float: none !important;
  }
  body.backend .d-lg-inline {
    display: inline !important;
  }
  body.backend .d-lg-inline-block {
    display: inline-block !important;
  }
  body.backend .d-lg-block {
    display: block !important;
  }
  body.backend .d-lg-grid {
    display: grid !important;
  }
  body.backend .d-lg-table {
    display: table !important;
  }
  body.backend .d-lg-table-row {
    display: table-row !important;
  }
  body.backend .d-lg-table-cell {
    display: table-cell !important;
  }
  body.backend .d-lg-flex {
    display: flex !important;
  }
  body.backend .d-lg-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-lg-none {
    display: none !important;
  }
  body.backend .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  body.backend .flex-lg-row {
    flex-direction: row !important;
  }
  body.backend .flex-lg-column {
    flex-direction: column !important;
  }
  body.backend .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.backend .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.backend .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  body.backend .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  body.backend .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.backend .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.backend .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  body.backend .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  body.backend .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.backend .gap-lg-0 {
    gap: 0 !important;
  }
  body.backend .gap-lg-1 {
    gap: 0.25rem !important;
  }
  body.backend .gap-lg-2 {
    gap: 0.5rem !important;
  }
  body.backend .gap-lg-3 {
    gap: 1rem !important;
  }
  body.backend .gap-lg-4 {
    gap: 1.5rem !important;
  }
  body.backend .gap-lg-5 {
    gap: 3rem !important;
  }
  body.backend .gap-lg-6 {
    gap: 4.5rem !important;
  }
  body.backend .gap-lg-7 {
    gap: 6rem !important;
  }
  body.backend .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  body.backend .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  body.backend .justify-content-lg-center {
    justify-content: center !important;
  }
  body.backend .justify-content-lg-between {
    justify-content: space-between !important;
  }
  body.backend .justify-content-lg-around {
    justify-content: space-around !important;
  }
  body.backend .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  body.backend .align-items-lg-start {
    align-items: flex-start !important;
  }
  body.backend .align-items-lg-end {
    align-items: flex-end !important;
  }
  body.backend .align-items-lg-center {
    align-items: center !important;
  }
  body.backend .align-items-lg-baseline {
    align-items: baseline !important;
  }
  body.backend .align-items-lg-stretch {
    align-items: stretch !important;
  }
  body.backend .align-content-lg-start {
    align-content: flex-start !important;
  }
  body.backend .align-content-lg-end {
    align-content: flex-end !important;
  }
  body.backend .align-content-lg-center {
    align-content: center !important;
  }
  body.backend .align-content-lg-between {
    align-content: space-between !important;
  }
  body.backend .align-content-lg-around {
    align-content: space-around !important;
  }
  body.backend .align-content-lg-stretch {
    align-content: stretch !important;
  }
  body.backend .align-self-lg-auto {
    align-self: auto !important;
  }
  body.backend .align-self-lg-start {
    align-self: flex-start !important;
  }
  body.backend .align-self-lg-end {
    align-self: flex-end !important;
  }
  body.backend .align-self-lg-center {
    align-self: center !important;
  }
  body.backend .align-self-lg-baseline {
    align-self: baseline !important;
  }
  body.backend .align-self-lg-stretch {
    align-self: stretch !important;
  }
  body.backend .order-lg-first {
    order: -1 !important;
  }
  body.backend .order-lg-0 {
    order: 0 !important;
  }
  body.backend .order-lg-1 {
    order: 1 !important;
  }
  body.backend .order-lg-2 {
    order: 2 !important;
  }
  body.backend .order-lg-3 {
    order: 3 !important;
  }
  body.backend .order-lg-4 {
    order: 4 !important;
  }
  body.backend .order-lg-5 {
    order: 5 !important;
  }
  body.backend .order-lg-last {
    order: 6 !important;
  }
  body.backend .m-lg-0 {
    margin: 0 !important;
  }
  body.backend .m-lg-1 {
    margin: 0.25rem !important;
  }
  body.backend .m-lg-2 {
    margin: 0.5rem !important;
  }
  body.backend .m-lg-3 {
    margin: 1rem !important;
  }
  body.backend .m-lg-4 {
    margin: 1.5rem !important;
  }
  body.backend .m-lg-5 {
    margin: 3rem !important;
  }
  body.backend .m-lg-6 {
    margin: 4.5rem !important;
  }
  body.backend .m-lg-7 {
    margin: 6rem !important;
  }
  body.backend .m-lg-auto {
    margin: auto !important;
  }
  body.backend .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.backend .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.backend .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.backend .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.backend .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.backend .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.backend .mx-lg-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  body.backend .mx-lg-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  body.backend .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.backend .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.backend .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.backend .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.backend .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.backend .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.backend .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.backend .my-lg-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  body.backend .my-lg-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  body.backend .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.backend .mt-lg-0 {
    margin-top: 0 !important;
  }
  body.backend .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  body.backend .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  body.backend .mt-lg-3 {
    margin-top: 1rem !important;
  }
  body.backend .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  body.backend .mt-lg-5 {
    margin-top: 3rem !important;
  }
  body.backend .mt-lg-6 {
    margin-top: 4.5rem !important;
  }
  body.backend .mt-lg-7 {
    margin-top: 6rem !important;
  }
  body.backend .mt-lg-auto {
    margin-top: auto !important;
  }
  body.backend .me-lg-0 {
    margin-right: 0 !important;
  }
  body.backend .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  body.backend .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  body.backend .me-lg-3 {
    margin-right: 1rem !important;
  }
  body.backend .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  body.backend .me-lg-5 {
    margin-right: 3rem !important;
  }
  body.backend .me-lg-6 {
    margin-right: 4.5rem !important;
  }
  body.backend .me-lg-7 {
    margin-right: 6rem !important;
  }
  body.backend .me-lg-auto {
    margin-right: auto !important;
  }
  body.backend .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  body.backend .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  body.backend .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  body.backend .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  body.backend .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  body.backend .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  body.backend .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  body.backend .mb-lg-7 {
    margin-bottom: 6rem !important;
  }
  body.backend .mb-lg-auto {
    margin-bottom: auto !important;
  }
  body.backend .ms-lg-0 {
    margin-left: 0 !important;
  }
  body.backend .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  body.backend .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  body.backend .ms-lg-3 {
    margin-left: 1rem !important;
  }
  body.backend .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  body.backend .ms-lg-5 {
    margin-left: 3rem !important;
  }
  body.backend .ms-lg-6 {
    margin-left: 4.5rem !important;
  }
  body.backend .ms-lg-7 {
    margin-left: 6rem !important;
  }
  body.backend .ms-lg-auto {
    margin-left: auto !important;
  }
  body.backend .m-lg-n1 {
    margin: -0.25rem !important;
  }
  body.backend .m-lg-n2 {
    margin: -0.5rem !important;
  }
  body.backend .m-lg-n3 {
    margin: -1rem !important;
  }
  body.backend .m-lg-n4 {
    margin: -1.5rem !important;
  }
  body.backend .m-lg-n5 {
    margin: -3rem !important;
  }
  body.backend .m-lg-n6 {
    margin: -4.5rem !important;
  }
  body.backend .m-lg-n7 {
    margin: -6rem !important;
  }
  body.backend .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  body.backend .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  body.backend .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  body.backend .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  body.backend .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  body.backend .mx-lg-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  body.backend .mx-lg-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  body.backend .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  body.backend .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  body.backend .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  body.backend .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  body.backend .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  body.backend .my-lg-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  body.backend .my-lg-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  body.backend .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  body.backend .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  body.backend .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  body.backend .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  body.backend .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  body.backend .mt-lg-n6 {
    margin-top: -4.5rem !important;
  }
  body.backend .mt-lg-n7 {
    margin-top: -6rem !important;
  }
  body.backend .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  body.backend .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  body.backend .me-lg-n3 {
    margin-right: -1rem !important;
  }
  body.backend .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  body.backend .me-lg-n5 {
    margin-right: -3rem !important;
  }
  body.backend .me-lg-n6 {
    margin-right: -4.5rem !important;
  }
  body.backend .me-lg-n7 {
    margin-right: -6rem !important;
  }
  body.backend .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  body.backend .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  body.backend .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  body.backend .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  body.backend .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  body.backend .mb-lg-n6 {
    margin-bottom: -4.5rem !important;
  }
  body.backend .mb-lg-n7 {
    margin-bottom: -6rem !important;
  }
  body.backend .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  body.backend .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  body.backend .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  body.backend .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  body.backend .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  body.backend .ms-lg-n6 {
    margin-left: -4.5rem !important;
  }
  body.backend .ms-lg-n7 {
    margin-left: -6rem !important;
  }
  body.backend .p-lg-0 {
    padding: 0 !important;
  }
  body.backend .p-lg-1 {
    padding: 0.25rem !important;
  }
  body.backend .p-lg-2 {
    padding: 0.5rem !important;
  }
  body.backend .p-lg-3 {
    padding: 1rem !important;
  }
  body.backend .p-lg-4 {
    padding: 1.5rem !important;
  }
  body.backend .p-lg-5 {
    padding: 3rem !important;
  }
  body.backend .p-lg-6 {
    padding: 4.5rem !important;
  }
  body.backend .p-lg-7 {
    padding: 6rem !important;
  }
  body.backend .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.backend .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.backend .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.backend .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.backend .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.backend .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.backend .px-lg-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  body.backend .px-lg-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  body.backend .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.backend .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.backend .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.backend .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.backend .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.backend .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.backend .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  body.backend .py-lg-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  body.backend .pt-lg-0 {
    padding-top: 0 !important;
  }
  body.backend .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  body.backend .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  body.backend .pt-lg-3 {
    padding-top: 1rem !important;
  }
  body.backend .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  body.backend .pt-lg-5 {
    padding-top: 3rem !important;
  }
  body.backend .pt-lg-6 {
    padding-top: 4.5rem !important;
  }
  body.backend .pt-lg-7 {
    padding-top: 6rem !important;
  }
  body.backend .pe-lg-0 {
    padding-right: 0 !important;
  }
  body.backend .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  body.backend .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  body.backend .pe-lg-3 {
    padding-right: 1rem !important;
  }
  body.backend .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  body.backend .pe-lg-5 {
    padding-right: 3rem !important;
  }
  body.backend .pe-lg-6 {
    padding-right: 4.5rem !important;
  }
  body.backend .pe-lg-7 {
    padding-right: 6rem !important;
  }
  body.backend .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  body.backend .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  body.backend .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  body.backend .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  body.backend .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  body.backend .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  body.backend .pb-lg-6 {
    padding-bottom: 4.5rem !important;
  }
  body.backend .pb-lg-7 {
    padding-bottom: 6rem !important;
  }
  body.backend .ps-lg-0 {
    padding-left: 0 !important;
  }
  body.backend .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  body.backend .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  body.backend .ps-lg-3 {
    padding-left: 1rem !important;
  }
  body.backend .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  body.backend .ps-lg-5 {
    padding-left: 3rem !important;
  }
  body.backend .ps-lg-6 {
    padding-left: 4.5rem !important;
  }
  body.backend .ps-lg-7 {
    padding-left: 6rem !important;
  }
  body.backend .text-lg-start {
    text-align: left !important;
  }
  body.backend .text-lg-end {
    text-align: right !important;
  }
  body.backend .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  body.backend .float-xl-start {
    float: left !important;
  }
  body.backend .float-xl-end {
    float: right !important;
  }
  body.backend .float-xl-none {
    float: none !important;
  }
  body.backend .d-xl-inline {
    display: inline !important;
  }
  body.backend .d-xl-inline-block {
    display: inline-block !important;
  }
  body.backend .d-xl-block {
    display: block !important;
  }
  body.backend .d-xl-grid {
    display: grid !important;
  }
  body.backend .d-xl-table {
    display: table !important;
  }
  body.backend .d-xl-table-row {
    display: table-row !important;
  }
  body.backend .d-xl-table-cell {
    display: table-cell !important;
  }
  body.backend .d-xl-flex {
    display: flex !important;
  }
  body.backend .d-xl-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-xl-none {
    display: none !important;
  }
  body.backend .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  body.backend .flex-xl-row {
    flex-direction: row !important;
  }
  body.backend .flex-xl-column {
    flex-direction: column !important;
  }
  body.backend .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.backend .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.backend .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  body.backend .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  body.backend .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.backend .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.backend .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  body.backend .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  body.backend .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.backend .gap-xl-0 {
    gap: 0 !important;
  }
  body.backend .gap-xl-1 {
    gap: 0.25rem !important;
  }
  body.backend .gap-xl-2 {
    gap: 0.5rem !important;
  }
  body.backend .gap-xl-3 {
    gap: 1rem !important;
  }
  body.backend .gap-xl-4 {
    gap: 1.5rem !important;
  }
  body.backend .gap-xl-5 {
    gap: 3rem !important;
  }
  body.backend .gap-xl-6 {
    gap: 4.5rem !important;
  }
  body.backend .gap-xl-7 {
    gap: 6rem !important;
  }
  body.backend .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  body.backend .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  body.backend .justify-content-xl-center {
    justify-content: center !important;
  }
  body.backend .justify-content-xl-between {
    justify-content: space-between !important;
  }
  body.backend .justify-content-xl-around {
    justify-content: space-around !important;
  }
  body.backend .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  body.backend .align-items-xl-start {
    align-items: flex-start !important;
  }
  body.backend .align-items-xl-end {
    align-items: flex-end !important;
  }
  body.backend .align-items-xl-center {
    align-items: center !important;
  }
  body.backend .align-items-xl-baseline {
    align-items: baseline !important;
  }
  body.backend .align-items-xl-stretch {
    align-items: stretch !important;
  }
  body.backend .align-content-xl-start {
    align-content: flex-start !important;
  }
  body.backend .align-content-xl-end {
    align-content: flex-end !important;
  }
  body.backend .align-content-xl-center {
    align-content: center !important;
  }
  body.backend .align-content-xl-between {
    align-content: space-between !important;
  }
  body.backend .align-content-xl-around {
    align-content: space-around !important;
  }
  body.backend .align-content-xl-stretch {
    align-content: stretch !important;
  }
  body.backend .align-self-xl-auto {
    align-self: auto !important;
  }
  body.backend .align-self-xl-start {
    align-self: flex-start !important;
  }
  body.backend .align-self-xl-end {
    align-self: flex-end !important;
  }
  body.backend .align-self-xl-center {
    align-self: center !important;
  }
  body.backend .align-self-xl-baseline {
    align-self: baseline !important;
  }
  body.backend .align-self-xl-stretch {
    align-self: stretch !important;
  }
  body.backend .order-xl-first {
    order: -1 !important;
  }
  body.backend .order-xl-0 {
    order: 0 !important;
  }
  body.backend .order-xl-1 {
    order: 1 !important;
  }
  body.backend .order-xl-2 {
    order: 2 !important;
  }
  body.backend .order-xl-3 {
    order: 3 !important;
  }
  body.backend .order-xl-4 {
    order: 4 !important;
  }
  body.backend .order-xl-5 {
    order: 5 !important;
  }
  body.backend .order-xl-last {
    order: 6 !important;
  }
  body.backend .m-xl-0 {
    margin: 0 !important;
  }
  body.backend .m-xl-1 {
    margin: 0.25rem !important;
  }
  body.backend .m-xl-2 {
    margin: 0.5rem !important;
  }
  body.backend .m-xl-3 {
    margin: 1rem !important;
  }
  body.backend .m-xl-4 {
    margin: 1.5rem !important;
  }
  body.backend .m-xl-5 {
    margin: 3rem !important;
  }
  body.backend .m-xl-6 {
    margin: 4.5rem !important;
  }
  body.backend .m-xl-7 {
    margin: 6rem !important;
  }
  body.backend .m-xl-auto {
    margin: auto !important;
  }
  body.backend .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.backend .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.backend .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.backend .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.backend .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.backend .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.backend .mx-xl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  body.backend .mx-xl-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  body.backend .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.backend .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.backend .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.backend .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.backend .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.backend .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.backend .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.backend .my-xl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  body.backend .my-xl-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  body.backend .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.backend .mt-xl-0 {
    margin-top: 0 !important;
  }
  body.backend .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  body.backend .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  body.backend .mt-xl-3 {
    margin-top: 1rem !important;
  }
  body.backend .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  body.backend .mt-xl-5 {
    margin-top: 3rem !important;
  }
  body.backend .mt-xl-6 {
    margin-top: 4.5rem !important;
  }
  body.backend .mt-xl-7 {
    margin-top: 6rem !important;
  }
  body.backend .mt-xl-auto {
    margin-top: auto !important;
  }
  body.backend .me-xl-0 {
    margin-right: 0 !important;
  }
  body.backend .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  body.backend .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  body.backend .me-xl-3 {
    margin-right: 1rem !important;
  }
  body.backend .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  body.backend .me-xl-5 {
    margin-right: 3rem !important;
  }
  body.backend .me-xl-6 {
    margin-right: 4.5rem !important;
  }
  body.backend .me-xl-7 {
    margin-right: 6rem !important;
  }
  body.backend .me-xl-auto {
    margin-right: auto !important;
  }
  body.backend .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  body.backend .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  body.backend .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  body.backend .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  body.backend .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  body.backend .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  body.backend .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  body.backend .mb-xl-7 {
    margin-bottom: 6rem !important;
  }
  body.backend .mb-xl-auto {
    margin-bottom: auto !important;
  }
  body.backend .ms-xl-0 {
    margin-left: 0 !important;
  }
  body.backend .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  body.backend .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  body.backend .ms-xl-3 {
    margin-left: 1rem !important;
  }
  body.backend .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  body.backend .ms-xl-5 {
    margin-left: 3rem !important;
  }
  body.backend .ms-xl-6 {
    margin-left: 4.5rem !important;
  }
  body.backend .ms-xl-7 {
    margin-left: 6rem !important;
  }
  body.backend .ms-xl-auto {
    margin-left: auto !important;
  }
  body.backend .m-xl-n1 {
    margin: -0.25rem !important;
  }
  body.backend .m-xl-n2 {
    margin: -0.5rem !important;
  }
  body.backend .m-xl-n3 {
    margin: -1rem !important;
  }
  body.backend .m-xl-n4 {
    margin: -1.5rem !important;
  }
  body.backend .m-xl-n5 {
    margin: -3rem !important;
  }
  body.backend .m-xl-n6 {
    margin: -4.5rem !important;
  }
  body.backend .m-xl-n7 {
    margin: -6rem !important;
  }
  body.backend .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  body.backend .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  body.backend .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  body.backend .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  body.backend .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  body.backend .mx-xl-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  body.backend .mx-xl-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  body.backend .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  body.backend .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  body.backend .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  body.backend .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  body.backend .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  body.backend .my-xl-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  body.backend .my-xl-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  body.backend .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  body.backend .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  body.backend .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  body.backend .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  body.backend .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  body.backend .mt-xl-n6 {
    margin-top: -4.5rem !important;
  }
  body.backend .mt-xl-n7 {
    margin-top: -6rem !important;
  }
  body.backend .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  body.backend .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  body.backend .me-xl-n3 {
    margin-right: -1rem !important;
  }
  body.backend .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  body.backend .me-xl-n5 {
    margin-right: -3rem !important;
  }
  body.backend .me-xl-n6 {
    margin-right: -4.5rem !important;
  }
  body.backend .me-xl-n7 {
    margin-right: -6rem !important;
  }
  body.backend .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  body.backend .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  body.backend .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  body.backend .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  body.backend .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  body.backend .mb-xl-n6 {
    margin-bottom: -4.5rem !important;
  }
  body.backend .mb-xl-n7 {
    margin-bottom: -6rem !important;
  }
  body.backend .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  body.backend .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  body.backend .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  body.backend .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  body.backend .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  body.backend .ms-xl-n6 {
    margin-left: -4.5rem !important;
  }
  body.backend .ms-xl-n7 {
    margin-left: -6rem !important;
  }
  body.backend .p-xl-0 {
    padding: 0 !important;
  }
  body.backend .p-xl-1 {
    padding: 0.25rem !important;
  }
  body.backend .p-xl-2 {
    padding: 0.5rem !important;
  }
  body.backend .p-xl-3 {
    padding: 1rem !important;
  }
  body.backend .p-xl-4 {
    padding: 1.5rem !important;
  }
  body.backend .p-xl-5 {
    padding: 3rem !important;
  }
  body.backend .p-xl-6 {
    padding: 4.5rem !important;
  }
  body.backend .p-xl-7 {
    padding: 6rem !important;
  }
  body.backend .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.backend .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.backend .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.backend .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.backend .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.backend .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.backend .px-xl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  body.backend .px-xl-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  body.backend .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.backend .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.backend .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.backend .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.backend .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.backend .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.backend .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  body.backend .py-xl-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  body.backend .pt-xl-0 {
    padding-top: 0 !important;
  }
  body.backend .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  body.backend .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  body.backend .pt-xl-3 {
    padding-top: 1rem !important;
  }
  body.backend .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  body.backend .pt-xl-5 {
    padding-top: 3rem !important;
  }
  body.backend .pt-xl-6 {
    padding-top: 4.5rem !important;
  }
  body.backend .pt-xl-7 {
    padding-top: 6rem !important;
  }
  body.backend .pe-xl-0 {
    padding-right: 0 !important;
  }
  body.backend .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  body.backend .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  body.backend .pe-xl-3 {
    padding-right: 1rem !important;
  }
  body.backend .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  body.backend .pe-xl-5 {
    padding-right: 3rem !important;
  }
  body.backend .pe-xl-6 {
    padding-right: 4.5rem !important;
  }
  body.backend .pe-xl-7 {
    padding-right: 6rem !important;
  }
  body.backend .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  body.backend .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  body.backend .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  body.backend .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  body.backend .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  body.backend .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  body.backend .pb-xl-6 {
    padding-bottom: 4.5rem !important;
  }
  body.backend .pb-xl-7 {
    padding-bottom: 6rem !important;
  }
  body.backend .ps-xl-0 {
    padding-left: 0 !important;
  }
  body.backend .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  body.backend .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  body.backend .ps-xl-3 {
    padding-left: 1rem !important;
  }
  body.backend .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  body.backend .ps-xl-5 {
    padding-left: 3rem !important;
  }
  body.backend .ps-xl-6 {
    padding-left: 4.5rem !important;
  }
  body.backend .ps-xl-7 {
    padding-left: 6rem !important;
  }
  body.backend .text-xl-start {
    text-align: left !important;
  }
  body.backend .text-xl-end {
    text-align: right !important;
  }
  body.backend .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1440px) {
  body.backend .float-xxl-start {
    float: left !important;
  }
  body.backend .float-xxl-end {
    float: right !important;
  }
  body.backend .float-xxl-none {
    float: none !important;
  }
  body.backend .d-xxl-inline {
    display: inline !important;
  }
  body.backend .d-xxl-inline-block {
    display: inline-block !important;
  }
  body.backend .d-xxl-block {
    display: block !important;
  }
  body.backend .d-xxl-grid {
    display: grid !important;
  }
  body.backend .d-xxl-table {
    display: table !important;
  }
  body.backend .d-xxl-table-row {
    display: table-row !important;
  }
  body.backend .d-xxl-table-cell {
    display: table-cell !important;
  }
  body.backend .d-xxl-flex {
    display: flex !important;
  }
  body.backend .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-xxl-none {
    display: none !important;
  }
  body.backend .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  body.backend .flex-xxl-row {
    flex-direction: row !important;
  }
  body.backend .flex-xxl-column {
    flex-direction: column !important;
  }
  body.backend .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.backend .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.backend .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  body.backend .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  body.backend .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.backend .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.backend .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  body.backend .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  body.backend .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.backend .gap-xxl-0 {
    gap: 0 !important;
  }
  body.backend .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  body.backend .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  body.backend .gap-xxl-3 {
    gap: 1rem !important;
  }
  body.backend .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  body.backend .gap-xxl-5 {
    gap: 3rem !important;
  }
  body.backend .gap-xxl-6 {
    gap: 4.5rem !important;
  }
  body.backend .gap-xxl-7 {
    gap: 6rem !important;
  }
  body.backend .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  body.backend .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  body.backend .justify-content-xxl-center {
    justify-content: center !important;
  }
  body.backend .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  body.backend .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  body.backend .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  body.backend .align-items-xxl-start {
    align-items: flex-start !important;
  }
  body.backend .align-items-xxl-end {
    align-items: flex-end !important;
  }
  body.backend .align-items-xxl-center {
    align-items: center !important;
  }
  body.backend .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  body.backend .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  body.backend .align-content-xxl-start {
    align-content: flex-start !important;
  }
  body.backend .align-content-xxl-end {
    align-content: flex-end !important;
  }
  body.backend .align-content-xxl-center {
    align-content: center !important;
  }
  body.backend .align-content-xxl-between {
    align-content: space-between !important;
  }
  body.backend .align-content-xxl-around {
    align-content: space-around !important;
  }
  body.backend .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  body.backend .align-self-xxl-auto {
    align-self: auto !important;
  }
  body.backend .align-self-xxl-start {
    align-self: flex-start !important;
  }
  body.backend .align-self-xxl-end {
    align-self: flex-end !important;
  }
  body.backend .align-self-xxl-center {
    align-self: center !important;
  }
  body.backend .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  body.backend .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  body.backend .order-xxl-first {
    order: -1 !important;
  }
  body.backend .order-xxl-0 {
    order: 0 !important;
  }
  body.backend .order-xxl-1 {
    order: 1 !important;
  }
  body.backend .order-xxl-2 {
    order: 2 !important;
  }
  body.backend .order-xxl-3 {
    order: 3 !important;
  }
  body.backend .order-xxl-4 {
    order: 4 !important;
  }
  body.backend .order-xxl-5 {
    order: 5 !important;
  }
  body.backend .order-xxl-last {
    order: 6 !important;
  }
  body.backend .m-xxl-0 {
    margin: 0 !important;
  }
  body.backend .m-xxl-1 {
    margin: 0.25rem !important;
  }
  body.backend .m-xxl-2 {
    margin: 0.5rem !important;
  }
  body.backend .m-xxl-3 {
    margin: 1rem !important;
  }
  body.backend .m-xxl-4 {
    margin: 1.5rem !important;
  }
  body.backend .m-xxl-5 {
    margin: 3rem !important;
  }
  body.backend .m-xxl-6 {
    margin: 4.5rem !important;
  }
  body.backend .m-xxl-7 {
    margin: 6rem !important;
  }
  body.backend .m-xxl-auto {
    margin: auto !important;
  }
  body.backend .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.backend .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.backend .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.backend .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.backend .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.backend .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.backend .mx-xxl-6 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  body.backend .mx-xxl-7 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  body.backend .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.backend .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.backend .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.backend .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.backend .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.backend .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.backend .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.backend .my-xxl-6 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  body.backend .my-xxl-7 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  body.backend .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.backend .mt-xxl-0 {
    margin-top: 0 !important;
  }
  body.backend .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  body.backend .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  body.backend .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  body.backend .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  body.backend .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  body.backend .mt-xxl-6 {
    margin-top: 4.5rem !important;
  }
  body.backend .mt-xxl-7 {
    margin-top: 6rem !important;
  }
  body.backend .mt-xxl-auto {
    margin-top: auto !important;
  }
  body.backend .me-xxl-0 {
    margin-right: 0 !important;
  }
  body.backend .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  body.backend .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  body.backend .me-xxl-3 {
    margin-right: 1rem !important;
  }
  body.backend .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  body.backend .me-xxl-5 {
    margin-right: 3rem !important;
  }
  body.backend .me-xxl-6 {
    margin-right: 4.5rem !important;
  }
  body.backend .me-xxl-7 {
    margin-right: 6rem !important;
  }
  body.backend .me-xxl-auto {
    margin-right: auto !important;
  }
  body.backend .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  body.backend .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  body.backend .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  body.backend .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  body.backend .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  body.backend .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  body.backend .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  body.backend .mb-xxl-7 {
    margin-bottom: 6rem !important;
  }
  body.backend .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  body.backend .ms-xxl-0 {
    margin-left: 0 !important;
  }
  body.backend .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  body.backend .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  body.backend .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  body.backend .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  body.backend .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  body.backend .ms-xxl-6 {
    margin-left: 4.5rem !important;
  }
  body.backend .ms-xxl-7 {
    margin-left: 6rem !important;
  }
  body.backend .ms-xxl-auto {
    margin-left: auto !important;
  }
  body.backend .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  body.backend .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  body.backend .m-xxl-n3 {
    margin: -1rem !important;
  }
  body.backend .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  body.backend .m-xxl-n5 {
    margin: -3rem !important;
  }
  body.backend .m-xxl-n6 {
    margin: -4.5rem !important;
  }
  body.backend .m-xxl-n7 {
    margin: -6rem !important;
  }
  body.backend .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  body.backend .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  body.backend .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  body.backend .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  body.backend .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  body.backend .mx-xxl-n6 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }
  body.backend .mx-xxl-n7 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  body.backend .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  body.backend .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  body.backend .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  body.backend .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  body.backend .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  body.backend .my-xxl-n6 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }
  body.backend .my-xxl-n7 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  body.backend .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  body.backend .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  body.backend .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  body.backend .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  body.backend .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  body.backend .mt-xxl-n6 {
    margin-top: -4.5rem !important;
  }
  body.backend .mt-xxl-n7 {
    margin-top: -6rem !important;
  }
  body.backend .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  body.backend .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  body.backend .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  body.backend .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  body.backend .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  body.backend .me-xxl-n6 {
    margin-right: -4.5rem !important;
  }
  body.backend .me-xxl-n7 {
    margin-right: -6rem !important;
  }
  body.backend .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  body.backend .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  body.backend .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  body.backend .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  body.backend .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  body.backend .mb-xxl-n6 {
    margin-bottom: -4.5rem !important;
  }
  body.backend .mb-xxl-n7 {
    margin-bottom: -6rem !important;
  }
  body.backend .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  body.backend .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  body.backend .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  body.backend .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  body.backend .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  body.backend .ms-xxl-n6 {
    margin-left: -4.5rem !important;
  }
  body.backend .ms-xxl-n7 {
    margin-left: -6rem !important;
  }
  body.backend .p-xxl-0 {
    padding: 0 !important;
  }
  body.backend .p-xxl-1 {
    padding: 0.25rem !important;
  }
  body.backend .p-xxl-2 {
    padding: 0.5rem !important;
  }
  body.backend .p-xxl-3 {
    padding: 1rem !important;
  }
  body.backend .p-xxl-4 {
    padding: 1.5rem !important;
  }
  body.backend .p-xxl-5 {
    padding: 3rem !important;
  }
  body.backend .p-xxl-6 {
    padding: 4.5rem !important;
  }
  body.backend .p-xxl-7 {
    padding: 6rem !important;
  }
  body.backend .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.backend .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.backend .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.backend .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.backend .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.backend .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.backend .px-xxl-6 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  body.backend .px-xxl-7 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  body.backend .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.backend .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.backend .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.backend .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.backend .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.backend .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.backend .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  body.backend .py-xxl-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  body.backend .pt-xxl-0 {
    padding-top: 0 !important;
  }
  body.backend .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  body.backend .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  body.backend .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  body.backend .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  body.backend .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  body.backend .pt-xxl-6 {
    padding-top: 4.5rem !important;
  }
  body.backend .pt-xxl-7 {
    padding-top: 6rem !important;
  }
  body.backend .pe-xxl-0 {
    padding-right: 0 !important;
  }
  body.backend .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  body.backend .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  body.backend .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  body.backend .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  body.backend .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  body.backend .pe-xxl-6 {
    padding-right: 4.5rem !important;
  }
  body.backend .pe-xxl-7 {
    padding-right: 6rem !important;
  }
  body.backend .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  body.backend .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  body.backend .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  body.backend .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  body.backend .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  body.backend .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  body.backend .pb-xxl-6 {
    padding-bottom: 4.5rem !important;
  }
  body.backend .pb-xxl-7 {
    padding-bottom: 6rem !important;
  }
  body.backend .ps-xxl-0 {
    padding-left: 0 !important;
  }
  body.backend .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  body.backend .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  body.backend .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  body.backend .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  body.backend .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  body.backend .ps-xxl-6 {
    padding-left: 4.5rem !important;
  }
  body.backend .ps-xxl-7 {
    padding-left: 6rem !important;
  }
  body.backend .text-xxl-start {
    text-align: left !important;
  }
  body.backend .text-xxl-end {
    text-align: right !important;
  }
  body.backend .text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  body.backend .d-print-inline {
    display: inline !important;
  }
  body.backend .d-print-inline-block {
    display: inline-block !important;
  }
  body.backend .d-print-block {
    display: block !important;
  }
  body.backend .d-print-grid {
    display: grid !important;
  }
  body.backend .d-print-table {
    display: table !important;
  }
  body.backend .d-print-table-row {
    display: table-row !important;
  }
  body.backend .d-print-table-cell {
    display: table-cell !important;
  }
  body.backend .d-print-flex {
    display: flex !important;
  }
  body.backend .d-print-inline-flex {
    display: inline-flex !important;
  }
  body.backend .d-print-none {
    display: none !important;
  }
}
body.backend .avatar {
  width: 40px;
  height: 40px;
}
body.backend .avatar-lg {
  width: 64px;
  height: 64px;
}
body.backend .avatar-title {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #01dcc8;
}
body.backend .btn .feather {
  width: 14px;
  height: 14px;
}
body.backend .btn-primary, body.backend .btn-primary:focus, body.backend .btn-primary.focus, body.backend .btn-primary.disabled, body.backend .btn-primary:disabled, .show > body.backend .btn-primary.dropdown-toggle {
  color: #fff;
}
body.backend .btn-primary:hover:not(:disabled):not(.disabled), body.backend .btn-primary.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-secondary, body.backend .btn-secondary:focus, body.backend .btn-secondary.focus, body.backend .btn-secondary.disabled, body.backend .btn-secondary:disabled, .show > body.backend .btn-secondary.dropdown-toggle {
  color: #fff;
}
body.backend .btn-secondary:hover:not(:disabled):not(.disabled), body.backend .btn-secondary.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-success, body.backend .btn-success:focus, body.backend .btn-success.focus, body.backend .btn-success.disabled, body.backend .btn-success:disabled, .show > body.backend .btn-success.dropdown-toggle {
  color: #fff;
}
body.backend .btn-success:hover:not(:disabled):not(.disabled), body.backend .btn-success.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-info, body.backend .btn-info:focus, body.backend .btn-info.focus, body.backend .btn-info.disabled, body.backend .btn-info:disabled, .show > body.backend .btn-info.dropdown-toggle {
  color: #fff;
}
body.backend .btn-info:hover:not(:disabled):not(.disabled), body.backend .btn-info.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-warning, body.backend .btn-warning:focus, body.backend .btn-warning.focus, body.backend .btn-warning.disabled, body.backend .btn-warning:disabled, .show > body.backend .btn-warning.dropdown-toggle {
  color: #fff;
}
body.backend .btn-warning:hover:not(:disabled):not(.disabled), body.backend .btn-warning.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-danger, body.backend .btn-danger:focus, body.backend .btn-danger.focus, body.backend .btn-danger.disabled, body.backend .btn-danger:disabled, .show > body.backend .btn-danger.dropdown-toggle {
  color: #fff;
}
body.backend .btn-danger:hover:not(:disabled):not(.disabled), body.backend .btn-danger.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-light, body.backend .btn-light:focus, body.backend .btn-light.focus, body.backend .btn-light.disabled, body.backend .btn-light:disabled, .show > body.backend .btn-light.dropdown-toggle {
  color: #fff;
}
body.backend .btn-light:hover:not(:disabled):not(.disabled), body.backend .btn-light.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-dark, body.backend .btn-dark:focus, body.backend .btn-dark.focus, body.backend .btn-dark.disabled, body.backend .btn-dark:disabled, .show > body.backend .btn-dark.dropdown-toggle {
  color: #fff;
}
body.backend .btn-dark:hover:not(:disabled):not(.disabled), body.backend .btn-dark.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}
body.backend .btn-facebook:hover {
  color: #fff;
  background-color: #324c81;
  border-color: #2f477a;
}
.btn-check:focus + body.backend .btn-facebook, body.backend .btn-facebook:focus {
  color: #fff;
  background-color: #324c81;
  border-color: #2f477a;
  box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5);
}
.btn-check:checked + body.backend .btn-facebook, .btn-check:active + body.backend .btn-facebook, body.backend .btn-facebook:active, body.backend .btn-facebook.active, .show > body.backend .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2f477a;
  border-color: #2c4372;
}
.btn-check:checked + body.backend .btn-facebook:focus, .btn-check:active + body.backend .btn-facebook:focus, body.backend .btn-facebook:active:focus, body.backend .btn-facebook.active:focus, .show > body.backend .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5);
}
body.backend .btn-facebook:disabled, body.backend .btn-facebook.disabled {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}
body.backend .btn-facebook, body.backend .btn-facebook:focus, body.backend .btn-facebook.focus, body.backend .btn-facebook.disabled, body.backend .btn-facebook:disabled, .show > body.backend .btn-facebook.dropdown-toggle {
  color: #fff;
}
body.backend .btn-facebook:hover:not(:disabled):not(.disabled), body.backend .btn-facebook.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-twitter {
  color: #000;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
body.backend .btn-twitter:hover {
  color: #000;
  background-color: #3faff4;
  border-color: #34aaf3;
}
.btn-check:focus + body.backend .btn-twitter, body.backend .btn-twitter:focus {
  color: #000;
  background-color: #3faff4;
  border-color: #34aaf3;
  box-shadow: 0 0 0 0.2rem rgba(25, 137, 206, 0.5);
}
.btn-check:checked + body.backend .btn-twitter, .btn-check:active + body.backend .btn-twitter, body.backend .btn-twitter:active, body.backend .btn-twitter.active, .show > body.backend .btn-twitter.dropdown-toggle {
  color: #000;
  background-color: #4ab4f5;
  border-color: #34aaf3;
}
.btn-check:checked + body.backend .btn-twitter:focus, .btn-check:active + body.backend .btn-twitter:focus, body.backend .btn-twitter:active:focus, body.backend .btn-twitter.active:focus, .show > body.backend .btn-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(25, 137, 206, 0.5);
}
body.backend .btn-twitter:disabled, body.backend .btn-twitter.disabled {
  color: #000;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
body.backend .btn-twitter, body.backend .btn-twitter:focus, body.backend .btn-twitter.focus, body.backend .btn-twitter.disabled, body.backend .btn-twitter:disabled, .show > body.backend .btn-twitter.dropdown-toggle {
  color: #fff;
}
body.backend .btn-twitter:hover:not(:disabled):not(.disabled), body.backend .btn-twitter.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-google {
  color: #fff;
  background-color: #dc4e41;
  border-color: #dc4e41;
}
body.backend .btn-google:hover {
  color: #fff;
  background-color: #bb4237;
  border-color: #b03e34;
}
.btn-check:focus + body.backend .btn-google, body.backend .btn-google:focus {
  color: #fff;
  background-color: #bb4237;
  border-color: #b03e34;
  box-shadow: 0 0 0 0.2rem rgba(225, 105, 94, 0.5);
}
.btn-check:checked + body.backend .btn-google, .btn-check:active + body.backend .btn-google, body.backend .btn-google:active, body.backend .btn-google.active, .show > body.backend .btn-google.dropdown-toggle {
  color: #fff;
  background-color: #b03e34;
  border-color: #a53b31;
}
.btn-check:checked + body.backend .btn-google:focus, .btn-check:active + body.backend .btn-google:focus, body.backend .btn-google:active:focus, body.backend .btn-google.active:focus, .show > body.backend .btn-google.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 105, 94, 0.5);
}
body.backend .btn-google:disabled, body.backend .btn-google.disabled {
  color: #fff;
  background-color: #dc4e41;
  border-color: #dc4e41;
}
body.backend .btn-google, body.backend .btn-google:focus, body.backend .btn-google.focus, body.backend .btn-google.disabled, body.backend .btn-google:disabled, .show > body.backend .btn-google.dropdown-toggle {
  color: #fff;
}
body.backend .btn-google:hover:not(:disabled):not(.disabled), body.backend .btn-google.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-youtube {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
body.backend .btn-youtube:hover {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
}
.btn-check:focus + body.backend .btn-youtube, body.backend .btn-youtube:focus {
  color: #fff;
  background-color: #d90000;
  border-color: #cc0000;
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}
.btn-check:checked + body.backend .btn-youtube, .btn-check:active + body.backend .btn-youtube, body.backend .btn-youtube:active, body.backend .btn-youtube.active, .show > body.backend .btn-youtube.dropdown-toggle {
  color: #fff;
  background-color: #cc0000;
  border-color: #bf0000;
}
.btn-check:checked + body.backend .btn-youtube:focus, .btn-check:active + body.backend .btn-youtube:focus, body.backend .btn-youtube:active:focus, body.backend .btn-youtube.active:focus, .show > body.backend .btn-youtube.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 38, 38, 0.5);
}
body.backend .btn-youtube:disabled, body.backend .btn-youtube.disabled {
  color: #fff;
  background-color: #f00;
  border-color: #f00;
}
body.backend .btn-youtube, body.backend .btn-youtube:focus, body.backend .btn-youtube.focus, body.backend .btn-youtube.disabled, body.backend .btn-youtube:disabled, .show > body.backend .btn-youtube.dropdown-toggle {
  color: #fff;
}
body.backend .btn-youtube:hover:not(:disabled):not(.disabled), body.backend .btn-youtube.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-vimeo {
  color: #000;
  background-color: #1ab7ea;
  border-color: #1ab7ea;
}
body.backend .btn-vimeo:hover {
  color: #000;
  background-color: #3cc2ed;
  border-color: #31beec;
}
.btn-check:focus + body.backend .btn-vimeo, body.backend .btn-vimeo:focus {
  color: #000;
  background-color: #3cc2ed;
  border-color: #31beec;
  box-shadow: 0 0 0 0.2rem rgba(22, 156, 199, 0.5);
}
.btn-check:checked + body.backend .btn-vimeo, .btn-check:active + body.backend .btn-vimeo, body.backend .btn-vimeo:active, body.backend .btn-vimeo.active, .show > body.backend .btn-vimeo.dropdown-toggle {
  color: #000;
  background-color: #48c5ee;
  border-color: #31beec;
}
.btn-check:checked + body.backend .btn-vimeo:focus, .btn-check:active + body.backend .btn-vimeo:focus, body.backend .btn-vimeo:active:focus, body.backend .btn-vimeo.active:focus, .show > body.backend .btn-vimeo.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(22, 156, 199, 0.5);
}
body.backend .btn-vimeo:disabled, body.backend .btn-vimeo.disabled {
  color: #000;
  background-color: #1ab7ea;
  border-color: #1ab7ea;
}
body.backend .btn-vimeo, body.backend .btn-vimeo:focus, body.backend .btn-vimeo.focus, body.backend .btn-vimeo.disabled, body.backend .btn-vimeo:disabled, .show > body.backend .btn-vimeo.dropdown-toggle {
  color: #fff;
}
body.backend .btn-vimeo:hover:not(:disabled):not(.disabled), body.backend .btn-vimeo.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-dribbble {
  color: #fff;
  background-color: #ea4c89;
  border-color: #ea4c89;
}
body.backend .btn-dribbble:hover {
  color: #fff;
  background-color: #c74174;
  border-color: #bb3d6e;
}
.btn-check:focus + body.backend .btn-dribbble, body.backend .btn-dribbble:focus {
  color: #fff;
  background-color: #c74174;
  border-color: #bb3d6e;
  box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5);
}
.btn-check:checked + body.backend .btn-dribbble, .btn-check:active + body.backend .btn-dribbble, body.backend .btn-dribbble:active, body.backend .btn-dribbble.active, .show > body.backend .btn-dribbble.dropdown-toggle {
  color: #fff;
  background-color: #bb3d6e;
  border-color: #b03967;
}
.btn-check:checked + body.backend .btn-dribbble:focus, .btn-check:active + body.backend .btn-dribbble:focus, body.backend .btn-dribbble:active:focus, body.backend .btn-dribbble.active:focus, .show > body.backend .btn-dribbble.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 103, 155, 0.5);
}
body.backend .btn-dribbble:disabled, body.backend .btn-dribbble.disabled {
  color: #fff;
  background-color: #ea4c89;
  border-color: #ea4c89;
}
body.backend .btn-dribbble, body.backend .btn-dribbble:focus, body.backend .btn-dribbble.focus, body.backend .btn-dribbble.disabled, body.backend .btn-dribbble:disabled, .show > body.backend .btn-dribbble.dropdown-toggle {
  color: #fff;
}
body.backend .btn-dribbble:hover:not(:disabled):not(.disabled), body.backend .btn-dribbble.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-github {
  color: #fff;
  background-color: #181717;
  border-color: #181717;
}
body.backend .btn-github:hover {
  color: #fff;
  background-color: #141414;
  border-color: #131212;
}
.btn-check:focus + body.backend .btn-github, body.backend .btn-github:focus {
  color: #fff;
  background-color: #141414;
  border-color: #131212;
  box-shadow: 0 0 0 0.2rem rgba(59, 58, 58, 0.5);
}
.btn-check:checked + body.backend .btn-github, .btn-check:active + body.backend .btn-github, body.backend .btn-github:active, body.backend .btn-github.active, .show > body.backend .btn-github.dropdown-toggle {
  color: #fff;
  background-color: #131212;
  border-color: #121111;
}
.btn-check:checked + body.backend .btn-github:focus, .btn-check:active + body.backend .btn-github:focus, body.backend .btn-github:active:focus, body.backend .btn-github.active:focus, .show > body.backend .btn-github.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 58, 58, 0.5);
}
body.backend .btn-github:disabled, body.backend .btn-github.disabled {
  color: #fff;
  background-color: #181717;
  border-color: #181717;
}
body.backend .btn-github, body.backend .btn-github:focus, body.backend .btn-github.focus, body.backend .btn-github.disabled, body.backend .btn-github:disabled, .show > body.backend .btn-github.dropdown-toggle {
  color: #fff;
}
body.backend .btn-github:hover:not(:disabled):not(.disabled), body.backend .btn-github.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-instagram {
  color: #fff;
  background-color: #e4405f;
  border-color: #e4405f;
}
body.backend .btn-instagram:hover {
  color: #fff;
  background-color: #c23651;
  border-color: #b6334c;
}
.btn-check:focus + body.backend .btn-instagram, body.backend .btn-instagram:focus {
  color: #fff;
  background-color: #c23651;
  border-color: #b6334c;
  box-shadow: 0 0 0 0.2rem rgba(232, 93, 119, 0.5);
}
.btn-check:checked + body.backend .btn-instagram, .btn-check:active + body.backend .btn-instagram, body.backend .btn-instagram:active, body.backend .btn-instagram.active, .show > body.backend .btn-instagram.dropdown-toggle {
  color: #fff;
  background-color: #b6334c;
  border-color: #ab3047;
}
.btn-check:checked + body.backend .btn-instagram:focus, .btn-check:active + body.backend .btn-instagram:focus, body.backend .btn-instagram:active:focus, body.backend .btn-instagram.active:focus, .show > body.backend .btn-instagram.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 93, 119, 0.5);
}
body.backend .btn-instagram:disabled, body.backend .btn-instagram.disabled {
  color: #fff;
  background-color: #e4405f;
  border-color: #e4405f;
}
body.backend .btn-instagram, body.backend .btn-instagram:focus, body.backend .btn-instagram.focus, body.backend .btn-instagram.disabled, body.backend .btn-instagram:disabled, .show > body.backend .btn-instagram.dropdown-toggle {
  color: #fff;
}
body.backend .btn-instagram:hover:not(:disabled):not(.disabled), body.backend .btn-instagram.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-pinterest {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}
body.backend .btn-pinterest:hover {
  color: #fff;
  background-color: #a10718;
  border-color: #970616;
}
.btn-check:focus + body.backend .btn-pinterest, body.backend .btn-pinterest:focus {
  color: #fff;
  background-color: #a10718;
  border-color: #970616;
  box-shadow: 0 0 0 0.2rem rgba(199, 45, 62, 0.5);
}
.btn-check:checked + body.backend .btn-pinterest, .btn-check:active + body.backend .btn-pinterest, body.backend .btn-pinterest:active, body.backend .btn-pinterest.active, .show > body.backend .btn-pinterest.dropdown-toggle {
  color: #fff;
  background-color: #970616;
  border-color: #8e0615;
}
.btn-check:checked + body.backend .btn-pinterest:focus, .btn-check:active + body.backend .btn-pinterest:focus, body.backend .btn-pinterest:active:focus, body.backend .btn-pinterest.active:focus, .show > body.backend .btn-pinterest.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(199, 45, 62, 0.5);
}
body.backend .btn-pinterest:disabled, body.backend .btn-pinterest.disabled {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}
body.backend .btn-pinterest, body.backend .btn-pinterest:focus, body.backend .btn-pinterest.focus, body.backend .btn-pinterest.disabled, body.backend .btn-pinterest:disabled, .show > body.backend .btn-pinterest.dropdown-toggle {
  color: #fff;
}
body.backend .btn-pinterest:hover:not(:disabled):not(.disabled), body.backend .btn-pinterest.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-flickr {
  color: #fff;
  background-color: #0063dc;
  border-color: #0063dc;
}
body.backend .btn-flickr:hover {
  color: #fff;
  background-color: #0054bb;
  border-color: #004fb0;
}
.btn-check:focus + body.backend .btn-flickr, body.backend .btn-flickr:focus {
  color: #fff;
  background-color: #0054bb;
  border-color: #004fb0;
  box-shadow: 0 0 0 0.2rem rgba(38, 122, 225, 0.5);
}
.btn-check:checked + body.backend .btn-flickr, .btn-check:active + body.backend .btn-flickr, body.backend .btn-flickr:active, body.backend .btn-flickr.active, .show > body.backend .btn-flickr.dropdown-toggle {
  color: #fff;
  background-color: #004fb0;
  border-color: #004aa5;
}
.btn-check:checked + body.backend .btn-flickr:focus, .btn-check:active + body.backend .btn-flickr:focus, body.backend .btn-flickr:active:focus, body.backend .btn-flickr.active:focus, .show > body.backend .btn-flickr.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 122, 225, 0.5);
}
body.backend .btn-flickr:disabled, body.backend .btn-flickr.disabled {
  color: #fff;
  background-color: #0063dc;
  border-color: #0063dc;
}
body.backend .btn-flickr, body.backend .btn-flickr:focus, body.backend .btn-flickr.focus, body.backend .btn-flickr.disabled, body.backend .btn-flickr:disabled, .show > body.backend .btn-flickr.dropdown-toggle {
  color: #fff;
}
body.backend .btn-flickr:hover:not(:disabled):not(.disabled), body.backend .btn-flickr.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-bitbucket {
  color: #fff;
  background-color: #0052cc;
  border-color: #0052cc;
}
body.backend .btn-bitbucket:hover {
  color: #fff;
  background-color: #0046ad;
  border-color: #0042a3;
}
.btn-check:focus + body.backend .btn-bitbucket, body.backend .btn-bitbucket:focus {
  color: #fff;
  background-color: #0046ad;
  border-color: #0042a3;
  box-shadow: 0 0 0 0.2rem rgba(38, 108, 212, 0.5);
}
.btn-check:checked + body.backend .btn-bitbucket, .btn-check:active + body.backend .btn-bitbucket, body.backend .btn-bitbucket:active, body.backend .btn-bitbucket.active, .show > body.backend .btn-bitbucket.dropdown-toggle {
  color: #fff;
  background-color: #0042a3;
  border-color: #003e99;
}
.btn-check:checked + body.backend .btn-bitbucket:focus, .btn-check:active + body.backend .btn-bitbucket:focus, body.backend .btn-bitbucket:active:focus, body.backend .btn-bitbucket.active:focus, .show > body.backend .btn-bitbucket.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 108, 212, 0.5);
}
body.backend .btn-bitbucket:disabled, body.backend .btn-bitbucket.disabled {
  color: #fff;
  background-color: #0052cc;
  border-color: #0052cc;
}
body.backend .btn-bitbucket, body.backend .btn-bitbucket:focus, body.backend .btn-bitbucket.focus, body.backend .btn-bitbucket.disabled, body.backend .btn-bitbucket:disabled, .show > body.backend .btn-bitbucket.dropdown-toggle {
  color: #fff;
}
body.backend .btn-bitbucket:hover:not(:disabled):not(.disabled), body.backend .btn-bitbucket.hover:not(:disabled):not(.disabled) {
  color: #fff;
}
body.backend .btn-light, body.backend .btn-light:focus, body.backend .btn-light.focus, body.backend .btn-light.disabled, body.backend .btn-light:disabled, .show > body.backend .btn-light.dropdown-toggle,
body.backend .btn-white,
body.backend .btn-white:focus,
body.backend .btn-white.focus,
body.backend .btn-white.disabled,
body.backend .btn-white:disabled,
.show > body.backend .btn-white.dropdown-toggle {
  color: #343a40;
}
body.backend .btn-light:hover:not(:disabled):not(.disabled), body.backend .btn-light.hover:not(:disabled):not(.disabled),
body.backend .btn-white:hover:not(:disabled):not(.disabled),
body.backend .btn-white.hover:not(:disabled):not(.disabled) {
  color: #343a40;
}
body.backend .card {
  margin-bottom: 24px;
  box-shadow: 0 0 0.875rem 0 rgba(33, 37, 41, 0.05);
}
body.backend .card-header {
  border-bottom-width: 1px;
}
body.backend .card-title {
  font-size: 0.925rem;
  font-weight: 600;
  color: #939ba2;
}
body.backend .card-subtitle {
  font-weight: 400;
}
body.backend .card-table {
  margin-bottom: 0;
}
body.backend .card-table tr td:first-child,
body.backend .card-table tr th:first-child {
  padding-left: 1.25rem;
}
body.backend .card-table tr td:last-child,
body.backend .card-table tr th:last-child {
  padding-right: 1.25rem;
}
body.backend .card-img,
body.backend .card-img-top,
body.backend .card-img-bottom {
  max-width: 100%;
  height: auto;
}
@media all and (-ms-high-contrast: none) {
  body.backend .card-img,
body.backend .card-img-top,
body.backend .card-img-bottom {
    height: 100%;
  }
}
body.backend .chart {
  margin: auto;
  position: relative;
  width: 100%;
  min-height: 300px;
}
body.backend .chart-xs {
  min-height: 200px;
}
body.backend .chart-sm {
  min-height: 252px;
}
body.backend .chart-lg {
  min-height: 350px;
}
body.backend .chart-xl {
  min-height: 500px;
}
body.backend .chart canvas {
  max-width: 100%;
}
body.backend .content {
  padding: 1.5rem 1.5rem 0.75rem;
  flex: 1;
  width: 100vw;
  max-width: 100vw;
  direction: ltr;
}
@media (min-width: 768px) {
  body.backend .content {
    width: auto;
    max-width: auto;
  }
}
@media (min-width: 992px) {
  body.backend .content {
    padding: 3rem 3rem 1.5rem;
  }
}
body.backend .navbar-nav .dropdown-menu {
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}
body.backend .dropdown .dropdown-menu.show {
  -webkit-animation-name: dropdownAnimation;
          animation-name: dropdownAnimation;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
body.backend .dropdown-toggle:after {
  border: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
}
body.backend .dropdown-item {
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}
body.backend .dropdown-menu {
  top: auto;
}
body.backend .dropdown-menu-lg {
  min-width: 20rem;
}
body.backend .dropdown .list-group .list-group-item {
  border-width: 0;
  border-bottom-width: 1px;
  margin-bottom: 0;
}
body.backend .dropdown .list-group .list-group-item:first-child, body.backend .dropdown .list-group .list-group-item:last-child {
  border-radius: 0;
}
body.backend .dropdown .list-group .list-group-item:hover {
  background: #f8f9fa;
}
body.backend .dropdown-menu-header {
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #dee2e6;
}
body.backend .dropdown-menu-footer {
  padding: 0.5rem;
  text-align: center;
  display: block;
  font-size: 0.75rem;
}
body.backend .feather {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
body.backend .feather-sm {
  width: 14px;
  height: 14px;
}
body.backend .feather-lg {
  width: 36px;
  height: 36px;
}
body.backend footer.footer {
  padding: 1rem 0.875rem;
  direction: ltr;
  background: #fff;
}
body.backend footer.footer ul {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  body.backend footer.footer {
    width: 100vw;
  }
}
body.backend .hamburger,
body.backend .hamburger:before,
body.backend .hamburger:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 24px;
  background: #495057;
  display: block;
  content: "";
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}
body.backend .hamburger {
  position: relative;
}
body.backend .hamburger:before {
  top: -7.5px;
  width: 24px;
  position: absolute;
}
body.backend .hamburger:after {
  bottom: -7.5px;
  width: 16px;
  position: absolute;
}
body.backend .sidebar-toggle:hover .hamburger,
body.backend .sidebar-toggle:hover .hamburger:before,
body.backend .sidebar-toggle:hover .hamburger:after {
  background: #01dcc8;
}
body.backend .hamburger-right, body.backend .hamburger-right:before, body.backend .hamburger-right:after {
  right: 0;
}
body.backend a.list-group-item {
  text-decoration: none;
}
body.backend .main {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  background: #f8fafc;
  flex-direction: column;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.backend .navbar {
  border-bottom: 0;
  box-shadow: 0 0 2rem 0 rgba(33, 37, 41, 0.1);
}
@media (max-width: 767.98px) {
  body.backend .navbar {
    width: 100vw;
  }
}
body.backend .navbar .avatar {
  margin-top: -15px;
  margin-bottom: -15px;
}
body.backend .navbar-nav {
  direction: ltr;
}
body.backend .navbar-align {
  margin-left: auto;
}
body.backend .navbar-bg {
  background: #fff;
}
body.backend .navbar-brand {
  font-weight: 400;
  font-size: 1.15rem;
  padding: 0.875rem 0;
  color: #f8f9fa;
  display: block;
}
body.backend .navbar-brand svg,
body.backend .navbar-brand .feather {
  color: #01dcc8;
  height: 24px;
  width: 24px;
  margin-left: -0.15rem;
  margin-right: 0.375rem;
  margin-top: -0.375rem;
}
body.backend .nav-icon,
body.backend .nav-flag {
  padding: 0.1rem 0.8rem;
  display: block;
  font-size: 1.5rem;
  color: #6c757d;
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
  line-height: 1.4;
}
body.backend .nav-icon:after,
body.backend .nav-flag:after {
  display: none !important;
}
body.backend .nav-icon:hover, body.backend .nav-icon.active,
body.backend .nav-flag:hover,
body.backend .nav-flag.active {
  color: #01dcc8;
}
body.backend .nav-icon svg,
body.backend .nav-icon .feather,
body.backend .nav-flag svg,
body.backend .nav-flag .feather {
  width: 20px;
  height: 20px;
}
body.backend .nav-item .indicator {
  background: #01dcc8;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  height: 18px;
  width: 18px;
  padding: 1px;
  position: absolute;
  top: 0;
  right: -8px;
  text-align: center;
  transition: top 0.1s ease-out;
  font-size: 0.675rem;
  color: #fff;
}
body.backend .nav-item:hover .indicator {
  top: -4px;
}
body.backend .nav-item a:focus {
  outline: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body.backend .navbar .avatar {
    max-height: 47px;
  }
}
@media (max-width: 575.98px) {
  body.backend .navbar {
    padding: 0.75rem;
  }
  body.backend .nav-icon {
    padding: 0.1rem 0.75rem;
  }
  body.backend .dropdown,
body.backend .dropleft,
body.backend .dropright,
body.backend .dropup {
    position: inherit;
  }
  body.backend .navbar-expand .navbar-nav .dropdown-menu-lg {
    min-width: 100%;
  }
  body.backend .nav-item .nav-link:after {
    display: none;
  }
}
body.backend .nav-flag img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
body.backend .navbar input {
  direction: ltr;
}
body.backend body, body.backend html, body.backend #root {
  height: 100%;
}
body.backend body {
  overflow-y: scroll;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body.backend html {
    overflow-x: hidden;
  }
}
body.backend .sidebar {
  min-width: 260px;
  max-width: 260px;
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  direction: ltr;
  background: #222E3C;
}
body.backend .sidebar-content {
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out, margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  display: flex;
  height: 100vh;
  flex-direction: column;
  background: #222E3C;
}
body.backend .sidebar-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-grow: 1;
}
body.backend .sidebar-link,
body.backend a.sidebar-link {
  display: block;
  padding: 0.625rem 1.625rem;
  font-weight: 400;
  transition: background 0.1s ease-in-out;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  border-left-style: solid;
  border-left-width: 3px;
  color: rgba(233, 236, 239, 0.5);
  background: #222E3C;
  border-left-color: transparent;
}
body.backend .sidebar-link i,
body.backend .sidebar-link svg,
body.backend a.sidebar-link i,
body.backend a.sidebar-link svg {
  margin-right: 0.75rem;
  color: rgba(233, 236, 239, 0.5);
}
body.backend .sidebar-link:focus {
  outline: 0;
}
body.backend .sidebar-link:hover {
  color: rgba(233, 236, 239, 0.75);
  background: #222E3C;
  border-left-color: transparent;
}
body.backend .sidebar-link:hover i,
body.backend .sidebar-link:hover svg {
  color: rgba(233, 236, 239, 0.75);
}
body.backend .sidebar-item.active > .sidebar-link,
body.backend .sidebar-item.active .sidebar-link:hover {
  color: #e9ecef;
  background: linear-gradient(90deg, rgba(1, 220, 200, 0.1) 0%, rgba(1, 220, 200, 0.0875) 50%, rgba(0, 0, 0, 0) 100%);
  border-left-color: #01dcc8;
}
body.backend .sidebar-item.active > .sidebar-link i,
body.backend .sidebar-item.active > .sidebar-link svg,
body.backend .sidebar-item.active .sidebar-link:hover i,
body.backend .sidebar-item.active .sidebar-link:hover svg {
  color: #e9ecef;
}
body.backend .sidebar-brand {
  font-weight: 600;
  font-size: 1.15rem;
  padding: 1.15rem 1.5rem;
  display: block;
  color: #f8f9fa;
}
body.backend .sidebar-brand:hover {
  text-decoration: none;
  color: #f8f9fa;
}
body.backend .sidebar-brand:focus {
  outline: 0;
}
body.backend .sidebar-toggle {
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
}
body.backend .sidebar.collapsed {
  margin-left: -260px;
}
@media (min-width: 1px) and (max-width: 991.98px) {
  body.backend .sidebar {
    margin-left: -260px;
  }
  body.backend .sidebar.collapsed {
    margin-left: 0;
  }
}
body.backend .sidebar-toggle {
  margin-right: 1rem;
}
body.backend .sidebar-header {
  background: transparent;
  padding: 1.5rem 1.5rem 0.375rem;
  font-size: 0.75rem;
  color: #ced4da;
}
body.backend .sidebar-badge {
  position: absolute;
  right: 15px;
  top: 14px;
  z-index: 1;
}
body.backend .sidebar-cta-content {
  padding: 1.5rem;
  margin: 1.75rem;
  border-radius: 0.3rem;
  background: #2B3947;
  color: #e9ecef;
}
body.backend .min-vw-50 {
  min-width: 50vw !important;
}
body.backend .min-vh-50 {
  min-height: 50vh !important;
}
body.backend .vw-50 {
  width: 50vw !important;
}
body.backend .vh-50 {
  height: 50vh !important;
}
body.backend .stat {
  background: #91fff5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
}
body.backend .stat svg {
  width: 18px;
  height: 18px;
  color: #01dcc8 !important;
  stroke-width: 1.5;
}
body.backend .table thead, body.backend .table tbody, body.backend .table tfoot, body.backend .table tr, body.backend .table td, body.backend .table th {
  border-color: #dee2e6;
}
body.backend .table > :not(:last-child) > :last-child > * {
  border-color: #dee2e6;
}
body.backend .table > tbody > tr > td {
  vertical-align: middle;
}
body.backend .text-sm {
  font-size: 0.75rem;
}
body.backend .text-lg {
  font-size: 0.925rem;
}
body.backend b, body.backend strong {
  font-weight: 600;
}
body.backend pre.snippet {
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: justify;
}
body.backend a {
  cursor: pointer;
}
body.backend .wrapper {
  align-items: stretch;
  display: flex;
  width: 100%;
  background: #222E3C;
}
body.backend .cursor-grab {
  cursor: move;
  cursor: grab;
  cursor: -webkit-grab;
}
body.backend .cursor-pointer {
  cursor: pointer;
}
body.backend svg {
  touch-action: none;
}
body.backend image, body.backend text, body.backend .jvm-zoomin, body.backend .jvm-zoomout {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.backend .jvm-container {
  touch-action: none;
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
body.backend .jvm-tooltip {
  border-radius: 3px;
  background-color: #5c5cff;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.2);
  padding: 3px 5px;
  white-space: nowrap;
  position: absolute;
  display: none;
  color: #FFF;
}
body.backend .jvm-tooltip.active {
  display: block;
}
body.backend .jvm-zoom-btn {
  border-radius: 3px;
  background-color: #292929;
  padding: 3px;
  box-sizing: border-box;
  position: absolute;
  line-height: 10px;
  cursor: pointer;
  color: #FFF;
  height: 15px;
  width: 15px;
  left: 10px;
}
body.backend .jvm-zoom-btn.jvm-zoomout {
  top: 30px;
}
body.backend .jvm-zoom-btn.jvm-zoomin {
  top: 10px;
}
body.backend .jvm-series-container {
  right: 15px;
  position: absolute;
}
body.backend .jvm-series-container.jvm-series-h {
  bottom: 15px;
}
body.backend .jvm-series-container.jvm-series-v {
  top: 15px;
}
body.backend .jvm-series-container .jvm-legend {
  background-color: #FFF;
  border: 1px solid #e5e7eb;
  margin-left: 0.75rem;
  border-radius: 0.25rem;
  border-color: #e5e7eb;
  padding: 0.6rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  float: left;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-title {
  line-height: 1;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
  margin-bottom: 0.575rem;
  text-align: left;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-inner {
  overflow: hidden;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick {
  overflow: hidden;
  min-width: 40px;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick:not(:first-child) {
  margin-top: 0.575rem;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-sample {
  border-radius: 4px;
  margin-right: 0.65rem;
  height: 16px;
  width: 16px;
  float: left;
}
body.backend .jvm-series-container .jvm-legend .jvm-legend-inner .jvm-legend-tick .jvm-legend-tick-text {
  font-size: 12px;
  text-align: center;
  float: left;
}
body.backend .jvm-line[animation=true] {
  -webkit-animation: jvm-line-animation 10s linear forwards infinite;
  animation: jvm-line-animation 10s linear forwards infinite;
}
@-webkit-keyframes jvm-line-animation {
  from {
    stroke-dashoffset: 250;
  }
}
@keyframes jvm-line-animation {
  from {
    stroke-dashoffset: 250;
  }
}
body.backend [data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
body.backend .simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
body.backend .simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
body.backend .simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
body.backend .simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.backend .simplebar-content-wrapper::-webkit-scrollbar,
body.backend .simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
body.backend .simplebar-content:before,
body.backend .simplebar-content:after {
  content: " ";
  display: table;
}
body.backend .simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
body.backend .simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}
body.backend .simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
body.backend .simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
body.backend [data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
body.backend [data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
body.backend .simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
body.backend .simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}
body.backend .simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}
body.backend .simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
body.backend .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
body.backend .simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
body.backend .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}
body.backend .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
body.backend [data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
body.backend .hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}
body.backend .simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.backend .flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
body.backend .flatpickr-calendar.open,
body.backend .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
body.backend .flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
body.backend .flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
body.backend .flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
body.backend .flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
body.backend .flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
body.backend .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}
body.backend .flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
body.backend .flatpickr-calendar .hasWeeks .dayContainer,
body.backend .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
body.backend .flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
body.backend .flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
body.backend .flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
body.backend .flatpickr-calendar:before,
body.backend .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}
body.backend .flatpickr-calendar.rightMost:before,
body.backend .flatpickr-calendar.arrowRight:before,
body.backend .flatpickr-calendar.rightMost:after,
body.backend .flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
body.backend .flatpickr-calendar.arrowCenter:before,
body.backend .flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
body.backend .flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
body.backend .flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
body.backend .flatpickr-calendar.arrowTop:before,
body.backend .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
body.backend .flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
body.backend .flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
body.backend .flatpickr-calendar.arrowBottom:before,
body.backend .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
body.backend .flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
body.backend .flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
body.backend .flatpickr-calendar:focus {
  outline: 0;
}
body.backend .flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
body.backend .flatpickr-months {
  display: flex;
}
body.backend .flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}
body.backend .flatpickr-months .flatpickr-prev-month,
body.backend .flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}
body.backend .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
body.backend .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
body.backend .flatpickr-months .flatpickr-prev-month i,
body.backend .flatpickr-months .flatpickr-next-month i {
  position: relative;
}
body.backend .flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
body.backend .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}
body.backend .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
body.backend .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}
body.backend .flatpickr-months .flatpickr-prev-month:hover,
body.backend .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
body.backend .flatpickr-months .flatpickr-prev-month:hover svg,
body.backend .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
body.backend .flatpickr-months .flatpickr-prev-month svg,
body.backend .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
body.backend .flatpickr-months .flatpickr-prev-month svg path,
body.backend .flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}
body.backend .numInputWrapper {
  position: relative;
  height: auto;
}
body.backend .numInputWrapper input,
body.backend .numInputWrapper span {
  display: inline-block;
}
body.backend .numInputWrapper input {
  width: 100%;
}
body.backend .numInputWrapper input::-ms-clear {
  display: none;
}
body.backend .numInputWrapper input::-webkit-outer-spin-button,
body.backend .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
body.backend .numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}
body.backend .numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}
body.backend .numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}
body.backend .numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
body.backend .numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
body.backend .numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}
body.backend .numInputWrapper span.arrowDown {
  top: 50%;
}
body.backend .numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}
body.backend .numInputWrapper span svg {
  width: inherit;
  height: auto;
}
body.backend .numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}
body.backend .numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.backend .numInputWrapper:hover span {
  opacity: 1;
}
body.backend .flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}
body.backend .flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
body.backend .flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.backend .flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}
body.backend .flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}
body.backend .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}
body.backend .flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
body.backend .flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
body.backend .flatpickr-current-month input.cur-year[disabled],
body.backend .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}
body.backend .flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
body.backend .flatpickr-current-month .flatpickr-monthDropdown-months:focus,
body.backend .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
body.backend .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.backend .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
body.backend .flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}
body.backend .flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}
body.backend span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}
body.backend .dayContainer,
body.backend .flatpickr-weeks {
  padding: 1px 0 0 0;
}
body.backend .flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}
body.backend .flatpickr-days:focus {
  outline: 0;
}
body.backend .dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
body.backend .dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}
body.backend .flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}
body.backend .flatpickr-day.inRange,
body.backend .flatpickr-day.prevMonthDay.inRange,
body.backend .flatpickr-day.nextMonthDay.inRange,
body.backend .flatpickr-day.today.inRange,
body.backend .flatpickr-day.prevMonthDay.today.inRange,
body.backend .flatpickr-day.nextMonthDay.today.inRange,
body.backend .flatpickr-day:hover,
body.backend .flatpickr-day.prevMonthDay:hover,
body.backend .flatpickr-day.nextMonthDay:hover,
body.backend .flatpickr-day:focus,
body.backend .flatpickr-day.prevMonthDay:focus,
body.backend .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
body.backend .flatpickr-day.today {
  border-color: #959ea9;
}
body.backend .flatpickr-day.today:hover,
body.backend .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
body.backend .flatpickr-day.selected,
body.backend .flatpickr-day.startRange,
body.backend .flatpickr-day.endRange,
body.backend .flatpickr-day.selected.inRange,
body.backend .flatpickr-day.startRange.inRange,
body.backend .flatpickr-day.endRange.inRange,
body.backend .flatpickr-day.selected:focus,
body.backend .flatpickr-day.startRange:focus,
body.backend .flatpickr-day.endRange:focus,
body.backend .flatpickr-day.selected:hover,
body.backend .flatpickr-day.startRange:hover,
body.backend .flatpickr-day.endRange:hover,
body.backend .flatpickr-day.selected.prevMonthDay,
body.backend .flatpickr-day.startRange.prevMonthDay,
body.backend .flatpickr-day.endRange.prevMonthDay,
body.backend .flatpickr-day.selected.nextMonthDay,
body.backend .flatpickr-day.startRange.nextMonthDay,
body.backend .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
body.backend .flatpickr-day.selected.startRange,
body.backend .flatpickr-day.startRange.startRange,
body.backend .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
body.backend .flatpickr-day.selected.endRange,
body.backend .flatpickr-day.startRange.endRange,
body.backend .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
body.backend .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
body.backend .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
body.backend .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}
body.backend .flatpickr-day.selected.startRange.endRange,
body.backend .flatpickr-day.startRange.startRange.endRange,
body.backend .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
body.backend .flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
body.backend .flatpickr-day.flatpickr-disabled,
body.backend .flatpickr-day.flatpickr-disabled:hover,
body.backend .flatpickr-day.prevMonthDay,
body.backend .flatpickr-day.nextMonthDay,
body.backend .flatpickr-day.notAllowed,
body.backend .flatpickr-day.notAllowed.prevMonthDay,
body.backend .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
body.backend .flatpickr-day.flatpickr-disabled,
body.backend .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}
body.backend .flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
body.backend .flatpickr-day.hidden {
  visibility: hidden;
}
body.backend .rangeMode .flatpickr-day {
  margin-top: 1px;
}
body.backend .flatpickr-weekwrapper {
  float: left;
}
body.backend .flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}
body.backend .flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
body.backend .flatpickr-weekwrapper span.flatpickr-day,
body.backend .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}
body.backend .flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
body.backend .flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}
body.backend .flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}
body.backend .flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
body.backend .flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
body.backend .flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
body.backend .flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
body.backend .flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
body.backend .flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
body.backend .flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
body.backend .flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
body.backend .flatpickr-time input.flatpickr-minute,
body.backend .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
body.backend .flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
body.backend .flatpickr-time .flatpickr-time-separator,
body.backend .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-self: center;
}
body.backend .flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
body.backend .flatpickr-time input:hover,
body.backend .flatpickr-time .flatpickr-am-pm:hover,
body.backend .flatpickr-time input:focus,
body.backend .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
body.backend .flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
body.backend .flatpickr-calendar.inline {
  background: transparent;
  box-shadow: none;
  width: 100%;
}
body.backend .flatpickr-calendar.inline .flatpickr-days {
  width: 100%;
}
body.backend .flatpickr-calendar.inline .dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
body.backend .flatpickr-calendar.inline .flatpickr-day {
  border-radius: 0.2rem;
  max-width: inherit;
  height: 45px;
  line-height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-day.today {
  border: 0;
}
body.backend .flatpickr-calendar.inline .flatpickr-day.today:before {
  content: "";
  display: inline-block;
  border-color: rgba(0, 0, 0, 0.2) transparent #01dcc8;
  border-style: solid;
  border-width: 0 0 7px 7px;
  position: absolute;
  bottom: 4px;
  right: 4px;
}
body.backend .flatpickr-calendar.inline .flatpickr-day.today.selected:before {
  border-color: rgba(0, 0, 0, 0.2) transparent #fff;
}
body.backend .flatpickr-calendar.inline .flatpickr-day.today:hover {
  background: #e6e6e6;
  color: #000;
}
body.backend .flatpickr-calendar.inline .flatpickr-day.selected, body.backend .flatpickr-calendar.inline .flatpickr-day.selected:hover, body.backend .flatpickr-calendar.inline .flatpickr-day.selected:focus {
  border-radius: 0.2rem;
  background: #01dcc8;
  color: #fff;
}
body.backend .flatpickr-calendar.inline .flatpickr-weekdays {
  height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-weekday {
  height: 45px;
  line-height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-months .flatpickr-month {
  height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-months .flatpickr-prev-month,
body.backend .flatpickr-calendar.inline .flatpickr-months .flatpickr-next-month {
  height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-current-month {
  padding-top: 0;
  line-height: 45px;
  height: 45px;
}
body.backend .flatpickr-calendar.inline .flatpickr-current-month .flatpickr-monthDropdown-months {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body.backend .flatpickr-calendar.inline .flatpickr-current-month .flatpickr-monthDropdown-months,
body.backend .flatpickr-calendar.inline .flatpickr-current-month input.cur-year {
  font-weight: 400;
  font-size: 1.125rem;
}
body.backend .flatpickr-calendar.inline .flatpickr-prev-month,
body.backend .flatpickr-calendar.inline .flatpickr-next-month {
  width: 45px;
  border-radius: 0.2rem;
}
body.backend .flatpickr-calendar.inline .flatpickr-prev-month:hover,
body.backend .flatpickr-calendar.inline .flatpickr-next-month:hover {
  background: #e6e6e6;
  color: #000;
}
body.backend .simplebar-scrollbar:before {
  background: #fff;
}
body.backend .simplebar-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding-bottom: 0 !important;
}
body.backend [data-simplebar] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 260px;
}

body.building-frontend {
  /*************************** Theme Colours****************************/
  /*************************** Variables Section. *****************************/
  /* Override BS5 sass color */
  /*************************** Import Bootstrap  *****************************/
  /*!
   * 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)
   */
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  /* rtl:begin:ignore */
  /* rtl:end:ignore */
  /* rtl:options: {
    "autoRename": true,
    "stringMap":[ {
      "name"    : "prev-next",
      "search"  : "prev",
      "replace" : "next"
    } ]
  } */
  /* rtl:begin:remove */
  /* rtl:end:remove */
  /*************************** Theme Styles Section ****************************/
  /*!  
   * DevBook - Bootstrap 4 Book/eBook Landing Page Template for Developers
   * Version: 1.2
   * Author: Xiaoying Riley
   * Copyright: 3rd Wave Media Ltd.
   * Website: http://themes.3rdwavemedia.com/
   * Twitter: @3rdwave_themes
  */
  /* ============= Theme Mixins ============= */
  /* ============= Base ============= */
  /*********** Theme Generic **********/
  /*********** Theme Utilities **********/
  /* Header */
  /* Footer */
  /* ===== Responsive ======== */
}
body.building-frontend :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: #9ea3c4;
  --bs-gray-dark: #60669d;
  --bs-primary: #ed6524;
  --bs-secondary: #4c527d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: white;
  --bs-dark: #1c1e2e;
  --bs-font-sans-serif: "Nunito", sans-serif;
  --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));
}
body.building-frontend *,
body.building-frontend *::before,
body.building-frontend *::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  body.building-frontend :root {
    scroll-behavior: smooth;
  }
}
body.building-frontend body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1c1e2e;
  background-color: #f8fafc;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body.building-frontend hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
body.building-frontend hr:not([size]) {
  height: 1px;
}
body.building-frontend h6, body.building-frontend .h6, body.building-frontend h5, body.building-frontend .h5, body.building-frontend h4, body.building-frontend .h4, body.building-frontend h3, body.building-frontend .h3, body.building-frontend h2, body.building-frontend .h2, body.building-frontend h1, body.building-frontend .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
body.building-frontend h1, body.building-frontend .h1 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  body.building-frontend h1, body.building-frontend .h1 {
    font-size: 2.25rem;
  }
}
body.building-frontend h2, body.building-frontend .h2 {
  font-size: calc(1.305rem + 0.66vw);
}
@media (min-width: 1200px) {
  body.building-frontend h2, body.building-frontend .h2 {
    font-size: 1.8rem;
  }
}
body.building-frontend h3, body.building-frontend .h3 {
  font-size: calc(1.2825rem + 0.39vw);
}
@media (min-width: 1200px) {
  body.building-frontend h3, body.building-frontend .h3 {
    font-size: 1.575rem;
  }
}
body.building-frontend h4, body.building-frontend .h4 {
  font-size: calc(1.26rem + 0.12vw);
}
@media (min-width: 1200px) {
  body.building-frontend h4, body.building-frontend .h4 {
    font-size: 1.35rem;
  }
}
body.building-frontend h5, body.building-frontend .h5 {
  font-size: 1.125rem;
}
body.building-frontend h6, body.building-frontend .h6 {
  font-size: 0.9rem;
}
body.building-frontend p {
  margin-top: 0;
  margin-bottom: 1rem;
}
body.building-frontend abbr[title],
body.building-frontend 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;
}
body.building-frontend address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
body.building-frontend ol,
body.building-frontend ul {
  padding-left: 2rem;
}
body.building-frontend ol,
body.building-frontend ul,
body.building-frontend dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
body.building-frontend ol ol,
body.building-frontend ul ul,
body.building-frontend ol ul,
body.building-frontend ul ol {
  margin-bottom: 0;
}
body.building-frontend dt {
  font-weight: 700;
}
body.building-frontend dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
body.building-frontend blockquote {
  margin: 0 0 1rem;
}
body.building-frontend b,
body.building-frontend strong {
  font-weight: bolder;
}
body.building-frontend small, body.building-frontend .small {
  font-size: 0.875em;
}
body.building-frontend mark, body.building-frontend .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
body.building-frontend sub,
body.building-frontend sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
body.building-frontend sub {
  bottom: -0.25em;
}
body.building-frontend sup {
  top: -0.5em;
}
body.building-frontend a {
  color: #ed6524;
  text-decoration: underline;
}
body.building-frontend a:hover {
  color: #be511d;
}
body.building-frontend a:not([href]):not([class]), body.building-frontend a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
body.building-frontend pre,
body.building-frontend code,
body.building-frontend kbd,
body.building-frontend samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
body.building-frontend pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
body.building-frontend pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
body.building-frontend code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > body.building-frontend code {
  color: inherit;
}
body.building-frontend kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #1c1e2e;
  border-radius: 0.2rem;
}
body.building-frontend kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
body.building-frontend figure {
  margin: 0 0 1rem;
}
body.building-frontend img,
body.building-frontend svg {
  vertical-align: middle;
}
body.building-frontend table {
  caption-side: bottom;
  border-collapse: collapse;
}
body.building-frontend caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #9ea3c4;
  text-align: left;
}
body.building-frontend th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
body.building-frontend thead,
body.building-frontend tbody,
body.building-frontend tfoot,
body.building-frontend tr,
body.building-frontend td,
body.building-frontend th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
body.building-frontend label {
  display: inline-block;
}
body.building-frontend button {
  border-radius: 0;
}
body.building-frontend button:focus:not(:focus-visible) {
  outline: 0;
}
body.building-frontend input,
body.building-frontend button,
body.building-frontend select,
body.building-frontend optgroup,
body.building-frontend textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
body.building-frontend button,
body.building-frontend select {
  text-transform: none;
}
body.building-frontend [role=button] {
  cursor: pointer;
}
body.building-frontend select {
  word-wrap: normal;
}
body.building-frontend select:disabled {
  opacity: 1;
}
body.building-frontend [list]::-webkit-calendar-picker-indicator {
  display: none;
}
body.building-frontend button,
body.building-frontend [type=button],
body.building-frontend [type=reset],
body.building-frontend [type=submit] {
  -webkit-appearance: button;
}
body.building-frontend button:not(:disabled),
body.building-frontend [type=button]:not(:disabled),
body.building-frontend [type=reset]:not(:disabled),
body.building-frontend [type=submit]:not(:disabled) {
  cursor: pointer;
}
body.building-frontend ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
body.building-frontend textarea {
  resize: vertical;
}
body.building-frontend fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
body.building-frontend 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) {
  body.building-frontend legend {
    font-size: 1.5rem;
  }
}
body.building-frontend legend + * {
  clear: left;
}
body.building-frontend ::-webkit-datetime-edit-fields-wrapper,
body.building-frontend ::-webkit-datetime-edit-text,
body.building-frontend ::-webkit-datetime-edit-minute,
body.building-frontend ::-webkit-datetime-edit-hour-field,
body.building-frontend ::-webkit-datetime-edit-day-field,
body.building-frontend ::-webkit-datetime-edit-month-field,
body.building-frontend ::-webkit-datetime-edit-year-field {
  padding: 0;
}
body.building-frontend ::-webkit-inner-spin-button {
  height: auto;
}
body.building-frontend [type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
body.building-frontend ::-webkit-search-decoration {
  -webkit-appearance: none;
}
body.building-frontend ::-webkit-color-swatch-wrapper {
  padding: 0;
}
body.building-frontend ::-webkit-file-upload-button {
  font: inherit;
}
body.building-frontend ::file-selector-button {
  font: inherit;
}
body.building-frontend ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
body.building-frontend output {
  display: inline-block;
}
body.building-frontend iframe {
  border: 0;
}
body.building-frontend summary {
  display: list-item;
  cursor: pointer;
}
body.building-frontend progress {
  vertical-align: baseline;
}
body.building-frontend [hidden] {
  display: none !important;
}
body.building-frontend .lead {
  font-size: 1.125rem;
  font-weight: 300;
}
body.building-frontend .display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-1 {
    font-size: 5rem;
  }
}
body.building-frontend .display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-2 {
    font-size: 4.5rem;
  }
}
body.building-frontend .display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-3 {
    font-size: 4rem;
  }
}
body.building-frontend .display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-4 {
    font-size: 3.5rem;
  }
}
body.building-frontend .display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-5 {
    font-size: 3rem;
  }
}
body.building-frontend .display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  body.building-frontend .display-6 {
    font-size: 2.5rem;
  }
}
body.building-frontend .list-unstyled {
  padding-left: 0;
  list-style: none;
}
body.building-frontend .list-inline {
  padding-left: 0;
  list-style: none;
}
body.building-frontend .list-inline-item {
  display: inline-block;
}
body.building-frontend .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
body.building-frontend .initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
body.building-frontend .blockquote {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
body.building-frontend .blockquote > :last-child {
  margin-bottom: 0;
}
body.building-frontend .blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #9ea3c4;
}
body.building-frontend .blockquote-footer::before {
  content: "— ";
}
body.building-frontend .img-fluid {
  max-width: 100%;
  height: auto;
}
body.building-frontend .img-thumbnail {
  padding: 0.25rem;
  background-color: #f8fafc;
  border: 1px solid #dedfeb;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
body.building-frontend .figure {
  display: inline-block;
}
body.building-frontend .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
body.building-frontend .figure-caption {
  font-size: 0.875em;
  color: #9ea3c4;
}
body.building-frontend .container,
body.building-frontend .container-fluid,
body.building-frontend .container-xxl,
body.building-frontend .container-xl,
body.building-frontend .container-lg,
body.building-frontend .container-md,
body.building-frontend .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) {
  body.building-frontend .container-sm, body.building-frontend .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.building-frontend .container-md, body.building-frontend .container-sm, body.building-frontend .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.building-frontend .container-lg, body.building-frontend .container-md, body.building-frontend .container-sm, body.building-frontend .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .container-xl, body.building-frontend .container-lg, body.building-frontend .container-md, body.building-frontend .container-sm, body.building-frontend .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .container-xxl, body.building-frontend .container-xl, body.building-frontend .container-lg, body.building-frontend .container-md, body.building-frontend .container-sm, body.building-frontend .container {
    max-width: 1320px;
  }
}
body.building-frontend .row {
  --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);
}
body.building-frontend .row > * {
  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);
}
body.building-frontend .col {
  flex: 1 0 0%;
}
body.building-frontend .row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
body.building-frontend .row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
body.building-frontend .row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
body.building-frontend .row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
body.building-frontend .row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
body.building-frontend .row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
body.building-frontend .row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
@media (min-width: 576px) {
  body.building-frontend .col-sm {
    flex: 1 0 0%;
  }
  body.building-frontend .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.building-frontend .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.building-frontend .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  body.building-frontend .col-md {
    flex: 1 0 0%;
  }
  body.building-frontend .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.building-frontend .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.building-frontend .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  body.building-frontend .col-lg {
    flex: 1 0 0%;
  }
  body.building-frontend .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.building-frontend .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.building-frontend .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .col-xl {
    flex: 1 0 0%;
  }
  body.building-frontend .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.building-frontend .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.building-frontend .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .col-xxl {
    flex: 1 0 0%;
  }
  body.building-frontend .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  body.building-frontend .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  body.building-frontend .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
body.building-frontend .col-auto {
  flex: 0 0 auto;
  width: auto;
}
body.building-frontend .col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
body.building-frontend .col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
body.building-frontend .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
body.building-frontend .col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
body.building-frontend .col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
body.building-frontend .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
body.building-frontend .col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
body.building-frontend .col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
body.building-frontend .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
body.building-frontend .col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
body.building-frontend .col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
body.building-frontend .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
body.building-frontend .offset-1 {
  margin-left: 8.33333333%;
}
body.building-frontend .offset-2 {
  margin-left: 16.66666667%;
}
body.building-frontend .offset-3 {
  margin-left: 25%;
}
body.building-frontend .offset-4 {
  margin-left: 33.33333333%;
}
body.building-frontend .offset-5 {
  margin-left: 41.66666667%;
}
body.building-frontend .offset-6 {
  margin-left: 50%;
}
body.building-frontend .offset-7 {
  margin-left: 58.33333333%;
}
body.building-frontend .offset-8 {
  margin-left: 66.66666667%;
}
body.building-frontend .offset-9 {
  margin-left: 75%;
}
body.building-frontend .offset-10 {
  margin-left: 83.33333333%;
}
body.building-frontend .offset-11 {
  margin-left: 91.66666667%;
}
body.building-frontend .g-0,
body.building-frontend .gx-0 {
  --bs-gutter-x: 0;
}
body.building-frontend .g-0,
body.building-frontend .gy-0 {
  --bs-gutter-y: 0;
}
body.building-frontend .g-1,
body.building-frontend .gx-1 {
  --bs-gutter-x: 0.25rem;
}
body.building-frontend .g-1,
body.building-frontend .gy-1 {
  --bs-gutter-y: 0.25rem;
}
body.building-frontend .g-2,
body.building-frontend .gx-2 {
  --bs-gutter-x: 0.5rem;
}
body.building-frontend .g-2,
body.building-frontend .gy-2 {
  --bs-gutter-y: 0.5rem;
}
body.building-frontend .g-3,
body.building-frontend .gx-3 {
  --bs-gutter-x: 1rem;
}
body.building-frontend .g-3,
body.building-frontend .gy-3 {
  --bs-gutter-y: 1rem;
}
body.building-frontend .g-4,
body.building-frontend .gx-4 {
  --bs-gutter-x: 1.5rem;
}
body.building-frontend .g-4,
body.building-frontend .gy-4 {
  --bs-gutter-y: 1.5rem;
}
body.building-frontend .g-5,
body.building-frontend .gx-5 {
  --bs-gutter-x: 3rem;
}
body.building-frontend .g-5,
body.building-frontend .gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  body.building-frontend .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.building-frontend .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.building-frontend .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.building-frontend .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.building-frontend .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.building-frontend .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.building-frontend .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.building-frontend .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.building-frontend .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.building-frontend .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .offset-sm-0 {
    margin-left: 0;
  }
  body.building-frontend .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  body.building-frontend .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  body.building-frontend .offset-sm-3 {
    margin-left: 25%;
  }
  body.building-frontend .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  body.building-frontend .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  body.building-frontend .offset-sm-6 {
    margin-left: 50%;
  }
  body.building-frontend .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  body.building-frontend .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  body.building-frontend .offset-sm-9 {
    margin-left: 75%;
  }
  body.building-frontend .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  body.building-frontend .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  body.building-frontend .g-sm-0,
body.building-frontend .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  body.building-frontend .g-sm-0,
body.building-frontend .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  body.building-frontend .g-sm-1,
body.building-frontend .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.building-frontend .g-sm-1,
body.building-frontend .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.building-frontend .g-sm-2,
body.building-frontend .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.building-frontend .g-sm-2,
body.building-frontend .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.building-frontend .g-sm-3,
body.building-frontend .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  body.building-frontend .g-sm-3,
body.building-frontend .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  body.building-frontend .g-sm-4,
body.building-frontend .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.building-frontend .g-sm-4,
body.building-frontend .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.building-frontend .g-sm-5,
body.building-frontend .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  body.building-frontend .g-sm-5,
body.building-frontend .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  body.building-frontend .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.building-frontend .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.building-frontend .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.building-frontend .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.building-frontend .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.building-frontend .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.building-frontend .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.building-frontend .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.building-frontend .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.building-frontend .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .offset-md-0 {
    margin-left: 0;
  }
  body.building-frontend .offset-md-1 {
    margin-left: 8.33333333%;
  }
  body.building-frontend .offset-md-2 {
    margin-left: 16.66666667%;
  }
  body.building-frontend .offset-md-3 {
    margin-left: 25%;
  }
  body.building-frontend .offset-md-4 {
    margin-left: 33.33333333%;
  }
  body.building-frontend .offset-md-5 {
    margin-left: 41.66666667%;
  }
  body.building-frontend .offset-md-6 {
    margin-left: 50%;
  }
  body.building-frontend .offset-md-7 {
    margin-left: 58.33333333%;
  }
  body.building-frontend .offset-md-8 {
    margin-left: 66.66666667%;
  }
  body.building-frontend .offset-md-9 {
    margin-left: 75%;
  }
  body.building-frontend .offset-md-10 {
    margin-left: 83.33333333%;
  }
  body.building-frontend .offset-md-11 {
    margin-left: 91.66666667%;
  }
  body.building-frontend .g-md-0,
body.building-frontend .gx-md-0 {
    --bs-gutter-x: 0;
  }
  body.building-frontend .g-md-0,
body.building-frontend .gy-md-0 {
    --bs-gutter-y: 0;
  }
  body.building-frontend .g-md-1,
body.building-frontend .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.building-frontend .g-md-1,
body.building-frontend .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.building-frontend .g-md-2,
body.building-frontend .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.building-frontend .g-md-2,
body.building-frontend .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.building-frontend .g-md-3,
body.building-frontend .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  body.building-frontend .g-md-3,
body.building-frontend .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  body.building-frontend .g-md-4,
body.building-frontend .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.building-frontend .g-md-4,
body.building-frontend .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.building-frontend .g-md-5,
body.building-frontend .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  body.building-frontend .g-md-5,
body.building-frontend .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  body.building-frontend .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.building-frontend .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.building-frontend .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.building-frontend .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.building-frontend .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.building-frontend .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.building-frontend .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.building-frontend .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.building-frontend .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.building-frontend .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .offset-lg-0 {
    margin-left: 0;
  }
  body.building-frontend .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  body.building-frontend .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  body.building-frontend .offset-lg-3 {
    margin-left: 25%;
  }
  body.building-frontend .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  body.building-frontend .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  body.building-frontend .offset-lg-6 {
    margin-left: 50%;
  }
  body.building-frontend .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  body.building-frontend .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  body.building-frontend .offset-lg-9 {
    margin-left: 75%;
  }
  body.building-frontend .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  body.building-frontend .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  body.building-frontend .g-lg-0,
body.building-frontend .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  body.building-frontend .g-lg-0,
body.building-frontend .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  body.building-frontend .g-lg-1,
body.building-frontend .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.building-frontend .g-lg-1,
body.building-frontend .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.building-frontend .g-lg-2,
body.building-frontend .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.building-frontend .g-lg-2,
body.building-frontend .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.building-frontend .g-lg-3,
body.building-frontend .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  body.building-frontend .g-lg-3,
body.building-frontend .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  body.building-frontend .g-lg-4,
body.building-frontend .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.building-frontend .g-lg-4,
body.building-frontend .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.building-frontend .g-lg-5,
body.building-frontend .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  body.building-frontend .g-lg-5,
body.building-frontend .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.building-frontend .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.building-frontend .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.building-frontend .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.building-frontend .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.building-frontend .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.building-frontend .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.building-frontend .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.building-frontend .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.building-frontend .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .offset-xl-0 {
    margin-left: 0;
  }
  body.building-frontend .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  body.building-frontend .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  body.building-frontend .offset-xl-3 {
    margin-left: 25%;
  }
  body.building-frontend .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  body.building-frontend .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  body.building-frontend .offset-xl-6 {
    margin-left: 50%;
  }
  body.building-frontend .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  body.building-frontend .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  body.building-frontend .offset-xl-9 {
    margin-left: 75%;
  }
  body.building-frontend .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  body.building-frontend .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  body.building-frontend .g-xl-0,
body.building-frontend .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  body.building-frontend .g-xl-0,
body.building-frontend .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  body.building-frontend .g-xl-1,
body.building-frontend .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.building-frontend .g-xl-1,
body.building-frontend .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.building-frontend .g-xl-2,
body.building-frontend .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.building-frontend .g-xl-2,
body.building-frontend .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.building-frontend .g-xl-3,
body.building-frontend .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  body.building-frontend .g-xl-3,
body.building-frontend .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  body.building-frontend .g-xl-4,
body.building-frontend .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.building-frontend .g-xl-4,
body.building-frontend .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.building-frontend .g-xl-5,
body.building-frontend .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  body.building-frontend .g-xl-5,
body.building-frontend .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  body.building-frontend .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  body.building-frontend .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  body.building-frontend .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  body.building-frontend .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  body.building-frontend .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  body.building-frontend .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  body.building-frontend .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  body.building-frontend .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  body.building-frontend .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  body.building-frontend .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  body.building-frontend .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  body.building-frontend .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  body.building-frontend .offset-xxl-0 {
    margin-left: 0;
  }
  body.building-frontend .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  body.building-frontend .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  body.building-frontend .offset-xxl-3 {
    margin-left: 25%;
  }
  body.building-frontend .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  body.building-frontend .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  body.building-frontend .offset-xxl-6 {
    margin-left: 50%;
  }
  body.building-frontend .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  body.building-frontend .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  body.building-frontend .offset-xxl-9 {
    margin-left: 75%;
  }
  body.building-frontend .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  body.building-frontend .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  body.building-frontend .g-xxl-0,
body.building-frontend .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  body.building-frontend .g-xxl-0,
body.building-frontend .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  body.building-frontend .g-xxl-1,
body.building-frontend .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  body.building-frontend .g-xxl-1,
body.building-frontend .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  body.building-frontend .g-xxl-2,
body.building-frontend .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  body.building-frontend .g-xxl-2,
body.building-frontend .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  body.building-frontend .g-xxl-3,
body.building-frontend .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  body.building-frontend .g-xxl-3,
body.building-frontend .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  body.building-frontend .g-xxl-4,
body.building-frontend .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  body.building-frontend .g-xxl-4,
body.building-frontend .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  body.building-frontend .g-xxl-5,
body.building-frontend .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  body.building-frontend .g-xxl-5,
body.building-frontend .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
body.building-frontend .table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #1c1e2e;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #1c1e2e;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #1c1e2e;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #1c1e2e;
  vertical-align: top;
  border-color: #dedfeb;
}
body.building-frontend .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);
}
body.building-frontend .table > tbody {
  vertical-align: inherit;
}
body.building-frontend .table > thead {
  vertical-align: bottom;
}
body.building-frontend .table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
body.building-frontend .caption-top {
  caption-side: top;
}
body.building-frontend .table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
body.building-frontend .table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
body.building-frontend .table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
body.building-frontend .table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
body.building-frontend .table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
body.building-frontend .table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
body.building-frontend .table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
body.building-frontend .table-primary {
  --bs-table-bg: #fbe0d3;
  --bs-table-striped-bg: #eed5c8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e2cabe;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e8cfc3;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e2cabe;
}
body.building-frontend .table-secondary {
  --bs-table-bg: #dbdce5;
  --bs-table-striped-bg: #d0d1da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #c5c6ce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #cbccd4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #c5c6ce;
}
body.building-frontend .table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}
body.building-frontend .table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}
body.building-frontend .table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}
body.building-frontend .table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}
body.building-frontend .table-light {
  --bs-table-bg: white;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6e6e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ececec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6e6e6;
}
body.building-frontend .table-dark {
  --bs-table-bg: #1c1e2e;
  --bs-table-striped-bg: #272938;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #333543;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #2d2f3e;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #333543;
}
body.building-frontend .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  body.building-frontend .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  body.building-frontend .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  body.building-frontend .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  body.building-frontend .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  body.building-frontend .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
body.building-frontend .form-label {
  margin-bottom: 0.5rem;
}
body.building-frontend .col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}
body.building-frontend .col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.125rem;
}
body.building-frontend .col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.7875rem;
}
body.building-frontend .form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #9ea3c4;
}
body.building-frontend .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1c1e2e;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced0e1;
  -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) {
  body.building-frontend .form-control {
    transition: none;
  }
}
body.building-frontend .form-control[type=file] {
  overflow: hidden;
}
body.building-frontend .form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
body.building-frontend .form-control:focus {
  color: #1c1e2e;
  background-color: #fff;
  border-color: #f6b292;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .form-control::-webkit-date-and-time-value {
  height: 1.6em;
}
body.building-frontend .form-control::-moz-placeholder {
  color: #9ea3c4;
  opacity: 1;
}
body.building-frontend .form-control:-ms-input-placeholder {
  color: #9ea3c4;
  opacity: 1;
}
body.building-frontend .form-control::placeholder {
  color: #9ea3c4;
  opacity: 1;
}
body.building-frontend .form-control:disabled, body.building-frontend .form-control[readonly] {
  background-color: #eeeef4;
  opacity: 1;
}
body.building-frontend .form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #1c1e2e;
  background-color: #eeeef4;
  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;
}
body.building-frontend .form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #1c1e2e;
  background-color: #eeeef4;
  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) {
  body.building-frontend .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  body.building-frontend .form-control::file-selector-button {
    transition: none;
  }
}
body.building-frontend .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e2e2e8;
}
body.building-frontend .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e2e2e8;
}
body.building-frontend .form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #1c1e2e;
  background-color: #eeeef4;
  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) {
  body.building-frontend .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
body.building-frontend .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e2e2e8;
}
body.building-frontend .form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  color: #1c1e2e;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
body.building-frontend .form-control-plaintext.form-control-sm, body.building-frontend .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
body.building-frontend .form-control-sm {
  min-height: calc(1.6em + (0.5rem + 2px));
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem;
}
body.building-frontend .form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.building-frontend .form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.building-frontend .form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
body.building-frontend .form-control-lg {
  min-height: calc(1.6em + (1rem + 2px));
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}
body.building-frontend .form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.building-frontend .form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.building-frontend .form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
body.building-frontend textarea.form-control {
  min-height: calc(1.6em + (0.75rem + 2px));
}
body.building-frontend textarea.form-control-sm {
  min-height: calc(1.6em + (0.5rem + 2px));
}
body.building-frontend textarea.form-control-lg {
  min-height: calc(1.6em + (1rem + 2px));
}
body.building-frontend .form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
body.building-frontend .form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
body.building-frontend .form-control-color::-moz-color-swatch {
  height: 1.6em;
  border-radius: 0.25rem;
}
body.building-frontend .form-control-color::-webkit-color-swatch {
  height: 1.6em;
  border-radius: 0.25rem;
}
body.building-frontend .form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1c1e2e;
  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='%2360669d' 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 #ced0e1;
  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) {
  body.building-frontend .form-select {
    transition: none;
  }
}
body.building-frontend .form-select:focus {
  border-color: #f6b292;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .form-select[multiple], body.building-frontend .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
body.building-frontend .form-select:disabled {
  background-color: #eeeef4;
}
body.building-frontend .form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #1c1e2e;
}
body.building-frontend .form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.7875rem;
}
body.building-frontend .form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
}
body.building-frontend .form-check {
  display: block;
  min-height: 1.44rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
body.building-frontend .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
body.building-frontend .form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  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;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
body.building-frontend .form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
body.building-frontend .form-check-input[type=radio] {
  border-radius: 50%;
}
body.building-frontend .form-check-input:active {
  filter: brightness(90%);
}
body.building-frontend .form-check-input:focus {
  border-color: #f6b292;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .form-check-input:checked {
  background-color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .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");
}
body.building-frontend .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");
}
body.building-frontend .form-check-input[type=checkbox]:indeterminate {
  background-color: #ed6524;
  border-color: #ed6524;
  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");
}
body.building-frontend .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
body.building-frontend .form-check-input[disabled] ~ .form-check-label, body.building-frontend .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
body.building-frontend .form-switch {
  padding-left: 2.5em;
}
body.building-frontend .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) {
  body.building-frontend .form-switch .form-check-input {
    transition: none;
  }
}
body.building-frontend .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='%23f6b292'/%3e%3c/svg%3e");
}
body.building-frontend .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");
}
body.building-frontend .form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
body.building-frontend .btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
body.building-frontend .btn-check[disabled] + .btn, body.building-frontend .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
body.building-frontend .form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body.building-frontend .form-range:focus {
  outline: 0;
}
body.building-frontend .form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .form-range::-moz-focus-outer {
  border: 0;
}
body.building-frontend .form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #ed6524;
  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) {
  body.building-frontend .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
body.building-frontend .form-range::-webkit-slider-thumb:active {
  background-color: #fad1bd;
}
body.building-frontend .form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dedfeb;
  border-color: transparent;
  border-radius: 1rem;
}
body.building-frontend .form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #ed6524;
  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) {
  body.building-frontend .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
body.building-frontend .form-range::-moz-range-thumb:active {
  background-color: #fad1bd;
}
body.building-frontend .form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dedfeb;
  border-color: transparent;
  border-radius: 1rem;
}
body.building-frontend .form-range:disabled {
  pointer-events: none;
}
body.building-frontend .form-range:disabled::-webkit-slider-thumb {
  background-color: #bec1d7;
}
body.building-frontend .form-range:disabled::-moz-range-thumb {
  background-color: #bec1d7;
}
body.building-frontend .form-floating {
  position: relative;
}
body.building-frontend .form-floating > .form-control,
body.building-frontend .form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
body.building-frontend .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) {
  body.building-frontend .form-floating > label {
    transition: none;
  }
}
body.building-frontend .form-floating > .form-control {
  padding: 1rem 0.75rem;
}
body.building-frontend .form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
body.building-frontend .form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
body.building-frontend .form-floating > .form-control::placeholder {
  color: transparent;
}
body.building-frontend .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.building-frontend .form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.building-frontend .form-floating > .form-control:focus, body.building-frontend .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.building-frontend .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.building-frontend .form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
body.building-frontend .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.building-frontend .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.building-frontend .form-floating > .form-control:focus ~ label,
body.building-frontend .form-floating > .form-control:not(:placeholder-shown) ~ label,
body.building-frontend .form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.building-frontend .form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
body.building-frontend .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
body.building-frontend .input-group > .form-control,
body.building-frontend .input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
body.building-frontend .input-group > .form-control:focus,
body.building-frontend .input-group > .form-select:focus {
  z-index: 3;
}
body.building-frontend .input-group .btn {
  position: relative;
  z-index: 2;
}
body.building-frontend .input-group .btn:focus {
  z-index: 3;
}
body.building-frontend .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1c1e2e;
  text-align: center;
  white-space: nowrap;
  background-color: #eeeef4;
  border: 1px solid #ced0e1;
  border-radius: 0.25rem;
}
body.building-frontend .input-group-lg > .form-control,
body.building-frontend .input-group-lg > .form-select,
body.building-frontend .input-group-lg > .input-group-text,
body.building-frontend .input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}
body.building-frontend .input-group-sm > .form-control,
body.building-frontend .input-group-sm > .form-select,
body.building-frontend .input-group-sm > .input-group-text,
body.building-frontend .input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem;
}
body.building-frontend .input-group-lg > .form-select,
body.building-frontend .input-group-sm > .form-select {
  padding-right: 3rem;
}
body.building-frontend .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
body.building-frontend .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.building-frontend .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
body.building-frontend .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.building-frontend .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;
}
body.building-frontend .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}
body.building-frontend .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.7875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}
.was-validated body.building-frontend:valid ~ .valid-feedback,
.was-validated body.building-frontend:valid ~ .valid-tooltip, body.building-frontend.is-valid ~ .valid-feedback,
body.building-frontend.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated body.building-frontend .form-control:valid, body.building-frontend .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.6em + 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.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated body.building-frontend .form-control:valid:focus, body.building-frontend .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated body.building-frontend textarea.form-control:valid, body.building-frontend textarea.form-control.is-valid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}
.was-validated body.building-frontend .form-select:valid, body.building-frontend .form-select.is-valid {
  border-color: #198754;
}
.was-validated body.building-frontend .form-select:valid:not([multiple]):not([size]), .was-validated body.building-frontend .form-select:valid:not([multiple])[size="1"], body.building-frontend .form-select.is-valid:not([multiple]):not([size]), body.building-frontend .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='%2360669d' 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.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated body.building-frontend .form-select:valid:focus, body.building-frontend .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated body.building-frontend .form-check-input:valid, body.building-frontend .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated body.building-frontend .form-check-input:valid:checked, body.building-frontend .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated body.building-frontend .form-check-input:valid:focus, body.building-frontend .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated body.building-frontend .form-check-input:valid ~ .form-check-label, body.building-frontend .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}
body.building-frontend .form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated body.building-frontend .input-group .form-control:valid, body.building-frontend .input-group .form-control.is-valid,
.was-validated body.building-frontend .input-group .form-select:valid,
body.building-frontend .input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated body.building-frontend .input-group .form-control:valid:focus, body.building-frontend .input-group .form-control.is-valid:focus,
.was-validated body.building-frontend .input-group .form-select:valid:focus,
body.building-frontend .input-group .form-select.is-valid:focus {
  z-index: 3;
}
body.building-frontend .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}
body.building-frontend .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.7875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated body.building-frontend:invalid ~ .invalid-feedback,
.was-validated body.building-frontend:invalid ~ .invalid-tooltip, body.building-frontend.is-invalid ~ .invalid-feedback,
body.building-frontend.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated body.building-frontend .form-control:invalid, body.building-frontend .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.6em + 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='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated body.building-frontend .form-control:invalid:focus, body.building-frontend .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated body.building-frontend textarea.form-control:invalid, body.building-frontend textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
}
.was-validated body.building-frontend .form-select:invalid, body.building-frontend .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated body.building-frontend .form-select:invalid:not([multiple]):not([size]), .was-validated body.building-frontend .form-select:invalid:not([multiple])[size="1"], body.building-frontend .form-select.is-invalid:not([multiple]):not([size]), body.building-frontend .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='%2360669d' 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='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated body.building-frontend .form-select:invalid:focus, body.building-frontend .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated body.building-frontend .form-check-input:invalid, body.building-frontend .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated body.building-frontend .form-check-input:invalid:checked, body.building-frontend .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated body.building-frontend .form-check-input:invalid:focus, body.building-frontend .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated body.building-frontend .form-check-input:invalid ~ .form-check-label, body.building-frontend .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
body.building-frontend .form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated body.building-frontend .input-group .form-control:invalid, body.building-frontend .input-group .form-control.is-invalid,
.was-validated body.building-frontend .input-group .form-select:invalid,
body.building-frontend .input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated body.building-frontend .input-group .form-control:invalid:focus, body.building-frontend .input-group .form-control.is-invalid:focus,
.was-validated body.building-frontend .input-group .form-select:invalid:focus,
body.building-frontend .input-group .form-select.is-invalid:focus {
  z-index: 3;
}
body.building-frontend .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #1c1e2e;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .btn {
    transition: none;
  }
}
body.building-frontend .btn:hover {
  color: #1c1e2e;
}
.btn-check:focus + body.building-frontend .btn, body.building-frontend .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .btn:disabled, body.building-frontend .btn.disabled, fieldset:disabled body.building-frontend .btn {
  pointer-events: none;
  opacity: 0.65;
}
body.building-frontend .btn-primary {
  color: #000;
  background-color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .btn-primary:hover {
  color: #000;
  background-color: #f07c45;
  border-color: #ef743a;
}
.btn-check:focus + body.building-frontend .btn-primary, body.building-frontend .btn-primary:focus {
  color: #000;
  background-color: #f07c45;
  border-color: #ef743a;
  box-shadow: 0 0 0 0.25rem rgba(201, 86, 31, 0.5);
}
.btn-check:checked + body.building-frontend .btn-primary, .btn-check:active + body.building-frontend .btn-primary, body.building-frontend .btn-primary:active, body.building-frontend .btn-primary.active, .show > body.building-frontend .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #f18450;
  border-color: #ef743a;
}
.btn-check:checked + body.building-frontend .btn-primary:focus, .btn-check:active + body.building-frontend .btn-primary:focus, body.building-frontend .btn-primary:active:focus, body.building-frontend .btn-primary.active:focus, .show > body.building-frontend .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(201, 86, 31, 0.5);
}
body.building-frontend .btn-primary:disabled, body.building-frontend .btn-primary.disabled {
  color: #000;
  background-color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .btn-secondary {
  color: #fff;
  background-color: #4c527d;
  border-color: #4c527d;
}
body.building-frontend .btn-secondary:hover {
  color: #fff;
  background-color: #41466a;
  border-color: #3d4264;
}
.btn-check:focus + body.building-frontend .btn-secondary, body.building-frontend .btn-secondary:focus {
  color: #fff;
  background-color: #41466a;
  border-color: #3d4264;
  box-shadow: 0 0 0 0.25rem rgba(103, 108, 145, 0.5);
}
.btn-check:checked + body.building-frontend .btn-secondary, .btn-check:active + body.building-frontend .btn-secondary, body.building-frontend .btn-secondary:active, body.building-frontend .btn-secondary.active, .show > body.building-frontend .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #3d4264;
  border-color: #393e5e;
}
.btn-check:checked + body.building-frontend .btn-secondary:focus, .btn-check:active + body.building-frontend .btn-secondary:focus, body.building-frontend .btn-secondary:active:focus, body.building-frontend .btn-secondary.active:focus, .show > body.building-frontend .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(103, 108, 145, 0.5);
}
body.building-frontend .btn-secondary:disabled, body.building-frontend .btn-secondary.disabled {
  color: #fff;
  background-color: #4c527d;
  border-color: #4c527d;
}
body.building-frontend .btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
body.building-frontend .btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + body.building-frontend .btn-success, body.building-frontend .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + body.building-frontend .btn-success, .btn-check:active + body.building-frontend .btn-success, body.building-frontend .btn-success:active, body.building-frontend .btn-success.active, .show > body.building-frontend .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + body.building-frontend .btn-success:focus, .btn-check:active + body.building-frontend .btn-success:focus, body.building-frontend .btn-success:active:focus, body.building-frontend .btn-success.active:focus, .show > body.building-frontend .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
body.building-frontend .btn-success:disabled, body.building-frontend .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
body.building-frontend .btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
body.building-frontend .btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + body.building-frontend .btn-info, body.building-frontend .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + body.building-frontend .btn-info, .btn-check:active + body.building-frontend .btn-info, body.building-frontend .btn-info:active, body.building-frontend .btn-info.active, .show > body.building-frontend .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + body.building-frontend .btn-info:focus, .btn-check:active + body.building-frontend .btn-info:focus, body.building-frontend .btn-info:active:focus, body.building-frontend .btn-info.active:focus, .show > body.building-frontend .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
body.building-frontend .btn-info:disabled, body.building-frontend .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
body.building-frontend .btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
body.building-frontend .btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + body.building-frontend .btn-warning, body.building-frontend .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + body.building-frontend .btn-warning, .btn-check:active + body.building-frontend .btn-warning, body.building-frontend .btn-warning:active, body.building-frontend .btn-warning.active, .show > body.building-frontend .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + body.building-frontend .btn-warning:focus, .btn-check:active + body.building-frontend .btn-warning:focus, body.building-frontend .btn-warning:active:focus, body.building-frontend .btn-warning.active:focus, .show > body.building-frontend .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
body.building-frontend .btn-warning:disabled, body.building-frontend .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
body.building-frontend .btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
body.building-frontend .btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + body.building-frontend .btn-danger, body.building-frontend .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + body.building-frontend .btn-danger, .btn-check:active + body.building-frontend .btn-danger, body.building-frontend .btn-danger:active, body.building-frontend .btn-danger.active, .show > body.building-frontend .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + body.building-frontend .btn-danger:focus, .btn-check:active + body.building-frontend .btn-danger:focus, body.building-frontend .btn-danger:active:focus, body.building-frontend .btn-danger.active:focus, .show > body.building-frontend .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
body.building-frontend .btn-danger:disabled, body.building-frontend .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
body.building-frontend .btn-light {
  color: #000;
  background-color: white;
  border-color: white;
}
body.building-frontend .btn-light:hover {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:focus + body.building-frontend .btn-light, body.building-frontend .btn-light:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-check:checked + body.building-frontend .btn-light, .btn-check:active + body.building-frontend .btn-light, body.building-frontend .btn-light:active, body.building-frontend .btn-light.active, .show > body.building-frontend .btn-light.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:checked + body.building-frontend .btn-light:focus, .btn-check:active + body.building-frontend .btn-light:focus, body.building-frontend .btn-light:active:focus, body.building-frontend .btn-light.active:focus, .show > body.building-frontend .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
body.building-frontend .btn-light:disabled, body.building-frontend .btn-light.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}
body.building-frontend .btn-dark {
  color: #fff;
  background-color: #1c1e2e;
  border-color: #1c1e2e;
}
body.building-frontend .btn-dark:hover {
  color: #fff;
  background-color: #181a27;
  border-color: #161825;
}
.btn-check:focus + body.building-frontend .btn-dark, body.building-frontend .btn-dark:focus {
  color: #fff;
  background-color: #181a27;
  border-color: #161825;
  box-shadow: 0 0 0 0.25rem rgba(62, 64, 77, 0.5);
}
.btn-check:checked + body.building-frontend .btn-dark, .btn-check:active + body.building-frontend .btn-dark, body.building-frontend .btn-dark:active, body.building-frontend .btn-dark.active, .show > body.building-frontend .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #161825;
  border-color: #151723;
}
.btn-check:checked + body.building-frontend .btn-dark:focus, .btn-check:active + body.building-frontend .btn-dark:focus, body.building-frontend .btn-dark:active:focus, body.building-frontend .btn-dark.active:focus, .show > body.building-frontend .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(62, 64, 77, 0.5);
}
body.building-frontend .btn-dark:disabled, body.building-frontend .btn-dark.disabled {
  color: #fff;
  background-color: #1c1e2e;
  border-color: #1c1e2e;
}
body.building-frontend .btn-outline-primary {
  color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .btn-outline-primary:hover {
  color: #000;
  background-color: #ed6524;
  border-color: #ed6524;
}
.btn-check:focus + body.building-frontend .btn-outline-primary, body.building-frontend .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-primary, .btn-check:active + body.building-frontend .btn-outline-primary, body.building-frontend .btn-outline-primary:active, body.building-frontend .btn-outline-primary.active, body.building-frontend .btn-outline-primary.dropdown-toggle.show {
  color: #000;
  background-color: #ed6524;
  border-color: #ed6524;
}
.btn-check:checked + body.building-frontend .btn-outline-primary:focus, .btn-check:active + body.building-frontend .btn-outline-primary:focus, body.building-frontend .btn-outline-primary:active:focus, body.building-frontend .btn-outline-primary.active:focus, body.building-frontend .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.5);
}
body.building-frontend .btn-outline-primary:disabled, body.building-frontend .btn-outline-primary.disabled {
  color: #ed6524;
  background-color: transparent;
}
body.building-frontend .btn-outline-secondary {
  color: #4c527d;
  border-color: #4c527d;
}
body.building-frontend .btn-outline-secondary:hover {
  color: #fff;
  background-color: #4c527d;
  border-color: #4c527d;
}
.btn-check:focus + body.building-frontend .btn-outline-secondary, body.building-frontend .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 82, 125, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-secondary, .btn-check:active + body.building-frontend .btn-outline-secondary, body.building-frontend .btn-outline-secondary:active, body.building-frontend .btn-outline-secondary.active, body.building-frontend .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #4c527d;
  border-color: #4c527d;
}
.btn-check:checked + body.building-frontend .btn-outline-secondary:focus, .btn-check:active + body.building-frontend .btn-outline-secondary:focus, body.building-frontend .btn-outline-secondary:active:focus, body.building-frontend .btn-outline-secondary.active:focus, body.building-frontend .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(76, 82, 125, 0.5);
}
body.building-frontend .btn-outline-secondary:disabled, body.building-frontend .btn-outline-secondary.disabled {
  color: #4c527d;
  background-color: transparent;
}
body.building-frontend .btn-outline-success {
  color: #198754;
  border-color: #198754;
}
body.building-frontend .btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + body.building-frontend .btn-outline-success, body.building-frontend .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-success, .btn-check:active + body.building-frontend .btn-outline-success, body.building-frontend .btn-outline-success:active, body.building-frontend .btn-outline-success.active, body.building-frontend .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + body.building-frontend .btn-outline-success:focus, .btn-check:active + body.building-frontend .btn-outline-success:focus, body.building-frontend .btn-outline-success:active:focus, body.building-frontend .btn-outline-success.active:focus, body.building-frontend .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
body.building-frontend .btn-outline-success:disabled, body.building-frontend .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}
body.building-frontend .btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
body.building-frontend .btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + body.building-frontend .btn-outline-info, body.building-frontend .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-info, .btn-check:active + body.building-frontend .btn-outline-info, body.building-frontend .btn-outline-info:active, body.building-frontend .btn-outline-info.active, body.building-frontend .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + body.building-frontend .btn-outline-info:focus, .btn-check:active + body.building-frontend .btn-outline-info:focus, body.building-frontend .btn-outline-info:active:focus, body.building-frontend .btn-outline-info.active:focus, body.building-frontend .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
body.building-frontend .btn-outline-info:disabled, body.building-frontend .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}
body.building-frontend .btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
body.building-frontend .btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + body.building-frontend .btn-outline-warning, body.building-frontend .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-warning, .btn-check:active + body.building-frontend .btn-outline-warning, body.building-frontend .btn-outline-warning:active, body.building-frontend .btn-outline-warning.active, body.building-frontend .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + body.building-frontend .btn-outline-warning:focus, .btn-check:active + body.building-frontend .btn-outline-warning:focus, body.building-frontend .btn-outline-warning:active:focus, body.building-frontend .btn-outline-warning.active:focus, body.building-frontend .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
body.building-frontend .btn-outline-warning:disabled, body.building-frontend .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}
body.building-frontend .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
body.building-frontend .btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + body.building-frontend .btn-outline-danger, body.building-frontend .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-danger, .btn-check:active + body.building-frontend .btn-outline-danger, body.building-frontend .btn-outline-danger:active, body.building-frontend .btn-outline-danger.active, body.building-frontend .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + body.building-frontend .btn-outline-danger:focus, .btn-check:active + body.building-frontend .btn-outline-danger:focus, body.building-frontend .btn-outline-danger:active:focus, body.building-frontend .btn-outline-danger.active:focus, body.building-frontend .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
body.building-frontend .btn-outline-danger:disabled, body.building-frontend .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}
body.building-frontend .btn-outline-light {
  color: white;
  border-color: white;
}
body.building-frontend .btn-outline-light:hover {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:focus + body.building-frontend .btn-outline-light, body.building-frontend .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-light, .btn-check:active + body.building-frontend .btn-outline-light, body.building-frontend .btn-outline-light:active, body.building-frontend .btn-outline-light.active, body.building-frontend .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:checked + body.building-frontend .btn-outline-light:focus, .btn-check:active + body.building-frontend .btn-outline-light:focus, body.building-frontend .btn-outline-light:active:focus, body.building-frontend .btn-outline-light.active:focus, body.building-frontend .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
body.building-frontend .btn-outline-light:disabled, body.building-frontend .btn-outline-light.disabled {
  color: white;
  background-color: transparent;
}
body.building-frontend .btn-outline-dark {
  color: #1c1e2e;
  border-color: #1c1e2e;
}
body.building-frontend .btn-outline-dark:hover {
  color: #fff;
  background-color: #1c1e2e;
  border-color: #1c1e2e;
}
.btn-check:focus + body.building-frontend .btn-outline-dark, body.building-frontend .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(28, 30, 46, 0.5);
}
.btn-check:checked + body.building-frontend .btn-outline-dark, .btn-check:active + body.building-frontend .btn-outline-dark, body.building-frontend .btn-outline-dark:active, body.building-frontend .btn-outline-dark.active, body.building-frontend .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #1c1e2e;
  border-color: #1c1e2e;
}
.btn-check:checked + body.building-frontend .btn-outline-dark:focus, .btn-check:active + body.building-frontend .btn-outline-dark:focus, body.building-frontend .btn-outline-dark:active:focus, body.building-frontend .btn-outline-dark.active:focus, body.building-frontend .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(28, 30, 46, 0.5);
}
body.building-frontend .btn-outline-dark:disabled, body.building-frontend .btn-outline-dark.disabled {
  color: #1c1e2e;
  background-color: transparent;
}
body.building-frontend .btn-link {
  font-weight: 400;
  color: #ed6524;
  text-decoration: underline;
}
body.building-frontend .btn-link:hover {
  color: #be511d;
}
body.building-frontend .btn-link:disabled, body.building-frontend .btn-link.disabled {
  color: #9ea3c4;
}
body.building-frontend .btn-lg, body.building-frontend .btn-group-lg > .btn, body.building-frontend body.backend .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}
body.building-frontend .btn-sm, body.building-frontend .btn-group-sm > .btn, body.building-frontend body.backend .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem;
}
body.building-frontend .fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .fade {
    transition: none;
  }
}
body.building-frontend .fade:not(.show) {
  opacity: 0;
}
body.building-frontend .collapse:not(.show) {
  display: none;
}
body.building-frontend .collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .collapsing {
    transition: none;
  }
}
body.building-frontend .dropup,
body.building-frontend .dropend,
body.building-frontend .dropdown,
body.building-frontend .dropstart {
  position: relative;
}
body.building-frontend .dropdown-toggle {
  white-space: nowrap;
}
body.building-frontend .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;
}
body.building-frontend .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.building-frontend .dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.9rem;
  color: #1c1e2e;
  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;
}
body.building-frontend .dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
body.building-frontend .dropdown-menu-start {
  --bs-position: start;
}
body.building-frontend .dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
body.building-frontend .dropdown-menu-end {
  --bs-position: end;
}
body.building-frontend .dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  body.building-frontend .dropdown-menu-sm-start {
    --bs-position: start;
  }
  body.building-frontend .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.building-frontend .dropdown-menu-sm-end {
    --bs-position: end;
  }
  body.building-frontend .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  body.building-frontend .dropdown-menu-md-start {
    --bs-position: start;
  }
  body.building-frontend .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.building-frontend .dropdown-menu-md-end {
    --bs-position: end;
  }
  body.building-frontend .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  body.building-frontend .dropdown-menu-lg-start {
    --bs-position: start;
  }
  body.building-frontend .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.building-frontend .dropdown-menu-lg-end {
    --bs-position: end;
  }
  body.building-frontend .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .dropdown-menu-xl-start {
    --bs-position: start;
  }
  body.building-frontend .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.building-frontend .dropdown-menu-xl-end {
    --bs-position: end;
  }
  body.building-frontend .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  body.building-frontend .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  body.building-frontend .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  body.building-frontend .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
body.building-frontend .dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
body.building-frontend .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;
}
body.building-frontend .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.building-frontend .dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
body.building-frontend .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;
}
body.building-frontend .dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.building-frontend .dropend .dropdown-toggle::after {
  vertical-align: 0;
}
body.building-frontend .dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
body.building-frontend .dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
body.building-frontend .dropstart .dropdown-toggle::after {
  display: none;
}
body.building-frontend .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;
}
body.building-frontend .dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
body.building-frontend .dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
body.building-frontend .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
body.building-frontend .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #1c1e2e;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
body.building-frontend .dropdown-item:hover, body.building-frontend .dropdown-item:focus {
  color: #191b29;
  background-color: #eeeef4;
}
body.building-frontend .dropdown-item.active, body.building-frontend .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #ed6524;
}
body.building-frontend .dropdown-item.disabled, body.building-frontend .dropdown-item:disabled {
  color: #bec1d7;
  pointer-events: none;
  background-color: transparent;
}
body.building-frontend .dropdown-menu.show {
  display: block;
}
body.building-frontend .dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.7875rem;
  color: #9ea3c4;
  white-space: nowrap;
}
body.building-frontend .dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #1c1e2e;
}
body.building-frontend .dropdown-menu-dark {
  color: #dedfeb;
  background-color: #60669d;
  border-color: rgba(0, 0, 0, 0.15);
}
body.building-frontend .dropdown-menu-dark .dropdown-item {
  color: #dedfeb;
}
body.building-frontend .dropdown-menu-dark .dropdown-item:hover, body.building-frontend .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
body.building-frontend .dropdown-menu-dark .dropdown-item.active, body.building-frontend .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #ed6524;
}
body.building-frontend .dropdown-menu-dark .dropdown-item.disabled, body.building-frontend .dropdown-menu-dark .dropdown-item:disabled {
  color: #bec1d7;
}
body.building-frontend .dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
body.building-frontend .dropdown-menu-dark .dropdown-item-text {
  color: #dedfeb;
}
body.building-frontend .dropdown-menu-dark .dropdown-header {
  color: #bec1d7;
}
body.building-frontend .btn-group,
body.building-frontend .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
body.building-frontend .btn-group > .btn,
body.building-frontend .btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
body.building-frontend .btn-group > .btn-check:checked + .btn,
body.building-frontend .btn-group > .btn-check:focus + .btn,
body.building-frontend .btn-group > .btn:hover,
body.building-frontend .btn-group > .btn:focus,
body.building-frontend .btn-group > .btn:active,
body.building-frontend .btn-group > .btn.active,
body.building-frontend .btn-group-vertical > .btn-check:checked + .btn,
body.building-frontend .btn-group-vertical > .btn-check:focus + .btn,
body.building-frontend .btn-group-vertical > .btn:hover,
body.building-frontend .btn-group-vertical > .btn:focus,
body.building-frontend .btn-group-vertical > .btn:active,
body.building-frontend .btn-group-vertical > .btn.active {
  z-index: 1;
}
body.building-frontend .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
body.building-frontend .btn-toolbar .input-group {
  width: auto;
}
body.building-frontend .btn-group > .btn:not(:first-child),
body.building-frontend .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
body.building-frontend .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
body.building-frontend .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.building-frontend .btn-group > .btn:nth-child(n+3),
body.building-frontend .btn-group > :not(.btn-check) + .btn,
body.building-frontend .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body.building-frontend .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
body.building-frontend .dropdown-toggle-split::after, .dropup body.building-frontend .dropdown-toggle-split::after, .dropend body.building-frontend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart body.building-frontend .dropdown-toggle-split::before {
  margin-right: 0;
}
body.building-frontend .btn-sm + .dropdown-toggle-split, body.building-frontend .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
body.building-frontend .btn-lg + .dropdown-toggle-split, body.building-frontend .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
body.building-frontend .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body.building-frontend .btn-group-vertical > .btn,
body.building-frontend .btn-group-vertical > .btn-group {
  width: 100%;
}
body.building-frontend .btn-group-vertical > .btn:not(:first-child),
body.building-frontend .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
body.building-frontend .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
body.building-frontend .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
body.building-frontend .btn-group-vertical > .btn ~ .btn,
body.building-frontend .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body.building-frontend .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
body.building-frontend .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ed6524;
  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) {
  body.building-frontend .nav-link {
    transition: none;
  }
}
body.building-frontend .nav-link:hover, body.building-frontend .nav-link:focus {
  color: #be511d;
}
body.building-frontend .nav-link.disabled {
  color: #9ea3c4;
  pointer-events: none;
  cursor: default;
}
body.building-frontend .nav-tabs {
  border-bottom: 1px solid #dedfeb;
}
body.building-frontend .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;
}
body.building-frontend .nav-tabs .nav-link:hover, body.building-frontend .nav-tabs .nav-link:focus {
  border-color: #eeeef4 #eeeef4 #dedfeb;
  isolation: isolate;
}
body.building-frontend .nav-tabs .nav-link.disabled {
  color: #9ea3c4;
  background-color: transparent;
  border-color: transparent;
}
body.building-frontend .nav-tabs .nav-link.active,
body.building-frontend .nav-tabs .nav-item.show .nav-link {
  color: #7f84b1;
  background-color: #f8fafc;
  border-color: #dedfeb #dedfeb #f8fafc;
}
body.building-frontend .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
body.building-frontend .nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
body.building-frontend .nav-pills .nav-link.active,
body.building-frontend .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #ed6524;
}
body.building-frontend .nav-fill > .nav-link,
body.building-frontend .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
body.building-frontend .nav-justified > .nav-link,
body.building-frontend .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
body.building-frontend .nav-fill .nav-item .nav-link,
body.building-frontend .nav-justified .nav-item .nav-link {
  width: 100%;
}
body.building-frontend .tab-content > .tab-pane {
  display: none;
}
body.building-frontend .tab-content > .active {
  display: block;
}
body.building-frontend .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
body.building-frontend .navbar > .container,
body.building-frontend .navbar > .container-fluid,
body.building-frontend .navbar > .container-sm,
body.building-frontend .navbar > .container-md,
body.building-frontend .navbar > .container-lg,
body.building-frontend .navbar > .container-xl,
body.building-frontend .navbar > .container-xxl, body.building-frontend body.backend .navbar > .container,
body.building-frontend body.backend .navbar > .container-fluid,
body.building-frontend body.backend .navbar > .container-xxl,
body.building-frontend body.backend .navbar > .container-xl,
body.building-frontend body.backend .navbar > .container-lg,
body.building-frontend body.backend .navbar > .container-md,
body.building-frontend body.backend .navbar > .container-sm {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
body.building-frontend .navbar-brand {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  text-decoration: none;
  white-space: nowrap;
}
body.building-frontend .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
body.building-frontend .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
body.building-frontend .navbar-nav .dropdown-menu {
  position: static;
}
body.building-frontend .navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
body.building-frontend .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
body.building-frontend .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .navbar-toggler {
    transition: none;
  }
}
body.building-frontend .navbar-toggler:hover {
  text-decoration: none;
}
body.building-frontend .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}
body.building-frontend .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%;
}
body.building-frontend .navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  body.building-frontend .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.building-frontend .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  body.building-frontend .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.building-frontend .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.building-frontend .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  body.building-frontend .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.building-frontend .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  body.building-frontend .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.building-frontend .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  body.building-frontend .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.building-frontend .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.building-frontend .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  body.building-frontend .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.building-frontend .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  body.building-frontend .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.building-frontend .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  body.building-frontend .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.building-frontend .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.building-frontend .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  body.building-frontend .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.building-frontend .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.building-frontend .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  body.building-frontend .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.building-frontend .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.building-frontend .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  body.building-frontend .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.building-frontend .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  body.building-frontend .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  body.building-frontend .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  body.building-frontend .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  body.building-frontend .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  body.building-frontend .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  body.building-frontend .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
body.building-frontend .navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
body.building-frontend .navbar-expand .navbar-nav {
  flex-direction: row;
}
body.building-frontend .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
body.building-frontend .navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
body.building-frontend .navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
body.building-frontend .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
body.building-frontend .navbar-expand .navbar-toggler {
  display: none;
}
body.building-frontend .navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
body.building-frontend .navbar-light .navbar-brand:hover, body.building-frontend .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
body.building-frontend .navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
body.building-frontend .navbar-light .navbar-nav .nav-link:hover, body.building-frontend .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
body.building-frontend .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
body.building-frontend .navbar-light .navbar-nav .show > .nav-link,
body.building-frontend .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
body.building-frontend .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
body.building-frontend .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");
}
body.building-frontend .navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
body.building-frontend .navbar-light .navbar-text a,
body.building-frontend .navbar-light .navbar-text a:hover,
body.building-frontend .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
body.building-frontend .navbar-dark .navbar-brand {
  color: #fff;
}
body.building-frontend .navbar-dark .navbar-brand:hover, body.building-frontend .navbar-dark .navbar-brand:focus {
  color: #fff;
}
body.building-frontend .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
body.building-frontend .navbar-dark .navbar-nav .nav-link:hover, body.building-frontend .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
body.building-frontend .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
body.building-frontend .navbar-dark .navbar-nav .show > .nav-link,
body.building-frontend .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
body.building-frontend .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
body.building-frontend .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");
}
body.building-frontend .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
body.building-frontend .navbar-dark .navbar-text a,
body.building-frontend .navbar-dark .navbar-text a:hover,
body.building-frontend .navbar-dark .navbar-text a:focus {
  color: #fff;
}
body.building-frontend .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;
}
body.building-frontend .card > hr {
  margin-right: 0;
  margin-left: 0;
}
body.building-frontend .card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
body.building-frontend .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);
}
body.building-frontend .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);
}
body.building-frontend .card > .card-header + .list-group,
body.building-frontend .card > .list-group + .card-footer {
  border-top: 0;
}
body.building-frontend .card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
body.building-frontend .card-title {
  margin-bottom: 0.5rem;
}
body.building-frontend .card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
body.building-frontend .card-text:last-child {
  margin-bottom: 0;
}
body.building-frontend .card-link:hover {
  text-decoration: none;
}
body.building-frontend .card-link + .card-link {
  margin-left: 1rem;
}
body.building-frontend .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);
}
body.building-frontend .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
body.building-frontend .card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
body.building-frontend .card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
body.building-frontend .card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
body.building-frontend .card-header-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff;
}
body.building-frontend .card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
body.building-frontend .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
body.building-frontend .card-img,
body.building-frontend .card-img-top,
body.building-frontend .card-img-bottom {
  width: 100%;
}
body.building-frontend .card-img,
body.building-frontend .card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
body.building-frontend .card-img,
body.building-frontend .card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
body.building-frontend .card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  body.building-frontend .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  body.building-frontend .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  body.building-frontend .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  body.building-frontend .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  body.building-frontend .card-group > .card:not(:last-child) .card-img-top,
body.building-frontend .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  body.building-frontend .card-group > .card:not(:last-child) .card-img-bottom,
body.building-frontend .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  body.building-frontend .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .card-group > .card:not(:first-child) .card-img-top,
body.building-frontend .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  body.building-frontend .card-group > .card:not(:first-child) .card-img-bottom,
body.building-frontend .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
body.building-frontend .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #1c1e2e;
  text-align: left;
  background-color: #f8fafc;
  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) {
  body.building-frontend .accordion-button {
    transition: none;
  }
}
body.building-frontend .accordion-button:not(.collapsed) {
  color: #d55b20;
  background-color: #fdf0e9;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
body.building-frontend .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='%23d55b20'%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);
}
body.building-frontend .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='%231c1e2e'%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) {
  body.building-frontend .accordion-button::after {
    transition: none;
  }
}
body.building-frontend .accordion-button:hover {
  z-index: 2;
}
body.building-frontend .accordion-button:focus {
  z-index: 3;
  border-color: #f6b292;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .accordion-header {
  margin-bottom: 0;
}
body.building-frontend .accordion-item {
  background-color: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
body.building-frontend .accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
body.building-frontend .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
body.building-frontend .accordion-item:not(:first-of-type) {
  border-top: 0;
}
body.building-frontend .accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
body.building-frontend .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
body.building-frontend .accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
body.building-frontend .accordion-body {
  padding: 1rem 1.25rem;
}
body.building-frontend .accordion-flush .accordion-collapse {
  border-width: 0;
}
body.building-frontend .accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
body.building-frontend .accordion-flush .accordion-item:first-child {
  border-top: 0;
}
body.building-frontend .accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
body.building-frontend .accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
body.building-frontend .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
body.building-frontend .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
body.building-frontend .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #9ea3c4;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
body.building-frontend .breadcrumb-item.active {
  color: #9ea3c4;
}
body.building-frontend .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
body.building-frontend .page-link {
  position: relative;
  display: block;
  color: #ed6524;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dedfeb;
  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) {
  body.building-frontend .page-link {
    transition: none;
  }
}
body.building-frontend .page-link:hover {
  z-index: 2;
  color: #be511d;
  background-color: #eeeef4;
  border-color: #dedfeb;
}
body.building-frontend .page-link:focus {
  z-index: 3;
  color: #be511d;
  background-color: #eeeef4;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
}
body.building-frontend .page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
body.building-frontend .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .page-item.disabled .page-link {
  color: #9ea3c4;
  pointer-events: none;
  background-color: #fff;
  border-color: #dedfeb;
}
body.building-frontend .page-link {
  padding: 0.375rem 0.75rem;
}
body.building-frontend .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
body.building-frontend .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
body.building-frontend .pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
}
body.building-frontend .pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
body.building-frontend .pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
body.building-frontend .pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
}
body.building-frontend .pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
body.building-frontend .pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
body.building-frontend .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;
}
body.building-frontend .badge:empty {
  display: none;
}
body.building-frontend .btn .badge {
  position: relative;
  top: -1px;
}
body.building-frontend .alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
body.building-frontend .alert-heading {
  color: inherit;
}
body.building-frontend .alert-link {
  font-weight: 700;
}
body.building-frontend .alert-dismissible {
  padding-right: 3rem;
}
body.building-frontend .alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
body.building-frontend .alert-primary {
  color: #8e3d16;
  background-color: #fbe0d3;
  border-color: #fad1bd;
}
body.building-frontend .alert-primary .alert-link {
  color: #723112;
}
body.building-frontend .alert-secondary {
  color: #2e314b;
  background-color: #dbdce5;
  border-color: #c9cbd8;
}
body.building-frontend .alert-secondary .alert-link {
  color: #25273c;
}
body.building-frontend .alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
body.building-frontend .alert-success .alert-link {
  color: #0c4128;
}
body.building-frontend .alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
body.building-frontend .alert-info .alert-link {
  color: #04414d;
}
body.building-frontend .alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
body.building-frontend .alert-warning .alert-link {
  color: #523e02;
}
body.building-frontend .alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
body.building-frontend .alert-danger .alert-link {
  color: #6a1a21;
}
body.building-frontend .alert-light {
  color: #666666;
  background-color: white;
  border-color: white;
}
body.building-frontend .alert-light .alert-link {
  color: #525252;
}
body.building-frontend .alert-dark {
  color: #11121c;
  background-color: #d2d2d5;
  border-color: #bbbcc0;
}
body.building-frontend .alert-dark .alert-link {
  color: #0e0e16;
}
@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
body.building-frontend .progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.675rem;
  background-color: #eeeef4;
  border-radius: 0.25rem;
}
body.building-frontend .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ed6524;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .progress-bar {
    transition: none;
  }
}
body.building-frontend .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;
}
body.building-frontend .progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}
body.building-frontend .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
body.building-frontend .list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
body.building-frontend .list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
body.building-frontend .list-group-item-action {
  width: 100%;
  color: #7f84b1;
  text-align: inherit;
}
body.building-frontend .list-group-item-action:hover, body.building-frontend .list-group-item-action:focus {
  z-index: 1;
  color: #7f84b1;
  text-decoration: none;
  background-color: white;
}
body.building-frontend .list-group-item-action:active {
  color: #1c1e2e;
  background-color: #eeeef4;
}
body.building-frontend .list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #1c1e2e;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
body.building-frontend .list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
body.building-frontend .list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
body.building-frontend .list-group-item.disabled, body.building-frontend .list-group-item:disabled {
  color: #9ea3c4;
  pointer-events: none;
  background-color: #fff;
}
body.building-frontend .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #ed6524;
  border-color: #ed6524;
}
body.building-frontend .list-group-item + body.building-frontend .list-group-item {
  border-top-width: 0;
}
body.building-frontend .list-group-item + body.building-frontend .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
body.building-frontend .list-group-horizontal {
  flex-direction: row;
}
body.building-frontend .list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
body.building-frontend .list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
body.building-frontend .list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
body.building-frontend .list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
body.building-frontend .list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width: 576px) {
  body.building-frontend .list-group-horizontal-sm {
    flex-direction: row;
  }
  body.building-frontend .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  body.building-frontend .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  body.building-frontend .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.building-frontend .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  body.building-frontend .list-group-horizontal-md {
    flex-direction: row;
  }
  body.building-frontend .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  body.building-frontend .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  body.building-frontend .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.building-frontend .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  body.building-frontend .list-group-horizontal-lg {
    flex-direction: row;
  }
  body.building-frontend .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  body.building-frontend .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  body.building-frontend .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.building-frontend .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .list-group-horizontal-xl {
    flex-direction: row;
  }
  body.building-frontend .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  body.building-frontend .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  body.building-frontend .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.building-frontend .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .list-group-horizontal-xxl {
    flex-direction: row;
  }
  body.building-frontend .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  body.building-frontend .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  body.building-frontend .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  body.building-frontend .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  body.building-frontend .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
body.building-frontend .list-group-flush {
  border-radius: 0;
}
body.building-frontend .list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
body.building-frontend .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
body.building-frontend .list-group-item-primary {
  color: #8e3d16;
  background-color: #fbe0d3;
}
body.building-frontend .list-group-item-primary.list-group-item-action:hover, body.building-frontend .list-group-item-primary.list-group-item-action:focus {
  color: #8e3d16;
  background-color: #e2cabe;
}
body.building-frontend .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #8e3d16;
  border-color: #8e3d16;
}
body.building-frontend .list-group-item-secondary {
  color: #2e314b;
  background-color: #dbdce5;
}
body.building-frontend .list-group-item-secondary.list-group-item-action:hover, body.building-frontend .list-group-item-secondary.list-group-item-action:focus {
  color: #2e314b;
  background-color: #c5c6ce;
}
body.building-frontend .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #2e314b;
  border-color: #2e314b;
}
body.building-frontend .list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
body.building-frontend .list-group-item-success.list-group-item-action:hover, body.building-frontend .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
body.building-frontend .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}
body.building-frontend .list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
body.building-frontend .list-group-item-info.list-group-item-action:hover, body.building-frontend .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
body.building-frontend .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}
body.building-frontend .list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
body.building-frontend .list-group-item-warning.list-group-item-action:hover, body.building-frontend .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
body.building-frontend .list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}
body.building-frontend .list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
body.building-frontend .list-group-item-danger.list-group-item-action:hover, body.building-frontend .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
body.building-frontend .list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}
body.building-frontend .list-group-item-light {
  color: #666666;
  background-color: white;
}
body.building-frontend .list-group-item-light.list-group-item-action:hover, body.building-frontend .list-group-item-light.list-group-item-action:focus {
  color: #666666;
  background-color: #e6e6e6;
}
body.building-frontend .list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #666666;
  border-color: #666666;
}
body.building-frontend .list-group-item-dark {
  color: #11121c;
  background-color: #d2d2d5;
}
body.building-frontend .list-group-item-dark.list-group-item-action:hover, body.building-frontend .list-group-item-dark.list-group-item-action:focus {
  color: #11121c;
  background-color: #bdbdc0;
}
body.building-frontend .list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #11121c;
  border-color: #11121c;
}
body.building-frontend .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;
}
body.building-frontend .btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
body.building-frontend .btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(237, 101, 36, 0.25);
  opacity: 1;
}
body.building-frontend .btn-close:disabled, body.building-frontend .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}
body.building-frontend .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
body.building-frontend .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;
}
body.building-frontend .toast:not(.showing):not(.show) {
  opacity: 0;
}
body.building-frontend .toast.hide {
  display: none;
}
body.building-frontend .toast-container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
body.building-frontend .toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}
body.building-frontend .toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #9ea3c4;
  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);
}
body.building-frontend .toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}
body.building-frontend .toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}
body.building-frontend .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
body.building-frontend .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade body.building-frontend .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade body.building-frontend .modal-dialog {
    transition: none;
  }
}
.modal.show body.building-frontend .modal-dialog {
  transform: none;
}
.modal.modal-static body.building-frontend .modal-dialog {
  transform: scale(1.02);
}
body.building-frontend .modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
body.building-frontend .modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
body.building-frontend .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
body.building-frontend .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
body.building-frontend .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;
}
body.building-frontend .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
body.building-frontend .modal-backdrop.fade {
  opacity: 0;
}
body.building-frontend .modal-backdrop.show {
  opacity: 0.5;
}
body.building-frontend .modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dedfeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
body.building-frontend .modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
body.building-frontend .modal-title {
  margin-bottom: 0;
  line-height: 1.6;
}
body.building-frontend .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
body.building-frontend .modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dedfeb;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
body.building-frontend .modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  body.building-frontend .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  body.building-frontend .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  body.building-frontend .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  body.building-frontend .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  body.building-frontend .modal-lg,
body.building-frontend .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .modal-xl {
    max-width: 1140px;
  }
}
body.building-frontend .modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
body.building-frontend .modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
body.building-frontend .modal-fullscreen .modal-header {
  border-radius: 0;
}
body.building-frontend .modal-fullscreen .modal-body {
  overflow-y: auto;
}
body.building-frontend .modal-fullscreen .modal-footer {
  border-radius: 0;
}
@media (max-width: 575.98px) {
  body.building-frontend .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  body.building-frontend .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  body.building-frontend .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  body.building-frontend .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  body.building-frontend .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  body.building-frontend .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  body.building-frontend .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  body.building-frontend .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  body.building-frontend .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  body.building-frontend .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  body.building-frontend .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  body.building-frontend .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  body.building-frontend .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  body.building-frontend .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  body.building-frontend .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  body.building-frontend .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
body.building-frontend .tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  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.7875rem;
  word-wrap: break-word;
  opacity: 0;
}
body.building-frontend .tooltip.show {
  opacity: 0.9;
}
body.building-frontend .tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
body.building-frontend .tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
body.building-frontend .bs-tooltip-top, body.building-frontend .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
body.building-frontend .bs-tooltip-top .tooltip-arrow, body.building-frontend .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
body.building-frontend .bs-tooltip-top .tooltip-arrow::before, body.building-frontend .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
body.building-frontend .bs-tooltip-end, body.building-frontend .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
body.building-frontend .bs-tooltip-end .tooltip-arrow, body.building-frontend .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
body.building-frontend .bs-tooltip-end .tooltip-arrow::before, body.building-frontend .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;
}
body.building-frontend .bs-tooltip-bottom, body.building-frontend .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
body.building-frontend .bs-tooltip-bottom .tooltip-arrow, body.building-frontend .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
body.building-frontend .bs-tooltip-bottom .tooltip-arrow::before, body.building-frontend .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
body.building-frontend .bs-tooltip-start, body.building-frontend .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
body.building-frontend .bs-tooltip-start .tooltip-arrow, body.building-frontend .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
body.building-frontend .bs-tooltip-start .tooltip-arrow::before, body.building-frontend .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;
}
body.building-frontend .tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
body.building-frontend .popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  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.7875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
body.building-frontend .popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
body.building-frontend .popover .popover-arrow::before, body.building-frontend .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
body.building-frontend .bs-popover-top > .popover-arrow, body.building-frontend .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
body.building-frontend .bs-popover-top > .popover-arrow::before, body.building-frontend .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);
}
body.building-frontend .bs-popover-top > .popover-arrow::after, body.building-frontend .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}
body.building-frontend .bs-popover-end > .popover-arrow, body.building-frontend .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
body.building-frontend .bs-popover-end > .popover-arrow::before, body.building-frontend .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);
}
body.building-frontend .bs-popover-end > .popover-arrow::after, body.building-frontend .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;
}
body.building-frontend .bs-popover-bottom > .popover-arrow, body.building-frontend .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
body.building-frontend .bs-popover-bottom > .popover-arrow::before, body.building-frontend .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);
}
body.building-frontend .bs-popover-bottom > .popover-arrow::after, body.building-frontend .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;
}
body.building-frontend .bs-popover-bottom .popover-header::before, body.building-frontend .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 #f0f0f0;
}
body.building-frontend .bs-popover-start > .popover-arrow, body.building-frontend .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
body.building-frontend .bs-popover-start > .popover-arrow::before, body.building-frontend .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);
}
body.building-frontend .bs-popover-start > .popover-arrow::after, body.building-frontend .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;
}
body.building-frontend .popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  background-color: #f0f0f0;
  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);
}
body.building-frontend .popover-header:empty {
  display: none;
}
body.building-frontend .popover-body {
  padding: 1rem 1rem;
  color: #1c1e2e;
}
body.building-frontend .carousel {
  position: relative;
}
body.building-frontend .carousel.pointer-event {
  touch-action: pan-y;
}
body.building-frontend .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
body.building-frontend .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
body.building-frontend .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .carousel-item {
    transition: none;
  }
}
body.building-frontend .carousel-item.active,
body.building-frontend .carousel-item-next,
body.building-frontend .carousel-item-prev {
  display: block;
}
body.building-frontend .carousel-item-next:not(.carousel-item-start),
body.building-frontend .active.carousel-item-end {
  transform: translateX(100%);
}
body.building-frontend .carousel-item-prev:not(.carousel-item-end),
body.building-frontend .active.carousel-item-start {
  transform: translateX(-100%);
}
body.building-frontend .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
body.building-frontend .carousel-fade .carousel-item.active,
body.building-frontend .carousel-fade .carousel-item-next.carousel-item-start,
body.building-frontend .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
body.building-frontend .carousel-fade .active.carousel-item-start,
body.building-frontend .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .carousel-fade .active.carousel-item-start,
body.building-frontend .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
body.building-frontend .carousel-control-prev,
body.building-frontend .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) {
  body.building-frontend .carousel-control-prev,
body.building-frontend .carousel-control-next {
    transition: none;
  }
}
body.building-frontend .carousel-control-prev:hover, body.building-frontend .carousel-control-prev:focus,
body.building-frontend .carousel-control-next:hover,
body.building-frontend .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
body.building-frontend .carousel-control-prev {
  left: 0;
}
body.building-frontend .carousel-control-next {
  right: 0;
}
body.building-frontend .carousel-control-prev-icon,
body.building-frontend .carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
body.building-frontend .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");
}
body.building-frontend .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");
}
body.building-frontend .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;
}
body.building-frontend .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) {
  body.building-frontend .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
body.building-frontend .carousel-indicators .active {
  opacity: 1;
}
body.building-frontend .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
body.building-frontend .carousel-dark .carousel-control-prev-icon,
body.building-frontend .carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
body.building-frontend .carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
body.building-frontend .carousel-dark .carousel-caption {
  color: #000;
}
@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
body.building-frontend .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%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}
body.building-frontend .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
body.building-frontend .spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}
body.building-frontend .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .spinner-border,
body.building-frontend .spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
body.building-frontend .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) {
  body.building-frontend .offcanvas {
    transition: none;
  }
}
body.building-frontend .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
body.building-frontend .offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}
body.building-frontend .offcanvas-title {
  margin-bottom: 0;
  line-height: 1.6;
}
body.building-frontend .offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
body.building-frontend .offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}
body.building-frontend .offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}
body.building-frontend .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%);
}
body.building-frontend .offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}
body.building-frontend .offcanvas.show {
  transform: none;
}
body.building-frontend .clearfix::after {
  display: block;
  clear: both;
  content: "";
}
body.building-frontend .link-primary {
  color: #ed6524;
}
body.building-frontend .link-primary:hover, body.building-frontend .link-primary:focus {
  color: #f18450;
}
body.building-frontend .link-secondary {
  color: #4c527d;
}
body.building-frontend .link-secondary:hover, body.building-frontend .link-secondary:focus {
  color: #3d4264;
}
body.building-frontend .link-success {
  color: #198754;
}
body.building-frontend .link-success:hover, body.building-frontend .link-success:focus {
  color: #146c43;
}
body.building-frontend .link-info {
  color: #0dcaf0;
}
body.building-frontend .link-info:hover, body.building-frontend .link-info:focus {
  color: #3dd5f3;
}
body.building-frontend .link-warning {
  color: #ffc107;
}
body.building-frontend .link-warning:hover, body.building-frontend .link-warning:focus {
  color: #ffcd39;
}
body.building-frontend .link-danger {
  color: #dc3545;
}
body.building-frontend .link-danger:hover, body.building-frontend .link-danger:focus {
  color: #b02a37;
}
body.building-frontend .link-light {
  color: white;
}
body.building-frontend .link-light:hover, body.building-frontend .link-light:focus {
  color: white;
}
body.building-frontend .link-dark {
  color: #1c1e2e;
}
body.building-frontend .link-dark:hover, body.building-frontend .link-dark:focus {
  color: #161825;
}
body.building-frontend .ratio {
  position: relative;
  width: 100%;
}
body.building-frontend .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
body.building-frontend .ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.building-frontend .ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
body.building-frontend .ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
body.building-frontend .ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
body.building-frontend .ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
body.building-frontend .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
body.building-frontend .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
body.building-frontend .sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  body.building-frontend .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  body.building-frontend .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  body.building-frontend .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
body.building-frontend .visually-hidden,
body.building-frontend .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;
}
body.building-frontend .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
body.building-frontend .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.building-frontend .align-baseline {
  vertical-align: baseline !important;
}
body.building-frontend .align-top {
  vertical-align: top !important;
}
body.building-frontend .align-middle {
  vertical-align: middle !important;
}
body.building-frontend .align-bottom {
  vertical-align: bottom !important;
}
body.building-frontend .align-text-bottom {
  vertical-align: text-bottom !important;
}
body.building-frontend .align-text-top {
  vertical-align: text-top !important;
}
body.building-frontend .float-start {
  float: left !important;
}
body.building-frontend .float-end {
  float: right !important;
}
body.building-frontend .float-none {
  float: none !important;
}
body.building-frontend .overflow-auto {
  overflow: auto !important;
}
body.building-frontend .overflow-hidden {
  overflow: hidden !important;
}
body.building-frontend .overflow-visible {
  overflow: visible !important;
}
body.building-frontend .overflow-scroll {
  overflow: scroll !important;
}
body.building-frontend .d-inline {
  display: inline !important;
}
body.building-frontend .d-inline-block {
  display: inline-block !important;
}
body.building-frontend .d-block {
  display: block !important;
}
body.building-frontend .d-grid {
  display: grid !important;
}
body.building-frontend .d-table {
  display: table !important;
}
body.building-frontend .d-table-row {
  display: table-row !important;
}
body.building-frontend .d-table-cell {
  display: table-cell !important;
}
body.building-frontend .d-flex {
  display: flex !important;
}
body.building-frontend .d-inline-flex {
  display: inline-flex !important;
}
body.building-frontend .d-none {
  display: none !important;
}
body.building-frontend .shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
body.building-frontend .shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
body.building-frontend .shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
body.building-frontend .shadow-none {
  box-shadow: none !important;
}
body.building-frontend .position-static {
  position: static !important;
}
body.building-frontend .position-relative {
  position: relative !important;
}
body.building-frontend .position-absolute {
  position: absolute !important;
}
body.building-frontend .position-fixed {
  position: fixed !important;
}
body.building-frontend .position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
body.building-frontend .top-0 {
  top: 0 !important;
}
body.building-frontend .top-50 {
  top: 50% !important;
}
body.building-frontend .top-100 {
  top: 100% !important;
}
body.building-frontend .bottom-0 {
  bottom: 0 !important;
}
body.building-frontend .bottom-50 {
  bottom: 50% !important;
}
body.building-frontend .bottom-100 {
  bottom: 100% !important;
}
body.building-frontend .start-0 {
  left: 0 !important;
}
body.building-frontend .start-50 {
  left: 50% !important;
}
body.building-frontend .start-100 {
  left: 100% !important;
}
body.building-frontend .end-0 {
  right: 0 !important;
}
body.building-frontend .end-50 {
  right: 50% !important;
}
body.building-frontend .end-100 {
  right: 100% !important;
}
body.building-frontend .translate-middle {
  transform: translate(-50%, -50%) !important;
}
body.building-frontend .translate-middle-x {
  transform: translateX(-50%) !important;
}
body.building-frontend .translate-middle-y {
  transform: translateY(-50%) !important;
}
body.building-frontend .border {
  border: 1px solid #dedfeb !important;
}
body.building-frontend .border-0 {
  border: 0 !important;
}
body.building-frontend .border-top {
  border-top: 1px solid #dedfeb !important;
}
body.building-frontend .border-top-0 {
  border-top: 0 !important;
}
body.building-frontend .border-end {
  border-right: 1px solid #dedfeb !important;
}
body.building-frontend .border-end-0 {
  border-right: 0 !important;
}
body.building-frontend .border-bottom {
  border-bottom: 1px solid #dedfeb !important;
}
body.building-frontend .border-bottom-0 {
  border-bottom: 0 !important;
}
body.building-frontend .border-start {
  border-left: 1px solid #dedfeb !important;
}
body.building-frontend .border-start-0 {
  border-left: 0 !important;
}
body.building-frontend .border-primary {
  border-color: #ed6524 !important;
}
body.building-frontend .border-secondary {
  border-color: #4c527d !important;
}
body.building-frontend .border-success {
  border-color: #198754 !important;
}
body.building-frontend .border-info {
  border-color: #0dcaf0 !important;
}
body.building-frontend .border-warning {
  border-color: #ffc107 !important;
}
body.building-frontend .border-danger {
  border-color: #dc3545 !important;
}
body.building-frontend .border-light {
  border-color: white !important;
}
body.building-frontend .border-dark {
  border-color: #1c1e2e !important;
}
body.building-frontend .border-white {
  border-color: #fff !important;
}
body.building-frontend .border-1 {
  border-width: 1px !important;
}
body.building-frontend .border-2 {
  border-width: 2px !important;
}
body.building-frontend .border-3 {
  border-width: 3px !important;
}
body.building-frontend .border-4 {
  border-width: 4px !important;
}
body.building-frontend .border-5 {
  border-width: 5px !important;
}
body.building-frontend .w-25 {
  width: 25% !important;
}
body.building-frontend .w-50 {
  width: 50% !important;
}
body.building-frontend .w-75 {
  width: 75% !important;
}
body.building-frontend .w-100 {
  width: 100% !important;
}
body.building-frontend .w-auto {
  width: auto !important;
}
body.building-frontend .mw-100 {
  max-width: 100% !important;
}
body.building-frontend .vw-100 {
  width: 100vw !important;
}
body.building-frontend .min-vw-100 {
  min-width: 100vw !important;
}
body.building-frontend .h-25 {
  height: 25% !important;
}
body.building-frontend .h-50 {
  height: 50% !important;
}
body.building-frontend .h-75 {
  height: 75% !important;
}
body.building-frontend .h-100 {
  height: 100% !important;
}
body.building-frontend .h-auto {
  height: auto !important;
}
body.building-frontend .mh-100 {
  max-height: 100% !important;
}
body.building-frontend .vh-100 {
  height: 100vh !important;
}
body.building-frontend .min-vh-100 {
  min-height: 100vh !important;
}
body.building-frontend .flex-fill {
  flex: 1 1 auto !important;
}
body.building-frontend .flex-row {
  flex-direction: row !important;
}
body.building-frontend .flex-column {
  flex-direction: column !important;
}
body.building-frontend .flex-row-reverse {
  flex-direction: row-reverse !important;
}
body.building-frontend .flex-column-reverse {
  flex-direction: column-reverse !important;
}
body.building-frontend .flex-grow-0 {
  flex-grow: 0 !important;
}
body.building-frontend .flex-grow-1 {
  flex-grow: 1 !important;
}
body.building-frontend .flex-shrink-0 {
  flex-shrink: 0 !important;
}
body.building-frontend .flex-shrink-1 {
  flex-shrink: 1 !important;
}
body.building-frontend .flex-wrap {
  flex-wrap: wrap !important;
}
body.building-frontend .flex-nowrap {
  flex-wrap: nowrap !important;
}
body.building-frontend .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
body.building-frontend .gap-0 {
  gap: 0 !important;
}
body.building-frontend .gap-1 {
  gap: 0.25rem !important;
}
body.building-frontend .gap-2 {
  gap: 0.5rem !important;
}
body.building-frontend .gap-3 {
  gap: 1rem !important;
}
body.building-frontend .gap-4 {
  gap: 1.5rem !important;
}
body.building-frontend .gap-5 {
  gap: 3rem !important;
}
body.building-frontend .justify-content-start {
  justify-content: flex-start !important;
}
body.building-frontend .justify-content-end {
  justify-content: flex-end !important;
}
body.building-frontend .justify-content-center {
  justify-content: center !important;
}
body.building-frontend .justify-content-between {
  justify-content: space-between !important;
}
body.building-frontend .justify-content-around {
  justify-content: space-around !important;
}
body.building-frontend .justify-content-evenly {
  justify-content: space-evenly !important;
}
body.building-frontend .align-items-start {
  align-items: flex-start !important;
}
body.building-frontend .align-items-end {
  align-items: flex-end !important;
}
body.building-frontend .align-items-center {
  align-items: center !important;
}
body.building-frontend .align-items-baseline {
  align-items: baseline !important;
}
body.building-frontend .align-items-stretch {
  align-items: stretch !important;
}
body.building-frontend .align-content-start {
  align-content: flex-start !important;
}
body.building-frontend .align-content-end {
  align-content: flex-end !important;
}
body.building-frontend .align-content-center {
  align-content: center !important;
}
body.building-frontend .align-content-between {
  align-content: space-between !important;
}
body.building-frontend .align-content-around {
  align-content: space-around !important;
}
body.building-frontend .align-content-stretch {
  align-content: stretch !important;
}
body.building-frontend .align-self-auto {
  align-self: auto !important;
}
body.building-frontend .align-self-start {
  align-self: flex-start !important;
}
body.building-frontend .align-self-end {
  align-self: flex-end !important;
}
body.building-frontend .align-self-center {
  align-self: center !important;
}
body.building-frontend .align-self-baseline {
  align-self: baseline !important;
}
body.building-frontend .align-self-stretch {
  align-self: stretch !important;
}
body.building-frontend .order-first {
  order: -1 !important;
}
body.building-frontend .order-0 {
  order: 0 !important;
}
body.building-frontend .order-1 {
  order: 1 !important;
}
body.building-frontend .order-2 {
  order: 2 !important;
}
body.building-frontend .order-3 {
  order: 3 !important;
}
body.building-frontend .order-4 {
  order: 4 !important;
}
body.building-frontend .order-5 {
  order: 5 !important;
}
body.building-frontend .order-last {
  order: 6 !important;
}
body.building-frontend .m-0 {
  margin: 0 !important;
}
body.building-frontend .m-1 {
  margin: 0.25rem !important;
}
body.building-frontend .m-2 {
  margin: 0.5rem !important;
}
body.building-frontend .m-3 {
  margin: 1rem !important;
}
body.building-frontend .m-4 {
  margin: 1.5rem !important;
}
body.building-frontend .m-5 {
  margin: 3rem !important;
}
body.building-frontend .m-auto {
  margin: auto !important;
}
body.building-frontend .mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
body.building-frontend .mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
body.building-frontend .mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
body.building-frontend .mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
body.building-frontend .mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
body.building-frontend .mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
body.building-frontend .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
body.building-frontend .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.building-frontend .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
body.building-frontend .my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
body.building-frontend .my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
body.building-frontend .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
body.building-frontend .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
body.building-frontend .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
body.building-frontend .mt-0 {
  margin-top: 0 !important;
}
body.building-frontend .mt-1 {
  margin-top: 0.25rem !important;
}
body.building-frontend .mt-2 {
  margin-top: 0.5rem !important;
}
body.building-frontend .mt-3 {
  margin-top: 1rem !important;
}
body.building-frontend .mt-4 {
  margin-top: 1.5rem !important;
}
body.building-frontend .mt-5 {
  margin-top: 3rem !important;
}
body.building-frontend .mt-auto {
  margin-top: auto !important;
}
body.building-frontend .me-0 {
  margin-right: 0 !important;
}
body.building-frontend .me-1 {
  margin-right: 0.25rem !important;
}
body.building-frontend .me-2 {
  margin-right: 0.5rem !important;
}
body.building-frontend .me-3 {
  margin-right: 1rem !important;
}
body.building-frontend .me-4 {
  margin-right: 1.5rem !important;
}
body.building-frontend .me-5 {
  margin-right: 3rem !important;
}
body.building-frontend .me-auto {
  margin-right: auto !important;
}
body.building-frontend .mb-0 {
  margin-bottom: 0 !important;
}
body.building-frontend .mb-1 {
  margin-bottom: 0.25rem !important;
}
body.building-frontend .mb-2 {
  margin-bottom: 0.5rem !important;
}
body.building-frontend .mb-3 {
  margin-bottom: 1rem !important;
}
body.building-frontend .mb-4 {
  margin-bottom: 1.5rem !important;
}
body.building-frontend .mb-5 {
  margin-bottom: 3rem !important;
}
body.building-frontend .mb-auto {
  margin-bottom: auto !important;
}
body.building-frontend .ms-0 {
  margin-left: 0 !important;
}
body.building-frontend .ms-1 {
  margin-left: 0.25rem !important;
}
body.building-frontend .ms-2 {
  margin-left: 0.5rem !important;
}
body.building-frontend .ms-3 {
  margin-left: 1rem !important;
}
body.building-frontend .ms-4 {
  margin-left: 1.5rem !important;
}
body.building-frontend .ms-5 {
  margin-left: 3rem !important;
}
body.building-frontend .ms-auto {
  margin-left: auto !important;
}
body.building-frontend .p-0 {
  padding: 0 !important;
}
body.building-frontend .p-1 {
  padding: 0.25rem !important;
}
body.building-frontend .p-2 {
  padding: 0.5rem !important;
}
body.building-frontend .p-3 {
  padding: 1rem !important;
}
body.building-frontend .p-4 {
  padding: 1.5rem !important;
}
body.building-frontend .p-5 {
  padding: 3rem !important;
}
body.building-frontend .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
body.building-frontend .px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
body.building-frontend .px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
body.building-frontend .px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
body.building-frontend .px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
body.building-frontend .px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
body.building-frontend .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.building-frontend .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
body.building-frontend .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
body.building-frontend .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
body.building-frontend .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
body.building-frontend .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
body.building-frontend .pt-0 {
  padding-top: 0 !important;
}
body.building-frontend .pt-1 {
  padding-top: 0.25rem !important;
}
body.building-frontend .pt-2 {
  padding-top: 0.5rem !important;
}
body.building-frontend .pt-3 {
  padding-top: 1rem !important;
}
body.building-frontend .pt-4 {
  padding-top: 1.5rem !important;
}
body.building-frontend .pt-5 {
  padding-top: 3rem !important;
}
body.building-frontend .pe-0 {
  padding-right: 0 !important;
}
body.building-frontend .pe-1 {
  padding-right: 0.25rem !important;
}
body.building-frontend .pe-2 {
  padding-right: 0.5rem !important;
}
body.building-frontend .pe-3 {
  padding-right: 1rem !important;
}
body.building-frontend .pe-4 {
  padding-right: 1.5rem !important;
}
body.building-frontend .pe-5 {
  padding-right: 3rem !important;
}
body.building-frontend .pb-0 {
  padding-bottom: 0 !important;
}
body.building-frontend .pb-1 {
  padding-bottom: 0.25rem !important;
}
body.building-frontend .pb-2 {
  padding-bottom: 0.5rem !important;
}
body.building-frontend .pb-3 {
  padding-bottom: 1rem !important;
}
body.building-frontend .pb-4 {
  padding-bottom: 1.5rem !important;
}
body.building-frontend .pb-5 {
  padding-bottom: 3rem !important;
}
body.building-frontend .ps-0 {
  padding-left: 0 !important;
}
body.building-frontend .ps-1 {
  padding-left: 0.25rem !important;
}
body.building-frontend .ps-2 {
  padding-left: 0.5rem !important;
}
body.building-frontend .ps-3 {
  padding-left: 1rem !important;
}
body.building-frontend .ps-4 {
  padding-left: 1.5rem !important;
}
body.building-frontend .ps-5 {
  padding-left: 3rem !important;
}
body.building-frontend .font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
body.building-frontend .fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important;
}
body.building-frontend .fs-2 {
  font-size: calc(1.305rem + 0.66vw) !important;
}
body.building-frontend .fs-3 {
  font-size: calc(1.2825rem + 0.39vw) !important;
}
body.building-frontend .fs-4 {
  font-size: calc(1.26rem + 0.12vw) !important;
}
body.building-frontend .fs-5 {
  font-size: 1.125rem !important;
}
body.building-frontend .fs-6 {
  font-size: 0.9rem !important;
}
body.building-frontend .fst-italic {
  font-style: italic !important;
}
body.building-frontend .fst-normal {
  font-style: normal !important;
}
body.building-frontend .fw-light {
  font-weight: 300 !important;
}
body.building-frontend .fw-lighter {
  font-weight: lighter !important;
}
body.building-frontend .fw-normal {
  font-weight: 400 !important;
}
body.building-frontend .fw-bold {
  font-weight: 700 !important;
}
body.building-frontend .fw-bolder {
  font-weight: bolder !important;
}
body.building-frontend .lh-1 {
  line-height: 1 !important;
}
body.building-frontend .lh-sm {
  line-height: 1.25 !important;
}
body.building-frontend .lh-base {
  line-height: 1.6 !important;
}
body.building-frontend .lh-lg {
  line-height: 2 !important;
}
body.building-frontend .text-start {
  text-align: left !important;
}
body.building-frontend .text-end {
  text-align: right !important;
}
body.building-frontend .text-center {
  text-align: center !important;
}
body.building-frontend .text-decoration-none {
  text-decoration: none !important;
}
body.building-frontend .text-decoration-underline {
  text-decoration: underline !important;
}
body.building-frontend .text-decoration-line-through {
  text-decoration: line-through !important;
}
body.building-frontend .text-lowercase {
  text-transform: lowercase !important;
}
body.building-frontend .text-uppercase {
  text-transform: uppercase !important;
}
body.building-frontend .text-capitalize {
  text-transform: capitalize !important;
}
body.building-frontend .text-wrap {
  white-space: normal !important;
}
body.building-frontend .text-nowrap {
  white-space: nowrap !important;
}
body.building-frontend .text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
body.building-frontend .text-primary {
  color: #ed6524 !important;
}
body.building-frontend .text-secondary {
  color: #4c527d !important;
}
body.building-frontend .text-success {
  color: #198754 !important;
}
body.building-frontend .text-info {
  color: #0dcaf0 !important;
}
body.building-frontend .text-warning {
  color: #ffc107 !important;
}
body.building-frontend .text-danger {
  color: #dc3545 !important;
}
body.building-frontend .text-light {
  color: white !important;
}
body.building-frontend .text-dark {
  color: #1c1e2e !important;
}
body.building-frontend .text-white {
  color: #fff !important;
}
body.building-frontend .text-body {
  color: #1c1e2e !important;
}
body.building-frontend .text-muted {
  color: #9ea3c4 !important;
}
body.building-frontend .text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
body.building-frontend .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
body.building-frontend .text-reset {
  color: inherit !important;
}
body.building-frontend .bg-primary {
  background-color: #ed6524 !important;
}
body.building-frontend .bg-secondary {
  background-color: #4c527d !important;
}
body.building-frontend .bg-success {
  background-color: #198754 !important;
}
body.building-frontend .bg-info {
  background-color: #0dcaf0 !important;
}
body.building-frontend .bg-warning {
  background-color: #ffc107 !important;
}
body.building-frontend .bg-danger {
  background-color: #dc3545 !important;
}
body.building-frontend .bg-light {
  background-color: white !important;
}
body.building-frontend .bg-dark {
  background-color: #1c1e2e !important;
}
body.building-frontend .bg-body {
  background-color: #f8fafc !important;
}
body.building-frontend .bg-white {
  background-color: #fff !important;
}
body.building-frontend .bg-transparent {
  background-color: transparent !important;
}
body.building-frontend .bg-gradient {
  background-image: var(--bs-gradient) !important;
}
body.building-frontend .user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}
body.building-frontend .user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}
body.building-frontend .user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}
body.building-frontend .pe-none {
  pointer-events: none !important;
}
body.building-frontend .pe-auto {
  pointer-events: auto !important;
}
body.building-frontend .rounded {
  border-radius: 0.25rem !important;
}
body.building-frontend .rounded-0 {
  border-radius: 0 !important;
}
body.building-frontend .rounded-1 {
  border-radius: 0.2rem !important;
}
body.building-frontend .rounded-2 {
  border-radius: 0.25rem !important;
}
body.building-frontend .rounded-3 {
  border-radius: 0.3rem !important;
}
body.building-frontend .rounded-circle {
  border-radius: 50% !important;
}
body.building-frontend .rounded-pill {
  border-radius: 50rem !important;
}
body.building-frontend .rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
body.building-frontend .rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
body.building-frontend .rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
body.building-frontend .rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}
body.building-frontend .visible {
  visibility: visible !important;
}
body.building-frontend .invisible {
  visibility: hidden !important;
}
@media (min-width: 576px) {
  body.building-frontend .float-sm-start {
    float: left !important;
  }
  body.building-frontend .float-sm-end {
    float: right !important;
  }
  body.building-frontend .float-sm-none {
    float: none !important;
  }
  body.building-frontend .d-sm-inline {
    display: inline !important;
  }
  body.building-frontend .d-sm-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-sm-block {
    display: block !important;
  }
  body.building-frontend .d-sm-grid {
    display: grid !important;
  }
  body.building-frontend .d-sm-table {
    display: table !important;
  }
  body.building-frontend .d-sm-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-sm-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-sm-flex {
    display: flex !important;
  }
  body.building-frontend .d-sm-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-sm-none {
    display: none !important;
  }
  body.building-frontend .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  body.building-frontend .flex-sm-row {
    flex-direction: row !important;
  }
  body.building-frontend .flex-sm-column {
    flex-direction: column !important;
  }
  body.building-frontend .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.building-frontend .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.building-frontend .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  body.building-frontend .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  body.building-frontend .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.building-frontend .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.building-frontend .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  body.building-frontend .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  body.building-frontend .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.building-frontend .gap-sm-0 {
    gap: 0 !important;
  }
  body.building-frontend .gap-sm-1 {
    gap: 0.25rem !important;
  }
  body.building-frontend .gap-sm-2 {
    gap: 0.5rem !important;
  }
  body.building-frontend .gap-sm-3 {
    gap: 1rem !important;
  }
  body.building-frontend .gap-sm-4 {
    gap: 1.5rem !important;
  }
  body.building-frontend .gap-sm-5 {
    gap: 3rem !important;
  }
  body.building-frontend .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  body.building-frontend .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  body.building-frontend .justify-content-sm-center {
    justify-content: center !important;
  }
  body.building-frontend .justify-content-sm-between {
    justify-content: space-between !important;
  }
  body.building-frontend .justify-content-sm-around {
    justify-content: space-around !important;
  }
  body.building-frontend .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  body.building-frontend .align-items-sm-start {
    align-items: flex-start !important;
  }
  body.building-frontend .align-items-sm-end {
    align-items: flex-end !important;
  }
  body.building-frontend .align-items-sm-center {
    align-items: center !important;
  }
  body.building-frontend .align-items-sm-baseline {
    align-items: baseline !important;
  }
  body.building-frontend .align-items-sm-stretch {
    align-items: stretch !important;
  }
  body.building-frontend .align-content-sm-start {
    align-content: flex-start !important;
  }
  body.building-frontend .align-content-sm-end {
    align-content: flex-end !important;
  }
  body.building-frontend .align-content-sm-center {
    align-content: center !important;
  }
  body.building-frontend .align-content-sm-between {
    align-content: space-between !important;
  }
  body.building-frontend .align-content-sm-around {
    align-content: space-around !important;
  }
  body.building-frontend .align-content-sm-stretch {
    align-content: stretch !important;
  }
  body.building-frontend .align-self-sm-auto {
    align-self: auto !important;
  }
  body.building-frontend .align-self-sm-start {
    align-self: flex-start !important;
  }
  body.building-frontend .align-self-sm-end {
    align-self: flex-end !important;
  }
  body.building-frontend .align-self-sm-center {
    align-self: center !important;
  }
  body.building-frontend .align-self-sm-baseline {
    align-self: baseline !important;
  }
  body.building-frontend .align-self-sm-stretch {
    align-self: stretch !important;
  }
  body.building-frontend .order-sm-first {
    order: -1 !important;
  }
  body.building-frontend .order-sm-0 {
    order: 0 !important;
  }
  body.building-frontend .order-sm-1 {
    order: 1 !important;
  }
  body.building-frontend .order-sm-2 {
    order: 2 !important;
  }
  body.building-frontend .order-sm-3 {
    order: 3 !important;
  }
  body.building-frontend .order-sm-4 {
    order: 4 !important;
  }
  body.building-frontend .order-sm-5 {
    order: 5 !important;
  }
  body.building-frontend .order-sm-last {
    order: 6 !important;
  }
  body.building-frontend .m-sm-0 {
    margin: 0 !important;
  }
  body.building-frontend .m-sm-1 {
    margin: 0.25rem !important;
  }
  body.building-frontend .m-sm-2 {
    margin: 0.5rem !important;
  }
  body.building-frontend .m-sm-3 {
    margin: 1rem !important;
  }
  body.building-frontend .m-sm-4 {
    margin: 1.5rem !important;
  }
  body.building-frontend .m-sm-5 {
    margin: 3rem !important;
  }
  body.building-frontend .m-sm-auto {
    margin: auto !important;
  }
  body.building-frontend .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.building-frontend .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.building-frontend .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.building-frontend .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.building-frontend .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.building-frontend .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.building-frontend .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.building-frontend .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.building-frontend .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.building-frontend .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.building-frontend .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.building-frontend .mt-sm-0 {
    margin-top: 0 !important;
  }
  body.building-frontend .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  body.building-frontend .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  body.building-frontend .mt-sm-3 {
    margin-top: 1rem !important;
  }
  body.building-frontend .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  body.building-frontend .mt-sm-5 {
    margin-top: 3rem !important;
  }
  body.building-frontend .mt-sm-auto {
    margin-top: auto !important;
  }
  body.building-frontend .me-sm-0 {
    margin-right: 0 !important;
  }
  body.building-frontend .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  body.building-frontend .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  body.building-frontend .me-sm-3 {
    margin-right: 1rem !important;
  }
  body.building-frontend .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  body.building-frontend .me-sm-5 {
    margin-right: 3rem !important;
  }
  body.building-frontend .me-sm-auto {
    margin-right: auto !important;
  }
  body.building-frontend .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  body.building-frontend .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  body.building-frontend .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  body.building-frontend .mb-sm-auto {
    margin-bottom: auto !important;
  }
  body.building-frontend .ms-sm-0 {
    margin-left: 0 !important;
  }
  body.building-frontend .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  body.building-frontend .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  body.building-frontend .ms-sm-3 {
    margin-left: 1rem !important;
  }
  body.building-frontend .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  body.building-frontend .ms-sm-5 {
    margin-left: 3rem !important;
  }
  body.building-frontend .ms-sm-auto {
    margin-left: auto !important;
  }
  body.building-frontend .p-sm-0 {
    padding: 0 !important;
  }
  body.building-frontend .p-sm-1 {
    padding: 0.25rem !important;
  }
  body.building-frontend .p-sm-2 {
    padding: 0.5rem !important;
  }
  body.building-frontend .p-sm-3 {
    padding: 1rem !important;
  }
  body.building-frontend .p-sm-4 {
    padding: 1.5rem !important;
  }
  body.building-frontend .p-sm-5 {
    padding: 3rem !important;
  }
  body.building-frontend .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.building-frontend .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.building-frontend .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.building-frontend .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.building-frontend .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.building-frontend .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.building-frontend .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.building-frontend .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.building-frontend .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.building-frontend .pt-sm-0 {
    padding-top: 0 !important;
  }
  body.building-frontend .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  body.building-frontend .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  body.building-frontend .pt-sm-3 {
    padding-top: 1rem !important;
  }
  body.building-frontend .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  body.building-frontend .pt-sm-5 {
    padding-top: 3rem !important;
  }
  body.building-frontend .pe-sm-0 {
    padding-right: 0 !important;
  }
  body.building-frontend .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  body.building-frontend .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  body.building-frontend .pe-sm-3 {
    padding-right: 1rem !important;
  }
  body.building-frontend .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  body.building-frontend .pe-sm-5 {
    padding-right: 3rem !important;
  }
  body.building-frontend .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  body.building-frontend .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  body.building-frontend .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  body.building-frontend .ps-sm-0 {
    padding-left: 0 !important;
  }
  body.building-frontend .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  body.building-frontend .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  body.building-frontend .ps-sm-3 {
    padding-left: 1rem !important;
  }
  body.building-frontend .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  body.building-frontend .ps-sm-5 {
    padding-left: 3rem !important;
  }
  body.building-frontend .text-sm-start {
    text-align: left !important;
  }
  body.building-frontend .text-sm-end {
    text-align: right !important;
  }
  body.building-frontend .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  body.building-frontend .float-md-start {
    float: left !important;
  }
  body.building-frontend .float-md-end {
    float: right !important;
  }
  body.building-frontend .float-md-none {
    float: none !important;
  }
  body.building-frontend .d-md-inline {
    display: inline !important;
  }
  body.building-frontend .d-md-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-md-block {
    display: block !important;
  }
  body.building-frontend .d-md-grid {
    display: grid !important;
  }
  body.building-frontend .d-md-table {
    display: table !important;
  }
  body.building-frontend .d-md-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-md-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-md-flex {
    display: flex !important;
  }
  body.building-frontend .d-md-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-md-none {
    display: none !important;
  }
  body.building-frontend .flex-md-fill {
    flex: 1 1 auto !important;
  }
  body.building-frontend .flex-md-row {
    flex-direction: row !important;
  }
  body.building-frontend .flex-md-column {
    flex-direction: column !important;
  }
  body.building-frontend .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.building-frontend .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.building-frontend .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  body.building-frontend .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  body.building-frontend .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.building-frontend .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.building-frontend .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  body.building-frontend .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  body.building-frontend .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.building-frontend .gap-md-0 {
    gap: 0 !important;
  }
  body.building-frontend .gap-md-1 {
    gap: 0.25rem !important;
  }
  body.building-frontend .gap-md-2 {
    gap: 0.5rem !important;
  }
  body.building-frontend .gap-md-3 {
    gap: 1rem !important;
  }
  body.building-frontend .gap-md-4 {
    gap: 1.5rem !important;
  }
  body.building-frontend .gap-md-5 {
    gap: 3rem !important;
  }
  body.building-frontend .justify-content-md-start {
    justify-content: flex-start !important;
  }
  body.building-frontend .justify-content-md-end {
    justify-content: flex-end !important;
  }
  body.building-frontend .justify-content-md-center {
    justify-content: center !important;
  }
  body.building-frontend .justify-content-md-between {
    justify-content: space-between !important;
  }
  body.building-frontend .justify-content-md-around {
    justify-content: space-around !important;
  }
  body.building-frontend .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  body.building-frontend .align-items-md-start {
    align-items: flex-start !important;
  }
  body.building-frontend .align-items-md-end {
    align-items: flex-end !important;
  }
  body.building-frontend .align-items-md-center {
    align-items: center !important;
  }
  body.building-frontend .align-items-md-baseline {
    align-items: baseline !important;
  }
  body.building-frontend .align-items-md-stretch {
    align-items: stretch !important;
  }
  body.building-frontend .align-content-md-start {
    align-content: flex-start !important;
  }
  body.building-frontend .align-content-md-end {
    align-content: flex-end !important;
  }
  body.building-frontend .align-content-md-center {
    align-content: center !important;
  }
  body.building-frontend .align-content-md-between {
    align-content: space-between !important;
  }
  body.building-frontend .align-content-md-around {
    align-content: space-around !important;
  }
  body.building-frontend .align-content-md-stretch {
    align-content: stretch !important;
  }
  body.building-frontend .align-self-md-auto {
    align-self: auto !important;
  }
  body.building-frontend .align-self-md-start {
    align-self: flex-start !important;
  }
  body.building-frontend .align-self-md-end {
    align-self: flex-end !important;
  }
  body.building-frontend .align-self-md-center {
    align-self: center !important;
  }
  body.building-frontend .align-self-md-baseline {
    align-self: baseline !important;
  }
  body.building-frontend .align-self-md-stretch {
    align-self: stretch !important;
  }
  body.building-frontend .order-md-first {
    order: -1 !important;
  }
  body.building-frontend .order-md-0 {
    order: 0 !important;
  }
  body.building-frontend .order-md-1 {
    order: 1 !important;
  }
  body.building-frontend .order-md-2 {
    order: 2 !important;
  }
  body.building-frontend .order-md-3 {
    order: 3 !important;
  }
  body.building-frontend .order-md-4 {
    order: 4 !important;
  }
  body.building-frontend .order-md-5 {
    order: 5 !important;
  }
  body.building-frontend .order-md-last {
    order: 6 !important;
  }
  body.building-frontend .m-md-0 {
    margin: 0 !important;
  }
  body.building-frontend .m-md-1 {
    margin: 0.25rem !important;
  }
  body.building-frontend .m-md-2 {
    margin: 0.5rem !important;
  }
  body.building-frontend .m-md-3 {
    margin: 1rem !important;
  }
  body.building-frontend .m-md-4 {
    margin: 1.5rem !important;
  }
  body.building-frontend .m-md-5 {
    margin: 3rem !important;
  }
  body.building-frontend .m-md-auto {
    margin: auto !important;
  }
  body.building-frontend .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.building-frontend .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.building-frontend .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.building-frontend .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.building-frontend .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.building-frontend .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.building-frontend .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.building-frontend .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.building-frontend .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.building-frontend .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.building-frontend .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.building-frontend .mt-md-0 {
    margin-top: 0 !important;
  }
  body.building-frontend .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  body.building-frontend .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  body.building-frontend .mt-md-3 {
    margin-top: 1rem !important;
  }
  body.building-frontend .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  body.building-frontend .mt-md-5 {
    margin-top: 3rem !important;
  }
  body.building-frontend .mt-md-auto {
    margin-top: auto !important;
  }
  body.building-frontend .me-md-0 {
    margin-right: 0 !important;
  }
  body.building-frontend .me-md-1 {
    margin-right: 0.25rem !important;
  }
  body.building-frontend .me-md-2 {
    margin-right: 0.5rem !important;
  }
  body.building-frontend .me-md-3 {
    margin-right: 1rem !important;
  }
  body.building-frontend .me-md-4 {
    margin-right: 1.5rem !important;
  }
  body.building-frontend .me-md-5 {
    margin-right: 3rem !important;
  }
  body.building-frontend .me-md-auto {
    margin-right: auto !important;
  }
  body.building-frontend .mb-md-0 {
    margin-bottom: 0 !important;
  }
  body.building-frontend .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  body.building-frontend .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  body.building-frontend .mb-md-auto {
    margin-bottom: auto !important;
  }
  body.building-frontend .ms-md-0 {
    margin-left: 0 !important;
  }
  body.building-frontend .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  body.building-frontend .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  body.building-frontend .ms-md-3 {
    margin-left: 1rem !important;
  }
  body.building-frontend .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  body.building-frontend .ms-md-5 {
    margin-left: 3rem !important;
  }
  body.building-frontend .ms-md-auto {
    margin-left: auto !important;
  }
  body.building-frontend .p-md-0 {
    padding: 0 !important;
  }
  body.building-frontend .p-md-1 {
    padding: 0.25rem !important;
  }
  body.building-frontend .p-md-2 {
    padding: 0.5rem !important;
  }
  body.building-frontend .p-md-3 {
    padding: 1rem !important;
  }
  body.building-frontend .p-md-4 {
    padding: 1.5rem !important;
  }
  body.building-frontend .p-md-5 {
    padding: 3rem !important;
  }
  body.building-frontend .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.building-frontend .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.building-frontend .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.building-frontend .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.building-frontend .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.building-frontend .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.building-frontend .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.building-frontend .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.building-frontend .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.building-frontend .pt-md-0 {
    padding-top: 0 !important;
  }
  body.building-frontend .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  body.building-frontend .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  body.building-frontend .pt-md-3 {
    padding-top: 1rem !important;
  }
  body.building-frontend .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  body.building-frontend .pt-md-5 {
    padding-top: 3rem !important;
  }
  body.building-frontend .pe-md-0 {
    padding-right: 0 !important;
  }
  body.building-frontend .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  body.building-frontend .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  body.building-frontend .pe-md-3 {
    padding-right: 1rem !important;
  }
  body.building-frontend .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  body.building-frontend .pe-md-5 {
    padding-right: 3rem !important;
  }
  body.building-frontend .pb-md-0 {
    padding-bottom: 0 !important;
  }
  body.building-frontend .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  body.building-frontend .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  body.building-frontend .ps-md-0 {
    padding-left: 0 !important;
  }
  body.building-frontend .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  body.building-frontend .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  body.building-frontend .ps-md-3 {
    padding-left: 1rem !important;
  }
  body.building-frontend .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  body.building-frontend .ps-md-5 {
    padding-left: 3rem !important;
  }
  body.building-frontend .text-md-start {
    text-align: left !important;
  }
  body.building-frontend .text-md-end {
    text-align: right !important;
  }
  body.building-frontend .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  body.building-frontend .float-lg-start {
    float: left !important;
  }
  body.building-frontend .float-lg-end {
    float: right !important;
  }
  body.building-frontend .float-lg-none {
    float: none !important;
  }
  body.building-frontend .d-lg-inline {
    display: inline !important;
  }
  body.building-frontend .d-lg-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-lg-block {
    display: block !important;
  }
  body.building-frontend .d-lg-grid {
    display: grid !important;
  }
  body.building-frontend .d-lg-table {
    display: table !important;
  }
  body.building-frontend .d-lg-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-lg-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-lg-flex {
    display: flex !important;
  }
  body.building-frontend .d-lg-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-lg-none {
    display: none !important;
  }
  body.building-frontend .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  body.building-frontend .flex-lg-row {
    flex-direction: row !important;
  }
  body.building-frontend .flex-lg-column {
    flex-direction: column !important;
  }
  body.building-frontend .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.building-frontend .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.building-frontend .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  body.building-frontend .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  body.building-frontend .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.building-frontend .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.building-frontend .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  body.building-frontend .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  body.building-frontend .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.building-frontend .gap-lg-0 {
    gap: 0 !important;
  }
  body.building-frontend .gap-lg-1 {
    gap: 0.25rem !important;
  }
  body.building-frontend .gap-lg-2 {
    gap: 0.5rem !important;
  }
  body.building-frontend .gap-lg-3 {
    gap: 1rem !important;
  }
  body.building-frontend .gap-lg-4 {
    gap: 1.5rem !important;
  }
  body.building-frontend .gap-lg-5 {
    gap: 3rem !important;
  }
  body.building-frontend .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  body.building-frontend .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  body.building-frontend .justify-content-lg-center {
    justify-content: center !important;
  }
  body.building-frontend .justify-content-lg-between {
    justify-content: space-between !important;
  }
  body.building-frontend .justify-content-lg-around {
    justify-content: space-around !important;
  }
  body.building-frontend .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  body.building-frontend .align-items-lg-start {
    align-items: flex-start !important;
  }
  body.building-frontend .align-items-lg-end {
    align-items: flex-end !important;
  }
  body.building-frontend .align-items-lg-center {
    align-items: center !important;
  }
  body.building-frontend .align-items-lg-baseline {
    align-items: baseline !important;
  }
  body.building-frontend .align-items-lg-stretch {
    align-items: stretch !important;
  }
  body.building-frontend .align-content-lg-start {
    align-content: flex-start !important;
  }
  body.building-frontend .align-content-lg-end {
    align-content: flex-end !important;
  }
  body.building-frontend .align-content-lg-center {
    align-content: center !important;
  }
  body.building-frontend .align-content-lg-between {
    align-content: space-between !important;
  }
  body.building-frontend .align-content-lg-around {
    align-content: space-around !important;
  }
  body.building-frontend .align-content-lg-stretch {
    align-content: stretch !important;
  }
  body.building-frontend .align-self-lg-auto {
    align-self: auto !important;
  }
  body.building-frontend .align-self-lg-start {
    align-self: flex-start !important;
  }
  body.building-frontend .align-self-lg-end {
    align-self: flex-end !important;
  }
  body.building-frontend .align-self-lg-center {
    align-self: center !important;
  }
  body.building-frontend .align-self-lg-baseline {
    align-self: baseline !important;
  }
  body.building-frontend .align-self-lg-stretch {
    align-self: stretch !important;
  }
  body.building-frontend .order-lg-first {
    order: -1 !important;
  }
  body.building-frontend .order-lg-0 {
    order: 0 !important;
  }
  body.building-frontend .order-lg-1 {
    order: 1 !important;
  }
  body.building-frontend .order-lg-2 {
    order: 2 !important;
  }
  body.building-frontend .order-lg-3 {
    order: 3 !important;
  }
  body.building-frontend .order-lg-4 {
    order: 4 !important;
  }
  body.building-frontend .order-lg-5 {
    order: 5 !important;
  }
  body.building-frontend .order-lg-last {
    order: 6 !important;
  }
  body.building-frontend .m-lg-0 {
    margin: 0 !important;
  }
  body.building-frontend .m-lg-1 {
    margin: 0.25rem !important;
  }
  body.building-frontend .m-lg-2 {
    margin: 0.5rem !important;
  }
  body.building-frontend .m-lg-3 {
    margin: 1rem !important;
  }
  body.building-frontend .m-lg-4 {
    margin: 1.5rem !important;
  }
  body.building-frontend .m-lg-5 {
    margin: 3rem !important;
  }
  body.building-frontend .m-lg-auto {
    margin: auto !important;
  }
  body.building-frontend .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.building-frontend .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.building-frontend .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.building-frontend .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.building-frontend .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.building-frontend .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.building-frontend .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.building-frontend .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.building-frontend .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.building-frontend .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.building-frontend .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.building-frontend .mt-lg-0 {
    margin-top: 0 !important;
  }
  body.building-frontend .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  body.building-frontend .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  body.building-frontend .mt-lg-3 {
    margin-top: 1rem !important;
  }
  body.building-frontend .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  body.building-frontend .mt-lg-5 {
    margin-top: 3rem !important;
  }
  body.building-frontend .mt-lg-auto {
    margin-top: auto !important;
  }
  body.building-frontend .me-lg-0 {
    margin-right: 0 !important;
  }
  body.building-frontend .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  body.building-frontend .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  body.building-frontend .me-lg-3 {
    margin-right: 1rem !important;
  }
  body.building-frontend .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  body.building-frontend .me-lg-5 {
    margin-right: 3rem !important;
  }
  body.building-frontend .me-lg-auto {
    margin-right: auto !important;
  }
  body.building-frontend .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  body.building-frontend .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  body.building-frontend .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  body.building-frontend .mb-lg-auto {
    margin-bottom: auto !important;
  }
  body.building-frontend .ms-lg-0 {
    margin-left: 0 !important;
  }
  body.building-frontend .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  body.building-frontend .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  body.building-frontend .ms-lg-3 {
    margin-left: 1rem !important;
  }
  body.building-frontend .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  body.building-frontend .ms-lg-5 {
    margin-left: 3rem !important;
  }
  body.building-frontend .ms-lg-auto {
    margin-left: auto !important;
  }
  body.building-frontend .p-lg-0 {
    padding: 0 !important;
  }
  body.building-frontend .p-lg-1 {
    padding: 0.25rem !important;
  }
  body.building-frontend .p-lg-2 {
    padding: 0.5rem !important;
  }
  body.building-frontend .p-lg-3 {
    padding: 1rem !important;
  }
  body.building-frontend .p-lg-4 {
    padding: 1.5rem !important;
  }
  body.building-frontend .p-lg-5 {
    padding: 3rem !important;
  }
  body.building-frontend .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.building-frontend .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.building-frontend .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.building-frontend .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.building-frontend .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.building-frontend .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.building-frontend .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.building-frontend .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.building-frontend .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.building-frontend .pt-lg-0 {
    padding-top: 0 !important;
  }
  body.building-frontend .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  body.building-frontend .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  body.building-frontend .pt-lg-3 {
    padding-top: 1rem !important;
  }
  body.building-frontend .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  body.building-frontend .pt-lg-5 {
    padding-top: 3rem !important;
  }
  body.building-frontend .pe-lg-0 {
    padding-right: 0 !important;
  }
  body.building-frontend .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  body.building-frontend .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  body.building-frontend .pe-lg-3 {
    padding-right: 1rem !important;
  }
  body.building-frontend .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  body.building-frontend .pe-lg-5 {
    padding-right: 3rem !important;
  }
  body.building-frontend .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  body.building-frontend .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  body.building-frontend .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  body.building-frontend .ps-lg-0 {
    padding-left: 0 !important;
  }
  body.building-frontend .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  body.building-frontend .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  body.building-frontend .ps-lg-3 {
    padding-left: 1rem !important;
  }
  body.building-frontend .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  body.building-frontend .ps-lg-5 {
    padding-left: 3rem !important;
  }
  body.building-frontend .text-lg-start {
    text-align: left !important;
  }
  body.building-frontend .text-lg-end {
    text-align: right !important;
  }
  body.building-frontend .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .float-xl-start {
    float: left !important;
  }
  body.building-frontend .float-xl-end {
    float: right !important;
  }
  body.building-frontend .float-xl-none {
    float: none !important;
  }
  body.building-frontend .d-xl-inline {
    display: inline !important;
  }
  body.building-frontend .d-xl-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-xl-block {
    display: block !important;
  }
  body.building-frontend .d-xl-grid {
    display: grid !important;
  }
  body.building-frontend .d-xl-table {
    display: table !important;
  }
  body.building-frontend .d-xl-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-xl-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-xl-flex {
    display: flex !important;
  }
  body.building-frontend .d-xl-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-xl-none {
    display: none !important;
  }
  body.building-frontend .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  body.building-frontend .flex-xl-row {
    flex-direction: row !important;
  }
  body.building-frontend .flex-xl-column {
    flex-direction: column !important;
  }
  body.building-frontend .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.building-frontend .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.building-frontend .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  body.building-frontend .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  body.building-frontend .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.building-frontend .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.building-frontend .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  body.building-frontend .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  body.building-frontend .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.building-frontend .gap-xl-0 {
    gap: 0 !important;
  }
  body.building-frontend .gap-xl-1 {
    gap: 0.25rem !important;
  }
  body.building-frontend .gap-xl-2 {
    gap: 0.5rem !important;
  }
  body.building-frontend .gap-xl-3 {
    gap: 1rem !important;
  }
  body.building-frontend .gap-xl-4 {
    gap: 1.5rem !important;
  }
  body.building-frontend .gap-xl-5 {
    gap: 3rem !important;
  }
  body.building-frontend .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  body.building-frontend .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  body.building-frontend .justify-content-xl-center {
    justify-content: center !important;
  }
  body.building-frontend .justify-content-xl-between {
    justify-content: space-between !important;
  }
  body.building-frontend .justify-content-xl-around {
    justify-content: space-around !important;
  }
  body.building-frontend .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  body.building-frontend .align-items-xl-start {
    align-items: flex-start !important;
  }
  body.building-frontend .align-items-xl-end {
    align-items: flex-end !important;
  }
  body.building-frontend .align-items-xl-center {
    align-items: center !important;
  }
  body.building-frontend .align-items-xl-baseline {
    align-items: baseline !important;
  }
  body.building-frontend .align-items-xl-stretch {
    align-items: stretch !important;
  }
  body.building-frontend .align-content-xl-start {
    align-content: flex-start !important;
  }
  body.building-frontend .align-content-xl-end {
    align-content: flex-end !important;
  }
  body.building-frontend .align-content-xl-center {
    align-content: center !important;
  }
  body.building-frontend .align-content-xl-between {
    align-content: space-between !important;
  }
  body.building-frontend .align-content-xl-around {
    align-content: space-around !important;
  }
  body.building-frontend .align-content-xl-stretch {
    align-content: stretch !important;
  }
  body.building-frontend .align-self-xl-auto {
    align-self: auto !important;
  }
  body.building-frontend .align-self-xl-start {
    align-self: flex-start !important;
  }
  body.building-frontend .align-self-xl-end {
    align-self: flex-end !important;
  }
  body.building-frontend .align-self-xl-center {
    align-self: center !important;
  }
  body.building-frontend .align-self-xl-baseline {
    align-self: baseline !important;
  }
  body.building-frontend .align-self-xl-stretch {
    align-self: stretch !important;
  }
  body.building-frontend .order-xl-first {
    order: -1 !important;
  }
  body.building-frontend .order-xl-0 {
    order: 0 !important;
  }
  body.building-frontend .order-xl-1 {
    order: 1 !important;
  }
  body.building-frontend .order-xl-2 {
    order: 2 !important;
  }
  body.building-frontend .order-xl-3 {
    order: 3 !important;
  }
  body.building-frontend .order-xl-4 {
    order: 4 !important;
  }
  body.building-frontend .order-xl-5 {
    order: 5 !important;
  }
  body.building-frontend .order-xl-last {
    order: 6 !important;
  }
  body.building-frontend .m-xl-0 {
    margin: 0 !important;
  }
  body.building-frontend .m-xl-1 {
    margin: 0.25rem !important;
  }
  body.building-frontend .m-xl-2 {
    margin: 0.5rem !important;
  }
  body.building-frontend .m-xl-3 {
    margin: 1rem !important;
  }
  body.building-frontend .m-xl-4 {
    margin: 1.5rem !important;
  }
  body.building-frontend .m-xl-5 {
    margin: 3rem !important;
  }
  body.building-frontend .m-xl-auto {
    margin: auto !important;
  }
  body.building-frontend .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.building-frontend .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.building-frontend .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.building-frontend .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.building-frontend .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.building-frontend .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.building-frontend .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.building-frontend .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.building-frontend .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.building-frontend .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.building-frontend .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.building-frontend .mt-xl-0 {
    margin-top: 0 !important;
  }
  body.building-frontend .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  body.building-frontend .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  body.building-frontend .mt-xl-3 {
    margin-top: 1rem !important;
  }
  body.building-frontend .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  body.building-frontend .mt-xl-5 {
    margin-top: 3rem !important;
  }
  body.building-frontend .mt-xl-auto {
    margin-top: auto !important;
  }
  body.building-frontend .me-xl-0 {
    margin-right: 0 !important;
  }
  body.building-frontend .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  body.building-frontend .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  body.building-frontend .me-xl-3 {
    margin-right: 1rem !important;
  }
  body.building-frontend .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  body.building-frontend .me-xl-5 {
    margin-right: 3rem !important;
  }
  body.building-frontend .me-xl-auto {
    margin-right: auto !important;
  }
  body.building-frontend .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  body.building-frontend .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  body.building-frontend .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  body.building-frontend .mb-xl-auto {
    margin-bottom: auto !important;
  }
  body.building-frontend .ms-xl-0 {
    margin-left: 0 !important;
  }
  body.building-frontend .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  body.building-frontend .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  body.building-frontend .ms-xl-3 {
    margin-left: 1rem !important;
  }
  body.building-frontend .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  body.building-frontend .ms-xl-5 {
    margin-left: 3rem !important;
  }
  body.building-frontend .ms-xl-auto {
    margin-left: auto !important;
  }
  body.building-frontend .p-xl-0 {
    padding: 0 !important;
  }
  body.building-frontend .p-xl-1 {
    padding: 0.25rem !important;
  }
  body.building-frontend .p-xl-2 {
    padding: 0.5rem !important;
  }
  body.building-frontend .p-xl-3 {
    padding: 1rem !important;
  }
  body.building-frontend .p-xl-4 {
    padding: 1.5rem !important;
  }
  body.building-frontend .p-xl-5 {
    padding: 3rem !important;
  }
  body.building-frontend .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.building-frontend .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.building-frontend .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.building-frontend .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.building-frontend .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.building-frontend .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.building-frontend .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.building-frontend .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.building-frontend .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.building-frontend .pt-xl-0 {
    padding-top: 0 !important;
  }
  body.building-frontend .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  body.building-frontend .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  body.building-frontend .pt-xl-3 {
    padding-top: 1rem !important;
  }
  body.building-frontend .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  body.building-frontend .pt-xl-5 {
    padding-top: 3rem !important;
  }
  body.building-frontend .pe-xl-0 {
    padding-right: 0 !important;
  }
  body.building-frontend .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  body.building-frontend .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  body.building-frontend .pe-xl-3 {
    padding-right: 1rem !important;
  }
  body.building-frontend .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  body.building-frontend .pe-xl-5 {
    padding-right: 3rem !important;
  }
  body.building-frontend .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  body.building-frontend .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  body.building-frontend .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  body.building-frontend .ps-xl-0 {
    padding-left: 0 !important;
  }
  body.building-frontend .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  body.building-frontend .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  body.building-frontend .ps-xl-3 {
    padding-left: 1rem !important;
  }
  body.building-frontend .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  body.building-frontend .ps-xl-5 {
    padding-left: 3rem !important;
  }
  body.building-frontend .text-xl-start {
    text-align: left !important;
  }
  body.building-frontend .text-xl-end {
    text-align: right !important;
  }
  body.building-frontend .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  body.building-frontend .float-xxl-start {
    float: left !important;
  }
  body.building-frontend .float-xxl-end {
    float: right !important;
  }
  body.building-frontend .float-xxl-none {
    float: none !important;
  }
  body.building-frontend .d-xxl-inline {
    display: inline !important;
  }
  body.building-frontend .d-xxl-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-xxl-block {
    display: block !important;
  }
  body.building-frontend .d-xxl-grid {
    display: grid !important;
  }
  body.building-frontend .d-xxl-table {
    display: table !important;
  }
  body.building-frontend .d-xxl-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-xxl-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-xxl-flex {
    display: flex !important;
  }
  body.building-frontend .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-xxl-none {
    display: none !important;
  }
  body.building-frontend .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  body.building-frontend .flex-xxl-row {
    flex-direction: row !important;
  }
  body.building-frontend .flex-xxl-column {
    flex-direction: column !important;
  }
  body.building-frontend .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  body.building-frontend .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  body.building-frontend .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  body.building-frontend .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  body.building-frontend .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  body.building-frontend .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  body.building-frontend .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  body.building-frontend .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  body.building-frontend .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  body.building-frontend .gap-xxl-0 {
    gap: 0 !important;
  }
  body.building-frontend .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  body.building-frontend .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  body.building-frontend .gap-xxl-3 {
    gap: 1rem !important;
  }
  body.building-frontend .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  body.building-frontend .gap-xxl-5 {
    gap: 3rem !important;
  }
  body.building-frontend .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  body.building-frontend .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  body.building-frontend .justify-content-xxl-center {
    justify-content: center !important;
  }
  body.building-frontend .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  body.building-frontend .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  body.building-frontend .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  body.building-frontend .align-items-xxl-start {
    align-items: flex-start !important;
  }
  body.building-frontend .align-items-xxl-end {
    align-items: flex-end !important;
  }
  body.building-frontend .align-items-xxl-center {
    align-items: center !important;
  }
  body.building-frontend .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  body.building-frontend .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  body.building-frontend .align-content-xxl-start {
    align-content: flex-start !important;
  }
  body.building-frontend .align-content-xxl-end {
    align-content: flex-end !important;
  }
  body.building-frontend .align-content-xxl-center {
    align-content: center !important;
  }
  body.building-frontend .align-content-xxl-between {
    align-content: space-between !important;
  }
  body.building-frontend .align-content-xxl-around {
    align-content: space-around !important;
  }
  body.building-frontend .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  body.building-frontend .align-self-xxl-auto {
    align-self: auto !important;
  }
  body.building-frontend .align-self-xxl-start {
    align-self: flex-start !important;
  }
  body.building-frontend .align-self-xxl-end {
    align-self: flex-end !important;
  }
  body.building-frontend .align-self-xxl-center {
    align-self: center !important;
  }
  body.building-frontend .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  body.building-frontend .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  body.building-frontend .order-xxl-first {
    order: -1 !important;
  }
  body.building-frontend .order-xxl-0 {
    order: 0 !important;
  }
  body.building-frontend .order-xxl-1 {
    order: 1 !important;
  }
  body.building-frontend .order-xxl-2 {
    order: 2 !important;
  }
  body.building-frontend .order-xxl-3 {
    order: 3 !important;
  }
  body.building-frontend .order-xxl-4 {
    order: 4 !important;
  }
  body.building-frontend .order-xxl-5 {
    order: 5 !important;
  }
  body.building-frontend .order-xxl-last {
    order: 6 !important;
  }
  body.building-frontend .m-xxl-0 {
    margin: 0 !important;
  }
  body.building-frontend .m-xxl-1 {
    margin: 0.25rem !important;
  }
  body.building-frontend .m-xxl-2 {
    margin: 0.5rem !important;
  }
  body.building-frontend .m-xxl-3 {
    margin: 1rem !important;
  }
  body.building-frontend .m-xxl-4 {
    margin: 1.5rem !important;
  }
  body.building-frontend .m-xxl-5 {
    margin: 3rem !important;
  }
  body.building-frontend .m-xxl-auto {
    margin: auto !important;
  }
  body.building-frontend .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  body.building-frontend .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  body.building-frontend .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  body.building-frontend .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  body.building-frontend .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  body.building-frontend .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  body.building-frontend .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  body.building-frontend .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  body.building-frontend .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body.building-frontend .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body.building-frontend .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  body.building-frontend .mt-xxl-0 {
    margin-top: 0 !important;
  }
  body.building-frontend .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  body.building-frontend .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  body.building-frontend .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  body.building-frontend .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  body.building-frontend .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  body.building-frontend .mt-xxl-auto {
    margin-top: auto !important;
  }
  body.building-frontend .me-xxl-0 {
    margin-right: 0 !important;
  }
  body.building-frontend .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  body.building-frontend .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  body.building-frontend .me-xxl-3 {
    margin-right: 1rem !important;
  }
  body.building-frontend .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  body.building-frontend .me-xxl-5 {
    margin-right: 3rem !important;
  }
  body.building-frontend .me-xxl-auto {
    margin-right: auto !important;
  }
  body.building-frontend .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  body.building-frontend .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  body.building-frontend .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  body.building-frontend .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  body.building-frontend .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  body.building-frontend .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  body.building-frontend .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  body.building-frontend .ms-xxl-0 {
    margin-left: 0 !important;
  }
  body.building-frontend .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  body.building-frontend .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  body.building-frontend .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  body.building-frontend .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  body.building-frontend .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  body.building-frontend .ms-xxl-auto {
    margin-left: auto !important;
  }
  body.building-frontend .p-xxl-0 {
    padding: 0 !important;
  }
  body.building-frontend .p-xxl-1 {
    padding: 0.25rem !important;
  }
  body.building-frontend .p-xxl-2 {
    padding: 0.5rem !important;
  }
  body.building-frontend .p-xxl-3 {
    padding: 1rem !important;
  }
  body.building-frontend .p-xxl-4 {
    padding: 1.5rem !important;
  }
  body.building-frontend .p-xxl-5 {
    padding: 3rem !important;
  }
  body.building-frontend .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  body.building-frontend .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  body.building-frontend .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  body.building-frontend .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  body.building-frontend .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  body.building-frontend .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  body.building-frontend .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.building-frontend .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body.building-frontend .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  body.building-frontend .pt-xxl-0 {
    padding-top: 0 !important;
  }
  body.building-frontend .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  body.building-frontend .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  body.building-frontend .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  body.building-frontend .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  body.building-frontend .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  body.building-frontend .pe-xxl-0 {
    padding-right: 0 !important;
  }
  body.building-frontend .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  body.building-frontend .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  body.building-frontend .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  body.building-frontend .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  body.building-frontend .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  body.building-frontend .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  body.building-frontend .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  body.building-frontend .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  body.building-frontend .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  body.building-frontend .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  body.building-frontend .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  body.building-frontend .ps-xxl-0 {
    padding-left: 0 !important;
  }
  body.building-frontend .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  body.building-frontend .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  body.building-frontend .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  body.building-frontend .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  body.building-frontend .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  body.building-frontend .text-xxl-start {
    text-align: left !important;
  }
  body.building-frontend .text-xxl-end {
    text-align: right !important;
  }
  body.building-frontend .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  body.building-frontend .fs-1 {
    font-size: 2.25rem !important;
  }
  body.building-frontend .fs-2 {
    font-size: 1.8rem !important;
  }
  body.building-frontend .fs-3 {
    font-size: 1.575rem !important;
  }
  body.building-frontend .fs-4 {
    font-size: 1.35rem !important;
  }
}
@media print {
  body.building-frontend .d-print-inline {
    display: inline !important;
  }
  body.building-frontend .d-print-inline-block {
    display: inline-block !important;
  }
  body.building-frontend .d-print-block {
    display: block !important;
  }
  body.building-frontend .d-print-grid {
    display: grid !important;
  }
  body.building-frontend .d-print-table {
    display: table !important;
  }
  body.building-frontend .d-print-table-row {
    display: table-row !important;
  }
  body.building-frontend .d-print-table-cell {
    display: table-cell !important;
  }
  body.building-frontend .d-print-flex {
    display: flex !important;
  }
  body.building-frontend .d-print-inline-flex {
    display: inline-flex !important;
  }
  body.building-frontend .d-print-none {
    display: none !important;
  }
}
body.building-frontend body {
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4c527d;
}
body.building-frontend h1, body.building-frontend .h1, body.building-frontend h2, body.building-frontend .h2, body.building-frontend h3, body.building-frontend .h3, body.building-frontend h4, body.building-frontend .h4, body.building-frontend h5, body.building-frontend .h5, body.building-frontend h6, body.building-frontend .h6 {
  font-family: "Quicksand", sans-serif;
  color: #1c1e2e;
  font-weight: bold;
}
body.building-frontend a.theme-link {
  color: #1c1e2e;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(28, 30, 46, 0.3);
  text-decoration-color: rgba(28, 30, 46, 0.3);
}
body.building-frontend a.theme-link:hover {
  color: #ed6524;
  -webkit-text-decoration-color: rgba(237, 101, 36, 0.8);
  text-decoration-color: rgba(237, 101, 36, 0.8);
}
body.building-frontend .btn {
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  transition: all 0.4s ease-in-out;
  border-radius: 2rem;
  border: none;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend .btn {
    transition: none;
  }
}
body.building-frontend .btn:hover, body.building-frontend .btn:active, body.building-frontend .btn:focus {
  box-shadow: 0 10px 20px -4px rgba(0, 0, 0, 0.05);
}
body.building-frontend .btn-submit {
  border-radius: 0.25rem;
  padding: 0.875rem 1.5rem;
}
body.building-frontend .btn:focus, body.building-frontend .btn.focus {
  box-shadow: none !important;
}
body.building-frontend .btn-primary {
  background: #ed6524;
  color: #fff;
}
body.building-frontend .btn-primary:hover, body.building-frontend .btn-primary:active, body.building-frontend .btn-primary:focus {
  background: #e55713;
  color: #fff;
}
body.building-frontend .btn-secondary {
  background: white;
  border: 2px solid #ed6524;
  color: #ed6524;
}
body.building-frontend .btn-secondary:hover, body.building-frontend .btn-secondary:active, body.building-frontend .btn-secondary:focus, body.building-frontend .btn-secondary:not(:disabled):not(.disabled):active {
  background: #ed6524;
  border: 2px solid #ed6524;
  color: white;
}
body.building-frontend .btn-light {
  background: #f6f8fc;
  color: #ed6524;
}
body.building-frontend .btn-light:hover {
  background: #f6f8fc;
  color: #ed6524;
}
body.building-frontend .form-control {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  height: 56px;
  border-color: #e3e9f6;
}
body.building-frontend .form-control:focus {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  outline: none;
}
body.building-frontend .theme-bg-light {
  background: #f6f8fc;
}
body.building-frontend .theme-bg-dark {
  background: #1c1e2e;
}
body.building-frontend .theme-bg-primary {
  background: #ed6524;
}
body.building-frontend .theme-bg-light-gradient {
  background-image: linear-gradient(to bottom, #f6f8fc 0%, white 70%);
}
body.building-frontend #topcontrol {
  transition: all 0.4s ease-in-out;
  background: #1c1e2e;
  color: #fff;
  text-align: center;
  display: inline-block;
  z-index: 30;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding-top: 0.5rem;
  font-weight: 300;
  font-size: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  body.building-frontend #topcontrol {
    transition: none;
  }
}
body.building-frontend #topcontrol:hover {
  background: #2f334e;
  color: #fff;
}
body.building-frontend .border-radius-0 {
  border-radius: 0;
}
body.building-frontend .font-style-normal {
  font-style: normal !important;
}
body.building-frontend .single-col-max {
  max-width: 760px;
}
body.building-frontend .site-logo .logo-text {
  color: #1c1e2e;
  font-size: 1.5rem;
  font-weight: bold;
}
body.building-frontend .footer .copyright {
  font-size: 0.875rem;
}
body.building-frontend .section-heading {
  font-size: 2.5rem;
}
body.building-frontend .section-intro {
  font-size: 1.25rem;
}
body.building-frontend .hero-section .headline {
  font-size: 2.5rem;
  font-weight: bold;
}
body.building-frontend .hero-section .subheadline {
  font-size: 1.25rem;
}
body.building-frontend .hero-quotes .quote {
  position: relative;
  border-left: 4px solid #f5a782;
  font-style: italic;
}
body.building-frontend .hero-quotes .quote:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f6f8fc;
  position: absolute;
  bottom: -10px;
  margin-left: -10px;
  left: 2rem;
}
body.building-frontend .hero-quotes .source {
  vertical-align: middle;
  color: #6f75a7;
  font-size: 0.875rem;
}
body.building-frontend .hero-quotes .source-profile {
  width: 60px;
  height: 60px;
}
body.building-frontend .hero-quotes .carousel-indicators {
  bottom: -4rem;
}
body.building-frontend .hero-quotes .carousel-indicators li {
  border: none;
  background-color: #4c527d;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}
body.building-frontend .book-cover-holder {
  position: relative;
}
body.building-frontend .book-cover-holder .book-badge {
  position: absolute;
  right: 0;
  top: -2rem;
  width: 120px;
  height: 120px;
  background: #5cb377;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  padding-top: 34px;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: bold;
}
body.building-frontend .benefits-section .item-inner {
  height: 100%;
}
body.building-frontend .benefits-section .item-icon {
  font-size: 3rem;
  color: #ed6524;
}
body.building-frontend .benefits-section .item-heading {
  font-size: 1.125rem;
}
body.building-frontend .content-section .key-points-list {
  font-size: 1.125rem;
}
body.building-frontend .content-section .key-points-list li {
  margin-bottom: 1rem;
}
body.building-frontend .content-section .fa-check-circle {
  color: #7FCDB8;
}
body.building-frontend .audience-section .audience {
  max-width: 500px;
}
body.building-frontend .audience-section .item {
  margin-bottom: 1.5rem;
}
body.building-frontend .audience-section .item-title {
  font-size: 1.125rem;
}
body.building-frontend .audience-section .item-icon {
  font-size: 1.25rem;
  color: #7FCDB8;
}
body.building-frontend .reviews-section .item-inner {
  height: 100%;
  position: relative;
}
body.building-frontend .reviews-section .icon-holder {
  position: absolute;
  left: 50%;
  top: -18px;
  margin-left: -18px;
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #f5a782;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  padding-top: 6px;
}
body.building-frontend .reviews-section .source-profile {
  width: 60px;
}
body.building-frontend .reviews-section .source-info {
  font-size: 0.875rem;
}
body.building-frontend .reviews-section .quote {
  font-style: italic;
}
body.building-frontend .author-section {
  color: #fff;
}
body.building-frontend .author-section .author-pic {
  width: 150px;
  height: 150px;
}
body.building-frontend .author-section .social-list li {
  background: rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 50%;
  padding-top: 6px;
}
body.building-frontend .author-section .social-list li:hover {
  background: rgba(0, 0, 0, 0.15);
}
body.building-frontend .author-section .social-list a {
  color: #fff;
}
body.building-frontend .theme-bg-primary a.theme-link {
  color: #fff;
  text-decoration: underline;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.5);
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
body.building-frontend .theme-bg-primary a.theme-link:hover {
  color: #fff;
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
@media (max-width: 575.98px) {
  body.building-frontend .hero-quotes .quote:after {
    left: 50%;
    margin-left: -10px;
  }
  body.building-frontend .reviews-section .source-profile {
    margin-bottom: 0.5rem;
  }
  body.building-frontend .form-inline .form-control {
    width: 200px;
  }
}
@media (max-width: 991.98px) {
  body.building-frontend .section-heading {
    font-size: 1.75rem;
  }
  body.building-frontend .section-intro {
    font-size: 1.125rem;
  }
  body.building-frontend .hero-section .headline {
    font-size: 2rem;
    font-weight: bold;
  }
  body.building-frontend .hero-section .subheadline {
    font-size: 1.125rem;
  }
  body.building-frontend .book-cover-holder .book-badge {
    width: 100px;
    height: 100px;
    padding-top: 25px;
    font-size: 1.25rem;
  }
}
@media (min-width: 576px) {
  body.building-frontend .form-inline .form-control {
    width: 400px;
  }
}
body.building-frontend .form-control {
  height: inherit !important;
}

/*!
 * Bootstrap v5.1.3 (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-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #01dcc8;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 1, 220, 200;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 248, 250, 252;
  --bs-font-sans-serif: "Nunito", sans-serif;
  --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));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #212529;
  --bs-body-bg: #f8fafc;
}

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

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -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, body.backend h1, body.backend .h1, body.backend h2, body.backend .h2, body.backend h3, body.backend .h3, body.backend h4, body.backend .h4, body.backend h5, body.backend .h5, body.backend h6, body.backend .h6, body.building-frontend h1, body.building-frontend .h1, body.building-frontend h2, body.building-frontend .h2, body.building-frontend h3, body.building-frontend .h3, body.building-frontend h4, body.building-frontend .h4, body.building-frontend h5, body.building-frontend .h5, body.building-frontend h6, body.building-frontend .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1, body.backend .h1, body.building-frontend .h1 {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h1, .h1, body.backend .h1, body.building-frontend .h1 {
    font-size: 2.25rem;
  }
}

h2, .h2, body.backend .h2, body.building-frontend .h2 {
  font-size: calc(1.305rem + 0.66vw);
}
@media (min-width: 1200px) {
  h2, .h2, body.backend .h2, body.building-frontend .h2 {
    font-size: 1.8rem;
  }
}

h3, .h3, body.backend .h3, body.building-frontend .h3 {
  font-size: calc(1.2825rem + 0.39vw);
}
@media (min-width: 1200px) {
  h3, .h3, body.backend .h3, body.building-frontend .h3 {
    font-size: 1.575rem;
  }
}

h4, .h4, body.backend .h4, body.building-frontend .h4 {
  font-size: calc(1.26rem + 0.12vw);
}
@media (min-width: 1200px) {
  h4, .h4, body.backend .h4, body.building-frontend .h4 {
    font-size: 1.35rem;
  }
}

h5, .h5, body.backend .h5, body.building-frontend .h5 {
  font-size: 1.125rem;
}

h6, .h6, body.backend .h6, body.building-frontend .h6 {
  font-size: 0.9rem;
}

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, body.backend .small, body.building-frontend .small {
  font-size: 0.875em;
}

mark, .mark, body.backend .mark, body.building-frontend .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: #01dcc8;
  text-decoration: underline;
}
a:hover {
  color: #01b0a0;
}

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

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

::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.125rem;
  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.125rem;
}
.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 {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f8fafc;
  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,
body.backend .container-sm,
body.backend .container-md,
body.backend .container-lg,
body.backend .container-xl,
body.building-frontend .container-sm,
body.building-frontend .container-md,
body.building-frontend .container-lg,
body.building-frontend .container-xl,
body.building-frontend .container-xxl {
  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, body.backend .container, body.backend .container-sm, body.building-frontend .container, body.building-frontend .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, body.backend .container, body.backend .container-sm, body.backend .container-md, body.building-frontend .container, body.building-frontend .container-sm, body.building-frontend .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, body.backend .container, body.backend .container-sm, body.backend .container-md, body.backend .container-lg, body.building-frontend .container, body.building-frontend .container-sm, body.building-frontend .container-md, body.building-frontend .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, body.backend .container, body.backend .container-sm, body.backend .container-md, body.backend .container-lg, body.backend .container-xl, body.building-frontend .container, body.building-frontend .container-sm, body.building-frontend .container-md, body.building-frontend .container-lg, body.building-frontend .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, body.building-frontend .container, body.building-frontend .container-sm, body.building-frontend .container-md, body.building-frontend .container-lg, body.building-frontend .container-xl, body.building-frontend .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  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%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 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%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.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-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(:first-child) {
  border-top: 2px solid 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-borderless > :not(:first-child) {
  border-top-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: #ccf8f4;
  --bs-table-striped-bg: #c2ece8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8dfdc;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bde5e2;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8dfdc;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.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: 1199.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.6;
}

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

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

.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: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #f8fafc;
  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: #f8fafc;
  border-color: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.6em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 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: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  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.6em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

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

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

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.6em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.6em;
  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: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  background-color: #f8fafc;
  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: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 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.7875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.44rem;
  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.3em;
  vertical-align: top;
  background-color: #f8fafc;
  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;
  -webkit-print-color-adjust: exact;
          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: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}
.form-check-input:checked {
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.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: #01dcc8;
  border-color: #01dcc8;
  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='%2380eee4'/%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, .btn-check:disabled + .btn {
  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 #f8fafc, 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #01dcc8;
  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: #b3f5ef;
}
.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: #01dcc8;
  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: #b3f5ef;
}
.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:-ms-input-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:not(:-ms-input-placeholder) {
  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:not(:-ms-input-placeholder) ~ 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 {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  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 {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  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.7875rem;
  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.6em + 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.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 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.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 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.8em + 0.375rem) calc(0.8em + 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: #dc3545;
}

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

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

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.6em + 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='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

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

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.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='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

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

.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 {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.btn-primary:hover {
  color: #000;
  background-color: #27e1d0;
  border-color: #1ae0ce;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #27e1d0;
  border-color: #1ae0ce;
  box-shadow: 0 0 0 0.25rem rgba(1, 187, 170, 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: #34e3d3;
  border-color: #1ae0ce;
}
.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(1, 187, 170, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 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: #565e64;
  border-color: #51585e;
}
.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(130, 138, 145, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 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: #146c43;
  border-color: #13653f;
}
.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(60, 153, 110, 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: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 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: #3dd5f3;
  border-color: #25cff2;
}
.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, 172, 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: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 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: #ffcd39;
  border-color: #ffc720;
}
.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(217, 164, 6, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 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: #b02a37;
  border-color: #a52834;
}
.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(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 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: #f9fafb;
  border-color: #f9fafb;
}
.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(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 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: #1a1e21;
  border-color: #191c1f;
}
.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(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #01dcc8;
  border-color: #01dcc8;
}
.btn-outline-primary:hover {
  color: #000;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 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: #01dcc8;
  border-color: #01dcc8;
}
.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(1, 220, 200, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #01dcc8;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 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: #6c757d;
  border-color: #6c757d;
}
.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(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #6c757d;
  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: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 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: #dc3545;
  border-color: #dc3545;
}
.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(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 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: #f8f9fa;
  border-color: #f8f9fa;
}
.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(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 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: #212529;
  border-color: #212529;
}
.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(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #01dcc8;
  text-decoration: underline;
}
.btn-link:hover {
  color: #01b0a0;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn, body.backend .btn-group-lg > .btn, body.building-frontend .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, body.backend .btn-group-sm > .btn, body.building-frontend .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  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;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    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: 0.9rem;
  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: 1200px) {
  .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: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #01dcc8;
}
.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.7875rem;
  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: #01dcc8;
}
.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,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

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

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

.btn-sm + .dropdown-toggle-split, body.backend .btn-group-sm > .btn + .dropdown-toggle-split, body.building-frontend .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, body.backend .btn-group-lg > .btn + .dropdown-toggle-split, body.building-frontend .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  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: #01dcc8;
  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: #01b0a0;
}
.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: #f8fafc;
  border-color: #dee2e6 #dee2e6 #f8fafc;
}
.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: #01dcc8;
}

.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, body.backend .navbar > .container,
body.backend .navbar > .container-fluid,
body.backend .navbar > .container-sm,
body.backend .navbar > .container-md,
body.backend .navbar > .container-lg,
body.backend .navbar > .container-xl, body.building-frontend .navbar > .container,
body.building-frontend .navbar > .container-fluid,
body.building-frontend .navbar > .container-sm,
body.building-frontend .navbar > .container-md,
body.building-frontend .navbar > .container-lg,
body.building-frontend .navbar > .container-xl,
body.building-frontend .navbar > .container-xxl,
body.backend .navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  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.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  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;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@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;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@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;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .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;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@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-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.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-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.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 + .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-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff;
}

.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: 0.9rem;
  color: #212529;
  text-align: left;
  background-color: #f8fafc;
  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: #01c6b4;
  background-color: #e6fcfa;
  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='%2301c6b4'%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: #80eee4;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}

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

.accordion-item {
  background-color: #f8fafc;
  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: #01dcc8;
  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: #01b0a0;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #01b0a0;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(1, 220, 200, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #01dcc8;
  border-color: #01dcc8;
}
.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.125rem;
}
.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.7875rem;
}
.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 {
  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: #005850;
  background-color: #ccf8f4;
  border-color: #b3f5ef;
}
.alert-primary .alert-link {
  color: #004640;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.675rem;
  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: #01dcc8;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

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

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            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: #01dcc8;
  border-color: #01dcc8;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@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: #005850;
  background-color: #ccf8f4;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #005850;
  background-color: #b8dfdc;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #005850;
  border-color: #005850;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.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(1, 220, 200, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-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.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: -webkit-max-content;
  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: 1055;
  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: 1050;
  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.6;
}

.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: 1200px) {
  .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: 1199.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: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  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.7875rem;
  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], body.building-frontend .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, body.building-frontend .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], body.building-frontend .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, body.building-frontend .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], body.building-frontend .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, body.building-frontend .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], body.building-frontend .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, body.building-frontend .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: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  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.7875rem;
  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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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 #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow, body.building-frontend .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, body.building-frontend .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, body.building-frontend .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: 0.9rem;
  background-color: #f0f0f0;
  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%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

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

/* 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%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          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;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

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

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  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-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

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

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

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
          animation: placeholder-glow 2s ease-in-out infinite;
}

@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
          mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-animation: placeholder-wave 2s linear infinite;
          animation: placeholder-wave 2s linear infinite;
}

@-webkit-keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #01dcc8;
}
.link-primary:hover, .link-primary:focus {
  color: #34e3d3;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.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: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

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

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

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

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !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: -webkit-sticky !important;
  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: #01dcc8 !important;
}

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

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

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

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

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

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

.border-dark {
  border-color: #212529 !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 {
  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 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

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

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

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

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-2 {
  font-size: calc(1.305rem + 0.66vw) !important;
}

.fs-3 {
  font-size: calc(1.2825rem + 0.39vw) !important;
}

.fs-4 {
  font-size: calc(1.26rem + 0.12vw) !important;
}

.fs-5 {
  font-size: 1.125rem !important;
}

.fs-6 {
  font-size: 0.9rem !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.6 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  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 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.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;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-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 {
  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 {
    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 {
    order: -1 !important;
  }

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

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

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

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

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

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

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .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.25rem !important;
  }

  .fs-2 {
    font-size: 1.8rem !important;
  }

  .fs-3 {
    font-size: 1.575rem !important;
  }

  .fs-4 {
    font-size: 1.35rem !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;
  }
}
.auth-body .wrapper {
  display: block !important;
  background: unset !important;
}
.auth-body .auth-container .company__logo *, .auth-body .auth-container .company_title {
  color: #fff !important;
}
.auth-body .auth-container .link-nostyle {
  text-decoration: none;
  color: #fff;
  margin-bottom: 1rem;
}
.auth-body .auth-container .link-nostyle:hover {
  color: #9f9f9f;
}
.auth-body .auth-container .main-content {
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  margin: 5em auto;
  display: flex;
}
.auth-body .auth-container .company__info {
  background-color: #242424;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-top: 1em;
  padding-bottom: 1em;
}
.auth-body .auth-container .company__data {
  text-align: left;
  margin-top: 2em;
}
.auth-body .auth-container .company__data i {
  margin-right: 0.4em;
}
.auth-body .auth-container .fa-android {
  font-size: 3em;
}
@media screen and (max-width: 640px) {
  .auth-body .auth-container .main-content {
    width: 90%;
  }
  .auth-body .auth-container .company__info {
    display: none;
  }
  .auth-body .auth-container .login_form {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
@media screen and (min-width: 642px) and (max-width: 800px) {
  .auth-body .auth-container .main-content {
    width: 70%;
  }
}
.auth-body .auth-container .row > h2, .auth-body .auth-container body.backend .row > .h2, .auth-body .auth-container body.building-frontend .row > .h2, .auth-body .auth-container .row > .h2 {
  margin-top: 0.4em;
  color: #242424;
}
.auth-body .auth-container .login_form {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.auth-body .auth-container form {
  padding: 0 2em;
}
.auth-body .auth-container .form__input {
  width: 100%;
  border: 0px solid transparent;
  border-radius: 0;
  border-bottom: 1px solid #aaa;
  padding: 1em 0.5em 0.5em;
  padding-left: 2em;
  outline: none;
  margin: 1.5em auto;
  transition: all 0.5s ease;
}
.auth-body .auth-container .form__input.is-invalid {
  border-bottom: 1px solid #dc3545;
  margin-bottom: 0;
}
.auth-body .auth-container .form__input:focus {
  border-bottom-color: #242424;
  box-shadow: 0 0 5px rgba(36, 36, 36, 0.6);
  border-radius: 4px;
}
.auth-body .auth-container .btn {
  transition: all 0.5s ease;
  width: 70%;
  border-radius: 30px;
  color: #242424;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #242424;
  margin: 1.5em auto 1em auto;
}
.auth-body .auth-container .btn:hover, .auth-body .auth-container .btn:focus {
  background-color: #242424;
  color: #fff;
}

body.backend {
  @import url("https://fonts.googleapis.com/css?family=Manrope:300,400,500,600,700&display=swap&subset=latin-ext");
}
body.backend .messenger {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-width: 1600px;
  height: 75vh;
  margin: 0 auto;
  overflow: hidden;
}
body.backend .messenger .blue {
  background-color: #0086ff;
}
body.backend .messenger .purple {
  background-color: #9f7aea;
}
body.backend .messenger .green {
  background-color: #38b2ac;
}
body.backend .messenger .orange {
  background-color: #ed8936;
}
body.backend .messenger * {
  outline: none;
  box-sizing: border-box;
}
body.backend .messenger img {
  max-width: 100%;
}
body.backend .messenger .header {
  height: 80px;
  width: 100%;
  border-bottom: 1px solid #eef2f4;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
body.backend .messenger .wrapper {
  width: 100%;
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  background: #fff;
}
body.backend .messenger .conversation-area,
body.backend .messenger .detail-area {
  width: 340px;
  flex-shrink: 0;
}
body.backend .messenger .detail-area {
  border-left: 1px solid #eef2f4;
  margin-left: auto;
  padding: 30px 30px 0 30px;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
body.backend .messenger .chat-area {
  flex-grow: 1;
  overflow: hidden;
}
body.backend .messenger .chat-area .chat-area-main {
  overflow-y: scroll;
  display: flex;
  flex-direction: column-reverse;
  background-size: 20em;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(https://cdn.pixabay.com/photo/2017/11/15/20/49/seamless-2952534_1280.png);
}
body.backend .messenger .search-bar {
  height: 80px;
  z-index: 3;
  position: relative;
  margin-left: 280px;
}
body.backend .messenger .search-bar input {
  height: 100%;
  width: 100%;
  display: block;
  background-color: transparent;
  border: none;
  color: #273346;
  padding: 0 54px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23c1c7cd'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 25px 48%;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
}
body.backend .messenger .search-bar input::-moz-placeholder {
  color: #a2a2a2;
}
body.backend .messenger .search-bar input:-ms-input-placeholder {
  color: #a2a2a2;
}
body.backend .messenger .search-bar input::placeholder {
  color: #a2a2a2;
}
body.backend .messenger .logo {
  color: #01dcc8;
  width: 38px;
  flex-shrink: 0;
}
body.backend .messenger .logo svg {
  width: 100%;
}
body.backend .messenger .user-settings {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
body.backend .messenger .user-settings > * + * {
  margin-left: 14px;
}
body.backend .messenger .dark-light {
  width: 22px;
  height: 22px;
  color: #c1c7cd;
  flex-shrink: 0;
}
body.backend .messenger .dark-light svg {
  width: 100%;
  fill: transparent;
  transition: 0.5s;
}
body.backend .messenger .user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
body.backend .messenger .settings {
  color: #c1c7cd;
  flex-shrink: 0;
}
body.backend .messenger .conversation-area {
  border-right: 1px solid #eef2f4;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
body.backend .messenger .msg-profile {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
body.backend .messenger .msg-profile.group {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eef2f4;
}
body.backend .messenger .msg-profile.group svg {
  width: 60%;
}
body.backend .messenger .msg {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
body.backend .messenger .msg:hover {
  background-color: rgba(238, 242, 244, 0.4);
}
body.backend .messenger .msg.active {
  background: linear-gradient(to right, rgba(238, 242, 244, 0.4) 0%, rgba(238, 242, 244, 0) 100%);
  border-left: 4px solid #01dcc8;
}
body.backend .messenger .msg.online:before {
  content: "";
  position: absolute;
  background-color: #23be7e;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #fff;
  left: 50px;
  bottom: 19px;
}
body.backend .messenger .msg-username {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 15px;
}
body.backend .messenger .msg-detail {
  overflow: hidden;
}
body.backend .messenger .msg-content {
  font-weight: 500;
  font-size: 13px;
  display: flex;
}
body.backend .messenger .msg-message {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #969eaa;
}
body.backend .messenger .msg-date {
  font-size: 14px;
  color: #c0c7d2;
  margin-left: 3px;
}
body.backend .messenger .msg-date:before {
  content: "•";
  margin-right: 2px;
}
body.backend .messenger .add {
  position: -webkit-sticky;
  position: sticky;
  bottom: 25px;
  background-color: #01dcc8;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3e%3cpath d='M12 5v14M5 12h14'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 28px;
  box-shadow: 0 0 16px #01dcc8;
  margin: auto auto -55px;
  flex-shrink: 0;
  z-index: 1;
  cursor: pointer;
}
body.backend .messenger .overlay {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 340px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 65%, white 100%);
  height: 80px;
}
body.backend .messenger .chat-area {
  display: flex;
  flex-direction: column;
  overflow: auto;
}
body.backend .messenger .chat-area-header {
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(to bottom, white 0%, white 78%, rgba(255, 255, 255, 0) 100%);
}
body.backend .messenger .chat-area-profile {
  width: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.backend .messenger .chat-area-title {
  font-size: 18px;
  font-weight: 600;
}
body.backend .messenger .chat-area-main {
  flex-grow: 1;
}
body.backend .messenger .chat-msg-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.backend .messenger .chat-msg-profile {
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: -20px;
  position: relative;
}
body.backend .messenger .chat-msg-date {
  position: absolute;
  left: calc(100% + 12px);
  bottom: 0;
  font-size: 12px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}
body.backend .messenger .chat-msg {
  display: flex;
  padding: 0 20px 20px;
}
body.backend .messenger .chat-msg-content {
  margin-left: 12px;
  max-width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body.backend .messenger .chat-msg-text {
  background-color: #a0a1a3;
  padding: 15px;
  border-radius: 20px 20px 20px 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
}
body.backend .messenger .chat-msg-text + body.backend .messenger .chat-msg-text {
  margin-top: 10px;
}
body.backend .messenger .chat-msg-text {
  color: #fff;
  margin-top: 0.2em;
}
body.backend .messenger .owner {
  flex-direction: row-reverse;
}
body.backend .messenger .owner .chat-msg-content {
  margin-left: 0;
  margin-right: 12px;
  align-items: flex-end;
}
body.backend .messenger .owner .chat-msg-text {
  background-color: #01dcc8;
  color: #fff;
  border-radius: 20px 20px 0 20px;
}
body.backend .messenger .owner .chat-msg-date {
  left: auto;
  right: calc(100% + 12px);
}
body.backend .messenger .chat-msg-text img {
  max-width: 300px;
  width: 100%;
}
body.backend .messenger .chat-area-footer {
  display: flex;
  border-top: 1px solid #eef2f4;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
}
body.backend .messenger .chat-area-footer svg {
  color: #c1c7cd;
  width: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
body.backend .messenger .chat-area-footer svg:hover {
  color: #9fa7ac;
}
body.backend .messenger .chat-area-footer svg + svg {
  margin-left: 12px;
}
body.backend .messenger .chat-area-footer input {
  border: none;
  color: #273346;
  background-color: #f8f8fa;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  margin: 0 12px;
  width: 100%;
}
body.backend .messenger .chat-area-footer input::-moz-placeholder {
  color: #a2a2a2;
}
body.backend .messenger .chat-area-footer input:-ms-input-placeholder {
  color: #a2a2a2;
}
body.backend .messenger .chat-area-footer input::placeholder {
  color: #a2a2a2;
}
body.backend .messenger .chat-area-group {
  flex-shrink: 0;
  display: flex;
}
body.backend .messenger .chat-area-group * {
  border: 2px solid #fff;
}
body.backend .messenger .chat-area-group * + * {
  margin-left: -5px;
}
body.backend .messenger .chat-area-group span {
  width: 32px;
  height: 32px;
  background-color: #f0f7ff;
  color: #01dcc8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 780px) {
  body.backend .messenger .conversation-area {
    display: none;
  }
  body.backend .messenger .search-bar {
    margin-left: 0;
    flex-grow: 1;
  }
  body.backend .messenger .search-bar input {
    padding-right: 10px;
  }
}
body.backend .dropdown-toggle:after {
  padding: 0 !important;
  transform: rotate(0deg) !important;
}
body.backend .sidebar-link:hover {
  text-decoration: none !important;
}

.multiselect-dropdown {
  display: block;
  width: 100% !important;
  padding: 0.3rem 2.55rem 0.3rem 0.85rem !important;
  -moz-padding-start: calc(0.85rem - 3px) !important;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #495057;
  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.85rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cookie-compliance-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 995;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #636b6f;
  font-family: "Nunito", sans-serif;
  font-weight: 200;
  line-height: 1.5;
}
.cookie-compliance-modal::before {
  content: "";
  background-color: #6b7280;
  opacity: 0.75;
  width: 100vw;
  height: 100vh;
  display: block;
  position: absolute;
  z-index: 5;
}
.cookie-compliance-modal .cc-modal {
  background: #fff;
  border-radius: 0.5rem;
  max-width: 40rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  color: #161e2e;
  max-height: 85vh;
  overflow: auto;
}
.cookie-compliance-modal .cc-modal .cc-modal-content {
  padding: 1.5rem 1.5rem 1rem;
}
.cookie-compliance-modal .cc-modal .cc-modal-content .cc-modal-title {
  margin: 0;
  font-size: 1.125rem;
}
.cookie-compliance-modal .cc-modal .cc-modal-content .cc-modal-text {
  margin-top: 0.5rem;
}
.cookie-compliance-modal .cc-modal .cc-modal-footer {
  padding: 0.75rem 1.5rem;
  background-color: #f9fafb;
}
.cookie-compliance-modal .cc-modal .cc-modal-button-group {
  display: flex;
  justify-content: space-between;
}
.cookie-compliance-modal .cc-modal .cc-modal-button-group .cc-button {
  text-align: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: rgba(107, 114, 128, 0.5);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}
.cookie-compliance-modal .cc-modal .cc-modal-button-group .cc-button.cc-button-primary {
  background-color: #00a5d3;
}
.cookie-compliance-modal .cc-modal .cc-modal-links {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  font-size: 12px;
}
.cookie-compliance-modal .hide_cookie_preferences_modal {
  position: absolute;
  top: 15px;
  right: 15px;
}
.cookie-compliance-modal .cc-modal-links a {
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  color: #3f475c;
  text-decoration: none;
  cursor: pointer;
}
.cookie-compliance-modal .cc-modal-links a:not(:last-child) {
  border-right: 1px solid rgba(107, 114, 128, 0.5);
}
.cookie-compliance-modal a[data-cc-toggle]:after {
  border-style: solid;
  border-width: 0.05em 0.05em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  margin-left: 0.25rem;
  position: relative;
  top: 0;
  transform: rotate(135deg);
  vertical-align: top;
  width: 0.45em;
  transition: all 0.35s;
}
.cookie-compliance-modal a[data-cc-toggle].active:after {
  top: 0.15em;
  transform: rotate(-45deg);
}
.cookie-compliance-modal .cc-modal-settings {
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
  max-height: 0;
  overflow: hidden;
}
.cookie-compliance-modal .cc-modal-settings.active {
  opacity: 1;
  visibility: visible;
  max-height: 500vh;
  padding: 25px 0;
  margin-top: 30px;
  border-top: 1px solid rgba(107, 114, 128, 0.15);
}
.cookie-compliance-modal h3, .cookie-compliance-modal body.backend .h3, body.backend .cookie-compliance-modal .h3, .cookie-compliance-modal body.building-frontend .h3, body.building-frontend .cookie-compliance-modal .h3, .cookie-compliance-modal .h3 {
  margin: 0;
}
.cookie-compliance-modal h4, .cookie-compliance-modal body.backend .h4, body.backend .cookie-compliance-modal .h4, .cookie-compliance-modal body.building-frontend .h4, body.building-frontend .cookie-compliance-modal .h4, .cookie-compliance-modal .h4 {
  margin: 1rem 0 0.5rem;
  font-size: 18px;
  text-align: left;
}
.cookie-compliance-modal p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}
.cookie-compliance-modal .button-optout {
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  border-radius: 3px;
  padding: 10px;
  margin: 10px;
  background: #edeef5;
  transition: background 0.5s;
}
.cookie-compliance-modal .button-optout:hover {
  background: #dcdeec;
}
.cookie-compliance-modal dl {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  opacity: 0.65;
  transition: opacity 0.35s;
}
.cookie-compliance-modal dl:hover {
  opacity: 1;
}
.cookie-compliance-modal dl dt {
  float: left;
  width: 30%;
}
.cookie-compliance-modal dl dt:after {
  content: ": ";
}
.cookie-compliance-modal dl dd {
  float: left;
  width: 70%;
  margin-left: 0;
}
.cookie-compliance-modal dl dd a {
  color: #3f475c;
  border-bottom: 1px solid #9caccf;
  text-decoration: none;
}
.cookie-compliance-modal .cookie-settings:not(:last-child) {
  margin-bottom: 1.5rem;
}
.cookie-compliance-modal .cookie-settings-content {
  margin-top: 1.25rem;
  padding: 0.25rem 1rem 1rem;
  background: rgba(107, 114, 128, 0.05);
}
.cookie-compliance-modal .cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cookie-compliance-modal .switch input {
  display: none;
}
.cookie-compliance-modal .switch input + span {
  width: 48px;
  height: 28px;
  border-radius: 14px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  background: #ff4651;
  box-shadow: 0 8px 16px -1px rgba(255, 70, 81, 0.2);
  cursor: pointer;
}
.cookie-compliance-modal .switch input + span:before, .cookie-compliance-modal .switch input + span:after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  transition: all 0.3s ease;
}
.cookie-compliance-modal .switch input + span:before {
  top: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border: 5px solid #fff;
}
.cookie-compliance-modal .switch input + span:after {
  top: 5px;
  left: 32px;
  width: 6px;
  height: 18px;
  border-radius: 40%;
  transform-origin: 50% 50%;
  background: #fff;
  opacity: 0;
}
.cookie-compliance-modal .switch input + span:active {
  transform: scale(0.92);
}
.cookie-compliance-modal .switch input:checked + span {
  background: #48ea8b;
  box-shadow: 0 8px 16px -1px rgba(72, 234, 139, 0.2);
}
.cookie-compliance-modal .switch input:disabled + span {
  opacity: 0.5;
  cursor: default;
}
.cookie-compliance-modal .switch input:checked + span:before {
  width: 0px;
  border-radius: 3px;
  margin-left: 27px;
  border-width: 3px;
  background: #fff;
}
.cookie-compliance-modal .switch input:checked + span:after {
  -webkit-animation: blobChecked 0.35s linear forwards 0.2s;
          animation: blobChecked 0.35s linear forwards 0.2s;
}
.cookie-compliance-modal .switch input:not(:checked) + span:before {
  -webkit-animation: blob 0.85s linear forwards 0.2s;
          animation: blob 0.85s linear forwards 0.2s;
}
@-webkit-keyframes blob {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.12, 0.94);
  }
  60% {
    transform: scale(0.96, 1.06);
  }
}
@keyframes blob {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.12, 0.94);
  }
  60% {
    transform: scale(0.96, 1.06);
  }
}
@-webkit-keyframes blobChecked {
  0% {
    opacity: 1;
    transform: scaleX(1);
  }
  30% {
    transform: scaleX(1.44);
  }
  70% {
    transform: scaleX(1.18);
  }
  50%, 99% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}
@keyframes blobChecked {
  0% {
    opacity: 1;
    transform: scaleX(1);
  }
  30% {
    transform: scaleX(1.44);
  }
  70% {
    transform: scaleX(1.18);
  }
  50%, 99% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.dropdown-no-arrow::after {
  content: none !important;
}

.text-justify {
  text-align: justify !important;
}

.dropdown-menu-lg {
  min-width: 20rem !important;
}

nav[role=navigation] > div:first-child {
  display: none !important;
}
nav[role=navigation] > div:nth-child(2) {
  margin-bottom: 10px;
  padding: 10px;
}
nav[role=navigation] svg {
  width: 15px;
  height: 15px;
}
nav[role=navigation] span[aria-current=page] {
  margin-right: -4px;
}

.bg-gray {
  background-color: #6c757d;
}

.frontend {
  font-family: "Roboto", Arial, sans-serif;
  background: #f8f8f8;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #999999;
  /* Blog*/
}
.frontend a, .frontend button {
  transition: 0.3s all ease;
  color: #01dcc8;
  text-decoration: none;
}
.frontend a:hover, .frontend a:focus, .frontend button:hover, .frontend button:focus {
  text-decoration: none;
  color: #01dcc8;
  outline: none !important;
  box-shadow: none !important;
}
.frontend h1, .frontend body.backend .h1, body.backend .frontend .h1, .frontend body.building-frontend .h1, body.building-frontend .frontend .h1, .frontend h2, .frontend body.backend .h2, body.backend .frontend .h2, .frontend body.building-frontend .h2, body.building-frontend .frontend .h2, .frontend h3, .frontend body.backend .h3, body.backend .frontend .h3, .frontend body.building-frontend .h3, body.building-frontend .frontend .h3, .frontend h4, .frontend body.backend .h4, body.backend .frontend .h4, .frontend body.building-frontend .h4, body.building-frontend .frontend .h4, .frontend h5, .frontend body.backend .h5, body.backend .frontend .h5, .frontend body.building-frontend .h5, body.building-frontend .frontend .h5,
.frontend .h1, .frontend .h2, .frontend .h3, .frontend .h4, .frontend .h5 {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
}
.frontend .text-primary {
  color: #01dcc8 !important;
}
.frontend .ftco-navbar-light {
  transition: all 0.6s ease;
}
.frontend .ftco-navbar-light.scroll {
  background-color: #01dcc8;
  padding: 0;
}
.frontend .ftco-navbar-light.scroll .navbar-nav > .nav-item > .nav-link.activeme {
  background: #2bfeeb;
  color: #fff;
  position: relative;
}
.frontend .ftco-navbar-light.scroll .navbar-nav > .nav-item > .nav-link.activeme:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #2bfeeb transparent transparent transparent;
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light.scroll {
    padding: 15px 0 !important;
  }
  .frontend .ftco-navbar-light.scroll .navbar-nav > .nav-item > .nav-link.activeme {
    background: transparent;
    color: #fff !important;
  }
  .frontend .ftco-navbar-light.scroll .navbar-nav > .nav-item > .nav-link.activeme:after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light {
    background: #01f5df !important;
  }
}
.frontend .ftco-navbar-light .navbar-brand {
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 0;
}
.frontend .ftco-navbar-light .navbar-brand:hover, .frontend .ftco-navbar-light .navbar-brand:focus {
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .frontend .ftco-navbar-light .navbar-brand {
    color: #fff;
  }
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light .navbar-nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .frontend .ftco-navbar-light .navbar-nav {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-right: 0;
  }
}
.frontend .ftco-navbar-light .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  transition: all 0.3s ease;
}
.frontend .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
  font-size: 15px;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  padding-left: 25px;
  padding-right: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.frontend .ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light .navbar-nav > .nav-item > .nav-link span {
    display: inline-block;
  }
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 1rem;
    padding-top: 0;
  }
}
.frontend .ftco-navbar-light .navbar-nav > .nav-item > .nav-link.activeme {
  color: #fff;
  position: relative;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .frontend .ftco-navbar-light .navbar-nav > .nav-item.activeme > a {
    color: #fff;
    background: transparent;
  }
}
.frontend .ftco-navbar-light .btn-custom {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.3);
  background: #01dcc8;
  padding: 1.5rem;
  color: #fff;
  border-radius: 0;
  position: relative;
  display: inline-block;
  width: 250px;
  z-index: 0;
  text-align: center;
  border: 1px solid transparent;
  letter-spacing: 2px;
}
.frontend .ftco-navbar-light .btn-custom:before {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -20px;
  width: 100px;
  background: #01dcc8;
  transform: skewX(-20deg);
  z-index: -1;
  content: "";
}
@media (max-width: 991.98px) {
  .frontend .ftco-navbar-light .btn-custom:before {
    display: none;
  }
}
.frontend .ftco-navbar-light .navbar-toggler {
  border: none;
  color: rgba(255, 255, 255, 0.9) !important;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.frontend .ftco-navbar-light .navbar-toggler:hover, .frontend .ftco-navbar-light .navbar-toggler:focus {
  text-decoration: none;
  color: #01dcc8;
  outline: none !important;
  box-shadow: none;
}
.frontend .navbar-brand {
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  z-index: 3;
  position: relative;
  line-height: 1.1;
}
@media (max-width: 575.98px) {
  .frontend .navbar-brand {
    line-height: 1;
  }
}
.frontend .hero-wrap {
  height: 100vh;
  min-height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  z-index: 0;
}
.frontend .hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: #111111;
  z-index: -1;
}
.frontend .hero-wrap.hero-wrap-2 {
  min-height: auto;
  height: 700px;
  background-position: top center;
  background-attachment: fixed;
}
.frontend .hero-wrap.hero-wrap-2 .overlay {
  opacity: 0;
}
.frontend .hero-wrap.hero-wrap-2 .slider-text {
  min-height: auto;
  height: 700px;
}
.frontend .hero-wrap .slider-text {
  height: 100vh;
  min-height: 750px;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}
.frontend .hero-wrap .slider-text .text {
  position: relative;
  z-index: 0;
}
.frontend .hero-wrap .slider-text .subheading {
  font-weight: 700;
  color: #01dcc8;
  font-size: 13px;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
  z-index: 0;
  display: inline-block;
  background: #fff;
  border-radius: 4px;
  padding: 4px 9px;
}
.frontend .hero-wrap .slider-text .subheading:after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
.frontend .hero-wrap .slider-text h1, .frontend .hero-wrap .slider-text .h1 {
  font-weight: 400;
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
}
.frontend .hero-wrap .slider-text h1 span, .frontend .hero-wrap .slider-text .h1 span {
  color: #fff;
}
.frontend .hero-wrap .slider-text h1 span .wrap, .frontend .hero-wrap .slider-text .h1 span .wrap {
  border-right: 1px solid transparent;
  position: relative;
}
.frontend .hero-wrap .slider-text h1 span .wrap:after, .frontend .hero-wrap .slider-text .h1 span .wrap:after {
  position: absolute;
  bottom: 15px;
  right: -22px;
  content: "";
  width: 20px;
  height: 4px;
  background: #fff;
  -webkit-animation: blink 1s linear infinite;
          animation: blink 1s linear infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .frontend .hero-wrap .slider-text h1, .frontend .hero-wrap .slider-text .h1 {
    font-size: 40px;
  }
}
.frontend .hero-wrap .slider-text .social-media {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.frontend .hero-wrap .slider-text .social-media a {
  color: #fff;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .frontend .hero-wrap .slider-text .btn {
    width: 100%;
    display: block;
    margin-bottom: 5px;
  }
}
.frontend .hero-wrap .slider-text .breadcrumbs {
  font-size: 14px;
  margin-bottom: 10px;
  z-index: 99;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.frontend .hero-wrap .slider-text .breadcrumbs span {
  color: rgba(255, 255, 255, 0.8);
}
.frontend .hero-wrap .slider-text .breadcrumbs span i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}
.frontend .hero-wrap .slider-text .breadcrumbs span a {
  color: rgba(255, 255, 255, 0.8);
}
.frontend .hero-wrap .slider-text .breadcrumbs span a:hover, .frontend .hero-wrap .slider-text .breadcrumbs span a:focus {
  color: #01dcc8;
}
.frontend .hero-wrap .slider-text .breadcrumbs span a:hover i, .frontend .hero-wrap .slider-text .breadcrumbs span a:focus i {
  color: #01dcc8;
}
.frontend .hero-wrap .slider-text .bread {
  font-weight: 400;
  color: #fff;
  font-size: 70px;
}
.frontend .bg-light {
  background: #f8f8f8 !important;
}
.frontend .bg-primary {
  background: #01dcc8 !important;
}
.frontend .bg-black {
  background: #000000;
}
.frontend .bg-secondary {
  background: #01dcc8;
}
.frontend .bg-darken {
  background: #111111 !important;
}
.frontend .btn {
  padding: 9px 12px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.frontend .btn span {
  font-size: 16px;
  line-height: 1;
  margin-left: 10px;
}
.frontend .btn:hover, .frontend .btn:active, .frontend .btn:focus {
  outline: none;
}
.frontend .btn.btn-primary {
  background: #01dcc8 !important;
  border: 1px solid #01dcc8 !important;
  color: #fff !important;
}
.frontend .btn.btn-primary span {
  color: #fff !important;
}
.frontend .btn.btn-primary:hover {
  border: 1px solid #01dcc8;
  background: transparent;
  color: #01dcc8;
}
.frontend .btn.btn-primary.btn-outline-primary {
  border: 1px solid #01dcc8 !important;
  background: transparent !important;
  color: #01dcc8 !important;
}
.frontend .btn.btn-primary.btn-outline-primary:hover {
  border: 1px solid transparent !important;
  background: #01dcc8 !important;
  color: #fff !important;
}
.frontend .btn.btn-white {
  background: #fff !important;
  border: 1px solid #fff !important;
  color: #01dcc8 !important;
}
.frontend .btn.btn-white:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.frontend .btn.btn-white.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  color: #fff !important;
}
.frontend .btn.btn-white.btn-outline-white:hover {
  border: 1px solid transparent !important;
  background: #fff !important;
  color: #000000 !important;
}
.frontend .btn.btn-black {
  background: #000000 !important;
  border: 1px solid #000000 !important;
  color: #fff !important;
}
.frontend .btn.btn-black:hover {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
}
.frontend .btn.btn-black.btn-outline-black {
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
}
.frontend .btn.btn-black.btn-outline-black:hover {
  border: 1px solid transparent;
  background: #000000;
  color: #000000;
}
.frontend .btn.btn-darken {
  background: #111111 !important;
  border: 1px solid #111111 !important;
  color: #fff !important;
}
.frontend .btn.btn-darken:hover {
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
}
.frontend .btn.btn-darken.btn-outline-darken {
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
}
.frontend .btn.btn-darken.btn-outline-darken:hover {
  border: 1px solid transparent;
  background: #111111;
  color: #111111;
}
.frontend .aside-stretch {
  background: #01dcc8;
}
.frontend .aside-stretch:after {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  content: "";
  width: 360%;
  background: #01dcc8;
}
.frontend .img-about {
  height: 600px;
  position: relative;
  width: 100%;
}
.frontend .img-about:after {
  position: absolute;
  bottom: 30px;
  left: -30px;
  width: 100%;
  height: 100px;
  content: "";
  background: #f2f2f2;
  background: #45feed;
  z-index: -1;
}
.frontend .img-about:before {
  position: absolute;
  bottom: 130px;
  left: -30px;
  width: 100%;
  height: 100px;
  content: "";
  background: #f2f2f2;
  background: #78fef2;
  z-index: -1;
}
.frontend .nav-tabs {
  border: none;
}
.frontend .nav-tabs .nav-item {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
.frontend .nav-tabs .nav-item .nav-link {
  border: none;
  color: #777777;
  background: #fff;
  margin-right: 10px;
}
.frontend .nav-tabs .nav-item .nav-link.active {
  background: #01dcc8;
  border-radius: 4px;
  color: #fff;
  position: relative;
}
.frontend .nav-tabs .nav-item .nav-link.active:after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #01dcc8 transparent transparent transparent;
}
.frontend .progress-wrap {
  width: 100%;
  margin-bottom: 30px;
}
.frontend .progress-wrap h3, .frontend .progress-wrap .h3 {
  font-size: 14px !important;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.frontend .progress {
  height: 8px;
  box-shadow: none;
  background: rgba(0, 0, 0, 0.05);
  overflow: visible;
}
.frontend .progress-bar {
  background: #01dcc8;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
  font-weight: 600;
  position: relative;
  overflow: visible;
  border-radius: 2px;
}
.frontend .progress-bar:after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 34px;
  height: 34px;
  content: "";
  background: #01dcc8;
  border-radius: 2px;
  opacity: 0;
}
.frontend .progress-bar span {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 16px;
  font-weight: 400;
  color: #01dcc8;
}
.frontend .resume-wrap {
  padding: 0;
  position: relative;
  margin-bottom: 10px;
}
.frontend .resume-wrap span.date {
  font-size: 13px;
  font-weight: 500;
  color: #01dcc8;
}
.frontend .resume-wrap h2, .frontend .resume-wrap .h2 {
  font-size: 20px !important;
  margin-bottom: 0;
}
.frontend .resume-wrap span.position {
  font-size: 13px;
  font-weight: 500;
  color: #cccccc;
}
.frontend .resume-wrap span.position i {
  color: #01dcc8;
}
.frontend .project {
  width: 100%;
  height: 350px;
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
}
.frontend .project.img-2 {
  height: 600px;
}
@media (max-width: 575.98px) {
  .frontend .project.img-2 {
    height: 285px;
  }
}
.frontend .project.img-2 .text {
  max-width: 45%;
  z-index: 1;
}
.frontend .project.img-2 .text h3, .frontend .project.img-2 .text .h3 {
  font-size: 22px;
}
.frontend .project.img-2 .text h3 a, .frontend .project.img-2 .text .h3 a {
  color: #fff;
}
.frontend .project.img-2 .text span {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 575.98px) {
  .frontend .project.img-2 .text {
    max-width: 100%;
    opacity: 1;
  }
  .frontend .project.img-2 .text span {
    color: rgba(255, 255, 255, 0.8);
  }
}
.frontend .project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  background: #01dcc8;
  z-index: -1;
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .frontend .project .overlay {
    opacity: 0.2;
  }
}
.frontend .project .text {
  max-width: 80%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
}
.frontend .project .text h3, .frontend .project .text .h3 {
  font-size: 20px;
}
.frontend .project .text h3 a, .frontend .project .text .h3 a {
  color: #fff;
}
.frontend .project .text span {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .frontend .project .text {
    opacity: 1;
  }
  .frontend .project .text span {
    color: rgba(255, 255, 255, 0.8);
  }
}
.frontend .project:hover .overlay, .frontend .project:focus .overlay {
  opacity: 0.9;
}
.frontend .project:hover .text, .frontend .project:focus .text {
  opacity: 1;
}
.frontend .form-control {
  height: 45px;
  background: #fff;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.frontend .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .form-control:focus, .frontend .form-control:active {
  border-color: #01dcc8 !important;
}
.frontend textarea.form-control {
  height: inherit !important;
}
.frontend .services-2 {
  width: 100%;
  background: #fff;
  padding: 40px;
  margin-bottom: 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 25px -2px rgba(0, 0, 0, 0.01);
}
@media (max-width: 1199.98px) {
  .frontend .services-2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .frontend .services-2 {
    border-radius: 2px;
    margin-bottom: 10px;
  }
}
.frontend .services-2 .icon {
  width: 70px;
  height: 60px;
  background: #01dcc8;
  margin-bottom: 20px;
  position: relative;
}
.frontend .services-2 .icon:after {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #01dcc8 transparent transparent transparent;
}
.frontend .services-2 .icon span {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
}
.frontend .services-2 .icon span:after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 34px;
  height: 34px;
  content: "";
  background: #01dcc8;
  border-radius: 2px;
  opacity: 0;
}
.frontend .services-2 .text {
  width: 100%;
}
.frontend .services-2 .text h2, .frontend .services-2 .text .h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Roboto", Arial, sans-serif;
  color: #01dcc8;
}
.frontend .block-7 {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  padding: 40px 0 40px 0;
  background: #fff;
  box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .frontend .block-7 {
    margin-top: 30px;
  }
}
.frontend .block-7 .heading-2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.frontend .block-7 .price {
  margin: 0;
  padding: 0;
  display: block;
}
.frontend .block-7 .price sup {
  font-size: 24px;
  top: -0.8em;
  color: #01dcc8;
}
.frontend .block-7 .price .number {
  font-size: 50px;
  font-weight: 600;
  color: #01dcc8;
}
.frontend .block-7 .excerpt {
  margin-bottom: 0;
  color: #01dcc8;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}
.frontend .block-7 .label2 {
  text-transform: uppercase;
}
.frontend .block-7 .btn-primary {
  color: #fff;
  text-transform: uppercase;
  font-style: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  width: 60%;
  margin: 0 auto;
}
.frontend .block-7:hover, .frontend .block-7:focus {
  box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.11);
}
.frontend .about-author .bio {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
}
.frontend .about-author .desc {
  width: calc(100% - 80px);
}
.frontend .about-author .desc h3, .frontend .about-author .desc .h3 {
  font-size: 30px;
  font-weight: 400;
}
.frontend .ftco-section {
  padding: 8em 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 575.98px) {
  .frontend .ftco-section {
    padding: 6em 0;
  }
}
.frontend .ftco-no-pt {
  padding-top: 0 !important;
}
.frontend .ftco-no-pb {
  padding-bottom: 0 !important;
}
.frontend .ftco-bg-dark {
  background: #3c312e;
}
.frontend .ftco-intro {
  width: 100%;
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.8);
}
.frontend .ftco-intro h2, .frontend .ftco-intro .h2 {
  color: #fff;
  font-size: 27px;
  font-weight: 500;
}
.frontend .ftco-intro .subscribe-form {
  width: 100%;
}
.frontend .ftco-intro .subscribe-form .form-group {
  position: relative;
  margin-bottom: 0;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
}
.frontend .ftco-intro .subscribe-form .form-group input {
  background: transparent !important;
  color: white !important;
  font-size: 16px;
  padding: 0 15px;
  border-radius: 5px 0px 0px 5px;
  border: none !important;
}
.frontend .ftco-intro .subscribe-form .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: white !important;
}
.frontend .ftco-intro .subscribe-form .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: white !important;
}
.frontend .ftco-intro .subscribe-form .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: white !important;
}
.frontend .ftco-intro .subscribe-form .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
}
.frontend .ftco-intro .subscribe-form .form-group input:focus {
  outline: none !important;
  border: none !important;
}
.frontend .ftco-intro .subscribe-form .form-group .btn-icon span {
  color: #fff;
}
.frontend .ftco-intro .subscribe-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
}
.frontend .ftco-footer {
  padding: 5em 0 0 0;
  background: #eeeeee;
}
.frontend .ftco-footer .logo a {
  position: relative;
  text-decoration: none;
  color: #111111;
  font-size: 22px;
}
.frontend .ftco-footer .logo a span {
  color: #01dcc8;
}
.frontend .ftco-footer .ftco-footer-widget h2, .frontend .ftco-footer .ftco-footer-widget .h2 {
  color: #111111;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto", Arial, sans-serif;
}
.frontend .ftco-footer .ftco-footer-widget ul li {
  margin-bottom: 10px;
}
.frontend .ftco-footer .ftco-footer-widget ul li a {
  color: #666666;
}
.frontend .ftco-footer .ftco-footer-widget ul li a span {
  font-size: 14px;
  color: #01dcc8;
}
.frontend .ftco-footer .ftco-footer-widget ul li a:hover {
  color: #01dcc8;
}
.frontend .ftco-footer .ftco-footer-widget ul li a:hover span {
  color: #01dcc8;
}
.frontend .ftco-footer .ftco-footer-widget .btn-primary {
  background: #fff !important;
  border: 2px solid #fff !important;
}
.frontend .ftco-footer .ftco-footer-widget .btn-primary:hover {
  background: #fff;
  border: 2px solid #fff !important;
}
.frontend .ftco-footer .block-23 ul {
  padding: 0;
}
.frontend .ftco-footer .block-23 ul li {
  font-size: 15px;
}
.frontend .ftco-footer .block-23 ul li, .frontend .ftco-footer .block-23 ul li > a {
  display: table;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 15px;
}
.frontend .ftco-footer .block-23 ul li span {
  color: rgba(0, 0, 0, 0.7);
  color: #01dcc8;
}
.frontend .ftco-footer .block-23 ul li .icon, .frontend .ftco-footer .block-23 ul li .text {
  display: table-cell;
  vertical-align: top;
  color: rgba(0, 0, 0, 0.8) !important;
}
.frontend .ftco-footer .block-23 ul li .icon {
  width: 40px;
  font-size: 15px;
  padding-top: 2px;
  color: #01dcc8 !important;
}
.frontend .ftco-footer .bg-darken {
  background: #e9e9e9 !important;
}
.frontend .ftco-footer-social li {
  list-style: none;
  margin: 0 5px 0 0;
  display: inline-block;
}
.frontend .ftco-footer-social li a {
  height: 40px;
  width: 40px;
  display: block;
  color: #fff;
  border-radius: 50%;
  position: relative;
  background: #01dcc8;
}
.frontend .ftco-footer-social li a span {
  position: absolute;
  font-size: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff !important;
}
.frontend .ftco-footer-social li a:hover {
  color: #fff !important;
}
.frontend #map {
  width: 100%;
}
@media (max-width: 767.98px) {
  .frontend #map {
    height: 300px;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 220, 200, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(1, 220, 200, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 220, 200, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(1, 220, 200, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(1, 220, 200, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(1, 220, 200, 0);
  }
}
.frontend .heading-section .subheading {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
  color: #01dcc8;
  font-weight: 700;
  text-transform: uppercase;
}
.frontend .heading-section h2, .frontend .heading-section .h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 991.98px) {
  .frontend .heading-section h2, .frontend .heading-section .h2 {
    font-size: 30px;
  }
}
.frontend .heading-section h3, .frontend .heading-section .h3 {
  font-size: 24px;
  font-weight: 700;
}
.frontend .heading-section.heading-section-white {
  color: rgba(255, 255, 255, 0.9);
}
.frontend .heading-section.heading-section-white .subheading {
  color: #fff;
}
.frontend .heading-section.heading-section-white h2, .frontend .heading-section.heading-section-white .h2 {
  color: #fff;
}
.frontend .img,
.frontend .blog-img,
.frontend .user-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.frontend .testimony-section {
  position: relative;
  z-index: 0;
}
.frontend .testimony-section .tns-outer {
  position: relative;
  padding-bottom: 3em !important;
}
.frontend .testimony-section .tns-ovh {
  padding: 2em 0 0 0;
}
.frontend .testimony-section .tns-controls {
  text-align: center;
  margin-bottom: 10px;
}
.frontend .testimony-section .tns-nav {
  text-align: center;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.frontend .testimony-section .tns-nav > [aria-controls] {
  width: 30px;
  height: 2px;
  padding: 0;
  margin: 0 5px;
  background: #ddd;
  border: 0;
}
.frontend .testimony-section .tns-outer [aria-controls], .frontend .testimony-section .tns-outer [data-action] {
  cursor: pointer;
}
.frontend .testimony-section .tns-nav > .tns-nav-active {
  background: #01dcc8;
}
.frontend .testimony-section .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .testimony-wrap {
  background: #01dcc8;
  color: rgba(255, 255, 255, 0.9);
}
.frontend .testimony-section .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .testimony-wrap .icon {
  background: #fff;
}
.frontend .testimony-section .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .testimony-wrap .icon span {
  color: #01dcc8;
}
.frontend .testimony-section .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .testimony-wrap .name {
  color: #fff;
}
.frontend .testimony-section .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active .testimony-wrap .position {
  color: #fff;
}
.frontend .testimony-wrap {
  display: block;
  position: relative;
  background: white;
  padding: 35px 30px 30px 30px !important;
  width: 98%;
  margin: 0 auto;
  box-shadow: 0px 5px 12px -9px rgba(0, 0, 0, 0.17);
}
.frontend .testimony-wrap .icon {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #01dcc8;
}
.frontend .testimony-wrap .icon span {
  color: #fff;
}
.frontend .testimony-wrap .tx {
  width: calc(100% - 80px);
}
.frontend .testimony-wrap .user-img {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
}
.frontend .testimony-wrap .name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  color: #111111;
  text-transform: uppercase;
}
.frontend .testimony-wrap .position {
  font-size: 13px;
  text-transform: uppercase;
  color: #01dcc8;
  font-weight: 500;
}
.frontend .star {
  color: #01dcc8;
}
@media (max-width: 575.98px) {
  .frontend .about-image {
    height: 400px;
    margin-bottom: 30px;
  }
}
.frontend .ftco-about-section .img {
  position: relative;
}
@media (max-width: 767.98px) {
  .frontend .ftco-about-section .img {
    height: 400px;
    width: 100%;
  }
}
.frontend .ftco-about-section .img .counter-wrap {
  position: absolute;
  bottom: 107px;
  right: -107px;
  background: #111111;
  padding: 30px;
  transform: rotate(-90deg);
}
@media (max-width: 767.98px) {
  .frontend .ftco-about-section .img .counter-wrap {
    padding: 20px;
  }
}
.frontend .ftco-about-section .img .icon span {
  font-size: 54px;
  line-height: 0;
  color: #01dcc8;
}
.frontend .ftco-about-section .img span {
  font-size: 24px;
}
.frontend .ftco-about-section .img .number {
  color: #01dcc8;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.frontend .ftco-about-section .img .caption {
  font-size: 20px;
  display: block;
  color: #fff;
}
.frontend .ftco-section-counter {
  padding: 6em 0;
  position: relative;
  z-index: 0;
}
.frontend .ftco-section-counter .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  background: #01dcc8;
  z-index: -1;
}
.frontend .section-counter .counter-wrap-2 {
  width: 100%;
  position: relative;
  z-index: 0;
  display: block;
}
@media (max-width: 991.98px) {
  .frontend .section-counter .counter-wrap-2 {
    margin-bottom: 20px !important;
  }
}
.frontend .section-counter .text {
  padding-left: 20px;
}
.frontend .section-counter .icon span {
  font-size: 60px;
  line-height: 1;
  color: #fff;
}
.frontend .section-counter .number {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: inline-block;
  margin-bottom: 5px;
  display: block;
}
.frontend .section-counter .caption {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.frontend .block-20 {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  z-index: -1;
}
.frontend .blog-entry {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0px 10px 25px -13px rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media (min-width: 768px) {
  .frontend .blog-entry {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .frontend .blog-entry {
    margin-bottom: 30px;
  }
}
.frontend .blog-entry .text {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 0;
  padding: 30px;
}
.frontend .blog-entry .text .heading {
  font-size: 20px;
  margin-bottom: 0;
  font-weight: 500;
}
.frontend .blog-entry .text .heading a {
  color: #000000;
}
.frontend .blog-entry .text .heading a:hover, .frontend .blog-entry .text .heading a:focus, .frontend .blog-entry .text .heading a:active {
  color: #01dcc8;
}
.frontend .blog-entry .meta-date {
  padding: 20px;
  background: #111111;
}
.frontend .blog-entry .meta-date span, .frontend .blog-entry .meta-date small, .frontend .blog-entry .meta-date .small {
  display: block;
  line-height: 1.2;
  text-transform: uppercase;
}
.frontend .blog-entry .meta-date span {
  color: #fff;
  font-size: 30px;
}
.frontend .blog-entry .meta-date small, .frontend .blog-entry .meta-date .small {
  color: #fff;
}
.frontend .blog-entry .meta {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.frontend .blog-entry .meta span {
  margin-right: 10px;
}
.frontend .blog-entry .meta span i {
  color: #01dcc8;
}
.frontend .blog-entry .btn-custom {
  text-transform: uppercase;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
}
.frontend .blog-single h2, .frontend .blog-single .h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
}
.frontend .block-27 ul {
  padding: 0;
  margin: 0;
}
.frontend .block-27 ul li {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
}
.frontend .block-27 ul li a, .frontend .block-27 ul li span {
  color: #000000;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  background: trasparent;
}
.frontend .block-27 ul li.active a, .frontend .block-27 ul li.active span, .frontend .block-27 ul li:hover a, .frontend .block-27 ul li:hover span {
  background: #01dcc8;
  color: #fff;
  border: 1px solid transparent;
}
.frontend .wrapper {
  width: 100%;
}
.frontend .wrapper .social-media h3, .frontend .wrapper .social-media .h3 {
  font-size: 20px;
  font-weight: 400;
}
.frontend .wrapper .social-media p a {
  color: #01dcc8;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-right: 10px;
}
.frontend .wrapper .social-media p a:hover {
  color: #000000;
}
.frontend .contact-wrap {
  background: #fff;
}
.frontend .contact-wrap h3, .frontend .contact-wrap .h3 {
  color: #000000;
  font-weight: 400;
  font-size: 30px;
}
@media (max-width: 767.98px) {
  .frontend .info-wrap {
    height: 400px;
  }
}
.frontend .dbox {
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .frontend .dbox {
    margin-bottom: 0;
  }
}
.frontend .dbox p {
  margin-bottom: 0;
}
.frontend .dbox p span {
  font-weight: 400;
  color: #000000;
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
.frontend .dbox p a {
  color: black;
}
.frontend .dbox .text {
  width: 100%;
}
.frontend .contactForm .label {
  color: #01dcc8;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.frontend .contactForm .form-group {
  width: 100%;
  margin-bottom: 10px;
}
.frontend .contactForm .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.frontend .block-21 .blog-img {
  display: block;
  height: 80px;
  width: 80px;
}
.frontend .block-21 .text {
  width: calc(100% - 90px);
}
.frontend .block-21 .text .heading {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
.frontend .block-21 .text .heading a {
  color: #000000;
}
.frontend .block-21 .text .heading a:hover, .frontend .block-21 .text .heading a:active, .frontend .block-21 .text .heading a:focus {
  color: #01dcc8;
}
.frontend .block-21 .text .meta > div {
  display: inline-block;
  font-size: 12px;
  margin-right: 5px;
}
.frontend .block-21 .text .meta > div a {
  color: gray;
  color: #01dcc8;
}
.frontend .post-info {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
.frontend .post-info > div {
  display: inline-block;
}
.frontend .post-info > div .seperator {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.5;
}
.frontend .tagcloud a {
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 7px;
  margin-right: 4px;
  border-radius: 4px;
  color: #01dcc8;
  font-weight: 500;
  font-size: 12px;
  background: #fff;
}
.frontend .comment-form-wrap {
  clear: both;
}
.frontend .comment-form-wrap .comment-form {
  background: #fff;
}
.frontend .comment-form-wrap .form-group {
  width: 100%;
  margin-bottom: 10px;
}
.frontend .comment-form-wrap .form-group label {
  font-size: 13px;
  text-transform: uppercase;
  color: #01dcc8;
  font-weight: 700;
  margin-bottom: 10px;
}
.frontend .comment-form-wrap .form-control {
  height: 45px;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  border-radius: 2px;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.frontend .comment-form-wrap .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .comment-form-wrap .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .comment-form-wrap .form-control:-ms-input-placeholder {
  /* IE 0+ */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .comment-form-wrap .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3) !important;
}
.frontend .comment-form-wrap .form-control:focus, .frontend .comment-form-wrap .form-control:active {
  border-color: #01dcc8 !important;
}
.frontend .comment-form-wrap textarea.form-control {
  height: inherit !important;
}
.frontend .comment-list {
  padding: 0;
  margin: 0;
}
.frontend .comment-list .children {
  padding: 50px 0 0 40px;
  margin: 0;
  float: left;
  width: 100%;
}
.frontend .comment-list li {
  padding: 0;
  margin: 0 0 30px 0;
  float: left;
  width: 100%;
  clear: both;
  list-style: none;
}
.frontend .comment-list li .vcard {
  width: 80px;
  float: left;
}
.frontend .comment-list li .vcard img {
  width: 50px;
  border-radius: 50%;
}
.frontend .comment-list li .comment-body {
  float: right;
  width: calc(100% - 80px);
}
.frontend .comment-list li .comment-body h3, .frontend .comment-list li .comment-body .h3 {
  font-size: 18px;
  font-weight: 500;
}
.frontend .comment-list li .comment-body .meta {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: ligten(#111111, 30%);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.frontend .comment-list li .comment-body .reply {
  padding: 5px 10px;
  background: #e6e6e6;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 4px;
  background: #01dcc8;
}
.frontend .comment-list li .comment-body .reply:hover {
  color: #fff;
  background: black;
}
.frontend .nav-tabs .nav-item button {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}
