/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the top of the
 * compiled file, but it's generally better to create a new file per style scope.
 *



















 */
@import url(fontawesome/css/all.min.css);


/*!
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.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);
    -webkit-transform: translate3d(0,0,0);
    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);
    -webkit-transform: translate3d(0, -30px, 0);
    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);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    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);
    -webkit-transform: translate3d(0,0,0);
    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);
    -webkit-transform: translate3d(0, -30px, 0);
    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);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

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

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  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 {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

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

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

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

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    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 {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  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;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 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;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 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;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

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

  to {
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

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

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

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

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

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    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;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    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 {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

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

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

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

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    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 {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

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

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    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 {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    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 {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    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;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    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;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    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 {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
[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]{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)}
@font-face {
    font-family: 'icomoon';
    src:    url('../fonts/icomoon/icomoon.eot?1oniuf');
    src:    url('../fonts/icomoon/icomoon.eot?1oniuf#iefix') format('embedded-opentype'),
        url('../fonts/icomoon/icomoon.ttf?1oniuf') format('truetype'),
        url('../fonts/icomoon/icomoon.woff?1oniuf') format('woff'),
        url('../fonts/icomoon/icomoon.svg?1oniuf#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

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

.icon-mobile:before {
    content: "\e000";
}
.icon-laptop:before {
    content: "\e001";
}
.icon-desktop:before {
    content: "\e002";
}
.icon-tablet:before {
    content: "\e003";
}
.icon-phone:before {
    content: "\e004";
}
.icon-document:before {
    content: "\e005";
}
.icon-documents:before {
    content: "\e006";
}
.icon-search:before {
    content: "\e007";
}
.icon-clipboard:before {
    content: "\e008";
}
.icon-newspaper:before {
    content: "\e009";
}
.icon-notebook:before {
    content: "\e00a";
}
.icon-book-open:before {
    content: "\e00b";
}
.icon-browser:before {
    content: "\e00c";
}
.icon-calendar:before {
    content: "\e00d";
}
.icon-presentation:before {
    content: "\e00e";
}
.icon-picture:before {
    content: "\e00f";
}
.icon-pictures:before {
    content: "\e010";
}
.icon-video:before {
    content: "\e011";
}
.icon-camera:before {
    content: "\e012";
}
.icon-printer:before {
    content: "\e013";
}
.icon-toolbox:before {
    content: "\e014";
}
.icon-briefcase:before {
    content: "\e015";
}
.icon-wallet:before {
    content: "\e016";
}
.icon-gift:before {
    content: "\e017";
}
.icon-bargraph:before {
    content: "\e018";
}
.icon-grid:before {
    content: "\e019";
}
.icon-expand:before {
    content: "\e01a";
}
.icon-focus:before {
    content: "\e01b";
}
.icon-edit:before {
    content: "\e01c";
}
.icon-adjustments:before {
    content: "\e01d";
}
.icon-ribbon:before {
    content: "\e01e";
}
.icon-hourglass:before {
    content: "\e01f";
}
.icon-lock:before {
    content: "\e020";
}
.icon-megaphone:before {
    content: "\e021";
}
.icon-shield:before {
    content: "\e022";
}
.icon-trophy:before {
    content: "\e023";
}
.icon-flag:before {
    content: "\e024";
}
.icon-map:before {
    content: "\e025";
}
.icon-puzzle:before {
    content: "\e026";
}
.icon-basket:before {
    content: "\e027";
}
.icon-envelope:before {
    content: "\e028";
}
.icon-streetsign:before {
    content: "\e029";
}
.icon-telescope:before {
    content: "\e02a";
}
.icon-gears:before {
    content: "\e02b";
}
.icon-key:before {
    content: "\e02c";
}
.icon-paperclip:before {
    content: "\e02d";
}
.icon-attachment:before {
    content: "\e02e";
}
.icon-pricetags:before {
    content: "\e02f";
}
.icon-lightbulb:before {
    content: "\e030";
}
.icon-layers:before {
    content: "\e031";
}
.icon-pencil:before {
    content: "\e032";
}
.icon-tools:before {
    content: "\e033";
}
.icon-tools-2:before {
    content: "\e034";
}
.icon-scissors:before {
    content: "\e035";
}
.icon-paintbrush:before {
    content: "\e036";
}
.icon-magnifying-glass:before {
    content: "\e037";
}
.icon-circle-compass:before {
    content: "\e038";
}
.icon-linegraph:before {
    content: "\e039";
}
.icon-mic:before {
    content: "\e03a";
}
.icon-strategy:before {
    content: "\e03b";
}
.icon-beaker:before {
    content: "\e03c";
}
.icon-caution:before {
    content: "\e03d";
}
.icon-recycle:before {
    content: "\e03e";
}
.icon-anchor:before {
    content: "\e03f";
}
.icon-profile-male:before {
    content: "\e040";
}
.icon-profile-female:before {
    content: "\e041";
}
.icon-bike:before {
    content: "\e042";
}
.icon-wine:before {
    content: "\e043";
}
.icon-hotairballoon:before {
    content: "\e044";
}
.icon-globe:before {
    content: "\e045";
}
.icon-genius:before {
    content: "\e046";
}
.icon-map-pin:before {
    content: "\e047";
}
.icon-dial:before {
    content: "\e048";
}
.icon-chat:before {
    content: "\e049";
}
.icon-heart:before {
    content: "\e04a";
}
.icon-cloud:before {
    content: "\e04b";
}
.icon-upload:before {
    content: "\e04c";
}
.icon-download:before {
    content: "\e04d";
}
.icon-target:before {
    content: "\e04e";
}
.icon-hazardous:before {
    content: "\e04f";
}
.icon-piechart:before {
    content: "\e050";
}
.icon-speedometer:before {
    content: "\e051";
}
.icon-global:before {
    content: "\e052";
}
.icon-compass:before {
    content: "\e053";
}
.icon-lifesaver:before {
    content: "\e054";
}
.icon-clock:before {
    content: "\e055";
}
.icon-aperture:before {
    content: "\e056";
}
.icon-quote:before {
    content: "\e057";
}
.icon-scope:before {
    content: "\e058";
}
.icon-alarmclock:before {
    content: "\e059";
}
.icon-refresh:before {
    content: "\e05a";
}
.icon-happy:before {
    content: "\e05b";
}
.icon-sad:before {
    content: "\e05c";
}
.icon-facebook:before {
    content: "\e05d";
}
.icon-twitter:before {
    content: "\e05e";
}
.icon-googleplus:before {
    content: "\e05f";
}
.icon-rss:before {
    content: "\e060";
}
.icon-tumblr:before {
    content: "\e061";
}
.icon-linkedin:before {
    content: "\e062";
}
.icon-dribbble:before {
    content: "\e063";
}
.icon-box2:before {
    content: "\ea82";
}
.icon-write:before {
    content: "\ea83";
}
.icon-clock2:before {
    content: "\ea84";
}
.icon-reply2:before {
    content: "\ea85";
}
.icon-reply-all2:before {
    content: "\ea86";
}
.icon-forward2:before {
    content: "\ea87";
}
.icon-flag2:before {
    content: "\ea88";
}
.icon-search2:before {
    content: "\ea89";
}
.icon-trash2:before {
    content: "\ea8a";
}
.icon-envelope2:before {
    content: "\ea8b";
}
.icon-bubble:before {
    content: "\ea8c";
}
.icon-bubbles:before {
    content: "\ea8d";
}
.icon-user2:before {
    content: "\ea8e";
}
.icon-users2:before {
    content: "\ea8f";
}
.icon-cloud2:before {
    content: "\ea90";
}
.icon-download2:before {
    content: "\ea91";
}
.icon-upload2:before {
    content: "\ea92";
}
.icon-rain:before {
    content: "\ea93";
}
.icon-sun:before {
    content: "\ea94";
}
.icon-moon2:before {
    content: "\ea95";
}
.icon-bell2:before {
    content: "\ea96";
}
.icon-folder2:before {
    content: "\ea97";
}
.icon-pin2:before {
    content: "\ea98";
}
.icon-sound2:before {
    content: "\ea99";
}
.icon-microphone:before {
    content: "\ea9a";
}
.icon-camera2:before {
    content: "\ea9b";
}
.icon-image2:before {
    content: "\ea9c";
}
.icon-cog2:before {
    content: "\ea9d";
}
.icon-calendar2:before {
    content: "\ea9e";
}
.icon-book2:before {
    content: "\ea9f";
}
.icon-map-marker:before {
    content: "\eaa0";
}
.icon-store:before {
    content: "\eaa1";
}
.icon-support:before {
    content: "\eaa2";
}
.icon-tag2:before {
    content: "\eaa3";
}
.icon-heart2:before {
    content: "\eaa4";
}
.icon-video-camera:before {
    content: "\eaa5";
}
.icon-trophy2:before {
    content: "\eaa6";
}
.icon-cart:before {
    content: "\eaa7";
}
.icon-eye2:before {
    content: "\eaa8";
}
.icon-cancel:before {
    content: "\eaa9";
}
.icon-chart:before {
    content: "\eaaa";
}
.icon-target2:before {
    content: "\eaab";
}
.icon-printer2:before {
    content: "\eaac";
}
.icon-location2:before {
    content: "\eaad";
}
.icon-bookmark2:before {
    content: "\eaae";
}
.icon-monitor:before {
    content: "\eaaf";
}
.icon-cross2:before {
    content: "\eab0";
}
.icon-plus2:before {
    content: "\eab1";
}
.icon-left:before {
    content: "\eab2";
}
.icon-up:before {
    content: "\eab3";
}
.icon-browser2:before {
    content: "\eab4";
}
.icon-windows:before {
    content: "\eab5";
}
.icon-switch2:before {
    content: "\eab6";
}
.icon-dashboard:before {
    content: "\eab7";
}
.icon-play:before {
    content: "\eab8";
}
.icon-fast-forward:before {
    content: "\eab9";
}
.icon-next:before {
    content: "\eaba";
}
.icon-refresh2:before {
    content: "\eabb";
}
.icon-film:before {
    content: "\eabc";
}
.icon-home2:before {
    content: "\eabd";
}
.icon-add-to-list:before {
    content: "\e901";
}
.icon-classic-computer:before {
    content: "\e902";
}
.icon-controller-fast-backward:before {
    content: "\e903";
}
.icon-creative-commons-attribution:before {
    content: "\e904";
}
.icon-creative-commons-noderivs:before {
    content: "\e905";
}
.icon-creative-commons-noncommercial-eu:before {
    content: "\e906";
}
.icon-creative-commons-noncommercial-us:before {
    content: "\e907";
}
.icon-creative-commons-public-domain:before {
    content: "\e908";
}
.icon-creative-commons-remix:before {
    content: "\e909";
}
.icon-creative-commons-share:before {
    content: "\e90a";
}
.icon-creative-commons-sharealike:before {
    content: "\e90b";
}
.icon-creative-commons:before {
    content: "\e90c";
}
.icon-document-landscape:before {
    content: "\e90d";
}
.icon-remove-user:before {
    content: "\e90e";
}
.icon-warning:before {
    content: "\e90f";
}
.icon-arrow-bold-down:before {
    content: "\e910";
}
.icon-arrow-bold-left:before {
    content: "\e911";
}
.icon-arrow-bold-right:before {
    content: "\e912";
}
.icon-arrow-bold-up:before {
    content: "\e913";
}
.icon-arrow-down:before {
    content: "\e914";
}
.icon-arrow-left:before {
    content: "\e915";
}
.icon-arrow-long-down:before {
    content: "\e916";
}
.icon-arrow-long-left:before {
    content: "\e917";
}
.icon-arrow-long-right:before {
    content: "\e918";
}
.icon-arrow-long-up:before {
    content: "\e919";
}
.icon-arrow-right:before {
    content: "\e91a";
}
.icon-arrow-up:before {
    content: "\e91b";
}
.icon-arrow-with-circle-down:before {
    content: "\e91c";
}
.icon-arrow-with-circle-left:before {
    content: "\e91d";
}
.icon-arrow-with-circle-right:before {
    content: "\e91e";
}
.icon-arrow-with-circle-up:before {
    content: "\e91f";
}
.icon-bookmark:before {
    content: "\e920";
}
.icon-bookmarks:before {
    content: "\e921";
}
.icon-chevron-down:before {
    content: "\e922";
}
.icon-chevron-left:before {
    content: "\e923";
}
.icon-chevron-right:before {
    content: "\e924";
}
.icon-chevron-small-down:before {
    content: "\e925";
}
.icon-chevron-small-left:before {
    content: "\e926";
}
.icon-chevron-small-right:before {
    content: "\e927";
}
.icon-chevron-small-up:before {
    content: "\e928";
}
.icon-chevron-thin-down:before {
    content: "\e929";
}
.icon-chevron-thin-left:before {
    content: "\e92a";
}
.icon-chevron-thin-right:before {
    content: "\e92b";
}
.icon-chevron-thin-up:before {
    content: "\e92c";
}
.icon-chevron-up:before {
    content: "\e92d";
}
.icon-chevron-with-circle-down:before {
    content: "\e92e";
}
.icon-chevron-with-circle-left:before {
    content: "\e92f";
}
.icon-chevron-with-circle-right:before {
    content: "\e930";
}
.icon-chevron-with-circle-up:before {
    content: "\e931";
}
.icon-cloud3:before {
    content: "\e932";
}
.icon-controller-fast-forward:before {
    content: "\e933";
}
.icon-controller-jump-to-start:before {
    content: "\e934";
}
.icon-controller-next:before {
    content: "\e935";
}
.icon-controller-paus:before {
    content: "\e936";
}
.icon-controller-play:before {
    content: "\e937";
}
.icon-controller-record:before {
    content: "\e938";
}
.icon-controller-stop:before {
    content: "\e939";
}
.icon-controller-volume:before {
    content: "\e93a";
}
.icon-dot-single:before {
    content: "\e93b";
}
.icon-dots-three-horizontal:before {
    content: "\e93c";
}
.icon-dots-three-vertical:before {
    content: "\e93d";
}
.icon-dots-two-horizontal:before {
    content: "\e93e";
}
.icon-dots-two-vertical:before {
    content: "\e93f";
}
.icon-download3:before {
    content: "\e940";
}
.icon-emoji-flirt:before {
    content: "\e941";
}
.icon-flow-branch:before {
    content: "\e942";
}
.icon-flow-cascade:before {
    content: "\e943";
}
.icon-flow-line:before {
    content: "\e944";
}
.icon-flow-parallel:before {
    content: "\e945";
}
.icon-flow-tree:before {
    content: "\e946";
}
.icon-install:before {
    content: "\e947";
}
.icon-layers2:before {
    content: "\e948";
}
.icon-open-book:before {
    content: "\e949";
}
.icon-resize-100:before {
    content: "\e94a";
}
.icon-resize-full-screen:before {
    content: "\e94b";
}
.icon-save:before {
    content: "\e94c";
}
.icon-select-arrows:before {
    content: "\e94d";
}
.icon-sound-mute:before {
    content: "\e94e";
}
.icon-sound:before {
    content: "\e94f";
}
.icon-trash:before {
    content: "\e950";
}
.icon-triangle-down:before {
    content: "\e951";
}
.icon-triangle-left:before {
    content: "\e952";
}
.icon-triangle-right:before {
    content: "\e953";
}
.icon-triangle-up:before {
    content: "\e954";
}
.icon-uninstall:before {
    content: "\e955";
}
.icon-upload-to-cloud:before {
    content: "\e956";
}
.icon-upload3:before {
    content: "\e957";
}
.icon-add-user:before {
    content: "\e958";
}
.icon-address:before {
    content: "\e959";
}
.icon-adjust:before {
    content: "\e95a";
}
.icon-air:before {
    content: "\e95b";
}
.icon-aircraft-landing:before {
    content: "\e95c";
}
.icon-aircraft-take-off:before {
    content: "\e95d";
}
.icon-aircraft:before {
    content: "\e95e";
}
.icon-align-bottom:before {
    content: "\e95f";
}
.icon-align-horizontal-middle:before {
    content: "\e960";
}
.icon-align-left:before {
    content: "\e961";
}
.icon-align-right:before {
    content: "\e962";
}
.icon-align-top:before {
    content: "\e963";
}
.icon-align-vertical-middle:before {
    content: "\e964";
}
.icon-archive:before {
    content: "\e965";
}
.icon-area-graph:before {
    content: "\e966";
}
.icon-attachment2:before {
    content: "\e967";
}
.icon-awareness-ribbon:before {
    content: "\e968";
}
.icon-back-in-time:before {
    content: "\e969";
}
.icon-back:before {
    content: "\e96a";
}
.icon-bar-graph:before {
    content: "\e96b";
}
.icon-battery:before {
    content: "\e96c";
}
.icon-beamed-note:before {
    content: "\e96d";
}
.icon-bell:before {
    content: "\e96e";
}
.icon-blackboard:before {
    content: "\e96f";
}
.icon-block:before {
    content: "\e970";
}
.icon-book:before {
    content: "\e971";
}
.icon-bowl:before {
    content: "\e972";
}
.icon-box:before {
    content: "\e973";
}
.icon-briefcase2:before {
    content: "\e974";
}
.icon-browser3:before {
    content: "\e975";
}
.icon-brush:before {
    content: "\e976";
}
.icon-bucket:before {
    content: "\e977";
}
.icon-cake:before {
    content: "\e978";
}
.icon-calculator:before {
    content: "\e979";
}
.icon-calendar3:before {
    content: "\e97a";
}
.icon-camera3:before {
    content: "\e97b";
}
.icon-ccw:before {
    content: "\e97c";
}
.icon-chat2:before {
    content: "\e97d";
}
.icon-check:before {
    content: "\e97e";
}
.icon-circle-with-cross:before {
    content: "\e97f";
}
.icon-circle-with-minus:before {
    content: "\e980";
}
.icon-circle-with-plus:before {
    content: "\e981";
}
.icon-circle:before {
    content: "\e982";
}
.icon-circular-graph:before {
    content: "\e983";
}
.icon-clapperboard:before {
    content: "\e984";
}
.icon-clipboard2:before {
    content: "\e985";
}
.icon-clock3:before {
    content: "\e986";
}
.icon-code:before {
    content: "\e987";
}
.icon-cog:before {
    content: "\e988";
}
.icon-colours:before {
    content: "\e989";
}
.icon-compass2:before {
    content: "\e98a";
}
.icon-copy:before {
    content: "\e98b";
}
.icon-credit-card:before {
    content: "\e98c";
}
.icon-credit:before {
    content: "\e98d";
}
.icon-cross:before {
    content: "\e98e";
}
.icon-cup:before {
    content: "\e98f";
}
.icon-cw:before {
    content: "\e990";
}
.icon-cycle:before {
    content: "\e991";
}
.icon-database:before {
    content: "\e992";
}
.icon-dial-pad:before {
    content: "\e993";
}
.icon-direction:before {
    content: "\e994";
}
.icon-document2:before {
    content: "\e995";
}
.icon-documents2:before {
    content: "\e996";
}
.icon-drink:before {
    content: "\e997";
}
.icon-drive:before {
    content: "\e998";
}
.icon-drop:before {
    content: "\e999";
}
.icon-edit2:before {
    content: "\e99a";
}
.icon-email:before {
    content: "\e99b";
}
.icon-emoji-happy:before {
    content: "\e99c";
}
.icon-emoji-neutral:before {
    content: "\e99d";
}
.icon-emoji-sad:before {
    content: "\e99e";
}
.icon-erase:before {
    content: "\e99f";
}
.icon-eraser:before {
    content: "\e9a0";
}
.icon-export:before {
    content: "\e9a1";
}
.icon-eye:before {
    content: "\e9a2";
}
.icon-feather:before {
    content: "\e9a3";
}
.icon-flag3:before {
    content: "\e9a4";
}
.icon-flash:before {
    content: "\e9a5";
}
.icon-flashlight:before {
    content: "\e9a6";
}
.icon-flat-brush:before {
    content: "\e9a7";
}
.icon-folder-images:before {
    content: "\e9a8";
}
.icon-folder-music:before {
    content: "\e9a9";
}
.icon-folder-video:before {
    content: "\e9aa";
}
.icon-folder:before {
    content: "\e9ab";
}
.icon-forward:before {
    content: "\e9ac";
}
.icon-funnel:before {
    content: "\e9ad";
}
.icon-game-controller:before {
    content: "\e9ae";
}
.icon-gauge:before {
    content: "\e9af";
}
.icon-globe2:before {
    content: "\e9b0";
}
.icon-graduation-cap:before {
    content: "\e9b1";
}
.icon-grid2:before {
    content: "\e9b2";
}
.icon-hair-cross:before {
    content: "\e9b3";
}
.icon-hand:before {
    content: "\e9b4";
}
.icon-heart-outlined:before {
    content: "\e9b5";
}
.icon-heart3:before {
    content: "\e9b6";
}
.icon-help-with-circle:before {
    content: "\e9b7";
}
.icon-help:before {
    content: "\e9b8";
}
.icon-home:before {
    content: "\e9b9";
}
.icon-hour-glass:before {
    content: "\e9ba";
}
.icon-image-inverted:before {
    content: "\e9bb";
}
.icon-image:before {
    content: "\e9bc";
}
.icon-images:before {
    content: "\e9bd";
}
.icon-inbox:before {
    content: "\e9be";
}
.icon-infinity:before {
    content: "\e9bf";
}
.icon-info-with-circle:before {
    content: "\e9c0";
}
.icon-info:before {
    content: "\e9c1";
}
.icon-key2:before {
    content: "\e9c2";
}
.icon-keyboard:before {
    content: "\e9c3";
}
.icon-lab-flask:before {
    content: "\e9c4";
}
.icon-landline:before {
    content: "\e9c5";
}
.icon-language:before {
    content: "\e9c6";
}
.icon-laptop2:before {
    content: "\e9c7";
}
.icon-leaf:before {
    content: "\e9c8";
}
.icon-level-down:before {
    content: "\e9c9";
}
.icon-level-up:before {
    content: "\e9ca";
}
.icon-lifebuoy:before {
    content: "\e9cb";
}
.icon-light-bulb:before {
    content: "\e9cc";
}
.icon-light-down:before {
    content: "\e9cd";
}
.icon-light-up:before {
    content: "\e9ce";
}
.icon-line-graph:before {
    content: "\e9cf";
}
.icon-link:before {
    content: "\e9d0";
}
.icon-list:before {
    content: "\e9d1";
}
.icon-location-pin:before {
    content: "\e9d2";
}
.icon-location:before {
    content: "\e9d3";
}
.icon-lock-open:before {
    content: "\e9d4";
}
.icon-lock2:before {
    content: "\e9d5";
}
.icon-log-out:before {
    content: "\e9d6";
}
.icon-login:before {
    content: "\e9d7";
}
.icon-loop:before {
    content: "\e9d8";
}
.icon-magnet:before {
    content: "\e9d9";
}
.icon-magnifying-glass2:before {
    content: "\e9da";
}
.icon-mail:before {
    content: "\e9db";
}
.icon-man:before {
    content: "\e9dc";
}
.icon-map2:before {
    content: "\e9dd";
}
.icon-mask:before {
    content: "\e9de";
}
.icon-medal:before {
    content: "\e9df";
}
.icon-megaphone2:before {
    content: "\e9e0";
}
.icon-menu:before {
    content: "\e9e1";
}
.icon-message:before {
    content: "\e9e2";
}
.icon-mic2:before {
    content: "\e9e3";
}
.icon-minus:before {
    content: "\e9e4";
}
.icon-mobile2:before {
    content: "\e9e5";
}
.icon-modern-mic:before {
    content: "\e9e6";
}
.icon-moon:before {
    content: "\e9e7";
}
.icon-mouse:before {
    content: "\e9e8";
}
.icon-music:before {
    content: "\e9e9";
}
.icon-network:before {
    content: "\e9ea";
}
.icon-new-message:before {
    content: "\e9eb";
}
.icon-new:before {
    content: "\e9ec";
}
.icon-news:before {
    content: "\e9ed";
}
.icon-note:before {
    content: "\e9ee";
}
.icon-notification:before {
    content: "\e9ef";
}
.icon-old-mobile:before {
    content: "\e9f0";
}
.icon-old-phone:before {
    content: "\e9f1";
}
.icon-palette:before {
    content: "\e9f2";
}
.icon-paper-plane:before {
    content: "\e9f3";
}
.icon-pencil2:before {
    content: "\e9f4";
}
.icon-phone2:before {
    content: "\e9f5";
}
.icon-pie-chart:before {
    content: "\e9f6";
}
.icon-pin:before {
    content: "\e9f7";
}
.icon-plus:before {
    content: "\e9f8";
}
.icon-popup:before {
    content: "\e9f9";
}
.icon-power-plug:before {
    content: "\e9fa";
}
.icon-price-ribbon:before {
    content: "\e9fb";
}
.icon-price-tag:before {
    content: "\e9fc";
}
.icon-print:before {
    content: "\e9fd";
}
.icon-progress-empty:before {
    content: "\e9fe";
}
.icon-progress-full:before {
    content: "\e9ff";
}
.icon-progress-one:before {
    content: "\ea00";
}
.icon-progress-two:before {
    content: "\ea01";
}
.icon-publish:before {
    content: "\ea02";
}
.icon-quote2:before {
    content: "\ea03";
}
.icon-radio:before {
    content: "\ea04";
}
.icon-reply-all:before {
    content: "\ea05";
}
.icon-reply:before {
    content: "\ea06";
}
.icon-retweet:before {
    content: "\ea07";
}
.icon-rocket:before {
    content: "\ea08";
}
.icon-round-brush:before {
    content: "\ea09";
}
.icon-rss2:before {
    content: "\ea0a";
}
.icon-ruler:before {
    content: "\ea0b";
}
.icon-scissors2:before {
    content: "\ea0c";
}
.icon-share-alternitive:before {
    content: "\ea0d";
}
.icon-share:before {
    content: "\ea0e";
}
.icon-shareable:before {
    content: "\ea0f";
}
.icon-shield2:before {
    content: "\ea10";
}
.icon-shop:before {
    content: "\ea11";
}
.icon-shopping-bag:before {
    content: "\ea12";
}
.icon-shopping-basket:before {
    content: "\ea13";
}
.icon-shopping-cart:before {
    content: "\ea14";
}
.icon-shuffle:before {
    content: "\ea15";
}
.icon-signal:before {
    content: "\ea16";
}
.icon-sound-mix:before {
    content: "\ea17";
}
.icon-sports-club:before {
    content: "\ea18";
}
.icon-spreadsheet:before {
    content: "\ea19";
}
.icon-squared-cross:before {
    content: "\ea1a";
}
.icon-squared-minus:before {
    content: "\ea1b";
}
.icon-squared-plus:before {
    content: "\ea1c";
}
.icon-star-outlined:before {
    content: "\ea1d";
}
.icon-star:before {
    content: "\ea1e";
}
.icon-stopwatch:before {
    content: "\ea1f";
}
.icon-suitcase:before {
    content: "\ea20";
}
.icon-swap:before {
    content: "\ea21";
}
.icon-sweden:before {
    content: "\ea22";
}
.icon-switch:before {
    content: "\ea23";
}
.icon-tablet2:before {
    content: "\ea24";
}
.icon-tag:before {
    content: "\ea25";
}
.icon-text-document-inverted:before {
    content: "\ea26";
}
.icon-text-document:before {
    content: "\ea27";
}
.icon-text:before {
    content: "\ea28";
}
.icon-thermometer:before {
    content: "\ea29";
}
.icon-thumbs-down:before {
    content: "\ea2a";
}
.icon-thumbs-up:before {
    content: "\ea2b";
}
.icon-thunder-cloud:before {
    content: "\ea2c";
}
.icon-ticket:before {
    content: "\ea2d";
}
.icon-time-slot:before {
    content: "\ea2e";
}
.icon-tools2:before {
    content: "\ea2f";
}
.icon-traffic-cone:before {
    content: "\ea30";
}
.icon-tree:before {
    content: "\ea31";
}
.icon-trophy3:before {
    content: "\ea32";
}
.icon-tv:before {
    content: "\ea33";
}
.icon-typing:before {
    content: "\ea34";
}
.icon-unread:before {
    content: "\ea35";
}
.icon-untag:before {
    content: "\ea36";
}
.icon-user:before {
    content: "\ea37";
}
.icon-users:before {
    content: "\ea38";
}
.icon-v-card:before {
    content: "\ea39";
}
.icon-video2:before {
    content: "\ea3a";
}
.icon-vinyl:before {
    content: "\ea3b";
}
.icon-voicemail:before {
    content: "\ea3c";
}
.icon-wallet2:before {
    content: "\ea3d";
}
.icon-water:before {
    content: "\ea3e";
}
.icon-500px-with-circle:before {
    content: "\ea3f";
}
.icon-500px:before {
    content: "\ea40";
}
.icon-basecamp:before {
    content: "\ea41";
}
.icon-behance:before {
    content: "\ea42";
}
.icon-creative-cloud:before {
    content: "\ea43";
}
.icon-dropbox:before {
    content: "\ea44";
}
.icon-evernote:before {
    content: "\ea45";
}
.icon-flattr:before {
    content: "\ea46";
}
.icon-foursquare:before {
    content: "\ea47";
}
.icon-google-drive:before {
    content: "\ea48";
}
.icon-google-hangouts:before {
    content: "\ea49";
}
.icon-grooveshark:before {
    content: "\ea4a";
}
.icon-icloud:before {
    content: "\ea4b";
}
.icon-mixi:before {
    content: "\ea4c";
}
.icon-onedrive:before {
    content: "\ea4d";
}
.icon-paypal:before {
    content: "\ea4e";
}
.icon-picasa:before {
    content: "\ea4f";
}
.icon-qq:before {
    content: "\ea50";
}
.icon-rdio-with-circle:before {
    content: "\ea51";
}
.icon-renren:before {
    content: "\ea52";
}
.icon-scribd:before {
    content: "\ea53";
}
.icon-sina-weibo:before {
    content: "\ea54";
}
.icon-skype-with-circle:before {
    content: "\ea55";
}
.icon-skype:before {
    content: "\ea56";
}
.icon-slideshare:before {
    content: "\ea57";
}
.icon-smashing:before {
    content: "\ea58";
}
.icon-soundcloud:before {
    content: "\ea59";
}
.icon-spotify-with-circle:before {
    content: "\ea5a";
}
.icon-spotify:before {
    content: "\ea5b";
}
.icon-swarm:before {
    content: "\ea5c";
}
.icon-vine-with-circle:before {
    content: "\ea5d";
}
.icon-vine:before {
    content: "\ea5e";
}
.icon-vk-alternitive:before {
    content: "\ea5f";
}
.icon-vk-with-circle:before {
    content: "\ea60";
}
.icon-vk:before {
    content: "\ea61";
}
.icon-xing-with-circle:before {
    content: "\ea62";
}
.icon-xing:before {
    content: "\ea63";
}
.icon-yelp:before {
    content: "\ea64";
}
.icon-dribbble-with-circle:before {
    content: "\ea65";
}
.icon-dribbble2:before {
    content: "\ea66";
}
.icon-facebook-with-circle:before {
    content: "\ea67";
}
.icon-facebook2:before {
    content: "\ea68";
}
.icon-flickr-with-circle:before {
    content: "\ea69";
}
.icon-flickr:before {
    content: "\ea6a";
}
.icon-github-with-circle:before {
    content: "\ea6b";
}
.icon-github:before {
    content: "\ea6c";
}
.icon-google-with-circle:before {
    content: "\ea6d";
}
.icon-google:before {
    content: "\ea6e";
}
.icon-instagram-with-circle:before {
    content: "\ea6f";
}
.icon-instagram:before {
    content: "\ea70";
}
.icon-lastfm-with-circle:before {
    content: "\ea71";
}
.icon-lastfm:before {
    content: "\ea72";
}
.icon-linkedin-with-circle:before {
    content: "\ea73";
}
.icon-linkedin2:before {
    content: "\ea74";
}
.icon-pinterest-with-circle:before {
    content: "\ea75";
}
.icon-pinterest:before {
    content: "\ea76";
}
.icon-rdio:before {
    content: "\ea77";
}
.icon-stumbleupon-with-circle:before {
    content: "\ea78";
}
.icon-stumbleupon:before {
    content: "\ea79";
}
.icon-tumblr-with-circle:before {
    content: "\ea7a";
}
.icon-tumblr2:before {
    content: "\ea7b";
}
.icon-twitter-with-circle:before {
    content: "\ea7c";
}
.icon-twitter2:before {
    content: "\ea7d";
}
.icon-vimeo-with-circle:before {
    content: "\ea7e";
}
.icon-vimeo:before {
    content: "\ea7f";
}
.icon-youtube-with-circle:before {
    content: "\ea80";
}
.icon-youtube:before {
    content: "\ea81";
}
.icon-home3:before {
    content: "\eabe";
}
.icon-home22:before {
    content: "\eabf";
}
.icon-home32:before {
    content: "\eac0";
}
.icon-office:before {
    content: "\eac1";
}
.icon-newspaper2:before {
    content: "\eac2";
}
.icon-pencil3:before {
    content: "\eac3";
}
.icon-pencil22:before {
    content: "\eac4";
}
.icon-quill:before {
    content: "\eac5";
}
.icon-pen:before {
    content: "\eac6";
}
.icon-blog:before {
    content: "\eac7";
}
.icon-eyedropper:before {
    content: "\eac8";
}
.icon-droplet:before {
    content: "\eac9";
}
.icon-paint-format:before {
    content: "\eaca";
}
.icon-image3:before {
    content: "\eacb";
}
.icon-images2:before {
    content: "\eacc";
}
.icon-camera4:before {
    content: "\eacd";
}
.icon-headphones:before {
    content: "\eace";
}
.icon-music2:before {
    content: "\eacf";
}
.icon-play2:before {
    content: "\ead0";
}
.icon-film2:before {
    content: "\ead1";
}
.icon-video-camera2:before {
    content: "\ead2";
}
.icon-dice:before {
    content: "\ead3";
}
.icon-pacman:before {
    content: "\ead4";
}
.icon-spades:before {
    content: "\ead5";
}
.icon-clubs:before {
    content: "\ead6";
}
.icon-diamonds:before {
    content: "\ead7";
}
.icon-bullhorn:before {
    content: "\ead8";
}
.icon-connection:before {
    content: "\ead9";
}
.icon-podcast:before {
    content: "\eada";
}
.icon-feed:before {
    content: "\eadb";
}
.icon-mic3:before {
    content: "\eadc";
}
.icon-book3:before {
    content: "\eadd";
}
.icon-books:before {
    content: "\eade";
}
.icon-library:before {
    content: "\eadf";
}
.icon-file-text:before {
    content: "\eae0";
}
.icon-profile:before {
    content: "\eae1";
}
.icon-file-empty:before {
    content: "\eae2";
}
.icon-files-empty:before {
    content: "\eae3";
}
.icon-file-text2:before {
    content: "\eae4";
}
.icon-file-picture:before {
    content: "\eae5";
}
.icon-file-music:before {
    content: "\eae6";
}
.icon-file-play:before {
    content: "\eae7";
}
.icon-file-video:before {
    content: "\eae8";
}
.icon-file-zip:before {
    content: "\eae9";
}
.icon-copy2:before {
    content: "\eaea";
}
.icon-paste:before {
    content: "\eaeb";
}
.icon-stack:before {
    content: "\eaec";
}
.icon-folder3:before {
    content: "\eaed";
}
.icon-folder-open:before {
    content: "\eaee";
}
.icon-folder-plus:before {
    content: "\eaef";
}
.icon-folder-minus:before {
    content: "\eaf0";
}
.icon-folder-download:before {
    content: "\eaf1";
}
.icon-folder-upload:before {
    content: "\eaf2";
}
.icon-price-tag2:before {
    content: "\eaf3";
}
.icon-price-tags:before {
    content: "\eaf4";
}
.icon-barcode:before {
    content: "\eaf5";
}
.icon-qrcode:before {
    content: "\eaf6";
}
.icon-ticket2:before {
    content: "\eaf7";
}
.icon-cart2:before {
    content: "\eaf8";
}
.icon-coin-dollar:before {
    content: "\eaf9";
}
.icon-coin-euro:before {
    content: "\eafa";
}
.icon-coin-pound:before {
    content: "\eafb";
}
.icon-coin-yen:before {
    content: "\eafc";
}
.icon-credit-card2:before {
    content: "\eafd";
}
.icon-calculator2:before {
    content: "\eafe";
}
.icon-lifebuoy2:before {
    content: "\eaff";
}
.icon-phone3:before {
    content: "\eb00";
}
.icon-phone-hang-up:before {
    content: "\eb01";
}
.icon-address-book:before {
    content: "\eb02";
}
.icon-envelop:before {
    content: "\eb03";
}
.icon-pushpin:before {
    content: "\eb04";
}
.icon-location3:before {
    content: "\eb05";
}
.icon-location22:before {
    content: "\eb06";
}
.icon-compass3:before {
    content: "\eb07";
}
.icon-compass22:before {
    content: "\eb08";
}
.icon-map3:before {
    content: "\eb09";
}
.icon-map22:before {
    content: "\eb0a";
}
.icon-history:before {
    content: "\eb0b";
}
.icon-clock4:before {
    content: "\eb0c";
}
.icon-clock22:before {
    content: "\eb0d";
}
.icon-alarm:before {
    content: "\eb0e";
}
.icon-bell3:before {
    content: "\eb0f";
}
.icon-stopwatch2:before {
    content: "\eb10";
}
.icon-calendar4:before {
    content: "\eb11";
}
.icon-printer3:before {
    content: "\eb12";
}
.icon-keyboard2:before {
    content: "\eb13";
}
.icon-display:before {
    content: "\eb14";
}
.icon-laptop3:before {
    content: "\eb15";
}
.icon-mobile3:before {
    content: "\eb16";
}
.icon-mobile22:before {
    content: "\eb17";
}
.icon-tablet3:before {
    content: "\eb18";
}
.icon-tv2:before {
    content: "\eb19";
}
.icon-drawer:before {
    content: "\eb1a";
}
.icon-drawer2:before {
    content: "\eb1b";
}
.icon-box-add:before {
    content: "\eb1c";
}
.icon-box-remove:before {
    content: "\eb1d";
}
.icon-download4:before {
    content: "\eb1e";
}
.icon-upload4:before {
    content: "\eb1f";
}
.icon-floppy-disk:before {
    content: "\eb20";
}
.icon-drive2:before {
    content: "\eb21";
}
.icon-database2:before {
    content: "\eb22";
}
.icon-undo:before {
    content: "\eb23";
}
.icon-redo:before {
    content: "\eb24";
}
.icon-undo2:before {
    content: "\eb25";
}
.icon-redo2:before {
    content: "\eb26";
}
.icon-forward3:before {
    content: "\eb27";
}
.icon-reply3:before {
    content: "\eb28";
}
.icon-bubble2:before {
    content: "\eb29";
}
.icon-bubbles2:before {
    content: "\eb2a";
}
.icon-bubbles22:before {
    content: "\eb2b";
}
.icon-bubble22:before {
    content: "\eb2c";
}
.icon-bubbles3:before {
    content: "\eb2d";
}
.icon-bubbles4:before {
    content: "\eb2e";
}
.icon-user3:before {
    content: "\eb2f";
}
.icon-users3:before {
    content: "\eb30";
}
.icon-user-plus:before {
    content: "\eb31";
}
.icon-user-minus:before {
    content: "\eb32";
}
.icon-user-check:before {
    content: "\eb33";
}
.icon-user-tie:before {
    content: "\eb34";
}
.icon-quotes-left:before {
    content: "\eb35";
}
.icon-quotes-right:before {
    content: "\eb36";
}
.icon-hour-glass2:before {
    content: "\eb37";
}
.icon-spinner:before {
    content: "\eb38";
}
.icon-spinner2:before {
    content: "\eb39";
}
.icon-spinner3:before {
    content: "\eb3a";
}
.icon-spinner4:before {
    content: "\eb3b";
}
.icon-spinner5:before {
    content: "\eb3c";
}
.icon-spinner6:before {
    content: "\eb3d";
}
.icon-spinner7:before {
    content: "\eb3e";
}
.icon-spinner8:before {
    content: "\eb3f";
}
.icon-spinner9:before {
    content: "\eb40";
}
.icon-spinner10:before {
    content: "\eb41";
}
.icon-spinner11:before {
    content: "\eb42";
}
.icon-binoculars:before {
    content: "\eb43";
}
.icon-search3:before {
    content: "\eb44";
}
.icon-zoom-in:before {
    content: "\eb45";
}
.icon-zoom-out:before {
    content: "\eb46";
}
.icon-enlarge:before {
    content: "\eb47";
}
.icon-shrink:before {
    content: "\eb48";
}
.icon-enlarge2:before {
    content: "\eb49";
}
.icon-shrink2:before {
    content: "\eb4a";
}
.icon-key3:before {
    content: "\eb4b";
}
.icon-key22:before {
    content: "\eb4c";
}
.icon-lock3:before {
    content: "\eb4d";
}
.icon-unlocked:before {
    content: "\eb4e";
}
.icon-wrench:before {
    content: "\eb4f";
}
.icon-equalizer:before {
    content: "\eb50";
}
.icon-equalizer2:before {
    content: "\eb51";
}
.icon-cog3:before {
    content: "\eb52";
}
.icon-cogs:before {
    content: "\eb53";
}
.icon-hammer:before {
    content: "\eb54";
}
.icon-magic-wand:before {
    content: "\eb55";
}
.icon-aid-kit:before {
    content: "\eb56";
}
.icon-bug:before {
    content: "\eb57";
}
.icon-pie-chart2:before {
    content: "\eb58";
}
.icon-stats-dots:before {
    content: "\eb59";
}
.icon-stats-bars:before {
    content: "\eb5a";
}
.icon-stats-bars2:before {
    content: "\eb5b";
}
.icon-trophy4:before {
    content: "\eb5c";
}
.icon-gift2:before {
    content: "\eb5d";
}
.icon-glass:before {
    content: "\eb5e";
}
.icon-glass2:before {
    content: "\eb5f";
}
.icon-mug:before {
    content: "\eb60";
}
.icon-spoon-knife:before {
    content: "\eb61";
}
.icon-leaf2:before {
    content: "\eb62";
}
.icon-rocket2:before {
    content: "\eb63";
}
.icon-meter:before {
    content: "\eb64";
}
.icon-meter2:before {
    content: "\eb65";
}
.icon-hammer2:before {
    content: "\eb66";
}
.icon-fire:before {
    content: "\eb67";
}
.icon-lab:before {
    content: "\eb68";
}
.icon-magnet2:before {
    content: "\eb69";
}
.icon-bin:before {
    content: "\eb6a";
}
.icon-bin2:before {
    content: "\eb6b";
}
.icon-briefcase3:before {
    content: "\eb6c";
}
.icon-airplane:before {
    content: "\eb6d";
}
.icon-truck:before {
    content: "\eb6e";
}
.icon-road:before {
    content: "\eb6f";
}
.icon-accessibility:before {
    content: "\eb70";
}
.icon-target3:before {
    content: "\eb71";
}
.icon-shield3:before {
    content: "\eb72";
}
.icon-power:before {
    content: "\eb73";
}
.icon-switch3:before {
    content: "\eb74";
}
.icon-power-cord:before {
    content: "\eb75";
}
.icon-clipboard3:before {
    content: "\eb76";
}
.icon-list-numbered:before {
    content: "\eb77";
}
.icon-list2:before {
    content: "\eb78";
}
.icon-list22:before {
    content: "\eb79";
}
.icon-tree2:before {
    content: "\eb7a";
}
.icon-menu2:before {
    content: "\eb7b";
}
.icon-menu22:before {
    content: "\eb7c";
}
.icon-menu3:before {
    content: "\eb7d";
}
.icon-menu4:before {
    content: "\eb7e";
}
.icon-cloud4:before {
    content: "\eb7f";
}
.icon-cloud-download:before {
    content: "\eb80";
}
.icon-cloud-upload:before {
    content: "\eb81";
}
.icon-cloud-check:before {
    content: "\eb82";
}
.icon-download22:before {
    content: "\eb83";
}
.icon-upload22:before {
    content: "\eb84";
}
.icon-download32:before {
    content: "\eb85";
}
.icon-upload32:before {
    content: "\eb86";
}
.icon-sphere:before {
    content: "\eb87";
}
.icon-earth:before {
    content: "\eb88";
}
.icon-link2:before {
    content: "\eb89";
}
.icon-flag4:before {
    content: "\eb8a";
}
.icon-attachment3:before {
    content: "\eb8b";
}
.icon-eye3:before {
    content: "\eb8c";
}
.icon-eye-plus:before {
    content: "\eb8d";
}
.icon-eye-minus:before {
    content: "\eb8e";
}
.icon-eye-blocked:before {
    content: "\eb8f";
}
.icon-bookmark3:before {
    content: "\eb90";
}
.icon-bookmarks2:before {
    content: "\eb91";
}
.icon-sun2:before {
    content: "\eb92";
}
.icon-contrast:before {
    content: "\eb93";
}
.icon-brightness-contrast:before {
    content: "\eb94";
}
.icon-star-empty:before {
    content: "\eb95";
}
.icon-star-half:before {
    content: "\eb96";
}
.icon-star-full:before {
    content: "\eb97";
}
.icon-heart4:before {
    content: "\eb98";
}
.icon-heart-broken:before {
    content: "\eb99";
}
.icon-man2:before {
    content: "\eb9a";
}
.icon-woman:before {
    content: "\eb9b";
}
.icon-man-woman:before {
    content: "\eb9c";
}
.icon-happy2:before {
    content: "\eb9d";
}
.icon-happy22:before {
    content: "\eb9e";
}
.icon-smile:before {
    content: "\eb9f";
}
.icon-smile2:before {
    content: "\eba0";
}
.icon-tongue:before {
    content: "\eba1";
}
.icon-tongue2:before {
    content: "\eba2";
}
.icon-sad2:before {
    content: "\eba3";
}
.icon-sad22:before {
    content: "\eba4";
}
.icon-wink:before {
    content: "\eba5";
}
.icon-wink2:before {
    content: "\eba6";
}
.icon-grin:before {
    content: "\eba7";
}
.icon-grin2:before {
    content: "\eba8";
}
.icon-cool:before {
    content: "\eba9";
}
.icon-cool2:before {
    content: "\ebaa";
}
.icon-angry:before {
    content: "\ebab";
}
.icon-angry2:before {
    content: "\ebac";
}
.icon-evil:before {
    content: "\ebad";
}
.icon-evil2:before {
    content: "\ebae";
}
.icon-shocked:before {
    content: "\ebaf";
}
.icon-shocked2:before {
    content: "\ebb0";
}
.icon-baffled:before {
    content: "\ebb1";
}
.icon-baffled2:before {
    content: "\ebb2";
}
.icon-confused:before {
    content: "\ebb3";
}
.icon-confused2:before {
    content: "\ebb4";
}
.icon-neutral:before {
    content: "\ebb5";
}
.icon-neutral2:before {
    content: "\ebb6";
}
.icon-hipster:before {
    content: "\ebb7";
}
.icon-hipster2:before {
    content: "\ebb8";
}
.icon-wondering:before {
    content: "\ebb9";
}
.icon-wondering2:before {
    content: "\ebba";
}
.icon-sleepy:before {
    content: "\ebbb";
}
.icon-sleepy2:before {
    content: "\ebbc";
}
.icon-frustrated:before {
    content: "\ebbd";
}
.icon-frustrated2:before {
    content: "\ebbe";
}
.icon-crying:before {
    content: "\ebbf";
}
.icon-crying2:before {
    content: "\ebc0";
}
.icon-point-up:before {
    content: "\ebc1";
}
.icon-point-right:before {
    content: "\ebc2";
}
.icon-point-down:before {
    content: "\ebc3";
}
.icon-point-left:before {
    content: "\ebc4";
}
.icon-warning2:before {
    content: "\ebc5";
}
.icon-notification2:before {
    content: "\ebc6";
}
.icon-question:before {
    content: "\ebc7";
}
.icon-plus3:before {
    content: "\ebc8";
}
.icon-minus2:before {
    content: "\ebc9";
}
.icon-info2:before {
    content: "\ebca";
}
.icon-cancel-circle:before {
    content: "\ebcb";
}
.icon-blocked:before {
    content: "\ebcc";
}
.icon-cross3:before {
    content: "\ebcd";
}
.icon-checkmark:before {
    content: "\ebce";
}
.icon-checkmark2:before {
    content: "\ebcf";
}
.icon-spell-check:before {
    content: "\ebd0";
}
.icon-enter:before {
    content: "\ebd1";
}
.icon-exit:before {
    content: "\ebd2";
}
.icon-play22:before {
    content: "\ebd3";
}
.icon-pause:before {
    content: "\ebd4";
}
.icon-stop:before {
    content: "\ebd5";
}
.icon-previous:before {
    content: "\ebd6";
}
.icon-next2:before {
    content: "\ebd7";
}
.icon-backward:before {
    content: "\ebd8";
}
.icon-forward22:before {
    content: "\ebd9";
}
.icon-play3:before {
    content: "\ebda";
}
.icon-pause2:before {
    content: "\ebdb";
}
.icon-stop2:before {
    content: "\ebdc";
}
.icon-backward2:before {
    content: "\ebdd";
}
.icon-forward32:before {
    content: "\ebde";
}
.icon-first:before {
    content: "\ebdf";
}
.icon-last:before {
    content: "\ebe0";
}
.icon-previous2:before {
    content: "\ebe1";
}
.icon-next22:before {
    content: "\ebe2";
}
.icon-eject:before {
    content: "\ebe3";
}
.icon-volume-high:before {
    content: "\ebe4";
}
.icon-volume-medium:before {
    content: "\ebe5";
}
.icon-volume-low:before {
    content: "\ebe6";
}
.icon-volume-mute:before {
    content: "\ebe7";
}
.icon-volume-mute2:before {
    content: "\ebe8";
}
.icon-volume-increase:before {
    content: "\ebe9";
}
.icon-volume-decrease:before {
    content: "\ebea";
}
.icon-loop2:before {
    content: "\ebeb";
}
.icon-loop22:before {
    content: "\ebec";
}
.icon-infinite:before {
    content: "\ebed";
}
.icon-shuffle2:before {
    content: "\ebee";
}
.icon-arrow-up-left:before {
    content: "\ebef";
}
.icon-arrow-up2:before {
    content: "\ebf0";
}
.icon-arrow-up-right:before {
    content: "\ebf1";
}
.icon-arrow-right2:before {
    content: "\ebf2";
}
.icon-arrow-down-right:before {
    content: "\ebf3";
}
.icon-arrow-down2:before {
    content: "\ebf4";
}
.icon-arrow-down-left:before {
    content: "\ebf5";
}
.icon-arrow-left2:before {
    content: "\ebf6";
}
.icon-arrow-up-left2:before {
    content: "\ebf7";
}
.icon-arrow-up22:before {
    content: "\ebf8";
}
.icon-arrow-up-right2:before {
    content: "\ebf9";
}
.icon-arrow-right22:before {
    content: "\ebfa";
}
.icon-arrow-down-right2:before {
    content: "\ebfb";
}
.icon-arrow-down22:before {
    content: "\ebfc";
}
.icon-arrow-down-left2:before {
    content: "\ebfd";
}
.icon-arrow-left22:before {
    content: "\ebfe";
}
.icon-circle-up:before {
    content: "\e900";
}
.icon-circle-right:before {
    content: "\ebff";
}
.icon-circle-down:before {
    content: "\ec00";
}
.icon-circle-left:before {
    content: "\ec01";
}
.icon-tab:before {
    content: "\ec02";
}
.icon-move-up:before {
    content: "\ec03";
}
.icon-move-down:before {
    content: "\ec04";
}
.icon-sort-alpha-asc:before {
    content: "\ec05";
}
.icon-sort-alpha-desc:before {
    content: "\ec06";
}
.icon-sort-numeric-asc:before {
    content: "\ec07";
}
.icon-sort-numberic-desc:before {
    content: "\ec08";
}
.icon-sort-amount-asc:before {
    content: "\ec09";
}
.icon-sort-amount-desc:before {
    content: "\ec0a";
}
.icon-command:before {
    content: "\ec0b";
}
.icon-shift:before {
    content: "\ec0c";
}
.icon-ctrl:before {
    content: "\ec0d";
}
.icon-opt:before {
    content: "\ec0e";
}
.icon-checkbox-checked:before {
    content: "\ec0f";
}
.icon-checkbox-unchecked:before {
    content: "\ec10";
}
.icon-radio-checked:before {
    content: "\ec11";
}
.icon-radio-checked2:before {
    content: "\ec12";
}
.icon-radio-unchecked:before {
    content: "\ec13";
}
.icon-crop:before {
    content: "\ec14";
}
.icon-make-group:before {
    content: "\ec15";
}
.icon-ungroup:before {
    content: "\ec16";
}
.icon-scissors3:before {
    content: "\ec17";
}
.icon-filter:before {
    content: "\ec18";
}
.icon-font:before {
    content: "\ec19";
}
.icon-ligature:before {
    content: "\ec1a";
}
.icon-ligature2:before {
    content: "\ec1b";
}
.icon-text-height:before {
    content: "\ec1c";
}
.icon-text-width:before {
    content: "\ec1d";
}
.icon-font-size:before {
    content: "\ec1e";
}
.icon-bold:before {
    content: "\ec1f";
}
.icon-underline:before {
    content: "\ec20";
}
.icon-italic:before {
    content: "\ec21";
}
.icon-strikethrough:before {
    content: "\ec22";
}
.icon-omega:before {
    content: "\ec23";
}
.icon-sigma:before {
    content: "\ec24";
}
.icon-page-break:before {
    content: "\ec25";
}
.icon-superscript:before {
    content: "\ec26";
}
.icon-subscript:before {
    content: "\ec27";
}
.icon-superscript2:before {
    content: "\ec28";
}
.icon-subscript2:before {
    content: "\ec29";
}
.icon-text-color:before {
    content: "\ec2a";
}
.icon-pagebreak:before {
    content: "\ec2b";
}
.icon-clear-formatting:before {
    content: "\ec2c";
}
.icon-table:before {
    content: "\ec2d";
}
.icon-table2:before {
    content: "\ec2e";
}
.icon-insert-template:before {
    content: "\ec2f";
}
.icon-pilcrow:before {
    content: "\ec30";
}
.icon-ltr:before {
    content: "\ec31";
}
.icon-rtl:before {
    content: "\ec32";
}
.icon-section:before {
    content: "\ec33";
}
.icon-paragraph-left:before {
    content: "\ec34";
}
.icon-paragraph-center:before {
    content: "\ec35";
}
.icon-paragraph-right:before {
    content: "\ec36";
}
.icon-paragraph-justify:before {
    content: "\ec37";
}
.icon-indent-increase:before {
    content: "\ec38";
}
.icon-indent-decrease:before {
    content: "\ec39";
}
.icon-share2:before {
    content: "\ec3a";
}
.icon-new-tab:before {
    content: "\ec3b";
}
.icon-embed:before {
    content: "\ec3c";
}
.icon-embed2:before {
    content: "\ec3d";
}
.icon-terminal:before {
    content: "\ec3e";
}
.icon-share22:before {
    content: "\ec3f";
}
.icon-mail2:before {
    content: "\ec40";
}
.icon-mail22:before {
    content: "\ec41";
}
.icon-mail3:before {
    content: "\ec42";
}
.icon-mail4:before {
    content: "\ec43";
}
.icon-amazon:before {
    content: "\ec44";
}
.icon-google2:before {
    content: "\ec45";
}
.icon-google22:before {
    content: "\ec46";
}
.icon-google3:before {
    content: "\ec47";
}
.icon-google-plus:before {
    content: "\ec48";
}
.icon-google-plus2:before {
    content: "\ec49";
}
.icon-google-plus3:before {
    content: "\ec4a";
}
.icon-hangouts:before {
    content: "\ec4b";
}
.icon-google-drive2:before {
    content: "\ec4c";
}
.icon-facebook3:before {
    content: "\ec4d";
}
.icon-facebook22:before {
    content: "\ec4e";
}
.icon-instagram2:before {
    content: "\ec4f";
}
.icon-whatsapp:before {
    content: "\ec50";
}
.icon-spotify2:before {
    content: "\ec51";
}
.icon-telegram:before {
    content: "\ec52";
}
.icon-twitter3:before {
    content: "\ec53";
}
.icon-vine2:before {
    content: "\ec54";
}
.icon-vk2:before {
    content: "\ec55";
}
.icon-renren2:before {
    content: "\ec56";
}
.icon-sina-weibo2:before {
    content: "\ec57";
}
.icon-rss3:before {
    content: "\ec58";
}
.icon-rss22:before {
    content: "\ec59";
}
.icon-youtube2:before {
    content: "\ec5a";
}
.icon-youtube22:before {
    content: "\ec5b";
}
.icon-twitch:before {
    content: "\ec5c";
}
.icon-vimeo2:before {
    content: "\ec5d";
}
.icon-vimeo22:before {
    content: "\ec5e";
}
.icon-lanyrd:before {
    content: "\ec5f";
}
.icon-flickr2:before {
    content: "\ec60";
}
.icon-flickr22:before {
    content: "\ec61";
}
.icon-flickr3:before {
    content: "\ec62";
}
.icon-flickr4:before {
    content: "\ec63";
}
.icon-dribbble3:before {
    content: "\ec64";
}
.icon-behance2:before {
    content: "\ec65";
}
.icon-behance22:before {
    content: "\ec66";
}
.icon-deviantart:before {
    content: "\ec67";
}
.icon-500px2:before {
    content: "\ec68";
}
.icon-steam:before {
    content: "\ec69";
}
.icon-steam2:before {
    content: "\ec6a";
}
.icon-dropbox2:before {
    content: "\ec6b";
}
.icon-onedrive2:before {
    content: "\ec6c";
}
.icon-github2:before {
    content: "\ec6d";
}
.icon-npm:before {
    content: "\ec6e";
}
.icon-basecamp2:before {
    content: "\ec6f";
}
.icon-trello:before {
    content: "\ec70";
}
.icon-wordpress:before {
    content: "\ec71";
}
.icon-joomla:before {
    content: "\ec72";
}
.icon-ello:before {
    content: "\ec73";
}
.icon-blogger:before {
    content: "\ec74";
}
.icon-blogger2:before {
    content: "\ec75";
}
.icon-tumblr3:before {
    content: "\ec76";
}
.icon-tumblr22:before {
    content: "\ec77";
}
.icon-yahoo:before {
    content: "\ec78";
}
.icon-yahoo2:before {
    content: "\ec79";
}
.icon-tux:before {
    content: "\ec7a";
}
.icon-appleinc:before {
    content: "\ec7b";
}
.icon-finder:before {
    content: "\ec7c";
}
.icon-android:before {
    content: "\ec7d";
}
.icon-windows2:before {
    content: "\ec7e";
}
.icon-windows8:before {
    content: "\ec7f";
}
.icon-soundcloud2:before {
    content: "\ec80";
}
.icon-soundcloud22:before {
    content: "\ec81";
}
.icon-skype2:before {
    content: "\ec82";
}
.icon-reddit:before {
    content: "\ec83";
}
.icon-hackernews:before {
    content: "\ec84";
}
.icon-wikipedia:before {
    content: "\ec85";
}
.icon-linkedin3:before {
    content: "\ec86";
}
.icon-linkedin22:before {
    content: "\ec87";
}
.icon-lastfm2:before {
    content: "\ec88";
}
.icon-lastfm22:before {
    content: "\ec89";
}
.icon-delicious:before {
    content: "\ec8a";
}
.icon-stumbleupon2:before {
    content: "\ec8b";
}
.icon-stumbleupon22:before {
    content: "\ec8c";
}
.icon-stackoverflow:before {
    content: "\ec8d";
}
.icon-pinterest2:before {
    content: "\ec8e";
}
.icon-pinterest22:before {
    content: "\ec8f";
}
.icon-xing2:before {
    content: "\ec90";
}
.icon-xing22:before {
    content: "\ec91";
}
.icon-flattr2:before {
    content: "\ec92";
}
.icon-foursquare2:before {
    content: "\ec93";
}
.icon-yelp2:before {
    content: "\ec94";
}
.icon-paypal2:before {
    content: "\ec95";
}
.icon-chrome:before {
    content: "\ec96";
}
.icon-firefox:before {
    content: "\ec97";
}
.icon-IE:before {
    content: "\ec98";
}
.icon-edge:before {
    content: "\ec99";
}
.icon-safari:before {
    content: "\ec9a";
}
.icon-opera:before {
    content: "\ec9b";
}
.icon-file-pdf:before {
    content: "\ec9c";
}
.icon-file-openoffice:before {
    content: "\ec9d";
}
.icon-file-word:before {
    content: "\ec9e";
}
.icon-file-excel:before {
    content: "\ec9f";
}
.icon-libreoffice:before {
    content: "\eca0";
}
.icon-html-five:before {
    content: "\eca1";
}
.icon-html-five2:before {
    content: "\eca2";
}
.icon-css3:before {
    content: "\eca3";
}
.icon-git:before {
    content: "\eca4";
}
.icon-codepen:before {
    content: "\eca5";
}
.icon-svg:before {
    content: "\eca6";
}
.icon-IcoMoon:before {
    content: "\eca7";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

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

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

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

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

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

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

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

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,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.figure {
  display: inline-block;
}

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

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

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

a > code {
  color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

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

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

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

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

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

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

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

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

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

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

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

.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

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

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

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

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

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

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

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

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

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

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

.dropdown-toggle:empty::after {
  margin-left: 0;
}

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

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

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

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

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

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.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 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

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

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

.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

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

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

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

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

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

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

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

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

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

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

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

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%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.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%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.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  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 {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

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

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

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

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

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

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

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

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

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

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

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

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

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

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

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

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

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

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

.progress-bar-animated {
  -webkit-animation: 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;
  }
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

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

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 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: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

.list-group-flush {
  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: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  -ms-flex-preferred-size: 350px;
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

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

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

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

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

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

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

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

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

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

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

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

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

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

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

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  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: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

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

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: 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: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.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: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
}

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

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
    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: .75s linear infinite spinner-grow;
  animation: .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;
  }
}

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

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

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

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

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

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

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

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

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

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

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

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

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

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

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-info {
  border-color: #17a2b8 !important;
}

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

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

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

.border-dark {
  border-color: #343a40 !important;
}

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

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

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

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

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

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

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

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

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

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

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

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-0 {
  margin: 0 !important;
}

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

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

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

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

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

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

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

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

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

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

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

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

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

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

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

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

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

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

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

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*# sourceMappingURL=bootstrap.css.map */
/*** ESSENTIAL STYLES ***/

.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	right: 0;
	
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 1em;
}
.sf-menu ul {
	box-shadow: 2px 2px 6px rgba(0,0,0,.2);
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
	border-left: 1px solid #fff;
	border-top: 1px solid #dFeEFF; /* fallback colour must use full shorthand */
	border-top: 1px solid rgba(255,255,255,.5);
	padding: .75em 1em;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #13a;
}
.sf-menu li {
	background: #BDD2FF;
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}
.sf-menu ul li {
	background: #AABDE6;
}
.sf-menu ul ul li {
	background: #9AAEDB;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	background: #CFDEFF;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	/*margin-right: -3px;*/
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: white;
}
/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #cccccc; }
    .mfp-preloader a:hover {
      color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
 @font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon/icomoon.eot?srf3rx');
  src: url('../fonts/icomoon/icomoon.eot?srf3rx#iefix') format("embedded-opentype"), 
  url('../fonts/icomoon/icomoon.ttf?srf3rx') format("truetype"), 
  url('../fonts/icomoon/icomoon.woff?srf3rx') format("woff"), 
  url('../fonts/icomoon/icomoon.svg?srf3rx#icomoon') format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =======================================================
*
* 	Template Style 
*	Edit this section
*
* ======================================================= */
body {
 font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}
body.fh5co-offcanvas {
  overflow: hidden;
}

/*body{
  background-image: url('header-side-arrow.png');
}*/

a {
  color: #30b29b;
  -webkit-transition: 0.5s, ease;
  -o-transition: 0.5s, ease;
  transition: 0.5s, ease;
}
a:hover {
  text-decoration: none ;
  color: #30b29b ;
}

p, ul, ol {
  margin-bottom: 1.5em;
  font-size: 16px;
  color: #434343;
  line-height: 28px;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e2022;
  font-weight: 400;
  margin: 0 0 30px 0;
}

figure {
  margin-bottom: 2em;
}

::-webkit-selection {
  color: #fcfcfc;
  background: #0875bc;
}

::-moz-selection {
  color: #fcfcfc;
  background: #0875bc;
}

::selection {
  color: #fcfcfc;
  background: #0875bc;
}

#fh5co-header {
  position: relative;
  margin-bottom: 0;
  z-index: 9999999;
}

.stuck {
  position: fixed !important;
  top: 0 !important;
  width: 100%;
  background: transparent;
}


.top-head-bar {
    position: relative;
    padding: 4px 35px;
    border-bottom: none;
    background: url('../images/top-bar-bg.png') no-repeat center center;
    background-size: 100% 100%;
        z-index: 99;
}

.top-head-bar .top-call-link {
    color: #927396;
}

.top-head-bar .top-call-link strong {
    color: #927396;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}
.top-head-bar .top-call-link a{
  font-weight: bold;
}

.top-head-bar .top-call-link span {
    font-size: 20px;
    position: relative;
    margin-right: 7px;
    bottom: -1px;
}

.top-head-bar .top-call-link, ul.top-social-links {
    padding: 9px 0 8px !important;
}

.top-head-bar ul.top-social-links {
    padding: 0;
    margin: 0;
    text-align: right;
    margin-right: 10px !important;
}

.top-head-bar ul.top-social-links li {
    display: inline-block;
    margin-right: 15px;
}

.top-head-bar ul.top-social-links li:last-child {
    margin: 0;
}

.top-head-bar ul.top-social-links li a {
    color: #4a4a4a;
    transform: scale(1);
    font-size: 16px;
    transition: all .3s ease;
}

.top-head-bar ul.top-social-links li a:hover {
    transition: all .3s ease;
    color: #927396;
    transform: scale(1.2);
}
a.top-booking-link {
    background: #927196;
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-shadow: 1px 1px black;
    margin: 0 -15px;
    font-size: 16px;
    transition: all .3s ease;
}

a.top-booking-link:hover,a.top-booking-link:focus {
    background: #f2d5b6;
    color: #fff;
    transition: all .3s ease;
}






 .top-link {
    text-align: right;
    padding: 38px 0;
    margin: 0px 0px 0 -45px;
  }
  .top-link a.themebtn img {
      float: left;
      margin-right: 10px;
  }

  .top-link a.themebtn {
      text-transform: initial !important;
  }
/*@media only screen and (min-width: 1400px){
  .top-link {
    text-align: right;
    padding: 38px 0;
    margin: 0px 0px 0 -45px;
  }
  .top-link a.themebtn img {
      float: left;
      margin-right: 10px;
  }

  .top-link a.themebtn {
      text-transform: initial !important;
  }
}
@media only screen and (max-width: 1390px){
    .top-link {
        margin: 0px 0px 0 -25px;
    }

    .top-link a.themebtn {
        max-width: 200px;
        font-size: 14px;
        min-width: inherit;
        padding: 10px 15px;
    }

    .top-link a.themebtn img {
        width: 20px;
        margin-right: 0px;
        position: relative;
        left: -6px;
    }
}*/

.social-media {
    margin: 5px 0;
}
ul.scnd-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

ul.scnd-menu li {
    display: inline-block;
    margin-right: 25px;
}

ul.scnd-menu li:last-child {
    margin-right: 0px;
}

ul.scnd-menu li a {color: #1c237d;font-family: 'Montserrat', sans-serif;font-weight: 100;font-size: 16px;transition: all .3s ease;}

ul.scnd-menu li a:hover,ul.scnd-menu li a:focus {
    color: #000;
    transition: all .3s ease;
}
.container {
  width: 100%;
  max-width: 1200px;
}

.b-icon span {
  color: #fff;
  margin:0 20px;
  font-size: 16px;
}
.address-box {
    font-size: 16px;
}
.address-box a {
    color: #fff !important;
}
.address {
  display: inline-block;
}

.phone-no {
  display: inline-block;
}

.social-col {
    display: inline-block;
    margin: 0;
    font-size: 16px;
    text-align: center;
}
.social-media a {
  display: inline-block;
    margin: 0;
    font-size: 25px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin-right: 5px;
    padding: 0;
    color: #0070c0;
    transition: all .5s ease;
}
.social-media a:hover,.social-media a:focus {
    color: #8dc63f;
}
.social-media a span {
    transform: scale(1);
    color: #0070c0;
    transition: all .5s ease;
}
.social-media a:hover span,.social-media a:focus span {
  color: #8dc63f;
}
.social-media a:hover span {
transform: scale(1.2);
    transition: all .5s ease;
}

.logo-bar {
    position: relative;
    padding: 10px 0;
}

/* Superfish Override Menu */
.sf-menu {
    margin: 20px auto  20px !important;
    transition: all .3s ease;
}
/*.stuck .sf-menu {
    margin: 20px auto  20px !important;
    transition: all .3s ease;
}*/
.sf-menu {
    float: left;
    width: 100%;
    text-align: right;
}
/*.sf-menu:before {
    content: '';
    position: absolute;
    width: 110%;
    height: 6px;
    background: #01535e;
    bottom: -2px;
    right: 0;
}*/
.sf-menu ul {
  box-shadow: none;
  border: transparent;
  min-width: 12em;
  *width: 12em;
}
.sf-menu > li{
  float: none;
  display: inline-block;
}
.sf-menu a {
    color: #fff;
    padding: 0.25em 1em !important;
    font-weight: normal;
    border-left: none;
    border-top: none;
    border-top: none;
    text-decoration: none;
    zoom: 1;
    font-size: 16px;
    border-bottom: none !important;
    font-weight: 600;
}
/*.stuck .sf-menu a {
    padding: 1.5em 1em !important;
}*/
.sf-menu a:hover, .sf-menu a:focus {
  color: #ff5722 !important;
}

.sf-menu li.active a:hover, .sf-menu li.active a:focus {
  color: #ff5722;
}

.sf-menu li,
.sf-menu ul li,
.sf-menu ul ul li,
.sf-menu li:hover,
.sf-menu li.sfHover {
  background: transparent;
}

.sf-menu ul li a,
.sf-menu ul ul li a {
  text-transform: none;
  padding: 0.2em 1em !important;
  letter-spacing: 1px;
  font-size: 14px !important;
}

.sf-menu li:hover a,
.sf-menu li.sfHover a,
.sf-menu ul li:hover a,
.sf-menu ul li.sfHover a,
.sf-menu li.active a {
  color: #ff5722;
}

.sf-menu ul li:hover,
.sf-menu ul li.sfHover {
  background: transparent;
}

.sf-menu ul li {
  background: transparent;
}

.sf-arrows .sf-with-ul {
  padding-right: 1.8em !important;
  padding-right: 1em;
}

.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.5em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #ccc;
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #ccc;
}

.sf-arrows ul .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #ccc;
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #ccc;
}



.lang-btn {
    position: absolute;
    right: 50px;
}

.lang-btn a {
    padding: 20px 25px 12px;
    background: url('../images/lang-btn-bg.png') no-repeat center center;
    background-size: 100% 100%;
    color: #fff;
    font-size: 22px;
}


#fh5co-header-section {
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1022;
    background: transparent;
    border-bottom: none;
    background-size: cover;
}

#fh5co-header-section nav ul.sf-menu{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

#fh5co-header-section nav ul li a {
  font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 0;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

#fh5co-header-section nav {
  margin: 0px;
}
#fh5co-header-section nav ul li {
    margin-right: 35px;
    transition: all .3s ease;
}
#fh5co-header-section nav ul li:last-child {
    margin-right: 0 !important;
}
/*#fh5co-header-section nav ul li:before {
    content: ' | ';
    position: absolute;
    top: 10px;
    right: -13px;
    color: #fff;
}*/
/*#fh5co-header-section nav ul li:last-child:before {
    display: none;
}*/
#fh5co-header-section nav ul li a{
    color: #199dc3 !important;
    transition: all .3s ease;
    position: relative;
}
/*#fh5co-header-section nav ul li a:hover:before, 
#fh5co-header-section nav ul li:hover > a:before, 
#fh5co-header-section nav ul li.active > a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 98%;
    height: 3px;
    background: linear-gradient(to right, #005ea1,#0d82ce, #2fb29b);
}
#fh5co-header-section nav ul li a:hover, #fh5co-header-section nav ul li:hover > a, #fh5co-header-section nav ul li.active > a {
    background: linear-gradient(to right, #005ea1,#0d82ce, #2fb29b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .3s ease;
}*/
/*#fh5co-header-section .stuck nav ul li a{
  color: #1c237d !important;
  transition: all .3s ease;
}*/
/*#fh5co-header-section .stuck nav ul li a:hover, #fh5co-header-section .stuck nav ul li:hover > a, #fh5co-header-section .stuck nav ul li.active > a {
    color: #fff !important;
    transition: all .3s ease;
}*/
#fh5co-menu-wrap .sf-menu a.sf-withul {
    margin-bottom: 5px;
}
.page-with-map #fh5co-header-section nav ul li a{
  color: #1c237d !important;
  transition: all .3s ease;
}
.page-with-map #fh5co-header-section nav ul li a:hover, .page-with-map #fh5co-header-section nav ul li:hover > a, .page-with-map #fh5co-header-section nav ul li.active > a, .page-with-map #fh5co-primary-menu .fh5co-sub-menu a{
    color: #fff !important;
    transition: all .3s ease;
}


/*#fh5co-header-section nav ul li a:before, 
#fh5co-header-section nav ul li > a:before, 
#fh5co-header-section nav ul li > a:before{
    content: '';
    position: absolute;
    top: -7px;
    right: 5px;
    width: 100%;
    height: 15px;
    background: url('../images/menu-hover-after.png') no-repeat top right;
    background-size: contain;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
}

#fh5co-header-section nav ul li a:hover:before, 
#fh5co-header-section nav ul li:hover > a:before, 
#fh5co-header-section nav ul li.active > a:before{
      visibility: visible;
    opacity: 1;
    transition: all .3s ease;
}*/


/*
#fh5co-header-section nav ul li ul.dropdown li a:hover {
  color: #fff;
  background: #155159;
  transition: all 0.5s;
}
*/
#fh5co-header-section nav ul li ul.dropdown {
  position: absolute !important;
  z-index: 999;
  width: 224px !important;
      background: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 35px 10px 10px;
  /* display: none; */
  border-top: 13px solid #094c6f;
  transition: all 1s ease;
}
#fh5co-header-section nav ul li:hover ul.dropdown {
  display: block  !important;
  transition: all 1s ease;
}
#fh5co-header-section nav ul li ul.dropdown li {
  margin: 0px  !important;
  display: block  !important;
  transition: all 1s ease;
}
#fh5co-header-section nav ul li ul.dropdown li a {
  padding: 5px 10px  !important;
  text-transform: capitalize  !important;
  font-size: 13px  !important;
  color:#000 !important;
  transition: all 1s ease;
}
#fh5co-header-section nav ul li ul.dropdown li a:before{
  background: rgb(21,91,125);
    background: -moz-linear-gradient(top, rgba(21,91,125,1) 0%, rgba(25,100,139,1) 7%, rgba(26,105,146,1) 15%, rgba(16,90,127,1) 54%, rgba(13,86,121,1) 59%, rgba(7,71,106,1) 89%, rgba(4,69,101,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#155b7d', endColorstr='#044565',GradientType=0 ); /* IE6-9 */
}
#fh5co-header-section nav ul li ul.dropdown li a:hover {
  color: #fff  !important;
   background: rgb(21,91,125);
    background: -moz-linear-gradient(top, rgba(21,91,125,1) 0%, rgba(25,100,139,1) 7%, rgba(26,105,146,1) 15%, rgba(16,90,127,1) 54%, rgba(13,86,121,1) 59%, rgba(7,71,106,1) 89%, rgba(4,69,101,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(21,91,125,1) 0%,rgba(25,100,139,1) 7%,rgba(26,105,146,1) 15%,rgba(16,90,127,1) 54%,rgba(13,86,121,1) 59%,rgba(7,71,106,1) 89%,rgba(4,69,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#155b7d', endColorstr='#044565',GradientType=0 ); /* IE6-9 */
}
#fh5co-header-section nav ul li ul.dropdown li a:after {
  background: none  !important;
  position: static  !important;
}

.websearch {
    position: relative;
    margin:18px auto 0 !important;
}

.nav-header {
  position: relative;
  float: left;
  width: 100%;
}

#fh5co-logo {
  position: relative;
  z-index: 2;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
    transition: all .3s ease;
}
/*#fh5co-logo img {
    max-width: 120px;
}*/
#fh5co-logo span {
  font-weight: 700;
}
img.sub-logo {
    max-width: inherit !important;
    position: relative;
    top: 20px;
    left: 25px;
}
header .right-logos {
    margin: 10px 0;
}
.main-warpper {
    padding: 0;
    position: relative;
}


.main-warpper p.text-center {
    text-align: center;
}
.main-warpper p span {
    color: #ed504d;
}
@media screen and (max-width: 768px) {

}
#fh5co-logo a {
  color: #ff5722;
}
#fh5co-logo a:hover, #fh5co-logo a:focus {
  color: #ff5722 !important;
}

#fh5co-menu-wrap {
    position: relative;
    z-index: 2;
    display: block;
    float: none;
    margin-top: 15px;
}
#fh5co-menu-wrap .sf-menu a {
    padding: 0px 0  3px!important;
    border-radius: 0px !important;
}
#fh5co-primary-menu > li > ul li.active > a {
  color: #000 !important;
  padding-left: 10px !important;
}
#fh5co-primary-menu > li > .sf-with-ul:after {
  /*border: none !important;
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: initial;
    float: none;
    margin-left: 4px;
    margin-right: -4px;
    top: 50%;
    font-size: 12px;
    margin-top: 0;
    content: "\e922";
    color: #4e4e4e;
    transition: all .3s ease;*/


display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    position: relative;
    float: none;
    margin-left: 4px;
    margin-right: -4px;
    right: -3px;
    font-size: 12px;
    margin-top: 0;
    color: #121212;
}
/*.stuck #fh5co-primary-menu > li > .sf-with-ul:after {
  color: #4e4e4e !important;
  transition: all .3s ease;
}
, 
.stuck #fh5co-primary-menu > li.active > .sf-with-ul:after {}
*/
#fh5co-primary-menu > li:hover > .sf-with-ul:after, #fh5co-primary-menu > li > .sf-with-ul:hover:after{
    color: #1c9cbf !important;
    transition: all .3s ease;
}
#fh5co-primary-menu > li.active > .sf-with-ul:after{
  color: #1c9cbf;
}
#fh5co-primary-menu > li > ul li {
  position: relative;
}
#fh5co-primary-menu > li > ul li > .sf-with-ul:after {
  border: none !important;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  float: right;
  margin-right: 10px;
  top: 20px;
  font-size: 12px;
  content: "\e924";
  color: rgba(0, 0, 0, 0.5);
}

#fh5co-primary-menu .fh5co-sub-menu {
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 15px;
    left: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        min-width: 235px;
        text-align: left !important;
}
#fh5co-primary-menu .fh5co-sub-menu li{
  margin: 0px;
}
#fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu {
  left: 100%;
}

#fh5co-primary-menu .fh5co-sub-menu:before {
  position: absolute;
  top: -9px;
  left: 20px;
  width: 0;
  height: 0;
  content: '';
}

#fh5co-primary-menu .fh5co-sub-menu:after {
  position: absolute;
  top: -8px;
  left: 21px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  border-bottom: 8px solid white;
  border-left: 8px solid transparent;
  content: '';
  display: none;
}

#fh5co-primary-menu .fh5co-sub-menu .fh5co-sub-menu:before {
  top: 6px;
  left: 100%;
}

#fh5co-primary-menu .fh5co-sub-menu .fh5co-sub-menu:after {
  top: 7px;
  right: 100%;
  border: none !important;
}

.site-header.has-image #primary-menu .sub-menu {
  border-color: #ebebeb;
  -webkit-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
  box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.09);
}
.site-header.has-image #primary-menu .sub-menu:before {
  display: none;
}

#fh5co-primary-menu .fh5co-sub-menu a {
    padding: 0.05em 0em !important;
    line-height: 25px;
    color: #000 !important;
    transition: all .5s ease;
    font-weight: 600;
    font-size: 15px !important;
    text-transform: capitalize;
}

/*#fh5co-header-section .stuck #fh5co-primary-menu .fh5co-sub-menu a{
    color: #fff !important;
    transition: all .5s ease;
}*/
#fh5co-primary-menu .fh5co-sub-menu li a:before{
  display: none !important;
}

#fh5co-primary-menu .fh5co-sub-menu {padding: 0px 0;
    min-width: 15.5rem;
    border: none;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    box-shadow: 0px 0px 19px 3px rgba(0, 0, 0, 0.3);}

#fh5co-primary-menu .fh5co-sub-menu li:not(:last-child) {border-bottom: 1px solid #f0f4fa;}

#fh5co-primary-menu .fh5co-sub-menu a {color: #434343 !important;
    display: block;
    width: 100%;
    padding: 16px 15px !important;
    line-height: normal;
    font-family: 'Montserrat', sans-serif !important;
    transition: all .3s ease;font-size: 16px !important;font-weight: 500;}

#fh5co-primary-menu .fh5co-sub-menu:before {content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #005ea1,#0d82ce, #2fb29b);}

#fh5co-header-section nav ul li a.sf-withul:hover:before, #fh5co-header-section nav ul li:hover > a.sf-withul:before, #fh5co-header-section nav ul li.active > a.sf-withul:before {display: none;}

#fh5co-primary-menu .fh5co-sub-menu li:hover,
#fh5co-primary-menu .fh5co-sub-menu li:active,
#fh5co-primary-menu .fh5co-sub-menu li:focus,
#fh5co-primary-menu .fh5co-sub-menu li.active{
      background-color: #f3f7fd;
    transition: all .3s ease;
}


#fh5co-primary-menu .fh5co-sub-menu a:hover,
#fh5co-primary-menu .fh5co-sub-menu a:active,
#fh5co-primary-menu .fh5co-sub-menu a:focus,
#fh5co-primary-menu .fh5co-sub-menu li.active a {
    background: linear-gradient(to right, #005ea1, #2fb29b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .3s ease;
}


#fh5co-work-section,
#fh5co-services-section,
#fh5co-content-section,
#fh5co-work-section_2,
#fh5co-blog-section,
#fh5co-features {
  padding: 7em 0;
}
@media screen and (max-width: 768px) {
  #fh5co-work-section,
  #fh5co-services-section,
  #fh5co-content-section,
  #fh5co-work-section_2,
  #fh5co-blog-section,
  #fh5co-features {
    padding: 4em 0;
  }
}

.fh5co-section-gray {
  background: rgba(0, 0, 0, 0.04);
}

.heading-section {
  padding-bottom: 1em;
  margin-bottom: 5em;
}
.heading-section:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 50%;
  width: 100px;
  margin-left: -50px;
  height: 2px;
  background: #ff5722;
}
.heading-section h3 {
  font-size: 40px;
  font-weight: 300;
  position: relative;
}
.heading-section p {
  font-size: 20px;
}

.feature-text h3 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
  letter-spacing: .2em;
}
.feature-text h3 .number {
  margin-right: 5px;
  color: #ff5722;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

#gtco-footer {
    clear: both;
    position: relative;
    padding: 7em 0 0;
}

.sub-to-news-wrap {
    position: relative;
    padding: 55px 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 25px -17px #000;
    margin: 160px 0 60px;
}


.sub-to-news-wrap input[type=email] {
  display: inline;
    padding: 12px 20px;
    margin: 9px 0;
    box-sizing: border-box;
    border-radius: 30px;
    border: none;
    outline: none;
    width: 55%;
    height: 20%;
    text-align: left;
    background: #f2f2f2;
    transition: all .3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #797979;
        margin-right: 5px;
}
.sub-to-news-wrap input[type=email]:hover {
    transition: all .3s ease;
}
.sub-to-news-wrap input[type=email]::placeholder { 
    color: #797979;
    opacity: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: left;


}
.sub-to-news-wrap button{
  height: 50px;
  padding: 0;
  margin: 0;
  
}
.sub-to-news-wrap .btn{
  border-radius: 30px;
  width: 14%;
  margin-left: 5px;
  font-size: 20px;

}

@media(max-width: 992px){
  .sub-to-news-wrap .btn{
    width: 20%
  }
  .sub-to-news-wrap input[type=email]{
    width: 50%;
  }
}
@media(max-width: 768px){
  .sub-to-news-wrap  .btn{
    width: 40%
  }
  .sub-to-news-wrap input[type=email]{
    width: 90%;
  }
}
@media(max-width: 440px){
  .sub-to-news-wrap  .btn{
    width: 50%;
    font-size: 18px;
  }
  .sub-to-news-wrap input[type=email]{
    width: 100%;
  }
}

#gtco-footer .heading-with-sub p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    color: #927196;
}

#gtco-footer .row.row-pb-md {
    margin: 0;
}
.footer-links{
font-size: 14px !important;
    font-weight: 400;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    color: #927196 !important;
    line-height: normal;
}
.footer-links a {
    text-transform: none;
    letter-spacing: 0;
    word-spacing: 0;
    font-size: 15px !important;
    font-weight: 400;
    display: inline-block;
    margin: 5px !important;
    font-family: 'Montserrat', sans-serif;
    color: #434343 !important;
    line-height: normal;
}
.footer-links a:hover {
    text-decoration: underline;
}
#gtco-footer .gtco-widget {
    margin-bottom: 40px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    word-spacing: 1px;
}
.social-links {
    position: relative;
    margin-bottom: 10px;
    margin-top: 25px;
}

.social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links ul li {
    display: inline-block;
}

.social-links ul li a {
    padding: 0px 5px;
    line-height: normal;
    background: #01b1d7;
    color: #fff;
}

.gtco-widget ul.scnd-menu li {
    margin-right: 5px;
    text-align: left;
    font-size: 14px;
}

.gtco-widget ul.scnd-menu {
    text-align: left;
    font-size: 14px;
}

.gtco-widget ul.scnd-menu li a {
    font-size: 14px;
    text-transform: capitalize;
    color: #666568;
}
#gtco-footer .gtco-widget p, #gtco-footer .gtco-widget .links a {
    color: #434343;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
    text-transform: capitalize;
}
#gtco-footer .gtco-widget .call-us {
    font-size: 24px;
    color: #3b3b3b;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    margin-top: 10px;
}

#gtco-footer .gtco-widget .call-us a {
    font-weight: 600;
}
#gtco-footer .gtco-widget .call-us a:hover{
  color: #3f9dc2 !important;
}
.links.two-cols ul li {
    float: left;
    width: 50%;
}
/*.gtco-widget.footer-info p, .gtco-widget.footer-info a {
    color: #3b3b3b !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: initial;
    font-size: 20px !important;
    line-height: 32px !important;
    font-weight: 400 !important;
}*/
.gtco-widget .heading h2, .gtco-widget .heading h2 a {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #02abcf;
    line-height: normal;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 400 !important;
}
.gtco-widget p {
    font-size: 15px;
        margin-top: 15px;
}
#gtco-footer  h3 {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 16px;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
    color: #fff;
}
#gtco-footer .address-box{
    font-size: 15px;
}
#gtco-footer .address-box a {
    color: #fff !important;
}
#gtco-footer .address-box ul {
    padding: 0px;
    list-style-type: none;
    font-size: 15px;
}
#gtco-footer .address-box ul li {
    margin-bottom: 8px;
}
#gtco-footer .address-box ul li span {
    color: #890304;
    margin-right: 5px;
    font-weight: 600;
}
#gtco-footer .social-media a {
    color: #fe1b24;
    font-size: 30px;
}
#gtco-footer .social-media a:hover {
    color: #231f20;
}
#gtco-footer .social-media {
margin-top: 15px;
    margin-bottom: 20px;
    text-align: center !important;
}
#gtco-footer .social-media .social-col {
    display: inline-block;
}

.footer-nav {
    position: relative;
    margin-top: 0px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: normal;
}

.footer-nav ul li {
    display: inline-block;
    line-height: normal;
    margin-right: 45px;
    position: relative;
}

.footer-nav ul li:last-child {
    margin: 0;
}
.footer-nav ul li:before {
    content: ' | ';
    position: absolute;
    top: -1px;
    right: -28px;
    color: #02cab8;
}
.footer-nav ul li:last-child:before {
    display: none;
}
.footer-nav ul li a {
    font-family: 'Montserrat', sans-serif;
    color: #02cab8 !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    transition: all .3s ease !important;
}
.footer-nav ul li a:hover{
    color:#3f9dc2 !important;
}
.copyright {
    background: transparent;
    padding: 13px 0 18px;
    text-align: center;
    margin-top: 0;
    font-size: 14px;
    color: #383838;
}
.copyright p {
    margin: 5px 0px 10px;
    color: #434343 !important;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
#gtco-footer .gtco-widget.footer-info {padding-right: 40px;}
#gtco-footer .gtco-widget .widget-head {
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    text-align: left;
    margin-bottom: 30px;
    color: #1e2022;
    padding-left: 23px;
    margin-top: 0px;
}
#gtco-footer .gtco-widget ul.quick-links {
    padding-left: 23px;
}
#gtco-footer .gtco-widget.no-before-sm .widget-head {padding: 0;}

#gtco-footer .gtco-widget.no-before-sm ul.quick-links {padding: 0;}
#gtco-footer .gtco-widget ul.quick-links {list-style: none;text-align: left;margin: 0;}

#gtco-footer .gtco-widget ul.quick-links li {margin-bottom: 10px;}

#gtco-footer .gtco-widget ul.quick-links li a {
  color: #434343;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding-left: 0px;
    transition: all .3s ease;
  }

#gtco-footer .gtco-widget ul.quick-links li a:hover {padding-left: 10px;transition: all .3s ease;}

#gtco-footer .gtco-widget.footer-info p {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 27px;
        color: #434343 !important;
}
.footer-quick-links-wrap {
    position: relative;
    padding: 0 8%;
}

#gtco-footer  .footer-quick-links-wrap .gtco-widget {
    text-align: left !important;
    color: #fff;
    padding: 0 30px;
    position: relative;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget:before {content: '';width: 1px;height: 100%;border-right: 1px solid rgba(255, 255, 255,0.20);position: absolute;left: 100%;top: 0;}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.quick-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.quick-links li a {
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    line-height: normal;
    font-family: 'Montserrat', sans-serif;
    padding-left: 0px;
    transition: all .3s ease;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.quick-links li {
    line-height: normal;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.quick-links li a:hover {
    padding-left: 10px;
    transition: all .3s ease;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: normal;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li {
    line-height: normal;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li * {
    color: #fff;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li p, #gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li a {
    text-align: left !important;
    font-size: 13px;
    text-transform: capitalize !important;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li p {
    margin: 0;
}

#gtco-footer .footer-quick-links-wrap .gtco-widget ul.contact-footer-list li span {
    margin-right: 15px;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
}
#gtco-footer .footer-quick-links-wrap .gtco-widget.no-before:before {
    display: none;
}








.btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.btn-primary {
  background: #ff5722;
  color: #fff;
  border: none !important;
  border: 2px solid transparent !important;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus {
  box-shadow: none;
  background: #ff5722;
  color: #fff !important;
}
.btn:hover, .btn:active, .btn:focus {
  background: #393e46 !important;
  color: #fff;
  outline: none !important;
}
.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active {
  border-color: transparent;
}

.js .animate-box {
  opacity: 0;
}

#fh5co-wrapper {
	  overflow-x: hidden;
  position: relative;
  overflow: hidden;
}

.fh5co-offcanvas {
  overflow: hidden;
}
.fh5co-offcanvas #fh5co-wrapper {
  overflow: hidden !important;
}

#fh5co-page {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.fh5co-offcanvas #fh5co-page {
  -moz-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  transform: translateX(-240px);
}

@media screen and (max-width: 1190px) {
  #fh5co-menu-wrap {
    display: none;
  }
}

#offcanvas-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: #222;
  right: -240px;
  width: 240px;
  padding: 20px;
  overflow-y: scroll !important;
  display: none;
}
@media screen and (max-width:1190px) {
  #offcanvas-menu {
    display: block;
  }
}
#offcanvas-menu ul {
  padding: 0;
  margin: 0;
}
#offcanvas-menu ul li {
  padding: 0;
  margin: 0 0 10px 0;
  list-style: none;
      opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}
#offcanvas-menu ul li a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
}
#offcanvas-menu ul li a:hover {
  color: #02cab8;
}
#offcanvas-menu ul li > .fh5co-sub-menu {
  margin-top: 9px;
  padding-left: 20px;
}
#offcanvas-menu ul li.active > a {
  color: #199dc3 !important;
}
#offcanvas-menu ul .fh5co-sub-menu {
  display: block !important;
}

.fh5co-nav-toggle {
  cursor: pointer;
  text-decoration: none;
}
.fh5co-nav-toggle.active i::before, .fh5co-nav-toggle.active i::after {
  background: #fff;
}
.fh5co-nav-toggle.dark.active i::before, .fh5co-nav-toggle.dark.active i::after {
  background: #fff;
}
.fh5co-nav-toggle:hover, .fh5co-nav-toggle:focus, .fh5co-nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}
.fh5co-nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    width: 30px;
    height: 2px;
    color:#05b6a6;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #05b6a6;
    transition: all .2s ease-out;
}
.fh5co-nav-toggle i::before, .fh5co-nav-toggle i::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #05b6a6;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
/*.stuck .fh5co-nav-toggle i{
  background: #927296;
  color: #fff;
}
.stuck .fh5co-nav-toggle i::before, .stuck .fh5co-nav-toggle i::after {
    background:#927296;
  color: #927296;
}*/
.fh5co-nav-toggle.dark i {
  position: relative;
  color: #000;
  background: #000;
  transition: all .2s ease-out;
}
.fh5co-nav-toggle.dark i::before, .fh5co-nav-toggle.dark i::after {
  background: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.fh5co-nav-toggle i::before {
  top: -7px;
}

.fh5co-nav-toggle i::after {
  bottom: -7px;
}

.fh5co-nav-toggle:hover i::before {
  top: -10px;
}

.fh5co-nav-toggle:hover i::after {
  bottom: -10px;
}

.fh5co-nav-toggle.active i {
  background: transparent;
}

.fh5co-nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.fh5co-nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.fh5co-nav-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9999;
  display: block;
  margin: 0 auto;
  display: none;
  cursor: pointer;
}
.tp-bannercontainer {
	width:100%;
	position:relative;
	padding:0;
	    background: #f8f8f8;
}
 
.tp-banner{
	width:100%;
	position:relative;
}
.uppercase{
	text-transform: uppercase;
}
.tp-caption.red-bg {
background-color: #890304 !important;
    color: #fff !important;
    font-weight: 500;
    color: rgb(52, 73, 94);
    text-decoration: none;
    border-style: none;
    line-height: normal !important;
}
.redbtn {
    padding: 9px 18px;
    transition: all 0.5s ease-out 0s;
    min-height: 0px;
    min-width: 0px;
    line-height: 24px;
    border-width: 0px;
    margin: 0px;
    letter-spacing: 0px;
    font-size: 18px;
    display: inline-block;
    margin: 0px !important;
    text-align: center;
    min-width: auto;
    position: relative;
    border-radius: 0px;
    border-radius: 25px;
    background: #ff1b24;
    color: #fff !important;
    border: 1px solid #ff1b24 !important;
    border-color: #ff1b24;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize !important;
}
.redbtn:hover,.redbtn:focus {
    transition: all 0.5s ease-out 0s;
    background: transparent !important;
    color: #ff1b24 !important;
    border-color: #ff1b24 !important;
}
/*
.redbtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #ffffff61;
    transition: all .3s ease;
}
.redbtn:hover::before {
    width: 100%;
    transition: all .3s ease;
}
*/
.fh5co-cover,
.fh5co-hero {
  position: relative;
  height: 200px;
}
@media screen and (max-width:991px){
  .fh5co-cover,
  .fh5co-hero {
    background-attachment: initial;
  }
}
@media screen and (max-width: 768px) {
  .fh5co-cover,
  .fh5co-hero {
    height: 700px;
  }
  .footer-quick-links-wrap{
        padding: 0px;
    }
    #gtco-footer .footer-quick-links-wrap .gtco-widget{
      padding: 0px;
    }
    #gtco-footer .footer-quick-links-wrap .gtco-widget:before{
      left: 106%;
    }
}
@media screen and (max-width:480px){
  .fh5co-cover, .fh5co-hero {
    height: 500px;
  }
}
@media screen and (max-width:380px){
  .fh5co-cover, .fh5co-hero {
    height: 450px;
  }
  .address-box {
    font-size: 12px;
  }
}
.fh5co-cover.fh5co-hero-2,
.fh5co-hero.fh5co-hero-2 {
  height: 600px;
}
.fh5co-cover.fh5co-hero-2 .fh5co-overlay,
.fh5co-hero.fh5co-hero-2 .fh5co-overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

.fh5co-overlay {
  position: absolute !important;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  display: block;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
    height: 100%;
    width: 100%;
    content: '';
    top: 0;
}

.fh5co-cover {
  background-size: cover;
  position: relative;
    background-position: 50% 100%;
}
@media screen and (max-width: 768px) {
  .fh5co-cover {
    heifght: inherit;
    padding: 3em 0;
  }
}
.fh5co-cover.fh5co-cover_2 {
  height: 600px;
}
@media screen and (max-width: 768px) {
  .fh5co-cover.fh5co-cover_2 {
    height: inherit;
    padding: 3em 0;
  }
}
.fh5co-cover .desc {
    top: 50%;
    position: absolute;
    width: 100%;
    margin-top: -90px;
    z-index: 2;
    color: #fff;
}
.fh5co-cover .desc p {
    color: #fff;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
}
.banner-top-text {
    font-size: 38px;
    text-transform: capitalize;
    text-align: left;
    line-height: normal;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
  }
.fh5co-inner-banner .banner-top-text {
    font-size: 50px;
    line-height: normal;
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
}
/*.fh5co-cover .desc a {
    background: #149ee4 !important;
    border-radius: 0px;
    padding: 0.4em 1em;
    position: relative;
    border: none !important;
    transition: 0s;
}
.fh5co-cover .desc a:before {
    content: '';
    position: absolute;
    top: 0px;
    right: -11px;
    width: 30%;
    height: 100%;
    background: #149ee4;
    z-index: -1;
    -ms-transform: skew(-30deg,0deg);
    -webkit-transform: skew(-30deg,0deg);
    transform: skew(-30deg,0deg);
    /* padding: .3em 1em;
}
.fh5co-cover .desc a:hover, .fh5co-cover .desc a:hover:before {
    background: #146086 !important;
    transition: 0s;
}*/
.fh5co-inner-banner .seperator {
    display: inline-block;
    width: 65px;
    height: 2px;
    background: #fff;
}
@media screen and (max-width: 768px) {
  .fh5co-cover .desc {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.fh5co-cover .desc h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 60px;
  margin-bottom: 10px;
  font-weight: 300 !important;
}
.fh5co-cover .desc h2 strong {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fh5co-cover .desc h2 {
    font-size: 40px;
  }
}
.fh5co-cover .desc span {
  display: block;
  margin-bottom: 30px;
  font-size: 28px;
  letter-spacing: 1px;
}
.fh5co-cover .desc span a {
  color: #fff;
}
.fh5co-cover .desc span a:hover, .fh5co-cover .desc span a:focus {
  color: #fff !important;
}
.fh5co-cover .desc span a:hover.btn, .fh5co-cover .desc span a:focus.btn {
  border: 2px solid #fff !important;
  background: transparent !important;
}
.fh5co-cover .desc span a.fh5co-site-name {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1190px) {
  .fh5co-nav-toggle {
    display: block;
    top: 10px;
    right: 20px;
    margin-top: 2em;
  }
    .right-logos{
    display: none;
  }
  }
@media screen and (max-width: 768px) {
  .fh5co-nav-toggle {
    display: block;
    top: 38px;
    margin-top: 2em;
  }
  .right-logos{
    display: none;
  }
  .social-media{
    margin-top: 0;
    text-align: right;
  }
  #fh5co-logo img {
    /*max-width: 120px;*/
}
}
@media screen and (max-width: 767px) {
  .social-media{
    margin-top: 0;
    text-align: right;
    margin:0 -15px;
  }
  .address-box {
    font-size: 16px;
    text-align: center;
}
.address,.phone-no {
    margin: 5px 0;
}
.b-icon span{
  display: none;
}
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    float: none;
    width: 100%;
  }
}

.row-bottom-padded-lg {
  padding-bottom: 7em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-lg {
    padding-bottom: 2em;
  }
}

.row-top-padded-lg {
  padding-top: 7em;
}
@media screen and (max-width: 768px) {
  .row-top-padded-lg {
    padding-top: 2em;
  }
}

.row-bottom-padded-md {
  padding-bottom: 4em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-md {
    padding-bottom: 2em;
  }
}

.row-top-padded-md {
  padding-top: 4em;
}
@media screen and (max-width: 768px) {
  .row-top-padded-md {
    padding-top: 2em;
  }
}

.row-bottom-padded-sm {
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .row-bottom-padded-sm {
    padding-bottom: 2em;
  }
}

.row-top-padded-sm {
  padding-top: 2em;
}
@media screen and (max-width: 768px) {
  .row-top-padded-sm {
    padding-top: 2em;
  }
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lead {
  line-height: 1.8;
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.fh5co-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('hourglass.svg') center no-repeat #222222;
}


.row.topbar-container {justify-content: space-evenly;margin: 0;flex-flow: row;}

.row.topbar-container .logo-wrapper,.row.topbar-container .contact-container {width: 12%;margin: 0 !important;}

.row.topbar-container .navbar-container {width: 82%;}



/*# sourceMappingURL=style.css.map */
body {
    font-family: 'Montserrat', sans-serif;
}


.margin-left-30{
    margin-left: 30px;
}

#fh5co-logo {
    margin: 0;
}

/*.stuck #fh5co-logo {
    margin: 0;
    transition: all .3s ease;
    padding: 0px;
    background: transparent;
    border-radius: 0px;
    box-shadow: none;
}

.stuck #fh5co-logo img {
    max-width: 120px;
    margin-bottom: 10px;
}*/


#offcanvas-menu ul li a {
    color: #fff;
    font-size: 16px;
    opacity: 0.8;
}

#offcanvas-menu ul li.active > a {
    opacity: 1;
    color: #05b6a6 !important;
}

#fh5co-menu-wrap {
    margin-top: 0px;
    transition: ease 0.5s all;
}

a,
a:hover,
a:focus {
    color: #264116;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.padding-0 {
    padding: 0px;
}

.heading h2 {
    font-size: 27px;
    font-weight: 600;
}


.no-padd {
    padding: 0;
}

.zoom-small {
    transform: scale(1.05);
}

.heading-with-sub {
    position: relative;
}

.heading-with-sub h2 {
    margin-bottom: 25px ;
    font-size: 44px;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-weight: 400;
}

.black-caption .heading-with-sub h2 span {
    background: linear-gradient(to right, #005ea1,#0d82ce, #2fb29b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-weight: bold;

}

.heading-with-sub h2 {
    position: relative;
}

.heading-with-sub h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 100;
}

h3.small-heading {
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-weight: 800;
    color: #02cab8;
    font-size: 35px;
    margin-bottom: 15px;
}

.black-caption h2 {
    color: #1e2022;
}

.black-caption h2 span {
    color: #1e2022;
}
.black-caption + p {font-size: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400 !important;
    color: #434343 !important;
    }
.white-caption p {
    color: #fff;
}

.white-caption h2 {
    font-size: 35px;
    color: #fff;
    margin-bottom: 28px;
}

.white-caption h2 span {
    color: #fff;
}


.gtco-widget.footer-info p {margin-bottom: 20px !important;}

.gtco-widget.footer-info a {font-weight: 400;font-size: 15px;display: block;margin-bottom: 15px;font-family: 'Montserrat', sans-serif;text-transform: capitalize;color: #434343;}

.gtco-widget.footer-info a img {margin-right: 11px;position: relative;top: -2px;}


.footer-social-icons a 
    {width: 35px;
    height: 35px;
    display: inline-block;
    /* border: 1px solid; */
    text-align: center;
    line-height: 35px;
    border-radius: 25px;
    border: 1px solid transparent; 
    border-radius: 20px;
    background: 
      linear-gradient(to right, white, white), 
      linear-gradient(90deg,#187ec3 , #30b29b); 
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    font-size: 16px;

}

.footer-social-icons a i.fa-brands{
 background: linear-gradient(-90deg,#187ec3 , #30b29b);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;

}

.footer-social-icons {margin-top: 20px;}


div#call-to-section {
    position: relative;
    margin: 20px 0px 100px;
}

div#call-to-section .row {
    background: #fff;
    box-shadow: 0px 0px 37px -12px #ccc;
    border-radius: 85px;
    padding: 17px 0;
    text-align: center;
    margin: 0;
}

div#call-to-section .row p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
    margin: 8px 0;
}


.heading-with-sap {
    margin-bottom: 25px;
}

.heading-with-sap h2 {
    margin-bottom: 0px;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
}

.heading-with-sap span.saperator {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #26a1a6;
    margin: 0px 0 0;
}

.links ul {
    list-style-type: none;
}

.links ul {
    list-style-type: none;
    padding-left: 0;
}

.links ul li {
    padding: 2px 0;
}

.links ul a {
    transform: translatex(0px);
    -webkit-transform: translatex(0px);
    transition: all 0.4s !important;
    display: block;
    font-size: 15px;
}

.links ul a:hover {
    transform: translatex(10px);
    -webkit-transform: translatex(10px);
    display: block;
    transition: .3s all;
    -webkit-transition: .3s all;
    text-decoration: underline;
}

a.themebtn {
    background: #05b6a6;
    background-size: 100% 100%;
    padding: 14px 25px;
    text-align: center;
    display: inline-block;
    min-width: 240px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    box-shadow: none;
    border: none;
    transition: all .3s ease;
}

a.themebtn:hover,
a.themebtn:active,
a.themebtn:focus {
    box-shadow: 0px 15px 35px rgba(5, 182, 166, 0.3);
    transform: translateY(-3px);
    border-color: transparent !important;
    background: #05b6a6;
    color: #fff;
    transition: all .3s ease;
}

a.themebtn.invert {
    background: #018DC8;
    background-size: 100% 100%;
    color: #fff !important;
}
a.themebtn.invert:hover {
    background: #018DC8;
    background-size: 100% 100%;
    color: #fff !important;
}


.subbtn {
    background: #05b6a6;
    background-size: 100% 100%;
    padding: 15px 50px;
    text-align: center;
    display: inline-block;
    min-width: 180px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    box-shadow: none;
    border: none;
    transition: all .3s ease;
}

.subbtn:hover,
.subbtn:active,
.subbtn:focus {
    background: #05b6a6;
    box-shadow: 0px 15px 35px rgba(5, 182, 166, 0.3);
    background-size: 100% 100%;
    color: #fff;
    transition: all .3s ease;
}



div#contact-us-section {
    position: relative;
    padding: 100px 0;
    background: #f6f6f6 url('../images/contact-us-section-bg.png') no-repeat top right;
    background-position-y: 40px;
    background-size: 600px;
}

.contact-us-form {
    position: relative;
    padding: 50px 0 0;
}

.contact-us-form .group-label {
    font-family: 'Montserrat', sans-serif;
    color: #004689;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.contact-us-form .form-group {
    margin-bottom: 17px;
}

.contact-us-form .form-group input.form-control,
.contact-us-form .form-group select.form-control,
.contact-us-form .form-group textarea {
    border-color: #f8f9fa;
    box-shadow: none;
    border-radius: 3px;
    color: #646464;
}

.contact-us-form .form-group input.form-control::placeholder,
.contact-us-form .form-group textarea::placeholder {
    color: #646464;
}

.location-info-wrap.row {
    background: #193771;
    color: #fff;
    padding: 30px 0;
}

.location-info-wrap .media-left,
.location-info-wrap .media-right,
.location-info-wrap .media-body {
    vertical-align: middle;
}

.location-info-wrap .media-body p {
    margin: 0;
    font-size: 22px;
    color: #fff;
}

.location-info-wrap .media-body {
    padding-left: 20px;
}

ul.info-list {
    padding: 45px 0;
    list-style: none;
    margin: 0;
}

ul.info-list li {
    display: flex;
    font-size: 24px;
    color: #193771;
    margin-bottom: 23px;
}

ul.info-list li span {
    padding: 4px 9px 0 0;
    font-size: 20px;
    color: #7bb32f;
}

ul.info-list li:last-child {
    margin: 0px;
}

#fh5co-menu-wrap ul.flexMenu-popup a {
    padding: 0 !important;
    color: #fff !important;
    border: none !important;
}

#fh5co-menu-wrap ul.flexMenu-popup li {
    margin: 0;
}

#fh5co-menu-wrap ul.flexMenu-popup {
    background: #02cab8;
    top: 70%;
}

#fh5co-menu-wrap ul.flexMenu-popup a:hover {
    background: #fff;
}


.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.gototop.active {
  opacity: 1;
  visibility: visible;
}

.gototop a {
  width: 50px;
  height: 50px;
  display: table;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.gototop a span {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
}

.gototop a:hover, .gototop a:active, .gototop a:focus {
  text-decoration: none;
  outline: none;
}

/*@media only screen and (max-width: 1220px) and (min-width: 1170px) {
    #fh5co-header-section nav ul li {
        margin-right: 10px;
    }
    .top-link a.themebtn {
        font-size: 13px;
    }
    #fh5co-logo img {
        width: 120px !important;
        max-width: inherit;
    }
    .banner-content h1 {
        font-size: 27px;
    }
    .banner-content h1 span {
        font-size: 51px;
    }
    div#patients-slider .owl-nav button.owl-next {
        margin-right: -5px !important;
    }
    div#patients-slider .owl-nav button.owl-prev{
        margin-left:-5px !important;
    }
}*/



.social-media-list ul {
    padding: 0;
}

.social-media-list li {
    padding: 0;
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}

.social-media-list li a {
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border: 1px solid #eee;
    color: #333;
    border-radius: 25px;
    font-size: 15px;
    transition: all .3s ease;
}

.social-media-list li a:hover {
    transform: rotate(360deg);
    color: #927196;
    transition: all .3s ease;
}


@media screen and (max-width: 991px){
    
}
@media screen and (max-width: 767px){
   
}


@media only screen and (min-device-width: 768px) and (max-device-width: 991px) {
        #offcanvas-menu ul li.d-block.d-md-none {
            display: block !important;
        }


        
        #fh5co-logo{
                margin-top: 0px;
        }
       
        #fh5co-header-section nav ul.sf-menu {padding: 0 15px;}

        #fh5co-header-section nav ul li {margin-right: 5px;}

        #fh5co-header-section nav ul li a {font-size: 15px;}

        #fh5co-primary-menu > li > .sf-with-ul:after {
            border-top: 0.3em solid;
            border-right: 0.4em solid transparent;
            border-bottom: 0;
            border-left: 0.4em solid transparent;
            right: 1px;
        }
        
        #gtco-footer .gtco-widget .widget-head, #gtco-footer .gtco-widget ul.quick-links {
            padding: 0;
        }
        .copyright * {text-align: center !important;}

        .copyright .footer-links {margin-top: 7px;}
        .footer-social-icons a {
            margin-bottom: 5px;
        }

}




@media only screen and (min-device-width: 992px) and (max-device-width: 1024px) {
   
    #fh5co-header-section nav ul li{
        margin-right: 10px;
    }
    #fh5co-menu-wrap .sf-menu > li > a {
        padding: 5px 0 !important;
    }
    
    #fh5co-logo img {
        max-width: inherit;
    }
   
    a.themebtn {
        font-size: 14px;
    }
    
    a.themebtn.small,a.themebtn.small.invert{
        min-width: 170px !important;
    }
    
}


@media only screen and (min-device-width: 768px) and (max-device-width: 991px) {


    .fh5co-cover,
    .fh5co-hero {
        height: 325px !important;
    }
    .logo-bar {
        padding: 10px 0px;
        position: relative;
    }
    .fh5co-nav-toggle {
        top: 37px;
        margin-top: 0em;
            right: 25px;
    }
    /*.stuck .fh5co-nav-toggle {
        top: 37px;
        margin-top: 0em;
            right: 25px;
    }*/
    #fh5co-logo img {
    /*    max-width: 100px;*/
        margin-left: 0px;
    }

   
    a.themebtn {
        font-size: 14px;
    }
   

    h3.small-heading {
        font-size: 25px;
    }


    a.themebtn.small,a.themebtn.small.invert{
        min-width: 170px !important;
    }
   
    .row.partners img {
        margin-bottom: 30px;
    }
   

    #gtco-footer .gtco-widget p,
    #gtco-footer .gtco-widget .links a {
        font-size: 15px;
    }
    #gtco-footer .copyright-info p,
    #gtco-footer .copyright-info a {
        font-size: 17px;
    }
    .heading-with-sap {
        margin-bottom: 10px;
    }
    #gtco-footer .gtco-widget.footer-logo {
        margin-bottom: 40px;
    }
    .footer-nav ul li:before {
        content: ' | ';
        position: absolute;
        top: -1px;
        right: -11px;
        color: #02cab8;
    }
}

/*@media screen and (max-width: 991px) {
    .heading-with-sub h2 {
        font-size: 40px;
    }
    .footer-nav ul li {
        margin-right: 15px;
    }
    .footer-links a {
        margin: 0px 0px !important;
        font-size: 13px !important;
    }
}

@media screen and (max-width: 768px) {
    .banner-heading h1 {
        font-size: 55px;
    }
    #fh5co-logo {
        text-align: left;
    }
    .fh5co-nav-toggle {
        margin-top: 0em;
    }
    .sticky-banner.stuck .fh5co-nav-toggle {
        margin-top: 0em;
        transition: ease .5s all;
    }


}*/

@media screen and (max-width: 767px) {

    
    .logo-bar {
        padding: 10px 0px;
    }
    #fh5co-logo {
        margin-top: 0;
        background: transparent !important;
        border-radius: 0px;
        box-shadow: none;
    }
    #fh5co-logo img {
        margin-left: 0px;
    }
   /* .stuck #fh5co-logo img {
        max-width: 100px;
        margin-left: 0px;
    }*/
    .fh5co-nav-toggle {
        top: 25px;
        margin-top: 0em;
    }
    /*.stuck .fh5co-nav-toggle {
        top: 25px;
        margin-top: 0em;
    }*/
    .logo-bar {
        padding:10px 0px;
        position: relative;
    }


    a.themebtn {
        font-size: 14px;
    }
   

    a.themebtn.small,a.themebtn.small.invert{
        min-width: 170px !important;
    }
   

    .social-media a,
    .social-media a:hover {
        color: #fff;
    }
    .social-media a {
        background: transparent;
    }
   
   

   
    h3.small-heading {
        font-size: 26px;
    }



    
    #gtco-footer {
        padding: 0;
    }
    #gtco-footer .gtco-widget.footer-logo {
        text-align: left;
        margin-bottom: 40px;
    }
    #gtco-footer .social-media {
        text-align: center;
    }
    .fh5co-cover,
    .fh5co-hero {
        height: 270px !important;
    }
    .fh5co-cover .desc {
        margin-top: 0;
        top: 13%;
    }
    .fh5co-cover .desc p {
        font-size: 16px;
        line-height: normal;
        margin-bottom: 10px;
    }
    .fh5co-cover .desc a.themebtn {
        padding: 12px 25px;
        min-width: 215px;
        font-size: 14px;
    }
   
    #gtco-footer .copyright-info p br {
        display: none;
    }
    #gtco-footer .gtco-widget p{
        font-size: 15px;
        line-height: 25px;
    }
    .footer-links a {
        margin: 0 10px;
    }
    #gtco-footer .copyright-info p,
    #gtco-footer .copyright-info a {
        font-size: 15px;
        line-height: 27px;
    }
    .copyright {
        margin-top: 15px;
    }
    #gtco-footer h3 {
        text-align: center;
        margin-top: 10px;
    }
    .mobile-margin {
        margin-top: 25px;
        display: block;
    }
    .footer-nav ul li {
        margin-right: 20px;
    }
    .footer-nav ul li:before {
        top: 0px;
        right: -15px;
    }
    .gtco-widget.footer-info p,
    .gtco-widget.footer-info a {
        font-size: 17px !important;
        line-height: 28px !important;
    }


    #gtco-footer .gtco-widget p,
    #gtco-footer .gtco-widget .links a {
        font-size: 13px;
    }
    #gtco-footer .copyright-info p,
    #gtco-footer .copyright-info a {
        font-size: 17px;
    }
    .heading-with-sap {
        margin-bottom: 10px;
    }
    #gtco-footer .gtco-widget.footer-logo {
        margin-bottom: 40px;
    }
    .footer-nav ul li:before {
        content: ' | ';
        position: absolute;
        top: -1px;
        right: -11px;
        color: #02cab8;
    }


}



@media screen and (max-width: 767px){
    #offcanvas-menu ul li.d-block.d-md-none {
        display: block !important;
    }
    
        #fh5co-logo{
                margin-top: 0px;
        }
       
        #fh5co-header-section nav ul.sf-menu {padding: 0 15px;}

        #fh5co-header-section nav ul li {margin-right: 5px;}

        #fh5co-header-section nav ul li a {font-size: 15px;}

        #fh5co-primary-menu > li > .sf-with-ul:after {
            border-top: 0.3em solid;
            border-right: 0.4em solid transparent;
            border-bottom: 0;
            border-left: 0.4em solid transparent;
            right: 1px;
        }
        

        #gtco-footer .gtco-widget .widget-head, #gtco-footer .gtco-widget ul.quick-links {
            padding: 0;
        }
        .copyright * {text-align: center !important;}

        .copyright .footer-links {margin-top: 7px;}
        .footer-social-icons a {
            margin-bottom: 5px;
        }
        footer#gtco-footer {
            margin-top: 110px;
        }

}

@media screen and (max-width: 480px) {
    footer .rst-acc-socials li {
        display: inline-block;
        padding: 0 5px;
        width: 45%;
    }
    .blue-heading {
        font-size: 23px;
    }
    .banner-top-text {
        font-size: 32px;
    }
    .fh5co-inner-banner .banner-top-text {
        font-size: 32px;
    }
    .heading-with-sub h2 {
        font-size: 32px;
    }
    .heading-with-sub h4 {
        font-size: 18px;
    }
    .heading-with-sap h2 {
        font-size: 32px;
    }
    .heading h2 {
        font-size: 25px;
    }
    .black-caption h2 {
        font-size: 32px;
    }
    .white-caption h2 {
        font-size: 39px;
    }
    .netsuite-solution-wrap .heading-with-sub h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .netsuite-solution-wrap.one p {
        font-size: 18px;
        line-height: normal;
    }
}

@media screen and (max-width: 380px) {
    .banner-top-text {
        font-size: 29px;
    }
    .fh5co-inner-banner .banner-top-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 340px) {
    .gtco-widget .heading h2 {
        font-size: 20px;
    }
    .black-caption h2 {
        font-size: 33px;
    }
    .white-caption h2 {
        font-size: 33px;
    }
    .heading-with-sub h2 {
        font-size: 33px;
    }
    .heading-with-sub h4 {
        font-size: 17px;
    }
    .banner-top-text {
        font-size: 23px;
    }
    .fh5co-inner-banner .banner-top-text {
        font-size: 17px;
    }
    img.footer-logo {
        max-width: 180px;
    }
}

.social-icon-footer ul {
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: center;
}

.social-icon-footer ul li {
    display: inline-block;
    margin-right: 15px;
}

.social-icon-footer ul li:last-child {
    margin-right: 0;
}

.social-icon-footer ul li a {
    color: #5e5e5e !important;
    font-size: 19px !important;
    line-height: 41px;
    width: 40px !important;
    height: 40px !important;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid rgba(94, 94, 94, 0.39);
    transition: all .3s ease;
}
.social-icon-footer ul li a:hover {
    color: #8a6c8e !important;
    transition: all .3s ease;
}
.social-icon-footer ul li a:hover span {
    transform: rotate(360deg) !important;
    transition: all .3s ease;
}

.social-icon-footer ul li a span {
    transform: rotate(0deg) !important;
    transition: all .3s ease;
}

@media screen and (min-width: 991px) {

}



@media screen and (max-width: 844px) {
   
    .fh5co-nav-toggle{
        z-index: 12;
    }
   
}

@media screen and (max-width: 926px) {

      
    .logo-bar {
        padding: 10px 0px;
    }
    #fh5co-logo {
        margin-top: 0;
        background: transparent !important;
        border-radius: 0px;
        box-shadow: none;
    }
    #fh5co-logo img {
        margin-left: 0px;
    }
    /*.stuck #fh5co-logo img {
        max-width: 100px;
        margin-left: 0px;
    }*/
    .fh5co-nav-toggle {
        top: 37px;
        margin-top: 0em;
    }
    /*.stuck .fh5co-nav-toggle {
        top: 25px;
        margin-top: 0em;
    }*/
    .logo-bar {
        padding:10px 0px;
        position: relative;
    }


    
    a.themebtn {
        font-size: 14px;
    }
   
    a.themebtn.small,a.themebtn.small.invert{
        min-width: 170px !important;
    }
   

    .social-media a,
    .social-media a:hover {
        color: #fff;
    }
    .social-media a {
        background: transparent;
    }
    a.header-btn {
        margin: 26px 60px 26px 0;
    }
    /*.stuck a.header-btn {
        margin: 19px 60px 19px 0;
    }*/
   
    h3.small-heading {
        font-size: 26px;
    }



   
    #gtco-footer {
        padding: 0;
    }
    #gtco-footer .gtco-widget.footer-logo {
        text-align: left;
        margin-bottom: 40px;
    }
    #gtco-footer .social-media {
        text-align: center;
    }
    .fh5co-cover,
    .fh5co-hero {
        height: 270px !important;
    }
    .fh5co-cover .desc {
        margin-top: 0;
        top: 13%;
    }
    .fh5co-cover .desc p {
        font-size: 16px;
        line-height: normal;
        margin-bottom: 10px;
    }
    .fh5co-cover .desc a.themebtn {
        padding: 12px 25px;
        min-width: 215px;
        font-size: 14px;
    }
   
    #gtco-footer .copyright-info p br {
        display: none;
    }
    #gtco-footer .gtco-widget p{
        font-size: 15px;
        line-height: 25px;
    }
    .footer-links a {
        margin: 0 10px;
    }
    #gtco-footer .copyright-info p,
    #gtco-footer .copyright-info a {
        font-size: 15px;
        line-height: 27px;
    }
    .copyright {
        margin-top: 15px;
    }
    #gtco-footer h3 {
        text-align: center;
        margin-top: 10px;
    }
    .mobile-margin {
        margin-top: 25px;
        display: block;
    }
    .footer-nav ul li {
        margin-right: 20px;
    }
    .footer-nav ul li:before {
        top: 0px;
        right: -15px;
    }
    .gtco-widget.footer-info p,
    .gtco-widget.footer-info a {
        font-size: 17px !important;
        line-height: 28px !important;
    }


    #gtco-footer .gtco-widget p,
    #gtco-footer .gtco-widget .links a {
        font-size: 13px;
    }
    #gtco-footer .copyright-info p,
    #gtco-footer .copyright-info a {
        font-size: 17px;
    }
    .heading-with-sap {
        margin-bottom: 10px;
    }
    #gtco-footer .gtco-widget.footer-logo {
        margin-bottom: 40px;
    }
    .footer-nav ul li:before {
        content: ' | ';
        position: absolute;
        top: -1px;
        right: -11px;
        color: #02cab8;
    }


}



@media screen and (max-width: 926px){
    #offcanvas-menu ul li.d-block.d-md-none {
        display: block !important;
    }
    
        #fh5co-logo{
                margin-top: 0px;
        }
        

        #fh5co-header-section nav ul.sf-menu {padding: 0 15px;}

        #fh5co-header-section nav ul li {margin-right: 5px;}

        #fh5co-header-section nav ul li a {font-size: 15px;}

        #fh5co-primary-menu > li > .sf-with-ul:after {
            border-top: 0.3em solid;
            border-right: 0.4em solid transparent;
            border-bottom: 0;
            border-left: 0.4em solid transparent;
            right: 1px;
        }
        
        #gtco-footer .gtco-widget .widget-head, #gtco-footer .gtco-widget ul.quick-links {
            padding: 0;
        }
        .copyright * {text-align: center !important;}

        .copyright .footer-links {margin-top: 7px;}
        .footer-social-icons a {
            margin-bottom: 5px;
        }
        footer#gtco-footer {
            margin-top: 110px;
        }

        .top-quick-links {
            padding-right: 0;
            margin: 0;
            padding: 0px 0 10px;
            margin-top: 0;
        }

}

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


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

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

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


#gtco-footer .gtco-widget.footer-info a.signup-now.themebtn {display: inline-block;color: #fff;padding-left: 15px;}

#gtco-footer .gtco-widget.footer-info a.signup-now.themebtn span {padding: 17px 11px;}


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

@media screen and (max-width: 1590px){
    
}
@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1360px){

}

@media only screen and (min-width: 1231px) and (max-width: 1350px){

}
@media only screen and (min-width: 1171px) and (max-width: 1230px){

}

@media only screen and (min-width: 1100px) and (max-width: 1188px){
  
}
@media only screen and (min-width: 1171px) and (max-width: 1230px){

}

@media only screen and (min-device-width: 992px) and (max-device-width: 1024px) {
    
}

@media screen and (max-width: 844px){

}

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

@media all and (device-width: 768px) {

}

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

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


@media screen and (max-width: 375px){

}


@media only screen and (min-width:992px) and (max-width:1024px){

}


@media only screen and (min-width:1100px) and (max-width:1230px){
}



/* malik's css */
.digi-top-bar-links a:first-child {
  color: #30b29b;
}
.topbar-search-form {
    border: 1px solid #E00707;
    border-radius: 25px;
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}
.topbar-search-form .input-divider {
    border-right: 1px solid #E00707;
    height: 85%;
    margin: auto;
}
.border-0 {
    border: 0 !important;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.topbar-search-form .search-icon {
    background-color: #E00707;
    color: white;
    padding: 10px 15px;
    align-items: center;
    cursor: pointer;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}
.topbar-search-box-text {
    text-align: center;
    color: #E00707;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 8px;
}
.navbar-container{
  justify-content: space-between;
}

li.sf-withul:hover  .fh5co-sub-menu{
  display: block !important;
}
.main-menu-wrap{
  background:#018DC80A;
}
.u-hamburger{
  margin-top: -5px; 
}
.mobile-logo, .res-phone, .medspa-clinic{
  display: none;
}
.r-center-btns{
  display: none;
}
/*.topbar-search-form .input-group .form-control{
  padding: 4px 0 0;
}*/
.who-we-are-banner{
        background: url('../images/who-we-are-banner-bg.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
        padding: 300px 0;
    }

    .banner-heading{
        margin-left: 250px;
    }

    .custom-width-row{
        max-width: 1500px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .rounded-border-container{
        border: 20px solid #F7FDFC;
        background: #E2F7F3;
        border-radius: 50px;
        padding: 50px 40px;
    }

    .after-about-section{
        background: #F4FCFE;
        background-size: cover;
    }

    .who-we-are-text-with-bg{
        background: url('../images/who-we-are-bg-1.png') no-repeat;
        background-size: cover;
        background-position: center center;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .who-we-are-text-with-bg p{
        font-size: 30px;
        line-height: normal;
    }

    .section-arrow.section-inner-arow{
            left: -5%;
            top: -20px;


    }

    .vision-and-mission{
        background: url('../images/who-we-are-bg-new-02.png') no-repeat;
        background-size: cover;
        background-position: center center;
        padding-top: 75px;
        padding-bottom: 120px;
    }
    .why-digimedspa-section.top-120{
        margin-top: -120px;
    }
    .unlock-wrapper{
        background: url('../images/unlock-banner.svg') no-repeat;
        background-position: left top;
        background-size: cover;
        padding-top: 250px;
        padding-bottom: 270px;
        margin-top: -140px;
    }
    .media.phone-link.text-white a, .media.phone-link.text-white p.text-white{
        background: none;
        -webkit-background-clip: none;
        -webkit-text-fill-color: #fff;
        font-weight: 400;
    }

@media screen and (max-width: 1190px) {
  .hide-on-1190{
    display: none !important;
  }
  .col-lg-4.res-search-box{
    width: 96% !important;
    max-width: 96% !important;
    flex: 96% !important;
    justify-content:center;
  }
  .res-center.align-items-center{
    justify-content: center;
  }
  .res-phone{
    display: inline-block;
    width: 30px;
  }
  .mobile-logo{
    display: block;
    float: left;
    width: 100%;
  }
  .medspa-clinic{
    display: block;
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    font-weight: 500 ;
  }
  .medspa-clinic:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    position: relative;
    float: none;
    margin-left: 4px;
    margin-right: -7px;
    right: -7px;
    font-size: 12px;
    margin-top: 0;
    color: #121212;
    width: 6px;
    height: 6px;
    border: none;
    border-right: 1px solid #121212;
    border-bottom: 1px solid #121212;
    transform: rotate(43deg) translate(-55%, -5%);
    top: 2px;
    background: #fff;
  }
.r-center-btns{
  text-align: center;
  margin: -20px -15px 0;
  display: none;
}
.r-center-btns.show{
  display: block;
}
  .r-book-a-demo-bg{
   display: inline-block;
   text-align: right;
  }
  .r-claim-listing{
  margin: 0px 20px 0;
   display: inline-block;
   text-align: center;
   vertical-align: top;
  }
  .r-contact-btn{
    text-align: left;
   display: inline-block;
  }
}
@media(max-width:1090px){
    .who-we-are-banner{
        padding: 100px 0;
    }
    .banner-heading{
        margin-left:50px;
    }
}
@media screen and (max-width: 767px){
   .vision-and-mission{
    background: none;
   }
}
@media screen and (max-width: 625px) {
  .topbar-search-form .form-control{
    font-size: 14px;
  }
  .topbar-search-form .input-group .form-control{
    padding: 9px 0 0;
  }
}
@media screen and (max-width: 611px) {
  .u-hamburger{
    right: 0;
  }
}
@media screen and (max-width: 575px) {
.contact-container button.navbar-toggler.btn.u-hamburger{
  display: inline-block !important;
}
.topbar-search-form .form-control{
    padding: 0px 10px 0px 0;
  }

}
@media(max-width:540px){
        .who-we-are-banner{
            padding: 60px 0;
        }
        .banner-heading{
            margin-left:0px;
        }
        .topbar-search-form .form-control{
            font-size: 12px;
        }
     }

@media screen and (max-width: 405px) {
  .r-claim-listing, .r-book-a-demo-bg, .r-contact-btn{
      width: 30%;
  }
  .r-claim-listing{
    margin: 0 1%;
  }
  .r-claim-listing img{
    height: 51px;
  }
  .mobile-logo img{
      width: 70%;
  }
  .topbar-search-box-text{
    font-size: 14px;
  }
  .medspa-clinic{
    font-size: 12px;
  }
}
/* end Malik's css */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url('owl.video.play.png') no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/**
 * Swiper 4.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 1, 2018
 */

.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s top,.2s -webkit-transform;transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;transition:.2s transform,.2s top;transition:.2s transform,.2s top,.2s -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s left,.2s -webkit-transform;transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;transition:.2s transform,.2s left;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;transition:.2s transform,.2s right;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}
 /*Header - CSS */


.side-social-icons {
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 328px;
}

.side-social-icons ul {
    padding: 0px;
    margin: 0px;
}

.side-social-icons ul li {
    line-height: normal !important;
}

.side-social-icons ul li a {
    color: #fff;
    background: #008DC7;
    width: 35px;
    display: inline-block;
    text-align: center;
    padding: 6px 8px;
}

.side-social-icons ul li a svg {
    top: -1px !important;
}

.side-social-icons ul li:first-child a {
    border-top-right-radius: 4px;
    padding-top: 10px;
}

.side-social-icons ul li:last-child a {
    border-bottom-right-radius: 4px;
    padding-bottom: 10px;
}

.side-social-icons ul li a:hover,.side-social-icons ul li a:active,.side-social-icons ul li a:focus {
    background: #05b6a6;
}
.fixed-area {
    position: fixed;
    z-index: 9999999;
    right: 0;
    top: 355px;
}

.chat-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-icons a {background: #05B6A6;width: 40px;height: 40px;text-align: center;line-height: 40px;border-radius: 5px 0px 0px 5px;}


.chat-icons a.chat-icon2 img {
    max-width: 19px;
}

.chat-icons a.chat-icon1 img {
    max-width: 25px;
}

.chat-icons a.chat-icon2 {
    background: #018EC7;
}


#fh5co-header-section .container-fluid {
    max-width: 1870px;
}
.navbar-container {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 8%;
}

a.themebtn {
    background: #05b6a6;
    min-width: auto;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
}

a.login_btn.with-icon > img {
    float: right;
    margin-top: 1px;
    margin-left: 8px;
}

.callto-actions-top .themebtn {
    padding: 10px 25px;
}

a.themebtn:hover,a.themebtn:active,a.themebtn:focus {
    box-shadow: 0px 15px 35px rgba(5, 182, 166, 0.3);
    transform: translateY(-3px);
    border-color: transparent !important;
    background: #05b6a6;
}
a.themebtn.invert {
    background: #018DC8;
}

a.themebtn.invert:hover, a.themebtn.invert:focus,a.themebtn.invert:active {
    box-shadow: 0px 15px 35px rgba(1, 141, 200, 0.3);
    background: #018dc8 !important;
}

.callto-actions-top a:first-child {
    margin-right: 10px;
}

#fh5co-header-section nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #121212 !important;
}
#fh5co-header-section nav > ul > li.active > a, #fh5co-header-section nav > ul > li:hover > a {
    /*background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    color: #05B6A6 !important;
}

#fh5co-primary-menu .fh5co-sub-menu a:hover, #fh5co-primary-menu .fh5co-sub-menu a:active, #fh5co-primary-menu .fh5co-sub-menu a:focus, #fh5co-primary-menu .fh5co-sub-menu li.active a {
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
        -webkit-background-clip: text;
    -webkit-text-fill-color: unset;
}
#fh5co-primary-menu .fh5co-sub-menu:before {
	    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
}

.welcome-text {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #018DC8;
}

.welcome-text span {
    color: #007C99;
    font-weight: 400;
}

.welcome-text a.themebtn {
    padding: 8px 17px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.welcome-text a.themebtn img {
    position: relative;
    top: -1.5px;
    margin-left: 10px;
}


ul.top-social-links {
    text-align: center !important;
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0 !important;
    gap: 21px;
    margin-bottom: 0px;
}

ul.top-social-links * {
    color: #464E56;
    filter: brightness(0) contrast(0.5);
}

ul.top-social-links * svg {
    top: -1px !important;
}

.digi-top-bar-links {
    display: flex;
    justify-content: right;
    gap: 30px;
}

.digi-top-bar-links a {height: 45px;display: flex;justify-content: center;align-items: center;gap: 12px;font-family: 'Montserrat', sans-serif;font-weight: 600;font-size: 14px;}

.digi-top-bar-links a:first-child {
    color: #018DC8;
}

.digi-top-bar-links a:last-child {
    color: #05B6A6 !important;
}

.digi-top-bar-links a:hover img {
    animation: tilt-shaking 0.35s infinite;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}


.digi-top-bar:after {
    content: '';
    width: 180%;
    background: #EDEDED;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-10%);
}

.digi-top-bar {
    position: relative;
}

.digi-top-bar-links a:after {
    content: '';
    height: 100%;
    width: 1px;
    background: #EDEDED;
    position: absolute;
    right: -15px;
    top: 0;
}

.digi-top-bar-links a:first-child {
    position: relative;
}
.digi-top-bar-links a {
    position: relative;
}

.digi-top-bar-links a.themebtn {
    height: auto;
    padding: 8px 17px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 0;
    align-self: center;
    color: #fff !important;
}
.digi-top-bar-links a.themebtn:after {
    display: none;
}
.sf-menu {
    margin: 20px auto 5px !important;
}
.main-menu-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media screen and (max-width:1759px){
    .navbar-container {
    gap: 2%;
}
}
@media screen and (max-width:1655px){
    .navbar-container {
    gap: 1%;
}

#fh5co-header-section nav ul li {
    margin-right: 25px;
}
    .sf-menu {
    margin: 15px auto 5px !important;
}
}
@media screen and (max-width:1655px){
    .navbar-container {
    gap:20px;
}
    #fh5co-header-section nav ul li {
    margin-right: 25px;
}
}
@media screen and (max-width:1559px){
.callto-actions-top .themebtn {
    padding: 9px 19px;
    font-size: 14px;
}

a.login_btn.with-icon > img {
    width: 12px;
}
    #fh5co-header-section nav ul li {
    margin-right: 23px;
}
}

@media screen and (max-width:1479px){
     .sf-menu {
    margin: 12px auto 2px !important;
}
    .callto-actions-top .themebtn {
    padding: 9px 16px;
    font-size: 13px;
}
    a.login_btn.with-icon > img {
    width: 10px;
    margin-top: 2px;
    margin-left: 5px;
}
}

@media screen and (max-width:1479px){
     .sf-menu {
    margin: 12px auto 2px !important;
}
    .callto-actions-top .themebtn {
    padding: 9px 16px;
    font-size: 13px;
}
    a.login_btn.with-icon > img {
    width: 10px;
    margin-top: 2px;
    margin-left: 5px;
}
}@media screen and (max-width:1440px){
 #fh5co-header-section nav ul li {
    margin-right: 18px;
}
}

@media screen and (min-width:1440px){
#fh5co-header-section nav ul li.show_after_1440 {
    display:none;
}
    #fh5co-header-section nav ul li.hide_after_1440 {
    display:block;
}
}
@media screen and (max-width:1439px){
#fh5co-header-section nav ul li.show_after_1440 {
    display:block;
}
    #fh5co-header-section nav ul li.hide_after_1440 {
    display:none;
}
}

@media screen and (max-width:1440px){
    #fh5co-header-section nav ul li {
        margin-right: 28px;
    }
}

@media screen and (max-width:1380px){
    .digi-top-bar-links{
        gap: 30px;
    }
    .digi-top-bar-links a{
        height: 40px;
        font-size: 13px;
        gap: 7px;
    }
    .digi-top-bar-links a:first-child img {max-width: 15px;}

    .digi-top-bar-links a:nth-child(2) img {
        max-width: 20px;
    }
   .digi-top-bar-links a:after {
       right: -15px;
   }
}

@media screen and (max-width:1298px){
   .callto-actions-top a:first-child {
      margin-right: 5px;
  }
  #fh5co-header-section nav ul li {
     margin-right: 20px;
  }
}

@media screen and (max-width:1289px){
  .digi-top-bar-links a {
      height: 50px;
      font-size: 14px;
  }
}
@media screen and (max-width:1260px){
.sf-menu {
    margin: 8px auto 0px !important;
}
}
@media screen and (max-width:1244px){
    .callto-actions-top .themebtn {
      padding: 7px 10px;
      font-size: 13px;
  }
}
@media screen and (max-width:1215px){
    .sf-menu {
      margin: 6px auto 0px !important;
  }
    #fh5co-header-section nav ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width:1190px){
.callto-actions-top .themebtn {
    padding: 10px 25px;
    font-size: 16px;
}
a.login_btn.with-icon > img {
    width: 13px;
}

.fh5co-nav-toggle {
    margin: 0;
    margin-top: 4px;
}

.callto-actions-top {
    margin-right: 70px;
    margin-top: 11px;
}

.fh5co-offcanvas #fh5co-page a.js-fh5co-nav-toggle.fh5co-nav-toggle {
    top: -85px !important;
    right: 5px !important;
}
}
.fh5co-offcanvas #fh5co-page nav#offcanvas-menu li.show_after_1440 {
    display: none;
}

@media screen and (max-width:1060px){
    .digi-top-bar .digi-top-bar-links a:nth-child(1),.digi-top-bar .digi-top-bar-links a:nth-child(2) {
        text-indent: -5000px;
        gap: 0;
    }
}
@media screen and (max-width:991px){
	.fh5co-nav-toggle {
	    top: 13px;
	    margin-top: 0em;
	    right: 20px;
	}
	.welcome-text {
	    text-align: center;
	    margin: 10px 0;
	}
}
@media screen and (max-width:815px){
    .digi-top-bar-links {
        gap: 30px;
    }
    .digi-top-bar-links a {
        font-size: 12px;
    }
    
    .digi-top-bar-links a img {
        max-width: 25px;
    }
    
    .digi-top-bar-links a:first-child:after {
        right: -17px;
    }
}
@media screen and (max-width:785px){
    .callto-actions-top .themebtn {
        padding: 10px 25px;
        font-size: 13px;
    }
    a.login_btn.with-icon > img {
        width: 11px;
    }
    .callto-actions-top {
        margin-top: 8px;
    }
    .fh5co-nav-toggle {
        top: 10px;
    }
}
@media screen and (max-width:700px){
    .welcome-text {
        text-align: center;
        margin: 10px 0;
    }
    
    ul.top-social-links {
        justify-content: start;
    }
    
    .callto-actions-top .themebtn {
        padding: 8px 17px;
    }
    
    .fh5co-nav-toggle {
        top: 7px;
    }
}
@media screen and (max-width:609px){
    .callto-actions-top {
        margin-right: 40px;
        margin-top: 3px;
    }
    
    .fh5co-nav-toggle {
        top: 2px;
        right: 0;
    }
}
@media screen and (max-width:575px){
    .digi-top-bar-links {
        display: none;
    }

    .show-on-mobile.mobile_app_icons {
        display: inline-block !important;
        position: absolute;
        right: calc(-100% + 70px);
        top: 2px;
    }

    .show-on-mobile.mobile_app_icons a:not(:last-child) {
        margin-right: 15px;
    }

    nav#offcanvas-menu div#clone3 {
        display: flex !important;
        flex-direction: column-reverse;
        gap: 0;
        margin-top: 25px;
    }
    nav#offcanvas-menu div#clone3 a:after{
        display: none;
    }
    nav#offcanvas-menu div#clone3 a:nth-child(3){
        color: #fff !important;
        margin-top: 10px;
    }

    nav#offcanvas-menu .digi-top-bar-links a:first-child:after{
        display: none;
    }
    
    ul.top-social-links {
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .main-menu-wrap div#callto-actions-top {
        display: none;
    }
    
    .main-menu-wrap {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    
    .fh5co-nav-toggle {
        top: -37px;
        right: 10px;
    }

    .fh5co-offcanvas #fh5co-page nav#offcanvas-menu div#callto-actions-top {
        margin: 0px 0 30px;
        text-align: left !important;
    }
    
    .fh5co-offcanvas #fh5co-page nav#offcanvas-menu div#callto-actions-top a.login_btn {
        margin-bottom: 10px;
    }
}
@media screen and (max-width:425px){
	.fh5co-nav-toggle {
	    top: -35px;
	}
}

@media screen and (max-width:330px){
	.fh5co-nav-toggle {
	    top: -35px;
	}
}

@media screen and (min-width:576px){
	.fh5co-offcanvas #fh5co-page nav#offcanvas-menu div#callto-actions-top, nav#offcanvas-menu .digi-top-bar-links {
		display: none;
	}
}

/*.sticky-banner.stuck #fh5co-header-section .digi-top-bar {
    visibility: hidden;
    height: 0px;
    overflow: hidden;
    transition: all .3s ease;
}*/

.sticky-banner.stuck .main-menu-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sticky-banner.stuck {
    z-index: 999999999999;
}

.sticky-banner.stuck #fh5co-header-section {
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.sticky-banner #fh5co-header-section .digi-top-bar {
    transition: all .3s ease;
}

.fh5co-offcanvas #fh5co-page .sticky-banner.stuck a.js-fh5co-nav-toggle.fh5co-nav-toggle {
    position: absolute;
    top: -30px !important;
}
/*HEADER CSS END*/


/*BANNER CSS START*/
div#banner-slider .banner-item {
    position: relative;
}

div#banner-slider .banner-item .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1440px;
}

div#banner-slider .banner-item .digi-banner-content {
    padding-right: 15%;
}

div#banner-slider .banner-item .digi-banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 58px;
    color: #121212;
    margin-bottom: 20px;
}

div#banner-slider .banner-item .digi-banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 39px;
    color: #121212;
}

.digi-banner-buttons .themebtn.with-icon img {
    max-width: inherit;
    width: inherit;
    float: right;
    margin-top: 2px;
    margin-left: 10px;
}

.digi-banner-buttons .themebtn.with-icon {
    margin-left: 11px;
}
div#banner-slider .owl-dots {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

div#banner-slider .owl-dots .owl-dot span {
    /*background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);*/
    background: #05B6A6;
    position: relative;
}

div#banner-slider .owl-dots .owl-dot.active {
    background: url('../images/dots-active-before-new.png') no-repeat center center !important;
    background-size: 18px!important;
}

div#banner-slider .owl-item.active h1 {-webkit-animation: 1s .3s fadeInLeft both;animation: 1s .3s fadeInLeft both;}
div#banner-slider .owl-item.active p {-webkit-animation: 1s .3s fadeInRight both;animation: 1s .3s fadeInRight both;}
div#banner-slider .owl-item.active .digi-banner-buttons {-webkit-animation: 1s .3s fadeInUp both;animation: 1s .3s fadeInUp both;}

@media screen and (max-width:1500px){
    div#banner-slider .banner-item .container{
        transform: translate(-50%, -50%);
        top: 50%;
        padding: 0 40px;
    }
}
@media screen and (max-width:1366px){
	div#banner-slider .banner-item .digi-banner-content h1 {
	    font-size: 37px;
	    line-height: 58px;
	    margin-bottom: 12px;
	}

	div#banner-slider .banner-item .digi-banner-content p {
	    font-size: 17px;
	    line-height: 35px;
	    margin-bottom: 15px;
	}

	div#banner-slider .banner-item .digi-banner-content .digi-banner-buttons a.themebtn {
	    padding: 11px 20px;
	}
}

@media screen and (max-width:1280px){
	div#banner-slider .owl-dots {
	    bottom: 20px;
	}
}
@media screen and (max-width:1110px){
	div#banner-slider .banner-item .digi-banner-content .digi-banner-buttons a.themebtn {
	    padding: 9px 15px;
	    font-size: 14px;
        margin-left: 0px;
        margin-top: 7px;
        min-width: 175px;
	}
}

@media screen and (max-width:1100px){
	div#banner-slider .banner-item .digi-banner-content h1 {
	    font-size: 32px;
    	line-height: 49px;;
	    margin-bottom: 12px;
	}

	div#banner-slider .banner-item .digi-banner-content p {
	    font-size: 16px;
    	line-height: 30px;
	    margin-bottom: 15px;
	}
}

@media screen and (max-width:1600px){
    .item-bg {
        min-height: 500px;
        position: relative;
    }
    
    .item-bg img {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width:765px){
	div#banner-slider .banner-item .digi-banner-content {
	    padding-right: 0px;
	}
}

@media screen and (max-width:630px){
	div#banner-slider .banner-item .digi-banner-content h1 {
	    font-size: 29px;
	    line-height: 42px;
	}

	div#banner-slider .banner-item .digi-banner-content p {
	    font-size: 15px;
	    line-height: 28px;
	}

	div#banner-slider .banner-item .digi-banner-content .digi-banner-buttons a.themebtn {
	    padding: 8px 13px;
	    font-size: 13px;
        margin-left: 0px;
        margin-top: 7px;
        min-width: 175px;
	}

	.digi-banner-buttons .themebtn.with-icon img {
	    margin-top: 0px;
	}
}
@media screen and (max-width: 575px){
	.item-bg {
	    min-height: 400px;
	    position: relative;
	}
}
@media screen and (max-width: 430px){
	div#banner-slider.owl-carousel .owl-item img {
	    object-position: -230px;
	}
	.digi-banner-buttons .themebtn.with-icon img{
		object-position: 0px !important;
	}
    div#banner-slider.owl-carousel .owl-item .item-bg.bg1 img {
        object-position: -520px;
    }
    div#banner-slider.owl-carousel .owl-item .item-bg.bg2 img {
        object-position: 80%;
    }
    div#banner-slider.owl-carousel .owl-item .item-bg.bg3 img {
        object-position: 60%;
    }
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 24px;
        line-height: 36px;
    }

    div#banner-slider .banner-item .digi-banner-content p {
        font-size: 15px;
        line-height: 28px;
    }

    div#banner-slider .banner-item .container{
        transform: translate(-50%, 0%);
        top: 59px;
        padding: 0 40px;
    }
}
@media screen and (max-width: 387px){
	.digi-banner-buttons .themebtn.with-icon img {
	    object-position: center !important;
	}

	.digi-banner-buttons .themebtn.with-icon {
        margin-left: 0px;
    }
    div#banner-slider .banner-item .container{
        transform: translate(-50%, 0%);
        top: 48px;
        padding: 0 40px;
    }
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 20px;
        line-height: 30px;
    }
    div#banner-slider .banner-item .digi-banner-content p {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
    }
}
@media screen and (max-width: 377px){
	.digi-banner-buttons .themebtn.with-icon {margin-top: 5px;}

}

/*HOME ABOUT CSS*/
.heading-with-sub h2.section-heading{
	font-size: 40px;
	font-family: 'Montserrat', sans-serif;
	line-height: 80px;
	text-align: center;
	font-weight: 500;
	color: #121212;
}

.heading-with-sub h2.section-content-heading{
	font-size: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	line-height: 48px;
	color: #121212;
	text-align: left;
	margin: 0 0 10px 0

}
section#home-about-section {
    position: relative;
    padding: 230px 0 50px;
    margin-top: -110px;
    background: url('../images/about_section_bg.png') no-repeat center center;
    background-size: cover;
}

section#home-about-section .container {
    max-width: 1440px;
}

.home-about-content-wrap {
    position: relative;
    padding: 0 0 0 70px;
}

.heading-tag-line {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.heading-tag-line img {
    position: relative;
    margin-right: 10px;
    top: -2px;
}

.black-caption {
    margin-bottom: 20px;
}

.paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 35px;
}



.buttons-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.media.phone-link p {
    margin: 0px;
    line-height: normal;
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.media.phone-link a {
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    line-height: 21px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.media.phone-link {
    align-items: center;
}

.media.phone-link .media-left {
    padding-right: 10px;
}
.media.phone-link:hover img {
    animation: tilt-shaking 0.35s infinite;
}

.home-about-img-wrap {margin-left: -30px;}

.home-about-img-wrap img {
   /* width: 100%;*/
}

a.themebtn.with-icon.learn-more img {
    margin-left: 10px;
    margin-top: -1px;
}


section#home-about-section .heading-container {
    margin-top: 120px;
}

section#home-about-section .heading-container .black-caption {
    margin: 0;
}

section#home-about-section .heading-container .black-caption h2 {
    margin: 0;
}

@media screen and (max-width: 1406px){
	.home-about-content-wrap{
		padding: 0 0 0 30px;
	}
	.home-about-img-wrap {
	    margin-left: -60px;
	}
}
@media screen and (max-width: 1325px){
	.home-about-content-wrap{
		padding: 0 0 0 00px;
	}
	.home-about-img-wrap {
	    margin-left: -70px;
	}
}
@media screen and (max-width: 1266px){
	.home-about-img-wrap {
	    margin-left: -90px;
	}
	.home-about-img-wrap img {
	     /*width: 100%; */
	}
	/*.buttons-group .media.phone-link {
	    flex-basis: 100%;
	}*/

	.buttons-group {
	    flex-wrap: wrap;
	}
}
@media screen and (max-width: 991px){
	.home-about-img-wrap {
	    margin-left: -140px;
	    margin-bottom: 30px;
	}
	.home-about-img-wrap img {
	    width: 100%;
	}
}
@media screen and (max-width: 900px){
	.home-about-img-wrap {
	    margin-left: -125px;
	}

}
@media screen and (max-width: 730px){
	.home-about-img-wrap {
	    margin-left: -100px;
	}

}
@media screen and (max-width: 575px){
	.home-about-img-wrap {
	    margin-left: 0px;
	}
	section#home-about-section{
		padding-bottom: 50px;
	}
	.home-about-img-wrap img.show_after_575 {
	    display: none;
	}

}

@media screen and (min-width: 576px){
.home-about-img-wrap img.show_before_575 {
	    display: none;
	}
}


/*HOME ABOUT CSS END*/


/*RAHEB GENERATED CSS FOR SECOND SECTION*/

 .esthetic-practice .container{
    max-width: 1440px;
}

.blue-light-bg{
    background: #F4FCFE;
    padding-top: 70px;
    padding-bottom: 60px;
}
.transparent-bg{
    background: transparent;
    padding-bottom: 40px;
}

.section-arrow{
    position: relative;
    left: 39%;
    top: -40px;

}

.section-arrow-2{
    position: relative;
    left: 41%;
    top: 31px;
    z-index:9;

}
.mb-50{
    margin-bottom:50px;
}
.section-content-box-left{
    margin-right: 20px;
}

.section-content-box-right{
    margin-left: 20px;
}

.section-gradient-text{
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 37px;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.section-para{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 30px;
    color: #272727;

}
ul.list-with-check-mark {
    margin-bottom: 30px;
}

.list-bg-img{
    text-align: left;
    position: relative;
    background: url('../images/list-bg-green.png') no-repeat;
    background-position: 0px 9px;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    list-style: none;
    color: #272727;
    margin-left: -35px;
}


@media screen and (max-width: 991px){
	.section-img-box {
	    margin: 25px 0;
	}

	[class*=section-arrow] {
	    visibility: hidden;
	    height: 80px;
	}
}

@media screen and (max-width: 767px){
    .section-arrow {
        position: relative;
        left: 18%;
        top: -40px;
    }

    .section-arrow-2 {
        position: relative;
        left: 20%;
        top: 31px;
    }
}

@media screen and (max-width: 575px){
	.heading-with-sub h2.section-heading {
	    font-size: 35px;
	    line-height: 50px;
	}
.section-arrow {
    max-width: 300px;
    position: relative;
    left: 12%;
    top: -40px;
    text-align: center;
    }

.section-arrow-2{
    max-width: 300px;
    position: relative;
    left: 17%;
    top: 31px;
    text-align: center;

    }
    .section-content-box-right, .section-content-box-left {
        margin: 0;
    }
}

.section-img-box img {
    width: 100%;
}
/*RAHEB GENERATED CSS FOR SECOND SECTION*/


/*HOME PORTFOLIO CSS*/
section#portfolio-home-sectoin {
    position: relative;
    padding: 90px 0 0px;
}
.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 820px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 8px;
}

.picture {
  width: 100%;
  /*height: 320px;*/
  overflow: hidden;
      border-radius: 5px;
}
.picture img {
  display: block;
  width: 100%;
 /* height: 100%;*/
  -o-object-fit: cover;
     object-fit: cover;
}

/*.detail {
  padding: 25px 20px;
  font-weight: 600;
  text-align: center;
      position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: all .3s ease;
}*/
/*.detail h3 {
  margin: 0;
  font-size: 20px;
}
.detail span {
  display: block;
  font-size: 16px;
  color: #f44336;
}*/

.swiper-slide-nth-next-2,.swiper-slide-nth-prev-2 {
    visibility: hidden;
}
.swiper-slide.swiper-slide-next,.swiper-slide.swiper-slide-prev {
    cursor: pointer;
}
section#portfolio-home-sectoin .container {
    max-width: 100%;
}
.swiper-slide {
    box-shadow: 0px 0px 30px 0px rgba(0,0,0, 0.15);
    border-radius: 5px;
}
.item-frame {
    padding: 6% 5px 6px;
    background: url('../images/portfolio_frame_item_frame.png') no-repeat center top;
    background-size: 100%;
    /* margin: 21px; */
    box-shadow: 0px 0px 30px -9px rgba(0,0,0, 0.22);
}

.swiper-slide.swiper-slide-prev {
    right: -80px;
}

.swiper-slide.swiper-slide-next {
    left: -80px;
}


@media screen and (min-width: 1431px){

    .portfolio_home_wrap .swiper-button-prev {
        left: 150px;
    }

    .portfolio_home_wrap .swiper-button-next {
        right: 150px;
    }
}

@media screen and (max-width: 1430px){
    .portfolio_home_wrap .swiper-button-prev {
        left: 135px;
    }

    .portfolio_home_wrap .swiper-button-next {
        right: 135px;
    }
}


@media screen and (min-width: 640px){
.portfolio_home_wrap {
        display: block;
        margin: 0 -100px;
        position: relative;
    }

    .portfolio_home_wrap .swiper-pagination {
        display: none;
    }
}
.portfolio_home_wrap .swiper-button-next, .portfolio_home_wrap .swiper-button-prev {
    width: 35px;
    height: 60px;
    background-size: 35px 60px;
    filter: brightness(0);
}

.portfolio_home_wrap .item-frame .picture {
    position: relative;
}
.portfolio_home_wrap .item-frame .picture .detail {
    display: none;
    transition: all .3s ease;
}
.portfolio_home_wrap .swiper-slide-active .item-frame .picture .detail {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -50%);
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: all .3s ease;
    text-align: center;
}

.portfolio_home_wrap .swiper-slide-active .item-frame .picture .detail img {
    width: inherit;
    max-width: inherit;
    margin: 0 auto;
    display: inline;
}

.portfolio_home_wrap .swiper-slide-active .item-frame .picture .detail a {
    align-self: center;
}

.portfolio_home_wrap .swiper-slide-active .item-frame:hover .picture .detail {
    display: flex;
    background: linear-gradient(to right, rgba(5, 182, 166, 0.85), rgba(1, 154, 188, 0.85), rgba(1, 141, 200, 0.85));
    background-size: cover;
    visibility: visible;
    width: 100%;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
}

.portfolio_home_wrap .item-frame .picture .detail h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 13px;
}

.portfolio_home_wrap .item-frame .picture .detail span {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.portfolio_home_wrap .item-frame .picture .detail a:hover img {box-shadow: 0px 15px 35px rgba(0,0,0, 0.30);border-radius: 50%;}

.portfolio_home_wrap .item-frame .picture .detail a img {
    transition: all .3s ease;
    border-radius: 50%;
}


@media screen and (max-width: 1280px){

    .portfolio_home_wrap .item-frame .picture .detail h3 {
            font-size: 18px;
            margin-bottom: 9px;
    }
    .portfolio_home_wrap .item-frame .picture .detail span {
            font-size: 15px;
    }
    .portfolio_home_wrap .swiper-slide-active .item-frame .picture .detail img{
            width: 40px;
            max-width: 40px;
    }
}

@media screen and (max-width: 640px){
    .swiper-slide {
        box-shadow: none;
    }

    .item-frame {
        margin: 20px;
    }
    .portfolio_home_wrap .swiper-button-next {
        right: 35px;
    }
    .portfolio_home_wrap .swiper-button-prev {
        left: 35px;
    }
    .swiper-slide.swiper-slide-next {
        left: 50px;
    }
    .swiper-slide.swiper-slide-prev {
        right: 50px;
    }
    .swiper-container {
        padding-top: 20px;
    }
}


.portfolio_home_wrap {
    margin-top: 30px;
    margin-bottom: 30px;
}
.swiper-slide.swiper-slide-active {
    transform: scale(1.2) !important;
    z-index: 2 !important;
}

.swiper-slide.swiper-slide-active .detail * {
    transform: scale(0.9) !important;
}

.swiper-slide.swiper-slide-active .item-frame .picture .detail span {
    margin-bottom: 8px;
}




/*HOME PORTFOLIO CSS END */


/*RAHEB CSS FOR consultation section*/

.business-consultation{
    background: url('../images/business-consultation-bg.png') no-repeat;
    background-position: right top;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 135px;
}

.business-consultation .container{
    max-width: 1440px;
}

.business-consultation .black-caption .section-content-heading{
    font-weight: 600;
    line-height: 53px;
}

.business-consultation .media.phone-link * a,.business-consultation .media.phone-link * p {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.business-consultation .media.phone-link * img {
    filter: brightness(100) contrast(1) grayscale(100);
}

@media screen and (max-width: 1200px){
    .business-consultation {
    background-position: center top;
    }
    .business-consultation .buttons-group .media.phone-link {
        flex-basis: auto;
    }
}
@media screen and (max-width: 690px){
    .business-consultation .buttons-group .media.phone-link {
        flex-basis: 100%;
    }
}



.why-digimedspa{
    background: url('../images/why-digimedspa-bg.png') no-repeat top center;
    background-size: 100% 100%;
    padding: 150px 0 130px;
}

.why-digimedspa .black-caption {
    margin-bottom: 45px;
}

.why-digimedspa .container{
    max-width: 1440px;
}

.card-style{
    border: none;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0px 11px 20px 11px;
    text-align: center;
}

.card-icon-top{
    text-align: center;
    margin: 10px auto 0;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.card-style .card-title{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #121212;
    line-height: 48px;
}

.card-style p.card-text{
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    line-height: 28px;
    color: #272727;
    font-weight: 400;
}
.card-icon-top img {
    /*width: 190px;
    height: 175px;
    object-fit: contain;*/
}

@media screen and (max-width: 1024px){
    .card-style .card-title {
        line-height: 33px;
        font-size: 20px;
    }
}
@media screen and (max-width: 991px){
    .why-digimedspa {
        background-size: 1624px 100%;
        padding: 165px 0 80px;
    }
}


@media screen and (max-width: 767px){
    .card-style {
        max-width: 450px;
        margin: 0 auto 40px;
    }
    .why-digimedspa {
        background-size: 2524px 100%;
        padding: 195px 0 80px;
    }
}


@media screen and (max-width: 575px){
    section#portfolio-home-sectoin {
        padding: 80px 0 30px;
    }
    .why-digimedspa{
        padding-bottom: 40px;
    }
    .business-consultation {
        background-position: 60% top;
    }
}

/*RAHEB CSS FOR consultation section*/


/*MOBILE APP SECTION CSS*/


section#home-mobile-app-section {
    position: relative;
    padding: 270px 0 90px;
    background: url('../images/mobile_app_section_bg.png') no-repeat center center;
    background-size: cover;
    margin-top: -140px;
}

section#home-mobile-app-section .container {
    max-width: 1440px;
}
.home-mobile-app-section-content {
    padding-top: 90px;
}

.home-mobile-app-section-content .heading-with-sub h2.section-heading {
    line-height: 62px;
}

.home-mobile-app-section-content p.paragraph {
    text-align: center;
    font-size: 15px;
}

.home-mobile-app-section-content  .download-buttons-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.home-mobile-app-section-content .heading-with-sub:before {
    content: '';
    position: absolute;
    width: 110%;
    height: 140%;
    background: url('../images/mobile_app_heading_bg.png') no-repeat center center;
    background-size: 100% 100%;
    left: -40px;
    top: -35px;
}

.home-mobile-app-section-content .heading-with-sub {
    position: relative;
}

.home-mobile-app-section-content .black-caption {
    margin-bottom: 50px;
}
.home-mobile-app-image-wrap img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-30px);
    }
    100% {
        transform: translatey(0px);
    }
}

@media screen and (max-width:1366px){
    .home-mobile-app-section-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width:1240px){
    .home-mobile-app-section-content {
        padding-top: 30px;
    }
    .home-mobile-app-section-content .heading-with-sub h2.section-heading{
        line-height: 52px;
        font-size: 34px;
    }
}

@media screen and (max-width:1100px){
    .home-mobile-app-section-content .heading-with-sub:before {
        top: -15px;
    }
}

@media screen and (max-width:998px){
    .home-mobile-app-section-content .heading-with-sub h2.section-heading {
        line-height: 44px;
        font-size: 30px;
    }
}

@media screen and (max-width:930px){
    .home-mobile-app-section-content {
        padding-top: 0px;
    }
    .home-mobile-app-section-content p.paragraph{
        margin-bottom: 25px;
    }
}


@media screen and (max-width:575px){
    .home-mobile-app-section-content .heading-with-sub:before {
        left: -22px;
    }
}


@media screen and (max-width:440px){
    .home-mobile-app-section-content .heading-with-sub h2.section-heading {
        line-height: 35px;
        font-size: 25px;
    }
}

/*MOBILE APP SECTION CSS END*/


/*HOME REVIEWS CSS*/

section#home-reviews-section {
    position: relative;
    padding: 120px 0 160px;
    background: url('../images/home_reviews_bg.png') no-repeat center top;
    background-size: cover;
}

.fixed-images {
    position: absolute;
    height: 1px;
    width: 100%;
    top: 0;
}

.fixed-images img{animation: float 6s ease-in-out infinite;}
.fixed-images .right {
    position: absolute;
    right: 160px;
    top: 20px;
    display: flex;
    flex-direction: column;
}

.fixed-images .right .img2 {
    position: relative;
    right: -80px;
}

.fixed-images .left {
    position: absolute;
    left: 220px;
    top: 20px;
    display: flex;
    flex-direction: column;
}

.fixed-images .left .img2 {
    position: relative;
    left: -140px;
    top: -20px;
    width: 110px;
}

section#home-reviews-section .black-caption {
    margin-bottom: 0px;
}

section#home-reviews-section .black-caption h2.section-heading {
    margin-bottom: 0;
}

.sub-head {
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 40px;
}

.home-review-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 60px;
}

.home-review-item .media-left {
    text-align: center;
}

.home-review-item .media-left .review-user-name {font-size: 18px;font-weight: 500;line-height: 48px;}

.home-review-item .media-left .review-stars img {
    width: inherit;
    margin: 0 auto;
}

.home-review-item .media-left .review-stars {
    text-align: center;
}

.home-review-item .media-body {
    padding: 0px 0px 0px 30px;
}

div#reviews-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin: -25px 0 0 0;
    height: 1px;
}

div#reviews-carousel .owl-nav .owl-prev {
    float: left;
    margin: 0;
    margin-left: -19px;
}

div#reviews-carousel .owl-nav .owl-next {
    float: right;
    margin: 0;
    margin-right: -19px;
}

div#reviews-carousel .owl-nav button {
    background: #05B6A6;
    border-radius: 0px;
    color: #fff;
    padding: 15px 5px !important;
}

div#reviews-carousel .owl-dots {
    position: absolute;
    z-index: 111;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

div#reviews-carousel .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid #05B6A6;
}

div#reviews-carousel .owl-dots .owl-dot.active span {
    background: #05B6A6;
}


@media screen and (max-width:1330px){
    .fixed-images .right {
        right: 60px;
    }

    .fixed-images .left {
        left: 60px;
    }

    .fixed-images .left .img2 {
        left: -30px;
        top: 0;
    }
}

@media screen and (max-width:991px){
    div#reviews-carousel .owl-dots {
        bottom: 5px;
    }
}

@media screen and (max-width:767px){
    .home-review-item .media {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 25px;
    }
    .home-review-item .media-body {
        padding: 0px 0px 0px 0px;
    }
}


@media screen and (max-width:575px){

    .reviews-slider-wrap {
        padding: 0 20px;
    }
    .home-review-item {
        padding: 25px 30px;
    }

    .fixed-images{
        display: none;
    }


}




/*HOME REVIEWS CSS END*/



/*FOOTER CSS*/

footer#gtco-footer {
    background: url('../images/footer_bg.png') no-repeat center top;
    margin-top: -130px;
    padding: 200px 0 0;
    background-size: cover;
}

footer#gtco-footer .container {
    max-width: 1440px;
}


@media screen and (min-width: 991px) {
        .my_row_footer {
            display:flex;
            flex-flow: wrap;
            justify-content: space-between;
            padding: 0 15px
        }

        .my_row_footer .footer-links {
            padding: 0
        }

        .my_row_footer [class*="col-"] {
            width: auto;
            padding: 0;
            max-width: inherit;
            flex: 0 0 17%;
        }

        .my_row_footer .footer-links a {
            margin-left: 0!important;
            margin-right: 0!important;
            font-weight: 300!important;
            position: relative;
            left: 0;
            transition: all .3s ease
        }

        .clearfix.my_row_footer:before,.clearfix.my_row_footer:after {
            display: none
        }

        .my_row_footer .footer-links a:hover {
            color: #000;
            left: 5px;
            font-weight: 300!important;
            transition: all .3s ease
        }

        .my_row_footer [class*="col-"].col-sm-12 {
            padding-top: 40px;
            padding-left: 0;
            padding-right: 0
        }
    }

    @media screen and (min-width: 991px) {
        .my_row_footer {
            display:flex;
            flex-flow: wrap;
            justify-content: space-between;
            padding: 0 15px
        }

        .my_row_footer .footer-links {
            padding: 0
        }

        .my_row_footer [class*="col-"] {
            width: auto;
            padding: 0;
            max-width: inherit;
            flex: 0 0 17%;
        }

        .my_row_footer .footer-links a {
            margin-left: 0!important;
            margin-right: 0!important;
            font-weight: 300!important;
            position: relative;
            left: 0;
            transition: all .3s ease
        }

        .clearfix.my_row_footer:before,.clearfix.my_row_footer:after {
            display: none
        }

        .my_row_footer .footer-links a:hover {
            color: #000;
            left: 5px;
            font-weight: 300!important;
            transition: all .3s ease
        }

        .my_row_footer [class*="col-"].col-sm-12 {
            padding-top: 0;
            padding-left: 0;
            padding-right: 0
        }
    }

    @media screen and (max-width: 990px) {
        .wcag_tag_mhealth {
            text-align:center;
            margin-top: 20px
        }

        .wcag_tag_mhealth p {
            margin-right: 0!important
        }

        /*.clearfix.my_row_footer * {
            text-align: center!important
        }*/

        .my_row_footer {
            display:flex;
            flex-flow: wrap;
            justify-content: space-between;
            padding: 0 15px
        }

        .my_row_footer .footer-links {
            width: 100%
        }

        .my_row_footer img[title="logo"] {
            margin: 0 auto;
            display: block
        }
        .my_row_footer [class*="col-"]:not(:last-child) {
            flex: 0 0 26%;
            margin-bottom: 50px;
        }
    }

    @media screen and (max-width: 838px) {
        .my_row_footer [class*="col-"]:not(:last-child) {
            flex: 0 0 30%;
        }
        .contact_info_footer p{

font-size: 15px !important;

margin-right: 0px !important;

}
        .contact_info_footer ul{
        margin-right: 0 !important;
        }
    }

    @media screen and (max-width: 767px) {
        .my_row_footer [class*="col-"]:not(:last-child) {
            flex: 0 0 100%;
        }
        .ada-tags {
            text-align: left;
        }

        footer#gtco-footer {
            margin-top: -150px;
            padding: 240px 0 0;
        }
    }

    .contact_info_footer p {
        line-height: 27px !important;
        margin-right: -20px;
        margin-top: 18px;
        margin-bottom: 22px !important;
    }

    .contact_info_footer ul {
        padding: 0;
        list-style: none;
        margin: 0px;
        margin-right: -40px;
    }

    .contact_info_footer ul li, .contact_info_footer ul li a {
        background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 15px;
        text-transform: capitalize;
        line-height: normal;
    }

    .contact_info_footer ul li:not(:last-child) {margin-bottom: 18px;}

    .contact_info_footer ul li img {
        float: left;
        margin-right: 15px;
        position: relative;
        top: 0px;
    }

    .my_row_footer {
        margin-bottom: 50px;
    }

    #gtco-footer .gtco-widget .widget-head {
        margin-bottom: 40px;
        text-transform: uppercase;
        font-weight: 600;
        background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
    }

    #gtco-footer .gtco-widget .widget-head:before {
        position: absolute;
        content: '';
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
        bottom: -15px;
    }

    #gtco-footer .gtco-widget ul.quick-links li a {
        color: #121212;
    }

    .ada-tags {
        text-align: center;
    }

    .ada-tags p {
        line-height: 27px !important;
    }

/*FOOTER CSS END*/



section#home-pricing-table-section {
    position: relative;
    padding: 120px 0;
    background: #fff url('../images/pricing_section_bg.png') no-repeat center top;
    background-size: cover;
}
section#home-pricing-table-section .container-fluid {
    padding-left: 2%;
    padding-right: 2%;
}

section#home-pricing-table-section .heading-with-sub h2.section-heading {
    line-height: 55px;
}

section#home-pricing-table-section .sub-head {
    font-size: 22px;
    margin-bottom: 30px;
}

section#home-pricing-table-section p.paragraph {
    text-align: center;
}

.pricing-switch label {
  cursor: text;
  user-select: none;
  padding: 0 15px;
  font-size: 17px;
    color: #919191;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; }

    .pricing-switch label.active {
        font-weight: 600;
        color: #272727;
    }

    .pricing-switch {
        margin-bottom: 60px;
    }

.pricing-switch .toggle {
  height: 30px;
  cursor: pointer;
  z-index: 1;
  position: relative; }
  .pricing-switch .toggle .switch {
        display: inline-block;
    height: 100%;
    width: 57px;
    border: 1px solid #fff;
    border-radius: 50px;
    position: relative;
    background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
     }
    .pricing-switch .toggle .switch::after {
      position: absolute;
      content: "";
      height: 19px;
      width: 19px;
      border-radius: 50px;
      background-color: #fff;
      left: 5px;
      top: 4px;
      z-index: 2;
      transition: 0.25s ease-in-out; }
  .pricing-switch .toggle .pricing-check:checked ~ .switch::after {
    left: 58.5%; }
  .pricing-switch .toggle .pricing-check:active ~ .switch::after {
    transform: scale(0.8); }
  .pricing-switch .toggle .pricing-check {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 3;
    opacity: 0;
    cursor: pointer; }



.pricing-table td.active {
  position: relative;
  overflow: hidden; }
  .pricing-table td.active .recomended {
    position: absolute;
    background: #dca71c;
    color: #ffffff;
    font-weight: 600;
    padding: 0 25px;
    transform: rotate(45deg);
    right: -29px;
    top: 26px;
    font-size: 10px;
    letter-spacing: 1px; }

.pricing-table td,
.pricing-table th {
  border: 2px solid #fff;
  padding: 20px;
  width: 20%; }

.pricing-table td span {
  vertical-align: middle; }

.pricing-table thead td,
.pricing-table thead th {
  border-bottom-width: 1px;
  background: #FF3158;
  border-color: #ff5f7d; }

.pricing-table thead td:first-child,
.pricing-table thead th:first-child {
  border-top-color: transparent;
  border-left-color: transparent;
  border-top-left-radius: 25px; }

.pricing-table thead td:last-child,
.pricing-table thead th:last-child {
  border-top-color: transparent;
  border-right-color: transparent;
  border-top-right-radius: 25px; }
/*
@media (max-width: 991px) {
  .pricing-table {
    display: block; }
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
      display: block; }
    .pricing-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px; }
    .pricing-table tr {
      border: 1px solid #ccc; }
    .pricing-table td,
    .pricing-table th {
      padding: 10px 20px;
      width: initial; }
    .pricing-table td {
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 50%; }
    .pricing-table td:before {
      position: absolute;
      top: 13px;
      left: 20px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
      content: attr(data-label); } }

@media (max-width: 575px) {
  .pricing-table td {
    padding-left: 40%; }
  .pricing-table td:before {
    width: 39%; } 

}*/
    .pricing-table svg {
        max-width: 15px;
    }


    .pricing-table thead td.bg1, .pricing-table thead th.bg1 {
    background: #464E56;
    border: none;
    border-radius: 10px 10px 0 0;
    min-width: 510px;
}

.pricing-table thead td, .pricing-table thead th {
    border: 2px solid #fff !important;
    padding: 10px 10px;
}

.pricing-table thead td.bg2, .pricing-table thead th.bg2 {
        background: #007C98;
    border: none;
    border-radius: 10px 10px 0 0;
}
.pricing-table thead td.bg3, .pricing-table thead th.bg3 {
        background: #04ACAD;
    border: none;
    border-radius: 10px 10px 0 0;
}
.pricing-table thead td.bg4, .pricing-table thead th.bg4 {
        background: #019ABC;
    border: none;
    border-radius: 10px 10px 0 0;
}
.pricing-table thead td.bg5, .pricing-table thead th.bg5 {
        background: #018DC8;
    border: none;
    border-radius: 10px 10px 0 0;
}

.pricing-table thead td h3, .pricing-table thead th h3 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important;
}

.pricing-table td.light-bg1, .pricing-table th.light-bg1 {
    background: #F4F5F5;
}

.pricing-table td.light-bg2, .pricing-table th.light-bg2 {
    background: #EBFAFF;
}
.pricing-table td.light-bg3, .pricing-table th.light-bg3 {
    background: #E2F7F3;
}
.pricing-table td.light-bg4, .pricing-table th.light-bg4 {
    background: #DCF7FF;
}
.pricing-table td.light-bg5, .pricing-table th.light-bg5 {
    background: #E7F5FF;
}

.pricing-table-wrap {border: 1px solid #E4E4E4;border-radius: 8px;}


table.pricing-table .price-details {
    text-align: center;
}

table.pricing-table .price-details p {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif !important;
    line-height: normal;
}

table.pricing-table .price-details div:first-child {
    margin-bottom: 10px;
}

table.pricing-table .price-details div:nth-child(2) {
    margin-bottom: 7px;
}

table.pricing-table .price-details  p span {
    font-weight: 500;
    color: #272727;
}

table.pricing-table .price-details span.h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    font-size: 30px;
    margin-right: 6px;
}

table.pricing-table .light-bg2 .price-details div:nth-child(2) * {color: #007C99 !important;}

table.pricing-table .light-bg3 .price-details div:nth-child(2) *{color: #04ACAD !important;}

table.pricing-table .light-bg4 .price-details div:nth-child(2) * {color: #019ABC !important;}

table.pricing-table .light-bg5 .price-details div:nth-child(2) * {color: #018DC8 !important;}


.price-table-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
    background: transparent !important;
    border: 1px solid #000 !important;
    font-weight: 600 !important;
}

.light-bg2 .price-table-button {
    border-color: #007C98 !important;
    color: #007C98 !important;
}

.price-table-button span {
    position: relative;
    top: -1px;
    margin-left: 3px;
}
.light-bg2 .price-table-button {
    border-color: #007C98 !important;
    color: #007C98 !important;
}
.light-bg2 .price-table-button:hover {
    background: #007C98 !important;
    color: #fff !important;
}
.light-bg3 .price-table-button {
    border-color: #05B6A6 !important;
    color: #05B6A6 !important;
}
.light-bg3 .price-table-button:hover {
    background: #05B6A6 !important;
    color: #fff !important;
}
.light-bg4 .price-table-button {
    border-color: #019ABC !important;
    color: #019ABC !important;
}
.light-bg4 .price-table-button:hover {
    background: #019ABC !important;
    color: #fff !important;
}
.light-bg5 .price-table-button {
    border-color: #018DC8 !important;
    color: #018DC8 !important;
}
.light-bg5 .price-table-button:hover {
    background: #018DC8 !important;
    color: #fff !important;
}

.pricing-table tbody tr:not(:first-child) td p {
    font-size: 14px;
    margin: 0;
    text-align: center;
    line-height: 21px;
}

.pricing-table tbody tr:not(:first-child) td {
    padding: 13px 15px;
}

.pricing-table a.video-pop-link {
    color: #05B6A6;
    font-weight: 500;
}
.pricing-table a.video-pop-link:hover{
    text-decoration:underline;
}

.pricing-table a.video-pop-link img {
    position: relative;
    top: -1px;
    margin-left: 10px;
}

.pricing-table tbody tr:not(:first-child) td:first-child p {
    font-weight: 500;
    text-align: left;
}


table.pricing-table .solutions-info .head {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 13px;
}

table.pricing-table .solutions-info p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 15px;
}

table.pricing-table .solutions-info a {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

table.pricing-table .solutions-info a:hover {
    text-decoration: underline;
}

.pricing-table tbody tr:not(:first-child) td p .clr-1 {
    color: #007C98;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table tbody tr:not(:first-child) td p .clr-2 {
    color: #04ACAD;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table tbody tr:not(:first-child) td p .clr-3 {
    color: #019ABC;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table tbody tr:not(:first-child) td p .clr-4 {
    color: #018DC8;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.pricing-table tbody tr.bottom_links td {
    padding: 35px 15px;
    text-align: center;
}

.pricing-table tbody tr.bottom_links td a.themebtn {
    font-size: 14px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-1 {
    background: #007C98;
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-1:hover {
    box-shadow: 0px 15px 35px rgba(0,124,152,0.30);
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-2 {
    background: #04ACAD;
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-2:hover {
    box-shadow: 0px 15px 35px rgba(4,172,173,0.30);
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-3 {
    background: #019ABC;
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-3:hover {
    box-shadow: 0px 15px 35px rgba(1,154,188,0.30);
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-4 {
    background: #018DC8;
}

.pricing-table tbody tr.bottom_links td a.themebtn.bg-4:hover {
    box-shadow: 0px 15px 35px rgba(1,141,200,0.30);
}

.pricing-table tbody tr.bottom_links td a.themebtn span {
    position: relative;
    top: -2px;
    margin-left: 5px;
}

@media screen and (max-width: 1500px){
    .pricing-table thead td.bg1, .pricing-table thead th.bg1 {
        min-width: 400px;
    }
}
@media screen and (max-width: 1280px){
    .pricing-table thead td.bg1, .pricing-table thead th.bg1 {
        min-width: 350px;
    }
}
@media screen and (max-width: 1150px){
    .pricing-table thead td.bg1, .pricing-table thead th.bg1 {
        min-width: 300px;
    }

    table.pricing-table .solutions-info .head {
        font-size: 16px;
        margin-bottom: 9px;
    }

    table.pricing-table .solutions-info p {
        line-height: 24px;
    }

    table.pricing-table .solutions-info a {
        font-size: 15px;
    }
}
@media screen and (max-width: 1120px){
    table.pricing-table .price-details span.h2 {
        font-size: 22px;
        margin-right: 3px;
    }

    .price-table-button {
        padding: 7px 14px !important;
        font-size: 13px !important;
    }

    table.pricing-table .price-details p {
        line-height: 22px !important;
        font-size: 13px;
    }
}
@media screen and (max-width: 1040px){
    .pricing-table thead td.bg1, .pricing-table thead th.bg1 {
        min-width: 270px;
    }
}

@media (max-width: 575px) {
  .pricing-switch {
    text-align: center; } }


    @media (max-width: 1180px) {
        .pricing-table-wrap {
            overflow-y: scroll;
        }
        table.pricing-table {
            min-width: 1180px;
        }
  /*.pricing-table {
    display: block; }
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
      display: block; }
    .pricing-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px; }
    .pricing-table tr {
      border: 1px solid #ccc; }
    .pricing-table td,
    .pricing-table th {
      padding: 13px 20px;
      width: initial; }
    .pricing-table td,.pricing-table tbody tr:not(:first-child) td {
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 50%; }
    .pricing-table td:before {
      position: absolute;
      top: 10px;
      left: 20px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-size: 16px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
      content: attr(data-label); } 
      .pricing-table tbody tr:not(:first-child) td .d-flex.justify-content-around {
                justify-content: flex-start !important;
        }

        table.pricing-table .price-details {
            text-align: left;
        }
        .pricing-table tbody tr:not(:first-child) td:first-child {
            padding-left: 21px !important;
        }

        .pricing-table tbody tr:not(:first-child) td:first-child p {
            font-weight: 700;
            font-size: 14px;
        }
        .pricing-table tr.bottom_links td:first-child {
            display: none;
        }

        .pricing-table tr.bottom_links td::before {
            text-align: left;
        }

        .pricing-table tbody tr.bottom_links td {
            text-align: left;
        }
  }

@media (max-width: 575px) {
  .pricing-table td {
    padding-left: 40%; }
  .pricing-table td:before {
    width: 39%; } 

    .pricing-table tbody tr.bottom_links td {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .pricing-table tbody tr:not(:first-child) td p{
        text-align: left;
    }
    .pricing-table tbody tr:not(:first-child) td:first-child {
        padding-left: 10px !important;
    }
}


    @media (max-width: 450px) {
        .pricing-table td:before{
            font-size: 13px;
            font-weight: 600;
        }
        .pricing-table tbody tr:not(:first-child) td:first-child p {
            font-weight: 600;
        }
        .pricing-table td:before {
            top: 14px;
        }
    }

    @media (max-width: 390px) {
        .pricing-table td:before {
            left: 10px;
        }*/
    }





    /*MENU DESIGN CSS*/


    #fh5co-primary-menu .fh5co-sub-menu {
        min-width: fit-content;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 15px 50px -21px rgba(0, 0, 0, 0.3);
        border: 1px solid #EDEDED;
        border-radius: 5px;
        padding: 13px 13px 13px 13px;
    }

    #fh5co-primary-menu .fh5co-sub-menu:before {
        content: '';
        position: absolute;
        top: -2px;
        left: 50%;
        width: 13px;
        z-index: 999999999;
        height: 13px;
        border-left: 1px solid #EDEDED;
        border-top: 1px solid #EDEDED;
        transform: rotate(43deg) translate(-55%, -5%);
        background: #fff;
    }

    #fh5co-primary-menu .fh5co-sub-menu.about_dropdown li a {
     float: left;
     width: 100%;
     line-height: normal;
     padding: 10px 12px 10px 12px !important;
     border-radius: 3px !important;
    transition: all .3s ease;
     }

    #fh5co-primary-menu .fh5co-sub-menu.about_dropdown li a span:not(.icon) {
        float: left;font-family: 'Montserrat', sans-serif;font-size: 12px;display: block;margin-top: 7px;line-height: normal;font-weight: 400 !important;
        width: 89%;
    }

    #fh5co-primary-menu .fh5co-sub-menu.about_dropdown li a span.icon {
        display: inline-block;
        position: relative;
        width: 40px;
        height: 50px;
        float: left;
    }

    #fh5co-primary-menu .fh5co-sub-menu li:not(:last-child) {
        border: none !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu li.hover-1.active > a,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-1.sf-withul:hover > a, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:hover,
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:active {
        background: #F2FDF9;
        color: #05B6A6 !important;
        font-weight: 500;        
        transition: all .3s ease;
    }
    #fh5co-primary-menu .fh5co-sub-menu li  a:hover,
    #fh5co-primary-menu .fh5co-sub-menu li  a:active{
        -webkit-background-clip: inherit !important;
    -webkit-text-fill-color: inherit !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu li a span:not(.icon), 
    #fh5co-primary-menu .fh5co-sub-menu li.active a  span:not(.icon), 
    #fh5co-primary-menu .fh5co-sub-menu li a:hover  span:not(.icon), 
    #fh5co-primary-menu .fh5co-sub-menu li a:active span:not(.icon) {
        color: #272727 !important;        
        transition: all .3s ease;
        font-weight: normal !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu li a span.icon img{
        transition: all .3s ease;
    } 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1.active > a  span.icon img, 

    #fh5co-primary-menu .fh5co-sub-menu > li.hover-1.sf-withul:hover > a span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:hover span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:active span.icon img {
        filter: invert(51%) sepia(99%) saturate(1352%) hue-rotate(135deg) brightness(91%) contrast(96%);
        transition: all .3s ease;
    }


     #fh5co-primary-menu .fh5co-sub-menu li.hover-2.active > a,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-2.sf-withul:hover > a, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:hover,
    #fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:active {
        background: #EBFAFF;
        color: #007C99 !important;
        font-weight: 500;        
        transition: all .3s ease;
    }

       #fh5co-primary-menu .fh5co-sub-menu li.hover-2.active > a  span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-2.sf-withul:hover > a span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:hover span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:active span.icon img {
        filter: invert(33%) sepia(75%) saturate(5120%) hue-rotate(173deg) brightness(89%) contrast(102%);
        transition: all .3s ease;
    }


    #fh5co-primary-menu .fh5co-sub-menu li.hover-3.active > a,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-3.sf-withul:hover > a, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:hover,
    #fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:active {
        background: #E0F8FA;
        color: #019ABC !important;
        font-weight: 500;        
        transition: all .3s ease;
    }

    #fh5co-primary-menu .fh5co-sub-menu li.hover-3.active > a  span.icon img,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-3.sf-withul:hover > a span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:hover span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:active span.icon img {
        filter: invert(42%) sepia(61%) saturate(4497%) hue-rotate(165deg) brightness(99%) contrast(99%);
        transition: all .3s ease;
    }


     #fh5co-primary-menu .fh5co-sub-menu li.hover-4.active > a,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-4.sf-withul:hover > a, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:hover,
    #fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:active {
        background: #F1F9FF;
        color: #018DC8 !important;
        font-weight: 500;        
        transition: all .3s ease;
    }

    #fh5co-primary-menu .fh5co-sub-menu li.hover-4.active > a  span.icon img,
    #fh5co-primary-menu .fh5co-sub-menu > li.hover-4.sf-withul:hover > a span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:hover span.icon img, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:active span.icon img {
        filter: invert(35%) sepia(89%) saturate(2539%) hue-rotate(174deg) brightness(95%) contrast(99%);
        transition: all .3s ease;
    }

    #offcanvas-menu ul li a span.icon, #offcanvas-menu ul li a span:not(.icon) {
        display: none;
    }
    #fh5co-primary-menu .fh5co-sub-menu{
        background: #fff;
    }

    #fh5co-primary-menu > li > .sf-with-ul:after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        position: relative;
        float: none;
        margin-left: 4px;
        margin-right: -7px;
        right: -7px;
        font-size: 12px;
        margin-top: 0;
        color: #121212;
        width: 6px;
        height: 6px;
        border: none;
        border-right: 1px solid #121212;
        border-bottom: 1px solid #121212;
        transform: rotate(43deg) translate(-55%, -5%);
        top: 2px;
        background: #fff;
    }
    #fh5co-primary-menu > li:hover > .sf-with-ul:after, #fh5co-primary-menu > li > .sf-with-ul:hover:after, #fh5co-primary-menu > li.active > .sf-with-ul:after {
        color: #05B6A6 !important;
        transition: all .3s ease;
        border-color: #1c9cbf !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu.digital_solutions_dropdown {
        min-width: 18em;
        /*border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        border-right: none;*/
        min-height: 300px;
        max-height: 300px;
        padding: 20px 18px;
    }

    #fh5co-primary-menu .fh5co-sub-menu a.sf-with-ul {
        font-size: 15px !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu a {
        font-size: 14px !important;
    }
    #fh5co-primary-menu .fh5co-sub-menu li:hover, 
    #fh5co-primary-menu .fh5co-sub-menu li:active, 
    #fh5co-primary-menu .fh5co-sub-menu li:focus, 
    #fh5co-primary-menu .fh5co-sub-menu li.active {
        background-color: transparent;
    }
    #fh5co-primary-menu .fh5co-sub-menu.digital_solutions_dropdown li a {
        border-radius: 3px !important;
    }

    #fh5co-primary-menu .fh5co-sub-menu.digital_solutions_dropdown li.sf-withul:not(:last-child) {
        margin-bottom: 14px;
    }

    #fh5co-primary-menu .fh5co-sub-menu li.hover-1.active a:after, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 a:hover:after, 
    #fh5co-primary-menu .fh5co-sub-menu li.hover-1 a:active:after {
        color: #05B6A6 !important;
    }

    #fh5co-primary-menu > li > ul li > .sf-with-ul:after{
        font-size: 19px;
    }
 #fh5co-primary-menu .fh5co-sub-menu li.hover-1.active a:after, #fh5co-primary-menu .fh5co-sub-menu > li.hover-1.sf-withul:hover > a:after{
        color: #05B6A6 !important
    }

    #fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu {
        top: -1px;
        box-shadow: none;
        left: calc(100% + -20px );
        border-right: none !important;
        min-height: 300px;
        min-width: 440px;
        transform: translateX(15px);
        border-left: none;
        padding: 20px 25px;
    }

    #fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu li:not(:last-child) {
        margin-bottom: 0px;
    }

    #fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu:before {
        display: none;
    }

    #fh5co-primary-menu .fh5co-sub-menu > li > .fh5co-sub-menu li a {display: flex;align-items: center;gap: 15px;line-height: normal;}

    li.sf-withul.main-dropdown .fh5co-sub-menu li.sf-withul {
        position: initial !important;
    }
    #fh5co-primary-menu > li > ul li > .sf-with-ul:after {
        margin-top: -4px;
        margin-right: 1px;
    }
    #fh5co-primary-menu .fh5co-sub-menu.about_dropdown.resources_dropdown li a span:not(.icon) {
        white-space: break-spaces;
        max-width: 89%;
        line-height: 20px;
    }
    /*li.show_after_1440 li.hover-2 span.icon, li.show_after_1440 li.hover-3 span.icon {
        height: inherit !important;
    }

    li.show_after_1440 li.hover-2 a, li.show_after_1440 li.hover-3 a {line-height: 34px !important;}*/


    .mfp-bg {
        z-index: 9999999999;
    }

    .mfp-wrap {
        z-index: 999999999999;
    }
    .mfp-counter {
        display: none;
    }



@media screen and (max-width:1199px){.welcome-text {
    margin-right: -90px;
    display: block;
}}
@media screen and (max-width:1155px){.welcome-text {
    margin-right: -50px;
    display: block;
    font-size: 12px;
}

.welcome-text a.themebtn {
    font-size: 12px;
    margin-left: 6px;
    padding: 7px 13px;
}

.welcome-text a.themebtn img {
    top: -1px;
    margin-left: 5px;
    width: 6px;
}
                                     
}

@media screen and (max-width:1292px){
    .welcome-text {
        margin-right: -50px;
        display: block;
        font-size: 12px;
    }

    .welcome-text a.themebtn {
        font-size: 12px;
        margin-left: 6px;
        padding: 7px 13px;
    }

    .welcome-text a.themebtn img {
        top: -1px;
        margin-left: 5px;
        width: 6px;
    }

    .welcome-text br.d-only-after-1045 {
        display: block !important;
    }

    .welcome-text {
        line-height: 8px;
        padding-top: 10px;
    }

    .welcome-text a.themebtn {position: relative;top: -10px;left: 20px;}
    .digi-top-bar-links {
        margin-left: -80px;
    }
    .digi-top-bar-links a {
        height: 45px;
    }
                                         
}

@media screen and (max-width:1108px){
    .digi-top-bar-links {
        margin-left: -100px;
    }
}

@media screen and (max-width:991px){
    .welcome-text {
        margin-right: -50px;
        display: block;
        font-size: 12px;
    }

    .welcome-text a.themebtn {
        font-size: 12px;
        margin-left: 6px;
        padding: 7px 13px;
    }

    .welcome-text a.themebtn img {
        top: -1px;
        margin-left: 5px;
        width: 6px;
    }

    .welcome-text br.d-only-after-1045 {
        display: none !important;
    }

    .welcome-text {
        line-height: inherit;
        padding-top: 0px;
    }

    .welcome-text a.themebtn {position: relative;top: 0px;left: 5px;}

    .digi-top-bar .row.align-items-center {
        justify-content: center;
    }

    .digi-top-bar-links {
        justify-content: center !important;
        margin-left: 0px;
    }
                                         
}


@media screen and (max-width:659px){
    .welcome-text {
        margin-right: 0px;
    }
    .welcome-text a.themebtn {
        position: relative;
        top: 0px;
        left: -12px;
        margin-left: 6px;
        margin-top: 6px;
    }
}

@media screen and (max-width:460px){
    br.d-only-after-460 {
        display: block !important;
    }
}

#offcanvas-menu ul,#offcanvas-menu ul * {
    opacity: 1 !important;
    transform: none !important;
}

#offcanvas-menu ul li.active > a,#offcanvas-menu ul li > a:hover {
    color: #05b6a6;
}


#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
    min-width: 66em;
    min-height: inherit;
    max-height: inherit;
    height: 0px;
    overflow: hidden;
    padding: 0;
    border: none;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li > ul {
    display: block !important;
    position: relative;
    left: 0;
    min-width: auto !important;
    max-width: inherit !important;
    transform: none;
    min-height: auto;
    padding: 0;
    opacity: 1 !important;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li a {
    width: auto !important;
}

/*#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > li {
    width: 26%;
    float: left;
    padding-right: 35px;
}*/

#fh5co-primary-menu .big_dropdown:hover .fh5co-sub-menu.digital_solutions_dropdown,#fh5co-primary-menu .big_dropdown:hover > a:hover + .fh5co-sub-menu.digital_solutions_dropdown {
    /*display: flex !important;*/
    border: 1px solid #EDEDED;
    padding: 20px 18px;
    height: auto;
    overflow: visible;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li a.sf-with-ul:after {
    display: none;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li a {
    padding: 8px 5px 8px 12px !important;
    text-transform: initial;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown  > .row > li a.sf-with-ul {
    border-top: 1px solid #bdbdbd !important;
    border-radius: 0 !important;
    padding: 13px 5px 13px !important;
    font-weight: 600;
    color: #000 !important;
    margin-bottom: 0px;
    text-transform: initial;
}

#offcanvas-menu ul li > .fh5co-sub-menu.digital_solutions_dropdown li ul {
    display: block !important;
    padding-left: 15px;
    margin-top: 8px;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li:last-child {
    padding-right: 0px;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li > ul li a {position: relative;}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li > ul li a:before {
    content: '•';
    position: absolute;
    left: 2px;
    color:#434343 !important;
    display:block !important;
    font-size: 23px;
    top: 50%;
    transform: translateY(-52%);
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row  > li > ul li {
    padding-left: 0px;
}

@media screen and (max-width: 657px){
    .side-social-icons {
        left: 0;
        top: auto;
        bottom: 150px;
    }
    .fixed-area {
        right: 0;
        top: auto;
        bottom: 170px;
    }
}

@media screen and (max-width: 1440px){
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
        left: 50%;
        transform: translateX(-35%);
    }

    #fh5co-primary-menu .fh5co-sub-menu.digital_solutions_dropdown:before {
        left: 35%;
    }
}



/*WHO WE HELP PAGE*/

section#inner-banner-section {
    position: relative;
}

section#inner-banner-section .inner_banner_content_wrap {
    position: relative;
}

section#inner-banner-section .inner_banner_content_wrap .inner_banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + -10px));
}

.inner_banner_content h1 {
    color: #121212;
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 500;
    margin: 0;
    display: inline;
}

.inner_banner_content.container {
    max-width: 1440px;
}
@media screen and (max-width:1440px){
.inner_banner_content h1 {
    padding-left:50px;
}
}
@media screen and (max-width: 657px){
section#inner-banner-section .inner_banner_content_wrap img {min-height: 250px;object-fit: cover;}
    .inner_banner_content h1 {
    padding-left:0px;
}
}

@media screen and (max-width: 500px){
section#inner-banner-section .inner_banner_content_wrap img {min-height: 200px;object-fit: cover;object-position:-170px}
        .inner_banner_content h1 {
    padding-left:0px;
    font-size: 35px;
}
}

section#home-about-section.who_we_help_section0 {
    padding-bottom: 120px;
}
section#who_we_help_section1 {
    position: relative;
    padding: 0px 0 100px;
}
.who_we_help_section1 .arrow_placeholder img {
    position: relative;
    right: -130px;
    top: -10px;
}

.who_we_help_section1 .arrow_placeholder.nothing_font div span {
    float: right;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 30px;
    color: #018DC8;
    position: relative;
    right: -100px;
    padding-top: 10px;
}

.who_we_help_section1_bg {
    padding: 0px 40px;
    background: url('../images/who_we_help_boxex_bg.png') no-repeat center center;
    background-size: 100% calc(100% - 5%);
}
.how_we_help_box {
    padding: 75px 30px 70px;
    position: relative;
}

.how_we_help_box.box_1:before, .how_we_help_box.box_3:before, .how_we_help_box.box_5:before {content: '';width: 1px;height: 100%;position: absolute;background: #018DC8;top: 0;right: -15px;}

.how_we_help_box.box_1, .how_we_help_box.box_3, .how_we_help_box.box_5 {padding-right: 80px;}

.how_we_help_box.box_2, .how_we_help_box.box_4, .how_we_help_box.box_6 {padding-left: 80px;}

.how_we_help_box.box_2:before, .how_we_help_box.box_4:before, .how_we_help_box.box_6:before {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #018DC8;
    bottom: 0;
    right: 15px;
}

.how_we_help_box.box_6:before {
    display: none;
}

.how_we_help_box.box_1:after, .how_we_help_box.box_3:after, .how_we_help_box.box_5:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #018DC8;
    bottom: 0;
    right: -15px;
}

.how_we_help_box.box_5:after {
    display: none;
}


.how_we_help_box > span {height: 46px;width: 46px;display: inline-block;text-align: center;line-height: 46px;border-radius: 7px;font-family: 'Montserrat', sans-serif;font-size: 18px;color: #fff;margin-bottom: 30px;background: #000;}

.how_we_help_box.box_1 > span {
    background: #018DC8;
}

.how_we_help_box.box_2 > span {
    background: #05B6A6;
}

.how_we_help_box.box_3 > span {
    background: #007C98;
}

.how_we_help_box.box_4 > span {
    background: #018DC8;
}

.how_we_help_box.box_5 > span {
    background: #05B6A6;
}

.how_we_help_box.box_6 > span {
    background: #007C98;
}

.how_we_help_box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #121212;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 15px;
}

.how_we_help_box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #272727;
    line-height: 30px;
    margin: 0;
}

@media screen and (max-width: 1024px){
    .who_we_help_section1 .arrow_placeholder.nothing_font div span {
        right: -20px;
    }
}


@media screen and (max-width: 991px){
    .how_we_help_box {
        padding: 55px 15px 50px;
    }

    .how_we_help_box.box_2, .how_we_help_box.box_4, .how_we_help_box.box_6 {
        padding-left: 40px;
    }

    .how_we_help_box.box_1, .how_we_help_box.box_3, .how_we_help_box.box_5 {
        padding-right: 40px;
    }
    .who_we_help_section1_bg{
        background-size: calc(100% + 30%) calc(100% - 5%);
    }
}


@media screen and (max-width: 767px){

    .who_we_help_section1_bg{
        background-size: calc(100% + 100%) calc(100% - 5%);
    }
    .who_we_help_section1 .arrow_placeholder.nothing_font div span {
        right: 10px;
        font-size: 22px;
    }
    .how_we_help_box:before,.how_we_help_box:after {
        display: none;
    }

    .how_we_help_box:after {
        content: '';
        width: calc(100% - 50px) !important;
        height: 1px;
        position: absolute;
        background: #018DC8;
        bottom: 0;
        right: 50% !important;
        transform: translateX(50%);
        display: block !important;
    }

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

    .who_we_help_section1_bg .col-12:last-child .how_we_help_box:after {
        display: none !important;
    }
}

@media screen and (max-width: 600px){
    .who_we_help_section1 .arrow_placeholder {
        display: none;
    }
}
@media screen and (max-width: 575px){
    .who_we_help_section1_bg{
        padding: 0px 10px;
    }
}
@media screen and (max-width: 375px){
    .who_we_help_section1_bg {
        padding: 0px 0px;
    }
}


section#who_we_help_section2 {
    position: relative;
    background: url('../images/who_we_help_s4_bg.jpg') no-repeat center top;
    background-size: cover;
    padding: 60px 0 20px;
}
section#who_we_help_section2 .container {
    max-width: 1440px;
}

section#who_we_help_section3 {
    position: relative;
    background: url('../images/who_we_help_last_bg.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 170px;
}
section#who_we_help_section3 .container {
    max-width: 1440px;
}
section#who_we_help_section3 .media.phone-link a,section#who_we_help_section3 .media.phone-link p {
    color: #fff !important;
    -webkit-text-fill-color: snow;
    font-weight: 500;
}

@media screen and (max-width: 767px){
    section#who_we_help_section2 {
        padding: 90px 0;
        background-position: bottom center;
    }

    section#who_we_help_section3 {
        padding: 100px 0 200px;
    }
}
/*
 * HS Mega Menu - jQuery Plugin
 * @version: 1.0.0 (Sun, 26 Feb 2017)
 *
 * @license:
 *
 * Copyright 2017 HtmlStream
 *
 */


.hs-menu-initialized {
	position: relative;
	z-index: 10;
}

.hs-menu-initialized .animated {
	-webkit-animation-duration: 300ms;
	animation-duration: 300ms;
}

.hs-overflow-x-locked {
	overflow-x: hidden;
}

.hs-sub-menu,
.hs-mega-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 2;
	margin-top: -.002rem;
	visibility: hidden;
	background-color: #fff;
	opacity: 1 !important;
}

.hs-sub-menu-opened > .hs-sub-menu,
.hs-mega-menu-opened > .hs-mega-menu {
	visibility: visible;
	opacity: 1;
}

.hs-sub-menu {
	min-width: 180px;
}

.hs-has-sub-menu {
	overflow: hidden;
	position: relative;
}

.hs-sub-menu-opened {
	overflow: visible;
}

.hs-sub-menu .hs-sub-menu,
.hs-mega-menu .hs-sub-menu,
.hs-sub-menu .hs-mega-menu,
.hs-mega-menu .hs-mega-menu {
	top: 0;
	left: 100%;
	margin-top: 0;
}

/*------------------------------------
	Vertical Direction
------------------------------------*/

.hs-menu-vertical .hs-sub-menu,
.hs-menu-vertical .hs-mega-menu {
	top: 0;
	left: 100%;
	margin-top: 0;
}

.hs-menu-vertical .hs-sub-menu {
	width: auto;
}

.hs-menu-vertical .hs-mega-menu {
	height: 100%;
}

/*------------------------------------
	Mobile state
------------------------------------*/

.hs-mobile-state .hs-sub-menu,
.hs-mobile-state .hs-mega-menu {
	position: static;
	visibility: visible;
}

.hs-mobile-state .hs-has-mega-menu[data-max-width] > .hs-mega-menu,
.hs-mobile-state .hs-has-sub-menu[data-max-width] > .hs-sub-menu {
	max-width: initial !important;
}

/*------------------------------------
	RTL
------------------------------------*/

.hs-menu-initialized.hs-rtl {
	direction: rtl;
	unicode-bidi: embed;
}

.hs-menu-initialized.hs-rtl .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu {
	left: auto;
	right: 0;
}

.hs-menu-initialized.hs-rtl .hs-sub-menu .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu .hs-sub-menu,
.hs-menu-initialized.hs-rtl .hs-sub-menu .hs-mega-menu,
.hs-menu-initialized.hs-rtl .hs-mega-menu .hs-mega-menu {
	left: auto;
	right: 100%;
}

/*------------------------------------
	Smart Position
------------------------------------*/

.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu.hs-reversed {
	left: auto;
	right: 0;
}

.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed,
.hs-menu-initialized:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed {
	left: auto;
	right: 100%;
}

.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu.hs-reversed {
	right: auto;
	left: 0;
}

.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-sub-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-sub-menu .hs-mega-menu.hs-reversed,
.hs-menu-initialized.hs-rtl:not(.hs-mobile-state) .hs-mega-menu .hs-mega-menu.hs-reversed {
	right: auto;
	left: 100%;
}

/*------------------------------------
	Positions
	(only 'horizontal' direction)
------------------------------------*/

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-left {
	left: 0;
	right: auto;
}

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-right {
	left: auto;
	right: 0;
}

.hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-center {
	right: auto;
	left: 50%;

	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.u-skippy {
  display: none;
}

/*------------------------------------
  List Group
------------------------------------*/
.list-group {
  list-style: none;
}

.list-group .list-group {
  margin-left: 1rem;
}

.list-group .list-group-item {
  font-size: 0.875rem;
}

.list-group .list-group-icon {
  min-width: 1rem;
  max-width: 1rem;
  color: #77838f;
  text-align: center;
  margin-right: .5rem;
}

.list-group .active > .list-group-item {
  color: #377dff;
}

.list-group .active > .list-group-text {
  color: #fff;
}

.list-group .disabled .u-icon {
  color: #77838f;
  background-color: rgba(119, 131, 143, 0.1);
}

/* Border Radius */
.list-group-rounded-0 .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.list-group-rounded-0 .list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* Transparent */
.list-group-transparent .list-group-item {
  border-color: transparent;
  background-color: transparent;
}

/* White */
.list-group-white .list-group-item,
.list-group-white .list-group-item-action {
  color: #fff;
}

.list-group-white .list-group-item[href],
.list-group-white .list-group-item-action[href] {
  color: rgba(255, 255, 255, 0.7);
}

.list-group-white .list-group-item[href]:hover,
.list-group-white .list-group-item-action[href]:hover {
  color: #fff;
}

.list-group-white.list-group-striped .list-group-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.1);
}

.list-group-white .active > .list-group-item {
  color: #fff;
}

/* Flush */
.list-group-flush .list-group-item {
  padding-left: 0;
  padding-right: 0;
}

.list-group-flush .list-group-item.active {
  color: #377dff;
  background-color: transparent;
  border-color: transparent;
}

/* Borderless */
.list-group-borderless .list-group-item {
  border: none;
}

/* Striped */
.list-group-striped .list-group-item:nth-child(even) {
  background-color: #f8fafd;
}

/*------------------------------------
  Links
------------------------------------*/
.link {
  display: inline-block;
}

.link__icon {
  position: relative;
  line-height: .7;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 1rem;
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
  border-radius: 50%;
  transition: 0.3s;
}

.link__icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.link:hover .link__icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* Collapse */
.link-collapse[aria-expanded="false"] .link-collapse__default {
  display: inline-block;
}

.link-collapse[aria-expanded="false"] .link-collapse__active {
  display: none;
}

.link-collapse[aria-expanded="true"] .link-collapse__default {
  display: none;
}

.link-collapse[aria-expanded="true"] .link-collapse__active {
  display: inline-block;
}

/* Link Light */
.link-light {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.link-light:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

/* Link Muted */
.link-muted {
  color: #8c98a4;
  border-bottom: 1px dashed #97a4af;
}

.link-muted:hover {
  border-color: #0052ea;
}

.link-muted__toggle-default {
  display: inline-block;
}

.link-muted__toggle-toggled {
  display: none;
}

.link-muted.toggled .link-muted__toggle-default {
  display: none;
}

.link-muted.toggled .link-muted__toggle-toggled {
  display: inline-block;
}

/* Link White */
.link-white {
  color: #fff;
  border-bottom: 1px dashed #fff;
}

.link-white:hover {
  color: #fff;
}

/*------------------------------------
  Header Default
------------------------------------*/
.u-header {
  position: relative;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.u-header__section {
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
}

.u-header__section-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.u-header__shadow-on-show-hide {
  box-shadow: none;
}

.js-header-fix-moment .u-header__shadow-on-show-hide {
  box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
}

/* Navbar */
.u-header__navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0;
  padding-right: 0;
}

/* Navbar Space */
@media (max-width: 991.98px) {
  .u-header .u-header__navbar.u-header__navbar--top-space {
    padding-top: 0.25rem;
  }
}

/* Navbar Brand */
.u-header__navbar-brand,
.u-header__navbar-brand > img {
  padding-top: 0;
  padding-bottom: 0;
  width: 9.375rem;
}

.u-header__navbar-brand-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.u-header__navbar-brand-vertical {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.u-header__navbar-brand-vertical .u-header__navbar-brand-text {
  display: block;
  margin-left: 0;
}

.u-header__navbar-brand-text {
  font-size: 2.25rem;
  font-weight: 700;
  margin-left: .5rem;
}

.u-header__navbar-brand-text, .u-header__navbar-brand-text:focus, .u-header__navbar-brand-text:hover {
  color: #377dff;
}

.u-header__navbar-brand-text-white .u-header__navbar-brand-text, .u-header__navbar-brand-text-white .u-header__navbar-brand-text:focus, .u-header__navbar-brand-text-white .u-header__navbar-brand-text:hover {
  color: #fff;
}

/* Navbar Collapse */
.u-header__navbar-collapse {
  padding-top: 0;
  padding-bottom: 0;
}

/* Navbar Link */
.u-header__navbar-link {
  color: #77838f;
  font-size: 0.875rem;
  font-weight: 300;
  padding-left: .5rem;
  padding-right: .5rem;
}

/* Nav Item */
.u-header .u-header__nav-item:first-child .u-header__nav-link {
  padding-left: 0;
}

.u-header__nav-item:hover .u-header__nav-link, .u-header__nav-item:focus .u-header__nav-link {
  color: #377dff;
}

/* Nav Link */
.u-header .active > .u-header__nav-link {
  color: #377dff;
}

.u-header__nav-link {
  color: #77838f;
}

.u-header__nav-link-toggle {
  position: relative;
}

.u-header__nav-link-toggle::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 65%;
  font-weight: 900;
  content: "\f107";
  margin-left: .5rem;
  transition: 0.3s ease;
}

/* Sub Menu */
.u-header__sub-menu {
  width: 100%;
  padding-left: 0;
  list-style: none;
}

.u-header__sub-menu-nav-group {
  padding-left: 0;
  list-style: none;
}

.u-header__sub-menu-nav-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 0.875rem;
  color: #77838f;
}

.u-header__sub-menu-nav-link-toggle {
  position: relative;
}

.u-header__sub-menu-nav-link-toggle::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 80%;
  font-weight: 900;
  content: "\f105";
  margin-left: auto;
  margin-right: .04rem;
  transition: 0.3s ease;
}

.u-header__sub-menu .active > .u-header__sub-menu-nav-link {
  color: #377dff;
}

.u-header__sub-menu-title {
  display: block;
  color: #1e2022;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Promo */
.u-header__promo {
  background-color: #f8fafd;
}

.u-header__promo-inner {
  padding: 2rem;
}

.u-header__promo-item {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.u-header__promo-item ~ .u-header__promo-item {
  border-top: 1px solid #e7eaf3;
}

.u-header__promo-link {
  display: block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.u-header__promo-link:hover .u-header__promo-title {
  color: #377dff;
}

.u-header__promo-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

.u-header__promo-card-deck {
  display: block;
}

.u-header__promo-card-deck:not(:last-child) .u-header__promo-item {
  border-bottom: 1px solid #e7eaf3;
}

.u-header__promo-card-deck .u-header__promo-item {
  border-top: none;
}

.u-header__promo-card-body {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}

.u-header__promo-icon {
  width: 100%;
  max-width: 2.75rem;
  margin-right: 1rem;
}

.u-header__promo-icon--sm {
  max-width: 1.75rem;
}

.u-header__promo-title {
  display: block;
  color: #1e2022;
  font-size: 1rem;
  font-weight: 500;
}

.u-header__promo-text {
  display: block;
  color: #77838f;
}

.u-header__promo-footer {
  background-color: #f8fafd;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.u-header__promo-footer-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.u-header__promo-footer-ver-divider {
  position: relative;
}

.u-header__promo-footer-ver-divider::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #bdc5d1;
  content: "";
}

/* Banner */
.u-header__banner {
  position: relative;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  border-bottom-left-radius: 0.3125rem;
}

.u-header__banner::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(30, 32, 34, 0.5);
  border-bottom-left-radius: 0.3125rem;
  content: "";
}

.u-header__banner-content {
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.u-header__banner-title {
  display: block;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.u-header__banner-text {
  display: block;
  color: #fff;
  margin-bottom: 0;
}

/* Product Banner */
.u-header__product-banner {
  background-color: #f8fafd;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  padding-right: 1.5rem;
}

.u-header__product-banner-content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.u-header__product-banner-title {
  display: block;
  color: #377dff;
  font-size: 1.5625rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.u-header__product-banner-text {
  color: #1e2022;
  margin-bottom: 0;
}

/* Hide Content */
.u-header.js-header-fix-moment .u-header__hide-content {
  display: none;
}

.u-header.u-header--moved-up.u-header--hide-topbar {
  -webkit-transform: translate3d(0, -33px, 0);
          transform: translate3d(0, -33px, 0);
}

/*------------------------------------
  Header Helpers
------------------------------------*/
.u-header--invisible {
  display: none;
}

.u-header--moved-up {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}

.u-header--faded {
  opacity: 0;
  visibility: hidden;
}

.u-header__section--hidden {
  position: relative;
}

.u-header[data-header-fix-effect] {
  transition: 0.3s ease;
}

.u-header.u-header--untransitioned {
  transition: none;
}

.u-header.js-header-fix-moment {
  position: fixed;
  top: 0;
  bottom: auto;
}

.u-header--fix-top {
  position: fixed;
}

.u-header.u-header--fix-top[data-effect-compensation] {
  transition: none;
}

/*------------------------------------
  Nav Alignments
------------------------------------*/
@media (min-width: 992px) {
  .u-header__navbar-body,
  .u-header__navbar-nav {
    margin-left: auto;
  }
  .u-header-left-aligned-nav .u-header__navbar-body,
  .u-header-left-aligned-nav .u-header__navbar-nav {
    margin-left: 0;
    margin-right: auto;
  }
  .u-header-left-aligned-nav .u-header__navbar-nav {
    width: 100%;
  }
  .u-header-left-aligned-nav .u-header__navbar-brand {
    margin-left: 0;
    margin-right: 3rem;
  }
  .u-header-left-aligned-nav .u-header__nav-last-item {
    margin-left: auto;
  }
  .u-header-center-aligned-nav__col {
    -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .u-header-center-aligned-nav__col-last-item {
    text-align: right;
  }
  .u-header-center-aligned-nav .u-header__navbar-body,
  .u-header-center-aligned-nav .u-header__navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1199.98px) {
  .u-header-center-aligned-nav__col:not(.u-header-center-aligned-nav__col-last-item) {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .u-header-center-aligned-nav__col-last-item {
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
}

@media (min-width: 768px) {
  .u-header-center-aligned-nav.u-header--abs-top-sm .u-header__navbar-body,
  .u-header-center-aligned-nav.u-header--abs-top-sm .u-header__navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

/*------------------------------------
  Header Default
------------------------------------*/
.u-header__navbar-nav-scroll {
  max-width: 100%;
  height: 4.25rem;
  overflow: hidden;
}

.u-header__navbar-nav-scroll .u-header__navbar-nav {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/*------------------------------------
  Fullscreen
------------------------------------*/
.u-fullscreen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.u-fullscreen--toggler {
  z-index: 1001;
}

.u-fullscreen__container, .u-fullscreen__overlay {
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.u-fullscreen__container {
  position: relative;
  z-index: 1000;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.u-fullscreen__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(150deg, rgba(45, 21, 130, 0.95) 0%, rgba(25, 160, 255, 0.95) 100%);
  background-repeat: repeat-x;
  transition-delay: 0.5s;
}

.u-fullscreen.u-fullscreen--showed {
  visibility: visible;
}

.u-fullscreen.u-fullscreen--showed .u-fullscreen__container,
.u-fullscreen.u-fullscreen--showed .u-fullscreen__overlay {
  opacity: 1;
  visibility: visible;
}

.u-fullscreen.u-fullscreen--showed .u-fullscreen__overlay {
  transition-delay: 0s;
}

.u-fullscreen.u-fullscreen--showed .u-fullscreen__container {
  transition-delay: 0.5s;
}

/*------------------------------------
  Header Fullscreen Style
------------------------------------*/
.u-fullscreen__nav {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.u-fullscreen__nav-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.u-fullscreen__nav-link {
  display: inline-block;
  color: #fff;
  font-size: 1.375rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

@media (min-width: 992px) {
  .u-fullscreen__nav-link {
    font-size: 1.75rem;
  }
}

.u-fullscreen__nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.u-fullscreen__submenu {
  position: relative;
  transition: 0.3s ease-in-out;
}

.u-fullscreen__submenu .u-fullscreen__nav-list {
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
}

.u-fullscreen__submenu-nav-link {
  display: inline-block;
  color: #fff;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.u-fullscreen__submenu-nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.u-fullscreen__submenu-list {
  list-style: none;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  margin-bottom: 0;
}

.u-fullscreen__submenu-list-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
}

.u-fullscreen__submenu-list-link:hover {
  color: #fff;
}

/*------------------------------------
  Header Navbar Background Colors
------------------------------------*/
.u-header--navbar-bg .u-header__navbar-brand-text {
  color: #fff;
}

.u-header--navbar-bg .u-header__nav-item:hover .u-header__nav-link {
  color: #fff;
}

.u-header--navbar-bg .active > .u-header__nav-link {
  color: #fff;
}

.u-header--navbar-bg .u-header__nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.u-header--navbar-bg .u-header__nav-link:hover {
  color: #fff;
}

.u-header--navbar-bg .u-header__navbar-link,
.u-header--navbar-bg .dropdown-nav-link,
.u-header--navbar-bg .btn-text-secondary {
  color: rgba(255, 255, 255, 0.6);
}

.u-header--navbar-bg .u-header__navbar-link:hover,
.u-header--navbar-bg .dropdown-nav-link:hover,
.u-header--navbar-bg .btn-text-secondary:hover {
  color: #fff;
}

.u-header--navbar-bg .btn-text-secondary[href]:hover {
  color: #fff;
}

.u-header--navbar-bg .u-hamburger__inner, .u-header--navbar-bg .u-hamburger__inner::before, .u-header--navbar-bg .u-hamburger__inner::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.u-header--navbar-bg .u-hamburger:hover .u-hamburger__inner, .u-header--navbar-bg .u-hamburger:hover .u-hamburger__inner::before, .u-header--navbar-bg .u-hamburger:hover .u-hamburger__inner::after {
  background-color: #fff;
}

/*------------------------------------
  Header Submenu Background Colors
------------------------------------*/
.u-header--sub-menu-dark-bg .u-header__sub-menu,
.u-header--sub-menu-dark-bg .u-header__promo {
  background-color: #1e2022;
}

.u-header--sub-menu-dark-bg .u-header__sub-menu-title,
.u-header--sub-menu-dark-bg .u-header__promo-title {
  color: rgba(255, 255, 255, 0.8);
}

.u-header--sub-menu-dark-bg .u-header__promo-footer {
  background-color: #1c1d1f;
}

.u-header--sub-menu-dark-bg .u-header__promo-footer-ver-divider::before {
  border-color: rgba(255, 255, 255, 0.1);
}

.u-header--sub-menu-dark-bg .u-header__promo-link::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.u-header--sub-menu-dark-bg .u-header__promo-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.u-header--sub-menu-dark-bg .u-header__sub-menu-nav-link {
  color: #8c98a4;
}

.u-header--sub-menu-dark-bg .u-header__sub-menu-nav-link:hover {
  color: #377dff;
}

.u-header--sub-menu-dark-bg .u-header__product-banner {
  background-color: #1c1d1f;
}

.u-header--sub-menu-dark-bg .u-header__product-banner-text {
  color: #8c98a4;
}

.u-header--sub-menu-dark-bg .dropdown-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.u-header--sub-menu-dark-bg .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 576px) {
  .u-header--sub-menu-dark-bg-sm .u-header__sub-menu,
  .u-header--sub-menu-dark-bg-sm .u-header__promo {
    background-color: #1e2022;
  }
  .u-header--sub-menu-dark-bg-sm .u-header__sub-menu-title,
  .u-header--sub-menu-dark-bg-sm .u-header__promo-title {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-sm .u-header__promo-footer {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-sm .u-header__promo-footer-ver-divider::before {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-sm .u-header__promo-link::after {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-sm .u-header__promo-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-sm .u-header__sub-menu-nav-link {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-sm .u-header__sub-menu-nav-link:hover {
    color: #377dff;
  }
  .u-header--sub-menu-dark-bg-sm .u-header__product-banner {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-sm .u-header__product-banner-text {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-sm .dropdown-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-sm .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 768px) {
  .u-header--sub-menu-dark-bg-md .u-header__sub-menu,
  .u-header--sub-menu-dark-bg-md .u-header__promo {
    background-color: #1e2022;
  }
  .u-header--sub-menu-dark-bg-md .u-header__sub-menu-title,
  .u-header--sub-menu-dark-bg-md .u-header__promo-title {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-md .u-header__promo-footer {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-md .u-header__promo-footer-ver-divider::before {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-md .u-header__promo-link::after {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-md .u-header__promo-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-md .u-header__sub-menu-nav-link {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-md .u-header__sub-menu-nav-link:hover {
    color: #377dff;
  }
  .u-header--sub-menu-dark-bg-md .u-header__product-banner {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-md .u-header__product-banner-text {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-md .dropdown-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-md .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 992px) {
  .u-header--sub-menu-dark-bg-lg .u-header__sub-menu,
  .u-header--sub-menu-dark-bg-lg .u-header__promo {
    background-color: #1e2022;
  }
  .u-header--sub-menu-dark-bg-lg .u-header__sub-menu-title,
  .u-header--sub-menu-dark-bg-lg .u-header__promo-title {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-lg .u-header__promo-footer {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-lg .u-header__promo-footer-ver-divider::before {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-lg .u-header__promo-link::after {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-lg .u-header__promo-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-lg .u-header__sub-menu-nav-link {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-lg .u-header__sub-menu-nav-link:hover {
    color: #377dff;
  }
  .u-header--sub-menu-dark-bg-lg .u-header__product-banner {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-lg .u-header__product-banner-text {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-lg .dropdown-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-lg .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 1200px) {
  .u-header--sub-menu-dark-bg-xl .u-header__sub-menu,
  .u-header--sub-menu-dark-bg-xl .u-header__promo {
    background-color: #1e2022;
  }
  .u-header--sub-menu-dark-bg-xl .u-header__sub-menu-title,
  .u-header--sub-menu-dark-bg-xl .u-header__promo-title {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-xl .u-header__promo-footer {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-xl .u-header__promo-footer-ver-divider::before {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-xl .u-header__promo-link::after {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-xl .u-header__promo-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  .u-header--sub-menu-dark-bg-xl .u-header__sub-menu-nav-link {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-xl .u-header__sub-menu-nav-link:hover {
    color: #377dff;
  }
  .u-header--sub-menu-dark-bg-xl .u-header__product-banner {
    background-color: #1c1d1f;
  }
  .u-header--sub-menu-dark-bg-xl .u-header__product-banner-text {
    color: #8c98a4;
  }
  .u-header--sub-menu-dark-bg-xl .dropdown-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .u-header--sub-menu-dark-bg-xl .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/*------------------------------------
  Transparent Header
------------------------------------*/
.u-header--bg-transparent:not(.js-header-fix-moment) .u-search-push-top[style*="display: block"] + .u-header__section {
  background-color: #fff;
}

.u-header--bg-transparent:not(.js-header-fix-moment) .u-header__section {
  background-color: transparent;
  box-shadow: none;
}

.u-header--bg-transparent .u-header__navbar-brand-collapsed,
.u-header--bg-transparent .u-header__navbar-brand-collapsed .u-header__navbar-brand-text,
.u-header--bg-transparent .u-header__navbar-brand-on-scroll,
.u-header--bg-transparent .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
  display: none;
}

.u-header--bg-transparent.js-header-fix-moment .u-header__navbar-brand-default,
.u-header--bg-transparent.js-header-fix-moment .u-header__navbar-brand-default .u-header__navbar-brand-text {
  display: none;
}

.u-header--bg-transparent.js-header-fix-moment .u-header__navbar-brand-on-scroll {
  display: -ms-flexbox;
  display: flex;
}

.u-header--bg-transparent.js-header-fix-moment .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
  display: inline-block;
}

@media (min-width: 576px) and (min-width: 576px) {
  .u-header--bg-transparent-sm:not(.js-header-fix-moment) .u-search-push-top[style*="display: block"] + .u-header__section {
    background-color: #fff;
  }
  .u-header--bg-transparent-sm:not(.js-header-fix-moment) .u-header__section {
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 576px) {
  .u-header--bg-transparent-sm .u-header__navbar-brand-collapsed,
  .u-header--bg-transparent-sm .u-header__navbar-brand-collapsed .u-header__navbar-brand-text,
  .u-header--bg-transparent-sm .u-header__navbar-brand-on-scroll,
  .u-header--bg-transparent-sm .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-sm.js-header-fix-moment .u-header__navbar-brand-default,
  .u-header--bg-transparent-sm.js-header-fix-moment .u-header__navbar-brand-default .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-sm.js-header-fix-moment .u-header__navbar-brand-on-scroll {
    display: -ms-flexbox;
    display: flex;
  }
  .u-header--bg-transparent-sm.js-header-fix-moment .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: inline-block;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .u-header--bg-transparent-md:not(.js-header-fix-moment) .u-search-push-top[style*="display: block"] + .u-header__section {
    background-color: #fff;
  }
  .u-header--bg-transparent-md:not(.js-header-fix-moment) .u-header__section {
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 768px) {
  .u-header--bg-transparent-md .u-header__navbar-brand-collapsed,
  .u-header--bg-transparent-md .u-header__navbar-brand-collapsed .u-header__navbar-brand-text,
  .u-header--bg-transparent-md .u-header__navbar-brand-on-scroll,
  .u-header--bg-transparent-md .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-md.js-header-fix-moment .u-header__navbar-brand-default,
  .u-header--bg-transparent-md.js-header-fix-moment .u-header__navbar-brand-default .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-md.js-header-fix-moment .u-header__navbar-brand-on-scroll {
    display: -ms-flexbox;
    display: flex;
  }
  .u-header--bg-transparent-md.js-header-fix-moment .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: inline-block;
  }
}

@media (min-width: 992px) and (min-width: 992px) {
  .u-header--bg-transparent-lg:not(.js-header-fix-moment) .u-search-push-top[style*="display: block"] + .u-header__section {
    background-color: #fff;
  }
  .u-header--bg-transparent-lg:not(.js-header-fix-moment) .u-header__section {
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 992px) {
  .u-header--bg-transparent-lg .u-header__navbar-brand-collapsed,
  .u-header--bg-transparent-lg .u-header__navbar-brand-collapsed .u-header__navbar-brand-text,
  .u-header--bg-transparent-lg .u-header__navbar-brand-on-scroll,
  .u-header--bg-transparent-lg .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-lg.js-header-fix-moment .u-header__navbar-brand-default,
  .u-header--bg-transparent-lg.js-header-fix-moment .u-header__navbar-brand-default .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-lg.js-header-fix-moment .u-header__navbar-brand-on-scroll {
    display: -ms-flexbox;
    display: flex;
  }
  .u-header--bg-transparent-lg.js-header-fix-moment .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: inline-block;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .u-header--bg-transparent-xl:not(.js-header-fix-moment) .u-search-push-top[style*="display: block"] + .u-header__section {
    background-color: #fff;
  }
  .u-header--bg-transparent-xl:not(.js-header-fix-moment) .u-header__section {
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 1200px) {
  .u-header--bg-transparent-xl .u-header__navbar-brand-collapsed,
  .u-header--bg-transparent-xl .u-header__navbar-brand-collapsed .u-header__navbar-brand-text,
  .u-header--bg-transparent-xl .u-header__navbar-brand-on-scroll,
  .u-header--bg-transparent-xl .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-xl.js-header-fix-moment .u-header__navbar-brand-default,
  .u-header--bg-transparent-xl.js-header-fix-moment .u-header__navbar-brand-default .u-header__navbar-brand-text {
    display: none;
  }
  .u-header--bg-transparent-xl.js-header-fix-moment .u-header__navbar-brand-on-scroll {
    display: -ms-flexbox;
    display: flex;
  }
  .u-header--bg-transparent-xl.js-header-fix-moment .u-header__navbar-brand-on-scroll .u-header__navbar-brand-text {
    display: inline-block;
  }
}

@media (max-width: 575.98px) {
  .u-header--bg-transparent-sm .u-header__navbar-brand-default,
  .u-header--bg-transparent-sm .u-header__navbar-brand-on-scroll {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .u-header--bg-transparent-md .u-header__navbar-brand-default,
  .u-header--bg-transparent-md .u-header__navbar-brand-on-scroll {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .u-header--bg-transparent-lg .u-header__navbar-brand-default,
  .u-header--bg-transparent-lg .u-header__navbar-brand-on-scroll {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .u-header--bg-transparent-xl .u-header__navbar-brand-default,
  .u-header--bg-transparent-xl .u-header__navbar-brand-on-scroll {
    display: none;
  }
}

.u-header--bg-transparent .u-header__navbar-brand-default,
.u-header--bg-transparent .u-header__navbar-brand-on-scroll {
  display: none;
}

.u-header--bg-transparent .u-header__navbar-brand-default {
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .u-header--bg-transparent .u-header__navbar-nav {
    background-color: #fff;
  }
  .u-header--bg-transparent .u-header__navbar-nav {
    padding: 0.875rem 1.5rem;
    padding-top: 1rem;
  }
}

/*------------------------------------
  Header On Scroll
------------------------------------*/
.u-header--white-bg-on-scroll.u-scrolled .u-header__section {
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
}

/*------------------------------------
  Header White Nav Links
------------------------------------*/
.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-item:hover .u-header__nav-link {
  color: white;
}

.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link:hover {
  color: white;
}

.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link,
.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link,
.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary {
  color: rgba(255, 255, 255, 0.6);
}

.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover,
.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover,
.u-header--white-nav-links:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
  color: white;
}

@media (min-width: 576px) {
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-item:hover .u-header__nav-link {
    color: white;
  }
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link:hover {
    color: white;
  }
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link,
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link,
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary {
    color: rgba(255, 255, 255, 0.6);
  }
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover,
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover,
  .u-header--white-nav-links-sm:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
    color: white;
  }
}

@media (min-width: 768px) {
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-item:hover .u-header__nav-link {
    color: white;
  }
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link:hover {
    color: white;
  }
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link,
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link,
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary {
    color: rgba(255, 255, 255, 0.6);
  }
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover,
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover,
  .u-header--white-nav-links-md:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
    color: white;
  }
}

@media (min-width: 992px) {
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-item:hover .u-header__nav-link {
    color: white;
  }
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link:hover {
    color: white;
  }
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link,
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link,
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary {
    color: rgba(255, 255, 255, 0.6);
  }
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover,
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover,
  .u-header--white-nav-links-lg:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
    color: white;
  }
}

@media (min-width: 1200px) {
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-item:hover .u-header__nav-link {
    color: white;
  }
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__nav-link:hover {
    color: white;
  }
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link,
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link,
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary {
    color: rgba(255, 255, 255, 0.6);
  }
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .u-header__navbar-link:hover,
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .dropdown-nav-link:hover,
  .u-header--white-nav-links-xl:not(.bg-white):not(.js-header-fix-moment) .btn-text-secondary:hover {
    color: white;
  }
}

/*------------------------------------
  Navbar Expand
------------------------------------*/
.navbar-expand {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.navbar-expand.u-header__navbar--no-space {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-expand .u-header__navbar-nav {
  -ms-flex-align: center;
      align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-expand .u-header__navbar-nav .u-header__nav-last-item {
  text-align: right;
  padding-left: 1rem;
  padding-right: 0;
}

.navbar-expand .u-header__navbar-nav .u-header__nav-link {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 0.875rem;
  padding-left: 0.875rem;
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu {
  border-top: 0.1875rem solid #377dff;
  border-bottom-right-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
  box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu-nav-link {
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu-nav-group .u-header__sub-menu-nav-link {
  padding-left: 0;
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu.hs-sub-menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu {
  padding: 0;
}

.navbar-expand .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu .u-header__sub-menu {
  margin-top: -1.1875rem;
}

.navbar-expand .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
  right: 20%;
}

.navbar-expand .u-header__mega-menu-wrapper {
  padding: 2.5rem;
  margin-left: 0;
  margin-right: 0;
}

.navbar-expand .u-header__promo {
  border-bottom-right-radius: 0.3125rem;
}

.navbar-expand .u-header__promo-card {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 0%;
      flex: 1 0 0%;
  -ms-flex-direction: column;
      flex-direction: column;
}

.navbar-expand .u-header__promo-card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

.navbar-expand .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link {
  position: relative;
}

.navbar-expand .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link::after {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: -1.5rem;
  border-right: 1px solid #e7eaf3;
  height: 100%;
  content: "";
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navbar-expand-sm.u-header__navbar--no-space {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-sm .u-header__navbar-nav {
    -ms-flex-align: center;
        align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu {
    border-top: 0.1875rem solid #377dff;
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu-nav-group .u-header__sub-menu-nav-link {
    padding-left: 0;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu {
    padding: 0;
  }
  .navbar-expand-sm .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu .u-header__sub-menu {
    margin-top: -1.1875rem;
  }
  .navbar-expand-sm .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
  }
  .navbar-expand-sm .u-header__mega-menu-wrapper {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-expand-sm .u-header__promo {
    border-bottom-right-radius: 0.3125rem;
  }
  .navbar-expand-sm .u-header__promo-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .navbar-expand-sm .u-header__promo-card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
  .navbar-expand-sm .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link {
    position: relative;
  }
  .navbar-expand-sm .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.5rem;
    border-right: 1px solid #e7eaf3;
    height: 100%;
    content: "";
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navbar-expand-md.u-header__navbar--no-space {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-md .u-header__navbar-nav {
    -ms-flex-align: center;
        align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu {
    border-top: 0.1875rem solid #377dff;
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu-nav-group .u-header__sub-menu-nav-link {
    padding-left: 0;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu {
    padding: 0;
  }
  .navbar-expand-md .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu .u-header__sub-menu {
    margin-top: -1.1875rem;
  }
  .navbar-expand-md .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
  }
  .navbar-expand-md .u-header__mega-menu-wrapper {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-expand-md .u-header__promo {
    border-bottom-right-radius: 0.3125rem;
  }
  .navbar-expand-md .u-header__promo-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .navbar-expand-md .u-header__promo-card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
  .navbar-expand-md .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link {
    position: relative;
  }
  .navbar-expand-md .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.5rem;
    border-right: 1px solid #e7eaf3;
    height: 100%;
    content: "";
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navbar-expand-lg.u-header__navbar--no-space {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-lg .u-header__navbar-nav {
    -ms-flex-align: center;
        align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu {
    border-top: 0.1875rem solid #377dff;
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu-nav-group .u-header__sub-menu-nav-link {
    padding-left: 0;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu {
    padding: 0;
  }
  .navbar-expand-lg .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu .u-header__sub-menu {
    margin-top: -1.1875rem;
  }
  .navbar-expand-lg .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
  }
  .navbar-expand-lg .u-header__mega-menu-wrapper {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-expand-lg .u-header__promo {
    border-bottom-right-radius: 0.3125rem;
  }
  .navbar-expand-lg .u-header__promo-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .navbar-expand-lg .u-header__promo-card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
  .navbar-expand-lg .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link {
    position: relative;
  }
  .navbar-expand-lg .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.5rem;
    border-right: 1px solid #e7eaf3;
    height: 100%;
    content: "";
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navbar-expand-xl.u-header__navbar--no-space {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-xl .u-header__navbar-nav {
    -ms-flex-align: center;
        align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__nav-last-item {
    text-align: right;
    padding-left: 1rem;
    padding-right: 0;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 0.875rem;
    padding-left: 0.875rem;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu {
    border-top: 0.1875rem solid #377dff;
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    box-shadow: 0 8px 20px rgba(55, 125, 255, 0.075);
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu-nav-link {
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu-nav-group .u-header__sub-menu-nav-link {
    padding-left: 0;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu.hs-sub-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu {
    padding: 0;
  }
  .navbar-expand-xl .u-header__navbar-nav .u-header__sub-menu .hs-has-sub-menu .u-header__sub-menu {
    margin-top: -1.1875rem;
  }
  .navbar-expand-xl .u-header__mega-menu-position-right-fix.hs-mega-menu.hs-position-right {
    right: 20%;
  }
  .navbar-expand-xl .u-header__mega-menu-wrapper {
    padding: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-expand-xl .u-header__promo {
    border-bottom-right-radius: 0.3125rem;
  }
  .navbar-expand-xl .u-header__promo-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .navbar-expand-xl .u-header__promo-card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
  }
  .navbar-expand-xl .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link {
    position: relative;
  }
  .navbar-expand-xl .u-header__promo-card-deck .u-header__promo-item:not(:last-child) .u-header__promo-link::after {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: -1.5rem;
    border-right: 1px solid #e7eaf3;
    height: 100%;
    content: "";
  }
}

@media (max-width: 575.98px) {
  .navbar-expand-sm .u-header__nav-last-item {
    display: none;
  }
  .navbar-expand-sm .u-header__nav-link,
  .navbar-expand-sm .u-header__sub-menu-nav-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .navbar-expand-sm .u-header__nav-link-toggle::after,
  .navbar-expand-sm .u-header__sub-menu-nav-link-toggle::after {
    margin-left: auto;
  }
  .navbar-expand-sm .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar-expand-sm .hs-mega-menu-opened .u-header__nav-link-toggle::after,
  .navbar-expand-sm .hs-sub-menu-opened .u-header__nav-link-toggle::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .navbar-expand-sm .hs-sub-menu-opened > .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .navbar-expand-sm .u-header__mega-menu-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-expand-sm .u-header__sub-menu {
    min-width: 100% !important;
  }
  .navbar-expand-sm .u-header__sub-menu--spacer {
    padding-left: 1.5rem;
  }
  .navbar-expand-sm .u-header__sub-menu:not(.u-header__promo) {
    border-left: 0.1875rem solid #377dff;
  }
  .navbar-expand-sm .u-header__sub-menu .u-header__sub-menu {
    padding-left: 1.5rem;
  }
  .navbar-expand-sm .u-header__sub-menu-title {
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  .navbar-expand-sm .u-header__sub-menu-nav-group {
    padding-top: .5rem;
    padding-left: 1.5rem;
  }
  .navbar-expand-sm .u-header__sub-menu .hs-has-sub-menu {
    padding-left: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-sm .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
    -webkit-animation: none;
            animation: none;
  }
  .navbar-expand-sm .u-header-center-aligned-nav__col-last-item {
    display: none;
  }
  .navbar-expand-sm .u-header__promo-card-deck:last-child .u-header__promo-item:not(:last-child) {
    border-bottom: 1px solid #e7eaf3;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md .u-header__nav-last-item {
    display: none;
  }
  .navbar-expand-md .u-header__nav-link,
  .navbar-expand-md .u-header__sub-menu-nav-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .navbar-expand-md .u-header__nav-link-toggle::after,
  .navbar-expand-md .u-header__sub-menu-nav-link-toggle::after {
    margin-left: auto;
  }
  .navbar-expand-md .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar-expand-md .hs-mega-menu-opened .u-header__nav-link-toggle::after,
  .navbar-expand-md .hs-sub-menu-opened .u-header__nav-link-toggle::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .navbar-expand-md .hs-sub-menu-opened > .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .navbar-expand-md .u-header__mega-menu-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-expand-md .u-header__sub-menu {
    min-width: 100% !important;
  }
  .navbar-expand-md .u-header__sub-menu--spacer {
    padding-left: 1.5rem;
  }
  .navbar-expand-md .u-header__sub-menu:not(.u-header__promo) {
    border-left: 0.1875rem solid #377dff;
  }
  .navbar-expand-md .u-header__sub-menu .u-header__sub-menu {
    padding-left: 1.5rem;
  }
  .navbar-expand-md .u-header__sub-menu-title {
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  .navbar-expand-md .u-header__sub-menu-nav-group {
    padding-top: .5rem;
    padding-left: 1.5rem;
  }
  .navbar-expand-md .u-header__sub-menu .hs-has-sub-menu {
    padding-left: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-md .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
    -webkit-animation: none;
            animation: none;
  }
  .navbar-expand-md .u-header-center-aligned-nav__col-last-item {
    display: none;
  }
  .navbar-expand-md .u-header__promo-card-deck:last-child .u-header__promo-item:not(:last-child) {
    border-bottom: 1px solid #e7eaf3;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .u-header__nav-last-item {
    display: none;
  }
  .navbar-expand-lg .u-header__nav-link,
  .navbar-expand-lg .u-header__sub-menu-nav-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .navbar-expand-lg .u-header__nav-link-toggle::after,
  .navbar-expand-lg .u-header__sub-menu-nav-link-toggle::after {
    margin-left: auto;
  }
  .navbar-expand-lg .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar-expand-lg .hs-mega-menu-opened .u-header__nav-link-toggle::after,
  .navbar-expand-lg .hs-sub-menu-opened .u-header__nav-link-toggle::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .navbar-expand-lg .hs-sub-menu-opened > .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .navbar-expand-lg .u-header__mega-menu-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-expand-lg .u-header__sub-menu {
    min-width: 100% !important;
  }
  .navbar-expand-lg .u-header__sub-menu--spacer {
    padding-left: 1.5rem;
  }
  .navbar-expand-lg .u-header__sub-menu:not(.u-header__promo) {
    border-left: 0.1875rem solid #377dff;
  }
  .navbar-expand-lg .u-header__sub-menu .u-header__sub-menu {
    padding-left: 1.5rem;
  }
  .navbar-expand-lg .u-header__sub-menu-title {
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  .navbar-expand-lg .u-header__sub-menu-nav-group {
    padding-top: .5rem;
    padding-left: 1.5rem;
  }
  .navbar-expand-lg .u-header__sub-menu .hs-has-sub-menu {
    padding-left: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-lg .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
    -webkit-animation: none;
            animation: none;
  }
  .navbar-expand-lg .u-header-center-aligned-nav__col-last-item {
    display: none;
  }
  .navbar-expand-lg .u-header__promo-card-deck:last-child .u-header__promo-item:not(:last-child) {
    border-bottom: 1px solid #e7eaf3;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl .u-header__nav-last-item {
    display: none;
  }
  .navbar-expand-xl .u-header__nav-link,
  .navbar-expand-xl .u-header__sub-menu-nav-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .navbar-expand-xl .u-header__nav-link-toggle::after,
  .navbar-expand-xl .u-header__sub-menu-nav-link-toggle::after {
    margin-left: auto;
  }
  .navbar-expand-xl .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .navbar-expand-xl .hs-mega-menu-opened .u-header__nav-link-toggle::after,
  .navbar-expand-xl .hs-sub-menu-opened .u-header__nav-link-toggle::after {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .navbar-expand-xl .hs-sub-menu-opened > .u-header__sub-menu-nav-link-toggle::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .navbar-expand-xl .u-header__mega-menu-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .navbar-expand-xl .u-header__sub-menu {
    min-width: 100% !important;
  }
  .navbar-expand-xl .u-header__sub-menu--spacer {
    padding-left: 1.5rem;
  }
  .navbar-expand-xl .u-header__sub-menu:not(.u-header__promo) {
    border-left: 0.1875rem solid #377dff;
  }
  .navbar-expand-xl .u-header__sub-menu .u-header__sub-menu {
    padding-left: 1.5rem;
  }
  .navbar-expand-xl .u-header__sub-menu-title {
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  .navbar-expand-xl .u-header__sub-menu-nav-group {
    padding-top: .5rem;
    padding-left: 1.5rem;
  }
  .navbar-expand-xl .u-header__sub-menu .hs-has-sub-menu {
    padding-left: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-expand-xl .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
    -webkit-animation: none;
            animation: none;
  }
  .navbar-expand-xl .u-header-center-aligned-nav__col-last-item {
    display: none;
  }
  .navbar-expand-xl .u-header__promo-card-deck:last-child .u-header__promo-item:not(:last-child) {
    border-bottom: 1px solid #e7eaf3;
  }
}

.navbar-expand .u-header__nav-last-item {
  display: none;
}

.navbar-expand .u-header__nav-link,
.navbar-expand .u-header__sub-menu-nav-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.navbar-expand .u-header__nav-link-toggle::after,
.navbar-expand .u-header__sub-menu-nav-link-toggle::after {
  margin-left: auto;
}

.navbar-expand .u-header__sub-menu-nav-link-toggle::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.navbar-expand .hs-mega-menu-opened .u-header__nav-link-toggle::after,
.navbar-expand .hs-sub-menu-opened .u-header__nav-link-toggle::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.navbar-expand .hs-sub-menu-opened > .u-header__sub-menu-nav-link-toggle::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.navbar-expand .u-header__mega-menu-wrapper {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-expand .u-header__sub-menu {
  min-width: 100% !important;
}

.navbar-expand .u-header__sub-menu--spacer {
  padding-left: 1.5rem;
}

.navbar-expand .u-header__sub-menu:not(.u-header__promo) {
  border-left: 0.1875rem solid #377dff;
}

.navbar-expand .u-header__sub-menu .u-header__sub-menu {
  padding-left: 1.5rem;
}

.navbar-expand .u-header__sub-menu-title {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.navbar-expand .u-header__sub-menu-nav-group {
  padding-top: .5rem;
  padding-left: 1.5rem;
}

.navbar-expand .u-header__sub-menu .hs-has-sub-menu {
  padding-left: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-expand .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {
  -webkit-animation: none;
          animation: none;
}

.navbar-expand .u-header-center-aligned-nav__col-last-item {
  display: none;
}

.navbar-expand .u-header__promo-card-deck:last-child .u-header__promo-item:not(:last-child) {
  border-bottom: 1px solid #e7eaf3;
}

@media (max-width: 767.98px) {
  .navbar-expand-sm .u-header__nav-last-item {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-xs .u-header__banner,
  .navbar-expand-xs .u-header__product-banner,
  .navbar-expand-sm .u-header__banner,
  .navbar-expand-sm .u-header__product-banner,
  .navbar-expand-md .u-header__banner,
  .navbar-expand-md .u-header__product-banner,
  .navbar-expand-lg .u-header__banner,
  .navbar-expand-lg .u-header__product-banner {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl .u-header__banner,
  .navbar-expand-xl .u-header__product-banner {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-expand-md .u-header__navbar-brand {
    padding-top: .5rem;
  }
  .u-header .u-header__mega-menu-position-right-fix--md.hs-mega-menu.hs-position-right {
    right: 20%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .navbar-expand-sm .u-header__navbar-brand {
    padding-top: .5rem;
  }
}

@media (min-width: 992px) {
  .navbar-expand .u-header__nav-last-item {
    display: inline-block;
  }
  [class*="navbar-expand"]:not(.navbar-expand-xl) {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg-collapse-block .navbar-collapse {
    display: block !important;
  }
}

/*------------------------------------
  Header Floating
------------------------------------*/
.u-header--floating {
  position: absolute;
  right: 0;
  left: 0;
  margin-top: 2rem;
}

.u-header--floating.js-header-fix-moment {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
  margin-top: 0;
}

.u-header--floating.js-header-fix-moment .u-header--floating__inner {
  box-shadow: none;
}

.u-header--floating .u-header--floating__scrollbar {
  max-height: 50vh;
}

.u-header--floating .u-header--floating__scrollbar.mCS_destroyed {
  position: static !important;
}

.u-header--floating .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  margin: 0 24px;
}

.u-header--floating__inner {
  border-radius: 0.3125rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .u-header--floating-sm {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 2rem;
  }
  .u-header--floating-sm.js-header-fix-moment {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    margin-top: 0;
  }
  .u-header--floating-sm.js-header-fix-moment .u-header--floating__inner {
    box-shadow: none;
  }
  .u-header--floating-sm .u-header--floating__scrollbar {
    max-height: 50vh;
  }
  .u-header--floating-sm .u-header--floating__scrollbar.mCS_destroyed {
    position: static !important;
  }
  .u-header--floating-sm .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
  }
  .u-header--floating__inner {
    border-radius: 0.3125rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  .u-header--floating-md {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 2rem;
  }
  .u-header--floating-md.js-header-fix-moment {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    margin-top: 0;
  }
  .u-header--floating-md.js-header-fix-moment .u-header--floating__inner {
    box-shadow: none;
  }
  .u-header--floating-md .u-header--floating__scrollbar {
    max-height: 50vh;
  }
  .u-header--floating-md .u-header--floating__scrollbar.mCS_destroyed {
    position: static !important;
  }
  .u-header--floating-md .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
  }
  .u-header--floating__inner {
    border-radius: 0.3125rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 992px) {
  .u-header--floating-lg {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 2rem;
  }
  .u-header--floating-lg.js-header-fix-moment {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    margin-top: 0;
  }
  .u-header--floating-lg.js-header-fix-moment .u-header--floating__inner {
    box-shadow: none;
  }
  .u-header--floating-lg .u-header--floating__scrollbar {
    max-height: 50vh;
  }
  .u-header--floating-lg .u-header--floating__scrollbar.mCS_destroyed {
    position: static !important;
  }
  .u-header--floating-lg .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
  }
  .u-header--floating__inner {
    border-radius: 0.3125rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1200px) {
  .u-header--floating-xl {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 2rem;
  }
  .u-header--floating-xl.js-header-fix-moment {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    margin-top: 0;
  }
  .u-header--floating-xl.js-header-fix-moment .u-header--floating__inner {
    box-shadow: none;
  }
  .u-header--floating-xl .u-header--floating__scrollbar {
    max-height: 50vh;
  }
  .u-header--floating-xl .u-header--floating__scrollbar.mCS_destroyed {
    position: static !important;
  }
  .u-header--floating-xl .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    margin: 0 24px;
  }
  .u-header--floating__inner {
    border-radius: 0.3125rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .u-header--floating-sm .u-header__section {
    box-shadow: none;
  }
  .u-header--floating-sm .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .u-header--floating-md .u-header__section {
    box-shadow: none;
  }
  .u-header--floating-md .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .u-header--floating-lg .u-header__section {
    box-shadow: none;
  }
  .u-header--floating-lg .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .u-header--floating-xl .u-header__section {
    box-shadow: none;
  }
  .u-header--floating-xl .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    display: none;
  }
}

.u-header--floating .u-header__section {
  box-shadow: none;
}

.u-header--floating .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  display: none;
}

/*------------------------------------
  Absolute Positions
------------------------------------*/
.u-header--abs-top, .u-header--abs-bottom, .u-header--abs-top-2nd-screen {
  position: absolute;
}

.u-header--abs-top {
  top: 0;
  bottom: auto;
}

.u-header--abs-top-2nd-screen:not(.js-header-fix-moment) {
  top: 100%;
  bottom: auto;
}

.u-header--abs-top-2nd-screen[data-header-fix-effect] {
  transition: none;
}

.u-header--abs-bottom:not(.js-header-fix-moment) {
  top: auto;
  bottom: 0;
}

.u-header--abs-bottom:not(.js-header-fix-moment) .u-header__sub-menu {
  top: auto;
  bottom: 100%;
}

.u-header--abs-bottom:not(.js-header-fix-moment) .u-header__sub-menu .u-header__sub-menu {
  top: 0;
  bottom: auto;
}

.u-header--abs-bottom:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
}

.u-header--abs-bottom:not(.js-header-fix-moment) .slideInUp {
  -webkit-animation-name: absoluteSlideInUp;
          animation-name: absoluteSlideInUp;
}

@media (min-width: 576px) {
  .u-header--abs-top-sm, .u-header--abs-bottom-sm, .u-header--abs-top-2nd-screen-sm {
    position: absolute;
  }
  .u-header--abs-top-sm {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-sm:not(.js-header-fix-moment) {
    top: 100%;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-sm[data-header-fix-effect] {
    transition: none;
  }
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) {
    top: auto;
    bottom: 0;
  }
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) .slideInUp {
    -webkit-animation-name: absoluteSlideInUp;
            animation-name: absoluteSlideInUp;
  }
}

@media (min-width: 768px) {
  .u-header--abs-top-md, .u-header--abs-bottom-md, .u-header--abs-top-2nd-screen-md {
    position: absolute;
  }
  .u-header--abs-top-md {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-md:not(.js-header-fix-moment) {
    top: 100%;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-md[data-header-fix-effect] {
    transition: none;
  }
  .u-header--abs-bottom-md:not(.js-header-fix-moment) {
    top: auto;
    bottom: 0;
  }
  .u-header--abs-bottom-md:not(.js-header-fix-moment) .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--abs-bottom-md:not(.js-header-fix-moment) .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-bottom-md:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--abs-bottom-md:not(.js-header-fix-moment) .slideInUp {
    -webkit-animation-name: absoluteSlideInUp;
            animation-name: absoluteSlideInUp;
  }
}

@media (min-width: 992px) {
  .u-header--abs-top-lg, .u-header--abs-bottom-lg, .u-header--abs-top-2nd-screen-lg {
    position: absolute;
  }
  .u-header--abs-top-lg {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-lg:not(.js-header-fix-moment) {
    top: 100%;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-lg[data-header-fix-effect] {
    transition: none;
  }
  .u-header--abs-bottom-lg:not(.js-header-fix-moment) {
    top: auto;
    bottom: 0;
  }
  .u-header--abs-bottom-lg:not(.js-header-fix-moment) .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--abs-bottom-lg:not(.js-header-fix-moment) .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-bottom-lg:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--abs-bottom-lg:not(.js-header-fix-moment) .slideInUp {
    -webkit-animation-name: absoluteSlideInUp;
            animation-name: absoluteSlideInUp;
  }
}

@media (min-width: 1200px) {
  .u-header--abs-top-xl, .u-header--abs-bottom-xl, .u-header--abs-top-2nd-screen-xl {
    position: absolute;
  }
  .u-header--abs-top-xl {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-xl:not(.js-header-fix-moment) {
    top: 100%;
    bottom: auto;
  }
  .u-header--abs-top-2nd-screen-xl[data-header-fix-effect] {
    transition: none;
  }
  .u-header--abs-bottom-xl:not(.js-header-fix-moment) {
    top: auto;
    bottom: 0;
  }
  .u-header--abs-bottom-xl:not(.js-header-fix-moment) .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--abs-bottom-xl:not(.js-header-fix-moment) .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--abs-bottom-xl:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--abs-bottom-xl:not(.js-header-fix-moment) .slideInUp {
    -webkit-animation-name: absoluteSlideInUp;
            animation-name: absoluteSlideInUp;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .u-header--abs-bottom-md:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu {
    bottom: 52.8%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .u-header--abs-bottom:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu,
  .u-header--abs-bottom-sm:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu {
    bottom: 52.8%;
  }
}

.u-header--abs-top__inner,
.u-header--abs-bottom__inner,
.u-header--abs-top-2nd-screen__inner {
  max-height: 50vh;
}

.u-header--abs-top__inner.mCS_destroyed,
.u-header--abs-bottom__inner.mCS_destroyed,
.u-header--abs-top-2nd-screen__inner.mCS_destroyed {
  position: static !important;
}

[class*="u-header--abs"] .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  margin: 0 24px;
}

/* Disable box-shadow on mobile device */
.u-header--abs-top-2nd-screen:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu, .u-header--abs-bottom:not(.js-header-fix-moment) [class*="navbar-expand"] .u-header__navbar-nav .u-header__sub-menu {
  box-shadow: none;
}

@-webkit-keyframes absoluteSlideInUp {
  from {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
}

@keyframes absoluteSlideInUp {
  from {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
}

/*------------------------------------
  Header Sidebar
------------------------------------*/
.u-header-sidebar__footer-offset {
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 10.625rem;
}

.u-header-sidebar__content {
  padding: 1.5rem 3rem 3rem;
}

.u-header-sidebar__navbar-brand {
  display: block;
  width: 6.25rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.u-header-sidebar__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3rem;
}

.u-header-sidebar__footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.u-header-sidebar__footer-link:hover {
  color: #fff;
}

/*------------------------------------
  Sticky Positions
------------------------------------*/
.u-header--sticky-top, .u-header--sticky-bottom {
  position: fixed;
}

.u-header--sticky-top {
  bottom: auto;
  top: 0;
}

.u-header--sticky-bottom {
  top: auto;
  bottom: 0;
}

.u-header--sticky-bottom .u-header__sub-menu {
  top: auto;
  bottom: 100%;
}

.u-header--sticky-bottom .u-header__sub-menu .u-header__sub-menu {
  top: 0;
  bottom: auto;
}

.u-header--sticky-bottom .navbar-nav .u-header__sub-menu {
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
}

.u-header--sticky-bottom .slideInUp {
  -webkit-animation-name: stickySlideInUp;
          animation-name: stickySlideInUp;
}

@media (min-width: 576px) {
  .u-header--sticky-top-sm, .u-header--sticky-bottom-sm {
    position: fixed;
  }
  .u-header--sticky-top-sm {
    bottom: auto;
    top: 0;
  }
  .u-header--sticky-bottom-sm {
    top: auto;
    bottom: 0;
  }
  .u-header--sticky-bottom-sm .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--sticky-bottom-sm .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--sticky-bottom-sm .navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--sticky-bottom-sm .slideInUp {
    -webkit-animation-name: stickySlideInUp;
            animation-name: stickySlideInUp;
  }
}

@media (min-width: 768px) {
  .u-header--sticky-top-md, .u-header--sticky-bottom-md {
    position: fixed;
  }
  .u-header--sticky-top-md {
    bottom: auto;
    top: 0;
  }
  .u-header--sticky-bottom-md {
    top: auto;
    bottom: 0;
  }
  .u-header--sticky-bottom-md .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--sticky-bottom-md .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--sticky-bottom-md .navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--sticky-bottom-md .slideInUp {
    -webkit-animation-name: stickySlideInUp;
            animation-name: stickySlideInUp;
  }
}

@media (min-width: 992px) {
  .u-header--sticky-top-lg, .u-header--sticky-bottom-lg {
    position: fixed;
  }
  .u-header--sticky-top-lg {
    bottom: auto;
    top: 0;
  }
  .u-header--sticky-bottom-lg {
    top: auto;
    bottom: 0;
  }
  .u-header--sticky-bottom-lg .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--sticky-bottom-lg .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--sticky-bottom-lg .navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--sticky-bottom-lg .slideInUp {
    -webkit-animation-name: stickySlideInUp;
            animation-name: stickySlideInUp;
  }
}

@media (min-width: 1200px) {
  .u-header--sticky-top-xl, .u-header--sticky-bottom-xl {
    position: fixed;
  }
  .u-header--sticky-top-xl {
    bottom: auto;
    top: 0;
  }
  .u-header--sticky-bottom-xl {
    top: auto;
    bottom: 0;
  }
  .u-header--sticky-bottom-xl .u-header__sub-menu {
    top: auto;
    bottom: 100%;
  }
  .u-header--sticky-bottom-xl .u-header__sub-menu .u-header__sub-menu {
    top: 0;
    bottom: auto;
  }
  .u-header--sticky-bottom-xl .navbar-nav .u-header__sub-menu {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 -8px 20px rgba(151, 164, 175, 0.1);
  }
  .u-header--sticky-bottom-xl .slideInUp {
    -webkit-animation-name: stickySlideInUp;
            animation-name: stickySlideInUp;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .u-header--sticky-bottom-md:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu {
    bottom: 52.8%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .u-header--sticky-bottom:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu,
  .u-header--sticky-bottom-sm:not(.js-header-fix-moment) .navbar-expand-md .hs-mega-menu {
    bottom: 52.8%;
  }
}

.u-header--sticky-top__inner,
.u-header--sticky-bottom__inner {
  max-height: 50vh;
}

.u-header--sticky-top__inner.mCS_destroyed,
.u-header--sticky-bottom__inner.mCS_destroyed {
  position: static !important;
}

.u-header--sticky-top__inner .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.u-header--sticky-bottom__inner .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  margin: 0 24px;
}

/* Disable box-shadow on mobile device */
.u-header--sticky-bottom:not(.js-header-fix-moment) [class*="navbar-expand"] .navbar-nav .u-header__sub-menu {
  box-shadow: none;
}

@-webkit-keyframes stickySlideInUp {
  from {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
}

@keyframes stickySlideInUp {
  from {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
}

/*------------------------------------
  Header Center Aligned
------------------------------------*/
.u-header--center-aligned .u-hamburger {
  display: none;
}

.u-header--center-aligned .u-header--center-aligned__inner {
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  padding-top: .5rem;
}

.u-header--center-aligned .u-header__navbar-brand {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .u-header--center-aligned-sm .u-hamburger {
    display: none;
  }
  .u-header--center-aligned-sm .u-header--center-aligned__inner {
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
    padding-top: .5rem;
  }
  .u-header--center-aligned-sm .u-header__navbar-brand {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .u-header--center-aligned-md .u-hamburger {
    display: none;
  }
  .u-header--center-aligned-md .u-header--center-aligned__inner {
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
    padding-top: .5rem;
  }
  .u-header--center-aligned-md .u-header__navbar-brand {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .u-header--center-aligned-lg .u-hamburger {
    display: none;
  }
  .u-header--center-aligned-lg .u-header--center-aligned__inner {
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
    padding-top: .5rem;
  }
  .u-header--center-aligned-lg .u-header__navbar-brand {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .u-header--center-aligned-xl .u-hamburger {
    display: none;
  }
  .u-header--center-aligned-xl .u-header--center-aligned__inner {
    -ms-flex-pack: center;
        justify-content: center;
    text-align: center;
    padding-top: .5rem;
  }
  .u-header--center-aligned-xl .u-header__navbar-brand {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 575.98px) {
  .u-header--center-aligned-sm .u-header--center-aligned__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-top: 0.25rem;
  }
  .u-header--center-aligned-sm .u-header__navbar {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .u-header--center-aligned-md .u-header--center-aligned__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-top: 0.25rem;
  }
  .u-header--center-aligned-md .u-header__navbar {
    padding-top: 0;
  }
}

@media (max-width: 991.98px) {
  .u-header--center-aligned-lg .u-header--center-aligned__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-top: 0.25rem;
  }
  .u-header--center-aligned-lg .u-header__navbar {
    padding-top: 0;
  }
}

@media (max-width: 1199.98px) {
  .u-header--center-aligned-xl .u-header--center-aligned__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-top: 0.25rem;
  }
  .u-header--center-aligned-xl .u-header__navbar {
    padding-top: 0;
  }
}

.u-header--center-aligned .u-header--center-aligned__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-top: 0.25rem;
}

.u-header--center-aligned .u-header__navbar {
  padding-top: 0;
}

/*------------------------------------
  Header Collapse
------------------------------------*/
.u-header-collapse__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.u-header-collapse__nav-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.u-header-collapse__nav-link {
  color: #1e2022;
}

.u-header-collapse__nav-pointer {
  position: relative;
}

.u-header-collapse__nav-pointer::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 65%;
  font-weight: 900;
  content: "\f107";
  margin-left: auto;
  transition: 0.3s ease;
}

.u-header-collapse__nav-pointer.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.u-header-collapse__nav-link, .u-header-collapse__submenu-nav-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-top: .625rem;
  padding-bottom: .625rem;
}

.u-header-collapse__nav-link.active, .u-header-collapse__submenu-nav-link.active {
  color: #377dff;
}

.u-header-collapse__submenu {
  position: relative;
  transition: 0.3s ease-in-out;
}

.u-header-collapse__submenu .u-header-collapse__nav-list {
  border-left: 2px solid #377dff;
  padding-left: 1rem;
}

.u-header-collapse__submenu .u-header-collapse__nav-list--no-spacer {
  padding-left: 0;
}

.u-header-collapse__submenu-nav-link {
  color: #77838f;
}

.u-header-collapse__submenu-list {
  list-style: none;
  border-left: 2px solid #377dff;
  padding-left: 0;
  margin-bottom: 0;
}

.u-header-collapse__submenu-list-link {
  display: inline-block;
  color: #77838f;
}

/*------------------------------------
  Alert
------------------------------------*/
.alert-text {
  color: inherit;
}

/*------------------------------------
  Avatar
------------------------------------*/
.u-avatar {
  width: 3.125rem;
  height: 3.125rem;
}

.u-xs-avatar {
  width: 1.375rem;
  height: 1.375rem;
}

.u-sm-avatar {
  width: 2rem;
  height: 2rem;
}

.u-lg-avatar {
  width: 5rem;
  height: 5rem;
}

.u-xl-avatar {
  width: 10rem;
  height: 10rem;
}

/*------------------------------------
  Avatar Bordered
------------------------------------*/
.u-sm-avatar--bordered {
  border: 2px solid #fff;
}

.u-xl-avatar--bordered {
  border: 7px solid #fff;
}

/*------------------------------------
  Badges
------------------------------------*/
[class*="badge-"] {
  z-index: 3;
}

.badge:empty {
  display: inherit;
}

.badge.badge-pos {
  position: absolute;
}

.btn .badge-pos {
  top: auto;
}

[class*="badge-outline"] {
  border-style: solid;
  border-width: 0.125rem;
  box-shadow: 0 3px 6px 0 rgba(140, 152, 164, 0.25);
}

/*------------------------------------
  Badge Sizes
------------------------------------*/
/* Extra Small */
.badge-xs {
  width: 0.875rem;
  height: 0.875rem;
  line-height: 1.4;
  font-size: 0.5rem;
}

/* Small */
.badge-sm {
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.4;
  font-size: 0.625rem;
}

.badge-sm[class*="badge-outline"] {
  line-height: 1;
}

/* Medium */
.badge-md {
  width: 1.375rem;
  height: 1.375rem;
  line-height: 1.7;
  font-size: 0.625rem;
}

.badge-md[class*="badge-outline"] {
  line-height: 1.3;
}

/* Bigger */
.badge-bigger {
  padding: 0.625rem;
}

/*------------------------------------
  Badge Styles
------------------------------------*/
/* primary badge */
.badge-outline-primary {
  color: #fff;
  background: #377dff;
  border-color: #fff;
}

/* secondary badge */
.badge-outline-secondary {
  color: #fff;
  background: #77838f;
  border-color: #fff;
}

/* success badge */
.badge-outline-success {
  color: #fff;
  background: #00c9a7;
  border-color: #fff;
}

/* info badge */
.badge-outline-info {
  color: #1e2022;
  background: #00dffc;
  border-color: #fff;
}

/* warning badge */
.badge-outline-warning {
  color: #1e2022;
  background: #ffc107;
  border-color: #fff;
}

/* danger badge */
.badge-outline-danger {
  color: #fff;
  background: #de4437;
  border-color: #fff;
}

/* light badge */
.badge-outline-light {
  color: #1e2022;
  background: #f8f9fa;
  border-color: #fff;
}

/* dark badge */
.badge-outline-dark {
  color: #fff;
  background: #1e2022;
  border-color: #fff;
}

/* white badge */
.badge-outline-white {
  color: #1e2022;
  background: #fff;
  border-color: #fff;
}

/* indigo badge */
.badge-outline-indigo {
  color: #fff;
  background: #2d1582;
  border-color: #fff;
}

.badge-outline-white {
  border-color: #fff;
}

/*------------------------------------
  Badge Positions
------------------------------------*/
.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.badge-pos--top-left {
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.badge-pos--bottom-left {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.badge-pos--bottom-right {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

/*------------------------------------
  Badge in Avatar Component
------------------------------------*/
/* Default Size Avatar */
.u-avatar .rounded-circle + .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(20%, -20%);
          transform: translate(20%, -20%);
}

.u-avatar .rounded-circle + .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(-20%, -20%);
          transform: translate(-20%, -20%);
}

.u-avatar .rounded-circle + .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(-20%, 20%);
          transform: translate(-20%, 20%);
}

.u-avatar .rounded-circle + .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(20%, 20%);
          transform: translate(20%, 20%);
}

.u-avatar .rounded-circle + .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
}

.u-avatar .rounded-circle + .badge-sm.badge-pos--top-left {
  -webkit-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
}

.u-avatar .rounded-circle + .badge-sm.badge-pos--bottom-left {
  -webkit-transform: translate(-25%, 25%);
          transform: translate(-25%, 25%);
}

.u-avatar .rounded-circle + .badge-sm.badge-pos--bottom-right {
  -webkit-transform: translate(25%, 25%);
          transform: translate(25%, 25%);
}

.u-avatar .rounded-circle + .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(30%, -30%);
          transform: translate(30%, -30%);
}

.u-avatar .rounded-circle + .badge-md.badge-pos--top-left {
  -webkit-transform: translate(-30%, -30%);
          transform: translate(-30%, -30%);
}

.u-avatar .rounded-circle + .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(-30%, 30%);
          transform: translate(-30%, 30%);
}

.u-avatar .rounded-circle + .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(30%, 30%);
          transform: translate(30%, 30%);
}

/* Small Size Avatar */
.u-sm-avatar .rounded-circle + .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
}

.u-sm-avatar .rounded-circle + .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
}

.u-sm-avatar .rounded-circle + .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(-25%, 25%);
          transform: translate(-25%, 25%);
}

.u-sm-avatar .rounded-circle + .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(25%, 25%);
          transform: translate(25%, 25%);
}

.u-sm-avatar .rounded-circle + .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]),
.u-sm-avatar .rounded-circle + .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(35%, -35%);
          transform: translate(35%, -35%);
}

.u-sm-avatar .rounded-circle + .badge-sm.badge-pos--top-left,
.u-sm-avatar .rounded-circle + .badge-md.badge-pos--top-left {
  -webkit-transform: translate(-35%, -35%);
          transform: translate(-35%, -35%);
}

.u-sm-avatar .rounded-circle + .badge-sm.badge-pos--bottom-left,
.u-sm-avatar .rounded-circle + .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(-35%, 35%);
          transform: translate(-35%, 35%);
}

.u-sm-avatar .rounded-circle + .badge-sm.badge-pos--bottom-right,
.u-sm-avatar .rounded-circle + .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(35%, 35%);
          transform: translate(35%, 35%);
}

/* Large Size Avatar */
.u-lg-avatar .rounded-circle + .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-35%, 35%);
          transform: translate(-35%, 35%);
}

.u-lg-avatar .rounded-circle + .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(35%, 35%);
          transform: translate(35%, 35%);
}

.u-lg-avatar .rounded-circle + .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(35%, -35%);
          transform: translate(35%, -35%);
}

.u-lg-avatar .rounded-circle + .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(-35%, -35%);
          transform: translate(-35%, -35%);
}

.u-lg-avatar .rounded-circle + .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-15%, 15%);
          transform: translate(-15%, 15%);
}

.u-lg-avatar .rounded-circle + .badge-sm.badge-pos--top-left {
  -webkit-transform: translate(15%, 15%);
          transform: translate(15%, 15%);
}

.u-lg-avatar .rounded-circle + .badge-sm.badge-pos--bottom-left {
  -webkit-transform: translate(15%, -15%);
          transform: translate(15%, -15%);
}

.u-lg-avatar .rounded-circle + .badge-sm.badge-pos--bottom-right {
  -webkit-transform: translate(-15%, -15%);
          transform: translate(-15%, -15%);
}

.u-lg-avatar .rounded-circle + .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.u-lg-avatar .rounded-circle + .badge-md.badge-pos--top-left {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.u-lg-avatar .rounded-circle + .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.u-lg-avatar .rounded-circle + .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

/* Extra Large Size Avatar */
.u-xl-avatar .rounded-circle + .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-100%, 100%);
          transform: translate(-100%, 100%);
}

.u-xl-avatar .rounded-circle + .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(100%, 100%);
          transform: translate(100%, 100%);
}

.u-xl-avatar .rounded-circle + .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}

.u-xl-avatar .rounded-circle + .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
}

.u-xl-avatar .rounded-circle + .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-65%, 65%);
          transform: translate(-65%, 65%);
}

.u-xl-avatar .rounded-circle + .badge-sm.badge-pos--top-left {
  -webkit-transform: translate(65%, 65%);
          transform: translate(65%, 65%);
}

.u-xl-avatar .rounded-circle + .badge-sm.badge-pos--bottom-left {
  -webkit-transform: translate(65%, -65%);
          transform: translate(65%, -65%);
}

.u-xl-avatar .rounded-circle + .badge-sm.badge-pos--bottom-right {
  -webkit-transform: translate(-65%, -65%);
          transform: translate(-65%, -65%);
}

.u-xl-avatar .rounded-circle + .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-45%, 45%);
          transform: translate(-45%, 45%);
}

.u-xl-avatar .rounded-circle + .badge-md.badge-pos--top-left {
  -webkit-transform: translate(45%, 45%);
          transform: translate(45%, 45%);
}

.u-xl-avatar .rounded-circle + .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(45%, -45%);
          transform: translate(45%, -45%);
}

.u-xl-avatar .rounded-circle + .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(-45%, -45%);
          transform: translate(-45%, -45%);
}

/*------------------------------------
  Badge in Icon Component
------------------------------------*/
/* Default Size Icon */
.btn-icon.rounded-circle .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(20%, -20%);
          transform: translate(20%, -20%);
}

.btn-icon.rounded-circle .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(-20%, -20%);
          transform: translate(-20%, -20%);
}

.btn-icon.rounded-circle .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(-20%, 20%);
          transform: translate(-20%, 20%);
}

.btn-icon.rounded-circle .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(20%, 20%);
          transform: translate(20%, 20%);
}

.btn-icon.rounded-circle .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
}

.btn-icon.rounded-circle .badge-sm.badge-pos--top-left {
  -webkit-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
}

.btn-icon.rounded-circle .badge-sm.badge-pos--bottom-left {
  -webkit-transform: translate(-25%, 25%);
          transform: translate(-25%, 25%);
}

.btn-icon.rounded-circle .badge-sm.badge-pos--bottom-right {
  -webkit-transform: translate(25%, 25%);
          transform: translate(25%, 25%);
}

.btn-icon.rounded-circle .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(30%, -30%);
          transform: translate(30%, -30%);
}

.btn-icon.rounded-circle .badge-md.badge-pos--top-left {
  -webkit-transform: translate(-30%, -30%);
          transform: translate(-30%, -30%);
}

.btn-icon.rounded-circle .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(-30%, 30%);
          transform: translate(-30%, 30%);
}

.btn-icon.rounded-circle .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(30%, 30%);
          transform: translate(30%, 30%);
}

/* Small Size Icon */
.btn-sm.rounded-circle .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]), .btn-group-sm > .rounded-circle.btn .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
}

.btn-sm.rounded-circle .badge-xs.badge-pos--top-left, .btn-group-sm > .rounded-circle.btn .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
}

.btn-sm.rounded-circle .badge-xs.badge-pos--bottom-left, .btn-group-sm > .rounded-circle.btn .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(-25%, 25%);
          transform: translate(-25%, 25%);
}

.btn-sm.rounded-circle .badge-xs.badge-pos--bottom-right, .btn-group-sm > .rounded-circle.btn .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(25%, 25%);
          transform: translate(25%, 25%);
}

.btn-sm.rounded-circle .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]), .btn-group-sm > .rounded-circle.btn .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]),
.btn-sm.rounded-circle .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]),
.btn-group-sm > .rounded-circle.btn .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(35%, -35%);
          transform: translate(35%, -35%);
}

.btn-sm.rounded-circle .badge-sm.badge-pos--top-left, .btn-group-sm > .rounded-circle.btn .badge-sm.badge-pos--top-left,
.btn-sm.rounded-circle .badge-md.badge-pos--top-left,
.btn-group-sm > .rounded-circle.btn .badge-md.badge-pos--top-left {
  -webkit-transform: translate(-35%, -35%);
          transform: translate(-35%, -35%);
}

.btn-sm.rounded-circle .badge-sm.badge-pos--bottom-left, .btn-group-sm > .rounded-circle.btn .badge-sm.badge-pos--bottom-left,
.btn-sm.rounded-circle .badge-md.badge-pos--bottom-left,
.btn-group-sm > .rounded-circle.btn .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(-35%, 35%);
          transform: translate(-35%, 35%);
}

.btn-sm.rounded-circle .badge-sm.badge-pos--bottom-right, .btn-group-sm > .rounded-circle.btn .badge-sm.badge-pos--bottom-right,
.btn-sm.rounded-circle .badge-md.badge-pos--bottom-right,
.btn-group-sm > .rounded-circle.btn .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(35%, 35%);
          transform: translate(35%, 35%);
}

/* Large Size Icon */
.btn-lg.rounded-circle .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]), .btn-group-lg > .rounded-circle.btn .badge-xs.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-35%, 35%);
          transform: translate(-35%, 35%);
}

.btn-lg.rounded-circle .badge-xs.badge-pos--top-left, .btn-group-lg > .rounded-circle.btn .badge-xs.badge-pos--top-left {
  -webkit-transform: translate(35%, 35%);
          transform: translate(35%, 35%);
}

.btn-lg.rounded-circle .badge-xs.badge-pos--bottom-left, .btn-group-lg > .rounded-circle.btn .badge-xs.badge-pos--bottom-left {
  -webkit-transform: translate(35%, -35%);
          transform: translate(35%, -35%);
}

.btn-lg.rounded-circle .badge-xs.badge-pos--bottom-right, .btn-group-lg > .rounded-circle.btn .badge-xs.badge-pos--bottom-right {
  -webkit-transform: translate(-35%, -35%);
          transform: translate(-35%, -35%);
}

.btn-lg.rounded-circle .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]), .btn-group-lg > .rounded-circle.btn .badge-sm.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(-15%, 15%);
          transform: translate(-15%, 15%);
}

.btn-lg.rounded-circle .badge-sm.badge-pos--top-left, .btn-group-lg > .rounded-circle.btn .badge-sm.badge-pos--top-left {
  -webkit-transform: translate(15%, 15%);
          transform: translate(15%, 15%);
}

.btn-lg.rounded-circle .badge-sm.badge-pos--bottom-left, .btn-group-lg > .rounded-circle.btn .badge-sm.badge-pos--bottom-left {
  -webkit-transform: translate(15%, -15%);
          transform: translate(15%, -15%);
}

.btn-lg.rounded-circle .badge-sm.badge-pos--bottom-right, .btn-group-lg > .rounded-circle.btn .badge-sm.badge-pos--bottom-right {
  -webkit-transform: translate(-15%, -15%);
          transform: translate(-15%, -15%);
}

.btn-lg.rounded-circle .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]), .btn-group-lg > .rounded-circle.btn .badge-md.badge-pos:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.btn-lg.rounded-circle .badge-md.badge-pos--top-left, .btn-group-lg > .rounded-circle.btn .badge-md.badge-pos--top-left {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.btn-lg.rounded-circle .badge-md.badge-pos--bottom-left, .btn-group-lg > .rounded-circle.btn .badge-md.badge-pos--bottom-left {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.btn-lg.rounded-circle .badge-md.badge-pos--bottom-right, .btn-group-lg > .rounded-circle.btn .badge-md.badge-pos--bottom-right {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

/*------------------------------------
  Buttons Bootstrap Style
------------------------------------*/
/* facebook */
.btn-facebook {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-facebook:hover {
  color: #fff;
  background-color: #30497c;
  border-color: #2d4373;
}

.btn-facebook:focus, .btn-facebook.focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5);
}

.btn-facebook.disabled, .btn-facebook:disabled {
  color: #fff;
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2d4373;
  border-color: #293e6a;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus,
.show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 114, 167, 0.5);
}

/* google */
.btn-google {
  color: #fff;
  background-color: #d14130;
  border-color: #d14130;
}

.btn-google:hover {
  color: #fff;
  background-color: #b33628;
  border-color: #a93325;
}

.btn-google:focus, .btn-google.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 94, 79, 0.5);
}

.btn-google.disabled, .btn-google:disabled {
  color: #fff;
  background-color: #d14130;
  border-color: #d14130;
}

.btn-google:not(:disabled):not(.disabled):active, .btn-google:not(:disabled):not(.disabled).active,
.show > .btn-google.dropdown-toggle {
  color: #fff;
  background-color: #a93325;
  border-color: #9e3023;
}

.btn-google:not(:disabled):not(.disabled):active:focus, .btn-google:not(:disabled):not(.disabled).active:focus,
.show > .btn-google.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 94, 79, 0.5);
}

/* twitter */
.btn-twitter {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.btn-twitter:hover {
  color: #fff;
  background-color: #0d8ddc;
  border-color: #0c85d0;
}

.btn-twitter:focus, .btn-twitter.focus {
  box-shadow: 0 0 0 0.2rem rgba(63, 175, 244, 0.5);
}

.btn-twitter.disabled, .btn-twitter:disabled {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active,
.show > .btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #0c85d0;
  border-color: #0b7ec4;
}

.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus,
.show > .btn-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(63, 175, 244, 0.5);
}

/* instagram */
.btn-instagram {
  color: #fff;
  background-color: #3f729b;
  border-color: #3f729b;
}

.btn-instagram:hover {
  color: #fff;
  background-color: #345e80;
  border-color: #305777;
}

.btn-instagram:focus, .btn-instagram.focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 135, 170, 0.5);
}

.btn-instagram.disabled, .btn-instagram:disabled {
  color: #fff;
  background-color: #3f729b;
  border-color: #3f729b;
}

.btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active,
.show > .btn-instagram.dropdown-toggle {
  color: #fff;
  background-color: #305777;
  border-color: #2d516e;
}

.btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus,
.show > .btn-instagram.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(92, 135, 170, 0.5);
}

/* github */
.btn-github {
  color: #fff;
  background-color: #24292e;
  border-color: #24292e;
}

.btn-github:hover {
  color: #fff;
  background-color: #131619;
  border-color: #0e1011;
}

.btn-github:focus, .btn-github.focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 73, 77, 0.5);
}

.btn-github.disabled, .btn-github:disabled {
  color: #fff;
  background-color: #24292e;
  border-color: #24292e;
}

.btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active,
.show > .btn-github.dropdown-toggle {
  color: #fff;
  background-color: #0e1011;
  border-color: #08090a;
}

.btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus,
.show > .btn-github.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(69, 73, 77, 0.5);
}

/* gray */
.btn-gray {
  color: #1e2022;
  background-color: #f8fafd;
  border-color: #f8fafd;
}

.btn-gray:hover {
  color: #1e2022;
  background-color: #dae5f5;
  border-color: #d0def2;
}

.btn-gray:focus, .btn-gray.focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 217, 220, 0.5);
}

.btn-gray.disabled, .btn-gray:disabled {
  color: #1e2022;
  background-color: #f8fafd;
  border-color: #f8fafd;
}

.btn-gray:not(:disabled):not(.disabled):active, .btn-gray:not(:disabled):not(.disabled).active,
.show > .btn-gray.dropdown-toggle {
  color: #1e2022;
  background-color: #d0def2;
  border-color: #c6d7ef;
}

.btn-gray:not(:disabled):not(.disabled):active:focus, .btn-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-gray.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 217, 220, 0.5);
}

/*------------------------------------
  Custom Buttons
------------------------------------*/
/* primary button :hover, :focus, :active effects */
.btn-primary[href]:hover, .btn-primary[href]:focus, .btn-primary[href]:active, .btn-primary[type]:hover, .btn-primary[type]:focus, .btn-primary[type]:active {
  box-shadow: 0 4px 11px rgba(55, 125, 255, 0.35);
}

.btn-primary:not(label.btn), .btn-primary:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-primary:not([href]), .btn-primary:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #377dff;
  border-color: #377dff;
}

.btn-primary:hover {
  background-color: #377dff;
  border-color: #377dff;
}

/* secondary button :hover, :focus, :active effects */
.btn-secondary[href]:hover, .btn-secondary[href]:focus, .btn-secondary[href]:active, .btn-secondary[type]:hover, .btn-secondary[type]:focus, .btn-secondary[type]:active {
  box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35);
}

.btn-secondary:not(label.btn), .btn-secondary:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-secondary:not([href]), .btn-secondary:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #77838f;
  border-color: #77838f;
}

.btn-secondary:hover {
  background-color: #77838f;
  border-color: #77838f;
}

/* success button :hover, :focus, :active effects */
.btn-success[href]:hover, .btn-success[href]:focus, .btn-success[href]:active, .btn-success[type]:hover, .btn-success[type]:focus, .btn-success[type]:active {
  box-shadow: 0 4px 11px rgba(0, 201, 167, 0.35);
}

.btn-success:not(label.btn), .btn-success:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-success:not([href]), .btn-success:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #00c9a7;
  border-color: #00c9a7;
}

.btn-success:hover {
  background-color: #00c9a7;
  border-color: #00c9a7;
}

/* info button :hover, :focus, :active effects */
.btn-info[href]:hover, .btn-info[href]:focus, .btn-info[href]:active, .btn-info[type]:hover, .btn-info[type]:focus, .btn-info[type]:active {
  box-shadow: 0 4px 11px rgba(0, 223, 252, 0.35);
}

.btn-info:not(label.btn), .btn-info:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-info:not([href]), .btn-info:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #00dffc;
  border-color: #00dffc;
}

.btn-info:hover {
  background-color: #00dffc;
  border-color: #00dffc;
}

/* warning button :hover, :focus, :active effects */
.btn-warning[href]:hover, .btn-warning[href]:focus, .btn-warning[href]:active, .btn-warning[type]:hover, .btn-warning[type]:focus, .btn-warning[type]:active {
  box-shadow: 0 4px 11px rgba(255, 193, 7, 0.35);
}

.btn-warning:not(label.btn), .btn-warning:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-warning:not([href]), .btn-warning:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  background-color: #ffc107;
  border-color: #ffc107;
}

/* danger button :hover, :focus, :active effects */
.btn-danger[href]:hover, .btn-danger[href]:focus, .btn-danger[href]:active, .btn-danger[type]:hover, .btn-danger[type]:focus, .btn-danger[type]:active {
  box-shadow: 0 4px 11px rgba(222, 68, 55, 0.35);
}

.btn-danger:not(label.btn), .btn-danger:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-danger:not([href]), .btn-danger:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #de4437;
  border-color: #de4437;
}

.btn-danger:hover {
  background-color: #de4437;
  border-color: #de4437;
}

/* light button :hover, :focus, :active effects */
.btn-light[href]:hover, .btn-light[href]:focus, .btn-light[href]:active, .btn-light[type]:hover, .btn-light[type]:focus, .btn-light[type]:active {
  box-shadow: 0 4px 11px rgba(248, 249, 250, 0.35);
}

.btn-light:not(label.btn), .btn-light:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-light:not([href]), .btn-light:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* dark button :hover, :focus, :active effects */
.btn-dark[href]:hover, .btn-dark[href]:focus, .btn-dark[href]:active, .btn-dark[type]:hover, .btn-dark[type]:focus, .btn-dark[type]:active {
  box-shadow: 0 4px 11px rgba(30, 32, 34, 0.35);
}

.btn-dark:not(label.btn), .btn-dark:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-dark:not([href]), .btn-dark:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #1e2022;
  border-color: #1e2022;
}

.btn-dark:hover {
  background-color: #1e2022;
  border-color: #1e2022;
}

/* white button :hover, :focus, :active effects */
.btn-white[href]:hover, .btn-white[href]:focus, .btn-white[href]:active, .btn-white[type]:hover, .btn-white[type]:focus, .btn-white[type]:active {
  box-shadow: 0 4px 11px rgba(255, 255, 255, 0.35);
}

.btn-white:not(label.btn), .btn-white:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-white:not([href]), .btn-white:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  background-color: #fff;
  border-color: #fff;
}

/* indigo button :hover, :focus, :active effects */
.btn-indigo[href]:hover, .btn-indigo[href]:focus, .btn-indigo[href]:active, .btn-indigo[type]:hover, .btn-indigo[type]:focus, .btn-indigo[type]:active {
  box-shadow: 0 4px 11px rgba(45, 21, 130, 0.35);
}

.btn-indigo:not(label.btn), .btn-indigo:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-indigo:not([href]), .btn-indigo:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #2d1582;
  border-color: #2d1582;
}

.btn-indigo:hover {
  background-color: #2d1582;
  border-color: #2d1582;
}

/* facebook button :hover, :focus, :active effects */
.btn-facebook[href]:hover, .btn-facebook[href]:focus, .btn-facebook[href]:active, .btn-facebook[type]:hover, .btn-facebook[type]:focus, .btn-facebook[type]:active {
  box-shadow: 0 4px 11px rgba(59, 89, 152, 0.35);
}

.btn-facebook:not(label.btn), .btn-facebook:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-facebook:not([href]), .btn-facebook:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #3b5998;
  border-color: #3b5998;
}

.btn-facebook:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}

/* google button :hover, :focus, :active effects */
.btn-google[href]:hover, .btn-google[href]:focus, .btn-google[href]:active, .btn-google[type]:hover, .btn-google[type]:focus, .btn-google[type]:active {
  box-shadow: 0 4px 11px rgba(209, 65, 48, 0.35);
}

.btn-google:not(label.btn), .btn-google:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-google:not([href]), .btn-google:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #d14130;
  border-color: #d14130;
}

.btn-google:hover {
  background-color: #d14130;
  border-color: #d14130;
}

/* twitter button :hover, :focus, :active effects */
.btn-twitter[href]:hover, .btn-twitter[href]:focus, .btn-twitter[href]:active, .btn-twitter[type]:hover, .btn-twitter[type]:focus, .btn-twitter[type]:active {
  box-shadow: 0 4px 11px rgba(29, 161, 242, 0.35);
}

.btn-twitter:not(label.btn), .btn-twitter:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-twitter:not([href]), .btn-twitter:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.btn-twitter:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

/* instagram button :hover, :focus, :active effects */
.btn-instagram[href]:hover, .btn-instagram[href]:focus, .btn-instagram[href]:active, .btn-instagram[type]:hover, .btn-instagram[type]:focus, .btn-instagram[type]:active {
  box-shadow: 0 4px 11px rgba(63, 114, 155, 0.35);
}

.btn-instagram:not(label.btn), .btn-instagram:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-instagram:not([href]), .btn-instagram:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #3f729b;
  border-color: #3f729b;
}

.btn-instagram:hover {
  background-color: #3f729b;
  border-color: #3f729b;
}

/* github button :hover, :focus, :active effects */
.btn-github[href]:hover, .btn-github[href]:focus, .btn-github[href]:active, .btn-github[type]:hover, .btn-github[type]:focus, .btn-github[type]:active {
  box-shadow: 0 4px 11px rgba(36, 41, 46, 0.35);
}

.btn-github:not(label.btn), .btn-github:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-github:not([href]), .btn-github:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #24292e;
  border-color: #24292e;
}

.btn-github:hover {
  background-color: #24292e;
  border-color: #24292e;
}

/* gray button :hover, :focus, :active effects */
.btn-gray[href]:hover, .btn-gray[href]:focus, .btn-gray[href]:active, .btn-gray[type]:hover, .btn-gray[type]:focus, .btn-gray[type]:active {
  box-shadow: 0 4px 11px rgba(248, 250, 253, 0.35);
}

.btn-gray:not(label.btn), .btn-gray:not(label.btn):not([href]):not(:disabled):not(.disabled), .btn-gray:not([href]), .btn-gray:not([href]):not([href]):not(:disabled):not(.disabled) {
  background-color: #f8fafd;
  border-color: #f8fafd;
}

.btn-gray:hover {
  background-color: #f8fafd;
  border-color: #f8fafd;
}

/*------------------------------------
  Custom Button Toggle
------------------------------------*/
.btn-custom-toggle-primary {
  color: #8c98a4;
  border-color: #d5dae2;
}

.btn-custom-toggle-primary:hover {
  color: #377dff;
  background-color: transparent;
  border-color: #377dff;
}

.btn-custom-toggle-primary:not(:disabled):not(.disabled):active, .btn-custom-toggle-primary:not(:disabled):not(.disabled).active, .btn-custom-toggle-primary:not(:disabled):not(.disabled):active, .btn-custom-toggle-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #377dff;
  border-color: #377dff;
}

.btn-custom-toggle-white:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-custom-toggle-white:not(:disabled):not(.disabled):active, .btn-custom-toggle-white:not(:disabled):not(.disabled).active, .btn-custom-toggle-white:not(:disabled):not(.disabled):active, .btn-custom-toggle-white:not(:disabled):not(.disabled).active {
  color: #377dff;
}

/*------------------------------------
  Air Button Styles
------------------------------------*/
/* primary air */
.btn-soft-primary {
  color: #377dff;
  background: rgba(55, 125, 255, 0.1);
  border-color: transparent;
}

.btn-soft-primary[href]:hover, .btn-soft-primary[href]:focus, .btn-soft-primary[href]:active, .btn-soft-primary[href].active, .btn-soft-primary[type]:hover, .btn-soft-primary[type]:focus, .btn-soft-primary[type]:active, .btn-soft-primary[type].active {
  color: #fff;
  background: #377dff;
  box-shadow: 0 4px 11px rgba(55, 125, 255, 0.35);
}

.btn-soft-primary[href].disabled, .btn-soft-primary[href]:disabled, .btn-soft-primary[type].disabled, .btn-soft-primary[type]:disabled {
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
  box-shadow: none;
}

.btn-soft-primary[href]:not(:disabled):not(.disabled):active, .btn-soft-primary[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-primary[href].dropdown-toggle, .btn-soft-primary[type]:not(:disabled):not(.disabled):active, .btn-soft-primary[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-primary[type].dropdown-toggle {
  color: #fff;
  background-color: #377dff;
}

.btn.btn-soft-primary {
  color: #377dff;
}

/* secondary air */
.btn-soft-secondary {
  color: #77838f;
  background: rgba(119, 131, 143, 0.1);
  border-color: transparent;
}

.btn-soft-secondary[href]:hover, .btn-soft-secondary[href]:focus, .btn-soft-secondary[href]:active, .btn-soft-secondary[href].active, .btn-soft-secondary[type]:hover, .btn-soft-secondary[type]:focus, .btn-soft-secondary[type]:active, .btn-soft-secondary[type].active {
  color: #fff;
  background: #77838f;
  box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35);
}

.btn-soft-secondary[href].disabled, .btn-soft-secondary[href]:disabled, .btn-soft-secondary[type].disabled, .btn-soft-secondary[type]:disabled {
  color: #77838f;
  background-color: rgba(119, 131, 143, 0.1);
  box-shadow: none;
}

.btn-soft-secondary[href]:not(:disabled):not(.disabled):active, .btn-soft-secondary[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-secondary[href].dropdown-toggle, .btn-soft-secondary[type]:not(:disabled):not(.disabled):active, .btn-soft-secondary[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-secondary[type].dropdown-toggle {
  color: #fff;
  background-color: #77838f;
}

.btn.btn-soft-secondary {
  color: #77838f;
}

/* success air */
.btn-soft-success {
  color: #00c9a7;
  background: rgba(0, 201, 167, 0.1);
  border-color: transparent;
}

.btn-soft-success[href]:hover, .btn-soft-success[href]:focus, .btn-soft-success[href]:active, .btn-soft-success[href].active, .btn-soft-success[type]:hover, .btn-soft-success[type]:focus, .btn-soft-success[type]:active, .btn-soft-success[type].active {
  color: #fff;
  background: #00c9a7;
  box-shadow: 0 4px 11px rgba(0, 201, 167, 0.35);
}

.btn-soft-success[href].disabled, .btn-soft-success[href]:disabled, .btn-soft-success[type].disabled, .btn-soft-success[type]:disabled {
  color: #00c9a7;
  background-color: rgba(0, 201, 167, 0.1);
  box-shadow: none;
}

.btn-soft-success[href]:not(:disabled):not(.disabled):active, .btn-soft-success[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-success[href].dropdown-toggle, .btn-soft-success[type]:not(:disabled):not(.disabled):active, .btn-soft-success[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-success[type].dropdown-toggle {
  color: #fff;
  background-color: #00c9a7;
}

.btn.btn-soft-success {
  color: #00c9a7;
}

/* info air */
.btn-soft-info {
  color: #00dffc;
  background: rgba(0, 223, 252, 0.1);
  border-color: transparent;
}

.btn-soft-info[href]:hover, .btn-soft-info[href]:focus, .btn-soft-info[href]:active, .btn-soft-info[href].active, .btn-soft-info[type]:hover, .btn-soft-info[type]:focus, .btn-soft-info[type]:active, .btn-soft-info[type].active {
  color: #1e2022;
  background: #00dffc;
  box-shadow: 0 4px 11px rgba(0, 223, 252, 0.35);
}

.btn-soft-info[href].disabled, .btn-soft-info[href]:disabled, .btn-soft-info[type].disabled, .btn-soft-info[type]:disabled {
  color: #00dffc;
  background-color: rgba(0, 223, 252, 0.1);
  box-shadow: none;
}

.btn-soft-info[href]:not(:disabled):not(.disabled):active, .btn-soft-info[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-info[href].dropdown-toggle, .btn-soft-info[type]:not(:disabled):not(.disabled):active, .btn-soft-info[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-info[type].dropdown-toggle {
  color: #1e2022;
  background-color: #00dffc;
}

.btn.btn-soft-info {
  color: #00dffc;
}

/* warning air */
.btn-soft-warning {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.1);
  border-color: transparent;
}

.btn-soft-warning[href]:hover, .btn-soft-warning[href]:focus, .btn-soft-warning[href]:active, .btn-soft-warning[href].active, .btn-soft-warning[type]:hover, .btn-soft-warning[type]:focus, .btn-soft-warning[type]:active, .btn-soft-warning[type].active {
  color: #1e2022;
  background: #ffc107;
  box-shadow: 0 4px 11px rgba(255, 193, 7, 0.35);
}

.btn-soft-warning[href].disabled, .btn-soft-warning[href]:disabled, .btn-soft-warning[type].disabled, .btn-soft-warning[type]:disabled {
  color: #ffc107;
  background-color: rgba(255, 193, 7, 0.1);
  box-shadow: none;
}

.btn-soft-warning[href]:not(:disabled):not(.disabled):active, .btn-soft-warning[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-warning[href].dropdown-toggle, .btn-soft-warning[type]:not(:disabled):not(.disabled):active, .btn-soft-warning[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-warning[type].dropdown-toggle {
  color: #1e2022;
  background-color: #ffc107;
}

.btn.btn-soft-warning {
  color: #ffc107;
}

/* danger air */
.btn-soft-danger {
  color: #de4437;
  background: rgba(222, 68, 55, 0.1);
  border-color: transparent;
}

.btn-soft-danger[href]:hover, .btn-soft-danger[href]:focus, .btn-soft-danger[href]:active, .btn-soft-danger[href].active, .btn-soft-danger[type]:hover, .btn-soft-danger[type]:focus, .btn-soft-danger[type]:active, .btn-soft-danger[type].active {
  color: #fff;
  background: #de4437;
  box-shadow: 0 4px 11px rgba(222, 68, 55, 0.35);
}

.btn-soft-danger[href].disabled, .btn-soft-danger[href]:disabled, .btn-soft-danger[type].disabled, .btn-soft-danger[type]:disabled {
  color: #de4437;
  background-color: rgba(222, 68, 55, 0.1);
  box-shadow: none;
}

.btn-soft-danger[href]:not(:disabled):not(.disabled):active, .btn-soft-danger[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-danger[href].dropdown-toggle, .btn-soft-danger[type]:not(:disabled):not(.disabled):active, .btn-soft-danger[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-danger[type].dropdown-toggle {
  color: #fff;
  background-color: #de4437;
}

.btn.btn-soft-danger {
  color: #de4437;
}

/* light air */
.btn-soft-light {
  color: #f8f9fa;
  background: rgba(248, 249, 250, 0.1);
  border-color: transparent;
}

.btn-soft-light[href]:hover, .btn-soft-light[href]:focus, .btn-soft-light[href]:active, .btn-soft-light[href].active, .btn-soft-light[type]:hover, .btn-soft-light[type]:focus, .btn-soft-light[type]:active, .btn-soft-light[type].active {
  color: #1e2022;
  background: #f8f9fa;
  box-shadow: 0 4px 11px rgba(248, 249, 250, 0.35);
}

.btn-soft-light[href].disabled, .btn-soft-light[href]:disabled, .btn-soft-light[type].disabled, .btn-soft-light[type]:disabled {
  color: #f8f9fa;
  background-color: rgba(248, 249, 250, 0.1);
  box-shadow: none;
}

.btn-soft-light[href]:not(:disabled):not(.disabled):active, .btn-soft-light[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-light[href].dropdown-toggle, .btn-soft-light[type]:not(:disabled):not(.disabled):active, .btn-soft-light[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-light[type].dropdown-toggle {
  color: #1e2022;
  background-color: #f8f9fa;
}

.btn.btn-soft-light {
  color: #f8f9fa;
}

/* dark air */
.btn-soft-dark {
  color: #1e2022;
  background: rgba(30, 32, 34, 0.1);
  border-color: transparent;
}

.btn-soft-dark[href]:hover, .btn-soft-dark[href]:focus, .btn-soft-dark[href]:active, .btn-soft-dark[href].active, .btn-soft-dark[type]:hover, .btn-soft-dark[type]:focus, .btn-soft-dark[type]:active, .btn-soft-dark[type].active {
  color: #fff;
  background: #1e2022;
  box-shadow: 0 4px 11px rgba(30, 32, 34, 0.35);
}

.btn-soft-dark[href].disabled, .btn-soft-dark[href]:disabled, .btn-soft-dark[type].disabled, .btn-soft-dark[type]:disabled {
  color: #1e2022;
  background-color: rgba(30, 32, 34, 0.1);
  box-shadow: none;
}

.btn-soft-dark[href]:not(:disabled):not(.disabled):active, .btn-soft-dark[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-dark[href].dropdown-toggle, .btn-soft-dark[type]:not(:disabled):not(.disabled):active, .btn-soft-dark[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-dark[type].dropdown-toggle {
  color: #fff;
  background-color: #1e2022;
}

.btn.btn-soft-dark {
  color: #1e2022;
}

/* white air */
.btn-soft-white {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.btn-soft-white[href]:hover, .btn-soft-white[href]:focus, .btn-soft-white[href]:active, .btn-soft-white[href].active, .btn-soft-white[type]:hover, .btn-soft-white[type]:focus, .btn-soft-white[type]:active, .btn-soft-white[type].active {
  color: #1e2022;
  background: #fff;
  box-shadow: 0 4px 11px rgba(255, 255, 255, 0.35);
}

.btn-soft-white[href].disabled, .btn-soft-white[href]:disabled, .btn-soft-white[type].disabled, .btn-soft-white[type]:disabled {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-soft-white[href]:not(:disabled):not(.disabled):active, .btn-soft-white[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-white[href].dropdown-toggle, .btn-soft-white[type]:not(:disabled):not(.disabled):active, .btn-soft-white[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-white[type].dropdown-toggle {
  color: #1e2022;
  background-color: #fff;
}

.btn.btn-soft-white {
  color: #fff;
}

/* indigo air */
.btn-soft-indigo {
  color: #2d1582;
  background: rgba(45, 21, 130, 0.1);
  border-color: transparent;
}

.btn-soft-indigo[href]:hover, .btn-soft-indigo[href]:focus, .btn-soft-indigo[href]:active, .btn-soft-indigo[href].active, .btn-soft-indigo[type]:hover, .btn-soft-indigo[type]:focus, .btn-soft-indigo[type]:active, .btn-soft-indigo[type].active {
  color: #fff;
  background: #2d1582;
  box-shadow: 0 4px 11px rgba(45, 21, 130, 0.35);
}

.btn-soft-indigo[href].disabled, .btn-soft-indigo[href]:disabled, .btn-soft-indigo[type].disabled, .btn-soft-indigo[type]:disabled {
  color: #2d1582;
  background-color: rgba(45, 21, 130, 0.1);
  box-shadow: none;
}

.btn-soft-indigo[href]:not(:disabled):not(.disabled):active, .btn-soft-indigo[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-indigo[href].dropdown-toggle, .btn-soft-indigo[type]:not(:disabled):not(.disabled):active, .btn-soft-indigo[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-indigo[type].dropdown-toggle {
  color: #fff;
  background-color: #2d1582;
}

.btn.btn-soft-indigo {
  color: #2d1582;
}

/* facebook air */
.btn-soft-facebook {
  color: #3b5998;
  background: rgba(59, 89, 152, 0.1);
  border-color: transparent;
}

.btn-soft-facebook[href]:hover, .btn-soft-facebook[href]:focus, .btn-soft-facebook[href]:active, .btn-soft-facebook[href].active, .btn-soft-facebook[type]:hover, .btn-soft-facebook[type]:focus, .btn-soft-facebook[type]:active, .btn-soft-facebook[type].active {
  color: #fff;
  background: #3b5998;
  box-shadow: 0 4px 11px rgba(59, 89, 152, 0.35);
}

.btn-soft-facebook[href].disabled, .btn-soft-facebook[href]:disabled, .btn-soft-facebook[type].disabled, .btn-soft-facebook[type]:disabled {
  color: #3b5998;
  background-color: rgba(59, 89, 152, 0.1);
  box-shadow: none;
}

.btn-soft-facebook[href]:not(:disabled):not(.disabled):active, .btn-soft-facebook[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-facebook[href].dropdown-toggle, .btn-soft-facebook[type]:not(:disabled):not(.disabled):active, .btn-soft-facebook[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-facebook[type].dropdown-toggle {
  color: #fff;
  background-color: #3b5998;
}

.btn.btn-soft-facebook {
  color: #3b5998;
}

/* google air */
.btn-soft-google {
  color: #d14130;
  background: rgba(209, 65, 48, 0.1);
  border-color: transparent;
}

.btn-soft-google[href]:hover, .btn-soft-google[href]:focus, .btn-soft-google[href]:active, .btn-soft-google[href].active, .btn-soft-google[type]:hover, .btn-soft-google[type]:focus, .btn-soft-google[type]:active, .btn-soft-google[type].active {
  color: #fff;
  background: #d14130;
  box-shadow: 0 4px 11px rgba(209, 65, 48, 0.35);
}

.btn-soft-google[href].disabled, .btn-soft-google[href]:disabled, .btn-soft-google[type].disabled, .btn-soft-google[type]:disabled {
  color: #d14130;
  background-color: rgba(209, 65, 48, 0.1);
  box-shadow: none;
}

.btn-soft-google[href]:not(:disabled):not(.disabled):active, .btn-soft-google[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-google[href].dropdown-toggle, .btn-soft-google[type]:not(:disabled):not(.disabled):active, .btn-soft-google[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-google[type].dropdown-toggle {
  color: #fff;
  background-color: #d14130;
}

.btn.btn-soft-google {
  color: #d14130;
}

/* twitter air */
.btn-soft-twitter {
  color: #1da1f2;
  background: rgba(29, 161, 242, 0.1);
  border-color: transparent;
}

.btn-soft-twitter[href]:hover, .btn-soft-twitter[href]:focus, .btn-soft-twitter[href]:active, .btn-soft-twitter[href].active, .btn-soft-twitter[type]:hover, .btn-soft-twitter[type]:focus, .btn-soft-twitter[type]:active, .btn-soft-twitter[type].active {
  color: #fff;
  background: #1da1f2;
  box-shadow: 0 4px 11px rgba(29, 161, 242, 0.35);
}

.btn-soft-twitter[href].disabled, .btn-soft-twitter[href]:disabled, .btn-soft-twitter[type].disabled, .btn-soft-twitter[type]:disabled {
  color: #1da1f2;
  background-color: rgba(29, 161, 242, 0.1);
  box-shadow: none;
}

.btn-soft-twitter[href]:not(:disabled):not(.disabled):active, .btn-soft-twitter[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-twitter[href].dropdown-toggle, .btn-soft-twitter[type]:not(:disabled):not(.disabled):active, .btn-soft-twitter[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-twitter[type].dropdown-toggle {
  color: #fff;
  background-color: #1da1f2;
}

.btn.btn-soft-twitter {
  color: #1da1f2;
}

/* instagram air */
.btn-soft-instagram {
  color: #3f729b;
  background: rgba(63, 114, 155, 0.1);
  border-color: transparent;
}

.btn-soft-instagram[href]:hover, .btn-soft-instagram[href]:focus, .btn-soft-instagram[href]:active, .btn-soft-instagram[href].active, .btn-soft-instagram[type]:hover, .btn-soft-instagram[type]:focus, .btn-soft-instagram[type]:active, .btn-soft-instagram[type].active {
  color: #fff;
  background: #3f729b;
  box-shadow: 0 4px 11px rgba(63, 114, 155, 0.35);
}

.btn-soft-instagram[href].disabled, .btn-soft-instagram[href]:disabled, .btn-soft-instagram[type].disabled, .btn-soft-instagram[type]:disabled {
  color: #3f729b;
  background-color: rgba(63, 114, 155, 0.1);
  box-shadow: none;
}

.btn-soft-instagram[href]:not(:disabled):not(.disabled):active, .btn-soft-instagram[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-instagram[href].dropdown-toggle, .btn-soft-instagram[type]:not(:disabled):not(.disabled):active, .btn-soft-instagram[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-instagram[type].dropdown-toggle {
  color: #fff;
  background-color: #3f729b;
}

.btn.btn-soft-instagram {
  color: #3f729b;
}

/* github air */
.btn-soft-github {
  color: #24292e;
  background: rgba(36, 41, 46, 0.1);
  border-color: transparent;
}

.btn-soft-github[href]:hover, .btn-soft-github[href]:focus, .btn-soft-github[href]:active, .btn-soft-github[href].active, .btn-soft-github[type]:hover, .btn-soft-github[type]:focus, .btn-soft-github[type]:active, .btn-soft-github[type].active {
  color: #fff;
  background: #24292e;
  box-shadow: 0 4px 11px rgba(36, 41, 46, 0.35);
}

.btn-soft-github[href].disabled, .btn-soft-github[href]:disabled, .btn-soft-github[type].disabled, .btn-soft-github[type]:disabled {
  color: #24292e;
  background-color: rgba(36, 41, 46, 0.1);
  box-shadow: none;
}

.btn-soft-github[href]:not(:disabled):not(.disabled):active, .btn-soft-github[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-github[href].dropdown-toggle, .btn-soft-github[type]:not(:disabled):not(.disabled):active, .btn-soft-github[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-github[type].dropdown-toggle {
  color: #fff;
  background-color: #24292e;
}

.btn.btn-soft-github {
  color: #24292e;
}

/* gray air */
.btn-soft-gray {
  color: #f8fafd;
  background: rgba(248, 250, 253, 0.1);
  border-color: transparent;
}

.btn-soft-gray[href]:hover, .btn-soft-gray[href]:focus, .btn-soft-gray[href]:active, .btn-soft-gray[href].active, .btn-soft-gray[type]:hover, .btn-soft-gray[type]:focus, .btn-soft-gray[type]:active, .btn-soft-gray[type].active {
  color: #1e2022;
  background: #f8fafd;
  box-shadow: 0 4px 11px rgba(248, 250, 253, 0.35);
}

.btn-soft-gray[href].disabled, .btn-soft-gray[href]:disabled, .btn-soft-gray[type].disabled, .btn-soft-gray[type]:disabled {
  color: #f8fafd;
  background-color: rgba(248, 250, 253, 0.1);
  box-shadow: none;
}

.btn-soft-gray[href]:not(:disabled):not(.disabled):active, .btn-soft-gray[href]:not(:disabled):not(.disabled).active,
.show > .btn-soft-gray[href].dropdown-toggle, .btn-soft-gray[type]:not(:disabled):not(.disabled):active, .btn-soft-gray[type]:not(:disabled):not(.disabled).active,
.show > .btn-soft-gray[type].dropdown-toggle {
  color: #1e2022;
  background-color: #f8fafd;
}

.btn.btn-soft-gray {
  color: #f8fafd;
}

/*------------------------------------
  Button Sizes
------------------------------------*/
/* Wide */
.btn-wide {
  min-width: 9.6875rem;
}

.btn-sm-wide {
  min-width: 8.4375rem;
}

/* Extra Small */
.btn-xs {
  font-size: 0.6875rem;
  font-weight: 400;
  padding: 0.4375rem 0.9375rem;
}

/* Icons */
.btn-icon.btn-xs {
  font-size: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
}

.btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
  font-size: 0.8175rem;
  width: 2rem;
  height: 2rem;
}

.btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
  font-size: 1.75rem;
  width: 5rem;
  height: 5rem;
}

/*------------------------------------
  Text Buttons Styles
------------------------------------*/
/* primary text button */
.btn-text-primary {
  color: #377dff;
  background: transparent;
}

.btn-text-primary[href]:hover, .btn-text-primary[href]:focus, .btn-text-primary[href]:active, .btn-text-primary[type]:hover, .btn-text-primary[type]:focus, .btn-text-primary[type]:active {
  color: #1e2022;
}

/* secondary text button */
.btn-text-secondary {
  color: #77838f;
  background: transparent;
}

.btn-text-secondary[href]:hover, .btn-text-secondary[href]:focus, .btn-text-secondary[href]:active, .btn-text-secondary[type]:hover, .btn-text-secondary[type]:focus, .btn-text-secondary[type]:active {
  color: #1e2022;
}

/* success text button */
.btn-text-success {
  color: #00c9a7;
  background: transparent;
}

.btn-text-success[href]:hover, .btn-text-success[href]:focus, .btn-text-success[href]:active, .btn-text-success[type]:hover, .btn-text-success[type]:focus, .btn-text-success[type]:active {
  color: #1e2022;
}

/* info text button */
.btn-text-info {
  color: #00dffc;
  background: transparent;
}

.btn-text-info[href]:hover, .btn-text-info[href]:focus, .btn-text-info[href]:active, .btn-text-info[type]:hover, .btn-text-info[type]:focus, .btn-text-info[type]:active {
  color: #1e2022;
}

/* warning text button */
.btn-text-warning {
  color: #ffc107;
  background: transparent;
}

.btn-text-warning[href]:hover, .btn-text-warning[href]:focus, .btn-text-warning[href]:active, .btn-text-warning[type]:hover, .btn-text-warning[type]:focus, .btn-text-warning[type]:active {
  color: #1e2022;
}

/* danger text button */
.btn-text-danger {
  color: #de4437;
  background: transparent;
}

.btn-text-danger[href]:hover, .btn-text-danger[href]:focus, .btn-text-danger[href]:active, .btn-text-danger[type]:hover, .btn-text-danger[type]:focus, .btn-text-danger[type]:active {
  color: #1e2022;
}

/* light text button */
.btn-text-light {
  color: #f8f9fa;
  background: transparent;
}

.btn-text-light[href]:hover, .btn-text-light[href]:focus, .btn-text-light[href]:active, .btn-text-light[type]:hover, .btn-text-light[type]:focus, .btn-text-light[type]:active {
  color: #bdc5d1;
}

/* dark text button */
.btn-text-dark {
  color: #1e2022;
  background: transparent;
}

.btn-text-dark[href]:hover, .btn-text-dark[href]:focus, .btn-text-dark[href]:active, .btn-text-dark[type]:hover, .btn-text-dark[type]:focus, .btn-text-dark[type]:active {
  color: #1e2022;
}

/* white text button */
.btn-text-white {
  color: #fff;
  background: transparent;
}

.btn-text-white[href]:hover, .btn-text-white[href]:focus, .btn-text-white[href]:active, .btn-text-white[type]:hover, .btn-text-white[type]:focus, .btn-text-white[type]:active {
  color: #1e2022;
}

/* indigo text button */
.btn-text-indigo {
  color: #2d1582;
  background: transparent;
}

.btn-text-indigo[href]:hover, .btn-text-indigo[href]:focus, .btn-text-indigo[href]:active, .btn-text-indigo[type]:hover, .btn-text-indigo[type]:focus, .btn-text-indigo[type]:active {
  color: #1e2022;
}

/*------------------------------------
  Buttons
------------------------------------*/
.btn[href] {
  cursor: pointer;
}

.btn:not([href]):not([type]):not(:disabled):not(.disabled) {
  cursor: default;
}

a[href] .btn:not([href]):not([type]):not(:disabled):not(.disabled) {
  cursor: pointer;
}

label.btn {
  cursor: pointer !important;
}

/* Pill */
.btn-pill {
  border-radius: 6.1875rem;
}

/* Icon */
.btn-icon {
  position: relative;
  line-height: 0;
  font-size: 1rem;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
}

.btn-icon__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn-icon__inner-bottom-minus {
  top: 80%;
}

/* Background Transparent */
[class*="btn-soft-"].btn-bg-transparent {
  background-color: transparent;
}

/* Toggle */
.btn__toggle-default {
  display: inline-block;
}

.btn__toggle-toggled {
  display: none;
}

.btn.toggled .btn__toggle-default {
  display: none;
}

.btn.toggled .btn__toggle-toggled {
  display: inline-block;
}

/*------------------------------------
  Brand
------------------------------------*/
.brand {
  font-size: 2rem;
  font-weight: 700;
  margin-left: .5rem;
}

.brand-primary, .brand-primary:focus, .brand-primary:hover {
  color: #377dff;
}

.brand-light, .brand-light:focus, .brand-light:hover {
  color: #fff;
}

.brand-dark, .brand-dark:focus, .brand-dark:hover {
  color: #1e2022;
}

/*------------------------------------
  Breadcrumb
------------------------------------*/
.breadcrumb-white {
  background-color: transparent;
}

.breadcrumb-white .breadcrumb-item {
  color: #fff;
}

.breadcrumb-white .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-white .breadcrumb-link {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-no-gutter {
  padding: 0;
}

/*------------------------------------
  Card
------------------------------------*/
.card-2-count {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.card-3-count {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
}

.card-4-count {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}

.card-1-gap {
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.card-2-gap {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.card-3-gap {
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}

.card-4-gap {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}

.card-5-gap {
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}

.card-columns {
  orphans: 1;
  widows: 1;
}

.card-columns .card {
  display: inline-block;
  width: 100%;
}

@media (min-width: 576px) {
  .card-sm-2-count {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .card-sm-3-count {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .card-sm-4-count {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
  .card-sm-1-gap {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .card-sm-2-gap {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .card-sm-3-gap {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .card-sm-4-gap {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .card-sm-5-gap {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .card-sm-columns {
    orphans: 1;
    widows: 1;
  }
  .card-sm-columns .card {
    display: inline-block;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .card-md-2-count {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .card-md-3-count {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .card-md-4-count {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
  .card-md-1-gap {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .card-md-2-gap {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .card-md-3-gap {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .card-md-4-gap {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .card-md-5-gap {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .card-md-columns {
    orphans: 1;
    widows: 1;
  }
  .card-md-columns .card {
    display: inline-block;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .card-lg-2-count {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .card-lg-3-count {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .card-lg-4-count {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
  .card-lg-1-gap {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .card-lg-2-gap {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .card-lg-3-gap {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .card-lg-4-gap {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .card-lg-5-gap {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .card-lg-columns {
    orphans: 1;
    widows: 1;
  }
  .card-lg-columns .card {
    display: inline-block;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .card-xl-2-count {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .card-xl-3-count {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .card-xl-4-count {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
  .card-xl-1-gap {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .card-xl-2-gap {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .card-xl-3-gap {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
  .card-xl-4-gap {
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
  .card-xl-5-gap {
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
  .card-xl-columns {
    orphans: 1;
    widows: 1;
  }
  .card-xl-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* Background Color */
.card-bg-light {
  background-color: #f8fafd;
}

.card-bg-light:hover {
  background-color: #f4f7fc;
}

/* Frame */
.card-frame {
  border: 1px solid #e7eaf3;
  transition: 0.3s;
}

.card-frame-highlighted, .card-frame:hover {
  border-color: rgba(55, 125, 255, 0.3);
  box-shadow: 0 0 35px rgba(55, 125, 255, 0.125);
}

.card-text-dark {
  color: #1e2022;
}

.card-text-dark:hover {
  color: #377dff;
}

/* Collapse */
.card-collapse {
  padding: 0;
  transition: 0.3s ease-in-out;
}

.card-collapse:hover {
  background-color: #f8fafd;
}

.card-collapse .card-body {
  color: #77838f;
}

.card-btn {
  color: #1e2022;
  text-align: left;
  white-space: inherit;
}

.card-btn-arrow {
  display: inline-block;
  color: #377dff;
  margin-left: 1rem;
  transition: 0.3s ease-in-out;
}

.collapsed .card-btn-arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* IE image rendering fix */
.card-img-top,
.card-img-bottom {
  min-height: 1px;
}

/*------------------------------------
  Card Gutters
------------------------------------*/
@media (min-width: 576px) {
  .card-sm-gutters-1 {
    margin-right: -.25rem;
    margin-left: -.25rem;
  }
  .card-sm-gutters-1 .card {
    margin-right: .25rem;
    margin-left: .25rem;
  }
  .card-sm-gutters-2 {
    margin-right: -.5rem;
    margin-left: -.5rem;
  }
  .card-sm-gutters-2 .card {
    margin-right: .5rem;
    margin-left: .5rem;
  }
  .card-sm-gutters-3 {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
  }
  .card-sm-gutters-3 .card {
    margin-right: .9375rem;
    margin-left: .9375rem;
  }
}

@media (min-width: 768px) {
  .card-md-gutters-1 {
    margin-right: -.25rem;
    margin-left: -.25rem;
  }
  .card-md-gutters-1 .card {
    margin-right: .25rem;
    margin-left: .25rem;
  }
  .card-md-gutters-2 {
    margin-right: -.5rem;
    margin-left: -.5rem;
  }
  .card-md-gutters-2 .card {
    margin-right: .5rem;
    margin-left: .5rem;
  }
  .card-md-gutters-3 {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
  }
  .card-md-gutters-3 .card {
    margin-right: .9375rem;
    margin-left: .9375rem;
  }
}

@media (min-width: 992px) {
  .card-lg-gutters-1 {
    margin-right: -.25rem;
    margin-left: -.25rem;
  }
  .card-lg-gutters-1 .card {
    margin-right: .25rem;
    margin-left: .25rem;
  }
  .card-lg-gutters-2 {
    margin-right: -.5rem;
    margin-left: -.5rem;
  }
  .card-lg-gutters-2 .card {
    margin-right: .5rem;
    margin-left: .5rem;
  }
  .card-lg-gutters-3 {
    margin-right: -.9375rem;
    margin-left: -.9375rem;
  }
  .card-lg-gutters-3 .card {
    margin-right: .9375rem;
    margin-left: .9375rem;
  }
}

/*------------------------------------
  Card Group - Break
------------------------------------*/
@media (max-width: 767.98px) {
  .card-group-sm-break {
    display: block;
  }
  .card-group-sm-break > .card:not(:last-child) {
    margin-bottom: -1px;
  }
  .card-group-sm-break > .card + .card {
    border-left: 1px solid #e7eaf3;
  }
  .card-group-sm-break > .card:first-child {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-sm-break > .card:first-child .card-img-top,
  .card-group-sm-break > .card:first-child .card-header {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
  }
  .card-group-sm-break > .card:first-child .card-img-bottom,
  .card-group-sm-break > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-sm-break > .card:last-child {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-sm-break > .card:last-child .card-img-top,
  .card-group-sm-break > .card:last-child .card-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-sm-break > .card:last-child .card-img-bottom,
  .card-group-sm-break > .card:last-child .card-footer {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
  }
}

@media (max-width: 991.98px) {
  .card-group-md-break {
    display: block;
  }
  .card-group-md-break > .card:not(:last-child) {
    margin-bottom: -1px;
  }
  .card-group-md-break > .card + .card {
    border-left: 1px solid #e7eaf3;
  }
  .card-group-md-break > .card:first-child {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-md-break > .card:first-child .card-img-top,
  .card-group-md-break > .card:first-child .card-header {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
  }
  .card-group-md-break > .card:first-child .card-img-bottom,
  .card-group-md-break > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-md-break > .card:last-child {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-md-break > .card:last-child .card-img-top,
  .card-group-md-break > .card:last-child .card-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-md-break > .card:last-child .card-img-bottom,
  .card-group-md-break > .card:last-child .card-footer {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
  }
}

@media (max-width: 1199.98px) {
  .card-group-lg-break {
    display: block;
  }
  .card-group-lg-break > .card:not(:last-child) {
    margin-bottom: -1px;
  }
  .card-group-lg-break > .card + .card {
    border-left: 1px solid #e7eaf3;
  }
  .card-group-lg-break > .card:first-child {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-lg-break > .card:first-child .card-img-top,
  .card-group-lg-break > .card:first-child .card-header {
    border-top-left-radius: 0.3125rem;
    border-top-right-radius: 0.3125rem;
  }
  .card-group-lg-break > .card:first-child .card-img-bottom,
  .card-group-lg-break > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group-lg-break > .card:last-child {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-lg-break > .card:last-child .card-img-top,
  .card-group-lg-break > .card:last-child .card-header {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .card-group-lg-break > .card:last-child .card-img-bottom,
  .card-group-lg-break > .card:last-child .card-footer {
    border-bottom-right-radius: 0.3125rem;
    border-bottom-left-radius: 0.3125rem;
  }
}

/*------------------------------------
  Sidebar Navigation
------------------------------------*/
/* Disable content revealing on page load */
.u-sidebar[aria-labelledby] {
  opacity: 0;
}

.u-sidebar[aria-labelledby][role="tabpanel"] {
  opacity: 1;
}

.u-sidebar[aria-labelledby].u-unfold--css-animation, .u-sidebar[aria-labelledby].u-unfold--jquery-slide {
  opacity: 1;
}

.u-sidebar.u-unfold--css-animation.u-unfold--hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.u-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: 23.4375rem;
  height: 100%;
  background-color: #fff;
  box-shadow: -13px 0 20px rgba(119, 131, 143, 0.08);
}

.u-sidebar__body, .u-sidebar__content {
  height: 100%;
}

.u-sidebar--left {
  right: auto;
  left: 0;
  box-shadow: 13px 0 20px rgba(119, 131, 143, 0.08);
}

.u-sidebar__scroller {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.u-sidebar__container {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.u-sidebar__footer {
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

/*------------------------------------
  Sidebar Account
------------------------------------*/
.u-sidebar--account__footer-offset {
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 10.3125rem;
}

.u-sidebar__content--account {
  padding: 1.5rem 3rem;
}

/* Holder */
.u-sidebar--account__holder {
  background-color: #f8fafd;
  padding: 1.5rem 3rem;
}

.u-sidebar--account__holder-img {
  width: 3rem;
  border-radius: 0.3125rem;
}

.u-sidebar--account__holder-text {
  display: block;
  font-size: .75rem;
  color: #8c98a4;
}

/* Toggle */
.u-sidebar--account__toggle-bg {
  position: relative;
  top: 1px;
  padding: .25rem .25rem .25rem .75rem;
  background-color: rgba(55, 125, 255, 0.1);
  border-radius: 6.1875rem;
}

@media (max-width: 767.98px) {
  .u-sidebar--account__toggle-bg {
    padding-left: .25rem;
  }
}

.u-sidebar--account__toggle-bg:hover .u-sidebar--account__toggle-text {
  color: #377dff;
}

.u-sidebar--account__toggle-text {
  color: #1e2022;
  font-size: .75rem;
  vertical-align: middle;
  margin-right: .3125rem;
}

@media (max-width: 767.98px) {
  .u-sidebar--account__toggle-text {
    display: none;
  }
}

.u-sidebar--account__toggle-img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

/* List */
.u-sidebar--account__list {
  margin-bottom: 0;
}

.u-sidebar--account__list-item {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.u-sidebar--account__list-link {
  display: block;
  font-size: .875rem;
  color: #97a4af;
  border-radius: 0.3125rem;
  padding: .625rem;
  transition: 0.2s ease-in-out;
}

.u-sidebar--account__list-link.active, .u-sidebar--account__list-link:hover {
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
}

.u-sidebar--account__list-link.active .u-sidebar--account__list-icon, .u-sidebar--account__list-link:hover .u-sidebar--account__list-icon {
  color: #377dff;
}

.u-sidebar--account__list-icon {
  display: inline-block;
  text-align: center;
  width: 1.125rem;
  font-size: .8125rem;
  color: #8c98a4;
  transition: 0.2s ease-in-out;
}

.u-sidebar--account__list-divider {
  border-top: 1px solid #e4ecf7;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Footer Links */
.u-sidebar__footer--account {
  padding: 0 3rem 1.5rem;
}

.u-sidebar__footer--account__text {
  position: relative;
  z-index: 1;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.7);
}

.u-sidebar__footer--account__text:hover {
  color: #fff;
}

/*------------------------------------
  Sidebar Shopping Cart
------------------------------------*/
.u-sidebar__cart-footer-offset {
  height: 100%;
  box-sizing: border-box;
  padding-bottom: 13.4375rem;
}

/*------------------------------------
  Clients
------------------------------------*/
.u-clients {
  width: 100%;
  max-width: 6rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------
  Close
------------------------------------*/
.close-light {
  color: rgba(255, 255, 255, 0.7);
}

.close-light:not(:disabled):not(.disabled):hover, .close-light:not(:disabled):not(.disabled):focus {
  color: #fff;
}

/*------------------------------------
  Divider
------------------------------------*/
.u-divider {
  position: relative;
  display: inline-block;
  font-size: 1rem;
}

.u-divider::before, .u-divider::after {
  position: absolute;
  top: 50%;
  content: "";
}

.u-divider::before {
  right: 100%;
  background-image: linear-gradient(45deg, transparent 0%, #bdc5d1 100%);
  background-repeat: repeat-x;
}

.u-divider::after {
  left: 100%;
  background-image: linear-gradient(45deg, #bdc5d1 0%, transparent 100%);
  background-repeat: repeat-x;
}

/*------------------------------------
  Divider Sizes
------------------------------------*/
.u-divider::before, .u-divider::after {
  width: 10rem;
  height: 0.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.u-divider::before {
  margin-right: .625rem;
}

.u-divider::after {
  margin-left: .625rem;
}

@media (max-width: 767.98px) {
  .u-divider::before, .u-divider::after {
    width: 4rem;
  }
}

.u-divider--xs {
  font-size: 0.75rem;
}

.u-divider--xs::before, .u-divider--xs::after {
  width: 2rem;
  height: 0.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------
  Divider Styles
------------------------------------*/
/* Text */
.u-divider--text {
  color: #8c98a4;
}

/*------------------------------------
  Vertical Divider
------------------------------------*/
.u-ver-divider {
  position: relative;
}

.u-ver-divider::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 1px solid #e7eaf3;
  content: "";
}

/* Breakpoint */
@media (max-width: 575.98px) {
  .u-ver-divider--none-sm::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .u-ver-divider--none-md::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .u-ver-divider--none-lg::after {
    display: none;
  }
}

/*------------------------------------
  Divider Sizes
------------------------------------*/
/* Extra Small */
.u-ver-divider--xs::after {
  top: 50%;
  height: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Small */
.u-ver-divider--sm::after {
  top: 50%;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Large */
.u-ver-divider--lg::after {
  top: 50%;
  height: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Extra Large */
.u-ver-divider--xl::after {
  top: 50%;
  height: 4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------
  Dropdown
------------------------------------*/
/* Disable content revealing on page load */
.dropdown-unfold[aria-labelledby] {
  opacity: 0;
}

.dropdown-unfold[aria-labelledby][role="tabpanel"] {
  display: block;
  opacity: 1;
}

.dropdown-unfold[aria-labelledby].u-unfold--css-animation, .dropdown-unfold[aria-labelledby].u-unfold--jquery-slide {
  display: block;
  opacity: 1;
}

.dropdown-unfold.u-unfold--css-animation.u-unfold--hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.u-unfold--css-animation.u-unfold--hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.dropdown-unfold.show {
  display: block;
  opacity: 1;
}

/* Menu */
.dropdown-menu {
  margin-top: .5rem;
  font-size: 0.875rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 5px 9px rgba(55, 125, 255, 0.075), 0 5px 9px rgba(119, 131, 143, 0.075);
}

/* Nav Link */
.dropdown-nav-link {
  color: #77838f;
  font-weight: 300;
  font-size: 0.875rem;
}

.dropdown-nav-link:hover {
  color: #1e2022;
}

/* Item */
.dropdown-item {
  font-size: 0.875rem;
}

.dropdown-item:hover {
  color: #377dff;
}

.dropdown-item.active {
  color: #377dff;
}

.dropdown-item-icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 0.8125rem;
  min-width: 1rem;
  max-width: 1rem;
  margin-right: .5rem;
}

/* Toggle */
.dropdown-toggle::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 80%;
  font-weight: 900;
  content: "";
  margin-left: .5rem;
}

.dropdown-toggle-collapse::after {
  transition: 0.3s;
}

.dropdown-toggle-collapse[aria-expanded="true"]::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/* Dropdown Positions */
.dropdown-menu-top {
  top: 0;
}

.dropdown-menu-bottom {
  top: auto;
  bottom: 0;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-top {
    top: 0;
  }
  .dropdown-menu-sm-bottom {
    top: auto;
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-top {
    top: 0;
  }
  .dropdown-menu-md-bottom {
    top: auto;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-top {
    top: 0;
  }
  .dropdown-menu-lg-bottom {
    top: auto;
    bottom: 0;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-top {
    top: 0;
  }
  .dropdown-menu-xl-bottom {
    top: auto;
    bottom: 0;
  }
}

/*------------------------------------
  Dropdown Card
------------------------------------*/
.dropdown-card {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .dropdown-card {
    min-width: 25rem;
  }
}

/*------------------------------------
  Dropdown Sizes
------------------------------------*/
@media (min-width: 576px) {
  .dropdown-menu-size-md {
    width: 440px;
  }
  .dropdown-menu-size-lg {
    width: 340px;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-size-lg {
    width: 440px;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-size-lg {
    width: 740px;
  }
}

/*------------------------------------
  Form
------------------------------------*/
.custom-select:focus,
.form-control:focus {
  box-shadow: 0 0 10px rgba(55, 125, 255, 0.1);
  border-color: rgba(55, 125, 255, 0.5);
}

.form-label {
  display: block;
  text-transform: uppercase;
  font-size: 80%;
  font-weight: 500;
}

/* Form Borderless */
.input-group-borderless .form-control,
.input-group-borderless .input-group-text {
  border: none;
}

.input-group-borderless .form-control:focus,
.input-group-borderless .input-group-text:focus {
  box-shadow: none;
}

/*------------------------------------
  Form Pill
------------------------------------*/
.input-group-pill {
  border-radius: 6.1875rem;
}

.input-group-pill > .form-control:first-child {
  border-top-left-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
}

.input-group-pill > .form-control:last-child {
  border-top-right-radius: 6.1875rem;
  border-bottom-right-radius: 6.1875rem;
}

.input-group-pill .input-group-prepend > .input-group-text,
.input-group-pill .input-group-prepend > .btn {
  border-top-left-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
}

.input-group-pill .input-group-append > .input-group-text,
.input-group-pill .input-group-append > .btn {
  border-top-right-radius: 6.1875rem;
  border-bottom-right-radius: 6.1875rem;
}

/*------------------------------------
  Form Sizes
------------------------------------*/
/* Default Size */
.input-group.input-group-pill > .form-control:first-child {
  padding-left: 1.5rem;
}

.input-group.input-group-pill .input-group-prepend > .input-group-text,
.input-group.input-group-pill .input-group-prepend > .btn {
  padding-left: 1.25rem;
}

.input-group.input-group-pill .input-group-append > .input-group-text,
.input-group.input-group-pill .input-group-append > .btn {
  padding-right: 1.25rem;
}

.input-group .input-group-prepend > .input-group-text,
.input-group .input-group-append > .input-group-text {
  font-size: 0.875rem;
}

/* Extra Small Size */
.input-group-xs.input-group-pill > .form-control:first-child {
  padding-left: 1.375rem;
}

.input-group-xs.input-group-pill .input-group-prepend > .input-group-text,
.input-group-xs.input-group-pill .input-group-prepend > .btn {
  padding-left: 1.25rem;
}

.input-group-xs.input-group-pill .input-group-append > .input-group-text,
.input-group-xs.input-group-pill .input-group-append > .btn {
  padding-right: 1.25rem;
}

.input-group-xs .input-group-prepend > .input-group-text,
.input-group-xs .input-group-append > .input-group-text {
  font-size: 0.625rem;
}

.form-control-xs {
  height: calc(1.925rem + 1px);
  padding: 0.4375rem 0.9375rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Small Size */
.input-group-sm.input-group-pill > .form-control:first-child {
  padding-left: 1rem;
}

.input-group-sm.input-group-pill .input-group-prepend > .input-group-text,
.input-group-sm.input-group-pill .input-group-prepend > .btn {
  padding-left: 1rem;
}

.input-group-sm.input-group-pill .input-group-append > .input-group-text,
.input-group-sm.input-group-pill .input-group-append > .btn {
  padding-right: 1rem;
}

.input-group-sm .input-group-prepend > .input-group-text,
.input-group-sm .input-group-append > .input-group-text {
  font-size: 0.75rem;
}

/* Large Size */
.input-group-lg.input-group-pill > .form-control:first-child {
  padding-left: 2rem;
}

.input-group-lg.input-group-pill .input-group-prepend > .input-group-text,
.input-group-lg.input-group-pill .input-group-prepend > .btn {
  padding-left: 1.375rem;
}

.input-group-lg.input-group-pill .input-group-append > .input-group-text,
.input-group-lg.input-group-pill .input-group-append > .btn {
  padding-right: 1.5rem;
}

.input-group-lg .input-group-prepend > .input-group-text,
.input-group-lg .input-group-append > .input-group-text {
  font-size: 1rem;
}

/*------------------------------------
  Focus States
------------------------------------*/
.u-focus-state .form-label + .form-control,
.u-focus-state .custom-select,
.u-focus-state .input-group,
.u-focus-state .form-control:first-child:last-child {
  box-shadow: 0 0 10px rgba(55, 125, 255, 0.1);
}

.u-focus-state .input-group-text {
  color: #377dff;
}

.u-focus-state:focus,
.u-focus-state *:focus,
.u-focus-state .input-group-text,
.u-focus-state .form-control {
  border-color: rgba(55, 125, 255, 0.5);
}

.u-focus-state .form-control {
  box-shadow: none;
}

/*------------------------------------
  Success State
------------------------------------*/
.u-has-success .form-label + .form-control,
.u-has-success .custom-select,
.u-has-success .input-group,
.u-has-success .form-control:first-child:last-child {
  box-shadow: 0 0 10px rgba(0, 201, 167, 0.1);
}

.u-has-success .input-group-text {
  color: #00c9a7;
}

.u-has-success:focus,
.u-has-success *:focus,
.u-has-success .input-group-text,
.u-has-success .form-control {
  border-color: rgba(0, 201, 167, 0.5);
}

/*------------------------------------
  Error State
------------------------------------*/
.u-has-error .form-label + .form-control,
.u-has-error .custom-select,
.u-has-error .input-group,
.u-has-error .form-control:first-child:last-child {
  box-shadow: 0 0 10px rgba(222, 68, 55, 0.1);
}

.u-has-error .input-group-text {
  color: #de4437;
}

.u-has-error:focus,
.u-has-error *:focus,
.u-has-error .input-group-text,
.u-has-error .form-control {
  border-color: rgba(222, 68, 55, 0.5);
}

/*------------------------------------
  Bookmark Checkbox
------------------------------------*/
.bookmark-checkbox {
  position: relative;
  display: block;
  line-height: 0;
}

.bookmark-checkbox-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.bookmark-checkbox-label {
  position: relative;
  width: 2rem;
  height: 2rem;
  font-size: 0.8175rem;
  color: #77838f;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 0;
  transition: 0.3s;
}

.bookmark-checkbox-label::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  font-family: "Font Awesome 5 Free";
}

.bookmark-checkbox-input:checked ~ .bookmark-checkbox-label {
  color: #fff;
  background-color: #377dff;
  box-shadow: 0 3px 6px 0 rgba(55, 125, 255, 0.25);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*------------------------------------
  Checkbox Outline
------------------------------------*/
.checkbox-outline {
  padding-left: 0;
  margin-right: 0;
}

.checkbox-outline__label {
  border: 1px solid #e7eaf3;
  cursor: pointer;
}

.checkbox-outline__input:checked ~ .checkbox-outline__label {
  border-color: #377dff;
}

/*------------------------------------
  Checkbox Icon
------------------------------------*/
.checkbox-icon__label::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: none;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
  color: #377dff;
  font-size: 1.5rem;
}

.checkbox-icon__input:checked ~ .checkbox-icon__label::after {
  display: block;
  border-color: #377dff;
}

/*------------------------------------
  Checkbox Switch
------------------------------------*/
.custom-switch {
  padding-left: 3.25rem;
}

.custom-switch .custom-control-label::before {
  left: -3.25rem;
  height: 1.5rem;
  border: none;
  background-color: #e7eaf3;
  border-radius: 6.1875rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.625rem);
  left: calc(-2.875rem);
  background-color: #fff;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

/*------------------------------------
  Custom Checkbox
------------------------------------*/
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  border-color: rgba(55, 125, 255, 0);
}

/*------------------------------------
  File Attachment Button
------------------------------------*/
.file-attachment-btn {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.file-attachment-btn__label {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  min-width: 100%;
  min-height: 100%;
  cursor: inherit;
  opacity: 0;
}

/*------------------------------------
  File Attachment Input
------------------------------------*/
.file-attachment-input {
  position: relative;
  display: block;
  background-color: #f8fafd;
  border: 2px dashed #e7eaf3;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.3125rem;
  padding: 4rem;
  margin-bottom: 0;
}

.file-attachment-input__label {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  min-width: 100%;
  min-height: 100%;
  cursor: inherit;
  opacity: 0;
}

.file-attachment-input:hover {
  background-color: #f5f8fc;
}

/*------------------------------------
  File Attachment Link
------------------------------------*/
.file-attachment-link {
  position: relative;
  top: .4375rem;
  overflow: hidden;
}

.file-attachment-link input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.file-attachment-link__label {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.file-attachment-link:hover .u-file-attachment-link__label {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

/*------------------------------------
  Google Map Interactive
------------------------------------*/
.u-gmap-interactive {
  height: 15.625rem;
  border: 4px solid #fff;
  border-radius: 0.3125rem;
  box-shadow: 0 0 45px rgba(140, 152, 164, 0.125);
}

.u-gmap-interactive .gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

.u-gmap-interactive .gm-style-iw {
  min-width: 11.0625rem;
  background-color: #fff;
  text-align: center;
  overflow: inherit;
  box-shadow: 0 0 45px rgba(140, 152, 164, 0.4);
  border-radius: 0.3125rem;
  padding-top: 1.5rem;
  padding-bottom: .5rem;
}

.u-gmap-interactive .gm-style-iw::before {
  position: absolute;
  bottom: -.75rem;
  left: 50%;
  width: 1rem;
  height: .875rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.1 14.5'%3E %3Cpath fill='#fff' d='M9.8,13.5L15.9,3c0.8-1.3-0.2-3-1.7-3H2C0.5,0-0.5,1.7,0.3,3l6.1,10.5C7.1,14.8,9,14.8,9.8,13.5z' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.u-gmap-interactive .gm-style-iw img {
  max-width: 100%;
}

.u-gmap-interactive__info {
  padding-right: .5rem;
  padding-bottom: .5rem;
  padding-left: .5rem;
}

/*------------------------------------
  Go To
------------------------------------*/
.u-go-to {
  display: none;
  position: relative;
  z-index: 100;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #377dff;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 0.3125rem;
  opacity: 0.5;
  transition: 0.3s ease-out;
}

.u-go-to__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.u-go-to:hover, .u-go-to:focus:hover {
  color: #fff;
  opacity: 1;
}

/*------------------------------------
  Got to Section - Vertical Arrow
------------------------------------*/
.u-go-to-ver-arrow {
  display: inline-block;
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
  padding: 2rem 1rem;
  border-radius: 6.1875rem;
}

.u-go-to-ver-arrow:hover .u-go-to-ver-arrow__inner {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.u-go-to-ver-arrow__inner {
  transition: 0.2s ease-in-out;
}

/*------------------------------------
  Got to Section - Modern
------------------------------------*/
.u-go-to-modern {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
  color: #377dff;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 1.25rem rgba(140, 152, 164, 0.2);
}

.u-go-to-modern .u-go-to-modern__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------
  Got to Section - Wave
------------------------------------*/
.u-go-to-wave {
  width: 13.125rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 575.98px) {
  .u-go-to-wave {
    width: 10rem;
  }
}

.u-go-to-wave__icon {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------
  Hamburgers
------------------------------------*/
.u-hamburger {
  font-size: inherit;
  line-height: 0;
  padding: 0.25rem;
}

.u-hamburger:hover .u-hamburger__inner, .u-hamburger:hover .u-hamburger__inner::before, .u-hamburger:hover .u-hamburger__inner::after {
  background-color: #377dff;
}

.u-hamburger__box {
  width: 1.5625rem;
  height: 0.875rem;
  display: inline-block;
  position: relative;
}

.u-hamburger__inner {
  display: block;
  top: 0.0625rem;
  margin: top, -0.0625rem;
}

.u-hamburger__inner, .u-hamburger__inner::before, .u-hamburger__inner::after {
  width: 1.5625rem;
  height: 0.125rem;
  background-color: #8c98a4;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.u-hamburger__inner::before, .u-hamburger__inner::after {
  content: "";
  display: block;
}

.u-hamburger__inner::before {
  top: 0.375rem;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.u-hamburger__inner::after {
  top: 0.75rem;
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner,
.u-hamburger .is-active .u-hamburger__inner {
  -webkit-transform: translate3d(0, 0.375rem, 0) rotate(45deg);
          transform: translate3d(0, 0.375rem, 0) rotate(45deg);
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner::before,
.u-hamburger .is-active .u-hamburger__inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-0.22321rem, -0.25rem, 0);
          transform: rotate(-45deg) translate3d(-0.22321rem, -0.25rem, 0);
  opacity: 0;
}

.u-hamburger[aria-expanded="true"] .u-hamburger__inner::after,
.u-hamburger .is-active .u-hamburger__inner::after {
  -webkit-transform: translate3d(0, -0.75rem, 0) rotate(-90deg);
          transform: translate3d(0, -0.75rem, 0) rotate(-90deg);
}

.u-hamburger--white .u-hamburger__inner, .u-hamburger--white .u-hamburger__inner::before, .u-hamburger--white .u-hamburger__inner::after {
  background-color: rgba(255, 255, 255, 0.8);
}

.u-hamburger--white:hover .u-hamburger__inner, .u-hamburger--white:hover .u-hamburger__inner::before, .u-hamburger--white:hover .u-hamburger__inner::after {
  background-color: #fff;
}

.js-header-fix-moment .u-hamburger--white .u-hamburger__inner, .js-header-fix-moment .u-hamburger--white .u-hamburger__inner::before, .js-header-fix-moment .u-hamburger--white .u-hamburger__inner::after {
  background-color: #8c98a4;
}

.js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner, .js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner::before, .js-header-fix-moment .u-hamburger--white:hover .u-hamburger__inner::after {
  background-color: #377dff;
}

/*------------------------------------
  Hero v1
------------------------------------*/
.u-hero-v1 {
  position: relative;
}

.u-hero-v1__main {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 992px) {
  .u-hero-v1__main {
    height: 70vh;
  }
}

.u-hero-v1__main::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(38, 60, 100, 0.3);
  content: "";
}

.u-hero-v1__secondary {
  position: relative;
}

@media (min-width: 992px) {
  .u-hero-v1__secondary {
    height: 30vh;
  }
}

.u-hero-v1__last {
  position: absolute;
  bottom: 0;
  left: 58.333333%;
}

.u-hero-v1__last-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30%;
  padding-left: 3rem;
  padding-right: 3rem;
}

.u-hero-v1__last-next {
  color: #0049d0;
}

.u-hero-v1__last-prev {
  color: #962319;
}

/*------------------------------------
  Indicator Dots
------------------------------------*/
.u-indicator-dots {
  position: relative;
}

@media (min-width: 768px) {
  .u-indicator-dots::after {
    position: absolute;
    right: -2.1875rem;
    top: 50%;
    width: 2.4375rem;
    height: .75rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 55 16'%3E %3Ccircle fill='%23e7eaf3' cx='27.7' cy='8.1' r='7.7'/%3E %3Ccircle fill='%23e7eaf3' cx='5' cy='8.1' r='5'/%3E %3Ccircle fill='%23e7eaf3' cx='50' cy='8.1' r='5'/%3E %3C/svg%3E");
    background-repeat: no-repeat;
    content: "";
    margin-top: -.375rem;
  }
}

/*------------------------------------
  Indicator - Vertical Dashed
------------------------------------*/
.u-indicator-vertical-dashed-item:not(:last-child) {
  position: relative;
  margin-bottom: 1rem;
}

.u-indicator-vertical-dashed-item:not(:last-child)::after {
  position: absolute;
  top: 1.625rem;
  bottom: -.8125rem;
  left: .625rem;
  border-left: 2px dashed #e7eaf3;
  content: "";
}

/*------------------------------------
  Indicator Vertical Line
------------------------------------*/
.u-indicator-vertical-line {
  position: relative;
}

@media (min-width: 768px) {
  .u-indicator-vertical-line::after {
    position: absolute;
    right: -.9375rem;
    top: 50%;
    height: 4rem;
    border-left: 1px solid rgba(30, 32, 34, 0.2);
    content: "";
    margin-top: -2rem;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

/*------------------------------------
  Indicator Steps
------------------------------------*/
.u-indicator-steps {
  position: relative;
  padding-left: 2.5rem;
}

.u-indicator-steps::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -.25rem;
  width: 2rem;
  height: .0625rem;
  border-top: 1px solid #e7eaf3;
  margin: auto auto auto 0;
  content: "";
}

.u-indicator-steps::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -.3125rem;
  width: .0625rem;
  height: 100%;
  border-right: 1px solid #e7eaf3;
  margin: auto auto auto 0;
  content: "";
}

.u-indicator-steps:first-child::after {
  height: 50%;
  top: auto;
}

.u-indicator-steps:last-child::after {
  height: 50%;
  bottom: auto;
}

.u-indicator-steps__inner {
  min-width: 3rem;
}

/*------------------------------------
  Media Player
------------------------------------*/
.u-media-player {
  color: #1e2022;
  transition: all 0.2s ease-in-out;
}

.u-media-player__icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 3.75rem;
  height: 3.75rem;
  font-size: 0.8125rem;
  border-radius: 50%;
  color: #1e2022;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.u-media-player__icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: .125rem;
}

.u-media-player__icon--box-shadow {
  box-shadow: 0 0 2.5rem rgba(140, 152, 164, 0.3);
}

.u-media-player:hover .u-media-player__icon, .u-media-player:focus .u-media-player__icon {
  color: #377dff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.u-media-player:hover .u-media-player__icon--primary, .u-media-player:focus .u-media-player__icon--primary {
  background-color: #377dff;
}

.u-media-player:hover .u-media-player__icon--success, .u-media-player:focus .u-media-player__icon--success {
  background-color: #00c9a7;
}

/* Colors */
.u-media-player:hover .u-media-player__icon--primary, .u-media-player:hover .u-media-player__icon--success, .u-media-player:focus .u-media-player__icon--primary, .u-media-player:focus .u-media-player__icon--success {
  color: #fff;
}

.u-media-player__icon--primary {
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
}

.u-media-player__icon--success {
  color: #00c9a7;
  background-color: rgba(0, 201, 167, 0.1);
}

/* Large Size */
.u-media-player__icon--lg {
  width: 5rem;
  height: 5rem;
  font-size: 1rem;
}

/* Extra Large Size */
.u-media-player__icon--xl {
  width: 6.25rem;
  height: 6.25rem;
  font-size: 1rem;
}

/* Positions */
.u-media-player--centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 992px) {
  .u-media-player--left-minus-50x-top-50x-lg {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/*------------------------------------
  Media Viewer
------------------------------------*/
.u-media-viewer {
  position: relative;
  display: block;
}

.u-media-viewer:hover .u-media-viewer__icon {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.u-media-viewer__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.u-media-viewer__icon {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #377dff;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  transition: 0.3s ease-in-out;
}

.u-media-viewer__icon:hover, .u-media-viewer__icon:focus {
  color: #fff;
}

.u-media-viewer__icon--active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.u-media-viewer__icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------
  Video Player
------------------------------------*/
.u-video-player {
  position: relative;
  background-color: #000;
}

.u-video-player__preview {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease-in-out;
}

.u-video-player__played .u-video-player__preview {
  opacity: 0;
  pointer-events: none;
}

.u-video-player__btn {
  z-index: 3;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.u-video-player__played .u-video-player__btn {
  -webkit-animation: videoPlayerButton 0.4s ease-in-out forwards;
          animation: videoPlayerButton 0.4s ease-in-out forwards;
  pointer-events: none;
}

.u-video-player__btn:hover .u-video-player__icon, .u-video-player__btn:focus .u-video-player__icon {
  color: #377dff;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.u-video-player__icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.8125rem;
  border-radius: 50%;
  color: #1e2022;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.u-video-player__icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-left: .125rem;
}

/* Large Size */
.u-video-player__icon--lg {
  width: 5rem;
  height: 5rem;
  font-size: 1rem;
}

/* Positions */
.u-video-player__centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes videoPlayerButton {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes videoPlayerButton {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(1.3);
            transform: translate(-50%, -50%) scale(1.3);
  }
}

/*------------------------------------
  Mockup Browser v1
------------------------------------*/
.u-browser-v1 {
  position: relative;
  max-width: 53.125rem;
}

.u-browser-v1__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 85%;
  border-radius: 0.5rem;
  box-shadow: 0 0.625rem 2.5rem 0.625rem rgba(140, 152, 164, 0.175);
}

/*------------------------------------
  Mockup Devices v1
------------------------------------*/
.u-devices-v1 {
  position: absolute;
  top: 3rem;
  left: 50%;
  width: 40.625rem;
  -webkit-transform: rotate(-17deg);
          transform: rotate(-17deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.u-devices-v1__tablet-svg, .u-devices-v1__phone-svg {
  border-radius: 2.125rem;
  box-shadow: 0 0 10px 6px rgba(30, 32, 34, 0.05);
}

.u-devices-v1__tablet {
  width: 26.875rem;
  height: 34.3125rem;
}

.u-devices-v1__phone {
  width: 13.75rem;
  height: 27.5rem;
  margin-right: 1.25rem;
}

/*------------------------------------
  Devices v2
------------------------------------*/
.u-devices-v2 {
  position: relative;
  overflow: hidden;
}

.u-devices-v2__tablet {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: 1;
  width: 34.375rem;
  height: 50.875rem;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  -webkit-transform-origin: 90% -20%;
          transform-origin: 90% -20%;
}

@media (max-width: 991.98px) {
  .u-devices-v2__tablet {
    -webkit-transform-origin: 100% -40%;
            transform-origin: 100% -40%;
  }
}

.u-devices-v2__tablet-svg {
  border-radius: 1.85rem;
  box-shadow: 0 0 0.75rem 0.5rem rgba(30, 32, 34, 0.1);
}

.u-devices-v2__phone {
  position: absolute;
  right: 0;
  bottom: -25%;
  z-index: 1;
  width: 19.8125rem;
  height: 41.5625rem;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.u-devices-v2__phone--left-position {
  position: absolute;
  right: auto;
  left: 0;
  -webkit-transform-origin: 100% 40%;
          transform-origin: 100% 40%;
}

@media (max-width: 1199.98px) {
  .u-devices-v2__phone--left-position {
    -webkit-transform-origin: 100% 65%;
            transform-origin: 100% 65%;
  }
}

.u-devices-v2__phone-svg {
  border-radius: 3rem;
  box-shadow: 0 0 0.75rem 0.5rem rgba(30, 32, 34, 0.1);
}

/*------------------------------------
  Devices v3
------------------------------------*/
.u-devices-v3 {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  width: 40%;
  border-radius: 4.0625rem;
  box-shadow: 10px 15px 55px 15px rgba(140, 152, 164, 0.1);
}

/*------------------------------------
  Mockup Devices v4
------------------------------------*/
.u-devices-v4 {
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.u-devices-v4__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.u-devices-v4__laptop {
  width: 35.9375rem;
  height: 20.75rem;
}

.u-devices-v4__tablet-svg, .u-devices-v4__tablet-ver-svg {
  border-radius: 1.375rem;
  box-shadow: 0 0 0.625rem 0.375rem rgba(30, 32, 34, 0.05);
}

.u-devices-v4__tablet {
  width: 17.1875rem;
  height: 25.4375rem;
  margin-left: 1.5625rem;
}

.u-devices-v4__tablet-ver {
  width: 25rem;
  height: 16.875rem;
}

.u-devices-v4__phone {
  width: 6.25rem;
  height: 13.0625rem;
  margin-left: 1.5625rem;
}

.u-devices-v4__phone-svg {
  border-radius: 1rem;
  box-shadow: 0 0 0.625rem 0.375rem rgba(30, 32, 34, 0.05);
}

/*------------------------------------
  Modal Window
------------------------------------*/
.u-modal-window {
  display: none;
  max-height: 85vh;
}

/*------------------------------------
  Modal Window - Facebook
------------------------------------*/
.u-modal--facebook {
  width: 31.25rem;
  border-radius: 0.3125rem;
}

.u-modal--facebook__body {
  position: relative;
  background-color: #3b5998;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}

.u-modal--facebook__body::after {
  position: absolute;
  left: 5rem;
  top: 100%;
  display: block;
  border-style: solid;
  border-width: 1.125rem 1.375rem 0 0;
  border-color: #3b5998 transparent transparent transparent;
  content: "";
}

.u-modal--facebook__space {
  padding: 2rem;
}

.u-modal--facebook__content {
  background-color: #fff;
  padding: 2rem;
}

.u-modal--facebook__navbar {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.u-modal--facebook__navbar-logo {
  width: 7.5rem;
}

.u-modal--facebook__text {
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

/*------------------------------------
  Page Preloader
------------------------------------*/
.page-preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background-color: #fff;
}

.page-preloader__content-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}

/*------------------------------------
  Pagination
------------------------------------*/
.page-link {
  cursor: pointer;
  text-align: center;
  min-width: 2.25rem;
}

.page-item {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.page-item .page-link {
  border-top-left-radius: 0.3125rem;
  border-bottom-left-radius: 0.3125rem;
}

.page-item .page-link {
  border-top-right-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
}

/*------------------------------------
  Navs
------------------------------------*/
.nav-classic {
  border-bottom: 1px solid #e7eaf3;
}

.nav-classic .nav-link {
  color: #77838f;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 1rem 1.5rem;
  margin-bottom: -.125rem;
  transition: 0.3s;
}

.nav-classic .nav-link:hover {
  color: #377dff;
}

.nav-classic .nav-link.active {
  color: #377dff;
  border-bottom-color: #377dff;
}

.nav-borderless {
  border-color: transparent;
}

.nav-rounded {
  border-radius: 0.3125rem;
}

.nav-rounded .nav-item:first-child .nav-link {
  border-bottom-left-radius: 0.3125rem;
}

.nav-rounded .nav-item:last-child .nav-link {
  border-bottom-right-radius: 0.3125rem;
}

.nav-shadow {
  box-shadow: 0 3px 6px 0 rgba(140, 152, 164, 0.25);
}

.nav .nav-item:not(:first-child) {
  margin-left: .25rem;
}

.nav .nav-item:not(:last-child) {
  margin-right: .25rem;
}

/* White Color */
.nav-white .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.nav-white .nav-link.active {
  color: #377dff;
  background-color: #fff;
}

.nav-white .nav-link:not(.active):hover {
  color: #fff;
}

/* White Border Color */
.nav-border-white .nav-link {
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid transparent;
}

.nav-border-white .nav-link.active {
  color: #fff;
  border-bottom-color: #fff;
}

.nav-border-white .nav-link:not(.active):hover {
  color: #fff;
}

/* Box */
.nav-box .nav-link {
  color: #1e2022;
  border: 1px solid transparent;
  border-radius: 0.3125rem;
}

.nav-box .nav-link.active {
  color: #377dff;
  background-color: #fff;
  border-color: #e7eaf3;
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.125);
}

.nav-box .nav-link:hover {
  border-color: #e7eaf3;
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.125);
}

/* Nav Steps */
.nav-icon .nav-item {
  color: #77838f;
}

.nav-icon .nav-item.active {
  color: #377dff;
}

.nav-icon .nav-item.active .nav-icon-action {
  color: #fff;
  background-color: #377dff;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.nav-icon-action {
  position: relative;
  display: block;
  vertical-align: middle;
  text-align: center;
  z-index: 1;
  line-height: 0.7;
  width: 4rem;
  height: 4rem;
  font-size: 1.375rem;
  color: #77838f;
  background-color: rgba(119, 131, 143, 0.1);
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: .5rem;
  transition: 0.3s ease-in-out;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.nav-icon-action-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------
  Blog Thumb Minimal
------------------------------------*/
.u-blog-thumb-minimal {
  padding: .5rem;
  transition: 0.3s ease-in-out;
}

.u-blog-thumb-minimal, .u-blog-thumb-minimal__img {
  border-radius: 0.3125rem;
}

.u-blog-thumb-minimal:hover {
  background-color: #196eff;
}

.u-blog-thumb-minimal__img-wrapper {
  width: 5rem;
}

/*------------------------------------
  Vertical Progress Bar
------------------------------------*/
.progress-vertical {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: end;
      justify-content: flex-end;
  background-color: #f8fafd;
  height: 12.5rem;
}

/*------------------------------------
  Paging Modern
------------------------------------*/
.u-paging-modern .u-paging-modern__arrow-icon-prev, .u-paging-modern .u-paging-modern__arrow-icon-next {
  transition: 0.3s;
}

.u-paging-modern .u-paging-modern__arrow-icon-prev {
  margin-right: 1rem;
}

.u-paging-modern .u-paging-modern__arrow-icon-next {
  margin-left: 1rem;
}

.u-paging-modern:hover .u-paging-modern__arrow-icon-prev {
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}

.u-paging-modern:hover .u-paging-modern__arrow-icon-next {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.u-paging-modern-view-all {
  color: #fff;
  text-align: center;
  background-color: #ffc107;
}

.u-paging-modern-view-all__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: .5rem;
  transition: 0.3s;
}

.u-paging-modern-view-all:hover {
  color: #fff;
}

.u-paging-modern-view-all:hover .u-paging-modern-view-all__icon {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

/*------------------------------------
  Popover
------------------------------------*/
.popover-header {
  font-weight: 500;
}

/*------------------------------------
  Quantity
------------------------------------*/
.u-quantity {
  width: 4rem;
}

.u-quantity > .u-quantity__input {
  padding-right: 1.875rem;
}

.u-quantity > .u-quantity__input:not(:last-child) {
  border-radius: 0.3125rem;
}

.u-quantity__arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: .75rem;
  z-index: 3;
}

.u-quantity__arrows-inner {
  display: block;
  color: #77838f;
  cursor: pointer;
}

.u-quantity__arrows-inner:hover {
  color: #377dff;
}

/*------------------------------------
  Search Form - Push Top
------------------------------------*/
.u-search-push-top {
  display: none;
  background-color: #f8fafd;
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-shadow: inset 0 -10px 20px -10px rgba(151, 164, 175, 0.05);
}

.u-search-push-top__content {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.u-search-push-top__close-btn {
  position: absolute;
  top: -1.5625rem;
  right: .4375rem;
}

@media (max-width: 575.98px) {
  .u-search-push-top {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Banner */
.u-search-push-top__banner {
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(151, 164, 175, 0.05);
  padding-right: 1.5625rem;
  padding-top: 1.875rem;
  overflow: hidden;
}

.u-search-push-top__banner-container {
  position: relative;
  width: 75%;
  min-height: 11.5625rem;
}

.u-search-push-top__banner-img {
  position: absolute;
  bottom: -.625rem;
  left: -.625rem;
  transition: all .3s ease-in-out;
}

.u-search-push-top__banner:hover .u-search-push-top__banner-img:first-child {
  bottom: 0;
  left: 0;
}

/*------------------------------------
  Search Form - Slide Down
------------------------------------*/
.u-search-slide-down {
  position: absolute;
  z-index: 1003;
  top: 5rem;
  left: calc(50% - 18rem) !important;
  width: 36rem;
}

.u-search-slide-down-trigger.active .u-search-slide-down-trigger__icon::before {
  content: "\f00d";
}

.u-search-slide-down-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  display: none;
  width: 100%;
  height: 100%;
}

.u-search-slide-down .u-search-slide-down__input {
  opacity: 0;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  transition: opacity 0.2s, -webkit-transform 0.3s cubic-bezier(0.37, 0.41, 0.55, 0.98);
  transition: transform 0.3s cubic-bezier(0.37, 0.41, 0.55, 0.98), opacity 0.2s;
  transition: transform 0.3s cubic-bezier(0.37, 0.41, 0.55, 0.98), opacity 0.2s, -webkit-transform 0.3s cubic-bezier(0.37, 0.41, 0.55, 0.98);
}

.u-search-slide-down .u-search-slide-down__suggestions {
  opacity: 0;
  -webkit-transform: translateY(-3rem);
          transform: translateY(-3rem);
  transition: opacity 0.2s, -webkit-transform 0.4s cubic-bezier(0.37, 0.41, 0.55, 0.98);
  transition: transform 0.4s cubic-bezier(0.37, 0.41, 0.55, 0.98), opacity 0.2s;
  transition: transform 0.4s cubic-bezier(0.37, 0.41, 0.55, 0.98), opacity 0.2s, -webkit-transform 0.4s cubic-bezier(0.37, 0.41, 0.55, 0.98);
}

.u-search-slide-down.active .u-search-slide-down__input,
.u-search-slide-down.active .u-search-slide-down__suggestions {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.u-search-slide-down.active .u-search-slide-down__suggestions {
  transition-delay: 0.2s;
}

/*------------------------------------
  Slick
------------------------------------*/
.u-slick {
  position: relative;
}

.u-slick--transform-off.slick-transform-off .slick-track {
  -webkit-transform: none !important;
          transform: none !important;
}

.u-slick-thumb-progress {
  width: 110%;
  height: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------
  Slick Equal Height
------------------------------------*/
.u-slick--equal-height .slick-list {
  height: 100%;
}

.u-slick--equal-height .slick-track {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.u-slick--equal-height .slick-track .slick-slide {
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

/*------------------------------------
  Slick Gutters
------------------------------------*/
/* Gutters X */
.u-slick--gutters-1 {
  margin-left: -.25rem;
  margin-right: -.25rem;
}

.u-slick--gutters-1 .slick-slide {
  margin-left: .25rem;
  margin-right: .25rem;
}

.u-slick--gutters-2 {
  margin-left: -.5rem;
  margin-right: -.5rem;
}

.u-slick--gutters-2 .slick-slide {
  margin-left: .5rem;
  margin-right: .5rem;
}

.u-slick--gutters-3 {
  margin-left: -.9375rem;
  margin-right: -.9375rem;
}

.u-slick--gutters-3 .slick-slide {
  margin-left: .9375rem;
  margin-right: .9375rem;
}

/*------------------------------------
  Slick Zoom
------------------------------------*/
.u-slick-zoom .slick-slide .u-slick-zoom__slide {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  transition: all 0.5s ease-in-out;
}

.u-slick-zoom .slick-center .u-slick-zoom__slide {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*------------------------------------
  Slick Arrows
------------------------------------*/
.u-slick__arrow {
  z-index: 1;
  line-height: 0;
  display: inline-block;
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.3s;
}

.u-slick__arrow:hover {
  color: #fff;
  background-color: #377dff;
}

.u-slick__arrow-inner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.u-slick__arrow-inner--left {
  left: 0;
}

.u-slick__arrow-inner--right {
  right: 0;
}

/* Flat */
.u-slick__arrow--flat {
  color: #fff;
  background-color: rgba(55, 125, 255, 0.8);
}

/* Flat White */
.u-slick__arrow--flat-white {
  color: #1e2022;
  background-color: #fff;
}

.u-slick__arrow--flat-white:hover {
  color: #377dff;
  background-color: #fff;
}

/* Offset */
@media (min-width: 992px) {
  .u-slick__arrow--offset.u-slick__arrow-inner--left {
    left: -2.5rem;
  }
  .u-slick__arrow--offset.u-slick__arrow-inner--right {
    right: -2.5rem;
  }
}

/* Vertical Center Alignment */
.u-slick__arrow-centered--y {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/*------------------------------------
  Slick Arrows Classic
------------------------------------*/
.u-slick__arrow-classic {
  z-index: 1;
  line-height: 0;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.3s;
}

.u-slick__arrow-classic:hover {
  color: #fff;
  background-color: #377dff;
}

.u-slick__arrow-classic-inner:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.u-slick__arrow-classic-inner--left {
  left: 0;
}

.u-slick__arrow-classic-inner--right {
  right: 0;
}

/*------------------------------------
  Slick Paging
------------------------------------*/
.u-slick__paging {
  position: absolute;
  bottom: 2rem;
  right: 0;
  padding-left: .9375rem;
  padding-right: .9375rem;
}

.u-slick__paging .u-paging__current {
  color: #fff;
  font-size: 3.875rem;
  font-weight: 300;
  line-height: 1;
}

.u-slick__paging .u-paging__divider {
  position: relative;
  margin-right: .5rem;
  margin-left: .25rem;
}

.u-slick__paging .u-paging__divider::before {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  content: "\002f";
}

.u-slick__paging .u-paging__total {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/*------------------------------------
  Slick Pagination
------------------------------------*/
.u-slick__pagination {
  padding-left: 0;
}

.u-slick__pagination:not(.u-slick__pagination--block) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  pointer-events: none;
}

.u-slick__pagination li {
  display: -ms-flexbox;
  display: flex;
  pointer-events: all;
  margin: 0 .25rem;
  cursor: pointer;
}

.u-slick__pagination li span {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  box-sizing: border-box;
  background-color: #377dff;
  border: 3px solid transparent;
  border-radius: 50%;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  transition: 0.3s;
}

.u-slick__pagination li.slick-active span {
  background-color: transparent;
  border-color: #377dff;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

/* White Version */
.u-slick__pagination--white li span {
  background-color: #fff;
}

.u-slick__pagination--white li.slick-active span {
  border-color: #fff;
}

/* Block */
.u-slick__pagination--block li {
  display: block;
}

/* Vertical Center Alignment */
.u-slick__pagination-centered--y {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (min-width: 992px) {
  /* Vertical Option */
  .u-slick__pagination--vertical-lg li {
    display: block;
    margin: .25rem 0;
  }
  /* Vertical Option Positions */
  .u-slick__pagination--vertical-pos-v1-lg {
    position: absolute;
    top: 50%;
    left: -15.7%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/*------------------------------------
  Slick Pagination Modern
------------------------------------*/
.u-slick--pagination-modern {
  width: 100%;
  max-width: 12.5rem;
}

.u-slick--pagination-modern .slick-slide {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: 0.3s;
}

.u-slick--pagination-modern .slick-current {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*------------------------------------
  Slick Pagination Interactive
------------------------------------*/
.u-slick--pagination-interactive__text {
  color: rgba(255, 255, 255, 0.7);
}

.u-slick--pagination-interactive .slick-slide {
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.u-slick--pagination-interactive .slick-slide:hover {
  background: rgba(255, 255, 255, 0.15);
}

.u-slick--pagination-interactive .slick-slide:hover.slick-center {
  background: #fff;
}

.u-slick--pagination-interactive .slick-center {
  background: #fff;
}

.u-slick--pagination-interactive .slick-center .u-slick--pagination-interactive__title {
  color: #377dff;
}

.u-slick--pagination-interactive .slick-center .u-slick--pagination-interactive__text {
  color: #77838f;
}

/*------------------------------------
  Spinner
------------------------------------*/
.spinner-border,
.spinner-grow {
  vertical-align: middle;
}

/*------------------------------------
  Stats Progress
------------------------------------*/
.u-stats-progress {
  position: relative;
  width: 13.75rem;
  height: 13.75rem;
  border-radius: 50%;
  box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
  margin-left: auto;
  margin-right: auto;
}

.u-stats-progress__info {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
}

/*------------------------------------
  SVG
------------------------------------*/
.svg-preloader {
  z-index: -1;
  background: transparent url(../svg/preloaders/circle-preloader.svg) center no-repeat !important;
  overflow: hidden;
  transition: all 0.4s ease-in;
}

.svg-preloader *:not(.u-icon):not(.btn):not(.u-media-player):not(.u-media-player__icon):not(.u-label) {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

/*------------------------------------
  SVG IE10+ specific styles go here
------------------------------------*/
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .u-header__promo-icon {
    height: 48px;
  }
  .ie-height-24 {
    height: 24px;
  }
  .ie-height-40 {
    height: 40px;
  }
  .ie-height-48 {
    height: 48px;
  }
  .ie-height-56 {
    height: 56px;
  }
  .ie-height-72 {
    height: 72px;
  }
  .ie-height-90 {
    height: 90px;
  }
  .ie-height-111 {
    height: 111px;
  }
  .ie-main-hero {
    height: 686px;
  }
  .ie-soft-triangle-shape {
    height: 610px;
  }
  .ie-browser {
    height: 565px;
  }
  .ie-wave-1-bottom {
    height: 100px;
  }
  .ie-vault,
  .ie-responsive,
  .ie-easy-payment {
    height: 210px;
  }
  .ie-devices-v1-tablet {
    height: 38.5rem;
  }
  .ie-devices-v1-phone {
    height: 27.5rem;
  }
  .ie-devices-v2-tablet {
    height: 37.875rem;
  }
  .ie-devices-v2-iphone {
    height: 31rem;
  }
  .ie-devices-v3-iphone {
    height: 633px;
  }
  .ie-devices-v4-tablet-horizontal {
    height: 16.875rem;
  }
  .ie-devices-v4-tablet {
    height: 25.4375rem;
  }
  .ie-devices-v4-laptop {
    height: 20.75rem;
  }
  .ie-devices-v4-iphone {
    height: 13.0625rem;
  }
  .ie-wave-6-top-left {
    height: 379px;
  }
  .ie-double-ellipse-top-right {
    height: 431px;
  }
  .ie-double-ellipse-top-left {
    height: 788px;
  }
  .ie-double-ellipse-bottom-right {
    height: 252px;
  }
  .ie-ellipse-mockup {
    height: 656px;
  }
  .ie-irregular-shape-2-right {
    height: 660px;
  }
  .ie-irregular-shape-3-bottom {
    height: 255px;
  }
  .ie-circle-chart {
    height: 219px;
  }
  .ie-curved-shape {
    height: 55.8px;
  }
  .ie-subscribe-illustration {
    height: 329px;
  }
  .ie-subscribe-1 {
    height: 315px;
  }
  .ie-subscribe-2 {
    height: 295px;
  }
  .ie-subscribe-2-flat-icons {
    height: 200px;
  }
  .ie-color-gradient {
    height: 566px;
  }
  .ie-for-sale,
  .ie-buyer {
    height: 208px;
  }
  .ie-events,
  .ie-data-report,
  .ie-image-upload {
    height: 219px;
  }
  .ie-analysis,
  .ie-in-the-office,
  .ie-make-it-rain {
    height: 200px;
  }
  .ie-house-agency {
    height: 381px;
  }
  .ie-laptop-and-iphone {
    height: 421px;
  }
  .ie-get-answered {
    height: 386px;
  }
  .ie-bg-elements-1 {
    height: 420px;
  }
  .ie-bg-elements-2 {
    height: 374px;
  }
  .ie-bg-elements-3 {
    height: 583px;
  }
  .ie-bg-elements-4 {
    height: 850px;
  }
  .ie-circle-1 {
    height: 379px;
  }
  .ie-go-to-wave {
    height: 46px;
  }
  .ie-graphic-illustration-1 {
    height: 270px;
  }
  .ie-app-development {
    height: 328px;
  }
  .ie-we-have-an-idea {
    height: 335px;
  }
  .ie-chatting-girl,
  .ie-chatting-boy {
    height: 328px;
  }
  .ie-virtual-reality {
    height: 320px;
  }
  .ie-maintenance-mode {
    height: 200px;
  }
  .ie-non-standard-hero-shape {
    height: 556px;
  }
  .ie-enterprise-2 {
    height: 267px;
  }
  .ie-abstract-shapes-1 {
    height: 554px;
  }
  .ie-abstract-shapes-2,
  .ie-abstract-shapes-3,
  .ie-abstract-shapes-4 {
    height: 532px;
  }
  .ie-abstract-shapes-6 {
    height: 187px;
  }
  .ie-abstract-shapes-7 {
    height: 624px;
  }
  .ie-abstract-shapes-9 {
    height: 182px;
  }
  .ie-abstract-shapes-10 {
    height: 573px;
  }
  .ie-abstract-shapes-11 {
    height: 192px;
  }
  .ie-abstract-shapes-12 {
    height: 597px;
  }
  .ie-abstract-shapes-13,
  .ie-abstract-shapes-14 {
    height: 615px;
  }
  .ie-showcase-mockup-1 {
    height: 384px;
  }
  .ie-showcase-mockup-2 {
    height: 371px;
  }
  .ie-showcase-mockup-3 {
    height: 535px;
  }
  .ie-knowledgebase-community {
    height: 447px;
  }
  .ie-knowledgebase-community-2 {
    height: 542px;
  }
  .ie-files {
    height: 293px;
  }
  .ie-half-circle-1-1 {
    height: 1136px;
  }
  .ie-half-circle-2-1 {
    height: 835px;
  }
  .ie-half-circle-2-2 {
    height: 660px;
  }
  .ie-iphone-x-1 {
    height: 601px;
  }
  .ie-half-iphone-x-1-iphone {
    height: 372px;
  }
  .ie-circles-hero,
  .ie-circles-cta {
    display: none;
  }
  .ie-communicating-men {
    height: 531px;
  }
  .ie-devices-1 {
    height: 637px;
  }
  .ie-support-man,
  .ie-list-app {
    height: 215px;
  }
  .ie-mobile-article {
    height: 268px;
  }
  .ie-working-men {
    height: 325px;
  }
  .ie-server-woman {
    height: 432px;
  }
  .ie-drawing-woman {
    height: 415px;
  }
  .ie-subscribe-3 {
    height: 338px;
  }
  .ie-hiker-man {
    height: 405px;
  }
  .ie-chatting-man {
    height: 268px;
  }
}

/*------------------------------------
  Tables
------------------------------------*/
.table-heighlighted thead th {
  border-bottom-color: #1e2022;
  border-top: none;
}

.table-heighlighted tfoot td {
  border-top: 2px solid #1e2022;
}

.table-light-bordered {
  border-color: rgba(255, 255, 255, 0.3);
}

.table-light-bordered thead th,
.table-light-bordered th,
.table-light-bordered td {
  border-color: rgba(255, 255, 255, 0.3);
}

/*------------------------------------
  Timeline
------------------------------------*/
.u-timeline {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 0;
}

.u-timeline__item {
  position: relative;
  padding-right: .9375rem;
  padding-left: 2rem;
}

.u-timeline__item:not(:last-child) {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.u-timeline__item::before {
  position: absolute;
  top: 3.5rem;
  bottom: 0;
  left: 0;
  height: auto;
  border-left: 0.1875rem solid #e7eaf3;
  content: "";
}

.u-timeline__icon {
  position: absolute;
  left: -.875rem;
}

.u-timeline__heading {
  position: relative;
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: .75rem;
  margin-bottom: 1rem;
}

.u-timeline__heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 0.1rem solid #e7eaf3;
  content: "";
}

/*------------------------------------
  Sticky Blocks
------------------------------------*/
[class*="sticky-block"] {
  max-width: 100%;
}

/*------------------------------------
  Background Gradients
------------------------------------*/
.gradient-half-primary-body-v1 {
  background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 100%);
  background-repeat: repeat-x;
  background-attachment: fixed;
}

.gradient-half-primary-v1 {
  background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 100%);
  background-repeat: repeat-x;
}

.gradient-half-primary-v2 {
  background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.05) 0%, transparent 100%);
  background-repeat: repeat-x;
}

.gradient-half-primary-v3 {
  background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.1) 0%, transparent 100%);
  background-repeat: repeat-x;
}

.gradient-half-primary-v4 {
  background-image: linear-gradient(150deg, #2d1582 0%, #19a0ff 85%);
  background-repeat: repeat-x;
}

.gradient-half-primary-v5 {
  background-image: linear-gradient(150deg, #377dff 0%, #2d1582 100%);
  background-repeat: repeat-x;
}

.gradient-half-info-v1 {
  background-image: linear-gradient(0deg, #377dff 0%, #00dffc 100%);
  background-repeat: repeat-x;
}

.gradient-half-warning-v1 {
  background-image: linear-gradient(25deg, #ffc107 30%, #de4437 100%);
  background-repeat: repeat-x;
}

.gradient-half-warning-v2 {
  background-image: linear-gradient(150deg, #ffc107 0%, #efa02e 100%);
  background-repeat: repeat-x;
}

.gradient-half-warning-v3 {
  background-image: linear-gradient(150deg, #ffc107 0%, #de4437 100%);
  background-repeat: repeat-x;
}

/*------------------------------------
  Background Overlay Gradients
------------------------------------*/
[class*="gradient-overlay-half"] {
  position: relative;
  z-index: 1;
}

[class*="gradient-overlay-half"]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}

.gradient-overlay-half-primary-video-v1::before {
  z-index: 2;
  background-image: linear-gradient(150deg, rgba(45, 21, 130, 0.9) 0%, rgba(25, 160, 255, 0.85) 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-primary-v1::before {
  background-image: linear-gradient(150deg, rgba(45, 21, 130, 0.9) 0%, rgba(25, 160, 255, 0.85) 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-primary-v2::before {
  background-image: linear-gradient(30deg, rgba(25, 160, 255, 0.85) 0%, rgba(45, 21, 130, 0.9) 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-primary-v3::before {
  background-image: linear-gradient(90deg, #377dff 0%, #0055e5 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-primary-v4::before {
  background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.025) 0%, #fff 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-indigo-v1::before {
  background-image: linear-gradient(45deg, transparent 50%, rgba(45, 21, 130, 0.1) 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-info-v1::before {
  background-image: linear-gradient(0deg, rgba(55, 125, 255, 0.92) 0%, rgba(0, 223, 252, 0.92) 100%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-dark-v1::before {
  background-image: linear-gradient(0deg, #1e2022 0%, transparent 75%);
  background-repeat: repeat-x;
}

.gradient-overlay-half-dark-v2::before {
  background-image: linear-gradient(150deg, rgba(34, 48, 73, 0.675) 0%, rgba(119, 131, 143, 0.3) 100%);
  background-repeat: repeat-x;
}

/*------------------------------------
  Fill Colors
------------------------------------*/
.fill-none {
  fill: none !important;
}

.fill-white {
  fill: #fff !important;
}

.fill-dark {
  fill: #1e2022 !important;
}

.fill-primary {
  fill: #377dff !important;
}

.fill-primary-lighter {
  fill: #19a0ff !important;
}

.fill-primary-darker {
  fill: #196eff !important;
}

.fill-success {
  fill: #00c9a7 !important;
}

.fill-success-lighter {
  fill: #13d7b6 !important;
}

.fill-info {
  fill: #00dffc !important;
}

.fill-danger {
  fill: #de4437 !important;
}

.fill-danger-lighter {
  fill: #ec5245 !important;
}

.fill-warning {
  fill: #ffc107 !important;
}

.fill-warning-lighter {
  fill: #fdd14e !important;
}

.fill-warning-darker {
  fill: #efa02e !important;
}

.fill-gray-100 {
  fill: #f8f9fa !important;
}

.fill-gray-200 {
  fill: #f8fafd !important;
}

.fill-gray-300 {
  fill: #e7eaf3 !important;
}

.fill-gray-400 {
  fill: #bdc5d1 !important;
}

.fill-gray-500 {
  fill: #97a4af !important;
}

.fill-gray-600 {
  fill: #8c98a4 !important;
}

/*------------------------------------
  Stop Colors
------------------------------------*/
.stop-color-white {
  stop-color: #fff !important;
}

.stop-color-primary {
  stop-color: #377dff !important;
}

.stop-color-primary-darker {
  stop-color: #196eff !important;
}

.stop-color-primary-lighter {
  stop-color: #19a0ff !important;
}

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

.stop-color-danger {
  stop-color: #de4437 !important;
}

.stop-color-info {
  stop-color: #00dffc !important;
}

.stop-color-indigo {
  stop-color: #2d1582 !important;
}

/*------------------------------------
  Stroke Colors
------------------------------------*/
.stroke-white {
  stroke: #fff !important;
}

.stroke-primary {
  stroke: #377dff !important;
}

.stroke-primary-lighter {
  stroke: #19a0ff !important;
}

.stroke-primary-darker {
  stroke: #196eff !important;
}

.stroke-success {
  stroke: #00c9a7 !important;
}

.stroke-danger {
  stroke: #de4437 !important;
}

.stroke-warning {
  stroke: #ffc107 !important;
}

.stroke-info {
  stroke: #00dffc !important;
}

.stroke-gray-200 {
  stroke: #f8fafd !important;
}

.stroke-gray-300 {
  stroke: #e7eaf3 !important;
}

.stroke-gray-400 {
  stroke: #bdc5d1 !important;
}

.stroke-gray-500 {
  stroke: #97a4af !important;
}

/*------------------------------------
  Background Image Style
------------------------------------*/
.bg-img-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.bg-img-hero-bottom {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.bg-img-hero-center {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-img-hero-fixed {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/*------------------------------------
  Background Soft Colors
------------------------------------*/
.bg-soft-primary {
  background-color: rgba(55, 125, 255, 0.1);
}

.bg-soft-secondary {
  background-color: rgba(119, 131, 143, 0.1);
}

.bg-soft-success {
  background-color: rgba(0, 201, 167, 0.1);
}

.bg-soft-info {
  background-color: rgba(0, 223, 252, 0.1);
}

.bg-soft-warning {
  background-color: rgba(255, 193, 7, 0.1);
}

.bg-soft-danger {
  background-color: rgba(222, 68, 55, 0.1);
}

.bg-soft-light {
  background-color: rgba(248, 249, 250, 0.1);
}

.bg-soft-dark {
  background-color: rgba(30, 32, 34, 0.1);
}

.bg-soft-white {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-soft-indigo {
  background-color: rgba(45, 21, 130, 0.1);
}

.bg-soft-facebook {
  background-color: rgba(59, 89, 152, 0.1);
}

.bg-soft-google {
  background-color: rgba(209, 65, 48, 0.1);
}

.bg-soft-twitter {
  background-color: rgba(29, 161, 242, 0.1);
}

.bg-soft-instagram {
  background-color: rgba(63, 114, 155, 0.1);
}

.bg-soft-github {
  background-color: rgba(36, 41, 46, 0.1);
}

.bg-soft-gray {
  background-color: rgba(248, 250, 253, 0.1);
}

.bg-soft-light {
  background-color: #f8f9fa;
}

/*------------------------------------
  Borders-radius
------------------------------------*/
.rounded-pill {
  border-radius: 6.1875rem;
}

.rounded-top-pill {
  border-top-left-radius: 6.1875rem;
  border-top-right-radius: 6.1875rem;
}

.rounded-right-pill {
  border-top-right-radius: 6.1875rem;
  border-bottom-right-radius: 6.1875rem;
}

.rounded-bottom-pill {
  border-bottom-right-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
}

.rounded-left-pill {
  border-top-left-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
}

.rounded-top-left-pill {
  border-top-left-radius: 6.1875rem;
}

.rounded-bottom-left-pill {
  border-bottom-left-radius: 6.1875rem;
}

.rounded-pseudo {
  border-radius: 0.3125rem;
}

.rounded-pseudo::before, .rounded-pseudo::after {
  border-radius: 0.3125rem;
}

.rounded-top-pseudo {
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}

.rounded-top-pseudo::before, .rounded-top-pseudo::after {
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}

/*------------------------------------
  Borders
------------------------------------*/
.border-dashed {
  border: 1px dashed #e7eaf3;
}

/*------------------------------------
  Position Spaces
------------------------------------*/
.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

@media (min-width: 576px) {
  .position-sm-absolute {
    position: absolute;
  }
}

@media (min-width: 768px) {
  .top-md-0 {
    top: 0;
  }
  .right-md-0 {
    right: 0;
  }
  .bottom-md-0 {
    bottom: 0;
  }
  .left-md-0 {
    left: 0;
  }
  .position-md-absolute {
    position: absolute;
  }
}

@media (min-width: 992px) {
  .top-lg-0 {
    top: 0;
  }
  .right-lg-0 {
    right: 0;
  }
  .bottom-lg-0 {
    bottom: 0;
  }
  .left-lg-0 {
    left: 0;
  }
  .position-lg-absolute {
    position: absolute;
  }
}

/*------------------------------------
  Content Centered
------------------------------------*/
.content-centered-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (min-width: 768px) {
  .content-centered-y--md {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (min-width: 992px) {
  .content-centered-y--lg {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

/*------------------------------------
  Margin Spacing
------------------------------------*/
.ml-n2 {
  margin-left: -.5rem;
}

.ml-n3 {
  margin-left: -1rem;
}

.mr-n2 {
  margin-right: -.5rem;
}

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n5 {
  margin-top: -2rem;
}

.mt-n6 {
  margin-top: -2.5rem;
}

.mt-n9 {
  margin-top: -4rem;
}

.mt-n23 {
  margin-top: -10rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n9 {
  margin-bottom: -4rem;
}

/* Gutters X */
.mx-gutters-1 {
  margin-right: -.25rem;
  margin-left: -.25rem;
}

.mx-gutters-1 > .col,
.mx-gutters-1 > [class*="col-"] {
  padding-right: .25rem;
  padding-left: .25rem;
}

.mx-gutters-2 {
  margin-right: -.5rem;
  margin-left: -.5rem;
}

.mx-gutters-2 > .col,
.mx-gutters-2 > [class*="col-"] {
  padding-right: .5rem;
  padding-left: .5rem;
}

/*------------------------------------
  Opacity
------------------------------------*/
.opacity-md {
  opacity: .2;
}

/*------------------------------------
  Box Shadow
------------------------------------*/
.shadow-primary-lg {
  box-shadow: 0 0 50px rgba(55, 125, 255, 0.4) !important;
}

.shadow-soft {
  box-shadow: 0 3px 6px 0 rgba(140, 152, 164, 0.25) !important;
}

/*------------------------------------
  Width
------------------------------------*/
.min-width-3 {
  min-width: 1rem !important;
}

.min-width-4 {
  min-width: 1.5rem !important;
}

.min-width-15 {
  min-width: 7rem !important;
}

.min-width-21 {
  min-width: 10rem !important;
}

.max-width-3 {
  max-width: 1rem !important;
}

.max-width-4 {
  max-width: 1.5rem !important;
}

.max-width-5 {
  max-width: 2rem !important;
}

.max-width-6 {
  max-width: 2.5rem !important;
}

.max-width-8 {
  max-width: 3.5rem;
}

.max-width-9 {
  max-width: 4rem;
}

.max-width-10 {
  max-width: 4.5rem;
}

.max-width-11 {
  max-width: 5rem;
}

.max-width-15 {
  max-width: 7rem;
}

.max-width-19 {
  max-width: 9rem;
}

.max-width-23 {
  max-width: 11rem;
}

.max-width-27 {
  max-width: 13rem;
}

.max-width-35 {
  max-width: 17rem;
}

.max-width-40 {
  max-width: 19.5rem;
}

.max-width-50 {
  max-width: 24.5rem;
}

.max-width-60 {
  max-width: 29.5rem;
}

/*------------------------------------
  Height
------------------------------------*/
.height-40vh {
  height: 40vh;
}

.height-60vh {
  height: 60vh;
}

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

.height-4 {
  height: .25rem;
}

.height-250 {
  height: 15.625rem;
}

.height-380 {
  height: 23.75rem;
}

.height-400 {
  height: 25rem;
}

.height-450 {
  height: 28.125rem;
}

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

.min-height-155 {
  min-height: 9.6875rem;
}

.min-height-300 {
  min-height: 18.75rem;
}

.min-height-380 {
  min-height: 23.75rem;
}

.min-height-450 {
  min-height: 28.125rem;
}

.min-height-550 {
  min-height: 34.375rem;
}

.min-height-600 {
  min-height: 37.5rem;
}

.min-height-620 {
  min-height: 38.75rem;
}

@media (min-width: 576px) {
  .height-sm-100vh {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .height-md-60vh {
    height: 60vh;
  }
  .height-md-100vh {
    height: 100vh;
  }
  .min-height-md-100vh {
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .height-lg-100vh {
    height: 100vh;
  }
  .min-height-lg-auto {
    min-height: auto;
  }
  .min-height-lg-100vh {
    min-height: 100vh;
  }
}

@media (min-width: 1200px) {
  .min-height-xl-100vh {
    min-height: 100vh;
  }
}

/*------------------------------------
  SVG Dividers
------------------------------------*/
.svg-divider-polygon {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 35%, 0 95%);
          clip-path: polygon(0 0, 100% 0, 100% 35%, 0 95%);
}

/*------------------------------------
  Typography Font Size
------------------------------------*/
.font-size-1 {
  font-size: 0.875rem;
}

.font-size-2 {
  font-size: 1.5rem;
}

.font-size-3 {
  font-size: 2rem;
}

.font-size-4 {
  font-size: 2.5rem;
}

.font-size-5 {
  font-size: 3rem;
}

@media (max-width: 991.98px) {
  .font-size-md-down-3 {
    font-size: 2rem;
  }
  .font-size-md-down-5 {
    font-size: 3rem;
  }
}

/*------------------------------------
  Font Weight
------------------------------------*/
.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

/*------------------------------------
  Line Height
------------------------------------*/
.text-lh-sm {
  line-height: 1.2;
}

.text-lh-md {
  line-height: 1.8;
}

/*------------------------------------
  Text Colors
------------------------------------*/
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-70[href]:hover {
  color: #fff;
}

/*------------------------------------
  Transform
------------------------------------*/
.transform-rotate-1 {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  -webkit-transform-origin: 30% 20%;
          transform-origin: 30% 20%;
}

/*------------------------------------
  Transitions
------------------------------------*/
/* 3D Hover */
.transition-3d-hover {
  transition: all 0.2s ease-in-out;
}

.transition-3d-hover:hover, .transition-3d-hover:focus {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/*------------------------------------
  Z-Index
------------------------------------*/
.z-index-n1 {
  z-index: -1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-4 {
  z-index: 4;
}

/*------------------------------------
  Animate.css
------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
            transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
            transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

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

/*------------------------------------
  Area Chart
------------------------------------*/
.u-area-chart {
  position: relative;
  line-height: 0;
}

.u-area-chart .ct-point {
  stroke-width: .375rem;
}

.u-area-chart__tooltip {
  color: #77838f;
  background-color: #fff;
  border-radius: 0.3125rem;
  box-shadow: 0 0.375rem 0.9375rem 0.0625rem rgba(140, 152, 164, 0.2);
  padding: 1rem;
  font-size: .75rem;
  font-weight: 400;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.u-area-chart__tooltip::before {
  border: 8px #fff;
  margin-left: -.5rem;
}

.u-area-chart__tooltip .chartist-tooltip-value {
  font-weight: 600;
}

/*------------------------------------
  Cubeportfolio
------------------------------------*/
.u-cubeportfolio .u-cubeportfolio__item {
  font-size: .875rem;
  text-transform: capitalize;
  background-color: transparent;
  border: none;
  margin: 0;
  padding-left: .75rem;
  padding-right: .75rem;
}

.u-cubeportfolio .u-cubeportfolio__item:first-child {
  padding-left: 0;
}

.u-cubeportfolio .u-cubeportfolio__item:last-child {
  padding-right: 0;
}

.u-cubeportfolio .u-cubeportfolio__item:hover {
  color: #1e2022;
}

.u-cubeportfolio .u-cubeportfolio__item.cbp-filter-item-active {
  color: #377dff;
  background-color: transparent;
  border: transparent;
}

/* Load more disabled class */
.u-cubeportfolio .cbp-l-loadMore-stop {
  pointer-events: none;
  color: #77838f;
}

/* Zoom overlay effect */
.u-cubeportfolio .cbp-caption-zoom .cbp-caption-activeWrap {
  background-color: rgba(55, 125, 255, 0.9);
}

/*------------------------------------
  Hover Animation Effects
------------------------------------*/
.u-cubeportfolio--reveal-v1 .cbp-l-caption-body {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: 0.4s ease-in-out;
}

.u-cubeportfolio--reveal-v1 .cbp-caption:hover .cbp-l-caption-body {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

/*------------------------------------
  Custombox
------------------------------------*/
.custombox-lock {
  overflow: auto;
}

.u-custombox-no-scroll.custombox-lock {
  margin-right: 1.0625rem;
  overflow: hidden;
}

/*------------------------------------
  Datatable
------------------------------------*/
.u-datatable .dataTables_length,
.u-datatable .dataTables_filter,
.u-datatable .dataTables_info,
.u-datatable .dataTables_paginate {
  display: none;
}

.u-datatable__striped .odd {
  background-color: #f8fafd;
}

.u-datatable .u-datatable__trigger {
  cursor: pointer;
}

.u-datatable .u-datatable__trigger-icon::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-right: .75rem;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.u-datatable__content td[colspan] {
  padding-left: 0;
  padding-right: 0;
}

.u-datatable .opened .u-datatable__trigger-icon::before {
  content: "\f106";
}

.u-datatable__thead-icon {
  display: block;
  line-height: .7;
  cursor: pointer;
  color: #bdc5d1;
}

.u-datatable__thead-icon:hover {
  color: #377dff;
}

/*------------------------------------
  Dropzone
------------------------------------*/
.u-dropzone {
  width: 100%;
  background-color: #f8fafd;
  border: 2px dashed #e7eaf3;
  border-radius: 0.3125rem;
  cursor: pointer;
  padding: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-dropzone .dz-message {
  width: 100%;
  text-align: center;
}

.u-dropzone .dz-details {
  margin-bottom: 1rem;
}

.u-dropzone .dz-file-preview {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 1rem;
  box-shadow: 0 3px 6px 0 rgba(140, 152, 164, 0.25);
}

.u-dropzone .dz-file-wrapper {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u-dropzone .dz-filename {
  margin-bottom: .25rem;
}

.u-dropzone .dz-img {
  max-width: 4rem;
  border: 1px solid #e7eaf3;
  border-radius: 0.3125rem;
  padding: 0.25rem;
  margin-right: .75rem;
}

.u-dropzone .dz-close-icon,
.u-dropzone .dz-size {
  color: #77838f;
}

.u-dropzone .dz-title {
  font-size: 0.75rem;
  font-weight: 600;
}

.u-dropzone .dz-size {
  font-size: 80%;
}

.u-dropzone .dz-file-abbr {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  line-height: 4;
  font-weight: 600;
  font-size: 1rem;
  color: #377dff;
  text-align: center;
  background-color: rgba(55, 125, 255, 0.1);
  border-radius: 0.3125rem;
  margin-right: .75rem;
}

.u-dropzone [data-dz-thumbnail]:not([src]) {
  display: none;
  margin-bottom: 0;
}

.u-dropzone .dz-progress {
  margin-bottom: 1rem;
}

.u-dropzone.dz-started .u-dropzone__message,
.u-dropzone .dz-processing .dz-error-mark,
.u-dropzone .dz-processing .dz-success-mark {
  display: none;
}

.u-dropzone .dz-processing.dz-error .dz-error-mark,
.u-dropzone .dz-processing.dz-success .dz-success-mark {
  display: block;
}

.u-dropzone .dz-processing .dz-error-mark {
  color: #de4437;
}

.u-dropzone .dz-processing .dz-success-mark {
  color: #00c9a7;
}

/*------------------------------------
  DatePicker
------------------------------------*/
.u-datepicker {
  position: relative;
}

.u-datepicker .flatpickr-calendar {
  top: 3.75rem !important;
  left: 0 !important;
  box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
}

.u-datepicker .flatpickr-calendar::before, .u-datepicker .flatpickr-calendar::after {
  display: none;
}

.u-datepicker .flatpickr-months {
  position: relative;
  background-color: #377dff;
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
  padding: .75rem;
}

.u-datepicker .flatpickr-months .cur-month,
.u-datepicker .flatpickr-months .cur-year {
  color: #fff;
}

.u-datepicker .flatpickr-current-month,
.u-datepicker .flatpickr-prev-month,
.u-datepicker .flatpickr-next-month {
  padding: 0;
}

.u-datepicker .flatpickr-prev-month,
.u-datepicker .flatpickr-next-month {
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.u-datepicker .flatpickr-prev-month.flatpickr-prev-month,
.u-datepicker .flatpickr-next-month.flatpickr-prev-month {
  left: .75rem;
}

.u-datepicker .flatpickr-prev-month.flatpickr-next-month,
.u-datepicker .flatpickr-next-month.flatpickr-next-month {
  right: .75rem;
}

.u-datepicker .flatpickr-prev-month svg,
.u-datepicker .flatpickr-next-month svg {
  fill: rgba(255, 255, 255, 0.7);
}

.u-datepicker .flatpickr-prev-month:hover svg,
.u-datepicker .flatpickr-next-month:hover svg {
  fill: #fff;
}

.u-datepicker .flatpickr-weekday {
  color: #1e2022;
  text-transform: uppercase;
  font-weight: 500;
}

.u-datepicker .flatpickr-day {
  color: #1e2022;
  border-color: transparent;
}

.u-datepicker .flatpickr-day:focus, .u-datepicker .flatpickr-day:hover {
  color: #377dff;
  background-color: rgba(55, 125, 255, 0.1);
}

.u-datepicker .flatpickr-day.inRange {
  background-color: #e7eaf3;
  box-shadow: -0.3125rem 0 0 #e7eaf3, 0.3125rem 0 0 #e7eaf3;
}

.u-datepicker .flatpickr-day.today {
  color: #fff;
  background-color: #377dff;
}

.u-datepicker .flatpickr-day.prevMonthDay, .u-datepicker .flatpickr-day.nextMonthDay {
  color: #e7eaf3;
}

.u-datepicker .flatpickr-day.prevMonthDay:focus, .u-datepicker .flatpickr-day.prevMonthDay:hover, .u-datepicker .flatpickr-day.nextMonthDay:focus, .u-datepicker .flatpickr-day.nextMonthDay:hover {
  color: #97a4af;
  background-color: #e7eaf3;
}

.u-datepicker .flatpickr-day.disabled {
  color: #e7eaf3;
}

.u-datepicker .flatpickr-day.disabled:hover {
  color: #97a4af;
  background-color: #e7eaf3;
}

.u-datepicker .flatpickr-day.selected {
  color: #377dff;
  background-color: transparent;
  border-color: #377dff;
}

.u-datepicker .flatpickr-day.selected:focus.prevMonthDay, .u-datepicker .flatpickr-day.selected:focus.nextMonthDay, .u-datepicker .flatpickr-day.selected:hover.prevMonthDay, .u-datepicker .flatpickr-day.selected:hover.nextMonthDay {
  color: #377dff;
  background-color: transparent;
}

.u-datepicker .flatpickr-day.selected.startRange, .u-datepicker .flatpickr-day.selected.endRange {
  color: #fff;
  background-color: #377dff;
}

.u-datepicker .numInputWrapper span.arrowUp,
.u-datepicker .numInputWrapper span.arrowDown {
  display: none;
}

.u-datepicker .numInputWrapper:hover {
  background-color: transparent;
}

/* Positions */
.u-datepicker--top .flatpickr-calendar {
  top: auto !important;
  bottom: 3.5rem !important;
}

/*------------------------------------
  Dzsparallaxer
------------------------------------*/
.dzsparallaxer {
  color: inherit;
}

/*--------------------------------------------------
  Fancybox
----------------------------------------------------*/
.u-fancybox-theme .fancybox-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.u-fancybox-theme .fancybox-slide--iframe .fancybox-content {
  position: static;
}

.u-fancybox-theme .fancybox-bg {
  background-color: #1e2022;
}

.fancybox-controls--canzoomIn .fancybox-placeholder,
.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: inherit;
}

.fancybox-slide.has-animation {
  display: block;
}

.fancybox-is-sliding .fancybox-slide.has-animation,
.fancybox-slide--current.has-animation,
.fancybox-slide--next.has-animation,
.fancybox-slide--previous.has-animation {
  display: none;
}

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

.u-blur-30 {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}

/*------------------------------------
  Fileuploader
------------------------------------*/
/* Default Style */
.fileuploader {
  margin-top: 0;
}

/* Front Style */
.u-fileuploader-input {
  display: block;
  cursor: pointer;
  background: #fff;
  border: 2px dashed #e7eaf3;
  border-radius: 0.3125rem;
  padding: 2rem 0;
  text-align: center;
}

.u-fileuploader-input__icon {
  display: block;
  color: #377dff;
  font-size: 2.5rem;
}

/* Dragging State */
.u-fileuploader-input__inner,
.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__icon {
  transition: all 0.3s ease-in-out;
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__inner {
  opacity: .6;
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__icon {
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
}

.u-fileuploader-input.fileuploader-dragging .u-fileuploader-input__btn {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

/*------------------------------------
  Onscroll Animation
------------------------------------*/
[data-animation]:not(.u-in-viewport) {
  visibility: hidden;
}

[data-animation].js-carousel {
  visibility: visible;
}

.u-in-viewport {
  visibility: visible;
}

/*------------------------------------
  Range Slider
------------------------------------*/
.u-range-slider {
  height: 1.25rem;
}

.u-range-slider .irs {
  height: 1.25rem;
}

.u-range-slider .irs-line {
  top: .5rem;
  height: 0.25rem;
}

.u-range-slider .irs-line-left {
  left: 0;
  height: 0.25rem;
  background-color: #e7eaf3;
  border-top-left-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
}

.u-range-slider .irs-line-mid {
  height: 0.25rem;
  background-color: #e7eaf3;
}

.u-range-slider .irs-line-right {
  right: 0;
  height: 0.25rem;
  background-color: #e7eaf3;
  border-top-right-radius: 6.1875rem;
  border-bottom-right-radius: 6.1875rem;
}

.u-range-slider .irs-bar {
  top: .5rem;
  height: 0.25rem;
  background-color: #377dff;
}

.u-range-slider .irs-bar-edge {
  top: .5rem;
  left: .0625rem;
  height: 0.25rem;
  width: .6875rem;
  border-top-left-radius: 6.1875rem;
  border-bottom-left-radius: 6.1875rem;
  background-color: #377dff;
}

.u-range-slider .irs-slider {
  top: -.1875rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0.1875rem 0.75rem rgba(140, 152, 164, 0.3125);
}

.u-range-slider .irs-slider.state_hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.u-range-slider .irs-from,
.u-range-slider .irs-to,
.u-range-slider .irs-single {
  display: inline-block;
  min-width: 2.5rem;
  background-color: #fff;
  color: #1e2022;
  font-size: 0.875rem;
  text-shadow: none;
  text-align: center;
  border-radius: 0.3125rem;
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.125);
  padding: .5rem;
}

/* Indicator */
.u-range-slider-indicator {
  height: 5rem;
}

.u-range-slider-indicator .irs {
  height: 5rem;
}

.u-range-slider-indicator.u-range-slider-grid {
  height: 8rem;
}

.u-range-slider-indicator.u-range-slider-grid .irs {
  height: 8rem;
}

.u-range-slider-indicator .irs-line {
  top: 3.875rem;
}

.u-range-slider-indicator .irs-bar {
  top: 3.875rem;
}

.u-range-slider-indicator .irs-bar-edge {
  top: 3.875rem;
}

.u-range-slider-indicator .irs-slider {
  top: 3.1875rem;
}

/* Grid */
.u-range-slider-grid {
  height: 4.5rem;
}

.u-range-slider-grid .irs {
  height: 4.5rem;
}

.u-range-slider-grid .irs-grid {
  height: 2.5rem;
}

.u-range-slider-grid .irs-grid-text {
  display: inline-block;
  min-width: 2.5rem;
  line-height: 1;
  font-size: 0.875rem;
  color: #77838f;
  border-radius: 6.1875rem;
  padding: 0.25rem;
}

.u-range-slider-grid .irs-grid-text.current {
  background: rgba(55, 125, 255, 0.1);
  color: #377dff;
}

.u-range-slider-grid .irs-grid-pol {
  height: .75rem;
  background-color: #e7eaf3;
}

.u-range-slider-grid .irs-grid-pol.small {
  display: none;
}

/*------------------------------------
  Select
------------------------------------*/
.dropdown-select.bootstrap-select li .dropdown-item.opt {
  padding-left: 1.5rem;
}

.dropdown-select.bootstrap-select .bs-searchbox {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.dropdown-select.bootstrap-select .dropdown-header .text {
  font-size: 80%;
  font-weight: 500;
  color: #1e2022;
  text-transform: uppercase;
}

.dropdown-select .form-control {
  margin-bottom: .5rem;
}

/*------------------------------------
  Slick
------------------------------------*/
[data-lazy] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.slick-cloned [data-scs-animation-in] {
  opacity: 0;
}

.u-slick {
  background: url(../svg/preloaders/circle-preloader.svg) no-repeat 50% 50%;
}

.u-slick .js-next,
.u-slick .js-prev {
  opacity: 0;
}

.u-slick.slick-initialized {
  background: none;
}

.u-slick.slick-initialized .js-slide,
.u-slick.slick-initialized .js-thumb {
  visibility: visible;
  height: auto;
  overflow: visible;
}

.u-slick.slick-initialized .js-next,
.u-slick.slick-initialized .js-prev {
  opacity: 1;
}

.u-slick .js-slide,
.u-slick .js-thumb {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.u-slick .js-slide:first-child,
.u-slick .js-thumb:first-child {
  height: auto;
}

/*------------------------------------
  Summernote Editor
------------------------------------*/
.note-modal-footer {
  height: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 20px 30px;
}

.note-modal-footer .note-btn {
  float: inherit;
}

.u-summernote-editor .note-editor.note-frame {
  border-color: #e7eaf3;
}

.u-summernote-editor .note-editor.note-frame .note-statusbar {
  background-color: #f8fafd;
  border-top-color: #e7eaf3;
}

.u-summernote-editor .note-toolbar {
  background-color: #f8fafd;
}

.u-summernote-editor .note-toolbar > .note-btn-group {
  border: 1px solid #e7eaf3;
  border-radius: 0.3125rem;
}

.u-summernote-editor .note-toolbar .note-dropdown-menu {
  min-width: 12.5rem;
  border-color: #e7eaf3;
  box-shadow: 0 0 35px rgba(140, 152, 164, 0.125);
  padding: .5rem;
}

.u-summernote-editor .note-toolbar .note-color .note-dropdown-menu {
  min-width: 21.5rem;
}

.u-summernote-editor .note-btn:focus, .u-summernote-editor .note-btn:hover {
  color: #377dff;
  background-color: transparent;
}

.u-summernote-editor .note-dropdown-item:hover {
  background-color: #f8fafd;
}

.u-summernote-editor .dropdown-toggle::after {
  display: none;
}

/*------------------------------------
  Tagsinput
------------------------------------*/
.u-tagsinput .bootstrap-tagsinput {
  width: 100%;
  border-color: #e7eaf3;
  border-radius: 0.3125rem;
  box-shadow: none;
  padding: .25rem;
  padding-bottom: 0;
}

.u-tagsinput .bootstrap-tagsinput::before {
  content: "|";
  display: inline-block;
  width: 1px;
  line-height: 1;
  font-size: .625rem;
  opacity: 0;
  padding: .75rem 0;
}

.u-tagsinput .bootstrap-tagsinput .tag {
  position: relative;
  display: inline-block;
  font-size: .875rem;
  color: #77838f;
  background-color: rgba(119, 131, 143, 0.1);
  border-radius: 0.3125rem;
  padding: .25rem 1.875rem .25rem .75rem;
  margin-bottom: .25rem;
  margin-right: 0;
}

.u-tagsinput .bootstrap-tagsinput .tag [data-role="remove"] {
  position: absolute;
  right: .5rem;
  top: 50%;
  color: #77838f;
  font-size: 1.25rem;
  outline: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.u-tagsinput .bootstrap-tagsinput .tag [data-role="remove"]::after {
  content: "\00d7";
}

.u-tagsinput .bootstrap-tagsinput .tag [data-role="remove"]:hover {
  color: #1e2022;
  box-shadow: none;
}

/*------------------------------------
  Typed.js
------------------------------------*/
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
          animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.u-hamburger,#mobileNav{
  display: none;
}
@media screen and (max-width: 1190px){
  .u-hamburger{
        display: inline-block;
        display: inline-block;
        position: absolute;
        right: 18px;
        top: 19px;
        z-index: 99999999999;
        background: transparent !important;
  }
  .u-hamburger.btn,.u-hamburger.btn:focus, .u-hamburger.btn.focus {
      background: transparent !important;
      outline: none !important;
      box-shadow: none !important;
  }
  .u-hamburger__inner, .u-hamburger__inner::before, .u-hamburger__inner::after {
    width: 1.9rem;
    height: 0.135rem;
  }
  .u-hamburger__inner, .u-hamburger__inner::before, .u-hamburger__inner::after{
    background-color: #05b6a6;
  }
  .u-hamburger:hover .u-hamburger__inner, .u-hamburger:hover .u-hamburger__inner::before, .u-hamburger:hover .u-hamburger__inner::after {
      background-color: #05b6a6;
  }
  div#mobileNav {
    display: block;
    background: #fff !important;
      position: absolute;
      z-index: 9999999999999;
      padding: 0;
  }
  .u-header__navbar{
    padding: 0px;
    padding: 0px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    max-height: calc(100vh - 188px);
    overflow: hidden;
    overflow-y: scroll !important;
    box-shadow: 1px 1px 32px -18px rgba(0,0,0,.5);
    width: 100%;
    margin: 0 0%;
    background: #fff !important;
  }
}
.show-on-mobile.mobile_app_icons button.navbar-toggler.btn.u-hamburger{
  display: none;
}
@media screen and (max-width: 1190px){
.contact-container button.navbar-toggler.btn.u-hamburger{
  display: inline-block !important;
}
ul#pagesSubMenu {
    height: inherit !important;
}

.u-header__navbar  .u-header__sub-menu .hs-has-sub-menu {
    padding: 0 !important;
}

.u-header__navbar  .u-header__sub-menu {
    border: none !important;
}

.u-header__sub-menu-nav-link-toggle::after,.u-header__nav-link-toggle::after {
    margin-left: 10px !important;
    margin-right: auto;
}

.navbar-nav .nav-link {
}

.u-header__nav-item:hover .u-header__nav-link, .u-header__nav-item:focus .u-header__nav-link, .navbar-expand-xl #navBar > ul > li.hs-sub-menu-opened > a, .navbar-expand-xl #navBar > ul > li.active > a{
  background: #018DC8 !important;color: #fff !important;
}

.navbar-expand-xl .u-header__nav-link, .navbar-expand-xl .u-header__sub-menu-nav-link {
    padding: 10px 20px;
    line-height: 23px;
}

.navbar-expand-xl .u-header__sub-menu .hs-has-sub-menu .hs-sub-menu {padding-left: 0;}

.navbar-expand-xl #navBar ul.hs-sub-menu > li.hs-sub-menu-opened > a:hover,
.navbar-expand-xl #navBar ul.hs-sub-menu > li.hs-sub-menu-opened > a:focus,
.navbar-expand-xl #navBar ul.hs-sub-menu > li.active > a,
.navbar-expand-xl #navBar ul.hs-sub-menu > li.hs-sub-menu-opened > a {
    background: #F2FDF9;
    color: #121212;
}

.navbar-expand-xl #navBar > ul > li > ul > li > a {
    padding: 10px 30px;line-height: 23px;
}

.navbar-expand-xl #navBar > ul > li > ul > li > a:hover,
.navbar-expand-xl #navBar > ul > li > ul > li > a:active,
.navbar-expand-xl #navBar > ul > li > ul > li > a:focus,
.navbar-expand-xl #navBar > ul > li > ul > li.active > a {
    background: #F2FDF9;
    color: #121212;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #121212;
    line-height: 25px;
}

.navbar-expand-xl ul.hs-sub-menu > li.hs-has-sub-menu > a {padding: 10px 30px;}

.navbar-expand-xl ul.hs-sub-menu > li.hs-has-sub-menu > ul.hs-sub-menu > li > a {
    padding: 10px 40px;line-height: 23px;
}

.navbar-expand-xl ul.hs-sub-menu > li.hs-has-sub-menu > ul.hs-sub-menu > li > a:hover,
.navbar-expand-xl ul.hs-sub-menu > li.hs-has-sub-menu > ul.hs-sub-menu > li > a:focus,
.navbar-expand-xl ul.hs-sub-menu > li.hs-has-sub-menu > ul.hs-sub-menu > li.active > a {
    background: #EBF8FF !important;
    color: #0196D2 !important;
}

.navbar-nav li.simple-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #121212;
    padding: 10px 20px;
    line-height: normal;line-height: 25px;
}

.navbar-nav li.simple-item.active a,.navbar-nav li.simple-item:hover a,.navbar-nav li.simple-item:focus a {
    background: #018DC8 !important;
    color: #fff !important;
}

.navbar-nav li.simple-item.green_link a {
    background: #05B5A5;
    color: #fff !important;
}

.navbar-nav li.simple-item.green_link.active a,.navbar-nav li.simple-item.green_link:hover a,.navbar-nav li.simple-item.green_link:focus a {
    background: #018DC8 !important;
    color: #fff !important;
}


}
@media screen and (max-width: 991px){
  .welcome-text {
      margin-right: 0px;
  }
}
@media screen and (max-width: 785px){
  .callto-actions-top {
      margin-top: 4px;
  }
  .u-hamburger {
    right: 18px;
    top: 9px;
  }
}
@media screen and (max-width: 575px){

.contact-container button.navbar-toggler.btn.u-hamburger{
  display: none !important;
}
  .show-on-mobile.mobile_app_icons button.navbar-toggler.btn.u-hamburger {
    display: inline-block !important;
      right: 0px;
      top: 3px;
      margin-right: -45px;
  }
  .show-on-mobile.mobile_app_icons a:nth-child(2) {
      margin-right: 0px;
  }
}
#fh5co-header-section .container-fluid {
    max-width: inherit;
    padding-right: 25px;
    padding-left: 25px;
}
@media screen and (max-width: 1190px) {
    #fh5co-header-section .container-fluid {
        max-width: inherit;
        padding-right: 15px;
        padding-left: 15px;
    }
}
#banner-slider .item-bg {
    max-height: 427px;
    overflow: hidden;
}
.inner_banner_content_wrap > img {
    max-height: 427px;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1600px) {
    .item-bg {
        min-height: 385px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 385px;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1440px) {
    .item-bg {
        min-height: 375px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 375px;
        width: 100%;
        object-fit: cover;
    }
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
        left: 50%;
        transform: translateX(-5%);
    }
}
@media screen and (max-width: 1280px) {
    .item-bg {
        min-height: 345px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 345px;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1024px) {
    .item-bg {
        min-height: 315px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 315px;
        width: 100%;
        object-fit: cover;
    }
}
div#banner-slider .banner-item .digi-banner-content h1 {
    font-size: 34px;
    line-height: 48px;
    color: #121212;
    margin-bottom: 15px;
}
div#banner-slider .banner-item .digi-banner-content p {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 30px;
    color: #121212;
    margin-bottom: 15px;
}

div#banner-slider .owl-dots .owl-dot span,div#banner-slider .owl-dots .owl-dot{
    cursor: text;
}

div#banner-slider .owl-dots .owl-dot span,div#banner-slider .owl-dots .owl-dot.active{
    background: transparent !important;
}

div#banner-slider .owl-dots .owl-dot.active span {
    font-weight: bold;
}

div#banner-slider .owl-nav {
    margin: 0;
    position: absolute;
    bottom: 12px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
}

div#banner-slider .owl-nav [class*=owl-] span {
    font-size: 25px;
    color: #018dc8;
    transition: all .3s ease;
    box-shadow: 0px 2px 45px 18px #fff;
    border-radius: 50%;;
}

div#banner-slider .owl-nav [class*=owl-]:hover span {
    color: #05b6a6;
    transition: all .3s ease;
}

div#banner-slider .owl-nav .owl-prev {
    margin-right: 80px;
}

div#banner-slider .owl-nav [class*=owl-] {
    background: transparent !important;
}

div#banner-slider .owl-theme .owl-nav .owl-prev {
    margin-right: 74px;
}
div#banner-slider .owl-theme .owl-nav button{
    background: transparent !important;
}
div#banner-slider .owl-theme .owl-nav button span {font-size: 23px;color: #018dc8;border-radius: 50%;}

@media screen and (min-width: 1100.99px) {
div#banner-slider .banner-item .digi-banner-content.banner-item-1 h1 {
    line-height: 42px;
    margin-bottom: 10px;
}

div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
    font-size: 22px;
    margin-bottom: 7px;
}
}


@media screen and (max-width: 1280.98px){
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 {
        padding-right: 0%;
    }
}


@media screen and (max-width: 1100px) {
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 12px;
    }
    div#banner-slider .banner-item .digi-banner-content p {
        font-family: Montserrat, sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 28px;
        color: #121212;
        margin-bottom: 12px;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 h1 {
        margin-bottom: 10px;
    }

    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 22px;
        margin-bottom: 7px;
    }
}
@media screen and (max-width: 991px) {
    .item-bg {
        min-height: 300px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 300px;
        width: 100%;
        object-fit: cover;
    }
    div#banner-slider .owl-nav {
        bottom: -5px;
    }
    div#banner-slider .owl-dots {
        bottom: 3px;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 {
        padding-right: 5%;
    }
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 8px;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    div#banner-slider .banner-item .digi-banner-content p {
        font-size: 14px;
        line-height: 27px;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 970px) {

    div#banner-slider .banner-item .digi-banner-content.banner-item-1 {
        padding-right: 15%;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 14px;
        line-height: 27px;
        margin-bottom: 5px;
    }
    /*div#banner-slider .banner-item .digi-banner-content.banner-item-1 p:not(.h2){
        display: none;
    }*/
}


@media screen and (max-width: 700px) {

    div#banner-slider .banner-item .digi-banner-content.banner-item-1 {
        padding-right: 0%;
    }
}
@media screen and (max-width: 630px) {
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 8px;
    }
    div#banner-slider .banner-item .digi-banner-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 575px) {
    .item-bg {
        min-height: 250px;
        position: relative;
    }
    .inner_banner_content_wrap > img {
        min-height: 250px;
        width: 100%;
        object-fit: cover;
    }
    div#banner-slider .owl-nav {
        left: calc(50% + 12px);
    }
    div#banner-slider .owl-dots {
        bottom: 3px;
        left: calc(50% + 11px);
    }
    div#banner-slider .banner-item .container {
        top: 45%;
    }
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 8px;
    }
    div#banner-slider .banner-item .digi-banner-content p,
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 5px;
    }
    /*div#banner-slider .banner-item .digi-banner-content.banner-item-1 p:not(.h2){
        display: none;
    }*/

}

@media screen and (max-width: 460px) {
    div#banner-slider .owl-nav [class*=owl-] span {
        font-size: 20px;
        box-shadow: 0px 2px 20px 8px #fff;
    }

    div#banner-slider .owl-nav {
        bottom: -3px;
    }

    div#banner-slider .owl-nav .owl-prev {
        margin-right: 65px;
    }

    div#banner-slider .owl-dots .owl-dot span {
        font-size: 13px;
        margin: 5px;
    }

    div#banner-slider .owl-dots {
        bottom: 4px;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 h1 {
        margin-bottom: 13px;
        font-size: 21px;
    }
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 {
        margin-right: -70px;
    }
}

@media screen and (max-width: 430px) {
    div#banner-slider .owl-nav {
        bottom: 1px;
    }
    div#banner-slider .owl-dots {
        bottom: 9px;
    }
    div#banner-slider .owl-nav .owl-prev {
        margin-right: 55px;
    }
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    div#banner-slider .banner-item .digi-banner-content p,
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 3px;
        font-weight: 500;
    }
    div#banner-slider .banner-item .container {
        top: 19px;
    }
    div#banner-slider.owl-carousel .owl-item .item-bg.bg1 img {
        object-position: -420px;
    }
}

@media screen and (max-width: 400px) {
    div#banner-slider .owl-nav [class*=owl-] span {
        font-size: 18px;
        box-shadow: 0px 2px 20px 8px #fff;
    }
    div#banner-slider .owl-nav .owl-prev {
        margin-right: 45px;
    }
    div#banner-slider .owl-dots .owl-dot span {
        font-size: 12px;
        margin: 3px;
    }
}

@media screen and (max-width: 387px) {
    div#banner-slider .banner-item .digi-banner-content h1 {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 5px;
    }
    div#banner-slider .banner-item .digi-banner-content p,
    div#banner-slider .banner-item .digi-banner-content.banner-item-1 p.h2 {
        font-size: 13px;
        line-height: 21px;
        margin-bottom: 3px;
        font-weight: 500;
    }
    div#banner-slider .banner-item .container {
        top: 19px;
    }
    div#banner-slider.owl-carousel .owl-item .item-bg.bg1 img {
        object-position: -420px;
    }
    div#banner-slider .owl-dots {
        left: calc(50% + 11px);
    }
    div#banner-slider .owl-nav {
        bottom: 2px;
        left: calc(50% + 12px);
    }
    div#banner-slider .owl-dots .owl-dot span {
        font-size: 11px;
        margin: 2px;
    }
    div#banner-slider .owl-nav [class*=owl-] span {
        font-size: 17px;
        box-shadow: 0px 2px 50px -12px #fff;
    }
}
.u-header__nav-link-toggle::after {
    font-size: 90%;
    font-weight: bolder;
}

.main-menu-wrap .navbar-container {
    justify-content: space-between;
}
body #fh5co-primary-menu li.sf-with-ul a:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    position: relative;
    float: none;
    margin-left: 4px;
    margin-right: -7px;
    right: -7px;
    font-size: 12px;
    margin-top: 0;
    color: #121212;
    width: 6px;
    height: 6px;
    border: none;
    border-right: 1px solid #121212;
    border-bottom: 1px solid #121212;
    transform: rotate(43deg) translate(-55%, -5%);
    top: 2px;
    background: #fff;
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu {
    transform: translate(-60px);
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu:before {
    left: 50px;
}
@media screen and (max-width: 655px) {
    .callto-links-top a.invert {
        display: none;
    }
}
@media screen and (min-width: 1500px) {
    div#banner-slider .banner-item .container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
@media screen and (max-width: 575px) {
    .show-on-mobile.mobile_app_icons {
        top: 50%;
        transform: translateY(-47%);
    }
    .fh5co-nav-toggle {
        top: -43px;
    }
    .contact-container button.navbar-toggler.btn.u-hamburger,
    .main-menu-wrap div#callto-actions-top {
        display: inline-block !important;
    }
}
@media screen and (max-width: 499px) {
    .fh5co-nav-toggle {
        top: -39px;
    }
}
@media screen and (max-width: 450px) {
    .fh5co-nav-toggle {
        top: -34px;
    }
}
@media screen and (max-width: 380px) {
    .fh5co-nav-toggle {
        top: -33px;
    }
}
@media screen and (min-width: 1850px) {
    div#banner-slider .banner-item .container {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
.main-menu-wrap {
    padding-top: 0px;
    padding-bottom: 5px;
}
@media screen and (max-width: 430px) {
    div#banner-slider.owl-carousel .owl-item .item-bg img {
        opacity: 0.5;
    }
    div#banner-slider.owl-carousel .owl-item .item-bg.bg3 img {
        object-position: 70%;
    }
}
ul.list-with-check-mark button[data-toggle="popover"] {
    /*background:0 0!important;border:1px solid #272727;color:#272727;border-radius:25px;font-size:11px;width:20px;height:20px;padding:0;text-align:center;line-height:19px;position:relative;top:-1px;margin-left:4px*/
    background: url("https://digimedspa.s3.us-west-1.amazonaws.com/mp-icon.png") no-repeat !important;
    background-size: contain !important;
    border: none;
    width: 20px;
    height: 20px;
    padding: 0;
    text-align: center;
    line-height: 19px;
    position: relative;
    top: -1px;
    margin-left: 4px;
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown  > .row > li > ul li a:before {
    content: "•";
}
.why-digimedspa-section .card-body {
    padding: 0 1.25rem 0.5rem;
}
#gtco-footer .gtco-widget ul.quick-links li {
    margin-bottom: 15px;
}
#gtco-footer .gtco-widget ul.quick-links li a {
    display: block;
}
.welcome-text a.mobile_login_link {
    display: none;
}
@media screen and (max-width: 575px) {
    .welcome-text a.themebtn {
        float: left;
        margin-bottom: 10px;
    }
    .welcome-text a.mobile_login_link {
        display: inline-block;
        float: right;
        margin-bottom: 10px;
        margin-top: 5px;
    }
}
@media screen and (max-width: 609px) {
    .callto-actions-top {
        margin-right: 55px;
    }
}
body.mfp-zoom-out-cur div#fh5co-wrapper {
    z-index: 0;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
    min-width: 75em;
}
/*#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > li {
    width: 42%;
}*/
ul.list-with-check-mark button[data-toggle="popover"] {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/mp-icon.png) center center/contain no-repeat !important;
    width: 19px;
    height: 19px;
    top: -2px;
    margin-left: 2px;
}
.esthetic-practice .section-gradient-text {
    position: relative;
    padding-left: 40px;
}
.esthetic-practice .section-gradient-text:before {
    content: "";
    width: 30px;
    height: 2px;
    background: #05b3a9;
    position: absolute;
    left: 0;
    top: 18px;
}
@media screen and (max-width: 1190px) {
    .main-menu-wrap {
        padding-top: 15px;
    }
}
@media screen and (max-width: 657px) {
    .side-social-icons {
        left: 0;
        top: auto;
        bottom: 315px;
    }
    .side-social-icons ul li a {
        width: 25px;
        padding: 3px 4px;
        font-size: 13px;
    }
    .chat-icons a.chat-icon1 img {
        max-width: 17px;
    }
    .chat-icons a.chat-icon2 img {
        max-width: 13px;
    }
    .chat-icons a {
        width: 30px;
        height: 30px;
        line-height: 27px;
    }
    .fixed-area {
        right: 0;
        top: auto;
        bottom: 330px;
    }
    ul.list-with-check-mark button[data-toggle="popover"] {
        width: 28px;
        height: 20px;
        top: -2px;
        margin-left: 2px;
        position: relative;
        z-index: 4;
    }
    .rounded-border-container {
        padding: 50px 10px;
    }
    .who-we-are-text-with-bg p {
        font-size: 20px;
        line-height: 30px;
    }
    .section-arrow.section-inner-arow {
        display: none;
    }
    .media.phone-link.link_new {
        flex-basis: auto;
    }
}
.main-menu-wrap {
    background: #fff;
}
#fh5co-primary-menu .fh5co-sub-menu > li.sf-withul:hover > a,
#fh5co-primary-menu .fh5co-sub-menu li > a:hover,
#fh5co-primary-menu .fh5co-sub-menu li > a:active,
#fh5co-primary-menu .fh5co-sub-menu > li.hover-1.sf-withul:hover > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:hover,
#fh5co-primary-menu .fh5co-sub-menu li.hover-1 > a:active,
#fh5co-primary-menu .fh5co-sub-menu > li.hover-2.sf-withul:hover > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:hover,
#fh5co-primary-menu .fh5co-sub-menu li.hover-2 > a:active,
#fh5co-primary-menu .fh5co-sub-menu > li.hover-3.sf-withul:hover > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:hover,
#fh5co-primary-menu .fh5co-sub-menu li.hover-3 > a:active,
#fh5co-primary-menu .fh5co-sub-menu > li.hover-4.sf-withul:hover > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:hover,
#fh5co-primary-menu .fh5co-sub-menu li.hover-4 > a:active {
    background: #f2fdf9 !important;
    color: #05b6a6 !important;
}
.section-arrow-2 img,
.section-arrow img {
    max-width: 360px;
}
.section-arrow-2 {
    top: 65px;
    margin-top: -90px;
}
.section-arrow {
    top: -70px;
    margin-bottom: -100px;
}
.section-arrow.adjust_arrow {
    margin-bottom: -70px;
}
@media screen and (max-width: 991px) {
    .section-arrow,
    .section-arrow-2 {
        margin-bottom: 0px;
        margin-top: 0px;
        height: 0px;
        display: none;
    }
    .esthetic-practice .blue-light-bg,
    .esthetic-practice .transparent-bg {
        padding: 50px 0 0;
    }
}
#fh5co-primary-menu .fh5co-sub-menu li.hover-2.active > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-1.active > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-3.active > a,
#fh5co-primary-menu .fh5co-sub-menu li.hover-4.active > a,
#fh5co-primary-menu .fh5co-sub-menu li.active > a {
    background: #ebfaff !important;
    color: #007c99 !important;
}
.sticky-banner.stuck .main-menu-wrap {
    padding-top: 0px;
    padding-bottom: 6px;
}


.blue-light-bg{
   padding-top: 30px;
   padding-bottom: 40px;
}
.section-arrow-2 img, .section-arrow img {
    max-width: 280px;
}
.section-arrow{
   left: 42%;
}
.transparent-bg {
    padding-bottom: 10px;
}
.section-arrow-2 {
    left: 42%;
 }
 .section-arrow-2 {
    margin-top: -110px;
    margin-bottom: 10px;
}
.section-arrow.adjust_arrow {
    margin-bottom: -70px;
}
.section-arrow-2.adjust_arrow2 {
    margin-top: -90px;
    margin-bottom: 20px;
}
.banner_overlay_mobile {
    display: none;
}

.digi-banner-mobile-buttons{
   display: none;
}

.esthetic-practice .section-gradient-text {
    text-transform: uppercase;
}


@media screen and (max-width: 575px){
   .topbar-search-box-text {
       font-size: 12px;
      margin-bottom: 5px;
   }
   .topbar-search-form .form-control {
       font-size: 11px;
       height: 30px !important;
   }
   .topbar-search-form .form-contro::placeholder{
      color: #272727;
   }
   .topbar-search-form .search-icon {
       padding: 7px 11px;
    }
    .topbar-search-form .search-icon img {
       max-width: 20px;
   }
   .topbar-search-form .input-group .form-control {
       padding: 3px 0 0;
   }
   .topbar-search-form {
       margin-bottom: 9px;
   }
   .mobile-logo img {
       max-width: 181px;
   }
   .digi-top-bar:after{display: none;}
   .u-hamburger {
       right: 6px;
   }
   .callto-actions-top {
       margin-right: 40px;
      margin-top: 3px;
   }
   .main-menu-wrap .navbar-container {
       justify-content: space-between;
       gap: 0;
   }
   .main-menu-wrap {
       padding-top: 7px;
   }
   .medspa-clinic {
       margin: 15px 0 10px;
    }
    .u-hamburger__inner, .u-hamburger__inner::before, .u-hamburger__inner::after {
       border-radius: 3px;
   }
   .item-bg {
       min-height: 205px;
    }
   .banner_overlay_mobile {
      display: block;
          background: url(https://digimedspa.s3.us-west-1.amazonaws.com/banner_overlay_mobile.png) no-repeat top left;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
   }
   div#banner-slider .banner-item .container {
       top: 18px;
       transform: translateY(0) translateX(0);
       left: 0;
       padding: 0 15px;
   }
   .digi-banner-buttons {
       display: none;
   }
   .digi-banner-mobile-buttons{display: block;}
   a.themebtn.mobile {
       padding: 11px 11px;
       text-align: center !important;
   }

   a.themebtn.mobile img {
       width: initial;
   }
   div#banner-slider .banner-item .digi-banner-content h1 {
       font-size: 22px;
       line-height: normal;
       margin-bottom: 8px;
   }
   div#banner-slider .banner-item .digi-banner-content p {
       font-size: 13px;
       line-height: 20px;
       margin-bottom: 10px;
       font-weight: 400;
   }
   div#banner-slider.owl-carousel .owl-item img{object-position: 0px;}
   div#banner-slider .banner-item .digi-banner-content {
       margin-right: -40px;
   }
   .heading-tag-line {
       font-size: 13px;
   }

   .heading-tag-line img {
       margin-right: 5px;
       top: -1px;
       max-width: 26px;
   }
   .heading-with-sub h2.section-content-heading,.heading-with-sub h2.section-heading {
       font-size: 22px;
       line-height: 33px;
   }

   .black-caption + p,.paragraph,.section-para {
       font-size: 14px !important;
       line-height: 26px;
   }

   section#home-about-section {
       padding-top: 140px !important;
   }
   .buttons-group {
       flex-direction: row;
   }

   .buttons-group a.themebtn.invert.book span {
       display: none;
   }

   .buttons-group a.themebtn {
       font-size: 11px;
       padding: 12px 10px 12px 13px;
   }

   .buttons-group .media.phone-link {
       flex-basis: auto;
   }

   .buttons-group {
       gap: 7px;
   }

   a.themebtn.with-icon.learn-more img {
       margin-left: 8px;
       margin-top: -1px;
       max-width: 6px;
   }

   .buttons-group a.themebtn.invert.book {
       padding: 12px 12px 12px 12px;
   }

   .media.phone-link a {
       font-size: 13px;
   }

   .media.phone-link p {
       font-size: 10px;
   }

   .media.phone-link .media-left {
       padding-right: 0;
       margin-right: 10px;
       padding: 8px;
       background: #fff;
       border-radius: 50%;
       box-shadow: 0px 15px 35px rgba(1,142,199,0.24);
   }

   .media.phone-link .media-left img {
       max-width: 26px !important;
   }
   .esthetic-practice-head-mobile {
       background: url(https://digimedspa.s3.us-west-1.amazonaws.com/mobile_bg_esthetic_practice.png) no-repeat center center;
       background-size: cover;
       padding: 30px 0;
       margin-top: -15px;
   }

   .black-caption {
       margin-bottom: 13px;
   }

   .esthetic-practice-head-mobile .black-caption,.esthetic-practice-head-mobile .black-caption h2.section-heading {
       margin-bottom: 0px;
   }
   .esthetic-practice .blue-light-bg, .esthetic-practice .transparent-bg {
       padding: 30px 0 0;
   }
   .esthetic-practice .section-gradient-text {
       text-transform: uppercase;
   }

   .esthetic-practice .section-gradient-text {
       padding-left: 30px;
       font-size: 13px;
       line-height: normal;
   }

   .esthetic-practice .section-gradient-text:before {
       width: 22px;
       top: 7px;
   }
   .list-bg-img{
      line-height: 25px;
      padding-left: 27px;
      padding-right: 10px;
   }
   .section-img-box {
       margin: 0 -30px 0;
   }
   .section-img-box.adjust {
       margin: 0 -20px 0;
   }

   section#home-pricing-table-section {
       padding-top: 40px;
       padding-bottom: 10px;
   }
   section#home-pricing-table-section .heading-with-sub h2.section-heading {
       line-height: 33px;
       margin-bottom: 0px;
   }

   section#home-pricing-table-section .black-caption {
       margin-bottom: 10px;
   }

   section#home-pricing-table-section .black-caption:not(.mt-5), 
   section#home-pricing-table-section .black-caption:not(.mt-5) h2, 
   section#home-pricing-table-section .sub-head,
   section#home-pricing-table-section p.paragraph {text-align: left !important;}

   section#home-pricing-table-section .sub-head {
       font-size: 13px;
       text-transform: uppercase;
       margin-bottom: 15px;
   }

   section#home-pricing-table-section p.paragraph {
       margin-bottom: 20px;
   }
}

section#home-pricing-table-section .sub-head{text-transform: uppercase;}

@media screen and (max-width: 430px){
div#banner-slider.owl-carousel .owl-item .item-bg.bg1 img {
    object-position: -180px;
}
}
@media screen and (max-width: 657px){
   .side-social-icons {
       bottom: 165px;
   }
   .fixed-area {
       bottom: 180px;
   }
}
@media screen and (max-width: 375px){
   .side-social-icons {
       bottom: 185px;
   }
   .fixed-area {
       bottom: 204px;
   }
}


.mobile-pricing-table-wrap {
    position: relative;
    box-shadow: 0px 0px 13px rgba(1, 142, 199, 0.24);
    border-radius: 10px;
    margin: 0 5px;
}

.mobile-pricing-table-wrap .pricing-head {
    display: flex;
    align-items: center;
}

.mobile-pricing-table-wrap .pricing-head .head-col {
    flex-basis: 100%;
    text-align: center;
    align-items: center;
    line-height: normal;
    color: #019ABC;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 8px 0;
    line-height: 22px;
}

.mobile-pricing-table-wrap .pricing-head .head-col.active {
/*    background: #34AEC9;
    color: #fff;
    border-radius: 10px 10px 0px 0px;*/
    position: relative;
}

.mobile-pricing-table-wrap .pricing-head .head-col.active:before {
    content: 'Popular';
    background: #34AEC9;
    position: absolute;
    top: -23px;
    width: 100%;
    left: 0;
    color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 13px;
}

.mobile-pricing-table-wrap .pricing-border {
    border: 1px solid rgba(1,154,188 ,0.8);
    padding: 10px 0;
    border-radius: 0 0 10px 10px;
}

.mobile-pricing-table-wrap .mp-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-pricing-table-wrap .mp-row .mp-column {
    flex-basis: 100%;
    text-align: center;
}

.mobile-pricing-table-wrap .mp-row .mp-column.transparent {
    font-size: 13px;
    color: #272727;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0;
    line-height: normal;
}

.mobile-pricing-table-wrap .mp-row .mp-column.with-bg {
    font-size: 12px;
    padding: 10px 0;
    line-height: normal;
    background: #EBFAFF;
}
.mobile-pricing-table-wrap .mp-row.mp-top-space {
    margin-top: 10px;
}
.mobile-pricing-table-wrap .mp-row .mp-column.transparent button {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    top: -6px;
}
.mp-bottom {
    box-shadow: 0px 0px 13px rgba(1, 142, 199, 0.24);
    border-radius: 10px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.mp-bottom .info {
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 15px;
    margin-top: 15px;
}

.mp-bottom .mp-button a.themebtn.invert {
    background: rgba(1,154,188,0.8) !important;
    width: 90%;
    padding: 12px 0;
}

.mp-bottom .mp-button a.themebtn.invert img {
    margin-left: 10px;
    position: relative;
    top: -1px;
}



/*section#home-pricing-table-section {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/pricing_section_bg_new.png) no-repeat top center;
    background-size: cover;
}*/

@media screen and (min-width:1366px){
    section#home-pricing-table-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


section#home_learning_center {
    position: relative;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/home_learning_center_bg.png) no-repeat center top;
    background-size: cover;
    padding: 60px 0;
}

.learning_box a {
background: #fff;
    display: flex;
    text-align: center;
    box-shadow: 0px 0px 13px rgba(1, 142, 199, 0.24);
    border-radius: 8px;
    margin: 15px 0;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
/*.learning_box a span {flex-basis: 100%;}*/
.learning_box a.icon-1 {padding: 10px 30px 15px;}

.learning_box a.icon-2 {
    padding: 25px 20px 15px;
}

.learning_box a.icon-3 {
    padding: 17px 40px 15px;
}

.learning_box a.icon-4 {
    padding: 35px 26px 15px;
}
.learning_box a span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    display: block;
    margin-top: 7px;
    margin-bottom: -3px;
    color: #121212;
}
@media screen and (max-width: 991px){
    section#home_learning_center .row.justify-content-between.align-items-center {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px){
    section#home_learning_center {
        padding: 15px 0 30px;
    }
    section#home_learning_center .row.justify-content-between.align-items-center .row .col {
        max-width: 50% !important;
    }

    .learning_box a span {
        font-size: 14px;
    }
    .learning_box a.icon-4 {
       padding: 25px 26px 15px;
   }
}

@media screen and (max-width: 575px){
   section#business-consultation-section {
       position: relative;
   }

   section#business-consultation-section .business-consultation-section-overlay {
       display: block;
       background: url(https://digimedspa.s3.us-west-1.amazonaws.com/home_professional_overlay.png) no-repeat top left;
       background-size: cover;
       width: 100%;
       height: 100%;
       position: absolute;
       left: 0;
       top: 0;
       z-index: 0;
   }

   .business-consultation {
       padding: 30px 0;
   }

   section#business-consultation-section .container.mt-5 {
       margin-top: 0px !important;
   }

   section#business-consultation-section .row.align-items-center.pt-5 {
       padding-top: 0px !important;
   }

   .business-consultation .black-caption .section-content-heading {
       color: #121212 !important;
       line-height: 33px;
   }

   .business-consultation .buttons-group .media.phone-link {
       flex-basis: auto;
   }

   .business-consultation .media.phone-link * img {
       filter: initial;
   }

   .business-consultation .media.phone-link * a, .business-consultation .media.phone-link * p {
       background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }
   section#portfolio-home-sectoin {
       padding: 30px 0 30px;
   }
   .portfolio_home_wrap {
       margin-top: -10px;
       margin-bottom: -10px;
   }

   section#portfolio-home-sectoin .container {
       max-width: 95%;
      }
      .swiper-button-next, .swiper-button-prev {
       top: 46%;
   }

   .portfolio_home_wrap .swiper-button-prev {
       left: 5px;
   }

   .portfolio_home_wrap .swiper-button-next, .portfolio_home_wrap .swiper-button-prev {
       width: 22px;
       height: 40px;
       background-size: 22px 40px;
       filter: brightness(0) invert(1);
   }

   .portfolio_home_wrap .swiper-button-next {
       right: 5px;
   }
   section#portfolio-home-sectoin .buttons-group {
       margin: 20px 0 0 !important;
   }
   section#why-digimedspa-section .why-digimedspa {
       background: url(https://digimedspa.s3.us-west-1.amazonaws.com/why_digimedspa_bg_mobile.png) no-repeat center center;
       background-size: 100% 100%;
      padding: 80px 0 20px;
   }

   .card-style p.card-text {
       font-size: 13px;
       line-height: 26px;
   }

   .card-style {
       margin-bottom: 30px;
   }
   section#why-digimedspa-section .why-digimedspa .buttons-group {
       margin-top: 10px !important;
       margin-bottom: 20px !important;
   }
   section#home-mobile-app-section {
       padding: 200px 0 30px;
   }

   section#home-mobile-app-section .home-mobile-app-image-wrap img {
       width: 260px;
   }

   section#home-mobile-app-section .home-mobile-app-image-wrap {
       text-align: center;
       margin-bottom: 20px;
   }

   .home-mobile-app-section-content .heading-with-sub h2.section-heading {
       font-size: 22px !important;
       line-height: 33px;
       margin-bottom: 10px !important;
   }

   .home-mobile-app-section-content .heading-with-sub:before {
       height: 170%;
       top: -24px;
   }

   .home-mobile-app-section-content .black-caption.with-bg {
       margin-bottom: 25px;
   }
   .home-mobile-app-section-content .download-buttons-group {
       flex-wrap: nowrap;
   }
   section#home-reviews-section {
       padding: 30px 0;
       z-index: 2 !important;
   }

   section#home-reviews-section .black-caption h2.section-heading {
       margin-bottom: 10px;
   }

   section#home-reviews-section .sub-head {
       margin-bottom: 20px;
   }

   .home-review-item {
       padding: 20px 25px;
   }

   .home-review-item p {
       font-size: 14px;
       text-align: left;
       line-height: 26px;
       margin-bottom: 30px;
   }

   section#home-reviews-section .center-buttons {
       margin: 20px 0 10px !important;
   }

   section#home-reviews-section .center-buttons a.themebtn.invert {
       font-size: 11px;
       padding: 12px 13px 12px 13px;
   }
   footer#gtco-footer {
       padding: 190px 0 0;
   }

   footer#gtco-footer .my_row_footer {
       padding: 0;
       margin-bottom: 25px;
   }

   .contact_info_footer p {
       font-size: 15px !important;
       line-height: 26px !important;
   }

   .my_row_footer [class*="col-"]:not(:last-child) {
       margin-bottom: 20px;
   }
   .portfolio_home_wrap .item-frame .picture .detail h3 {
       line-height: normal;
       margin: 2px;
       font-size: 16px;
   }

   .portfolio_home_wrap .item-frame .picture .detail span {
       font-size: 14px;
       margin-bottom: 5px !important;
   }
}

@media screen and (max-width: 991px){
   .rounded-border-container {
       flex-direction: column-reverse;
   }
}
.section-arrow.section-inner-arow {
    left: -1%;
    top: -20px;
    margin-bottom: 0px;
}

.section-arrow.section-inner-arow img {
    max-width: 200px;
}
@media screen and (max-width: 575px){
   section#inner-banner-section .inner_banner_content_wrap img {
       min-height: 205px;
   }
   .inner_banner_content h1 {
       font-size: 22px;
       padding-left: 30px;
       line-height: normal;
   }
   .rounded-border-container {
      padding: 15px 0px;
       border: 5px solid #F7FDFC;
       border-radius: 20px;
   }
   .rounded-border-container .section-content-box p.paragraph {
       margin-bottom: 15px;
   }

   .who-we-are-text-with-bg {
       padding-top: 50px;
       padding-bottom: 40px;
   }

   .who-we-are-text-with-bg p {
       font-size: 16px;
       line-height: 26px;
   }
   .vision-and-mission {
       padding-top: 30px;
       padding-bottom: 110px;
   }
}

.who-we-are-text-with-bg .media-body {
    text-align: left;
}
.who-we-are-text-with-bg .buttons-group .media.phone-link {
    flex-basis: auto;
}

section.vision-and-mission {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/mission_vission_section_bg.png) no-repeat center center;
    background-size: cover;
}

section.vision-and-mission .container-fluid {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/mission_vission_center_line.png) no-repeat center center;
    background-size: 20px;
}
@media screen and (max-width:1170px){
section.vision-and-mission .container-fluid {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/mission_vission_center_line.png) no-repeat center center;
    background-size: 15px;
    background-position-x: 49.5%;
}
}

@media screen and (max-width:767px){
section.vision-and-mission .container-fluid {
    background:transparent !important;
}
}



@media screen and (max-width: 575px){
   section.vision-and-mission .heading-with-sub h2.section-heading {
       margin-bottom: 0px;
   }

   section.vision-and-mission  .black-caption {
       margin-bottom: 10px;
   }

   section.vision-and-mission  p.paragraph {
       padding-right: 0px !important;
       margin-bottom: 15px;
   }

   section.vision-and-mission  .section-img-wrap {
       margin-top: 20px;
       margin-left: -18px;
       margin-right: -18px;
   }

   section.vision-and-mission  .mobile_reverse {
       flex-direction: column-reverse;
       margin-top: 40px;
   }

   section.vision-and-mission .mobile_reverse .section-img-wrap {
       margin-left: -25px;
       margin-right: -35px;
       margin-bottom: 20px;
   }
   .why-digimedspa-section{
      z-index: 3 !important;
   }
   .unlock-wrapper {
       padding-top: 100px;
       padding-bottom: 50px;
       z-index: 2;
       position: relative;
       background-position: 50%;
       overflow: hidden;
   }
   .unlock-wrapper:before {
       content: '';
       background: url(https://digimedspa.s3.us-west-1.amazonaws.com/home_professional_overlay.png) no-repeat center center;
       background-size: cover;
       position: absolute;
       width: 100%;
       height: 100%;
       z-index: 0;
   }

   .unlock-wrapper h2.text-white.section-content-heading {
       color: #121221 !important;
   }

   .unlock-wrapper .media.phone-link a,.unlock-wrapper .media.phone-link p.text-white {
       background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   section#home-about-section.who_we_help_section0 {
       padding-top: 120px !important;
       padding-bottom: 35px;
   }

   section#home-about-section.who_we_help_section0 .black-caption {
       line-height: normal;
       margin-bottom: 0px;
   }

   section#who_we_help_section1 {
       background: #E7F7FF;
       padding: 30px 0 15px;
   }

   section#who_we_help_section1 h2.section-content-heading {
       text-align: left !important;
   }

   section#who_we_help_section1 p.paragraph {
       text-align: left !important;
       margin-bottom: 10px;
   }

   
   .who_we_help_section1_bg {
       background: transparent;
       padding: 0;
   }

   .how_we_help_box {
       padding: 25px 0px 20px !important;
   }

   .how_we_help_box:after {
       right: inherit !important;
       left: 0 !important;
       transform: translate(0, 0);
   }

   .how_we_help_box > span {
       height: 34px;
       width: 34px;
       line-height: 34px;
       font-size: 15px;
       margin-bottom: 17px;
   }

   .how_we_help_box h2 {
       font-size: 18px;
       line-height: normal;
       margin-bottom: 10px;
   }

   .how_we_help_box p {
       font-size: 14px;
       line-height: 26px;
   }

   section#who_we_help_section2 {
       padding: 30px 0;
   }

   section#who_we_help_section2 .heading-with-sub h2.section-heading {
       text-align: left;
       line-height: 33px !important;
       margin-bottom: 15px;
   }

   section#who_we_help_section2 
    p.paragraph {
       margin-bottom: 0;
       text-align: left !important;
   }

   section#who_we_help_section2  .buttons-group {
       justify-content: flex-start !important;
       margin-top: 25px !important;
       margin-bottom: 0px !important;
   }


   section#who_we_help_section3 {
       z-index: 2 !important;
       padding: 30px 0 30px;
   }

   section#who_we_help_section3:before {
       content: '';
       background: url(https://digimedspa.s3.us-west-1.amazonaws.com/home_professional_overlay.png) no-repeat top left;
       background-size: cover;
       width: 100%;
       height: 100%;
       position: absolute;
       left: 0;
       top: 0;
       z-index: 0;
   }

   section#who_we_help_section3 h2.text-white.section-content-heading {
       color: #121212 !important;
   }
   section#who_we_help_section3 .media.phone-link a,section#who_we_help_section3 .media.phone-link p {
       background: linear-gradient(to right, #05B6A6, #019ABC, #018DC8);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       font-weight: 600 !important;
   }

   section#home_learning_center .heading-tag-line {
       margin-bottom: 10px;
   }
   section#home_learning_center p.paragraph.mb-4 {
       margin-bottom: 10px !important;
   }
}

.how_we_help_box > span {
    background: #018DC8 !important;
}

@media screen and (max-width: 991px){
   footer#gtco-footer .download-buttons-group {
       max-width: 300px;
       margin: 5px auto !important;
   }
}



section#ir-login-section {
    position: relative;
    padding: 50px 0 50px;
}
.ir-login-wrap .panel-heading{
    text-align: center;
    margin-bottom: 10px;
}
.ir-login-wrap #forgot{
    min-width: 100px;
    margin-right: auto;
    text-decoration: none;
    color: #272727;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-left: 25px;
    margin-top: 5px;
    font-size: 16px;
}
.ir-login-wrap a:hover{
    text-decoration: none;
}
.ir-login-wrap .form-inline label{
    padding-left: 10px;
    margin: 0;
    cursor: pointer;
}
.ir-login-wrap .btn.btn-primary{
    margin-top: 20px;
    border-radius: 15px;
}
.ir-login-wrap .panel{
    min-height: 380px;
    box-shadow: 20px 20px 80px rgb(218, 218, 218);
    border-radius: 12px;
}
.ir-login-wrap .input-field{
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ddd;
    color: #4343ff;
}
.ir-login-wrap input[type='text'],
.ir-login-wrap input[type='password']{
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%; 
}
.ir-login-wrap .fa-eye-slash.btn{
    border: none;
    outline: none;
    box-shadow: none;
}
.ir-login-wrap img{
/*    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;*/
}
.ir-login-wrap a[target='_blank']{
    position: relative;
    transition: all 0.1s ease-in-out;
}

.ir-login-wrap .bordert{
    border-top: 1px solid #aaa;
    position: relative;
    margin-top: 25px !important;
    padding-top: 25px !important;
}
.ir-login-wrap .bordert:after{
    content: "or";
    position: absolute;
    top: -13px;
    left: 50%;
    background-color: #fff;
    padding: 0px 38px;
    transform: translateX(-50%);
}
@media(max-width: 360px){
    /*.ir-login-wrap .bordert:after{
        left: 25%;
    }*/
}

.ir-login-wrap .panel {
    background: #fff;
    border-color: #018DC8 !important;
    border-radius: 22px;
    padding: 40px;
    min-height: auto;
    box-shadow: none;
}

.ir-login-wrap .panel h1 {
    font-size: 35px;
    line-height: 43px;
    margin: 20px 0;
}

.ir-login-wrap .panel .form-group {
    margin-bottom: 0;
}

.ir-login-wrap .panel .form-group .input-field {
    border-color: #272727;
    border-radius: 120px;
    min-height: 58px;
        padding-left: 30px;
}

.ir-login-wrap .panel .form-group .input-field input {
    color: rgba(39,39,39,0.70);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: normal;
    height: 40px;
    background: transparent;
}

.ir-login-wrap .panel .form-group > .input-field > span:not(.btn) {
    min-width: 32px;
    width: 32px;
    text-align: center;
    margin-right: 15px;
}

.ir-login-wrap .panel .form-group .input-field > span:not(.btn) img {
    object-fit: contain;
    border-radius: 0px;
    width: auto;
    height: auto;
}
.ir-login-wrap .panel .form-group > .input-field > span.btn {
    background: transparent !important;
    border: none !important;
}

.ir-login-wrap  .sub-btn {
    text-align: center;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    transition: all .3s ease;
    min-width: auto;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    padding: 10px 25px;
    border-radius: 65px !important;
    background: #018DC8;
    color: #fff !important;
    letter-spacing: normal;
}

.ir-login-wrap .sub-btn:hover,.ir-login-wrap .sub-btn:focus,.ir-login-wrap .sub-btn:active {
    box-shadow: 0px 7px 35px rgba(1, 141, 200, 0.3);
    background: #018dc8 !important;
}
.ir-login-wrap .a_logins a {
    margin-bottom: 13px;
    box-shadow: 0 4px 8px #E6E6E6;
    border-radius: 100px;
    padding: 10px 0 !important;
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 500;
    color: #272727;
    display: flex !important;
    justify-content: center;
    align-items: center;
    line-height: normal !important;
}

.ir-login-wrap .a_logins a:last-child {
    margin-bottom: 0px;
}

.ir-login-wrap .a_logins a img {
    max-width: 28px;
    width: inherit;
    height: inherit;
    object-fit: inherit !important;
    border-radius: 0px;
    margin-right: 10px;
}

.ir-login-wrap .a_logins a.apple {
    background: #000000;
    color: #fff;
}

@media screen and (max-width: 575px){
    section#ir-login-section {
        position: relative;
        padding: 30px 0 40px;
    }
    .ir-login-wrap .panel {
        padding: 15px 15px 10px;
    }
    .ir-login-wrap .panel h1 {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 0;
    }
    .ir-login-wrap .panel .form-group .input-field {
        min-height: 45px;
        padding-left: 22px;
    }
    .ir-login-wrap .panel .form-group .input-field input{
        height: 30px;
    }
    .ir-login-wrap .panel .form-group > .input-field > span:not(.btn) {
        margin-right: 10px;
    }
    .ir-login-wrap .sub-btn {
        font-size: 14px;
        line-height: normal;
    }
    .ir-login-wrap .a_logins a,.ir-login-wrap #forgot {
        font-size: 13px;
    }
    .ir-login-wrap .a_logins a img {
        max-width: 20px;
    }
    .ir-login-wrap .panel .form-group > .input-field > span:not(.btn) {
        min-width: 25px;
        width: 25px;
    }
}

.appointment_dropdown {
    display: inline-block;
}

.appointment_dropdown .dropdown-toggle::after {
    display: none;
}

.appointment_dropdown .dropdown-menu {
    min-width: 14rem;
    top: -10px !important;
    padding: 0;
   left: 3px !important;
}

.appointment_dropdown .dropdown-menu a.dropdown-item {
    padding: 9px 18px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.appointment_dropdown .dropdown-menu a.dropdown-item:hover {
    background: #F2FDF9 !important;
    color: #05B6A6 !important;
    font-weight: 400;
}

@media screen and (max-width: 575px){
   .appointment_dropdown .dropdown-menu {
       min-width: 14rem;
       top: auto !important;
       bottom: 93px !important;
       padding: 0;
       z-index: 1000;
   }
   .appointment_dropdown .dropdown-menu a.dropdown-item {
       padding: 3px 8px;
       font-size: 13px;
       font-family: 'Montserrat', sans-serif;
       font-weight: 400;
   }
}


.inner_banner_buttons a.themebtn.with-icon img {
    position: relative;
    margin-left: 7px;
    top: -2px;
}
@media screen and (max-width: 1440px){
.inner_banner_buttons {
    padding-left: 50px;
}
}
@media screen and (max-width: 767px){
.inner_banner_buttons a.themebtn {
    padding: 11px 16px;
    font-size: 14px;
}
    .inner_banner_buttons a.themebtn.with-icon img{
    top: -1px;
    margin-left: 4px;
}
    section#inner-banner-section .inner_banner_content_wrap .inner_banner_buttons a.themebtn img{
    min-height: inherit;
    object-position: 0px;
}
}

@media screen and (max-width: 657px){
    .inner_banner_buttons {
    padding-left: 0px;
}
}

@media screen and (max-width: 575px){
        .inner_banner_buttons {
    padding-left: 30px;
}

.inner_banner_buttons a.themebtn img.d-block {
    display: none !important;
}

.inner_banner_buttons a.themebtn span {
    display: inline-block !important;
}

.inner_banner_buttons .appointment_dropdown {
    top: 0;
}
.inner_banner_buttons a.themebtn {
    font-size: 12px;
    padding: 9px 12px !important;
}
}

@media screen and (max-width: 390px){
    .inner_banner_buttons,.inner_banner_content h1 {
        padding-left: 10px;
    }
}



@media screen and (max-width: 575px){
    .digi-banner-mobile-buttons {
            display: none !important;
    }

    .digi-banner-buttons {
        text-align: left !important;
        position: fixed !important;
        bottom: -42px !important;
        width: 100% !important;
        left: 0 !important;
        padding: 0 13px !important;
        display: block !important;
    }

    .digi-banner-buttons .appointment_dropdown {
        top: 0 !important;
    }

    .digi-banner-buttons .appointment_dropdown img {
        display: none !important;
    }

    div#banner-slider .banner-item .digi-banner-content .digi-banner-buttons a.themebtn {
        padding: 7px 7px !important;
        font-size: 10px !important;
        margin-left: 0px !important;
        margin-top: 0 !important;
        min-width: inherit !important;
    }

    .digi-banner-buttons .themebtn.with-icon img {
        max-width: 11px !important;
        margin-left: 5px !important;
    }

    div#banner-slider .banner-item .digi-banner-content .digi-banner-buttons a.themebtn.with-icon {
        float: right !important;
        margin-right: -7px;
    }
    .buttons-group a.themebtn.invert.book span {
        display: block !important;
    }

    .buttons-group a.themebtn.invert.book img {
        display: none !important;
    }

    .buttons-group .appointment_dropdown {
        top: 0px !important;
    }
}


.book_modal {
    z-index: 99999999999;
}
.modal-backdrop {
    z-index: 1;
    background: transparent;
}
.book_modal .modal-header {
    padding: 0px;
    border: none;
}

.book_modal .modal-header .close {
    padding: 0;
    position: absolute;
    right: 35px;
    top: 35px;
    opacity: 1;
    max-width: 25px;
        z-index: 111;
}

.book_modal .modal-content {
    border: none;
    box-shadow: 0px 0px 59px 0px rgba(0,0,0,0.11);
    border-radius: 12px;
    /*overflow: hidden;*/
}

.book_modal .modal-body {
    padding: 0;
}

.book_modal .col-12 {
    height: 100%;
}

.book_modal .modal_left_img_wrap {
    height: 100%;
    width: 100%;
}

.book_modal .modal_left_img_wrap img {
    height: 100%;
}

.modal_form_wrap h2 {
    font-size: 30px;
    font-weight: 600;
    color: #272727;
    margin-bottom: 10px;
}

.modal_form_wrap {
    padding-right: 25px;
        padding-top: 30px;
    padding-bottom: 30px;
}
.modal_form_wrap p {
    color: #272727;
    line-height: 27px;
    font-size: 16px;
    margin-bottom: 13px;
}
.modal_form_wrap .radio_buttons_group .form-group {
    margin-bottom: 8px;
}

.modal_form_wrap .radio_buttons_group .form-group label {
    font-size: 15px;
    color: #3E454F;
    font-weight: normal;
}

.modal_form_wrap .form-group {
    margin-bottom: 15px;
}

.modal_form_wrap .radio_buttons_group {
    margin-bottom: 10px;
}

.modal_form_wrap .form-group label {
    font-size: 15px;
    color: #3E454F;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: normal;
}

.modal_form_wrap .form-group .form-control {
    border-color: rgba(39,39,39,0.20);
    font-size: 14px;
    color: #3E454F;
    height: auto;
    padding: 10px 15px;
    line-height: normal;
}

.modal_form_wrap  a.themebtn {
    font-size: 15px;
    padding: 12px 22px;
    margin-top: 8px;
}

@media screen and (max-width: 991px){
    .book_modal .modal_left_img_wrap {
        max-height: 200px;
        overflow: hidden;
        border-top-right-radius: 12px;
        border-top-left-radius: 12px;
    }

    .book_modal .modal_left_img_wrap img {
        max-height: 200px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .modal_form_wrap {
        padding: 20px;
    }
    .book_modal .modal-dialog {
        max-width: 650px;
    }
}

    .time_dropdown .btn:focus {
      outline: none;
      box-shadow: none;
    }

    .time_dropdown{
        display: inline-block;
    }
    .time_dropdown .dropdown-menu {
      box-shadow: 0px 2px 5px #0000001A;
      border: 1px solid #E0E0E0;
      border-radius: 8px;
    }

    .time_dropdown  .dropdown-item {
      color: #414D55 !important;
      font-size: 14px;
    }
    .time_dropdown  .dropdown-item:active {
      background-color: #414D55;
      color: #fff;
    }

    .time_dropdown .status_dropdown {
      min-width: 150px;
    }
    .time_dropdown.open .dropdown-menu {
        display: inline-block;
        margin-top: 10px;
    }
    .time_dropdown .btn {
        text-transform: capitalize;
        letter-spacing: 0;
        color: #121212;
        padding: 20px 30px 8px 40px;
        border: 1px solid #E0E0E0;
        min-width: 180px;
        font-size: 16px;
        line-height: normal;
        font-weight: 500;
        justify-content: start !important;
        gap: 5px;
    }

    .time_dropdown.start .btn {
        background: #fff url(https://digimedspa.s3.us-west-1.amazonaws.com/time_icon_modal_form.png) no-repeat left center !important;
        background-position: 10px !important;
    }
    .time_dropdown.end .btn {
        background: #fff url(https://digimedspa.s3.us-west-1.amazonaws.com/time_icon_modal_form.png) no-repeat left center !important;
        background-position: 10px !important;
    }
    .time_dropdown.start .btn:before {
        content: 'Start with:';
        position: absolute;
        top: 7px;
        font-size: 10px;
        font-weight: 600;
    }
    .time_dropdown.end .btn:before {
        content: 'End with:';
        position: absolute;
        top: 7px;
        font-size: 10px;
        font-weight: 600;
    }

    .time_dropdown .btn:after {
        position: absolute;
        right: 20px;
        top: 38%;
        border: none;
    }
    .time_dropdown .dropdown-menu {
        right: 0;
        left: auto;
    }

    .time_dropdown .dropdown-menu .dropdown-item {
        background: transparent !important;
        font-size: 15px !important;
        font-weight: 400;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        line-height: normal;
    }

    .time_dropdown .dropdown-menu .dropdown-item span {
        background: #fff;
        color: #121212;
        border-radius: 3px;
        border: 1px solid #121212;
        line-height: normal;
        padding: 3px 4px;
        transition: all .3s ease;
    }

    .time_dropdown .dropdown-menu .dropdown-item:hover span {
        background: #019ABC;
        color: #fff;
        transition: all .3s ease;
    }
    .gj-picker{
        z-index: 99999999999999999 !important;
    }
    .book_modal .form-control.datetimepicker2,
    .book_modal .form-control.date_field {
        text-transform: capitalize;
        letter-spacing: 0;
        color: #121212;
        padding: 20px 30px 8px 40px;
        border: 1px solid #E0E0E0;
        min-width: 180px;
        font-size: 16px;
        line-height: normal;
        font-weight: 500;
        background: url(https://digimedspa.s3.us-west-1.amazonaws.com/date_oicker_icon.png) no-repeat center left;
        background-position: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .book_modal .gj-datepicker {
        margin-right: -10px;
        margin-top: 15px;
    }

    .book_modal .gj-datepicker i.gj-icon {
        display: none;
    }

    .book_modal .gj-datepicker:before {
            content: 'Select a day';
            position: absolute;
            top: 7px;
            font-size: 10px;
            font-weight: 600;
            padding-left: 40px;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0px;
    }
    .book_modal .gj-datepicker:after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        position: absolute;
        right: 20px;
        top: 38%;
        display: inline-block;
        font-family: "Font Awesome 5 Free";
        font-size: 80%;
        font-weight: 900;
        content: "";
        margin-left: 0.5rem;
    }
    .sub-btn {
        text-align: center;
        display: inline-block;
        border-radius: 25px;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        box-shadow: none;
        border: none;
        transition: all .3s ease;
        background: #05b6a6 !important;
        min-width: auto;
        padding: 9px 20px;
        font-weight: 500;
        font-size: 16px;
        line-height: normal;
        text-transform: capitalize;
        letter-spacing: normal;
    }

    .sub-btn:hover,.sub-btn:focus,.sub-btn:active {
        box-shadow: 0px 15px 35px rgba(5, 182, 166, 0.3);
        transform: translateY(-3px);
        border-color: transparent !important;
        background: #05b6a6 !important;
    }

    .sub-btn.invert{
        background: #018DC8 !important;
    }
    .sub-btn.invert:hover,.sub-btn.invert:focus,.sub-btn.invert:active {
        box-shadow: 0px 15px 35px rgba(1, 141, 200, 0.3);
        background: #018dc8 !important;
    }

    @media screen and (max-width: 991px){
        .book_modal .gj-datepicker {
            margin-right: 0;
        }
    }

    @media screen and (max-width: 767px){
        .book_modal .gj-datepicker {
            margin-right: 0;
        }
        .modal_form_wrap p {
            font-size: 14px;
            line-height: 26px;
        }

        .modal_form_wrap h2 {
            font-size: 22px;
            line-height: 27px;
            margin-bottom: 10px !important;
        }
        .time_dropdown .btn,
        .book_modal .form-control.datetimepicker2,
        .book_modal .form-control.date_field {
            font-size: 14px;
            min-width: 148px;
            padding: 17px 15px 7px 35px;
        }
        .book_modal .gj-datepicker:before{
            padding-left: 35px;
        }
        .time_dropdown.start .btn:before,
        .book_modal .gj-datepicker:before {
            font-size: 9px;
            top: 8px;
        }

        .time_dropdown .btn:after,
        .book_modal .gj-datepicker:after {
            right: 10px;
        }
        .time_dropdown .btn, 
        .book_modal .form-control.datetimepicker2,
        .book_modal .form-control.date_field,
        .time_dropdown.start .btn,
        .time_dropdown.end .btn {
            background-size: 17px !important;
        }
    }

    @media screen and (max-width: 575px){
        .book_modal .modal_left_img_wrap,
        .book_modal .modal_left_img_wrap img{
            max-height: 150px;
        }
        .modal_form_wrap .radio_buttons_group .form-group label {
            font-size: 14px;
        }
        .cama_flash_messages .flash_messages, .flash_messages {
            min-width: 320px !important;
            left: 19px !important;
            bottom: 10px !important;
        }
    }


    @media screen and (max-width: 991px){
        .book_modal .modal_left_img_wrap {
            max-height: 270px;
        }
    }
    @media screen and (max-width: 575px){
        .book_modal .modal_left_img_wrap, .book_modal .modal_left_img_wrap img {
            max-height: 171px;
        }
    }

    div#demo_book_modal button.close img {
        filter: invert(1);
    }
    @media screen and (max-width: 991.98px){
        .solutions_section0 .home-about-img-wrap{
            margin-top: 30px;
            margin-bottom: 0px;
        }
    }

    @media screen and (max-width: 575px){
        .solutions_section0 .home-about-img-wrap{
            margin-top: 30px;
            margin-bottom: 0px;
        }
        section#inner-banner-section.solutions-banner .inner_banner_content_wrap  img {
            object-position: -330px;
        }

        section#inner-banner-section.solutions-banner h1 , section#inner-banner-section.solutions-banner .inner_banner_buttons {
            padding-left: 0px;
        }
    }


    .solutions_section1 {
        background: #fff url('../images/solutions-page-bg1.jpg') no-repeat center center;
        background-size: cover;
        position: relative;
        padding: 55px 0;
    }
    .bundle-button a.themebtn{
        background: #019abc !important;
        display: inline-block !important;
        border: none !important;
        margin: auto;
        width: 100%;
        max-width: 200px;
    }
    .bundle-button a.themebtn span {
        position: relative;
        top: -1px;
        margin-left: 3px;
    }
    .bundle-button a.themebtn:hover,.bundle-button a.themebtn:active, .bundle-button a.themebtn:focus{
        box-shadow: 0 15px 35px rgba(1,154,188,.3)!important;    
    }

    .solutions-bundle-plan-box {
        z-index: 0;
        background: #fff;
        padding: 60px 25px;
        margin: 0px 0 40px;
        border-radius: 10px;
        box-shadow: 0px 4px 49px rgba(181,181,181,0.15);
        position: relative;
    }

    .solutions-bundle-plan-box.center {
        z-index: 9;
        transform: scale(1.12);
    }

    .solutions-bundle-plan-box.center * {
        transform: scale(0.95);
    }

    .solutions-bundle-plan-box img {
        margin-bottom: 25px;
    }

    .solutions-bundle-plan-box .bundle-name {
        font-size: 22px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;
        line-height: normal;
        margin-bottom: 25px;
    }

    .solutions_section1 .black-caption h2.section-heading {
        line-height: normal;
        margin-bottom: 60px;
    }

    .solutions_section1 .buttons-group {
        margin-top: 30px;
    }

    .solutions_section1 .buttons-group .media.phone-link {
        flex-basis: auto !important;
    }

    @media screen and (max-width: 991.98px){
        .solutions-bundle-plan-box {
            padding: 40px 15px;
            margin: 0px 0 30px;
        }

        .solutions-bundle-plan-box .bundle-name {
            font-size: 19px;
            margin-bottom: 15px;
        }

        .solutions-bundle-plan-box img {
            margin-bottom: 15px;
        }

        .solutions-bundle-plan-box.center {
            transform: scale(1.14);
        }

        .solutions-bundle-plan-box.center * {
            transform: scale(0.94);
        }

        .bundle-button a.themebtn {
            max-width: 170px;
        }

        .bundle-button a.themebtn span {
            top: 1%;
        }
    }

    @media screen and (max-width: 850.98px){
        .solutions-bundle-plan-box {
            margin: 0px -15px 30px;
            padding: 40px 15px;
        }

        .solutions-bundle-plan-box.center {
            margin: 0px 15px 30px;
        }
        .bundle-button a.themebtn {
            max-width: 150px;
        }
    }

    @media screen and (max-width: 767.98px){
        .solutions_section1{
            padding: 45px 0;
        }
        .solutions-bundle-plan-box {
            padding: 40px 15px;
            margin: 0px 0 15px;
        }

        .solutions-bundle-plan-box.center {
            padding: 40px 15px;
            margin: 0px 0 15px;
        }

        .solutions-bundle-plan-box .bundle-name {
            font-size: 19px;
            margin-bottom: 15px;
        }

        .solutions-bundle-plan-box img {
            margin-bottom: 15px;
        }

        .solutions-bundle-plan-box.center {
            transform: scale(1);
        }

        .solutions-bundle-plan-box.center * {
            transform: scale(1);
        }

        .bundle-button a.themebtn {
            max-width: 170px;
        }

        .bundle-button a.themebtn span {
            top: 1%;
        }
        .solutions_section1 .black-caption h2.section-heading {
            margin-bottom: 30px;
        }
        .solutions_section1 .buttons-group {
            margin-top: 20px;
        }
    }

    @media screen and (max-width: 575px){
        .solutions_section1 {
            padding: 35px 0;
        }
        .solutions-bundle-plan-box {
            padding: 20px 15px;
        }
    }

 .solutions_section2{
            position: relative;
        padding: 55px 0 180px;
 }

    .solutions_section2 .owl-1 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%; }
  .solutions_section2 .owl-1 .owl-nav .owl-next,
  .solutions_section2 .owl-1 .owl-nav .owl-prev {
    border: 1px solid red;
    z-index: 92;
    position: absolute;
    top: 50%; }
    .solutions_section2 .owl-1 .owl-nav .owl-next:active, .solutions_section2 .owl-1 .owl-nav .owl-next:focus,
    .solutions_section2 .owl-1 .owl-nav .owl-prev:active,
    .solutions_section2 .owl-1 .owl-nav .owl-prev:focus {
      outline: none; }
    .solutions_section2 .owl-1 .owl-nav .owl-next span,
    .solutions_section2 .owl-1 .owl-nav .owl-prev span {
      color: #fff; }
      .solutions_section2 .owl-1 .owl-nav .owl-next span:before,
      .solutions_section2 .owl-1 .owl-nav .owl-prev span:before {
        font-size: 40px !important; }
  .solutions_section2 .owl-1 .owl-nav .owl-next {
    border: 4px solid blue;
    right: 20px; }
  .solutions_section2 .owl-1 .owl-nav .owl-prev {
    left: 20px; }

.solutions_section2 .owl-1 .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .solutions_section2 .owl-1 .owl-dots .owl-dot {
    background: none;
    display: inline-block; }
    .solutions_section2 .owl-1 .owl-dots .owl-dot > span {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      margin: 4px; }
    .solutions_section2 .owl-1 .owl-dots .owl-dot.active > span {
      background: white; }
    .solutions_section2 .owl-1 .owl-dots .owl-dot:active, .solutions_section2 .owl-1 .owl-dots .owl-dot:focus {
      outline: none; }

.solutions_section2 .media-29101 .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%; }

.solutions_section2 .media-29101 .text {
  padding: 50px; }
  @media (max-width: 991.98px) {
    .solutions_section2 .media-29101 .text {
      padding: 20px;
      width: 100%; } 
      .digi-top-bar:after{
        display: none;
      }
  }
  .solutions_section2 .media-29101 .text .category {
    color: #adb5bd;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .2rem; }
  .solutions_section2 .media-29101 .text h2 {
    font-family: "Playfair Display", times, serif;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px; }
    .solutions_section2 .media-29101 .text h2 a {
      color: #000; }

.solutions_section2 .carousel-nav {
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px; }
  .solutions_section2 .carousel-nav a {
    padding: 15px;
    display: inline-block;
    text-align: left;
    font-size: 16px;
    color: #272727;
}
    .solutions_section2 .carousel-nav a:hover {
      color: #018DC8; }
    .solutions_section2 .carousel-nav a.active {
      color: #018DC8; }
      .solutions_section2 .carousel-nav a.active:before {
        content: "";
        bottom: -1px;
        left: 0;
        right: 0;
        position: absolute;
        border-bottom: 1px solid #018DC8; }

.solutions_section2 .owl-1 .media-29101 {
    max-width: 1440px;
    margin: 0 auto;
}
.solutions_section2 .carousel-nav {
    max-width: 95%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.solutions_section2 .owl-1 a.themebtn.with-icon.learn-more img {
    width: inherit !important;
    display: inline !important;
}
.solutions_section2 .section-img-box img {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/solutions-page-main-features-bg-img.png) no-repeat center center;
    background-size: 100% 110%;
}
.solutions_section2 .section-img-box img.no-bg{
    background: transparent;
}
.solutions_section2 .owl-stage-outer {
    padding-bottom: 40px;
}

@media screen and (max-width: 1570px){
    .solutions_section2 .carousel-nav a br.big-line-br {
        display: none;
    }
}
@media screen and (max-width: 1440px){
    .solutions_section2 .carousel-nav a {
        line-height: 26px;
    }

    .solutions_section2 .carousel-nav {
        max-width: 100%;
    }
}

@media screen and (max-width: 1190px){
    .digi-top-bar:after{
        display: none;
      }
}
@media screen and (max-width: 991.98px){
    .solutions_section2 {
        padding: 30px 0 120px;
    }

    .solutions_section2 .responsive-tabs {
        width: 100%;
        overflow: scroll;
        margin-bottom: 30px;
    }

    .solutions_section2 .responsive-tabs .d-flex.carousel-nav {
        min-width: 1346px;
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 575px){
    .solutions_section2 .carousel-nav a {
        font-size: 14px;
        line-height: 22px;
        padding: 10px 15px;
    }
    .solutions_section2 .responsive-tabs .d-flex.carousel-nav {
        min-width: 1160px;
    }
}


.inner_banner_content h1{
    display: block;
}

.emr_section1 .container{
    max-width: 1440px;
}

section#home-about-section.emr_section1 {
    background-position: 0px -500px;
    padding-bottom: 180px;
}

section#home-about-section.emr_section1 .card-style {
    box-shadow: 0px 4px 9px rgba(52,174,201,0.12);
}

section#home-about-section.emr_section1 .card-style.left {
    margin-top: -200px;
}

section#home-about-section.emr_section1 .card-style.right {
    margin-top: 200px;
}

.emr-boxes-bg {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/emr-section1-bg.png) no-repeat center center;
    background-size: contain;
    margin-top: 100px;
}

section#home-about-section.emr_section1 .card-style .card-body {
    padding-top: 5px;
}

section#home-about-section.emr_section1 .card-style .card-body .card-title {
    line-height: normal;
    margin-bottom: 10px;
}

@media screen and (max-width: 991.98px){
    section#home-about-section.emr_section1 .card-style.left{
        margin-top: 0px;
    }
    section#home-about-section.emr_section1 .card-icon-top{
        justify-content: center;
        flex-shrink: inherit;
        width: auto;
    }
    section#home-about-section.emr_section1 .card-icon-top img{
        flex-shrink: inherit;
        width: auto;
    }
}

@media screen and (max-width: 575px){
    .emr-boxes-bg {
        margin-top: 60px;
        background: transparent;
    }

    section#home-about-section.emr_section1 {
        padding-bottom: 130px;
    }
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown li.active a.sf-with-ul:hover {
    background: #f2fdf9 !important;
}

.unified-com-boxes-bg {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/unified-com-boxes-bg.png) no-repeat center center;
    background-size: contain;
    margin-top: 100px;
}
section#home-about-section.unified_com_section1 .card-icon-top {
    min-height: inherit;
    margin: 35px auto 15px;
}

@media screen and (max-width: 575px){
    section#home-about-section.emr_section1 .card-style {
        height: auto !important;
    }

    section#home-about-section.emr_section1 .card-style .card-body {
        padding-bottom: 10px;
    }
    .unified-com-boxes-bg{
        margin-top: 60px;
        background: transparent;
    }
}


.website-design-page-boxes-bg{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/website_design_page_section1_bg.png) no-repeat center center;
    background-size: contain;
    margin-top: 100px;
}
section#home-about-section.website_design_section1 .card-icon-top{
    min-height: 145px;
    margin: 35px auto 15px;
    align-items: flex-end;
}
@media screen and (max-width: 575px){
    .website-design-page-boxes-bg{
        margin-top: 60px;
        background: transparent;
    }
    section#home-about-section.website_design_section1 .card-icon-top{
        min-height: inherit;
        margin: 30px auto 15px;
        align-items: flex-end;
    }
    .big-heading-content{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        top: 0 !important;
        transform: none !important;
        left: 0 !important;
        background: rgba(255,255,255,0.65);
    }
}


.main_features_section2 {
    position: relative;
    padding: 30px 0 180px;
}

@media screen and (min-width: 991.99px){
    .main_features_section2  .transparent-bg {
        padding-bottom: 25px;
    }
}


@media screen and (max-width: 991.98px){
    .main_features_section2 {
        padding: 0px 0 120px;
    }
}

section#home-pricing-table-section.bundled_solutions_section1{
    position: relative;
    padding: 55px 0 180px;
    background: #fff url(https://digimedspa.s3.us-west-1.amazonaws.com/bundled_solitions_section_bg.png) no-repeat center bottom;
    background-size: cover;
    background-position: 0 1200px;
}


.bundled_plan_include_box {
    text-align: center;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/bundled_plan_include_box_bg.png) no-repeat center center;
    background-size: cover;
    padding: 30px 45px;
    border: 1px solid #018DC8;
    border-radius: 7px;
    margin-top: 10px;
}

.bundled_plan_include_box .check-box {
    background: #fff;
    display: inline-block;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
}

.bundled_plan_include_box span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #272727;
}

.bundled_plan_include_box .check-box img {
    max-width: 25px;
}


@media screen and (max-width: 991.98px){
    section#home-pricing-table-section.bundled_solutions_section1{
        padding: 30px 0 150px;
    }
}

@media screen and (max-width: 575.98px){
    .bundled_solutions_section1 .buttons-group{
        gap: 5px !important;
    }
    .bundled_solutions_section1 a.themebtn.learn-btn{
        display: none;
    }
    section#home-pricing-table-section.bundled_solutions_section1 .black-caption.heading-2,
    section#home-pricing-table-section.bundled_solutions_section1 .black-caption.heading-2 * {
        text-align: center !important;
    }

    section#home-pricing-table-section.bundled_solutions_section1  .buttons-group.justify-content-center.mb-5.mt-2 {
        justify-content: flex-start !important;
    }
}


.contact_us_page_section1 .container{
    max-width: 1440px;
}
.contact_us_page_section1 {
    position: relative;
    padding: 55px 0 180px;
}
.contact_page_form .form-control {
    border: none;
    border-bottom: 1px solid rgba(0,141,199,0.50);
    border-radius: 0px;
    font-size: 14px;
    color: #272727;
    font-weight: 500;
    padding-left: 0px;
    box-shadow: none !important;
    outline: none !important;
    min-height: 45px;
    padding-right: 30px;
}

.contact_page_form .form-control::placeholder {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
}

.contact_page_form .form-group {
    margin-bottom: 20px;
}

.contact_page_form .form-group label {
    color: #272727;
    font-weight: 500;
    font-size: 14px;    
    margin-bottom: 0px;
}

.contact_page_form .form-control.icon1 {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/contact_page_form_icon1.png) no-repeat center right;
    background-size: auto;
    background-position-x: 98.5%;
}

.contact_page_form .form-control.icon2 {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/contact_page_form_icon2.png) no-repeat center right;
    background-size: auto;
    background-position-x: 99%;
}

.contact_page_form .form-control.icon3 {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/contact_page_form_icon3.png) no-repeat center right;
    background-size: auto;
    background-position-x: 99%;
}

.contact_page_form .form-control.icon4 {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/contact_page_form_icon4.png) no-repeat top right;
    background-size: auto;
    background-position-x: 99%;
    background-position-y: 6px;
}
.contact_page_info_box {
    text-align: center;
    padding: 25px 40px;
    background: #fff;
    border: 1px solid rgba(0,141,199,0.50);
    border-radius: 4px;
    box-shadow: 0px 1px 76px rgba(39,39,39,0.06);
}

.contact_page_info_box .icon img {
    box-shadow: 0px 4px 9px rgba(52,174,201,0.12);
    border-radius: 100%;
}

.contact_page_info_box .icon {
    margin-bottom: 18px;
}

.contact_page_info_box .head {
    font-size: 22px;
    font-weight: 500;
    color: #272727;
    line-height: normal;
    margin-bottom: 10px;
}

.contact_page_info_box p,.contact_page_info_box a {
    font-size: 16px;
    color: #272727;
    margin-bottom: 0;
    padding: 0 20px;
}

.contact_page_info_box_wrap .contact_page_info_box:first-child {
    margin-bottom: 15px;
}

.contact_page_info_box_wrap {
    background: rgba(1,141,200,0.05);
    padding: 55px 15% 60px 50px;
    margin-left: -15px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: end;
}

.contact_page_info_box {
    min-width: 440px;
}

.contact_page_img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 15% 60px 50px;
}

.contact_page_map_wrap {
    min-height: 400px;
    border-radius: 0px;
    overflow: hidden;
    border: 4px solid #008DC7;
    display: flex;
    flex-direction: row;
}
.contact_page_map_wrap iframe {
        height: auto;
        display: flex;
}

@media screen and (max-width: 1280.98px){
    .contact_page_info_box_wrap {
        padding: 30px 11% 35px 10%;
    }

    .contact_page_info_box {
        min-width: inherit;
        width: 100%;
    }

    .contact_page_img_wrap {
        padding: 30px 5% 35px 5%;
    }
}

@media screen and (max-width: 991.98px){
    .contact_us_page_section1 {
        position: relative;
        padding: 30px 0 150px;
    }
    .contact_page_map_wrap {
        display: flex;
        flex-direction: row;
    }
    .contact_page_map_wrap iframe {
        height: auto;
        display: flex;
    }
}

@media screen and (max-width: 850.98px){
    .contact_page_info_box {
        padding: 15px 20px;
    }

    .contact_page_info_box .icon img {
        max-width: 60px;
    }
}

@media screen and (max-width: 767.98px){
    .contact_page_info_box_wrap {
        margin-right: -15px;
    }
}

@media screen and (max-width: 575.98px){
    .contact_page_info_box_wrap {
        padding: 20px 16px 25px 15px;
        margin-top: -25px;
    }
    .contact_page_img_wrap{
        padding: 20px 16px 25px 15px;
    }
}

section#home-about-section.directory_listing_page_section1 {
    background: #fff !important;
    padding-bottom: 0px;
}

.directory_listing_page_section2{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/directory_listing_page_section2_bg.png) no-repeat center center;
    background-size: cover;
    margin-top: 40px;
    padding: 60px 0 200px;
}
.directory_listing_page_section2 .card-style.no-bg {
    background: transparent;
    box-shadow: none !important;
}

.directory_listing_page_section2 .card-style.no-bg .card-icon-top {
    min-height: inherit !important;
}
.why-digimedspa.directory_listing_page_section3 {
    margin-top: -140px;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}
.why-digimedspa.directory_listing_page_section3 .card-icon-top {
    min-height: inherit;
    margin-top: 35px;
}
.why-digimedspa.directory_listing_page_section3 .col-12:nth-child(3) .card-icon-top {
    margin-top: 6px;
}
section#who_we_help_section1.directory_listing_page_section4 {
    position: relative;
    padding: 150px 0 50px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/directory_listing_page_setion4_bg.png) no-repeat center center;
    background-size: cover;
    margin-top: -100px;
}

.directory_listing_page_section5{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/directory_listing_page_section5_bg.png) no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 50px 0;
}

.directory_listing_page_section5 .container{
    max-width: 1440px;
}

.directory_listing_page_section5 .boxes-container {
    max-width: 1280px;
}

section#directory_listing_page_section6 {
    padding: 55px 0 180px;
}

section#directory_listing_page_section6 .container{
    max-width: 1440px;
}

.directory_listing_page_benefits_box {
    border: 7px solid #E0E0E0;
    padding: 40px 30px;
    border-radius: 13px;
}

.directory_listing_page_benefits_box img {margin: 0 auto;display: block;}

ul.list-with-checkmark {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 15px;
}

ul.list-with-checkmark li {
    line-height: normal;
    margin-bottom: 20px;
    padding-left: 35px;
    padding-right: 15px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/black-checkmark.png) no-repeat top left;
    background-position-x: 2px;
    background-position-y: 7px;
    background-size: 19px;
}

ul.list-with-checkmark li p {
    margin: 0;
    font-size: 15px;
    line-height: 27px;
    font-weight: 500;
    color: #272727;
}

ul.list-with-checkmark li:last-child {
    margin-bottom: 0px;
}


@media screen and (max-width: 991.98px){
    section#directory_listing_page_section6 {
        padding: 30px 0 120px;
    }
    section#directory_listing_page_section6 .directory_listing_page_benefits_box {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 575.98px){
    .directory_listing_page_section2 {
        padding-bottom: 90px;
        padding-top: 30px;
    }
    .why-digimedspa.directory_listing_page_section3{
        background: url(https://digimedspa.s3.us-west-1.amazonaws.com/why_digimedspa_bg_mobile.png) no-repeat center center;
        background-size: 100% 100%;
        padding: 50px 0 20px;
        margin-top: -50px;
    }
    .why-digimedspa.directory_listing_page_section3 .black-caption {
        margin-bottom: 0;
    }
    .why-digimedspa.directory_listing_page_section3 .black-caption {
        margin-bottom: 0;
    }

    section#who_we_help_section1.directory_listing_page_section4 .buttons-group {
        margin-top: 30px !important;
    }

    section#who_we_help_section1.directory_listing_page_section4 {
        padding-bottom: 30px;
        padding-top: 130px;
    }

    .why-digimedspa.directory_listing_page_section3 .buttons-group {
        margin-bottom: 10px !important;
    }
    .directory_listing_page_section5 {
        padding: 30px 0;
    }
    section#home-about-section.directory_listing_page_section1 .home-about-img-wrap {
        margin-top: 0px !important;
        margin-bottom: -30px !important;
    }
    .directory_listing_page_section2 .card-style.no-bg {
        margin-bottom: 0;
    }

    .directory_listing_page_section2 .row .col-12:last-child .card-style.no-bg {
        margin-bottom: 10px;
    }
    .directory_listing_page_section5 .home-about-img-wrap {
        margin-right: -40px !important;
        margin-left: -40px !important;
    }
    .directory_listing_page_section5 .boxes-container .black-caption {
        margin-top: 10px !important;
    }
    .directory_listing_page_benefits_box {
        padding: 20px 10px;
        border-radius: 7px;
        border: 4px solid #E0E0E0;
    }
    .directory_listing_page_section5 .container:first-child .row {
        flex-direction: column-reverse;
    }

    .directory_listing_page_section5 .container:first-child .row .col-12:first-child {
        margin-top: 14px;
    }
}


section#home-mobile-app-section.app-download-page-section1 {
    margin-top: 0px !important;
    padding-bottom: 180px;
    padding-top: 50px;
}
section#home-mobile-app-section.app-download-page-section1 .heading-with-sub:before {
    display: none;
}

section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content .black-caption {
    margin-bottom: 10px;
}

section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content p.paragraph {
    text-align: left;
    margin-bottom: 15px;
}

section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content  .download-buttons-group {
    justify-content: flex-start;
}
section#home-mobile-app-section.app-download-page-section1 .top-head-row .black-caption h2 {
    line-height: 135%;
    margin-bottom: 0px;
}

section#home-mobile-app-section.app-download-page-section1 .top-head-row .black-caption {
    margin-bottom: 10px;
}

section#home-mobile-app-section.app-download-page-section1 .top-head-row p.with-sep {
    margin-bottom: 70px;
    color: #121212;
}

section#home-mobile-app-section.app-download-page-section1 .top-head-row p.with-sep span {
    color: #121212;
    position: relative;
    top: -1px;
    padding: 0 20px;
}
.home-mobile-app-section-content {
    padding-top: 0;
}
@media screen and (max-width: 991.98px){
    section#home-mobile-app-section.app-download-page-section1 {
        padding-bottom: 120px;
        padding-top: 30px;
    }
    section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content * {
        text-align: center !important;
        justify-content: center !important;
    }

    section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content {
        margin-bottom: 40px;
        margin-top: 15px;
    }
    section#home-mobile-app-section.app-download-page-section1  .home-mobile-app-image-wrap{
        text-align: center;
    }
}

@media screen and (max-width: 575.98px){
    section#home-mobile-app-section.app-download-page-section1 .top-head-row p.with-sep span {
        padding: 0 5px;
    }
    section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-image-wrap img{
        width: 90%;
    }
    section#home-mobile-app-section.app-download-page-section1 .top-head-row p.with-sep{
        margin-bottom: 40px;
    }
    section#home-mobile-app-section.app-download-page-section1 .home-mobile-app-section-content{
        margin-top: 0px;
        margin-bottom: 0px;
    }
}


section.blogs_featured_section {
    position: relative;
    padding: 50px 0 25px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/blog_listing_section1_bg.png) no-repeat center center;
    background-size: cover;
}

section.blogs_featured_section h2.section-content-heading {
    font-weight: 600;
}

.blog-tags-list a {
    font-size: 14px;
    text-transform: uppercase;
    background: #008DC7;
    color: #fff !important;
    font-weight: 400;
    line-height: normal;
    padding: 3px 7px;
    border-radius: 3px;
    display: inline-block;
    transition: all .3s ease;
}
.blog-tags-list a:hover,.blog-tags-list a:focus,.blog-tags-list a:active {
    background: #05b6a6;
    transition: all .3s ease;
}

.blog-tags-list a:not(:last-child) {margin-right: 5px;}

.blog-tags-list {
    margin-bottom: 12px;
    line-height: normal;
    font-size: 0px;
}

.blog-list-item-content h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 9px;
    color: #272727 !important;
}

.blog-list-item-content h2 a {
    color: #272727 !important;
}

.blog-list-item-content {
    margin-bottom: 12px;
}

.blog-list-item-featured-img img {
    border-radius: 7px;
    width: 100%;
}

.blogs_featured_section .blog-list-item-featured-img img ,.related_post .blog-list-item-featured-img img{
    max-height: 185px;
    min-height: 185px;
    object-fit: cover;
    object-position: center center;
}

.blog-list-item-featured-img {
    margin-bottom: 14px;
}

.blog-list-item-content .blog-list-item-dates {
    font-size: 14px;
    color: #272727;
    line-height: normal;
    margin-bottom: 12px;
}

.blog-list-item-content .blog-list-item-dates .sep {
    padding: 0 5px;
    position: relative;
    top: -1px;
    color: rgba(39,39,39,0.15) !important;
}

section.blogs_featured_section .container {
    max-width: 1440px;
}
.blog-list-item-featured {
    margin-bottom: 25px;
}

.blog-list-item-content p.blog-list-item-excerpt {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    color: #272727;
    margin-bottom: 15px;
}

.blog-list-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-list-item-footer .left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    line-height: normal;
    gap: 11px;
}

.blog-list-item-footer .left ul li {
    line-height: normal;
}

.blog-list-item-footer .left ul li a {
    color: #272727 !important;
    font-size: 17px;
    transition: all .3s ease;
}

.blog-list-item-footer .left ul li a svg path {
    fill: #272727 !important;
    transition: all .3s ease;
}

.blog-list-item-footer .left ul li a svg {
    top: -1px !important;
    width: 14px !important;
}

.blog-list-item-footer .left ul li a:hover {
    color: #30b29b !important;
    transition: all .3s ease;
}

.blog-list-item-footer .left ul li a:hover svg path {
    fill: #30b29b !important;
    transition: all .3s ease;
}

.blog-list-item-footer .blog-publisher-name-comments span img {max-width: 22px;float: left;margin-right: 4px;}

.blog-publisher-name-comments {
    display: flex;
    gap: 7px;
    align-items: center;
}

.blog-list-item-footer .blog-publisher-name-comments span {
    font-size: 12px;
    color: #272727;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.blog-list-item-footer .blog-publisher-name-comments span.sep {
    padding: 0 0px;
    position: relative;
    top: -1px;
    color: rgba(39, 39, 39, 0.15) !important;
}

section.blogs_listings_section {
    position: relative;
    padding: 55px 0 180px;
}

section.blogs_listings_section .container {
    max-width: 1440px;
}

.blog-list-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 33px;
}
.blog-list-item .bottom {
    flex-basis: 100%;
}

.blog-list-item > .left {
    flex: 0 0 28%;
    min-height: 100%;
}

.blog-list-item > .right {
    flex: 0 0 69%;
}

.blog-list-item > .left .blog-list-item-featured-img {
    min-height: 100%;
}

.blog-list-item > .left .blog-list-item-featured-img img {
    min-height: 250px;
    min-width: 265px;
    object-fit: cover;
    object-position: center center;
}

.blog-list-item > .left .blog-list-item-featured-img a {
    min-height: 100%;
    height: 100%;
    display: block;
}
.blog-list-item .bottom div.sep hr {
    margin: 5px 0px 14px;
}
.blog-cta-section {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/blog-cta-bg.png) no-repeat center center;
    background-size: cover;
    padding: 50px 40px 45px;
    margin-bottom: 40px;
    margin-top: 15px;
    border-radius: 10px;
}

.blog-cta-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.blogs-sidebar-widget {
    position: relative;
    margin-bottom: 50px;
}

.blogs-recently-posted-wrap .media  > img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

.blogs-recently-posted-wrap .media .media-body h3 {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 10px;
    font-weight: 500;
    color: #272727;
}
.blogs-recently-posted-wrap .media .media-body h3 a{
    color: #272727;
}

.blogs-recently-posted-wrap {
    display: block;
    width: 100%;
}

.media.blog-recent-item {
    align-items: center;
    margin-bottom: 25px;
}

.blogs-sidebar-widget h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 20px;
}

.blogs-sidebar {
    padding: 0 30px;
}
.blogs-recently-posted-wrap .media.blog-recent-item:last-child{
    margin-bottom: 0px;
}

.blog-about-widget-wrap {
    background: rgba(235,250,255,0.50);
    padding: 25px;
    border-radius: 4px;
}

.blog-about-widget-wrap h2 {
    margin-bottom: 10px;
    color: #272727;
}

.blog-about-widget-wrap p {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
    color: #272727;
}

.blog-about-widget-wrap a {
    font-size: 14px;
    color: #272727;
    font-weight: 500;
}

.blog-about-widget-wrap a:hover {
    text-decoration: underline;
}

ul.blogs-cats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: -10px;
    line-height: normal;
}

ul.blogs-cats-list li {
    line-height: normal;
    border-bottom: 1px dotted rgba(39,39,39,0.25);
}

ul.blogs-cats-list li a {
    font-size: 15px;
    font-weight: 500;
    color: #272727;
    padding: 11px 0px;
    display: block;
    line-height: normal;
    transition: all .3s ease;
}

ul.blogs-cats-list li a:hover,ul.blogs-cats-list li a:active,ul.blogs-cats-list li a:focus {
    padding-left: 15px;
    transition: all .3s ease;
}

.blogs-tags-list {
    position: relative;
    margin-top: -10px;
}

.blogs-tags-list a {
    background: #fff;
    font-size: 15px;
    line-height: normal;
    color: #272727;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid #EFEFEF;
    border-radius: 4px;
    margin-right: 5px;
    transition: all .3s ease;
}

.blogs-tags-list a:hover,.blogs-tags-list a:active,.blogs-tags-list a:focus {
    background: #008DC7;
    color: #fff;
    border-color: #008DC7;
    transition: all .3s ease;
}

@media screen and (max-width: 1369.98px){
    .blog-cta-section {
        padding: 50px 5% 45px;
    }
}

@media screen and (max-width: 1355.98px){
    .blog-list-item > .left .blog-list-item-featured-img img {
        min-width: auto;
    }
}

@media screen and (max-width: 1250.98px){
    .media.blog-recent-item .blog-list-item-footer .left {
        display: none;
    }

    .blogs-recently-posted-wrap .media .media-body h3 {
        font-size: 15px;
        margin-bottom: 7px;
        line-height: 140%;
    }
}

@media screen and (max-width: 1200.98px){
    .blogs-sidebar {
        padding: 0 0px 0px 35px;
    }
    .blog-list-item > .left {
        flex: 0 0 35%;
    }
    .blog-list-item > .right {
        flex: 0 0 63%;
    }
    .blog-list-item > .left .blog-list-item-featured-img img {
        min-height: 320px;
    }
}

@media screen and (max-width: 991.98px){
    .blogs-sidebar {
        padding: 30px 30px;
        display: inline-flex;
        flex-wrap: wrap;
        gap: 0px;
        padding-bottom: 0px;
    }

    .blogs-sidebar .blogs-sidebar-widget {
        flex-basis: 50%;
        flex-grow: 1;
        padding: 20px 20px 0;
    }
    .blog-list-item > .left .blog-list-item-featured-img img {
        min-height: 280px;
    }
}

@media screen and (max-width: 767.98px){
    .blog-tags-list {
        margin-bottom: 6px;
    }

    .blog-tags-list a {
        font-size: 13px;
    }

    .blog-list-item-content {
        margin-bottom: 6px;
    }

    .blog-list-item-content h2 {
        font-size: 22px;
        line-height: 130%;
    }

    .blog-list-item-content .blog-list-item-dates {
        margin-bottom: 8px;
        font-size: 13px;
    }

    .blog-list-item-content p.blog-list-item-excerpt {
        line-height: 140%;
        margin-bottom: 10px;
    }

    .blog-list-item-content a.themebtn.learn-more {
        font-size: 14px;
        padding: 12px 10px 12px 13px;
    }

    .blog-list-item-content .media.phone-link img.media-object.phone-icon {
        max-width: 30px !important;
    }

    .blog-list-item-content .media.phone-link a {
        font-size: 16px;
    }

    .blog-list-item-content  .media.phone-link p {
        font-size: 11px;
    }
    .blog-list-item-content .media.phone-link .media-body{
        line-height: normal;
    }
    .blogs-sidebar {
        padding: 10px 0px;
    }
    .blog-cta-section {
        padding: 35px 4% 35px;
    }
    section.blogs_featured_section {
        padding: 30px 0 25px;
    }

}



@media screen and (max-width: 575.98px){
    .blog-list-item-content h2 {
        font-size: 19px;
        line-height: 110%;
    }
    .blog-tags-list a {
        font-size: 12px;
    }
    .blog-list-item-footer .left ul li a {
        font-size: 13px;
    }

    .blog-list-item-footer .left ul li a svg {
        width: 11px !important;
    }

    .blog-list-item-footer .left ul {
        gap: 9px;
    }

    .blog-list-item-footer .blog-publisher-name-comments span img {
        max-width: 19px;
    }

    .blog-list-item,.blog-list-item-featured,section.blogs_featured_section .black-caption {
        max-width: 85%;
        margin: 0 auto;
        padding-bottom: 0px;
        margin-bottom: 25px;
    }

    .blog-list-item > .left,.blog-list-item > .right {
        flex: 0 0 100%;
        flex-basis: 100%;
    }

    .blog-list-item .buttons-group.justify-content-between {
        justify-content: flex-start !important;
    }

    .blog-cta-section {
        max-width: 85%;
        margin: 0px auto 30px;
        padding: 23px 4% 20px;
    }

    .blog-cta-section h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .blogs-sidebar {
        display: block;
        max-width: 85%;
        margin: 20px auto 0;
        padding-top: 35px;
        border-top: 1px solid #f5f5f5;
    }

    .blogs-sidebar .blogs-sidebar-widget {
        padding: 0;
    }
    .blogs-sidebar-widget h2 {
        font-size: 22px;
        line-height: normal;
    }

    .media.blog-recent-item .blog-list-item-footer .left {
        display: block;
    }
    section.blogs_listings_section {
        position: relative;
        padding: 35px 0 140px;
    }
    section.blogs_featured_section {
        padding: 30px 0 5px;
    }
    .blogs-sidebar .blogs-sidebar-widget:last-child {
        margin-bottom: 0px;
    }
    .blogs-tags-list a,ul.blogs-cats-list li a{
        font-size: 13px;
    }
}



@media screen and (max-width: 480.98px){

    .blogs-sidebar,.blog-list-item,
    .blog-list-item-featured,
    section.blogs_featured_section .black-caption,
    .blog-cta-section {
        max-width: 100%;
        padding-bottom: 0px;
        margin-bottom: 25px;
    }
    .blog-cta-section{
        padding-bottom: 20px;
    }
    section.blogs_featured_section .black-caption{
        margin-bottom: 15px;
    }
    .blog-cta-section .buttons-group {
        gap: 3px;
    }
}

.single-post-heading, .single-post-heading a {
    font-size: 30px;
    font-weight: 600;
    color: #222222;
    line-height: 140%;
}

.single-post-heading {
    margin-bottom: 10px;
}

.single-post-author-info {
    font-size: 16px;
    color: #272727;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 14px;
}

.single-post-author-info a {
    color: #272727;
    font-weight: 500;
    text-decoration: underline;
}

.blog-list-item-single .blog-list-item-featured-img {
    margin-bottom: 20px;
}

.blog-list-item-single .content .blog-list-item-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
}
.blog-list-item-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.post_comment_area.blog-item.blog_comment_area {
    padding: 40px 80px;
    margin-top: 50px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/comment_form_bg.png) no-repeat center center;
    background-size: cover;
}

.post_comment_area.blog-item.blog_comment_area h3 {
    font-size: 24px;
    margin: 0 -15px;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 140%;
}

.post_comment_area.blog-item.blog_comment_area  .form-group .form-control {
    background: transparent;
    border-radius: 4px;
    border-color: rgba(0,141,199,0.53);
    min-height: 45px;
    padding: 13px 15px;
}

.post_comment_area.blog-item.blog_comment_area .form-group .form-control {
    font-size: 14px;
    font-weight: 400;
    color: #272727;
    line-height: normal;
}

.post_comment_area.blog-item.blog_comment_area .form-group .form-control::placeholder {
    color: #272727;
}

.approved_comments_wrap {
    margin: 0 -15px;
    background: rgba(204,204,204,0.50);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.approved_comments_wrap h2 {
    font-size: 22px;
    font-weight: 600;
    color: #272727;
    margin-bottom: 14px;
}

.approved_comments_wrap .comment-content .panel {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
}

.approved_comments_wrap .comment-content .panel .panel-heading,.approved_comments_wrap .comment-content .panel .panel-body {
    padding: 10px 10px 7px 10px;
    line-height: normal;
}

.approved_comments_wrap .comment-content .panel .panel-heading {
    background: #05b6a6;
    color: #fff;
}

.approved_comments_wrap .comment-content .panel .panel-heading * {
    color: #fff !important;
}

.approved_comments_wrap .comment-content .panel .panel-body {
    padding: 15px;
}

.approved_comments_wrap .comment-content .panel:not(:last-child) {
    margin-bottom: 15px;
}

@media screen and (max-width: 575.98px){
    .post_comment_area.blog-item.blog_comment_area {
        padding: 25px 35px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .approved_comments_wrap h2,.post_comment_area.blog-item.blog_comment_area h3 {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 8px;
    }

    .approved_comments_wrap {
        padding: 15px;
    }
    .single-post-heading, .single-post-heading a {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 5px;
    }

    .single-post-author-info {
        font-size: 14px;
        margin-bottom: 7px;
    }

    .blog-list-item-single .content .blog-list-item-content p {
        font-size: 14px;
        line-height: 25px;
    }

    .blog-list-item-single .content ul.list-with-checkmark li {
        margin-bottom: 8px;
    }

    .blog-list-item-single .content h3 {
        font-size: 17px;
    }
}

.blogs_pagination .row {
    align-items: center;
}

.blogs_pagination .previous_page {
    text-indent: -100000000px;
}

.blogs_pagination .pagination {
    justify-content: start;
    padding-top: 0;
    margin-left: -15px;
}

.blogs_pagination .pagination * {
    border: none;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(18, 18, 18, 0.5) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    min-width: inherit;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 25px !important;
    transition: all .3s ease;
    border: 1px solid #fff !important;
    text-align: center;
    margin: 0 0.3rem;
}

.blogs_pagination .pagination *.current, .blogs_pagination .pagination *:hover, .blogs_pagination .pagination *:active, .blogs_pagination .pagination *:focus {
    color: #121212 !important;
    border: 1px solid #028DC8 !important;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
}

.blogs_pagination .pagination .previous_page {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/blog_pagination_left_icon.png) no-repeat center center !important;
    background-size: auto !important;
}

.blogs_pagination .pagination .previous_page.disabled {
    filter: opacity(0.5);
}

.blogs_pagination .pagination .next_page {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/blog_pagination_right_icon.png) no-repeat center center !important;
    background-size: auto !important;
    text-indent: -100000000px;
    filter: opacity(0.5);
}

.blogs_pagination .pagination .next_page:hover,.blogs_pagination .pagination .next_page:active,.blogs_pagination .pagination .next_page:focus {
    filter: opacity(1);
}

.blogs_pagination .pagination .next_page.disabled {
    filter: opacity(0.5) !important;
}


.news_events_bg{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/news_and_events_bg.jpg) no-repeat center center !important;
    background-size: auto !important;
}


.blog-list-item.news_item > .left {
    flex: 0 0 17%;
}

.blog-list-item.news_item > .right {
    flex: 0 0 81.5%;
}

.blog-list-item.news_item .buttons-group {
    display: none;
}

.blog-list-item.news_item > .left .blog-list-item-featured-img img {
    min-height: 190px;
    min-width: 100%;
}

.blog-list-item.news_item > .right .blog-list-item-content {
    margin-bottom: 5px;
}

.blog-list-item.news_item > .right .blog-list-item-content p.blog-list-item-excerpt {
    margin-bottom: 10px;
}

.blog-list-item.news_item .blog-list-item-content .blog-list-item-dates {
    margin-bottom: 7px;
}

.blog-list-item.news_item > .left .blog-list-item-featured-img {
    margin: 0;
}

.news_categories_wrap {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(39,39,39,0.25);
}

.news_categories_wrap ul.news-cats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: normal;
    display: flex;
    gap: 25px;
}

.news_categories_wrap ul.news-cats-list li {
    list-style: none;
    text-align: center;
}

.news_categories_wrap ul.news-cats-list li a {
    text-align: center;
    padding: 14px 16px;
    font-size: 16px;
    color: #272727;
    display: inline-block;
    line-height: normal;
    position: relative;
    transition: all .3s ease;
}

.news_categories_wrap ul.news-cats-list li a.active,
.news_categories_wrap ul.news-cats-list li a:hover,
.news_categories_wrap ul.news-cats-list li a:active,
.news_categories_wrap ul.news-cats-list li a:focus {
    text-shadow: 0 0 black;
    transition: all .3s ease;
}

.news_categories_wrap ul.news-cats-list li a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    left: 0;
    bottom: -1px;
    opacity: 0;
    transition: all .3s ease;
}

.news_categories_wrap ul.news-cats-list li a.active:before, 
.news_categories_wrap ul.news-cats-list li a:hover:before, 
.news_categories_wrap ul.news-cats-list li a:active:before, 
.news_categories_wrap ul.news-cats-list li a:focus:before {
    opacity: 1;
    transition: all .3s ease;
}


@media screen and (max-width: 991.98px){
    .blog-list-item.news_item > .left {
        flex: 0 0 27%;
    }

    .blog-list-item.news_item > .right {
        flex: 0 0 71.5%;
    }
    .blog-list-item.news_item > .left .blog-list-item-featured-img img {
        min-height: 230px;
        min-width: 100%;
    }
}

@media screen and (max-width: 575.98px){
    .news_categories_wrap ul.news-cats-list {
        gap: 5px;
        width: 1300px;
    }

    .news_categories_wrap ul.news-cats-list li a {
        padding: 10px 11px;
        font-size: 14px;
    }

    .news_categories_wrap {
        margin-bottom: 25px;
        overflow-x: scroll;
        padding-bottom: 1px;
        overflow-y: hidden;
    }

    .blog-list-item.news_item > .left,.blog-list-item.news_item > .right {
        flex: 0 0 100%;
    }

    .blog-list-item.news_item {
        gap: 20px;
    }
    .blogs_pagination .pagination {
        justify-content: center;
    }
}


.coming_soon_panel .subscribe_field input[type="email"] {
display: inline-block;
    width: 65%;
    padding: 18px 45px 18px 26px;
    margin: 8px 0;
    box-sizing: border-box;
    height: 44px;
    margin-top: 18px;
    border-radius: 40px;
    border: 1px solid #008DC7;
    background: transparent;
    box-shadow: none;
}
.coming_soon_panel .subscribe_field input[type="email"]:focus{
    border: 1px solid #008DC7;
    outline: none;

}
.coming_soon_panel .subscribe_field input[type="email"],
.coming_soon_panel .subscribe_field input[type="email"]::-webkit-input-placeholder {
    font-size: 14px;
    line-height: 3;
    color: #272727;
}

.coming_soon_panel .subscribe_field .bt {
    margin-left: -105px;
    font-size: 14px;
    display: inline-block;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    color: #272727;
    transition: all .3s ease;
}

.coming_soon_panel .subscribe_field .bt:hover,
.coming_soon_panel .subscribe_field .bt:focus,
.coming_soon_panel .subscribe_field .bt:active{
    background: #008DC7;
    color: #fff;
    transition: all .3s ease;
}


section.coming_soon_page_wrap {
    position: relative;
    padding: 75px 0 220px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/coming_soon_page_bg.png) no-repeat center center;
    background-size: cover;    
    background-position: bottom;
}

section.coming_soon_page_wrap .container {
    max-width: 1440px;
}

section.coming_soon_page_wrap .coming_soon_panel {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/coming_soon_panel_bg_new_updated.png) no-repeat center center;
    background-size: 100% 100%;
    box-shadow: 0px 40px 80px rgba(0,0,0,0.09);
    padding: 60px 40px 0px 40px;
}

section.coming_soon_page_wrap .coming_soon_panel h1 {
    font-size: 40px;
    font-weight: 700;
    color: #008DC7;
    margin-bottom: 15px;
}

section.coming_soon_page_wrap .coming_soon_panel p {
    font-size: 15px;
    font-weight: 500;
    color: #272727;
    margin-bottom: 15px;
}
section.coming_soon_page_wrap .coming_soon_panel .bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    padding-bottom: 2px;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom {
    margin-top: 65px;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a path {
    color: #008DC7;
    fill: #008DC7 !important;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a svg {
    margin-top: -4px;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a {
    padding: 5px;
    background: #fff;
    width: 32px;
    display: inline-block;
    height: 29px;
    line-height: 22px;
    transition: all .3s ease;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:hover,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:focus,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:active,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:hover path,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:focus path,section.coming_soon_page_wrap .coming_soon_panel .bottom ul li a:active path {
    background: #008DC7;
    color: #fff;
    fill: #fff !important;
    transition: all .3s ease;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li:first-child a {
    border-top-left-radius: 3px !important;
}

section.coming_soon_page_wrap .coming_soon_panel .bottom ul li:last-child a {
    border-top-right-radius: 3px !important;
}

@media screen and (max-width: 991.98px){
    section.coming_soon_page_wrap {
        padding: 55px 0 180px;
    }

    .coming_soon_panel .subscribe_field input[type="email"] {
        width: 75%;
    }
}

@media screen and (max-width: 767.98px){
    section.coming_soon_page_wrap {
        padding: 40px 0 150px;
    }

    .coming_soon_panel .subscribe_field input[type="email"] {
        width: 95%;
    }
}

@media screen and (max-width: 575.98px){
    section.coming_soon_page_wrap .coming_soon_panel{
        padding: 40px 15px 0px 15px;
    }
    section.coming_soon_page_wrap .coming_soon_panel h1 {
        font-size: 24px;
        font-weight: 700;
        color: #008DC7;
        margin-bottom: 8px;
    }

    section.coming_soon_page_wrap .coming_soon_panel p {
        font-size: 14px;
        font-weight: 500;
        color: #272727;
        margin-bottom: 8px;
    }
    section.coming_soon_page_wrap .coming_soon_panel .bottom {
        margin-top: 35px;
    }
    .coming_soon_panel .subscribe_field input[type="email"] {
        padding: 18px 25px 18px 12px;
        width: 98%;
    }
}


.learning_center_page_section1{
    background: url('../images/learning_center_section_bg.png') no-repeat center center;
    background-size: cover;
    padding: 75px 0 180px;
}

.learning_center_page_section1 .container{
    max-width: 1440px;
}

.learning_center_side_info_panel .heading-tag-line {
    font-size: 16px;
    margin-bottom: 13px !important;
}

.learning_center_side_info_panel h2.section-content-heading {
    line-height: normal;
}

.learning_center_side_info_panel p.paragraph {
    color: #272727 !important;
    font-weight: 500 !important;
}

.learning-center-card {
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(156,156,156,0.12);
    margin-bottom: 25px;
}
.learning-center-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #121212;
}

.learning-center-card p {
    font-size: 14px;
    color: #272727;
    line-height: 27px;
}

.learning-center-card a.themebtn {
    padding: 12px 20px;
}

.learning-center-card .center-buttons {
    gap: 8px !important;
}
.learning-center-card img.fix-img {
    object-fit: none;
}
@media screen and (max-width: 1190.98px){
    #offcanvas-menu{
        display: none !important;
    }    
}

@media screen and (min-width: 991.99px){
    .learning_center_side_info_panel {
        top: 12rem;
    }
}


@media screen and (min-width: 1190.99px){
    .learning_center_side_info_panel {
        top: 9rem;
    }
    #offcanvas-menu{
        display: none !important;
    }
}
.learning-center-card .card-img img{
    min-height: 230px;
    max-height: 230px;
    object-fit: cover;
}

@media screen and (max-width: 991.98px){
    .learning-center-card .card-img img{
        width: 100%;
    }
    .learning_center_side_info_panel {
        margin-top: 0px !important;
        padding-top: 0px !important;
        margin-bottom: 30px;
    }

    .learning_center_page_section1 {
        padding: 35px 0 150px;
    }
}

@media screen and (max-width: 575px){
    .learning_center_side_info_panel .heading-tag-line {
        font-size: 13px;
        margin-bottom: 8px !important;
    }
    .learning_center_side_info_panel p.paragraph {
        font-weight: 400 !important;
    }
    .learning_center_side_info_panel {
        margin-bottom: 0px;
    }

    .learning_center_page_section1 {
        padding: 25px 0 150px;
    }

    .learning-center-card p {
        line-height: 24px;
    }

    .learning-center-card h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .learning-center-card .center-buttons {
        display: flex !important;
    }

    .learning-center-card .center-buttons .appointment_dropdown img {
        display: none !important;
    }

    .learning-center-card .center-buttons .appointment_dropdown {
        top: 0px !important;
    }
    .learning-center-card a.themebtn {
        font-size: 11px;
        padding: 12px 10px 12px 13px;
    }
}

@media screen and (max-width: 475px){
    .learning-center-card .card-img img {
        min-height: 170px;
        max-height: 170px;
    }
}

#fh5co-primary-menu > li > .sf-with-ul:after {
    right: 0;
    margin-right: 0;
    margin-left: 10px;
}
#fh5co-header-section nav ul li.show_after_1440 {
    margin-right: 0px;
}

/*#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.center-col {
    padding: 0 30px;
    padding-left: 50px;
}*/

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li a.sf-with-ul {
    border: none !important;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li a {
    width: 100% !important;
    display: block !important;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li > ul li {
    display: block;
    width: 100%;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li > ul {
    width: 100%;
    min-width: 100% !important;
    max-width: 100% !important;
    padding-left: 10px;
    margin-top: 0px;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li > ul li a:before {
    font-size: 16px;
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.last-col {
    background: #f3f3f3;
    padding: 1px 15px 7px 15px;
    margin-top: 30px;
    border-radius: 8px;
    position: relative;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.last-col > a.sf-with-ul {
    margin-top: 0px !important;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.last-col > ul {
    display: inline-flex !important;
    width: auto;
    min-width: auto !important;
    max-width: inherit !important;
    gap: 20px;
}

#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.last-col:before {
    content: '';
    position: absolute;
    top: -81px;
    left: 2%;
    z-index: -1;
    border-left: none;
    border-top: none;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0px 72px 91.5px;
    border-color: transparent transparent #f3f3f3 transparent;
    transform: rotate(90deg);
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.last-col {
    padding-top: 5px;
}
#fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown > .row > li.active a {
    background: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: unset;
}

@media screen and (max-width: 1440px){
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
        left: -50%;
        transform: translateX(-5%);
    }
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu:before {
        left: 135px !important;
    }
}

@media screen and (max-width: 1290px){
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
        left: -125%;
        transform: translateX(-5%);
    }
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu:before {
        left: 200px !important;
    }
    #fh5co-primary-menu .big_dropdown .fh5co-sub-menu.digital_solutions_dropdown {
        min-width: 72em;
    }
}


@media screen and (max-width: 1190px){
    .main-features-mobile-menu > ul {
        background-color: rgba(239, 239, 239, 0.6);
    }

    .main-features-mobile-menu {
        background: rgba(239, 239, 239, 0.6);
        width: 90%;
        margin: 10px auto 5px;
        overflow: visible;
    }

    .main-features-mobile-menu:before {
        content: '';
        position: absolute;
        top: -2px;
        left: 9%;
        width: 20px;
        z-index: 0;
        height: 20px;
        border-left: none;
        border-top: none;
        transform: rotate(43deg) translate(-55%, -5%);
        background: whitesmoke;
    }
}


.consults_page_section1{
    background: transparent !important;
}

@media screen and (min-width: 575.99px){
    .consults_page_section1 .rounded-border-container {
        border-radius: 120px;
    }
}


@media screen and (max-width: 575.98px){
    .consults_page_section1 .rounded-border-container *{
        text-align: left !important;
        justify-content: flex-start !important;
    }
}

.consults_page_section2{
    background: url('../images/about_section_bg.png') no-repeat center center;
    background-size: cover;
}
.consults_page_section2 .container{
    max-width: 1440px;
}
.consults_page_section2 .who_we_help_section1_bg{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_boxex_bg.png) no-repeat center center;
    background-size: 100% calc(100% - 0%);
    padding-top: 50px;
    padding-bottom: 50px;
}

section.consults_page_section2 {
    padding: 10px 0 70px !important;
}
section.consults_page_section2 .emr-boxes-bg {
    margin-top: 40px;
}

#who_we_help_section3.consults_page_section3{
    background: url('https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_section3_bg.png') no-repeat center center; 
    background-size: cover !important;
    padding: 90px 0 90px;
}


.consults_page_section4{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_section4_bg_updated.png) no-repeat center bottom;
    background-size: cover;
    position: relative;
    padding: 50px 0;
}

.consults_page_section4 .container{
    max-width: 1440px;
}

@media screen and (max-width: 575.98px){
    section#home-about-section.consults_page_section1 {
        padding-bottom: 30px;
    }

    section#who_we_help_section1.consults_page_section2 {
        padding: 30px 0 0px !important;
    }

    .consults_page_section2 .container:nth-child(3),
    .consults_page_section2 .container:nth-child(4){
        background: #fff;
    }

    .consults_page_section2 .container:nth-child(4) .row {
        margin-top: 0px;
        padding-bottom: 30px;
        padding-top: 13px;
    }

    section.consults_page_section2 .emr-boxes-bg .card-style {
        box-shadow: 0px 4px 9px 0px rgba(52,174,201,0.12);
        width: 100%;
        max-width: 100%;
    }

    .consults_page_section2 .container:nth-child(4) .row .col-12.mt-4 {
        margin-top: 5px !important;
    }

    .consults_page_section2 .who_we_help_section1_bg {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    section#who_we_help_section1.consults_page_section2 .heading-with-sub .section-heading {
        text-align: left !important;
        margin-bottom: 10px;
    }
    #who_we_help_section3.consults_page_section3 {
        padding: 35px 0 35px;
    }
}

ul.list-with-checkmark li ul li {
    padding: 0px;
    background: transparent;
}

ul.list-with-checkmark li ul {
    margin-top: 5px;
}

.consults_page_section4_content_box_wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-around;
}

section.consults_page_section4 h2.section-heading {
    font-weight: 600;
}



@media screen and (max-width: 991.98px){

    section.consults_page_section4 .consults_page_section4_content_box_wrap {
        background: #fff;
        padding: 20px 15px;
        border-radius: 7px;
        border: 4px solid #E0E0E0;
        margin-bottom: 15px;
        align-content: baseline;
    }
}

@media screen and (max-width: 575.98px){
    section.consults_page_section4 {
        background: url(https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_mobile_bg_section4.png) no-repeat center bottom;
        background-size: cover;
        padding: 30px 0 15px;
    }

    section.consults_page_section4 h2.section-heading {
        font-size: 24px;
        text-align: left !important;
    }

    section.consults_page_section4 .black-caption.mb-5 {
        margin-bottom: 25px !important;
    }

    section.consults_page_section4 .consults_page_section4_content_box_wrap {
        background: #fff;
        padding: 20px 15px;
        border-radius: 7px;
        border: 4px solid #E0E0E0;
        margin-bottom: 15px;
        align-content: baseline;
    }
}

.consults_page_section6{
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_section6_bg.png) no-repeat center center;
    background-size: cover;
    padding: 35px 0 150px;
}

.consults_page_section6 .container {
    max-width: 1440px;
}

.consults_page_section6_content {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/consults_page_section6_content_bg.png) no-repeat center center;
    background-size: 100% 100%;
    text-transform: uppercase;
    line-height: 44px;
    font-size: 30px;
    padding: 80px 200px 140px 200px;
    color: #272727;
    margin: -40px -40px;
}

.consults_page_section6_content img {
    margin-top: 20px;
}

.consults_page_section6_content span {
    font-weight: 500;
}


@media screen and (max-width: 1250px){
    .consults_page_section6_content {
        margin: -40px -90px;
    }
}

@media screen and (max-width: 1060px){
    .consults_page_section6_content {
        margin: -40px -170px;
    }
}

@media screen and (max-width: 767.98px){
    .consults_page_section6_content {
        margin: -40px -55px;
    }
}

@media screen and (max-width: 630.98px){
    .consults_page_section6_content {
        margin: -30px -30px;
        padding: 70px 190px 90px 190px;
        font-size: 20px;
        line-height: normal;
    }
}

@media screen and (max-width: 575.98px){
    .consults_page_section6_content {
        font-size: 20px;
        line-height: normal;
    }

    .consults_page_section6_content {
        padding: 60px 70px 80px 70px;
    }

    .consults_page_section6_content img {
        max-width: 22px;
    }

    .consults_page_section6 {
        padding-bottom: 125px;
    }
}

@media screen and (max-width: 400.98px){
    .consults_page_section6_content {
        font-size: 17px;
        line-height: normal;
    }
}


@media screen and (max-width: 575.98px){
    .heading-with-sub h2.section-content-heading, .heading-with-sub h2.section-heading {
        color: #121212 !important;
    }

    div#banner-slider .banner-item .digi-banner-content p {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .black-caption + p, .paragraph, .section-para {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .mobile-pricing-table-wrap .mp-row .mp-column.with-bg {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .mobile-pricing-table-wrap .mp-row .mp-column.transparent {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .list-bg-img {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .card-style p.card-text {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .home-review-item p {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }
    .directory_listing_page_section2 .card-style p.card-text {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .how_we_help_box p {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .how_we_help_box h2 {
        font-size: 20px;
        color: #121212 !important;
        font-weight: 500;
    }

    section#directory_listing_page_section5 .card-style p.card-text {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }
    .card-style p.card-text {
        font-size: 14px;
        font-weight: 500 !important;
        color: #121212 !important;
    }

    div#banner-slider .banner-item .digi-banner-content p, 
    .black-caption + p, .paragraph, .section-para,
    .mobile-pricing-table-wrap .mp-row .mp-column.with-bg,
    .mobile-pricing-table-wrap .mp-row .mp-column.transparent ,
    .list-bg-img,
    .card-style p.card-text,
    .home-review-item p,
    .directory_listing_page_section2 .card-style p.card-text ,
    .how_we_help_box p,
    section#directory_listing_page_section5 .card-style p.card-text,
    .card-style p.card-text,
    .who-we-are-text-with-bg p,
    .solutions_section2 .carousel-nav a,
    .blog-list-item-content .blog-list-item-dates,
    .blog-list-item-content p.blog-list-item-excerpt,
    .blog-list-item-footer .blog-publisher-name-comments span,
    .blog-about-widget-wrap p,
    .contact_info_footer p,
    .modal_form_wrap p {
        font-weight: 500 !important;
        color: #121212 !important;
    }

    .solutions_section2 .carousel-nav a.active,
    .solutions_section2 .carousel-nav a:hover {
        color: #018DC8 !important;
    }
    .contact_page_info_box p, .contact_page_info_box a {
        color: #121212 !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 26px !important;
    }
}





section.news_events_search_bar .container {
    max-width: 1440px;
}

section.news_events_search_bar  .news_categories_wrap {
    margin-bottom: 0;
    border: none;
}

section.news_events_search_bar .news_categories_wrap  ul.news-cats-list li a {
    padding: 17px 20px;
}

section.news_events_search_bar .news_categories_wrap ul.news-cats-list li a:before {
    bottom: 0px;
    background: #018DC8;
}

.news_events_search_box .form-control {
    border: 1px solid #018DC8;
    color: #121212;
    border-radius: 25px;
    font-size: 14px;
    min-height: 35px;
    padding-left: 19px;
}

.news_events_search_box .btn {
    background: #018DC8 !important;
    border-color: #018DC8 !important;
    height: 35px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    outline: none !important;
    box-shadow: none !important;
}

.news_events_search_box .form-control::placeholder {
    color: #121212;
}

h2.news_events_list_page_heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 20px;
}

h2.news_events_list_page_heading a.link {
    float: right;
    font-size: 16px;
    color: #121212;
    font-weight: 500;
    margin-top: 7px;
}
.news_events_list_page_wrap .blog-list-item-content .blog-list-item-dates {
    color: #121212;
}

.blog-list-item.news_item .blog-list-item-content h2 {
    font-size: 20px;
}

.news_events_list_page_wrap .blog-list-item {
    padding-bottom: 25px;
}


.news_events_bg2 .news_events_list_page_wrap:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.news_events_bg2 .news_events_list_page_wrap {
    padding-bottom: 20px;
    border-bottom: 1px solid #EFEFEF;
    margin-bottom: 30px;
}

.news_events_bg2 .news_events_list_page_wrap .blog-list-item:last-child {
    padding: 0;
}
ul.news_sidebar_list {
    padding: 0;
    list-style: none;
}

ul.news_sidebar_list li {
    line-height: normal;
    padding: 10px 0px;
    border-bottom: 1px dotted rgba(18,18,18,0.25);
}

ul.news_sidebar_list li, ul.news_sidebar_list li a {
    font-size: 15px;
    font-weight: 500;
    color: #121212;
}

.blogs-sidebar-widget.news-and-events-widget h2 {
    margin-bottom: 15px;
}

.blogs-sidebar-widget.news-and-events-widget a.view-more-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #121212 !important;
}

.blogs-sidebar-widget.news-and-events-widget a.view-more-link img {
    filter: invert(1);
    position: relative;
    top: -1px;
    left: 3px;
    transition: all .3s ease;
}

.blogs-sidebar-widget.news-and-events-widget a.view-more-link:hover,
.blogs-sidebar-widget.news-and-events-widget a.view-more-link:focus,
.blogs-sidebar-widget.news-and-events-widget a.view-more-link:active {
    text-decoration: underline;
        transition: all .3s ease;
}

.blogs-sidebar-widget.news-and-events-widget a.view-more-link:hover img, 
.blogs-sidebar-widget.news-and-events-widget a.view-more-link:focus img, 
.blogs-sidebar-widget.news-and-events-widget a.view-more-link:active img {left: 7px;}


.news_events_bg2 .news_events_list_page_wrap .blog-list-item .right .blog-list-item-content:last-child {
    margin-bottom: 0px;
}

.news_events_bg2 .news_events_list_page_wrap .blog-list-item .right {
    flex: auto;
}

.news_events_bg2 .news_events_list_page_wrap .blog-list-item {
    flex-wrap: nowrap;
    gap: 15px;
    align-items: flex-start;
}

.news_events_bg2 .news_events_list_page_wrap .blog-list-item .icon-wrap {
    min-width: 75px;
}
@media screen and (max-width:400px){
    .news_events_bg2 .news_events_list_page_wrap .blog-list-item .icon-wrap{
        max-width:50px;
        min-width:50px;
    }
}
section.news_events_search_bar .news_categories_wrap ul.news-cats-list {
    width: 100% !important;
}
.blog-list-item.news_item .blog-list-item-content h2 {
    text-decoration: underline;
}
@media screen and (min-width: 575.99px){
    .news_events_bg2 .news_events_list_page_wrap .blog-list-item{
        align-items: center;
    }
}

.single-post-heading, .single-post-heading a{
    color: #121212;
}

@media screen and (max-width: 575.98px){
    .blog-list-item.news_item{
        max-width: 100%;
    }
    .blog-list-item.news_item .blog-list-item-content h2 {
        font-size: 16px;
        line-height: 21px;
    }
    .news_events_bg2 .news_events_list_page_wrap .blog-list-item {
        padding-bottom: 0px;
        margin-bottom: 15px;
    }

    .news_events_bg2 .news_events_list_page_wrap .blog-list-item:last-child {
        margin-bottom: 10px;
    }

    h2.news_events_list_page_heading {
        font-size: 22px;
        line-height: normal;
    }

    h2.news_events_list_page_heading a.link {
        font-size: 14px;
        font-weight: 500;
    }
    .blogs-sidebar-widget.news-and-events-widget a.view-more-link {
        font-size: 14px;
    }

    .blogs-sidebar-widget.news-and-events-widget a.view-more-link img {
        max-width: 6px;
        left: 1px;
    }
}


section.blogs_listings_section.single_news_events_warp {
    padding-top: 35px;
}


.single_news_events_post h1.single-post-heading {
    font-size: 36px;
    line-height: 120%;
}

.single_news_events_post .head .blog-list-item-content .blog-list-item-dates {
    border: 1px dashed rgba(50,55,79,0.24);
    border-left: 0px;
    border-right: 0px;
    padding: 10px 0;
    font-size: 16px;
    line-height: normal;
    margin-top: 13px;
}

.single_news_events_post .head .blog-list-item-content .blog-list-item-dates span {
    font-weight: 500;
}

.single_news_events_post .content .blog-list-item-content * {
    font-size: 15px;
    font-weight: 500;
    color: #121212;
    line-height: 22.5px !important;
}

.single_news_events_post .content {
    margin-top: 15px;
}

@media screen and (max-width: 575.98px){
    section.blogs_listings_section.single_news_events_warp {
        padding-top: 10px;
    }
    .single_news_events_post h1.single-post-heading {
        font-size: 22px;
        line-height: 33px;
        margin-bottom: 0px;
    }

    .single_news_events_post .head .blog-list-item-content .blog-list-item-dates {
        padding: 7px 0;
        font-size: 14px;
    }

    .single_news_events_post .content .blog-list-item-content * {
        font-weight: 500 !important;
    }
    section.single_news_events_warp {
        padding-bottom: 100px !important;
    }
}

.post_range_filter {
    width: auto !important;
    float: left;
    border: 1px solid rgba(39, 39, 39, 0.24) !important;
    border-radius: 4px;
    font-size: 15px !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    height: auto;
    word-spacing: normal;
    padding: 10px !important;
    margin-bottom: 25px;
}

.post_range_filter .fa-chevron-down {
    font-size: 11px;
    margin-left: 8px;
    position: relative;
    top: -1px;
}

.daterangepicker.ltr .ranges ul {
    padding: 15px 14px 0px;
    line-height: normal;
}

.daterangepicker.ltr .ranges ul li {
    margin-bottom: 10px;
}

.daterangepicker.ltr .ranges ul li.active {
    border-radius: 25px;
    background-color: #018DC8;
}

.daterangepicker.ltr .ranges ul li:hover {
    border-radius: 25px;
}

.daterangepicker.ltr td.active, .daterangepicker.ltr td.active:hover {
    background-color: #018DC8;
}

.daterangepicker.ltr td.off, .daterangepicker.ltr td.off.in-range, .daterangepicker.ltr td.off.start-date, .daterangepicker.ltr td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker.ltr .drp-buttons .btn {
    text-transform: capitalize;
}

.daterangepicker.ltr .drp-buttons .btn.btn-primary {
    background-color: #018DC8 !important;
    border-color: #018DC8 !important;
}



section.investor_relations_section2 {
    position: relative;
    padding: 15px 0 40px;
    background: #fff url(https://digimedspa.s3.us-west-1.amazonaws.com/investor_relation_home_section2_bg.png) no-repeat center center;
    background-size: cover;
    background-position: center right;
}

section.investor_relations_section2 .container {
    max-width: 1440px;
}

.custom_circle_tabs_item a {
    box-shadow: 0px 4px 10px rgba(0,0,0,0.10);
    background: #FFFFFF;
    text-align: center;
    border-radius: 100%;
    min-height: 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #272727;
    font-weight: 500;
    line-height: 120%;
}


.custom_circle_tabs_item {
    display: inline-block;
}

.custom_circle_tabs_item.size_1 a {
    min-height: 215px;
    min-width: 215px;
    width: 215px;
    height: 215px;
}

.custom_circle_tabs_item.size_1.small a {
    min-height: 125px;
    min-width: 125px;
    width: 125px;
    height: 125px;
}

.custom_circle_tabs_item.size_1.small.circle_4 a {
    box-shadow: 0px 0px 0px 20px #fff, 0px 4px 10px 20px rgba(0, 0, 0, 0.1);
}
.custom_circle_tabs_item.size_1.small.circle_4 a.active {
    box-shadow: 0px 0px 0px 20px #008dc7, 0px 4px 10px 20px rgba(0, 0, 0, 0.1);
}

.custom_circle_tabs_item.size_2 a {
    min-height: 160px;
    min-width: 160px;
    width: 160px;
    height: 160px;
    line-height: 130%;
}

.custom_circle_tabs_item.size_2.medium a {
    min-height: 140px;
    min-width: 140px;
    width: 140px;
    height: 140px;
    line-height: normal;
}

.custom_circle_tabs_item.center {
    margin: 20px 6% 20px 15%;
}

.custom_circle_tabs_item.center img {
    max-width: 285px;
}

.custom_circle_tabs_item.size_3 a {
    min-height: 251px;
    min-width: 251px;
    width: 251px;
    height: 251px;
    line-height: 130%;
}

.custom_circle_tabs_item.size_3.large a {
    min-height: 185px;
    min-width: 185px;
    width: 185px;
    height: 185px;
}

.custom_circle_tabs_item.circle_1 {
    margin-right: 60px;
    position: relative;
    top: 60px;
    left: -20px;
}

.custom_circle_tabs_item.circle_2 {
    margin-right: 55px;
}

.custom_circle_tabs_item.circle_3 {
    position: relative;
    top: 100px;
    right: -10px;
}

.custom_circle_tabs_item.circle_4 {
    position: relative;
    top: 65px;
    right: -20px;
}

.custom_circle_tabs_item.circle_5 {
    position: relative;
    top: -10px;
    right: -180px;
}

.custom_circle_tabs_item.circle_6 {
    position: relative;
    left: 131px;
    top: -2px;
}
.custom_circle_tabs_item.circle_7 {
    position: relative;
    right: 85.5%;
    top: 150px;
}




@media screen and (max-width: 1435px){
    .custom_circle_tabs_wrap {
        margin-left: -30px;
    }
}


@media screen and (max-width: 1405px){
    .custom_circle_tabs_item.center {
        margin: 20px 6% 20px 15%;
    }

    .custom_circle_tabs_item.center img {
        max-width: 285px;
    }

    .custom_circle_tabs_item.size_1 a {
        min-height: 175px;
        min-width: 175px;
        width: 175px;
        height: 175px;
    }

    .custom_circle_tabs_item.size_1.small a {
        min-height: 125px;
        min-width: 125px;
        width: 125px;
        height: 125px;
    }

    .custom_circle_tabs_item.size_2 a {
        min-height: 145px;
        min-width: 145px;
        width: 145px;
        height: 145px;
        line-height: 130%;
    }

    .custom_circle_tabs_item.size_2.medium a {
        min-height: 140px;
        min-width: 140px;
        width: 140px;
        height: 140px;
        line-height: normal;
    }

    .custom_circle_tabs_item a {
        font-size: 16px;
    }

    .custom_circle_tabs_wrap {
        padding-left: 0%;
        margin-left: -10%;
    }
    .custom_circle_tabs_item.size_3 a {
        min-height: 231px;
        min-width: 231px;
        width: 231px;
        height: 231px;
    }
    .custom_circle_tabs_item.size_3.large a {
        min-height: 185px;
        min-width: 185px;
        width: 185px;
        height: 185px;
    }

    .custom_circle_tabs_item.circle_1 {
        margin-right: 60px;
        position: relative;
        top: 60px;
        left: -20px;
    }

    .custom_circle_tabs_item.circle_2 {
        margin-right: 55px;
    }

    .custom_circle_tabs_item.circle_3 {
        position: relative;
        top: 100px;
        right: -20px;
    }

    .custom_circle_tabs_item.circle_4 {
        position: relative;
        top: 65px;
        right: -20px;
    }

    .custom_circle_tabs_item.circle_5 {
        position: relative;
        top: -10px;
        right: -180px;
    }

    .custom_circle_tabs_item.circle_6 {
        position: relative;
        left: 131px;
        top: -2px;
    }
    .custom_circle_tabs_item.circle_7 {
        position: relative;
        right: 85.5%;
        top: 150px;
    }

}


@media screen and (max-width: 1310px){
    .custom_circle_tabs_item.center {
        margin: 30px 9% 20px 19%;
    }
    .custom_circle_tabs_item.center img {
        max-width: 230px;
    }

    .custom_circle_tabs_item.circle_1 {
        margin-right: 60px;
        position: relative;
        top: 70px;
        left: 0px;
    }

    .custom_circle_tabs_item.circle_2 {
        margin-right: 50px;
    }

    .custom_circle_tabs_item.circle_3 {
        position: relative;
        top: 110px;
        right: 5px;
    }

    .custom_circle_tabs_item.circle_4 {
        position: relative;
        top: 70px;
        right: 35px;
    }

    .custom_circle_tabs_item.circle_5 {
        position: relative;
        top: -5px;
        right: -140px;
    }

    .custom_circle_tabs_item.circle_6 {
        position: relative;
        left: 100px;
        top: -25px;
    }
    .custom_circle_tabs_item.circle_7 {
        position: relative;
        right: 83.5%;
        top: 70px;
    }
    /*.custom_circle_tabs_item.size_1.small a {
        min-height: 105px;
        min-width: 105px;
        width: 105px;
        height: 105px;
    }*/
}


@media screen and (max-width: 1294px){
    .custom_circle_tabs_wrap {
        padding-left: 0%;
        margin-left: -10%;
        margin-right: -10%;
    }
}

@media screen and (max-width: 1199px){
    /*.custom_circle_tabs_wrap {
        padding-left: 2%;
    }*/
    .custom_circle_tabs_wrap {
        margin-left: 5%;
        margin-right: -15%;
    }

}

@media screen and (max-width: 1143px){

    .custom_circle_tabs_wrap {
        margin-left: 7%;
        margin-right: -20%;
    }


    .custom_circle_tabs_item.center {
        margin: 30px 9% 20px 19%;
    }
    .custom_circle_tabs_item.center img {
        max-width: 230px;
    }

    .custom_circle_tabs_item.circle_1 {
        margin-right: 60px;
        position: relative;
        top: 70px;
        left: 0px;
    }

    .custom_circle_tabs_item.circle_2 {
        margin-right: 50px;
    }

    .custom_circle_tabs_item.circle_3 {
        position: relative;
        top: 110px;
        right: 5px;
    }

    .custom_circle_tabs_item.circle_4 {
        position: relative;
        top: 70px;
        right: 35px;
    }

    .custom_circle_tabs_item.circle_5 {
        position: relative;
        top: -5px;
        right: -140px;
    }

    .custom_circle_tabs_item.circle_6 {
        position: relative;
        left: 100px;
        top: -25px;
    }
    .custom_circle_tabs_item.circle_7 {
        position: relative;
        right: 83.5%;
        top: 70px;
    }
}

@media screen and (max-width: 1080px){
    .custom_circle_tabs_item.center {
        margin: 30px 3% 20px 19%;
    }
    .custom_circle_tabs_item.circle_4 {
        right: -5px;
    }
    .custom_circle_tabs_item.circle_7 {
        right: 77.5%;
    }

}

@media screen and (max-width: 1065px){
    .custom_circle_tabs_item.center {
        margin: 15px 3% 20px 19%;
    }
    .custom_circle_tabs_item.circle_3 {
        right: 25px;
    }
    .custom_circle_tabs_item.circle_4 {
        right: 5px;
        top: 65px;
    }
    .custom_circle_tabs_item.circle_5 {
        top: -15px;
        right: -125px;
    }
}

@media screen and (max-width: 1025px){
    .custom_circle_tabs_wrap {
        margin-left: 5%;
        margin-right: 0%;
    }
    .custom_circle_tabs_item.circle_1 {
        margin-right: 25px;
        position: relative;
        top: 80px;
        left: 0px;
    }
    .custom_circle_tabs_item.circle_2 {
        margin-right: 40px;
        position: relative;
        top: 10px;
    }
    .custom_circle_tabs_item.circle_3 {
        right: 5px;
    }
    .custom_circle_tabs_item.size_3.large a {
        min-height: 165px;
        min-width: 165px;
        width: 165px;
        height: 165px;
    }
    .custom_circle_tabs_item.circle_4 {
        right: 15px;
        top: 75px;
    }
    .custom_circle_tabs_item.circle_5 {
        top: -22px;
        right: 45px;
    }
    .custom_circle_tabs_item.circle_6 {
        position: relative;
        left: -70px;
        top: -25px;
    }
    .custom_circle_tabs_item.circle_7 {
        right: 20px;
        top: -130px;
    }
    .custom_circle_tabs_item.size_1.small a {
        min-height: 115px;
        min-width: 115px;
        width: 115px;
        height: 115px;
    }
}



.investor_home_section2_carousel_info ul {
    padding-left: 20px;
    margin-bottom: 0px;
}

.investor_home_section2_carousel_info ul li {
    font-size: 19px;
    font-weight: 500;
    line-height: 27px;
    color: #272727;
    margin-bottom: 15px;
}

.investor_home_section2_carousel_info ul li a {
    font-size: 19px;
    font-weight: 500;
    line-height: 27px;
    color: #272727;
}

.investor_home_section2_carousel_info ul li:last-child {
    margin-bottom: 0px;
}

.owl-carousel.investor_home_section2_carousel {margin-top: 25%;}

.custom_circle_tabs_item a.active {
    background: #008dc7;
    color: #fff;
    transition: all .3s ease;
}

.custom_circle_tabs_item a {
    transition: all .3s ease;
}

.custom_circle_tabs_item a br {
    display: none !important;
}

.custom_circle_tabs_item a {padding: 0 5%;}


@media screen and (max-width: 1400px){
    .owl-carousel.investor_home_section2_carousel {
        margin-top: 25%;
        padding-left: 30px;
    }
}

@media screen and (max-width: 991.98px){
    section.investor_relations_section2{
        padding: 45px 0 20px;
    }
    section.investor_relations_section2 .investor_home_section2_logo {
        margin-bottom: 50px;
        margin-top: -10px;
    }

    .investor_home_section2_carousel_info_card {
        background: #FFFFFF;
        border-radius: 7px;
        padding: 20px 25px 24px 25px;
        margin-bottom: 25px;
    }

    .investor_home_section2_carousel_info_card .heading-with-sub h2.section-content-heading {
        font-size: 22px;
        line-height: 35px;
    }

    .investor_home_section2_carousel_info ul li,.investor_home_section2_carousel_info ul li a {
        font-size: 17px;
        line-height: 24px;
    }

    .investor_home_section2_carousel_info ul li {
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 575.98px){
    .investor_home_section2_carousel_info_card .heading-with-sub h2.section-content-heading {
        font-size: 22px;
        line-height: 33px;
    }

    .investor_home_section2_carousel_info ul li,.investor_home_section2_carousel_info ul li a {
        font-size: 14px;
        line-height: 22px;
    }
    section.investor_relations_section2 .investor_home_section2_logo {
        margin-bottom: 30px;
        margin-top: -8px;
    }
}


h1.text-theme-color, 
h2.text-theme-color, 
h3.text-theme-color, 
h4.text-theme-color, 
h5.text-theme-color, 
h6.text-theme-color, 
p.text-theme-color, 
span.text-theme-color, 
a.text-theme-color, 
li.text-theme-color, 
label.text-theme-color, 
strong.text-theme-color, 
em.text-theme-color, 
small.text-theme-color, 
b.text-theme-color, 
i.text-theme-color, 
u.text-theme-color {
    color: #018dc8;
}
.visa_redemptoin_page_section1{
    background: linear-gradient(101.59deg, rgba(255, 255, 255, 0) 0%, rgba(187, 191, 192, 0.25) 99.5%);
    padding: 35px 0 150px;
}
.visa_redemptoin_page_banner .container,
.visa_redemptoin_page_section1 .container{
    max-width: 1440px;
}

.visa_redemptoin_page_section1 .heading-with-sub h2.section-content-heading {
    font-weight: 600;
    font-size: 38px;
}

.visa_redemptoin_page_section1 .paragraph.big-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 40px;
    color: #121212 !important;
}

.visa_redemptoin_page_section1 .blue-text.paragraph {
    font-family: 'Montserrat', ui-sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    text-align: left;
    color: #05B6A6;
    text-transform: uppercase;
}

.visa_redemptoin_page_section1 .blue-text.paragraph + .paragraph {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #121212;
}

.visa_redemptoin_page_note {
    background: #F4FCFE;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    align-items: baseline;
    box-shadow: 0px 4px 71px 0px rgba(0,0,0,0.1);
    padding: 12px;
}

.visa_redemptoin_page_note span {
    white-space: nowrap;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-right: 15px;
}

@media screen and (max-width: 1366.98px){
    .visa_redemptoin_page_note {
        flex-direction: column;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 991.98px){
    .visa_redemptoin_page_section1 .heading-with-sub h2.section-content-heading {
        font-size: 35px;
    }

    .visa_redemptoin_page_section1 .paragraph.big-text {
        font-size: 24px !important;
        line-height: 38px;
    }

    .visa_redemptoin_page_section1 .blue-text.paragraph {
        font-size: 18px;
        font-weight: 600;
        line-height: 20.38px;
    }

    .visa_redemptoin_page_section1 .blue-text.paragraph + .paragraph {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 10px !important;
    }

    .visa_redemptoin_page_section1 .buttons-group {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 575.98px){
    .visa_redemptoin_page_section1 .heading-with-sub h2.section-content-heading {
        font-size: 22px;
        line-height: 33px;
    }
    .visa_redemptoin_page_section1 .paragraph.big-text {
        font-size: 18px !important;
        line-height: 32px;
        margin-bottom: 15px !important;
    }
    .visa_redemptoin_page_section1 .blue-text.paragraph {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 19.5px !important;
        color: #05B6A6 !important;
        margin-bottom: 15px !important;
    }
    .visa_redemptoin_page_section1 .blue-text.paragraph + .paragraph {
        font-size: 15px !important;
        line-height: 28px;
        margin-bottom: 0px !important;
        font-weight: 400 !important;
    }
    .visa_redemptoin_page_section1 .buttons-group a.themebtn {
        font-size: 16px;
        padding: 12px 10px 12px 13px;
        font-weight: 700;
    }
    .visa_redemptoin_page_note {
        margin: 0 -15px;
        box-shadow: 0px 4px 71px 0px rgba(0,0,0,0.1);
    }
}


section#home-pricing-table-section.updated-pricing-design{
    background: #fff url('../images/new-pricing-design-bg.jpg') no-repeat center top;
    background-size: cover;
}
section#home-pricing-table-section.updated-pricing-design .container-fluid {
    max-width: 1335px;
    padding-left: 0;
    padding-right: 0;
}
section#home-pricing-table-section.updated-pricing-design .sub-head {
    text-transform: none;
    font-style: italic;
    margin-bottom: 50px;
}
.pricing-tabs {
    background: #F4F5F5;
    overflow: hidden;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 30px;
}
.pricing-tabs .btn {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(50,55,63,0.56);
    text-transform: none;
    border-radius: 8px !important;
    word-spacing: 0;
    padding: 10px;
}

.pricing-tabs .btn.active,.pricing-tabs .btn:hover,.pricing-tabs .btn:active,.pricing-tabs .btn:focus {
    background: #E5F3FF !important;
    color: #018DC8 !important;
}
.pricing-tabs .btn:first-child{
        margin-right:5px;
}

.bds-pricing-info-wrapper {
    border: 1px solid rgba(1,154,188,0.20);
    border-radius: 12px;
    background: #fff;
}
.bds-pricing-info-wrapper .bds-pricing-head h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    background: #fff url('../images/bds-pricing-head-bg.png') no-repeat center bottom;
    background-size: 100% 100%;
    display: inline-block;
    padding: 4px 70px;
    color: #fff;
}

.bds-pricing-columns,.promo-pricing-details-wrapper {
    padding: 0 35px;
}
.promo-pricing-details-wrapper{
    padding-bottom: 25px;
}

.bds-pricing-info-box {
    padding: 12px 15px 10px 15px;
    background: #FCFCFC;
    border-radius: 8px;
    border: 2px solid rgba(1,141,200,0.13);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: baseline;
    width: 100%;
    margin-bottom: 25px;
}
.bds-pricing-info-box.blue-border {
    border-color: rgba(1,141,200,0.80);
}

.bds-pricing-info-box-head h2 {
    display: inline-block;
    background: transparent url('../images/bds-pricing-info-box-head-bg.png') no-repeat center bottom;
    background-size: 100% 100%;
    font-size: 20px;
    font-weight: 600;
    color: #018DC8;
    position: relative;
    padding: 10px 35px 32px 31px;
    left: -31px;
    margin-bottom: 0px;
}

.bds-pricing-info-box-head.big-head h2 {
    padding: 10px 35px 32px 31px;
    left: -30px;
    background:transparent url('../images/bds-pricing-info-box-head-bg-big-head.png') no-repeat center bottom;
    background-size: 100% 100%;
}


.bds-pricing-info-box .bds-pricing-info-box-subhead {
    color: #0F9CBD;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 15px;
}

ul.bds-pricing-info-list {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

ul.bds-pricing-info-list li {
    background: transparent url('../images/bds-pricing-info-list-icon.png') no-repeat left top;
    background-size: auto;
    padding-left: 19px;
    line-height: 29px;
    color: #272727;
    font-size: 14px;
    font-weight: 600;
    background-position: 0px 6px;
}
ul.bds-pricing-info-list li:not(:last-child) {
    margin-bottom: 15px;
}

/*@media screen and (min-width: 991.98px){
    ul.bds-pricing-info-list li {
        max-width: 300px;
    }
}*/

.promo-pricing-details h2 {
    color: #121212;
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.promo-pricing-details .bds-price-info {
    font-size: 20px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 15px;
}

.bds-add-ons-info .bds-add-ons-info-head {
    font-size: 20px;
    font-weight: 600;
    color: rgba(1,154,188,0.80);
    line-height: normal;
}

.bds-add-ons-info {
    font-size: 15px;
    color: rgba(39,39,39,0.80);
    font-weight: 600;
    line-height: normal;
}

.bds-add-ons-info .col-12:not(.col-xl-6) {
    margin-bottom: 15px;
}

.bds-add-ons-info .with-circle {
    padding-left: 15px;
    position: relative;
}

.with-circle:before {
    content: '';
    height: 9px;
    width: 9px;
    background-color: rgba(1,154,188,0.80);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 6px;
}

@media screen and (min-width: 991.99px) {
    .bds-pricing-columns [class*=col] {
        display: flex;
        flex-wrap: wrap;
    }
    .bds-pricing-info-box{
        min-height: auto !important;
    }
    .promo-pricing-details {
        min-width: 750px;
    }
    .bds-pricing-info-box-head {
        margin-right: -95px;
    }
    .bds-pricing-info-box.continued {
        position: relative;
    }

    .bds-pricing-info-box.continued:before {
        content: 'Continued...';
        position: absolute;
        right: 5px;
        font-size: 12px;
        font-weight: 600;
        color: #018DC8;
        line-height: 20px;
    }

    .bds-pricing-info-box.continued.bottom:before {
        bottom: 5px;
    }

    .bds-pricing-info-box.continued.top:before {
        top: 5px;
    }
}

@media screen and (max-width: 1410.98px){
    .bds-pricing-columns, .promo-pricing-details-wrapper {
        padding: 0 30px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 10px 30px 27px 30px;
        left: -30px;
        font-size: 20px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 10px 30px 27px 30px;
        left: -30px;
    }
    .promo-pricing-details-wrapper {
        padding-bottom: 25px;
    }
}


@media screen and (max-width: 1280.98px){
    .bds-pricing-info-box {
        padding: 10px 15px 15px 15px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 9px 30px 26px 31px;
        left: -30px;
        font-size: 20px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 9px 30px 26px 31px;
        left: -30px;
    }
    section#home-pricing-table-section.updated-pricing-design .heading-with-sub h2.section-heading{
        line-height: 46px;
        font-size: 36px;
    }
    section#home-pricing-table-section.updated-pricing-design .sub-head {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1100.98px){
    .bds-pricing-info-box-head h2 {
        padding: 10px 30px 24px 29px;
        left: -29px;
        font-size: 18px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 10px 30px 24px 29px;
        left: -29px;
    }
    .bds-pricing-info-box .bds-pricing-info-box-subhead {
        font-size: 16px;
        margin-bottom: 14px;
    }
    ul.bds-pricing-info-list li {
        background-size: 13px;
        padding-left: 19px;
        background-position: 0px 8px;
    }
    ul.bds-pricing-info-list li:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1015.98px){
    .bds-pricing-columns, .promo-pricing-details-wrapper {
        padding: 0 15px;
    }
    .promo-pricing-details-wrapper {
        padding-bottom: 25px;
    }
    .bds-pricing-info-box {
        padding: 10px 10px 10px 10px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 8px 24px 23px 23px;
        left: -23px;
        font-size: 17px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 8px 24px 23px 23px;
        left: -23px;
    }
}

@media screen and (max-width: 991.98px){
    section#home-pricing-table-section.updated-pricing-design{
        padding: 60px 0;
        background-position: left top;
    }
    .bds-pricing-info-wrapper{
        margin: 0 15px;
    }
    .bds-pricing-info-box {
        padding: 10px 22px 22px 22px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 10px 45px 30px 40px;
        left: -41px;
        font-size: 26px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 10px 45px 30px 40px;
        left: -41px;
    }
    .bds-pricing-info-box .bds-pricing-info-box-subhead {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .promo-pricing-details-wrapper{
        padding: 0 35px;
        padding-bottom: 25px;
    }
}


@media screen and (max-width: 767.98px){
    .bds-pricing-columns, .promo-pricing-details-wrapper{
        padding: 0 35px;
    }
    .promo-pricing-details-wrapper{
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 575.98px){
    section#home-pricing-table-section.updated-pricing-design .heading-with-sub h2.section-heading {
        font-size: 22px;
        line-height: 33px;
    }
    section#home-pricing-table-section.updated-pricing-design .sub-head {
        margin-bottom: 25px;
    }
    .pricing-tabs{
        margin-bottom: 20px;
    }
    .pricing-tabs .btn {
        font-size: 12px;
        padding: 7px;
    }
    .pricing-tabs .btn:first-child {
        margin-right: 3px;
    }
    .bds-add-ons-info  .mobile-space {
        padding-left: 15px;
        margin-top: 2px;
    }

    .bds-pricing-info-wrapper .bds-pricing-head h2 {
        font-size: 18px;
        font-weight: 600;
        padding: 4px 30px;
    }

    .bds-pricing-info-box {
        padding: 10px 15px 15px 15px;
    }
    .bds-pricing-info-box-head {
        margin-right: -100px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 8px 30px 25px 28px;
        left: -30px;
        font-size: 20px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 8px 30px 25px 28px;
        left: -30px;
    }
    .bds-pricing-info-box .bds-pricing-info-box-subhead {
        font-size: 15px;
        margin-bottom: 13px;
    }
    ul.bds-pricing-info-list li {
        font-size: 13px;
        line-height: 23px;
        background-size: 9px;
        padding-left: 13px;
        background-position: 0 7px;
    }
    ul.bds-pricing-info-list li:not(:last-child) {
        margin-bottom: 10px;
    }
    .promo-pricing-details h2 {
        font-size: 20px;
    }
    .promo-pricing-details h2 img {
        max-width: 25%;
    }
    .promo-pricing-details .bds-price-info {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .bds-add-ons-info {
        font-size: 14px;
    }
    .bds-add-ons-info .bds-add-ons-info-head {
        font-size: 16px;
    }
    .bds-add-ons-info .col-12:not(.col-xl-6) {
        margin-bottom: 8px;
    }
    .with-circle:before {
        height: 7px;
        width: 7px;
    }
    .bds-pricing-info-wrapper .bds-pricing-head h2{
        margin-bottom: 20px;
    }
    .bds-pricing-info-wrapper .buttons-group {
        gap: 5px;
        margin-right: -24px;
        margin-left: -8px;
    }
    .bds-pricing-info-wrapper {
        margin: 0 10px;
    }
    .popover_button {
        top: -2px !important;
        position: relative;
        right: -7px;
    }
    .popover_button svg {
        height: 16px;
        width: 16px;
    }
}

@media screen and (max-width: 480.98px){
    .bds-pricing-columns, .promo-pricing-details-wrapper {
        padding: 0 27px;
    }
    .promo-pricing-details-wrapper {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 420.98px){
    .bds-pricing-info-box-head {
        margin-right: -100px;
    }

    .pricing-tabs {padding: 2px;}

    .pricing-tabs .btn {
        padding: 8px 4px;
        font-size: 11px;
    }
    .bds-pricing-info-box-head h2 {
        padding: 8px 30px 23px 27px;
        left: -29px;
        font-size: 18px;
    }
    .bds-pricing-info-box-head.big-head h2 {
        padding: 8px 30px 23px 27px;
        left: -29px;
    }
    .bds-pricing-info-wrapper .bds-pricing-head h2 {
        padding: 3px 22px;
    }
}

.dl-pricing-features .dl-pricing-head {
    font-size: 25px;
    font-weight: 600;
    color: #121212;
    line-height: 32px;
    margin-bottom: 20px;
}
.dl-pricing-info-wrapper .bds-pricing-columns [class*=col] {
    display: block;
}

ul.bds-pricing-info-list.dl-pricing-features-list {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
}
.dl-pricing-info-wrapper hr {
    margin-top: 5px;
    margin-bottom: 20px;
}

.dl-pricing-features.dl-pricing-plans .dl-pricing-head {
    margin-bottom: 10px;
}

.dl-pricing-info-wrapper .table {
    margin-bottom: 0px;
}

.dl-pricing-info-wrapper .table thead th {
    min-width: 250px;
}

.dl-pricing-info-wrapper .table thead th:first-child {
    min-width: 450px;
}
.dl-pricing-info-wrapper .table thead th {
    border-top: 0px;
    border-bottom: 0px;
}

.dl-pricing-info-wrapper .table th, 
.dl-pricing-info-wrapper .table td {
    padding: 15px;
    padding-left: 0px;
    padding-right: 0px;
}
.dl-pricing-info-wrapper .table thead th {
    font-size: 22px;
    color: #019ABC;
    font-weight: 600;
    line-height: normal;
}

.dl-pricing-info-wrapper .table tbody th,
.dl-pricing-info-wrapper .table tbody td {
    font-size: 15px;
    line-height: 20px;
    color: #121212;
}

.dl-pricing-info-wrapper .table tbody td {
    font-weight: 500;
    color: #32373F;
}

.dl-pricing-info-wrapper .table tbody th {
    font-weight: 600;
}

.popover_button{
    top: -1.5px !important;
    position: relative;
    right: -5px;
}

@media screen and (max-width: 1280.98px){
    ul.bds-pricing-info-list.dl-pricing-features-list {
        display: grid;
        grid-auto-rows: 0fr;
        grid-template-columns: repeat(3, 1fr);
    }
    .dl-pricing-info-wrapper .table thead th {
        min-width: 180px;
        max-width: 240px;
    }
    .dl-pricing-info-wrapper .table thead th:last-child {
        min-width: 240px;
    }
    ul.bds-pricing-info-list.dl-pricing-features-list {
        column-gap: 25px;
    }

    ul.bds-pricing-info-list.dl-pricing-features-list li {margin-bottom: 10px;}
}

@media screen and (max-width: 991.98px){
    ul.bds-pricing-info-list.dl-pricing-features-list {
        display: grid;
        grid-auto-rows: 0fr;
        grid-template-columns: repeat(2, 1fr);
    }
    .dl-pricing-info-wrapper .table thead th:first-child {
        min-width: 290px;
    }
}
@media screen and (max-width: 575.98px){
    ul.bds-pricing-info-list.dl-pricing-features-list {
        display: grid;
        grid-auto-rows: 0fr;
        grid-template-columns: repeat(1, 1fr);
    }
    .dl-pricing-features .dl-pricing-head {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .dl-pricing-info-wrapper .table thead th {
        font-size: 18px;
    }
    .dl-pricing-info-wrapper .table th, .dl-pricing-info-wrapper .table td {
        padding: 10px;
        padding-left: 0px;
        padding-right: 5px;
    }
    .dl-pricing-info-wrapper .table tbody th, .dl-pricing-info-wrapper .table tbody td {
        font-size: 14px;
        line-height: 19px;
    }
    .dl-pricing-info-wrapper .promo-pricing-details-wrapper {
        padding-bottom: 15px;
    }
}

.bds-page-info-box-wrapper {
    margin: 30px -15px;
}
.bds-page-info-box {
    position: relative;
    box-shadow: 0px 1px 4px 0px rgba(12,12,13,0.05);
    border: 1px solid rgba(1,154,188,0.11);
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 25px;
}

.bds-page-info-box h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 30px;
    color: #111928;
}

.bds-page-info-box > img {
    margin-bottom: 15px;
}

.bds-page-info-box p {
    font-size: 15px;
    font-weight: 400;
    color: #121212;
    line-height: 24px;
}

.bds-page-info-box .buttons-group img {
    margin-top: -2px !important;
}

.bds-page-info-box .buttons-group {margin-top: auto !important;}

@media screen and (min-width: 767.99px) {
    section#home-pricing-table-section.updated-pricing-design.updated-pricing-design-innerpage{
        padding-top: 40px;
    }
    .bds-page-info-box-wrapper [class*=col] {
        display: flex;
        flex-wrap: wrap;
    }
    .bds-page-info-box{
        min-height: auto !important;
    }
}


@media screen and (max-width: 767.98px) {
    .bds-page-info-box-wrapper {
        margin: 20px -15px;
    }
}


@media screen and (max-width: 575.98px) {
    .bds-page-info-box h2 {
        font-size: 20px;
    }
    .bds-page-info-box p{
        font-size: 14px;
    }
    section#home-pricing-table-section.updated-pricing-design.updated-pricing-design-innerpage{
        padding: 40px 0;
    }

}


section#home-pricing-table-section.updated-pricing-design.updated-pricing-design-innerpage.pricing-main-page-section {
    padding-bottom: 190px;
    padding-top: 35px !important;
}
section#home-pricing-table-section.updated-pricing-design.updated-pricing-design-innerpage.pricing-main-page-section .pricing-tabs {
    opacity: 1 !important;
    transform: translate3d(0,0px,0) !important;
}
@media screen and (max-width: 991.98px) {
    section#home-pricing-table-section.updated-pricing-design.updated-pricing-design-innerpage.pricing-main-page-section {
        padding-bottom: 125px;
        padding-top: 30px !important;
    }
}



.connect_page_section1 {
    background: #F4FCFE;
    padding: 35px 0 180px;
}
.connect_page_section1 .card-style {
    background: transparent;
    margin-bottom: 0;
}

.connect_page_section1 .card-style .card-body {
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connect_page_section1 .card-style .card-body .buttons-group {
    margin-top: auto !important;
}

.connect_page_section1 .card-style .card-body > img {
    margin-bottom: 15px;
}

.connect_page_section1 .card-style .card-body > .card-title {
    margin-bottom: 8px;
}

@media screen and (max-width: 1405px){
    .connect_page_section1 .home-about-img-wrap {
        margin: 0 -30px;
    }
}


@media screen and (max-width: 1200px){
    .connect_page_section1 .card-style .card-body{
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 991.98px){
    .connect_page_section1 .card-style .card-body {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }
}


@media screen and (max-width: 575.98px){
    .directory_listing_page_section5.connect_page_section1 .container:first-child .row .col-12:first-child{
        margin-top: 0px;
    }
    .directory_listing_page_section5.connect_page_section1 .home-about-img-wrap {
        margin-right: -15px !important;
        margin-left: -15px !important;
    }
    .connect_page_section1 {
        padding: 25px 0 120px;
    }
}

.ada_pop{
    display: none;
}

ul.list-with-check-mark .popover_button[data-toggle="popover"]{
    background: transparent !important;
}
.listing-header#fh5co-header-section nav ul.sf-menu {
    display: block !important;
    float: none !important;
    margin: 0 !important;
}

.listing-header#fh5co-header-section  .navbar-container {
    display: block;
}

#fh5co-header-section nav ul li.login_btns a {
    display: inline-block;
}

/*#fh5co-header-section nav ul li.login_btns:hover a {
    color: #007C99!important;
}*/

#fh5co-header-section nav ul li.login_btns a:hover,#fh5co-header-section nav ul li.login_btns a:focus,#fh5co-header-section nav ul li.login_btns a:active {
    color: #05B6A6 !important;
}

#fh5co-header-section nav ul li a {
    color: #007C99 !important;
    font-weight: 600;
}

#fh5co-primary-menu > li > .sf-with-ul:after {
    color: #007C99;
    border-right: 1px solid #007C99;
    border-bottom: 1px solid #007C99;
    background: transparent;
}

#fh5co-header-section nav ul li.login_btns a:first-child {
    position: relative;
    margin-right: 10px;
}

/*#fh5co-header-section nav ul li.login_btns a:first-child:after {
    content: ' | ';
    position: absolute;
    right: -9px;
    top: -1px;
    font-size: 14px;
}*/

#fh5co-header-section nav ul li.login_btns a.login_btn{
    font-size: 14px;
    color: #018DC8 !important;
    font-weight: 600;
    line-height: normal;
    display: inline-block !important;
    background: transparent;
    padding: 8px 16px 8px 16px !important;
    border-radius: 4px !important;
    border: 1px solid #018DC8 !important;
    transition: all .3s ease;
}
#fh5co-header-section nav ul li.login_btns a.login_btn:hover,
#fh5co-header-section nav ul li.login_btns a.login_btn:focus{
    color: #fff !important;
    background: #018DC8;
    transition: all .3s ease;
}

#fh5co-header-section .review-link {
    text-align: right;
    padding: 0 0px;
    display: inline-block;
}

#fh5co-header-section .review-link a {
    font-size: 14px;
    color: #fff !important;
    font-weight: 600;
    line-height: normal;
    display: inline-block !important;
    background: #018DC8;
    padding: 8px 16px 8px 16px !important;
    border-radius: 4px !important;
    border: 1px solid #018DC8 !important;
    transition: all .3s ease;
}

#fh5co-header-section nav ul li.login_btns .review-link a:hover,
#fh5co-header-section nav ul li.login_btns .review-link a:focus {
    color: #018DC8 !important;
    background: transparent;
    transition: all .3s ease;
}

#fh5co-header-section .review-link a img {
    float: left;
    margin-right: 6px;
    max-width: 15px;
    position: relative;
    top: 1px;
}

.listing-header .topbar-search-form {
    border-color: #018DC8;
    background: #fff;
}
.listing-header .topbar-search-form .form-control:focus{
    box-shadow: none !important;
}

.listing-header .topbar-search-form .input-divider {
    border-color: #018DC8;
}

.listing-header  .topbar-search-form .search-icon {
    background-color: #018DC8;
}

.listing-header .header-search-box .top_search_terms {
    text-align: center;
    margin-top: -4px;
}

.listing-header .header-search-box .top_search_terms a {
    background: #018DC8;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 11px;
    border-radius: 7px;
    margin: 0 4px;
    transition: all .3s ease;
}

.listing-header .header-search-box .top_search_terms a img {
    max-width: 16px;
    position: relative;
    top: -1px;
    margin-right: 4px;
}

.listing-header .header-search-box .top_search_terms a:hover,.listing-header .header-search-box .top_search_terms a:focus,.listing-header .header-search-box .top_search_terms a:active {
    background: #05B6A6;
    color: #fff;
    transition: all .3s ease;
}


div#fh5co-header-section.listing-header{
    background: #fff url('/assets/listing-header-banner.jpg') no-repeat center top;
    background-size: cover;
    padding: 20px 0 30px;
}
@media screen and (min-width: 991.98px){
    div#fh5co-header-section.listing-header{
        min-height: 8.5rem;
    }
    body{
        padding-top: 8.5rem;
    }
}
@media screen and (max-width: 991.97px){
    body{padding-top: 7.1rem;}
}
@media screen and (max-width: 575.97px){
    body {
        padding-top: 7.1rem;
    }
}

footer#gtco-footer {
    margin-top: 0px;
}

.fixed-area {
    display: none;
}

.side-social-icons {
    top: 61px;
}

.side-social-icons ul li a {
    width: 22px;
    padding: 3px 4px !important;
    font-size: 10px;
    display: block;
}

.side-social-icons ul li a svg {
    width: 9px !important;
}

.side-social-icons ul li::marker {
    display: none;
}

.side-social-icons ul li:first-child a {
    border-top-right-radius: 3px;
    padding: 4px 4px 2px !important;
}
.side-social-icons ul {
    list-style: none;
}

#fh5co-primary-menu > li:hover > .sf-with-ul:after, #fh5co-primary-menu > li > .sf-with-ul:hover:after, #fh5co-primary-menu > li.active > .sf-with-ul:after {
    color: #05B6A6 !important;
    transition: all .3s ease;
    border-color: #05B6A6 !important;
}

@media screen and (max-width: 1440px){
    #fh5co-header-section nav ul li {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1298px){
    #fh5co-header-section nav ul li a,#fh5co-header-section .review-link a {
        font-size: 14px;
    }

    #fh5co-header-section nav ul {
        padding-left: 0px !important;
    }
}

@media screen and (max-width: 1198px){
    #fh5co-header-section nav ul li a,#fh5co-header-section .review-link a {
        font-size: 13px;
    }

    #fh5co-header-section nav ul {
        padding-left: 0px !important;
    }
}

.show_on_1190{
    display: none;
}

@media screen and (max-width: 1190px){

    .show_on_1190{
        display: inline-block;
    }
    .u-hamburger {
        top: 11px;
    }
    .u-hamburger__inner, .u-hamburger__inner::before, .u-hamburger__inner::after{
        background-color: #018dc8;
    }
}

@media screen and (max-width: 991px){

    .show_on_1190{
        display: none;
    }
    .header-search-box {
        margin-top: 13px;
    }
    .logo_header img{
        max-width: 200px !important;
    }
    .side-social-icons {
        display: none;
    }
    .listing_top_bar ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 10px;
    }

    .listing_top_bar ul li a,.listing_top_bar ul li a svg {
        font-size: 12px;
        line-height: normal;
        width: 10px !important;
        color: #018DC8;
    }

    .listing_top_bar ul li a svg {
        top: -1px !important;
    }

    .listing_top_bar ul li a svg path {
        fill: #018DC8 !important;
    }

    div#fh5co-header-section.listing-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .listing_top_bar ul li {
        line-height: normal;
    }

    .listing_top_bar {
        border-bottom: 1px solid rgba(1,141,200, 0.25);
    }

    .listing_top_bar a.app_download {
        font-size: 12px;
        font-weight: 600;
        color: #018DC8;
        line-height: normal;
    }

    .listing_top_bar a.app_download img {
        max-width: 13px;
        margin-left: 8px;
    }
    .listing_top_bar{margin-bottom: 10px;}
    .listing-header .topbar-search-form .input-divider {
        height: 70%;
    }

    .listing-header .form-control {
        height: 38px;
    }

    .listing-header .topbar-search-form .search-icon {
        padding: 7px 10px;
    }

    .listing-header .topbar-search-form .form-control {
        font-size: 14px;
    }
    .listing-header .topbar-search-form .search-icon img {
        max-width: 20px;
    }
    .listing-header .header-search-box .top_search_terms a {
        font-size: 13px;
    }

    .listing-header .header-search-box .top_search_terms a img {
        max-width: 13px;
    }

}

@media screen and (max-width: 575px){
    #fh5co-header-section .container-fluid {
        padding-right: 10px;
        padding-left: 10px;
    }
    .listing-header .header-search-box .top_search_terms a {
        font-size: 12px;
        padding: 4px 7px;
    }
    .u-hamburger {
        right: 16px;
    }
}


@media screen and (max-width: 356px){
    .listing-header .header-search-box .top_search_terms a {
        font-size: 10px;
        padding: 4px 5px;
        margin: 0 0px;
    }
}

.filters_sidebar {
    margin: 0 -15px;
    padding: 0 5px 0 15px;
}
.filters_sidebar .filters_reset {
    line-height: normal;
    margin-bottom: 15px;
}

.filters_sidebar .filters_reset * {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.filters_sidebar .filters_reset .clr-btn {
    color: #018DC8;
}


.filters_sidebar .selected_filters_list ul {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.filters_sidebar .selected_filters_list ul li {
    margin-left: 0;
    list-style-position: inside;
    line-height: normal;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #121212;
    margin-right: 10px;
}
.filters_sidebar .selected_filters_list ul li span {
    position: relative;
    margin-left: -5px;
    line-height: normal;
}

.filters_sidebar .selected_filters_list ul li:first-child {
    list-style: none;
}

.filters_sidebar .selected_filters_list ul li:first-child span {
    margin: 0;
}

/*checkbox*/
.input-blue.checkbox input[type='checkbox'] {    
    opacity: 0;position: fixed;max-width: 0;
  height: 0;
}
.input-blue.checkbox input[type='checkbox']:checked + label {
    background: url('/assets/input_active.png') no-repeat center center;    
    background-size: 14px;
    background-position: 2px 4px;
}
.input-blue.checkbox label {
    background: url('/assets/input_inactive.png') no-repeat center center;
    padding: 0.1em 0 0.1em 1.6em;
    cursor: pointer;
    background-size: 14px;
    background-position: 2px 4px;
}
.input-blue.checkbox.checked label {
    background: url('/assets/input_active.png') no-repeat center center;    
    background-size: 14px;
    background-position: 2px 4px;
}

/*radio*/
.input-blue.radio input[type='radio'] {
    opacity: 0;
    position: fixed;max-width: 0;
  height: 0;
}
.input-blue.radio input[type='radio']:checked + label {    
    background: url('/assets/radio_active.png') no-repeat center center;    
    background-size: 15px;
    background-position: 2px 5px;
}
.input-blue.radio label {    
    background: url('/assets/radio_inactive.png') no-repeat center center;
    padding: 0.1em 0 0.1em 1.6em;
    cursor: pointer;
    background-size: 15px;
    background-position: 2px 5px;
}
.input-blue.radio.checked label {
    background: url('/assets/radio_active.png') no-repeat center center;    
    background-size: 15px;
    background-position: 2px 5px;
}


.main_filters .panel-heading {
  padding: 0;
    border:0;
}
.main_filters .panel-title>a, .main_filters .panel-title>a:active{
    display:block;
    padding:15px;
  color:#555;
  font-size:16px;
  font-weight:bold;
    text-transform:uppercase;
    letter-spacing:1px;
  word-spacing:3px;
    text-decoration:none;
}
.main_filters .panel-heading  a:before {
    float: right;
    content: '';
    transition: all 0.5s;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 4px 5px 4px;
    border-color: transparent transparent #018dc8 transparent;
    transform: rotate(0deg);
    position: relative;
    top: 7px;
}
.main_filters .panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
} 

.main_filters .panel {
    background: #fff;
    box-shadow: none;
    border-radius: 4px;
    margin-bottom: 5px;
}

.main_filters .panel .panel-heading {
    border-bottom: none;
}

.main_filters .panel .panel-heading h4 a {
    margin-bottom: 0px;
    color: #32373F;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}

.main_filters .panel .panel-heading h4 {
    margin-bottom: 0px;
    color: #32373F;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}

.main_filters .panel .panel-body {
    padding: 7px 0px;
}

.filter_field label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
}

.filter_field .form-control {
    height: 28px;
    padding: 10px 15px;
    font-size: 14px;
    color: #121212;
    border-radius: 4px;
    border-color: rgba(18, 18, 18, 0.1);
}

.filter_field .form-control::placeholder {
    color: #495560;
}

.filter_field {
    margin-bottom: 0px;
}

.input-blue.radio label {
    font-size: 14px;
    color: #121212;
    margin: 0;
}

.input-blue.radio {
    display: block;
    margin-bottom: 0px;
}
.input-blue.radio:last-child {
    margin-bottom: 0px;
}
.input-blue.checkbox label {
    font-size: 14px;
    color: #121212;
    margin: 0;
}

.input-blue.checkbox {
    display: block;
    margin-bottom: 0px;
}
.input-blue.checkbox:last-child {
    margin-bottom: 0px;
}
.main_filters .load_more {
    color: #008DC7;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.main_filters .load_more span {
    color: #32373F;
    font-size: 12px;
    margin-right: 2px;
    margin-left: 3px;
}


.slider-labels {
  margin-top: 10px;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
/* Fix 401 */
}

.noUi-origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-stacking .noUi-handle {
/* This class is applied to the lower origin when
   its values is > 50%. */
  z-index: 10;
}

.noUi-state-tap .noUi-origin {
  -webkit-transition: left 0.3s,top .3s;
  transition: left 0.3s,top .3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,.noUi-handle {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 4px;
}

.noUi-horizontal .noUi-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: -7px;
  top: -7px;
  background-color: #345DBB;
}

/* Styling;
 */
.noUi-background {
  background: #000;
}

.noUi-connect {
  background: #345DBB;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}

.noUi-origin {
  border-radius: 2px;
}

.noUi-target {
  border-radius: 2px;
}

.noUi-target.noUi-connect {
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: w-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: n-resize;
}

.noUi-handle {
  cursor: default;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.noUi-handle:active {
  border: 8px solid #345DBB;
  border: 8px solid rgba(53,93,187,0.38);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  left: -14px;
  top: -14px;
}

/* Disabled state;
 */
[disabled].noUi-connect,[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-origin,[disabled] .noUi-handle {
  cursor: not-allowed;
}

div#slider-range {
    width: 95%;
    margin: 0 auto;
    margin-right: 20px;
    height: 7px;
    border-radius: 10px;
    background: #ECECEC;
    margin-bottom: 20px;
    margin-top: 15px;
}

div#slider-range .noUi-connect {
    background: #008DC7;
    border-radius: 10px;
}

.noUi-horizontal .noUi-handle {
    background-color: #fff;
    border: 1px solid #008DC7;
}

div#slider-range .noUi-background {
    background: #ECECEC;
    border-radius: 10px;
}

div#slider-range .noUi-handle:active {
    left: -7px;
    top: -7px;
}
.rating_filter_wrapper .star-box {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 35px;
}

.rating_filter_wrapper .star-box img {
    width: 20px;
    position: relative;
    top: -2px;
    left: -1px;
}

.input-blue.button_shape.checkbox {
    display: inline-block;
}

.input-blue.button_shape.checkbox label {
    background: transparent !important;
    padding: 5px 10px !important;
    font-size: 12px;
    border: 1px solid #018DC8;
    border-radius: 3px;
    text-align: left;
    margin-bottom: 4px;
}

.input-blue.button_shape.checkbox label:hover, 
.input-blue.button_shape.checkbox label:focus, 
.input-blue.button_shape.checkbox label:active,
.input-blue.button_shape.checkbox input[type='checkbox']:checked + label,
.input-blue.button_shape.radio.checked label {
    background: #018DC8 !important;
    color: #fff;
}

.listing-breadcrumbs {
    line-height: normal;
}

.listing-breadcrumbs * {
    font-size: 12px;
    color: #121212;
    font-weight: 600;
    line-height: normal;
}

.listing-breadcrumbs span {
    display: inline-block;
    margin: 0 10px;
}
.main-top {
    top: 9rem;
    padding: 0 8px;
}
.main-top:before {
    content: '';
    width: 100%;
    height: calc(100% + 20px);
    position: absolute;
    background: #fff;
    top: -8px;
}
.sort-dropdown {
    text-align: right;
    display: inline-block;
    float: right;
}

.sort-dropdown button.dropdown-toggle {
    background: transparent !important;
    color: #171717 !important;
    text-transform: capitalize;
    letter-spacing: 0px;
    word-spacing: 0px;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    border-radius: 25px;
    box-shadow: none !important;
}

.sort-dropdown button.dropdown-toggle::after {
    border: none;
    position: relative;
    top: 3px;
}

.sort-dropdown button.dropdown-toggle:hover,.sort-dropdown button.dropdown-toggle:focus,.sort-dropdown button.dropdown-toggle:active {
    background: transparent !important;
    color: #171717 !important;
}

.sort-dropdown .dropdown-menu {
    padding: 10px 10px;
    border: none;
    box-shadow: 0 0px 8px rgba(55, 125, 255, 0.075), 0 0px 9px rgba(119, 131, 143, 0.075);
    margin-top: 13px;
    left: auto !important;
    right: 0 !important;
    top: 100% !important;
    transform: none !important;
    z-index: 999999;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 13px;
    z-index: 999999999;
    height: 13px;
    border-left: 1px solid #EDEDED;
    border-top: 1px solid #EDEDED;
    transform: rotate(43deg) translate(-55%, -5%);
    background: #fff;
}

.sort-dropdown .dropdown-menu::before {
    left: 70%;
}

.sort-dropdown .dropdown-menu a.dropdown-item {
    font-size: 14px;
    font-weight: 500;
}

.sort-dropdown .dropdown-menu a.dropdown-item:hover,.sort-dropdown .dropdown-menu a.dropdown-item:active,.sort-dropdown .dropdown-menu a.dropdown-item:focus {
    background: #F2FDF9 !important;
    color: #05B6A6 !important;
}
.listing-searched-for {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin-top: 5px;
}

div#small_map.mapouter{position: relative;text-align: right;height: 90px;width: 100%;    margin-top: 10px;}
div#small_map .gmap_canvas{overflow: hidden;background: none !important;height: 90px;width: 100%;border-radius: 15px;}

div#big_map.mapouter{position: relative;text-align: right;height: calc(100vh - 8.5rem);width: 100%;margin-top: -7px;}
div#big_map .gmap_canvas{overflow: hidden;background: none !important;height: calc(100vh - 8.5rem);width: 100%;border-radius: 0px;}

div#small_map #big_map_button,div.mobile_map .map_toggle {
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    filter: invert(0);
    transition: all .3s ease;
    display: inline-block;
    max-width: 45px;
}

div#small_map #big_map_button:hover,div.mobile_map .map_toggle:hover,div#small_map #big_map_button:focus,div.mobile_map .map_toggle:focus,div#small_map #big_map_button:active,div.mobile_map .map_toggle:active {
    filter: invert(1);
    transition: all .3s ease;
}
.right-map-sticky {
    top: 8.55rem;
}


div#big_map #small_map_button {
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    filter: invert(0);
    transition: all .3s ease;
    display: inline-block;
    max-width: 45px;
}

div#big_map #small_map_button:hover,div#big_map #small_map_button:focus,div#big_map #small_map_button:active {
    filter: invert(1);
    transition: all .3s ease;
}

div#big_map .small_map_button {
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    filter: invert(0);
    transition: all .3s ease;
    display: inline-block;
    max-width: 45px;
}

div#big_map .small_map_button:hover,div#big_map .small_map_button:focus,div#big_map .small_map_button:active {
    filter: invert(1);
    transition: all .3s ease;
}

.listing-result-box {
    position: relative;
    display: flex;
    flex-direction: row;
    border: 1px solid #05B5A5;
    border-radius: 9px;
    background: #fff;
}

.main-listing-search-results {
    margin-top: 10px;
}

.listing-result-box .listing-result-box-left {
    max-width: 25%;
    min-width: 25%;
}
/*.listing-result-box.sponsored-result {
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(50,55,63,0.20);
    border-radius: 0px;
    padding-bottom: 12px;
}*/

.listing-result-featured-img img {
    width: 100%;
}

.listing-result-box.featured-result {
    background: #fff;
    border: none;
    border-bottom: 1px solid rgba(50,55,63,0.20);
    border-radius: 0px;
    padding-bottom: 12px;
    padding-left: 8px;
    padding-right: 8px;
}


.listing-result-box  .listing-result-box-right {
    flex: auto;
    padding: 0px 10px;
    padding-right: 0px;
        max-width: 75%;
    min-width: 75%;
}

.result-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

ul.result_info_list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 0.3rem;
    justify-content: left;
    align-items: center;
    line-height: normal;
    flex-wrap: wrap;
}

ul.result_info_list li {
    line-height: normal;
    font-size: 14px;
    color: #32373F;
    font-weight: 400;
}

ul.result_info_list li .result_type {
    font-weight: 600;
    color: rgba(18,18,18,0.58);
    font-size: 14px;
}

ul.result_info_list li .varified_badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 6px 13px;
    background: #018dc8;
    color: #fff;
    margin-left: 7px;
    border-radius: 100px;
}

.result_rating_wrap img {
    max-width: 100px;
}

.result_rating_wrap  .result_ratin {
    font-size: 14px;
    font-weight: 600;
    color: #778088;
}

.result_reviews_count,.result_reviews_count a {
    font-size: 14px;
    font-weight: 600;
    color: #778088;
    line-height: normal;
}

.result_reviews_count {
    position: relative;
    top: -2px;
}

ul.result_info_list li.spacer {
    width: 1px;
    height: 13px;
    background: #ccc;
}
ul.result_info_list li.spacer.small {
    width: 1px;
    height: 13px;
    background: #ccc;
}
.result_link.themebtn.invert {
    font-size: 14px !important;
    line-height: 18px !important;
    padding: 10px 15px !important;
}
.result-info-head {
    margin-top: 0px;
}

.result-info-head h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
    color: #32373F;
}


.result-info-head h2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.result-info-head h2 span.result_type {
    color: rgba(50,55,63,0.60);
    position: relative;
    padding-right: 15px;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
}

.result-info-head h2 span.result_type:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: rgba(50,55,63,0.60);
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.result-info-head h2 span.verified_badge {
    margin-left: 5px;
}

ul.result_info_list li.opens-status {
    font-weight: 600;
    position: relative;
    padding-right: 11px;
}

ul.result_info_list li.opens-status span {
    color: #018DC8;
}

li.opens-status:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: #C7CDD0;
    position: absolute;
    right: 0px;
    top: 53%;
    transform: translateY(-50%);
}

.result_tags {
    margin: 5px 0px 0;
}

.result_tags span {
    background: #fff;
    border: 1px solid #EFEFEF;
    padding: 0px 6px 0px 6px;
    display: inline-block;
    line-height: 25px;
    font-size: 13px;
    font-weight: 400;
    color: #121212;
    border-radius: 4px;
    margin-bottom: 0px;
    margin-top: 5px;
}

.result_tags span:not(:last-child) {
    margin-right: 5px;
}

.result_offers span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: normal;
    display: inline-flex;
    gap: 3px;
    align-items: center;
    margin-bottom: 8px;
}

.result_offers span:not(:last-child) {
    margin-right: 8px;
}

.result_offers {
    line-height: normal;
    margin-top: 2px;
    margin-bottom: -2px;
}

.result_offers span img {
    max-width: 25px;
    max-height: 25px;
    object-fit: contain;
}

.listing-result-box .listing-result-box-left div.carousel {
    height: 100%;
}

.listing-result-box .listing-result-box-left div.carousel .carousel-inner {
    height: 100%;
}

.listing-result-box .listing-result-box-left div.carousel .carousel-inner .carousel-item {
    height: 100%;
}

.listing-result-box .listing-result-box-left div.carousel .carousel-inner .carousel-item img {
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}
.result-info-description {
    line-height: normal;
    margin-top: 7px;
}

.result-info-description p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 7px;
    color: #32373F;
}

.result-info-description p .read-more-content{
    display: none;
    padding-top: 22px;
}
.result-info-description p .read-more{
    display: inline-block;
    margin-top: 0;
    margin-right: 0;
    color: #32373F !important;
    font-weight: 400;
    text-decoration: underline;
}

.text-with-readmore .read-more-content{
    display: none;
    padding-top: 22px;
}
.text-with-readmore .read-more{
    display: inline-block;
    margin-top: 0;
    margin-right: 0;
    color: #1C2B38 !important;
    font-weight: bold;
}

.result_gallery ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left;
    align-items: center;
}

.result_gallery ul li:not(:last-child) {margin-right: 5px;}

.result_gallery ul li img {
    width: 104px;
    height: 73px;
    border-radius: 2px;
    object-fit: cover;
    overflow-clip-margin: unset;
}
.result_gallery ul li.last-with-link a {
    position: relative;
    display: block;
    border-radius: 2px;
    overflow: hidden;
}

.result_gallery ul li.last-with-link a span {
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background: rgba(50,55,63,0.46);
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    text-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.result_gallery {
    margin: 10px 0px;
}
.result-info-description.more p {
    margin: 0;
    color: #1C2B38;
}

.result-info-description.more p a {
    color: #1C2B38;
}
.listing-result-box .carousel-indicators{
        margin-bottom: 10px;
}
.listing-result-box .carousel-indicators li span {
    width: 10px;
    height: 10px;
    border-radius: 100% !important;
    background-color: #FFFFFF !important;
    background-clip: padding-box;
    display: inline-block;
}

.listing-result-box .carousel-indicators li {
    height: 20px;
    border: none !important;
    width: 20px;
    background: transparent;
    opacity: 1;
    text-align: center;
    text-indent: 0;
    line-height: 20px;
}

.listing-result-box .carousel-indicators li.active span {
    background-color: #019ABC !important;
}

.listing-result-box .carousel-indicators li.active {
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/dots-active-before-new.png) no-repeat center center;
    background-size: contain;
}
.listing-search-result-type {
    font-size: 16px;
    font-weight: 500;
    color: #32373F;
    line-height: normal;
    margin-bottom: 15px;
    padding: 0 8px;
}
.tooltip-icon{
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    top: -1px;
    margin-left: 5px;
}
.tooltip-icon img {
    max-width: 16px;
}

.listing-search-results-wrap .listing-result-box:not(:last-child) {
    margin-bottom: 10px;
}

.results-separator hr {
    margin-top: 25px;
    margin-bottom: 15px;
}

.left-panel {
    min-width: 250px;
}

.gmap_canvas #gmap_canvas {
    pointer-events: none;
}

.active_side_map .main-listing-search-results .row {
    margin-right: -25px;
}
.active_side_map .main-top:before{
    width: 110%;
}

.listing-result-box .listing-result-box-right .call_to_action_btn .themebtn,
.listing-result-box .listing-result-box-bottom .call_to_action_btn .themebtn {
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 10px 15px 10px 15px;
    border-radius: 4px;
}

.listing-result-box .listing-result-box-right .call_to_action_btn {
    margin-top: 8px;
}


@media screen and (max-width: 1725px){
    .active_side_map ul.result_info_list {
        gap: 0.4rem;
    }

    .active_side_map ul.result_info_list li .varified_badge {
        font-size: 13px;
        padding: 5px 9px;
        margin-left: 3px;
    }

    .active_side_map .result_rating_wrap img {
        max-width: 80px;
        position: relative;
        top: -1px;
    }

    .active_side_map ul.result_info_list li span.result_rating_wrap {
        line-height: normal;
    }

    .active_side_map .result_link.themebtn.invert {
        font-size: 13px !important;
        line-height: 18px !important;
        padding: 7px 10px !important;
    }

    .active_side_map .result_tags {
        margin: 8px 0px 0;
    }

    .active_side_map .result_tags span {
        padding: 5px 11px;
        font-size: 13px;
        margin-bottom: 3px;
    }

    .active_side_map .result-info-description {
        margin-top: 5px;
    }

    .active_side_map .result-info-description p {
        margin-bottom: 5px;
    }

    .active_side_map .result_gallery {
        margin: 8px 0px;
    }

    .active_side_map .result_gallery ul li img {
        width: 104px;
        height: 73px
    }
    .rating_filter_wrapper .star-box img {
        width: 13px;
    }
}




@media screen and (max-width: 1555px){
    ul.result_info_list {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
}

@media screen and (max-width: 1515px){
    .active_side_map ul.result_info_list li .result_type {
        font-size: 13px;
    }

    .active_side_map ul.result_info_list li .varified_badge {
        font-size: 12px;
        padding: 5px 8px;
        margin-left: 1px;
    }

    .active_side_map .result_rating_wrap img {
        max-width: 70px;
        top: -1px;
    }

    .active_side_map .result_rating_wrap .result_ratin {
        font-size: 13px;
    }

    .active_side_map .result_reviews_count, .result_reviews_count a {
        font-size: 13px;
        top: -1px;
    }

    .active_side_map .result_link.themebtn.invert {
        font-size: 12px !important;
        line-height: 15px !important;
        padding: 8px 9px !important;
    }

    .active_side_map ul.result_info_list li {
        font-size: 13px;
    }

    .active_side_map .result_tags {
        margin: 6px 0px 0;
    }

    .active_side_map .result_tags span {
        padding: 4px 8px;
        font-size: 12px;
        margin-bottom: 3px;
    }

    .active_side_map .result-info-description p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media screen and (max-width: 1410px){
    .active_side_map .result-info-description.more {
        display: none;
    }
    .active_side_map .listing-result-box .listing-result-box-left{
        max-width: 35%;
        min-width: 35%;
    }
    .active_side_map .listing-result-box .listing-result-box-right {
        padding: 8px 10px;
        max-width: 65%;
        min-width: 65%;
    }
    .input-blue.button_shape.checkbox label{
        font-size: 11px;
    }
}

@media screen and (max-width: 1341px){
    .active_side_map .result_link.themebtn.invert {
        display: none;
    }
}


@media screen and (max-width: 1330px){
    .active_side_map ul.result_info_list li {
        font-size: 12px;
    }

    /*.active_side_map .result-info-description p:last-child {
        display: none;
    }*/

    .active_side_map .result_gallery ul li img {
        width: 104px;
        height: 73px;
    }
    .call_to_action_btn a > img {
        max-width: 130px;
    }
}


@media screen and (max-width: 1330px){
    .without_side_map ul.result_info_list {
        gap: 0.3rem;
    }

    .without_side_map ul.result_info_list li .varified_badge {
        font-size: 13px;
        padding: 5px 9px;
        margin-left: 3px;
    }

    .without_side_map .result_rating_wrap img {
        max-width: 80px;
        position: relative;
        top: -1px;
    }

    .without_side_map ul.result_info_list li span.result_rating_wrap {
        line-height: normal;
    }

    .without_side_map .result_link.themebtn.invert {
        font-size: 13px !important;
        line-height: 18px !important;
        padding: 7px 10px !important;
    }

    .without_side_map .result_tags {
        margin: 8px 0px 0;
    }

    .without_side_map .result-info-description {
        margin-top: 5px;
    }

    .without_side_map .result-info-description p {
        margin-bottom: 5px;
    }

    .without_side_map .result_gallery {
        margin: 8px 0px;
    }

    .without_side_map .result_gallery ul li img {
        width: 104px;
        height: 73px;
    }
}


@media screen and (max-width: 1265px){
    .active_side_map .result_gallery {
        display: none;
    }
    .active_side_map .listing-result-box .listing-result-box-left {
        max-width: 30%;
        min-width: 30%;
    }
    .active_side_map .listing-result-box .listing-result-box-right {
        padding: 8px 10px;
        max-width: 70%;
        min-width: 70%;
    }
}


.todays_search_results {
    background: #fff;
    background-size: cover;
    padding: 30px 0 20px;
    margin-top: 0px;
}

.todays_search_results .todays_search_wrap {
    margin-bottom: 20px;
}

.todays_search_results .todays_search_wrap:last-child {
    margin-bottom: 0px;
}
.todays_search_wrap h2 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 23px;
    color: #32373F;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.todays_serach_item {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    color: #32373F;
    padding-left: 22px;
    min-height: 22px;
    line-height: 22px;
    background: url(https://digimedspa.s3.us-west-1.amazonaws.com/searched_item_icon.png) no-repeat top left;
    background-size: auto;
    background-position-y: 4px;
}
.todays_serach_item a{
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.todays_search_saperator hr {
    border-color: #018DC8;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}
.active_side_map.todays_search_results {
    margin-right: -30px;
}


footer#gtco-footer .container-fluid.saperator, footer#gtco-footer .copyright .container-fluid {
    padding: 0 50px;
}

footer#gtco-footer {
    background: url('/assets/listing_footer_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0 0;
}
@media screen and (max-width: 767px){
    .my_row_footer [class*="col-"] {
        flex: 0 0 50% !important;
    }
    .my_row_footer {
        margin-bottom: 0px !important;
    }
    footer#gtco-footer .container-fluid.saperator, footer#gtco-footer .copyright .container-fluid {
        padding: 0 40px;
    }
}


    .show_after_1190{
        display: none !important;
    }

@media screen and (min-width: 1190.99px){
    div#main-top-map{
        display: none !important;
    }
}
@media screen and (max-width: 1190px){
    .show_after_1190{
        display: block !important;
    }
    .show_after_1190.row{
        display: flex !important;
    }
    .hide_after_1190{
        display: none !important;
    }
    .left-panel {
        min-width: inherit;
        width: 0px;
        max-width: 0px;
        padding: 0;
    }

    .filters_sidebar {
        width: 270px;
        position: fixed;
        left: -270px;
        top: 8.5rem;
        z-index: 9999999;
        background: #fff;
        margin: 0;
        padding: 10px 10px 10px 10px;
        height: calc(100vh - 8.5rem);
        overflow: scroll;
        transition: all .3s ease;
    }

    .filters_sidebar.active {
        left: 0;
    }
    .map_list_toggle_wrap {
        text-align: right;
    }

    .map_list_toggle_wrap a {
        background: rgba(5,181,165,0.12) !important;
        color: #121212 !important;
        text-transform: capitalize;
        letter-spacing: 0px;
        word-spacing: 0px;
        padding: 7px 8px;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        border-radius: 4px;
        box-shadow: none !important;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-top: 5px;
    }

    .map_list_toggle_wrap a img {
        max-width: 16px;
    }

    .main-top .row.show_after_1190 {
        margin-top: 7px;
    }

    .sort-dropdown button.dropdown-toggle {
        padding: 8px 15px;
    }

    .filters_btn_wrap a {
        background: #F3F5F2 !important;
        color: #121212 !important;
        text-transform: capitalize;
        letter-spacing: 0px;
        word-spacing: 0px;
        padding: 7px 13px;
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
        border-radius: 4px;
        box-shadow: none !important;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin-top: 5px;
    }
    .filters_btn_wrap a img {
        max-width: 17px;
    }
    div#small_map.mobile_map {
        height: 200px;
    }

    div#small_map.mobile_map .gmap_canvas {
        height: 100%;
    }

    div#small_map.mobile_map .gmap_canvas iframe {
        height: 100%;
    }
}
.show_after_991{
        display: none !important;
    }
@media screen and (max-width: 991.97px){
    .main-top {
        top: 7.6rem;
        padding: 0 0px;
    }
    .filters_sidebar.active,.filters_sidebar {
        top: 7.1rem;
        height: calc(100vh - 7.1rem);
    }
    .show_after_991{
        display: block !important;
    }
    .hide_after_991{
        display: none !important;
    }
    div#big_map.mapouter {
        height: calc(100vh - 14.4rem);
        margin-top: 10px;
    }

    div#big_map .gmap_canvas {
        height: 100%;
    }
    .todays_search_results {
        padding: 30px 0 0;
    }
    .listing-search-result-type{
        padding: 0px;
    }
    div#big_map .small_map_button{
        display: none !important;
    }
}

@media screen and (max-width: 880px){
    .result_gallery{
        display: none;
    }
    /*.listing-result-box {
        align-items: center;
    }*/
    .listing-result-box .listing-result-box-left {
        max-width: 25%;
        min-width: 25%;
    }
    .listing-result-box .listing-result-box-right {
        max-width: 75%;
        min-width: 75%;
    }
    .search-results-pagination {
        padding-top: 30px;
        margin-bottom: 5px;
    }
    .todays_search_results {
        padding: 30px 0 20px;
    }
}

@media screen and (max-width: 575.97px){
    .main-top {
        top: 7.6rem;
    }
}

.search-results-pagination {
    justify-content: center;
    padding-top: 50px;
}
.search-results-pagination .page-link {
    border: none;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(18,18,18,0.50) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    min-width: inherit;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 25px !important;
    transition: all .3s ease;
    border: 1px solid #fff !important;
}

.search-results-pagination .page-item {
    margin: 0 0.5rem;
}

.search-results-pagination .page-item.active .page-link, 
.search-results-pagination .page-item .page-link:hover, 
.search-results-pagination .page-item .page-link:focus, 
.search-results-pagination .page-item .page-link:active {
    color: #121212 !important;
    border: 1px solid #028DC8 !important;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.10);
    transition: all .3s ease;
}

@media screen and (max-width: 850px){
    .listing-result-box .listing-result-box-left div.carousel .carousel-inner .carousel-item img{
        height: 175px;
    }
}



@media screen and (max-width: 719px){
    .without_side_map .result_tags span {
        padding: 4px 6px;
        font-size: 12px;
        margin-bottom: 3px;
        margin-right: 0px;
        line-height: normal;
    }

    .result_tags span:not(:last-child) {
        margin-right: 3px;
    }

    .result-top-info * {
        font-size: 12px !important;
    }

    .result-info-head {
        margin-top: 0px;
    }

    .result-info-head h2 {
        font-size: 20px;
    }

    .without_side_map ul.result_info_list {
        gap: 0.4rem;
    }

    ul.result_info_list li {
        font-size: 12px;
    }
}

@media screen and (max-width: 687px){
    .listing-searched-for {
        padding-right: 30px;
    }

    .map_list_toggle_wrap {
        margin-left: -30px;
    }
}

.business_profile_basic_info {
    display: flex;
    gap: 15px;
}

.business_profile_basic_info .result-info-head h2 {
    font-size: 32px;
    line-height: normal;
    color: #32373F;
    text-shadow: 0 5px 13px rgba(255,255,255, 0.40);
}

div#fh5co-header-section.listing-header.business_profile_header {
    background: url('/assets/business_profile_header_bg.jpg') no-repeat center top;
    background-size: cover;
    padding: 10px 0 10px;
    box-shadow: 0px 4px 9px rgba(18,18,18,0.10);
}
.business_profile_banner {
    background: url('/assets/profile_banner_new.png') no-repeat center top;
    background-size: cover;
    background-position: bottom left;
    padding: 200px 20px 15px 20px;
}
div#fh5co-header-section.listing-header.business_profile_header .top_search_terms {
    display: none;
}

div#fh5co-header-section.listing-header.business_profile_header .form-row.topbar-search-form {
    margin-bottom: 0px;
}

.business_profile_banner_right_links {
    text-align: right;
}

.business_profile_banner_right_links a {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #121212;
    line-height: normal;
    margin-bottom: 10px;
    padding-right: 0px;
    transition: all .3s ease;
}

.business_profile_banner_right_links a:hover,
.business_profile_banner_right_links a:active,
.business_profile_banner_right_links a:focus {
    transition: all .3s ease;
    padding-right: 10px;
}

.business_profile_banner ul.result_info_list {
    gap: 5px;
    flex-wrap: wrap;
}

.business_profile_banner ul.result_info_list li.spacer {
    height: 12px;
    background: #121212;
}

.business_profile_banner ul.result_info_list span.result_ratin {
    color: #121212;
}

.business_profile_banner ul.result_info_list .result_reviews_count *,
.business_profile_banner ul.result_info_list .result_reviews_count {
    color: #121212 !important;
}

.business_profile_banner  ul.result_info_list li {
    color: #121212 !important;
    font-weight: 600;
}

.business_profile_banner  .result-top-info {
    margin-bottom: 8px;
}

.business_profile_banner .result-info-head {
    margin-top: 0px;
}

.business_profile_basic_info .profile_hours {
    line-height: normal;
    margin-top: 12px;
}

.business_profile_basic_info .profile_hours span {
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    margin-right: 12px;
    position: relative;
}

.business_profile_basic_info .profile_hours span:after {
    content: '';
    width: 3px;
    height: 3px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    background-color: #000;
    position: absolute;
    right: -9px;
    top: 44%;
}

.business_profile_basic_info .profile_hours span.no_after:after {
    display: none;
}

.business_profile_basic_info .profile_hours span.no_after a {
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: underline;
    top: 0;
    color: #121212;
    background: transparent !important;
}

.business_profile_basic_info .profile_hours span.status {
    color: #018DC8;
}

.business_profile_basic_info .profile_hours span.hours {
    color: #32373F;
}

.business_profile_basic_info .profile_hours a {
    font-size: 12px;
    border: 1px solid #018DC8;
    border-radius: 3px;
    padding: 2px 4px;
    color: #018DC8;
    display: inline-block;
    position: relative;
    top: -2px;
    font-weight: 600;
    transition: all .3s ease;
}

.business_profile_basic_info .profile_hours a i {
    margin-right: 1px;
}

.business_profile_basic_info .profile_hours a:hover{
    background: #018DC8;
    color: #fff;
    transition: all .3s ease;
}


a.search_toggle {
    position: absolute;
    right: 65px;
    top: 10px;
    max-width: 21px;
}

@media screen and (min-width: 991.98px){
    div#fh5co-header-section.listing-header.business_profile_header{
        min-height: 5.2rem;
    }
    body.business_profile_page{
        padding-top: 5.2rem;
    }
}

@media screen and (max-width: 991.97px){
    div#fh5co-header-section.listing-header.business_profile_header{
        padding-top: 10px;
        padding-bottom: 10px;
        background: #E6F4FA;
        background-size: cover;
        box-shadow: none;
    }
    div#fh5co-header-section.listing-header.business_profile_header .top_search_terms{
        display: block;
    }
    .business_profile_basic_info .business_profile_basic_info_left {
        display: none;
    }
    .business_profile_header .header-search-box {
        position: absolute;
        width: 100%;
        left: 0;
        margin-top: 0px;
        background: #fff;
        height: 0;
        padding: 0px;
        overflow: hidden;
        transition: height .3s ease;
    }

    .business_profile_header .header-search-box.show {
        padding: 10px 25px;
        overflow: auto;
        height: auto;
        transition: height .3s ease;
    }
    .business_profile_basic_info .profile_hours a {
        border: 1px solid #018DC8;
        color: #018DC8;
        font-weight: 600;
    }
    .quick_links_profile_page {
        background: #EFEFEF;
    }

    .quick_links_profile_page ul {
        padding: 0;
        list-style: none;
        margin: 0;
        display: flex;
        justify-content: space-between;
        gap: 25px;
    }

    .quick_links_profile_page ul li a span {
        display: block;
        margin-top: 10px;
        text-shadow: 0 5px 13px rgba(255,255,255, 0.40);
        color: #32373F;
    }

    .quick_links_profile_page ul li a {
        display: block;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        line-height: normal;
    }

    .quick_links_profile_page ul li a img {
    }

    .quick_links_profile_page ul li {
        min-width: 20%;
    }
}

div#fh5co-header-section.listing-header .container-fluid.business_profile_banner_right_links.mobile {
    display: none;
}

@media screen and (max-width: 991.97px){
    div#fh5co-header-section.listing-header.business_profile_header{
        min-height: 3.9rem;
    }
    body.business_profile_page{
        padding-top: 3.9rem;
    }

    .business_profile_banner_right_links.mobile a {
        display: inline;
        padding-right: 0px !important;
    }

    .business_profile_banner_right_links.mobile a:not(:last-child) {
        margin-right: 10px;
    }

    .business_profile_banner_right_links.mobile a:hover,
    .business_profile_banner_right_links.mobile a:focus,
    .business_profile_banner_right_links.mobile a:active {
        color: #121212 !important;
    }

    div#fh5co-header-section.listing-header.business_profile_header .container-fluid.business_profile_banner_right_links.mobile {
        display: block;
        text-align: right;
        margin-top: 5px;
    }
    .business_profile_banner_right_links a{
        font-size: 14px;
    }
    .business_profile_banner {
        background: transparent;
        padding: 10px 0px 10px 0px;
    }
}


@media screen and (max-width:700px){
    .business_profile_banner .result_tags span {
        padding: 5px 9px;
        font-size: 12px;
    }

    .business_profile_banner .result_tags {
        margin: 8px 0px 0;
    }

    .business_profile_banner .business_profile_basic_info {
        align-items: center;
        gap: 8px;
    }

    .business_profile_banner .business_profile_basic_info .business_profile_basic_info_left {
        max-width: 125px;
    }
}


@media screen and (max-width:575.98px){
    .business_profile_banner .business_profile_basic_info .business_profile_basic_info_left {
        max-width: 75px;
    }
    .business_profile_banner .business_profile_basic_info_right.mobile {
        margin-top: 5px;
    }
    div#fh5co-header-section.listing-header.business_profile_header {
        min-height: 3.9rem;
    }
    body.business_profile_page{
        padding-top: 3.9rem;
    }
    .business_profile_basic_info .result-info-head h2{
        font-size: 22px;
        margin-top: 3px;
    }
    .business_profile_banner ul.result_info_list li {
        font-size: 14px;
    }

    .business_profile_banner ul.result_info_list {
        gap: 2px;
    }
    .business_profile_basic_info .profile_hours{
        margin-top: 5px;
    }
    .business-profile-right-panel a.show_more_link.underline {
        font-size: 13px;
    }
}



@media screen and (max-width:445px){
    .business_profile_banner ul.result_info_list {
        flex-wrap: wrap;
    }
    .quick_links_profile_page ul li {
        min-width: 16%;
    }
}

@media screen and (max-width:399px){
    .business_profile_banner .result-info-head h2 {
        font-size: 20px;
    }

    .business_profile_banner .result-top-info ul.result_info_list {
        gap: 5px;
        flex-wrap: nowrap;
    }   

    .business_profile_banner .result-top-info .result_rating_wrap img {
        max-width: 70px;
    }

    .business_profile_banner .result-top-info {
        margin-bottom: 0px;
    }

    .business_profile_banner .result-top-info * {
        font-size: 11px !important;
    }

    .business_profile_banner  .result-top-info ul.result_info_list li .varified_badge {
        padding: 4px 9px;
    }
    .business_profile_banner ul.result_info_list li.spacer {
            height: 12px;
    background: #121212;
    }
    .quick_links_profile_page {
        padding: 13px 0 10px !important;
    }
    .quick_links_profile_page ul li a span {
        font-size: 14px;
    }
    .business_profile_basic_info .profile_hours {
        margin-top: 4px;
    }
    footer#gtco-footer {
        padding: 50px 0 0;
    }
}


.business-profile-left-panel {
    min-width: 335px;
}

.card-with-left-img {
    display: flex;
     align-items: center; 
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid rgba(1,141,200,0.50);
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(18,18,18,0.10);
}
.card-with-left-img.transparent {
    background: #fff;
}
.card-with-left-img.blue-bg {
    background: rgba(228,243,249,0.47);

}

.card-with-left-img .left {
    min-height: 100%;
}

.card-with-left-img .left img {
    height: 100%;
}

.card-with-left-img.refer-box {
    gap: 25px;
    padding: 10px 10px;
}

.card-with-left-img.refer-box .left img {
    object-fit: contain;
    min-width: 100px;
}

.card-with-left-img .right h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.card-with-left-img .right a.square-themebtn {
    background: #018DC8;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 3px;
    transition: all .3s ease;
}

.card-with-left-img .right a.square-themebtn.with-icon img {
    position: relative;
    top: -1px;
}

.card-with-left-img .right a.square-themebtn:hover,
.card-with-left-img .right a.square-themebtn:focus,
.card-with-left-img .right a.square-themebtn:active {
    background: #05B6A6 !important;
    transition: all .3s ease;
}

.card-with-left-img.sale-box .right p {
    color: #018DC8;
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 4px;
}

.card-with-left-img.sale-box {
    gap: 1px;
    align-items: stretch;
}

.card-with-left-img.sale-box .right {
    padding: 5px;
}

.card-with-left-img.sale-box .right h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
}

.card-with-left-img.sale-box .left img {min-width: 115px;object-fit: cover;border-radius: 5px;}

.card-with-left-img.sale-box .left {
    min-height: 100%;
}

.card-with-left-img.consultation-box {
    padding: 20px 20px;
    justify-content: center;
}

.card-with-left-img.consultation-box h3 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}
.info-card-left-panel{
    border-radius: 5px;
    border: 1px solid #EFEFEF;
    margin-bottom: 15px;
    background: rgba(239,239,239,0.19);
    padding: 10px 8px;
}
.info-card-left-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card-left-panel ul li * {
    font-size: 14px;
    color: #32373F !important;
    line-height: normal;
}

.info-card-left-panel ul li a {
    word-break: break-all;
}

.info-card-left-panel ul li:nth-child(1), .info-card-left-panel ul li:nth-child(2),.info-card-left-panel ul li:nth-child(3) {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: normal;
    justify-content: left;
}

.info-card-left-panel ul li {
    line-height: normal;
    padding: 6px 0px 7px;
    border-bottom: none;
    margin-bottom: 0px;
}

.info-card-left-panel ul li:nth-child(1) img, .info-card-left-panel ul li:nth-child(2) img, .info-card-left-panel ul li:nth-child(3) img {
    position: relative;
    top: 1px;
}

.info-card-left-panel ul li iframe {
    border-radius: 5px;
    display: block;
    margin-bottom: 9px;
}

.info-card-left-panel ul li:nth-child(4) {
    text-align: center;
}

.info-card-left-panel ul li .themebtn {
    padding: 9px 13px;
    margin-bottom: 5px;
    color: #fff !important;
}

.info-card-left-panel ul li a.square-themebtn {
    background: #018DC8;
    border: 1px solid #018DC8 !important;
    color: #fff !important;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 3px;
    transition: all .3s ease;
}

.info-card-left-panel ul li a.square-themebtn:hover,
.info-card-left-panel ul li a.square-themebtn:active,
.info-card-left-panel ul li a.square-themebtn:focus {
    background: transparent !important;
    border: 1px solid #018DC8 !important;
    color: #018DC8 !important;
    transition: all .3s ease;
}
.info-card-left-panel ul li h3 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}

.info-card-left-panel ul li:last-child {
    border: none;
    margin: 0;
    padding-bottom: 0;
}

.left-panel-call-box h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 9px !important;
    margin-top: 4px;
}

.left-panel-call-box li {
    padding: 0px !important;
}

.info-card-left-panel ul li .btn-group a.themebtn {
    font-size: 12px !important;
    border-radius: 2px;
    padding: 8px 11px;
    box-shadow: none !important;
}
.info-card-left-panel ul li .btn-group a.themebtn{
    background: transparent !important;
    border-color: #018DC8 !important;
    color: #018DC8 !important;
}
.info-card-left-panel ul li .btn-group a.themebtn.invert, .info-card-left-panel ul li .btn-group a.themebtn.invert span{
    background: #018DC8 !important;
    border-color: #018DC8 !important;
    color: #fff !important;
}

.info-card-left-panel ul li .btn-group {
    display: flex;
    justify-content: space-between;
}
.col.business-profile-right-panel {
    overflow: hidden;
}

@media screen and (max-width: 1366px){
    .business-profile-left-panel{
            min-width: 325px;
    }
}

@media screen and (max-width: 600px){
    .my_row_footer [class*="col-"] {
        flex: 0 0 100% !important;
    }
    footer#gtco-footer .container-fluid.saperator hr{
        margin-top: 0px !important;
    }
}

.business-profile-right-panel-wrap {
    margin: 0 0px 0 -15px;
    padding: 0px 0px;
    border: none;
    border-radius: 8px;
}

.business-profile-right-panel-wrap .card{
    border: none;
}

.business-profile-right-panel-wrap .card .card-header {
    background: transparent;
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: #32373F;
    border: none;
    padding: 0;
    margin-bottom: 13px;
}

.business-profile-right-panel-wrap .card .card-header a {
    float: right;
    color: #32373F;
    font-size: 16px;
    line-height: normal;
    padding: 5px 0;
    transition: all .3s ease;
}

.business-profile-right-panel-wrap .card .card-header a:hover,
.business-profile-right-panel-wrap .card .card-header a:active,
.business-profile-right-panel-wrap .card .card-header a:focus {
    color: #05B6A6 !important;
    transition: all .3s ease;
}

.business-profile-right-panel-wrap .card .card-header a span {
    font-size: 14px;
    margin-left: 4px;
    font-weight: bold;
}

.business-profile-right-panel-wrap .card .card-body {
    padding: 1rem 0;
}

.promotion-box-left-img {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promotion-box-left-img h3 {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 7px;
    line-height: normal;
}

.promotion-box-left-img p {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    margin-bottom: 0px;
    line-height: 26px;
}

.promotion-box-left-img p a {
    color: #018DC8;
}

.business-profile-right-panel-wrap .card:not(:last-child) {
    margin-bottom: 25px;
}

.b-highlight-box {
    text-align: center;
}

.b-highlight-box span {
    display: block;
    min-height: 40px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #121212;
}

.b-highlight-box img {
    margin: 0 auto;
    margin-bottom: 10px;
    display: block;
}

/*.card.highlights-card .col-4:first-child .b-highlight-box img {
    margin-bottom: 12px;
}

.card.highlights-card .col-4:last-child .b-highlight-box img {
    margin-bottom: 12px;
}*/

.b-profile-portfolio-box img {
    width: 100%;
}


.b-highlight-box.b-profile-service-box {
    text-align: left;
}

.b-highlight-box.b-profile-service-box img {
    margin: 0;
    display: inline;
    position: relative;
    top: -2px;
    margin-right: 7px;
}

.b-highlight-box.b-profile-service-box span {
    font-weight: 500;
}

.business-profile-right-panel a.show_more_link.underline {
    color: #228fc5 !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
}

.business-profile-right-panel a.show_more_link.underline .fas {
    position: relative;
    left: 4px;
    font-size: 14px;
}

.card.highlights-card .col-4:first-child .b-highlight-box img {
    margin-bottom: 12px;
}

.card.highlights-card .col-4:last-child .b-highlight-box img {
    margin-bottom: 12px;
}

.b-profile-portfolio-box img {
    aspect-ratio: 13 / 8;
    object-fit: cover;
    border-radius: 8px;
}

.portfolio-carousel {
    position: relative;
    padding: 0 50px;
}

.portfolio-carousel .owl-dots {
    display: none;
}

.portfolio-carousel .owl-nav {
    margin: 0;
    position: absolute;
    width: 100%;
    top: 53%;
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    margin-top: -25px;
}

.portfolio-carousel .owl-nav button {
    color: #32373F !important;
    width: 30px;
    height: 30px;
    background: #fff !important;
    border-radius: 25px !important;
    border: 1px solid rgba(50,55,63,0.25) !important;
}

.portfolio-carousel .owl-nav button span {
    font-size: 30px !important;
    line-height: 26px;
    font-weight:500;
}

.portfolio-carousel .owl-nav button.owl-prev {
    float: left;
    text-indent:-1px;
    position: relative;
    left: 2px;
}
.portfolio-carousel .owl-nav button.owl-prev span {
    line-height: 24px;
    font-weight:500;
}

.portfolio-carousel .owl-nav button.owl-next {
    float: right;
    text-indent:1px;
    position: relative;
    right: 2px;
}

.portfolio-carousel .owl-nav button.owl-next span {
    line-height: 24px;
    font-weight:500;
}
.show-after-600{
    display: none;
}
@media screen and (max-width: 600px){
    .hide-after-600{
        display: none;
    }
    .show-after-600{
        display: block;
    }
    .mobile-gallery-overview {
        display: flex;
        justify-content: space-between;
        height: 100%;
        gap: 10px;
    }
    .mobile-gallery-overview .b-profile-portfolio-box img {
        aspect-ratio: 13 / 7;
    }

    .mobile-gallery-overview .left,.mobile-gallery-overview .right {
        height: 100%;
    }

    .mobile-gallery-overview .left .b-profile-portfolio-box {
        margin: 0;
        height: 100%;
    }

    .mobile-gallery-overview  .b-profile-portfolio-box a {
        display: block;
        height: 100%;
        position: relative;
    }

    .mobile-gallery-overview .left .b-profile-portfolio-box a img {
        width: 100%;
    }

    .mobile-gallery-overview .left {
        min-width: calc(68.5% - 7px);
    }

    .mobile-gallery-overview .b-profile-portfolio-box a span {
        font-weight: 600;
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.45);
        color: #fff;
        font-size: 16px;
    }

    .mobile-gallery-overview .right .b-profile-portfolio-box:last-child {margin-bottom: 0px;}

    .mobile-gallery-overview .b-profile-portfolio-box a.view-all-gallery {
        overflow: hidden;
        border-radius: 8px;
    }
}

.rating-overview-section {
    margin-bottom: 30px;
    box-shadow: none !important;
    border: none !important;
}

.rating-overview-section .fa-star {
  color: #ffa41b;
}
.rating-overview-section .course-details-card {
  border-radius: 8px;
  border: 1px solid #EEEEEE;
  padding: 30px;
}
.rating-overview-section .course-details-card .course-details-two-content p:last-child {
  margin-bottom: 0;
}
.rating-overview-section .row--30 {
  margin-left: -30px;
  margin-right: -30px;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rating-overview-section .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rating-overview-section .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rating-overview-section .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .rating-overview-section .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.rating-overview-section .row--30 > [class*="col"], .rating-overview-section .row--30 > [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .rating-overview-section .row--30 > [class*="col"], .rating-overview-section .row--30 > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rating-overview-section .row--30 > [class*="col"], .rating-overview-section .row--30 > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rating-overview-section .row--30 > [class*="col"], .rating-overview-section .row--30 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .rating-overview-section .row--30 > [class*="col"], .rating-overview-section .row--30 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/*.rating-overview-section .course-details-content .rating-box {
  background: #FFFFFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  text-align: center;
  min-width: 200px;
  padding: 29px 10px;
}*/
/*.rating-overview-section .course-details-content .rating-box .rating-number {
  font-weight: 800;
  font-size: 72px;
  line-height: 90px;
  color: #231F40;
}
.rating-overview-section .course-details-content .rating-box span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}*/
.rating-overview-section .course-details-content .course-tab-content {
  margin-top: 40px;
}
.rating-overview-section .course-details-content .rating-box {
  box-shadow: none;
  text-align: center;
  min-width: 200px;
  padding: 29px 10px;
}
.rating-overview-section .course-details-content .rating-box .rating {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
}

.rating-overview-section .course-details-content .rating-box .rating .fa-star {
    font-size: 22px;
}
.rating-overview-section .course-details-content .rating-box .rating-number {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #121212;
}
.rating-overview-section .course-details-content .rating-box span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.rating-overview-section .review-wrapper .single-progress-bar {
  position: relative;
}
.rating-overview-section .review-wrapper .rating-text {
  display: inline-block;
  position: relative;
  top: 19px;
}
.rating-overview-section .review-wrapper .progress {
  max-width: 82%;
  margin-left: 60px;
  height: 10px;
  background: #C7C7C7;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rating-overview-section .review-wrapper .progress {
    max-width: 80%;
  }
}
.rating-overview-section .review-wrapper .progress .progress-bar {
  background-color: #018DC8;
}
.rating-overview-section .review-wrapper span.rating-value {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 22px;
    color: rgba(18,18,18,0.48);
    font-weight: 500;
    line-height: normal;
    top: 60%;
}
.rating-overview-section .review-wrapper .rating-text {
    width: 36px;
    font-size: 22px;
    font-weight: 500;
    color: #121212;
    top: 24px;
}

.rating-overview-section .review-wrapper .rating-text .fa-star {
    float: right;
    position: relative;
    top: 7px;
    font-size: 17px;
}

.rating-overview-section .review-wrapper {
    margin-top: -33px;
}
.rating-overview-section .rating-overview-section-head {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: #121212;
    margin-bottom: 15px;
    margin-top: 40px;
}

.reviews-filters-wrap {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}
.business-profile-right-panel-wrap .card.reviews-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews-filters-wrap .dropdown button,.business-profile-right-panel-wrap  .reviews-filters-wrap a.button {
    background: #F3F5F2 !important;
    text-transform: capitalize !important;
    border: none !important;
    color: #121212 !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    word-spacing: normal;
    display: inline-block !important;
    border-radius: 25px !important;
    padding: 6px 18px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    float: none !important;
        line-height: 1.5 !important;
}

.reviews-filters-wrap .dropdown button:hover,
.reviews-filters-wrap .dropdown button:focus,
.reviews-filters-wrap .dropdown button:active,
,.business-profile-right-panel-wrap  .reviews-filters-wrap a.button:hover,
,.business-profile-right-panel-wrap  .reviews-filters-wrap a.button:focus,
,.business-profile-right-panel-wrap  .reviews-filters-wrap a.button:active {
    color: #121212 !important;
}

.reviews-filters-wrap .dropdown button span.caret {
    display: none !important;
}

.reviews-filters-wrap .dropdown button::after {
    border: none;
    margin-left: 6px;
    position: relative;
    top: 2px;
}

.reviews-filters-wrap .dropdown ul li {
    display: block !important;
}

.reviews-filters-wrap .dropdown ul li a {
    display: block !important;
    text-align: center;
    float: none !important;
    padding: 9px 6px !important;
    font-weight: 400;
    color: #121212 !important;
}

.reviews-filters-wrap .dropdown ul.dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
    padding: 13px;
}

.reviews-filters-wrap .dropdown ul.dropdown-menu::before {
    border-left: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.15) !important;
}

.reviews-filters-wrap .dropdown ul li a:hover, 
.reviews-filters-wrap .dropdown ul li a:active, 
.reviews-filters-wrap .dropdown ul li a:focus {
    background: #f2fdf9 !important;
    color: #05b6a6 !important;
}


.rating-search {
    display: flex;
    background: transparent !important;
    align-items: center;
    gap: 0px;
    border-bottom: 1px solid rgba(18,18,18,0.50);
}

.rating-search .search-icon {
    filter: invert(1) contrast(0.3);
}

.rating-search input {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
}

.rating-search .search-icon img {
    position: relative;
    top: -1px;
}

.write-review-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
}

.write-review-wrap .right {flex-basis: 100%;}

.write-review-wrap .right .write-review-link {
    border-bottom: 1px solid rgba(18,18,18,0.50);
    padding: 5px 8px;
}

.write-review-wrap .right .write-review-link a {
    font-size: 18px;
    color: #018DC8;
}

.write-review-wrap .right .write-review-link a:hover,
.write-review-wrap .right .write-review-link a:focus,
.write-review-wrap .right .write-review-link a:active {
    color: #30b29b;
}

.b-profile-user-review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.b-profile-user-review-head .b-profile-user-review-head-info {
    display: flex;
    gap: 15px;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-reveiew-user-thumb {
    max-width: 67px;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 0px;
    color: #121212;
}
.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info h3 a{
    color: #121212;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info p a{
    color: #121212;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info p {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    margin-bottom: 2px;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info ul {
    list-style: none;
    padding: 0px;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: normal;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info ul li {
    line-height: normal;
}

.b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info ul li span {
    font-size: 14px;
    font-weight: 500;
    color: #121212;
}

.user-review-stars-and-review-date {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.user-review-stars-and-review-date span {
    font-size: 16px;
    font-weight: 500;
    color: #121212;
    line-height: normal;
    display: block;
    margin-top: 4px;
}

.user-review-stars-and-review-date img {
    max-width: 100px;
}

.b-profile-user-review-content {
    margin-top: 20px;
    margin-bottom: 15px;
}

.b-profile-user-review-content p {
    font-size: 16px;
    color: #121212;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.b-profile-user-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b-profile-user-review-footer .left .user-review-votes-wrap a span.count {
    display: block;
    line-height: normal;
    font-size: 14px;
    color: rgba(18,18,18,0.50);
}

.b-profile-user-review-footer .left .user-review-votes-wrap {
    display: flex;
    gap: 10px;
    text-align: center;
}

.b-profile-user-review-footer .left .user-review-votes-wrap .fa {
    font-size: 22px;
    color: rgba(18,18,18,0.50);
}

.b-profile-user-review-footer .left .user-review-votes-wrap .fa-thumbs-down {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.b-profile-user-review-footer .left .user-review-votes-wrap a:hover *, 
.b-profile-user-review-footer .left .user-review-votes-wrap a:focus *, 
.b-profile-user-review-footer .left .user-review-votes-wrap a:active * {
    color: #121212 !important;
}
.b-profile-user-review-wrap {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0 ,0.20);
}

.card.reviews-card .b-profile-user-review-wrap:last-child {
    border: none;
}

.has-reply .b-profile-owner-reply-wrap {
    background: #F4FCFE;
    padding: 15px 25px;
    max-width: 98%;
    border-left: 2px solid #018DC8;
    margin-left: 2%;
    margin-top: 30px;
}

.has-reply  .b-profile-owner-reply-wrap .b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info p {
    line-height: normal;
    margin-bottom: 5px;
}
.b-profile-user-review-footer .right {
    display: flex;
    gap: 10px;
    text-align: center;
}

.b-profile-user-review-footer .right a span {
    display: block;
    line-height: normal;
    margin-top: 5px;
    font-weight: 600;
    color: #121212;
}

.b-address-hours-card-map .address-field {
    font-size: 16px;
    color: #32373F;
    font-weight: 500;
    line-height: 130%;
    padding: 15px 0 0;
    margin-bottom: 0;
    border-bottom: none;
}

.b-address-hours-card-map .address-field img {
    position: relative;
    top: -2px;
    margin-right: 10px;
}

.b-address-hours-card-map iframe {
    display: block;
    border-radius: 0px;
}

.b-address-hours-card-map a.themebtn {
    min-width: 150px;
}

.b-address-hours-info-wrap {
    background: transparent;
    padding: 0 !important;
    border-radius: 0px;
    padding-right: 15px !important;
}

.b-address-hours-info-wrap ul {
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
}

.b-address-hours-info-wrap ul li {
    display: flex;
    justify-content: space-between;
    line-height: normal;
    margin-bottom: 7px;
    color: #32373F;
}

.b-address-hours-info-wrap ul li span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #32373F;
}

.b-address-hours-info-wrap ul li span.status {
    width: 65px;
    padding-left: 8px;
}

.b-address-hours-info-wrap ul li span:nth-child(2),
.b-address-hours-info-wrap ul li span:nth-child(1) {
    width: 50%;
}

.b-address-hours-info-wrap ul li:last-child {
    margin-bottom: 0px !important;
}

.b-address-hours-info-wrap ul li span.status.open {
    color: #018DC8;
}
.b-address-hours-info-wrap ul li span.status.closed {
    color: #32373F;
    text-align: right;
}
.b-address-hours-info-wrap ul li span:nth-child(2) {
    text-align: right;
}

.b-address-hours-info-wrap  .b-status-now {
    background: #018DC8;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    padding: 7px 9px;
    border-radius: 3px;
    margin-top: 10px;
    transition: all .3s ease;
    text-align: center;
}

.b-address-hours-info-wrap  .b-status-now.border {
    background: transparent;
    border: 1px solid #018DC8 !important;
    color: #018DC8;
}

.b-address-hours-wrap {
    min-width: 400px;
}

@media screen and (max-width: 1125px){
    .card.b-address-hours-card .col.px-2 {
        min-width: 100%;
    }

    .b-address-hours-wrap {
        margin-bottom: 10px;
    }
    .business_profile_banner{
        background-position-x: -100px;
    }
}
.card.about-b-card .about-b-info-wrap p {
    margin: 0;
    font-size: 16px;
    color: #121212;
    line-height: 26px;
}

.card.about-b-card .about-b-info-wrap p .read-more {    
    display: inline-block;
    margin-top: 0;
    margin-right: 0;
    color: #32373F !important;
    font-weight: 400;
    text-decoration: underline;
}

.card.amenities-card .b-profile-service-box {
    margin-bottom: 10px;
}



.b-profile-faqs-item-wrap {
    display: flex;
    gap: 40px;
    padding: 35px 40px;
}

.b-profile-faqs-item-wrap span.faq-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(60,60,67,0.50);
    line-height: 120%;
}

.b-profile-faqs-item-wrap .right {
    flex-basis: 100%;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-name img {
    max-width: 35px;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question .question {
    font-size: 24px;
    font-weight: 700;
    color: #121212;
    line-height: 120%;
    margin-bottom: 8px;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question .answer {
    font-size: 16px;
    font-weight: 400;
    color: #121212;
    line-height: 27px;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question {
    margin-bottom: 20px;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-answered-info .name {
    font-size: 14px;
    color: #121212;
    line-height: 150%;
    font-weight: 600;
}

.b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-answered-info p {
    font-size: 14px;
    color: #121212;
    line-height: 150%;
    font-weight: 400;
    margin: 0;
}

.b-profile-faqs-item-wrap:not(:last-child) {
    border-bottom: 1px solid rgba(18,18,18,0.25);
}

.card.b-address-hours-card .card-body .row, .card.portfolio-card .card-body .row {
    margin: 0 -8px;
}


@media screen and (max-width: 1598px){
    .rating-overview-section .review-wrapper .progress {
        max-width: 75%;
    }
    .b-address-hours-info-wrap ul li span {
        font-size: 14px;
    }
}

@media screen and (max-width: 1404px){
    .promotion-box-left-img {
        gap: 5px;
    }
    .promotion-box-left-img h3 {
        margin-bottom: 4px;
        font-size: 20px;
    }

    .promotion-box-left-img p {
        font-size: 15px;
        line-height: 24px;
    }
    .business-profile-right-panel-wrap .card .card-body {
        padding: 1rem 0rem;
    }

    .business-profile-right-panel-wrap .card .card-header {
        font-size: 22px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .b-highlight-box img {
        max-width: 45px;
        max-height: 38px;
    }

    .b-highlight-box span {
        font-size: 15px;
        line-height: 18px;
    }

    .b-highlight-box {
        margin: 0 0px;
    }
    .b-address-hours-info-wrap {
        padding: 25px 10%;
    }
    .b-address-hours-card-map .address-field {
        display: flex;
        align-items: flex-start;
    }

    .b-address-hours-card-map .address-field img {
        top: 2px;
        margin-right: 5px;
    }
}

@media screen and (max-width: 1299px){
    .promotion-box-left-img p {
        font-size: 14px;
        line-height: 20px;
    }
    .promotion-box-left-img h3 {
        margin-bottom: 2px;
        font-size: 18px;
    }
    .rating-overview-section .review-wrapper .progress {
        max-width: 71%;
    }
}

@media screen and (max-width: 1199px){
    .promotion-box-left-img{
        margin-bottom: 10px;
    }
    .card.highlights-card .b-highlight-box, 
    .card.services-card .b-profile-service-box,
    .card.portfolio-card .b-profile-portfolio-box {
        margin-bottom: 15px;
    }

    .card.highlights-card .card-body, 
    .card.promotions-card .card-body,
     .card.services-card .card-body,
     .card.portfolio-card .card-body {
        padding-bottom: 10px;
    }
    .rating-overview-section .course-details-card {
        padding: 20px;
    }

    .rating-overview-section .course-details-content .rating-box {
        min-width: inherit;
        padding: 0 15px;
    }
    .rating-search{
        display: none;
    }
    .b-address-hours-info-wrap {
        padding: 20px 6%;
    }
}

@media screen and (max-width: 1120px){
    .rating-overview-section .review-wrapper .progress {
        max-width: 75%;
    }
}

.additional-services {
    margin-top: 15px;
}
.card.amenities-card .additional-services {
    margin-top: 0px;
}

@media screen and (max-width: 991.98px){
    .b-profile-left-panel-wrap {
        margin-top: -15px;
    }
    .b-profile-left-panel-wrap {
        margin-top: -15px;
    }

    .b-profile-left-panel-wrap {
        display: grid;
        grid-template-columns: repeat(1, 0.4fr);
        grid-template-rows: repeat(1, auto);
        grid-gap: 15px;
        margin-bottom: 15px;
    }

    .b-profile-left-panel-wrap .card-with-left-img:nth-child(1) {
        order: 2;
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2;
    }

    .b-profile-left-panel-wrap .card-with-left-img:nth-child(2) {
        order: 3;
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 2;
        align-items: stretch;
    }

    .b-profile-left-panel-wrap .card-with-left-img:nth-child(3) {
        order: 4;
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 3;
        grid-row-end: 4;
    }

    .b-profile-left-panel-wrap .card-with-left-img {
        margin: 0px;
    }

    .b-profile-left-panel-wrap .info-card-left-panel {grid-column-start: 3;grid-column-end: 4;grid-row-start: 1;grid-row-end: 4;margin: 0;}

    .card-with-left-img.sale-box .right {
        padding-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .business-profile-right-panel-wrap {
        margin: 0;
    }

    .rating-overview-section .rating-overview-section-head {
        margin-top: 10px;
    }

    .rating-overview-section .row--30 {
        flex-direction: column-reverse;
    }

    .rating-overview-section .course-details-content .rating-box {
        text-align: left;
        padding-left: 0px;
        margin-bottom: 20px;
        margin-top: -10px;
    }

    .rating-overview-section .course-details-content .rating-box .rating {
        display: inline-flex;
    }

    .rating-overview-section .course-details-content .rating-box .rating-number {
        font-size: 30px;
        line-height: 41px;
        position: relative;
    }

    .rating-overview-section .course-details-content .rating-box .rating-number:before {
        width: 1px;
        height: 20px;
        position: absolute;
        background: #C7CDD0;
        content: '';
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .rating-overview-section .course-details-content .rating-box span {
        color: rgba(18,18,18,0.50);
        position: relative;
        top: -3px;
        margin-left: 15px;
        font-size: 14px;
    }
    .rating-overview-section .review-wrapper .single-progress-bar {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .rating-overview-section .review-wrapper .single-progress-bar .rating-text {
        top: 0;
        min-width: 45px;
        display: flex;
        justify-content: space-between;
    }

    .rating-overview-section .review-wrapper .single-progress-bar .progress {
        max-width: inherit;
        width: 100%;
        margin: 0;
    }

    .rating-overview-section .review-wrapper .single-progress-bar  span.rating-value {
        position: relative;
        top: 0;
        right: 0;
        line-height: normal;
        min-width: 45px;
        text-align: right;
    }

    .rating-overview-section .review-wrapper {
        margin-top: -10px;
        margin-bottom: -10px;
    }
    .card-with-left-img .left {
        display: flex;
        align-items: center;
    }
}

@media screen and (max-width: 830.98px){
    .b-profile-left-panel-wrap {
        grid-template-columns: repeat(2, 0.5fr);
    }
}


@media screen and (max-width: 690.98px){
    .b-profile-left-panel-wrap {
        grid-template-columns: repeat(3, 0.5fr);
    }
    .b-profile-left-panel-wrap .info-card-left-panel {
        min-width: 290px;
    }
    .reviews-filters-wrap .dropdown button,.business-profile-right-panel-wrap  .reviews-filters-wrap a.button {
        padding: 4px 13px !important;
        font-size: 14px !important;
    }
}

@media screen and (max-width: 600.98px){
    .b-profile-left-panel-wrap .info-card-left-panel {
        min-width: 250px;
    }
    .info-card-left-panel ul li a {
        word-break: break-all;
    }
}

@media screen and (max-width: 575.98px){
    .b-profile-left-panel-wrap {
        margin-top: -25px;
    }
    .b-profile-left-panel-wrap .card-with-left-img:nth-child(1) {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 2;
        justify-content: space-evenly;
    }

    .b-profile-left-panel-wrap .card-with-left-img:nth-child(2) {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 2;
        grid-row-end: 2;
        justify-content: flex-start;
    }

    .b-profile-left-panel-wrap .card-with-left-img:nth-child(3) {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 3;
        grid-row-end: 4;
    }

    .b-profile-left-panel-wrap .info-card-left-panel {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 4;
        grid-row-end: 4;
    }
    .business-profile-right-panel-wrap {
        padding: 0px;
        border: none;
    }
}


@media screen and (max-width: 575.98px){
    .result-info-head h2 {
        font-size: 16px;
    }

    .business_profile_banner .business_profile_basic_info .result-top-info * {
        font-size: 12px !important;
    }

    .card-with-left-img .right h3 {
        font-size: 14px;
    }

    .card-with-left-img.sale-box .right p {
        font-size: 12px;
    }

    .card-with-left-img.sale-box .right h3 {
        font-size: 14px;
    }

    .card-with-left-img.consultation-box h3 {
        font-size: 14px;
    }

    .info-card-left-panel ul li * {
        font-size: 13px;
    }

    .info-card-left-panel ul li .themebtn {
        font-size: 12px;
    }

    .info-card-left-panel ul li h3 {
        font-size: 14px;
        text-align: center;
    }

    .info-card-left-panel ul li a.square-themebtn {
        max-width: 270px;
        margin: 5px auto 0 !important;
    }

    .business-profile-right-panel-wrap .card .card-header {
        font-size: 18px;
    }

    .business-profile-right-panel-wrap .card.promotions-card .card-body {
        padding-left: 5px;
        padding-right: 5px;
        background: rgba(1,141,200,0.20);
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img {
        padding: 0 10px;
        background: #fff;
        margin-bottom: 5px;
    }

    .business-profile-right-panel-wrap .card.promotions-card .col-12:last-child .promotion-box-left-img {
        margin-bottom: 0px;
    }

    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .right {padding-left: 10px;padding-right: 90px;}

    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .left img {
        max-width: 130px;
    }

    .promotion-box-left-img h3 {
        font-size: 20px;
    }

    .b-highlight-box span {
        font-size: 14px;
        line-height: normal !important;
    }
    .business-profile-right-panel-wrap .card .card-header a.view_more {
        padding: 2px 0;
        font-size: 14px;
    }

    .rating-overview-section .rating-overview-section-head {
        font-size: 18px;
    }

    .write-review-wrap {
        gap: 10px;
        margin-bottom: 25px;
    }

    .write-review-wrap .right .write-review-link a {
        font-size: 14px;
    }

    .b-profile-user-review-head .b-profile-user-review-head-info .b-profile-reveiew-user-thumb {
        max-width: 60px;
    }

    .b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info h3 {
        font-size: 14px;
        line-height: normal;
    }

    .b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info p {
        font-size: 12px;
        line-height: normal;
        margin-bottom: 3px;
        margin-top: 3px;
    }

    .user-review-stars-and-review-date img {
        max-width: 70px;
    }

    .user-review-stars-and-review-date {
        align-items: end;
    }

    .user-review-stars-and-review-date span {
        font-size: 14px;
    }

    .b-profile-user-review-content {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .b-profile-user-review-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .b-profile-user-review-footer .left .user-review-votes-wrap .fa {
        font-size: 18px;
    }

    .b-profile-user-review-footer .left .user-review-votes-wrap a span.count {
        font-size: 13px;
    }

    .b-profile-user-review-footer .right a span {
        font-size: 12px;
    }

    .b-profile-user-review-footer .right a img {
        max-width: 33px;
    }

    .b-profile-user-review-wrap {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .has-reply .b-profile-owner-reply-wrap {
        max-width: 100%;
        margin-left: 0px;
        margin-top: 15px;
    }

    .search-results-pagination {
        margin-bottom: 0px;
        justify-content: center !important;
    }

    /*.card.b-address-hours-card .col-12.px-2 {
        padding: 0 15px !important;
    }*/

    .card.b-address-hours-card  .b-address-hours-card-map {
        margin-bottom: 13px;
    }

    .card.about-b-card .about-b-info-wrap p {
        font-size: 14px;
        line-height: 24px;
    }

    .b-profile-faqs-item-wrap .left {
        display: none;
    }

    .b-profile-faqs-item-wrap {
        padding: 15px;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-name {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question .question {
        font-size: 16px;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question .answer {
        font-size: 14px;
        line-height: normal;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-question {
        margin-bottom: 15px;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-answered-info .name {
        font-size: 13px;
    }

    .b-profile-faqs-item-wrap .b-profile-faqs-item-content-wrap .b-profile-faq-user-answered-info p {
        font-size: 13px;
    }

    .card.reviews-card nav {
        margin: -10px 0 3px;
    }

    .card.amenities-card .b-profile-service-box {
        text-align: center;
    }

    .card.amenities-card .b-profile-service-box {
        font-size: 14px;
        font-weight: 500;
        line-height: normal;
    }
    .b-profile-user-review-head .b-profile-user-review-head-info .b-profile-review-user-info ul li span {
        font-size: 12px;
    }
}


@media screen and (max-width: 495.98px){
    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .right {
        padding-right: 10px;
    }
    .card-with-left-img.sale-box .right {
        padding-top: 5px;
    }
}


@media screen and (max-width: 440.98px){
    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .right {
        padding-right: 10px;
    }

    .card.portfolio-card .col-4.px-2 {
        padding: 0px 2px !important;
    }

    .card.portfolio-card .b-profile-portfolio-box {
        margin-bottom: 8px;
    }

    .business-profile-right-panel-wrap .card.reviews-card .card-header {
        flex-direction: column;
        align-items: baseline;
        gap: 7px;
    }
    .rating-overview-section .review-wrapper .single-progress-bar .rating-text {
        font-size: 14px;
        min-width: 28px;
    }

    .rating-overview-section .review-wrapper .rating-text .fa-star {
        font-size: 13px;
        top: 5px;
    }

    .rating-overview-section .review-wrapper .single-progress-bar span.rating-value {
        font-size: 14px;
    }
    .b-profile-user-review-head .b-profile-user-review-head-info {
        gap: 7px;
    }
    .card.reviews-card.faqs-card .card-header {
        flex-direction: row;
    }
}



@media screen and (max-width: 390.98px){
    .card.reviews-card.faqs-card .card-header {
        flex-direction: row;
    }

    .promotion-box-left-img h3 {
        font-size: 18px;
    }

    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .right {
        padding: 0;
    }

    .business-profile-right-panel-wrap .card.promotions-card .promotion-box-left-img .left img {
        max-width: 110px;
    }
}


@media screen and (max-width: 600.98px){
    .business-profile-right-panel-wrap .card .card-header{
        font-size: 20px;
    }
    .business-profile-right-panel-wrap .card:not(:last-child) {
        border-bottom: 1px solid #D0D1D1;
        border-radius: 0px !important;
    }
    a.show_more_link {
        font-size: 14px;
        font-weight: 600;
        color: #32373F !important;
        line-height: 20px;
    }
    .card.about-b-card .card-body {
        padding-top: 0px;
    }
    .b-address-hours-info-wrap{
        padding-right: 0px !important;
    }
    .b-address-hours-info-wrap ul li span:nth-child(2) {
        text-align: right;
    }
    .business-profile-right-panel-wrap .card .card-header a {
        font-size: 13px;
        text-decoration: underline;
    }

    .business-profile-right-panel-wrap .card .card-header a span {
        font-size: 12px;
    }
    .business-profile-right-panel-wrap .card .card-body{
        padding-top: 5px;
    }
}

@media screen and (max-width: 470.98px){
    .mobile-gallery-overview .b-profile-portfolio-box a span{
        font-size: 14px;
    }
    .b-address-hours-wrap {
        min-width: 100%;
    }
    .b-address-hours-info-wrap ul li span:nth-child(2), .b-address-hours-info-wrap ul li span:nth-child(1) {
        width: 55%;
    }
    .b-address-hours-info-wrap ul li span:nth-child(1) {
        width: 30%;
    }
}


@media screen and (max-width: 1550.98px){
    .main-panel {
        margin-right: -15px;
    }
}

@media screen and (max-width: 1366.98px){
    .listing-result-box .listing-result-box-right .call_to_action_btn .themebtn {
        font-size: 13px;
        padding: 8px 13px 8px 13px;
    }
}

@media screen and (max-width: 1325.98px){
    .header-search-box {
        margin: 0 -25px;
    }
    .listing-header .header-search-box .top_search_terms a {
        font-size: 13px;
        padding: 3px 9px;
    }

    .listing-header .header-search-box .top_search_terms a img {
        max-width: 13px;
        margin-right: 2px;
    }
}

@media screen and (max-width: 1280.98px){
    .result-info-head h2{
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    ul.result_info_list li{
        font-size: 13px;
    }
    .result_tags span{
        font-size: 12px;
    }
    .result_tags span:not(:last-child) {
        margin-right: 4px;
    }
}

@media screen and (max-width: 1199.98px){
    .result_tags,.result_offers{
        display: none;
    }
}

@media screen and (max-width: 1025.98px){
    .header-search-box {
        margin-right: -100px;
    }
}

@media screen and (max-width: 991.98px){
    .header-search-box{
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 10px;
    }
    .topbar-search-form{
        margin-bottom: 0px;
    }
    .listing-header .form-control {
        height: 38px;
    }
    .listing-result-box {
        margin-left: -15px;
        margin-right: -15px;
    }

    .listing-result-box.featured-result {
        padding-left: 15px;
        padding-right: 15px;
    }
    .main-top:before {
        width: calc(100% + 30px);
        height: calc(100% + 20px);
        top: -8px;
        left: -15px;
    }
}

@media screen and (max-width: 575.98px){
    .listing-result-box .listing-result-box-right .call_to_action_btn {
        text-align: right;
    }
    .listing-header .topbar-search-form .form-control{
        height: 38px !important;
    }
    .listing-searched-for{
        font-size: 20px;
    }
    .listing-search-result-type {
        font-size: 15px;
        font-weight: 700;
    }
    .b-highlight-box span {
        min-height: 30px;
    }
}

@media screen and (max-width: 465.98px){
    .listing-search-result-type {
        font-size: 15px;
        font-weight: 700;
    }

    .result-info-head h2 {
        font-size: 14px;
        line-height: 17px;
    }

    .result-info-head h2 span.result_type {
        display: none;
    }

    .result-info-head h2 span.verified_badge {
        display: none;
    }
    .listing-result-box .listing-result-box-left {
        max-width: 20%;
        min-width: 20%;
    }
    .listing-result-box .listing-result-box-right {
        max-width: 80%;
        min-width: 80%;
    }
    ul.result_info_list li {
        font-weight: 500;
    }

    ul.result_info_list li.spacer.small {
        height: 9px;
    }

    .result-info-description p {
        font-size: 13px;
        line-height: 19px;
    }
    .listing-result-box .listing-result-box-right .call_to_action_btn .themebtn {
        font-size: 13px;
        padding: 8px 11px 8px 11px;
    }
    .result-info-description p strong {
        display: none;
    }
    .listing-header .topbar-search-form .form-control,.listing-header .topbar-search-form .form-control::placeholder {
        font-size: 13px;
        font-weight: 600;
        opacity: 1;
        color: #32373F;
    }
    .without_side_map ul.result_info_list {
        gap: 0.2rem;
    }
    .todays_search_wrap h2 {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        text-transform: inherit;
    }

    .todays_serach_item {
        min-height: 20px;
        line-height: 20px;
    }

    .todays_search_results .todays_search_wrap {
        margin-bottom: 15px;
    }
    .listing-searched-for {
        padding: 0;
    }
    div#big_map.mapouter {
        height: calc(100vh - 18rem);
        margin-top: 10px;
    }
}


a.themebtn.border {
    font-size: 14px;
    color: #018DC8 !important;
    font-weight: 600;
    line-height: normal;
    display: inline-block !important;
    background: transparent;
    padding: 8px 16px 8px 16px !important;
    border-radius: 4px !important;
    border: 1px solid #018DC8 !important;
    box-shadow: none !important;
    transition: all .3s ease;
}

a.themebtn.border:hover, a.themebtn.border:focus,a.themebtn.border:active {
    color: #fff !important;
    background: #018DC8 !important;
    transition: all .3s ease;
}

@media screen and (max-width: 1465px){
    #fh5co-header-section .review-link a {
        margin: 0 !important;
        margin-right: -10px !important;
    }
}

@media screen and (max-width: 1395px) {
    #fh5co-header-section nav ul li {
        margin-right: 10px;
    }
}

@media screen and (max-width: 1366px) {
    div#fh5co-header-section.listing-header .header-search-box {
        margin-left: -60px;
        margin-right: 30px;
    }
    div#fh5co-header-section.listing-header .navbar-container {
        margin-left: -30px;
    }
    .b-address-hours-card-map .address-field span:first-child {
        display: flex;
        align-items: flex-start;
        line-height: normal;
    }

    .b-address-hours-card-map .address-field img {
        top: 3px;
    }
    .b-highlight-box.b-profile-service-box span {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .b-highlight-box.b-profile-service-box img {
        top: 1px;
        margin-right: 7px;
    }
    .card.services-card .b-highlight-box.b-profile-service-box {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 1280px){
    .business_profile_basic_info .profile_hours span{
        font-size: 13px;
    }
    .business_profile_basic_info .profile_hours {
        margin-top: 8px;
    }
    .business_profile_basic_info .profile_hours span.verified_badge img {
        max-width: 80px;
    }
    .business_profile_basic_info .profile_hours span.no_after a {
       font-size: 13px;
    }
}

@media screen and (max-width: 1220px){
    #fh5co-header-section nav ul li.login_btns a.login_btn, 
    #fh5co-header-section .review-link a {
        padding: 8px 9px !important;
    }
    #fh5co-header-section nav ul li a, #fh5co-header-section .review-link a {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1190px){
    div#fh5co-header-section.listing-header .header-search-box {
        margin-left: 0;
        margin-right: -100px;
    }
    div#fh5co-header-section.listing-header.business_profile_header .u-hamburger {
        top: -7px;
    }
}

@media screen and (max-width: 991.97px){
    div#fh5co-header-section.listing-header.business_profile_header .u-hamburger {
        top: 15px;
    }
    div#fh5co-header-section.listing-header .header-search-box {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 10px;
    }
}



@media screen and (max-width: 430.97px){
    .b-address-hours-card-map .address-field{
        font-size: 14px;
    }
}

@media screen and (max-width: 399px) {
    .business_profile_basic_info .profile_hours {
        margin-top: 4px;
    }
}
.card.highlights-card .b-highlight-box {
    margin-bottom: 20px;
}
.header-search-box .get-location {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-55px, -50%);
    color: #dc3545;
}

.header-search-box {
    position: relative;
}
@media screen and (max-width:575.98px){
    .topbar-search-form .form-control {
        font-size: 12px !important;
        word-spacing: -1px;
    }
    
    .header-search-box .get-location {
        font-size: 12px;
        right: -4px;
    }
}

@media screen and (max-width:575.98px){
    .header-search-box .get-location {
        right: 0;
        top: 53%;
        transform: translate(-40px, -50%);
    }
}
.result-info-head h2 span#distance {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20px;
    color: #32373F;
    text-align: left;
}
@media screen and (max-width: 719px) {
    .result-info-head h2 .mobile_partner {
        width: 22px;
        height: 14px;
    }
    .result-info-head h2 span#distance {
        font-size: 12px;
    }
    .result-info-head h2 .mobile_partner.second {
        width: 21px;
        height: 21px;
    }

    .business_profile_basic_info .result-info-head h2 svg {
        width: 35px;
        height: 24px;
    }
}
.gallery_modal .modal-content {
   width: 100%;
  border:none;
box-shadow: 0 6px 30px #a5a4a4;
}
.gallery_modal .modal-body {
   padding: 0;
}
.gallery_modal .modal-header {
    border: none;
    justify-content: space-between;
    background: #F4F4F4;
    color: #32373F;
}
.gallery_modal .modal-header .head {
    font-weight: 500;
    font-size: 20px;
}

.gallery_modal .modal-header button {
    padding: 0px;
    background: transparent !important;
    color: #000 !important;
    outline: none !important;
    box-shadow: none !important;
    /* position: absolute; */
    /* right: 8px; */
    /* top: 5px; */
    font-size: 18px;
}

.gallery_modal .modal-body {
    padding: 30px;
    display: grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery_modal {
    padding: 0 !important;
    z-index: 999999999;
}

.gallery_modal .modal-dialog {
    margin-top: 100px;
}

body.modal-open {
    padding-right: 0px !important;
}

body.modal-open .fixed-top {
    padding-right: 0px !important;
}

.gallery_modal .modal-body .card img,.gallery_modal .modal-body .card a {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 991.98px){
    .gallery_modal .modal-dialog {
        max-width: 95%;
        margin: 0 auto;
        margin-top: 45px;
    }
}


@media screen and (max-width: 600.98px){
    .gallery_modal .modal-body {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery_modal .modal-header .head {
        font-size: 18px;
    }
}

@media screen and (max-width: 460.98px){
    .gallery_modal .modal-body {
        padding: 15px;
    }
}


.searched-location-wrap {
    display: flex;
    gap: 20px;
}

.searched-location-wrap .current_location_btn {
    border: 0.5px solid rgba(50,55,63,0.20);
    border-radius: 10px;
    padding: 8px 10px;
    display: inline-flex;
    color: #32373F;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 9px;
    align-items: center;
    gap: 6px;
    height: max-content;
    margin-top: 5px;
    transition: all .3s ease;
    white-space: nowrap;
}

.searched-location-wrap .current_location_btn span {
    color: #dc3545;
    font-size: 17px;
}

.listing-searched-for {
    margin-top: 7px;
}

.searched-location-wrap .current_location_btn:hover,.searched-location-wrap .current_location_btn:focus,.searched-location-wrap .current_location_btn:active {
    transition: all .3s ease;
    border-color: #4f8bc6;
}

.searched-location-wrap .current_location_btn:hover span, .searched-location-wrap .current_location_btn:focus span, .searched-location-wrap .current_location_btn:active span {
    transition: all .3s ease;
}


@media screen and (max-width: 767.98px){
    .searched-location-wrap .current_location_btn{
        display: none;
    }
}


.search-results-pagination {
    justify-content: center;
    padding-top: 50px;
}
.search-results-pagination .page-link {
    border: none;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(18,18,18,0.50) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    min-width: inherit;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 25px !important;
    transition: all .3s ease;
    border: 1px solid #fff !important;
}

.search-results-pagination .page-item {
    margin: 0 0.5rem;
}

.search-results-pagination .page-item.active .page-link, 
.search-results-pagination .page-item .page-link:hover, 
.search-results-pagination .page-item .page-link:focus, 
.search-results-pagination .page-item .page-link:active {
    color: #32373F !important;
    border: 1px solid #4f8bc6 !important;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.10);
    transition: all .3s ease;
}


nav.pagy-nav.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.pagy-nav.pagination .page,.pagy-nav.pagination .page a {
    margin: 0 0.5rem;
    border: none;
    background: transparent !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(18, 18, 18, 0.50) !important;
    font-weight: 500 !important;
    padding: 0 !important;
    min-width: inherit;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 25px !important;
    transition: all .3s ease;
    border: 1px solid #fff !important;
    text-align: center;
    cursor: pointer;
    display: block;
}

.pagy-nav.pagination .page.active a,
.pagy-nav.pagination .page a:hover, 
.pagy-nav.pagination .page a:active, 
.pagy-nav.pagination .page a:focus,
.pagy-nav.pagination .page.active,
.pagy-nav.pagination .page:hover, 
.pagy-nav.pagination .page:active, 
.pagy-nav.pagination .page:focus {
    color: #32373F !important;
    border: 1px solid #4f8bc6 !important;
    border-radius: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10);
    transition: all .3s ease;
}

.pagy-nav.pagination .page.disabled,.pagy-nav.pagination .page.disabled a {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.pagy-nav.pagination .page.prev,.pagy-nav.pagination .page.prev a {
    text-indent: -90000px;
    position: relative;
    background: url(https://bellflower.s3.us-west-1.amazonaws.com/prev_icon.png) no-repeat center center !important;
}


.pagy-nav.pagination .page.next,.pagy-nav.pagination .page.next a {
    text-indent: -90000px;
    position: relative;
    background: url(https://bellflower.s3.us-west-1.amazonaws.com/next-icon.png) no-repeat center center !important;
}
.pagy-nav.pagination .page > a,
.pagy-nav.pagination .page > a:hover,
.pagy-nav.pagination .page > a:focus,
.pagy-nav.pagination .page > a:active {
    margin: 0;
    border: none !important;
}

.pagy-nav.pagination .page.prev, .pagy-nav.pagination .page.prev a {
    background-position: 13px 12px !important;
}

.pagy-nav.pagination .page.next, .pagy-nav.pagination .page.next a {
    background-position: 15px 12px !important;
}


@media screen and (max-width: 575.98px){

    .search-results-pagination {
        padding-top: 25px;
    }

    .search-results-pagination {
        margin-bottom: 20px;
        justify-content: center !important;
    }
}


@media screen and (max-width: 991.98px) {
    .topbar-search-form .form-control {
      height: 41px !important;
      padding: 0px 10px 0px 10px !important;
      font-size: 14px !important;
    }
}

@media screen and (max-width: 575px) {
  .topbar-search-form .form-control {
    font-size: 11px;
    height: 30px !important;
  }
  .topbar-search-form .form-contro::placeholder {
    color: #272727;
  }
  .topbar-search-form .search-icon {
    padding: 7px 11px;
  }
  .topbar-search-form .search-icon img {
    max-width: 20px;
  }
  /*.topbar-search-form .input-group .form-control {
       padding: 3px 0 0;
   }*/
  .topbar-search-form {
    margin-bottom: 9px;
  }

}
@media screen and (max-width: 575.98px) {
  .topbar-search-form .input-divider {
    max-width: 45%;
    min-width: 45%;
  }
  .topbar-search-form .input-group {
    min-width: 55%;
    max-width: 55%;
  }
}

@media screen and (max-width: 465.98px) {
    .listing-header .topbar-search-form .form-control, 
    .listing-header .topbar-search-form .form-control::placeholder {
        font-size: 13px;
        font-weight: 400;
        opacity: 1;
        color: #32373F;
    }
}
.business_profile_basic_info .business_profile_basic_info_left img{
  max-width: 131px;
  max-height: 131px;
  min-height: 131px;
  border-radius: 100%;
  object-fit: contain;
}
.listing-searched-for p{
  color: #7B7B7B;
  font-size: 15px;
  font-weight: 500;
  line-height: 18.29px;
  text-align: left;
  margin-top: 8px;
  margin-bottom: 5px;
}

.b-highlights-box-wrap {
    grid-template-columns: repeat(8, 1fr);
    display: grid;
    column-gap: 10px;
}
@media screen and (max-width:1280.98px){
    .b-highlights-box-wrap {
        grid-template-columns: repeat(7, 1fr);
    }
}
@media screen and (max-width:1170.98px){
    .b-highlights-box-wrap {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media screen and (max-width:1070.98px){
    .b-highlights-box-wrap {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width:767.98px){
    .b-highlights-box-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlights-card .b-highlight-box img {
    height: 40px;
    object-fit: scale-down;
}

@media screen and (max-width:767.98px) {   
    .card.highlights-card .hide_on_mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .card.highlights-card .my-col:not(.hide_on_mobile) {
        max-height: 1000px; /* Adjust this value to the maximum height the content could have */
        overflow: visible;
        transition: max-height .3s ease;
    }   
}
.result-info-head .status.open {
  color:#007640;
  font-weight: 600;
}
.result-info-head .status.closed {
  color:#dc3545;
  font-weight: 600;
}
.business_profile_basic_info .profile_hours span.status.open {
    color: #007640;
}
.business_profile_basic_info .profile_hours span.status.closed {
    color: #dc3545;
}
.b-address-hours-info-wrap ul li span.status.open {
    color: #007640;
}
.b-address-hours-info-wrap ul li span.status.closed {
    color: #dc3545;
}
.b-address-hours-info-wrap  .b-status-now.border.open {
    background: transparent;
    border: 1px solid #007640 !important;
    color: #007640;
}

.b-address-hours-info-wrap .b-status-now.border.closed {
    background: transparent;
    border: 1px solid #dc3545 !important;
    color: #dc3545;
}



.form-wizard {
            padding: 0px;
            padding-right: 15px;
            padding-left: 15px;
        }
        .form-wizard .wizard-form-radio {
          display: block;
          position: relative;
          margin-bottom: 2px;
        }

        .form-wizard .wizard-form-radio input[type="radio"] {
            -webkit-appearance: none;
            -moz-appearance: none;
            -ms-appearance: none;
            -o-appearance: none;
            appearance: none;
            background-color: #FFFFFF;
            height: 18px;
            width: 18px;
            display: inline-block;
            vertical-align: middle;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            border: 1px solid rgba(54,54,54,0.42);
        }
        .form-wizard .wizard-form-radio input[type="radio"]:focus {
          outline: 0;
        }
        .form-wizard .wizard-form-radio input[type="radio"]:checked {
            background-color: #018DC8;
            border-color: #018DC8 !important;
        }
        .form-wizard .wizard-form-radio input[type="radio"]:checked::before {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            display: inline-block;
            background-color: #ffffff;
            border-radius: 50%;
            left: 0px;
            right: 0;
            margin: 0 auto;
            top: 2px;
        }
        .form-wizard .wizard-form-radio input[type="radio"]:checked::after {
          content: "";
          display: inline-block;
          /*webkit-animation: click-radio-wave 0.65s;
          -moz-animation: click-radio-wave 0.65s;
          animation: click-radio-wave 0.65s;*/
          background: #000000;
          content: '';
          display: block;
          position: relative;
          z-index: 100;
          border-radius: 50%;
        }
        .form-wizard .wizard-form-radio input[type="radio"] ~ label {
            padding-left: 4px;
            cursor: pointer;
            margin-bottom: 0px;
            position: relative;
            top: 1px;
            font-size: 14px;
            font-weight: 400;
        }
        .form-wizard .form-wizard-header {
          text-align: center;
        }
        .form-wizard .wizard-fieldset {
          display: none;
        }
        .form-wizard .wizard-fieldset.show {
          display: block;
        }
        .form-wizard .wizard-form-error {
          display: none;
          background-color: #d70b0b;
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          height: 2px;
          width: 100%;
        }
        .form-wizard .form-wizard-previous-btn {
          background-color: #fb1647;
        }
        .form-wizard .form-wizard-steps {
          margin: 10px 0 30px 0;
        }
        .form-wizard .form-wizard-steps li {
          width: 49.333333333%;
          float: left;
          position: relative;
        }
        .form-wizard .form-wizard-steps li::after {
            background-color: #EFEFEF;
            content: "";
            height: 3px;
            left: 50%;
            position: absolute;
            right: 0;
            top: 24px;
            width: 100%;
            border-bottom: 1px solid #EFEFEF;
            border-top: 1px solid #EFEFEF;
        }
        .form-wizard .form-wizard-steps li span.step_number {
            background-color: #EFEFEF;
            border-radius: 50%;
            display: inline-block;
            height: 50px;
            line-height: 50px;
            position: relative;
            text-align: center;
            width: 50px;
            z-index: 1;
            border: 5px solid #ffffff;
        }
        .form-wizard .form-wizard-steps li span.step_number span {
            width: 30px;
            height: 30px;
            line-height: 30px;
            background: #fff;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
        }
        .form-wizard .form-wizard-steps li:last-child::after {
          width: 50%;
        }
        .form-wizard .form-wizard-steps li.active span.step_number, .form-wizard .form-wizard-steps li.activated span.step_number {
          background-color: #018DC8;
          color: #ffffff;
        }

        .form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
          left: 50%;
          width: 100%;
        }
        .form-wizard .form-wizard-steps li.activated::after {
        background-color: #018DC8;
          width: 100%;
          border-color: #018DC8;
        }
        .form-wizard .form-wizard-steps li:last-child::after {
          left: 0;
          display: none;
        }

        .form-wizard .form-wizard-steps li span.step_no {
            display: block;
            line-height: normal;
            color: rgba(62,69,79,0.75);
            font-size: 13px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 2px;
            margin-top: -5px;
        }
        .form-wizard .form-wizard-steps li p {
            color: #656A72;
            font-size: 14px;
            line-height: 19px;
            font-weight: 500;
            margin-bottom: 3px;
        }

        .form-wizard .form-wizard-steps li  span.step_status {
            color: rgba(50,55,63,0.50);
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            line-height: normal;
            display: block;
            font-weight: 400;
        }

        .form-wizard .form-wizard-steps li.active  span.step_status, .form-wizard .form-wizard-steps li.activated  span.step_status {
            color: #018DC8;
        }

        .modal_form_wrap .wizard-fieldset-head {
            font-size: 20px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: #656A72;
            line-height: 20px;
            margin-bottom: 10px;
        }

        .form-wizard .form-wizard-steps li.activated span.step_number span {
            background: transparent;
            color: #fff;
        }

        .form-wizard .wizard-password-eye {
          position: absolute;
          right: 32px;
          top: 50%;
          transform: translateY(-50%);
          cursor: pointer;
        }
        @keyframes click-radio-wave {
          0% {
            width: 25px;
            height: 25px;
            opacity: 0.35;
            position: relative;
          }
          100% {
            width: 60px;
            height: 60px;
            margin-left: -15px;
            margin-top: -15px;
            opacity: 0.0;
          }
        }

        .consult_modal .form-group {
            position: relative;
        }
        .consult_modal a.form-wizard-next-btn {
            min-width: 100px;
            padding: 10px 20px;
        }

        .consult_modal .checkboxes-wrap .wizard-fieldset-head.blue {
            color: #018dc8;
            margin-top: 10px;
            position: relative;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox {
            margin-bottom: 4px;
            padding-left: 25px;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox .custom-control-label::before {
            width: 17px;
            height: 17px;
            text-align: center;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox .custom-control-label::after {
            width: 17px;
            height: 17px;
            text-align: center;
        }

        .consult_modal .checkboxes-wrap  .custom-control-input:checked ~ .custom-control-label::before {
            border-color: #018dc8;
            background-color: #018dc8;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox .custom-control-label::before,.consult_modal .checkboxes-wrap .custom-checkbox .custom-control-label::after {
            left:-24px;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox .custom-control-label {
            font-size: 15px;
            line-height: 26px;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox.with-list ul {
            padding-left: 17px;
            line-height: 22px;
            font-size: 13px;
            color: #32373F;
            font-weight: 400;
            margin-bottom: 0;
        }

        .consult_modal .checkboxes-wrap .custom-checkbox.with-list ul li {
            line-height: 22px;
            font-size: 13px;
            color: #32373F;
        }

        .consult_modal .checkboxes-wrap .wizard-fieldset-head.blue .wizard-form-error {
            position: relative;
            margin-bottom: -5px;
            height: auto;
            color: #d70b0b;
            background: transparent;
            border-top: 1px solid #d70b0b;
            font-size: 14px;
            margin-top: 5px;
        }



        fieldset.consult_form_submitted h2.wizard-fieldset-head {
            font-size: 16px;
            line-height: 18px;
            color: #656A72;
            margin-top: 20px;
        }

        .card.result_panel {
            background: rgba(245,250,253,0.30);
            border: 1px solid rgba(1,141,200,0.33);
        }

        .card.result_panel p:last-child {
            margin: 0;
        }

        .card.result_panel .card-body {
            padding: 15px;
        }

        .card.result_panel p {
            font-size: 14px;
            line-height: 20px;
            color: #656A72;
            margin-bottom: 2px;
        }

        .card.result_panel p strong {
            font-weight: 500;
        }

        .card.result_panel p:not(.not-grid) {
            display: grid;
            grid-template-columns: 160px 1fr;
        }

        .card.consultation_services_panel .card-body {
            display: grid;
            grid-template-columns: 160px 1fr;
            row-gap: 5px;
        }

        .card.consultation_services_panel .card-body ul {
            padding: 0px 0px 0px 20px;
            margin-bottom: 0;
        }

        .card.consultation_services_panel .card-body ul li {
            color: #656A72;
            font-size: 14px;
            line-height: 22px;
        }

        .card.consultation_services_panel .card-body ul li::marker {
            color: #018DC8;
        }

        .consult_modal .form-wizard .row {
            margin: 0;
        }

        .consult_modal .form-group.form-group-inline {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: center;
        }

        .consult_modal .confirm_btn {
            font-size: 14px !important;
            border-radius: 2px;
            padding: 10px 15px;
            box-shadow: none !important;
            background: #018DC8 !important;
            border-color: #018DC8 !important;
            color: #fff !important;
            outline: none !important;!i;!;
            border: none;
            min-width: 150px;
            font-weight: 600;
            border-radius: 5px;
            transition: all .3s ease;
        }

        .consult_modal .confirm_btn:hover {
            transform: translateY(-3px);
            transition: all .3s ease;
        }


        .claim_your_listing_modal a.form-wizard-next-btn, .claim_your_listing_modal .sub-btn {
            width: 100%;
            border-radius: 5px;
        }



        .claim_your_listing_modal .form-group.form-group-inline.otp_group {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 5px;
        }

       .claim_your_listing_modal  .form-group.form-group-inline.otp_group *:not(:first-child) {
            flex: 1;
        }

       .claim_your_listing_modal  .form-group.form-group-inline.otp_group *:first-child {
            width: 100%;
        }

       .claim_your_listing_modal  .form-group.form-group-inline.otp_group *:last-child {
            max-width: 150px;
        }



        @media screen and (max-width: 991.98px){
            .book_modal .modal-dialog.modal-xl {
                margin: 1.75rem 10px;
            }
        }

        @media screen and (max-width: 575.98px){
            .form-wizard .form-wizard-steps li p {
                display: none;
            }

            .form-wizard .form-wizard-steps li span.step_number {
                height: 40px;
                line-height: 40px;
                width: 40px;
            }

            .form-wizard .form-wizard-steps li span.step_number span {
                width: 20px;
                height: 20px;
                line-height: 20px;
                font-size: 12px;
            }

            .form-wizard .form-wizard-steps li::after {
                top: 19px;
            }

            .form-wizard .form-wizard-steps {
                margin: 10px 0 20px;
            }

            .modal_form_wrap .wizard-fieldset-head {
                font-size: 16px;
            }

            .form-wizard .wizard-fieldset *:not(.wizard-fieldset-head) {
                font-size: 14px;
                line-height: 26px;
            }
            .card.result_panel p:not(.not-grid) {grid-template-columns: 1fr;margin-bottom: 5px;}

            .card.result_panel p:not(.not-grid) span {
                font-weight: 400;
            }

            .card.consultation_services_panel .card-body {
                grid-template-columns: 1fr;
            }
            .submitted_success img {
                max-width: 110px;
            }

            .submitted_success  h2.wizard-fieldset-head {
                margin-top: 10px !important;
                margin-bottom: 5px !important;
            }
            div.consult_modal {
                padding-right: 0px !important;
            }
        }


.consult_modal .head_logo {
    max-width: 174px;
    margin: 20px;
}

.consult_modal .modal_form_wrap {
    padding-top: 0px;
    padding-right: 0px;
    padding: 0;
}

@media (min-width: 576px) {
    .medium_modal .modal-dialog {
        max-width: 650px;
    }
}


.bootstrap-datetimepicker-widget table th {
  padding: 5px;
}

.bootstrap-datetimepicker-widget table td {
  padding: 5px;
}

.bootstrap-datetimepicker-widget a[data-action] {
  background: transparent !important;
}

.bootstrap-datetimepicker-widget a[data-action] span {
  color: #121212 !important;
}

.fa-clock-o:before {
    content: "\f017";
}

.book_modal .input-date input.form-control {
  background: url(https://digimedspa.s3.us-west-1.amazonaws.com/schedule_popup_form_icon1.png) no-repeat center left;
  background-size: auto;
  background-position-x: 10px;
  background-position-y: 49%;
  padding-left: 35px;
}

.book_modal .input-time input.form-control {
  background: url(https://digimedspa.s3.us-west-1.amazonaws.com/schedule_popup_form_icon2.png) no-repeat center left;
  background-size: auto;
  background-position-x: 10px;
  background-position-y: 49%;
  padding-left: 35px;
}
.consult_modal .form-control{
    border-color: rgba(2, 154, 188, 0.33) !important;
    box-shadow: 0px 16px 32px -8px rgba(209, 240, 255, 0.29);

}

.consult_modal .form-group.form-group-inline.radio-group {
    justify-content: left;
    gap: 25px;
    flex-wrap: wrap;
}

.consult_modal .form-group.form-group-inline.radio-group label {
    margin: 0;
    margin-left: 10px;
}

@media screen and (max-width:570px){
    .consult_modal .form-group.form-group-inline.radio-group {
        justify-content: left;
        gap: 15px;
    }
}
#flash-messages {
  background-color: yellow; /* For visibility */
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 80%;
}

.alert {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

.alert-success {
  background-color: #4CAF50;
  color: white;
}

.alert-danger {
  background-color: #f44336;
  color: white;
}



#captcha {
    border-top: 5px solid #F64747;
    background-color: #FFF;
    height: 100vh;
    min-height: 960px;
    max-width: 980px;
    margin: 0 auto;
}

#captcha .title {
    text-align: center;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    padding: 30px 0;
}

#captcha .captcha-from {
    max-width: 70%;
    margin: 0 auto;
}

#captcha .captcha-from label{
    font-weight: normal;
}

#captcha .form-control{
    border-radius: 0;
}
#captcha .input-group-addon {
    border-top-left-radius: 0 ;
    border-bottom-left-radius: 0;
}

#captcha .captcha-group div{
    display: inline-block;
}

#captcha .captcha-code .code{
    width: 200px;
    height: 80px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    border: 1px solid #CCC;
}

#captcha .captcha-code .code .dynamic-code{
    text-shadow: 4px 4px 5px rgba(150, 150, 150, 1);
    color: #2d2d2;
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently */
    cursor: help;
}

#captcha .captcha-code .code .dynamic-code:first-letter{
    font-size: 48px;
}

#captcha .captcha-code .captcha-reload{
    cursor: pointer;
    font-size: 36px;
    font-weight: bold;
    margin-top: 0;
    max-width: 36px;
}

#captcha .captcha-code .captcha-reload:hover{
    color: #00B16A;
}

#captcha #captcha-input{
    max-width: 200px;
    margin-top: 15px;
}

#captcha .btn{
    border-radius:0;
}

.captcha-code .dynamic-code {
    background: #bbbbbb;
    display: inline-block;
    padding: 7px 25px;
    color: #000;
    font-weight: 500;
    letter-spacing: 5px;
    margin-bottom: 2px;
    pointer-events: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.consult_modal .resend_email_btn {
    font-size: 14px;
    color: #4f8bc6;
    font-weight: 500;
}

.consult_modal .resend_email_btn:hover {
    text-decoration: underline;
}

.info-card-left-panel ul li > img {
    width: 18px;
    object-fit: scale-down;
}

.info-card-left-panel ul li > a.link-color{
    color: #018DC8 !important;
    font-weight: 500 !important;
}

.organic-count-tooltip {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.leaflet-tooltip {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    opacity: 1 !important;
}

.leaflet-tooltip:before {
    display: none !important;
}


.container-toltip  {
    border: 2px solid #008080;
    padding: 2px;
    margin: 20px;
    border-radius: 10px;
    min-width: 220px;
    max-width: 220px;
    background: #008080;
    position: relative;
}
.container-toltip:before {
    border-width: 16px;
    border-style: solid;
    border-color: #008080 transparent transparent;
    border-image: initial;
    inset: 99% auto auto 85%;
    content: " ";
    display: block;
    height: 0px;
    margin: auto auto auto -7px;
    position: absolute;
    width: 0px;
}
.container-toltip *{color:#fff !important;}

.container-toltip.organic{
    border-color: #FF0004;
    background: #FF0004;
}
.container-toltip.organic:before {
    border-color: #FF0004  transparent transparent !important;
}

    .container-toltip  .image {
        width: 100%;
        height: auto;
        border-radius: 10px;
        border: 0px solid;    
        background: #fff;
        height: 105px;
        object-fit: cover;
        overflow-clip-margin: unset;
        border-radius: 4px;
    }


    .container-toltip .info {
        padding: 8px;
        padding-bottom: 0px;
    }


    .container-toltip .sponsored {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.0px;
        line-height: 16px;
        color: rgba(107, 109, 111, 1) !important;
        text-align: left;
    }


   .container-toltip  .name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 3px;
        text-align: left;
        line-height: normal;
        white-space: normal;
   }


    .container-toltip .rating {

      display: flex;

      align-items: center;

    }


    .container-toltip .stars {

      margin-right: 5px;

    }


   .container-toltip  .reviews {

      font-size: 14px;

      color: #666666;

    }


    .container-toltip .services {font-size: 16px;margin-top: 0px;font-size: 13px;margin-bottom: 0px;}


    .custom-div-icon {
        background: transparent;
        border: none;
    }
    /*img.leaflet-marker-icon {
        width: 28px !important;
        height: 39px;
    }*/
    .map-marker-sponsored{
        position: relative;
        width: 27px;
        height: 39px;
        background: url('/assets/map_star_icon_new.png') no-repeat center center; /* Replace with your organic icon path */
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 12px;
        background-size: contain;
        line-height: 32px;
    }
    .map-marker-sponsored:hover, .marker-active .map-marker-sponsored{
        background: url('/assets/map_star_icon_hover_new.png') no-repeat center center;; /* Replace with your hover icon path */
        background-size: contain;
    }
    .map-marker-numbered {
        position: relative;
        width: 27px;
        height: 39px;
        background: url('/assets/map_organi_icon_new.png') no-repeat center center; /* Replace with your organic icon path */
        text-align: center;
        color: white;
        font-weight: bold;
        font-size: 12px;
        background-size: contain;
        line-height: 32px;
    }
  
    .map-marker-numbered:hover, .marker-active .map-marker-numbered {
        background: url('/assets/map_organi_icon_hover_new.png') no-repeat center center;; /* Replace with your hover icon path */
        background-size: contain;
        color: red;
    }



    .topbar-search-form .input-group .location_search {
        height: 85%;
        margin: auto;
        margin-left: 1px;
    }

    @media screen and (min-width: 767.99px) {
      .topbar-search-form .form-control {
        padding-left: 15px !important;
      }
    }

    @media screen and (max-width: 767.98px) {
      .topbar-search-form .form-control {
        padding-left: 10px !important;
      }
    }


    .listing-header .topbar-search-form .form-control {
        font-size: 14px;
    }

    .show_phone_in_modal p {
        font-size: 25px;
        margin: 10px 0px 30px;
        color: #4f8bc6;
        font-weight: 500;
    }

    .hours-row .col-12 {
        height: inherit;
    }

    
    .select2-container {
        z-index: 9999999999;
    }
    
    .select2-container--default .select2-selection {
        border-color: rgba(2, 154, 188, 0.33) !important;
        box-shadow: 0px 16px 32px -8px rgba(209, 240, 255, 0.29);
    }

    .consult_modal .form-group input:not([type="radio"]), .consult_modal .form-group textarea {
        height: 40px !important;
    }
    .form-group.custom-radio-group .wizard-form-radio {
        display: flex;
        align-items: center;
    }
    
    .select2-container--default .select2-search--inline .select2-search__field {
        margin: 0 !important;
        height: 33px !important;
        padding: 8px 15px !important;
        font-size: 14px !important;
    }
    
    .select2-container .select2-selection--multiple .select2-selection__rendered * {
        font-size: 13px !important;
    }
    
    .select2-results ul li {
        font-size: 14px;
        line-height: 26px;
    }
    .consult_modal .fields-wrapper h2 {
        font-size: 20px;
        display: inline-flex;
        background: #018DC8;
        color: #fff;
        padding: 5px 15px;
        line-height: normal;
        position: relative;
        top: -18px;
        margin-bottom: -10px !important;
        border-radius: 4px;
    }
    
    .consult_modal .fields-wrapper {
        border: 1px solid rgba(2, 154, 188, 0.33);
        border-radius: 10px;
        margin: 10px 0 25px !important;
    }
    .consult_modal .form-group.day-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 24px 0 15px;
    }
    .consult_modal .form-group textarea.no-height{
        height: auto !important;
    }
    @media screen and (max-width:991.98px){
        .consult_modal .form-group.day-wrap {
            justify-content: flex-start;
            gap: 15px;
            margin: 0px 0 0px;
        }
    }

    div#get_add_business_modal {
        overflow-y: hidden;
    }
    
    div#get_add_business_modal .modal-dialog {
        height: calc(100vh - 50px);
        overflow: hidden;
    }
    
    div#get_add_business_modal .modal-dialog .modal-content {
        overflow-y: scroll;
        overflow-x: hidden;
        height: 100%;
    }

    .claimed-tag {
        display: inline-flex;
        align-items: center;
        position: relative;
        margin-right: 11px;
    }

    .claimed-tag:after {
        content: '';
        width: 3px;
        height: 3px;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        background-color: #000;
        position: absolute;
        right: -9px;
        top: 44%;
    }

    .claimed-icon {
        color: #00a3da;
        margin-right: 5px;
    }

    .claimed-text {
        font-size: 15px;
        font-weight: 600;
        color: #5ca0d8;
    }

    @media screen and (max-width: 575.98px) {
         .claimed-text {
            font-size: 14px;
         }
    }


div#precise_loc_modal{
    background-color: rgba(0, 0, 0, 0.5);
}

div#precise_loc_modal .modal-dialog {
    max-width: 400px;
}

div#precise_loc_modal .modal-dialog .modal-content .modal-header, 
div#precise_loc_modal .modal-dialog .modal-content .modal-footer,
div#precise_loc_modal .modal-dialog .modal-content .modal-body {
    border: none;
    text-align: center;
    padding: 13px;
}

div#precise_loc_modal .modal-dialog .modal-content .modal-body {
}

div#precise_loc_modal .modal-dialog .modal-content .modal-body .searched-location-wrap {
    justify-content: center;
}

div#precise_loc_modal .modal-dialog .modal-content  .modal-header .modal-title {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin-top: 5px;
    color: #212121;
}

div#precise_loc_modal .modal-dialog .modal-content .modal-header .close {
    padding: 10px;
}

div#precise_loc_modal .modal-dialog .modal-content  .modal-footer {
    padding-top: 10px;
    padding-bottom: 5px;
}

div#precise_loc_modal .modal-dialog .modal-content .modal-footer .btn-text {
    background: transparent !important;
    outline: none;
    box-shadow: none;
    text-transform: capitalize;
    letter-spacing: 0px;
    font-size: 14px;
    padding: 0;
    text-decoration: underline;
    color: #363636 !important;
}

div#precise_loc_modal .modal-dialog .modal-content a.current_location_btn {
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
    border-color: #018dc8;
    color: #018dc8;
}

div#precise_loc_modal .modal-dialog .modal-content a.current_location_btn span {
    color: #dc3545;
}

div#precise_loc_modal .modal-dialog .modal-content a.current_location_btn:hover, div#precise_loc_modal .modal-dialog .modal-content a.current_location_btn:focus {
    background: #018dc8;
    color: #fff;
}

@media screen and (max-width:575.98px){
    div#precise_loc_modal .modal-dialog {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    div#precise_loc_modal .modal-dialog .modal-content .modal-header .modal-title {
        font-size: 20px;
    }
}

ul.result_info_list li i {
    font-size: 13px;
    margin-right: 2px;
    position: relative;
    top: -1px;
}

.result-info-head h2 span#distance i {
    font-size: 13px;
    margin-right: 1px;
    color: #dc3545;

}
.result-info-description p i {
    font-size: 13px;
    margin-right: 1px;
}



@media screen and (max-width: 767.98px){
    div#precise_loc_modal .modal-dialog a.current_location_btn {
        display: block;
        margin: 0;
    }
}

@media screen and (max-width: 575.98px){
    .listing-result-box{
        flex-wrap: wrap;
    }
    .without_side_map .result_tags span {
        background-color: rgba(240, 240, 240, 1);
    }
    .listing-result-box-bottom .result-info-description p {
        gap: 5px;
    }

    .listing-result-box-bottom .result-info-description p i {
        position: relative;
        top: 1px;
    }

    .listing-result-box-bottom .result_tags {
        margin-top: 0px;
    }

    .listing-result-box-bottom {
        margin-top: 5px;
    }
    ul.result_info_list li i, .result-info-head h2 span#distance i, .result-info-description p i{
        font-size: 11px;
    }
    .result-info-head h2 {
        margin-bottom: 5px;
        gap: 2px;
        align-items: baseline;
        line-height: normal;
    }
    .listing-result-featured-img , .listing-result-featured-img * {
        height: 100%;
    }

    .listing-result-featured-img img {
        object-fit: cover;
        object-position: center center;
    }
    .result-info-head h2 span.result_type{
        display: inline-block;
        padding-right: 12px;
        font-size: 12px;
        line-height: normal;
    }
    .result-info-head h2 span.result_type:before {
        width: 4px;
        height: 4px;
    }
    .result-info-head h2 a {
        display: block;
        width: 100%;
    }

    .result-info-head h2 a span#distance {
        float: right;
    }
    .without_side_map .result_tags span{
        margin-bottom: 0px;
    }
    .result-info-description p .read-more {
        color: #008DC7 !important;
        font-weight: 600;
    }
    .without_side_map .listing-result-box-right .result-info-description {
        margin-top: -1px;
    }
}

.result-info-description p .read-more {
    color: #008DC7 !important;
    font-weight: 600;
}

footer .container-fluid.extended {
    max-width: 1800px;
}

#gtco-footer .gtco-widget .widget-head{
        padding-left: 0px;
}
#gtco-footer .gtco-widget ul.quick-links {
    padding-left: 0px;
}
@media screen and (min-width: 575.99px) {
    #gtco-footer .gtco-widget .widget-head {
        margin-bottom: 25px;
    }
}
#gtco-footer .gtco-widget .widget-head:before {
  display: none;
}

.black-caption + p, .paragraph, p, .list-bg-img, #gtco-footer .gtco-widget ul.quick-links li a, .footer-links a, .contact_info_footer ul li, .contact_info_footer ul li a, .media.phone-link.text-white a, .media.phone-link.text-white p.text-white, .why-lawsuit-box ul li, .what-ada-content-wrap ol li, .what-ada-content-wrap ul li, .five_steps_content_wrap ul li, .ada-featured-profile-boxes .profile-box span.profile_text {
    font-weight: 500 !important;
}
#gtco-footer .gtco-widget ul.quick-links li a {
    color: #121212;
}
footer#gtco-footer hr {
    border-color: #008DC7 !important;
    border-width: 1px;
}
 .result_tags span {
        background-color: rgba(240, 240, 240, 1);
    }



@media (min-width: 992px) {
    .b-profile-left-panel-wrap {
        position: -webkit-sticky;
        position: sticky;
        top: 6.2rem;
        right: 0;
        z-index: 2;
        overflow-y: auto;
    }
}


.buttons-group.cta-btns-profile {gap: 5px;row-gap: 3px;margin-top: 8px;max-width: 390px;min-width: 350px;}

.buttons-group.cta-btns-profile .themebtn {
    width: 49.2%;
    min-width: auto;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 10px 15px 10px 15px;
    border-radius: 4px;
}

ul.b-profile-info-box1 {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 6px;
}

ul.b-profile-info-box1 li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #32373F !important;
    line-height: normal;
}

ul.b-profile-info-box1 li img {
    max-width: 13px;
    object-fit: contain;
}

ul.b-profile-info-box1 li:first-child {
    margin-bottom: 6px;
}

ul.b-profile-info-box1 li a {
    color: #018DC8 !important;
    font-weight: 500 !important;
}

ul.b-profile-info-box1 li a:hover,ul.b-profile-info-box1 li a:focus,ul.b-profile-info-box1 li a:active {
    color: #018DC8 !important;
}

ul.b-profile-info-box1 li a.see_hourss {
    font-size: 12px;
    border: 1px solid #018DC8;
    border-radius: 3px;
    padding: 2px 4px;
    color: #018DC8;
    display: inline-block;
    position: relative;
    top: 0;
    font-weight: 600;
    transition: all .3s ease;
    border: 1px solid #018DC8;
    color: #018DC8;
    font-weight: 600;
    margin-left: 2px;
}

ul.b-profile-info-box1 li a.see_hourss i {
    color: #dc3545;
}

ul.b-profile-info-box1 li a.see_hourss:hover {
    background: #018DC8;
    color: #fff !important;
    transition: all .3s ease;
}

@media (max-width: 575.98px){
    .buttons-group.cta-btns-profile .themebtn{
        font-size: 12px;
        padding: 9px 10px 9px 10px;
    }
    .buttons-group.cta-btns-profile {
        margin-top: 10px;
    }
    ul.b-profile-info-box1 li {
        font-size: 13px;
    }
    .business_profile_banner {
        padding-bottom: 0px;
    }
    .b-highlight-box img {
        max-width: 35px;
        max-height: 28px;
    }
}


@media screen and (max-width:767.98px) {   
    .card.services-card .hide_on_mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .card.services-card .my-col:not(.hide_on_mobile) {
        max-height: 1000px; /* Adjust this value to the maximum height the content could have */
        overflow: visible;
        transition: max-height .3s ease;
    }   
}

button[class*=swal2].themebtn, .view-more-btn-wrap .themebtn {
    background: #05b6a6;
    background-size: 100% 100%;
    padding: 14px 25px;
    text-align: center;
    display: inline-block;
    min-width: 240px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    box-shadow: none;
    border: none;
    transition: all .3s ease;
    background: #05b6a6;
    min-width: auto;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    min-width: auto;
    padding: 14px 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 10px 15px 10px 15px;
    border-radius: 4px;
}

button[class*=swal2].themebtn.invert,.view-more-btn-wrap .themebtn.invert {
    background: #018DC8;
    background-size: 100% 100%;
    color: #fff !important;
    margin-left: 8px;
}

button[class*=swal2].themebtn:hover,button[class*=swal2].themebtn:focus,button[class*=swal2].themebtn:active,.view-more-btn-wrap .themebtn:hover,.view-more-btn-wrap .themebtn:focus,.view-more-btn-wrap .themebtn:active {
    box-shadow: 0px 15px 35px rgba(5, 182, 166, 0.3);
    transform: translateY(-3px);
    border-color: transparent !important;
    background: #05b6a6;
    outline: none;
}

button[class*=swal2].themebtn.invert:hover, button[class*=swal2].themebtn.invert:focus, button[class*=swal2].themebtn.invert:active, .view-more-btn-wrap .themebtn.invert:hover,.view-more-btn-wrap .themebtn.invert:focus,.view-more-btn-wrap .themebtn.invert:active {
    box-shadow: 0px 15px 35px rgba(1, 141, 200, 0.3);
    background: #018dc8 !important;
    outline: none;
}

.swal2-close {
    color: #121212 !important;
}

.swal2-title {
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #272727 !important;
    margin-bottom: 5px !important;
    font-family: 'Montserrat', sans-serif !important;
}

.swal2-html-container {
    color: #272727 !important;
    line-height: 27px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
    font-family: 'Montserrat', sans-serif !important;
    margin-top: 0 !important;
}

.swal2-actions {
    margin-top: 10px !important;
}

@media screen and (max-width: 767px){
    .swal2-title{
        font-size: 22px !important;
        line-height: 27px !important;
        margin-bottom: 10px !important;
    }
    .swal2-html-container{
        font-size: 14px !important;
        line-height: 26px !important;
        font-weight: 500 !important;
        color: #121212 !important;
    }
}

@media (max-width: 575.98px){
    button[class*=swal2].themebtn, .view-more-btn-wrap .themebtn {
        font-size: 12px;
        padding: 9px 10px 9px 10px;
    }
    
    .buttons-group.cta-btns-profile {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .business_profile_banner .business_profile_basic_info {
        width: 100%;
    }

    .business_profile_basic_info_right {
        width: 100%;
    }
}

@media (max-width: 767.98px){
    .text-with-readmore {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .text-with-readmore.expanded {
      -webkit-line-clamp: unset;
    }
}

@media screen and (min-width: 1190.98px){
    #fh5co-primary-menu .fh5co-sub-menu {
        transform: translateX(-70%);
    }
    #fh5co-primary-menu .fh5co-sub-menu:before {
        left: 65%;
    }
}

.gototop{
    z-index: 9999999;
}

.custom-radio-option.cal-back-reason {
    display: flex;
    align-items: center;
    line-height: normal;
    padding: 0px 15px 3px 0px;
}

.consult_modal .form-group.form-group-inline.radio-group .custom-radio-option.cal-back-reason label {
    margin-left: 4px;
}

.custom-radio-option.cal-back-reason input {
    position: relative;
    top: 1px;
}


/* Highlighting effect for listings when clicked from map */
.listing-result-box.highlighted-listing {
    box-shadow: none;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

.listing-result-box {
}

.listing-result-box.highlighted-listing:before {
    content: '';
    position: absolute;
    top: -4%;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,141,199,0.06);
    height: 104%;
    width: 100%;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

/* Optional: Add a subtle pulse animation */
/*@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 15px rgba(0, 123, 255, 0.3);
    }
}

.listing-result-box.highlighted-listing {
    animation: pulse-highlight 1s ease-in-out 3;
}*/

.view-more-btn-wrap {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 9999;
    width: 95%;
    text-align: center;
    padding: 15px;
    background: #fff;
    transform: translateX(-50%);
}

.view-more-btn-wrap .themebtn {
    display: block;
}

.container-toltip.organic,.container-toltip {
    border-color: rgba(240, 240, 240, 1);
    filter: drop-shadow(rgba(0, 0, 0, 0.16) 0px 0px 18px);
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 1);
    cursor: default;
    display: inline-block;
    padding: 9px 9px 12px 9px;
    position: relative;
    text-align: left;
    text-shadow: none;
    vertical-align: middle;
    white-space: normal;
}

.container-toltip:after {
    background-color: rgba(255, 255, 255, 1);
    border-bottom-right-radius: 2px;
    inset: 100% auto auto 50%;
    content: " ";
    display: block;
    height: 15px;
    margin: -8.5px auto auto -8.5px;
    position: absolute;
    transform: rotate(45deg);
    width: 15px;
    left: auto;
    right: 13.5px;
    color: rgba(255, 255, 255, 1);
    cursor: default;
    text-align: left;
    text-shadow: none;
    white-space: normal;
}
.container-toltip:before{
    display: none;
}

.container-toltip.organic .info h2, .container-toltip .info h2 {
    color: #121212 !important;
    margin-top: 5px;
    margin-bottom: 0;
}

.container-toltip.organic .info, .container-toltip .info {
    padding: 0;
    padding-top: 5px;
}


@media screen and (max-width: 767.98px){
    .view-more-btn-wrap .themebtn{
        margin: 0px !important;
    }
    div#map-pagination-controls {
        display: flex;
        gap: 10px;
    }

    div#map-pagination-controls button, div#map-redo-control button {
        margin: 0px !important;
        min-width: 100px;
        text-transform: capitalize;
        letter-spacing: 0px;
    }

    div#map-pagination-controls span.page-info {
        font-size: 12px;
        font-weight: 600;
    }
    div#map-redo-control {
        position: absolute;
        top: -53px;
        width: 100%;
        left: 0;
        padding: 10px;
        background: rgba(100,100,100, 0.50);
    }

    div#map-redo-control button {
        background: #fff;
        color: #121212 !important;
    }

    div#map-redo-control button:hover, div#map-redo-control button:focus, div#map-redo-control button:active {
        background: #fff !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .listing-result-featured-img img.custom-logo, .listing-result-featured-img img.tmp-logo, .listing-result-featured-img img.default-logo {
        max-height: 70px;
    }

    .listing-result-featured-img img.custom-logo, .listing-result-featured-img img.default-logo {
        object-fit: contain;
    }
}

@media screen and (max-width: 575.98px){
    footer#gtco-footer {
        padding-top: 30px;
    }

    #gtco-footer .gtco-widget .widget-head {
        margin-bottom: 15px;
    }

    footer#gtco-footer .row.my_row_footer_new.mb-5.justify-content-start {
        margin-bottom: 5px !important;
    }

    footer#gtco-footer .copyright {
        margin-top: 0px !important;
    }

    footer#gtco-footer hr {
        margin-top: 0px !important;
        margin-bottom: 0;
    }
}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */

 .bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:before,.bootstrap-datetimepicker-widget.dropdown-menu:after{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid white;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid white;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1.2em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action="today"]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:4px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:#eee}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#777}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget table td.old,.bootstrap-datetimepicker-widget table td.new{color:#777}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#337ab7;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:4px}.bootstrap-datetimepicker-widget table td span:hover{background:#eee}.bootstrap-datetimepicker-widget table td span.active{background-color:#337ab7;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#777}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:none;color:#777;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.bootstrap-datetimepicker-widget table td{height:auto;line-height:inherit;width:auto}.bdpw-clock-digit,.bdpw-timepicker-btn{width:32px!important;height:36px!important;line-height:36px!important;text-align:center;font-weight:700;font-size:1.2em;margin:0}.bdpw-clock-digit{color:gray}.bdpw-clock-digit.center{color:#333}.bootstrap-datetimepicker-widget table td .bdpw-clock-digit.disabled{color:#ccc}.bdpw-clock-digit.cursor{color:#337ab7}.bdpw-clock-digit.left{position:relative;left:-8px}.bdpw-clock-digit.right{position:relative;left:8px}.bdpw-clock-digit.top{position:relative;top:-5px}.bdpw-clock-digit.bottom{position:relative;top:5px}.bootstrap-datetimepicker-widget .timepicker{border:2px dotted #a5a5a5;border-radius:30px;margin:0 5px;padding:0 5px;background:url(../images/clock-bg-sm.png) center no-repeat;background-size:192px}.bootstrap-datetimepicker-widget table td span.bdpw-timepicker-colon{display:inline;font-weight:700}.bootstrap-datetimepicker-widget.dropdown-menu{width:294px;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}.bootstrap-datetimepicker-widget table td span.pm-digit{display:none}.bootstrap-datetimepicker-widget .pm-view td span.am-digit{display:none}.bootstrap-datetimepicker-widget .pm-view td span.pm-digit{display:inline-block}.bootstrap-datetimepicker-widget .table-condensed>thead>tr>th,.bootstrap-datetimepicker-widget .table-condensed>tbody>tr>td,.bootstrap-datetimepicker-widget .table-condensed>tfoot>tr>td{padding:5px}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
