@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

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

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

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

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

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

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

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

.flash {
  animation-name: flash;
}

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

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

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

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

.pulse {
  animation-name: pulse;
}

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

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

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

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

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

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

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

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

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

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

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

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

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

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}

.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

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

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

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

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

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

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

.bounceInDown {
  animation-name: bounceInDown;
}

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

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

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

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

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

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

.bounceInLeft {
  animation-name: bounceInLeft;
}

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

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

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

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

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

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

.bounceInRight {
  animation-name: bounceInRight;
}

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

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

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

.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

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

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

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

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

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

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

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

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

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

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

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}

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

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

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

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

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
/*!Ion.RangeSlider, 2.3.0, © Denis Ineshin, 2010 - 2018, IonDen.com, Build date: 2018-12-11 23:23:51*/.irs{position:relative;display:block;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;font-size:12px;font-family:Arial,sans-serif}.irs-line{position:relative;display:block;overflow:hidden;outline:none !important}.irs-bar{position:absolute;display:block;left:0;width:0}.irs-shadow{position:absolute;display:none;left:0;width:0}.irs-handle{position:absolute;display:block;box-sizing:border-box;cursor:default;z-index:1}.irs-handle.type_last{z-index:2}.irs-min,.irs-max{position:absolute;display:block;cursor:default}.irs-min{left:0}.irs-max{right:0}.irs-from,.irs-to,.irs-single{position:absolute;display:block;top:0;left:0;cursor:default;white-space:nowrap}.irs-grid{position:absolute;display:none;bottom:0;left:0;width:100%;height:20px}.irs-with-grid .irs-grid{display:block}.irs-grid-pol{position:absolute;top:0;left:0;width:1px;height:8px;background:#000}.irs-grid-pol.small{height:4px}.irs-grid-text{position:absolute;bottom:0;left:0;white-space:nowrap;text-align:center;font-size:9px;line-height:9px;padding:0 3px;color:#000}.irs-disable-mask{position:absolute;display:block;top:0;left:-1%;width:102%;height:100%;cursor:default;background:rgba(0,0,0,0);z-index:2}.lt-ie9 .irs-disable-mask{background:#000;filter:alpha(opacity=0);cursor:not-allowed}.irs-disabled{opacity:.4}.irs-hidden-input{position:absolute !important;display:block !important;top:0 !important;left:0 !important;width:0 !important;height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;overflow:hidden;outline:none !important;z-index:-9999 !important;background:none !important;border-style:solid !important;border-color:transparent !important}.irs--flat{height:40px}.irs--flat.irs-with-grid{height:60px}.irs--flat .irs-line{top:25px;height:12px;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-bar{top:25px;height:12px;background-color:#ed5565}.irs--flat .irs-bar--single{border-radius:4px 0 0 4px}.irs--flat .irs-shadow{height:1px;bottom:16px;background-color:#e1e4e9}.irs--flat .irs-handle{top:22px;width:16px;height:18px;background-color:transparent}.irs--flat .irs-handle>i:first-child{position:absolute;display:block;top:0;left:50%;width:2px;height:100%;margin-left:-1px;background-color:#da4453}.irs--flat .irs-handle.state_hover>i:first-child,.irs--flat .irs-handle:hover>i:first-child{background-color:#a43540}.irs--flat .irs-min,.irs--flat .irs-max{top:0;padding:1px 3px;color:#999;font-size:10px;line-height:1.333;text-shadow:none;background-color:#e1e4e9;border-radius:4px}.irs--flat .irs-from,.irs--flat .irs-to,.irs--flat .irs-single{color:white;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#ed5565;border-radius:4px}.irs--flat .irs-from:before,.irs--flat .irs-to:before,.irs--flat .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#ed5565}.irs--flat .irs-grid-pol{background-color:#e1e4e9}.irs--flat .irs-grid-text{color:#999}.irs--big{height:55px}.irs--big.irs-with-grid{height:70px}.irs--big .irs-line{top:33px;height:12px;background-color:white;background:linear-gradient(to bottom, #ddd -50%, white 150%);border:1px solid #ccc;border-radius:12px}.irs--big .irs-bar{top:33px;height:12px;background-color:#92bce0;border:1px solid #428bca;background:linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);box-shadow:inset 0 0 1px 1px rgba(255,255,255,0.5)}.irs--big .irs-bar--single{border-radius:12px 0 0 12px}.irs--big .irs-shadow{height:1px;bottom:16px;background-color:rgba(66,139,202,0.5)}.irs--big .irs-handle{top:25px;width:30px;height:30px;border:1px solid rgba(0,0,0,0.3);background-color:#cbcfd5;background:linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);box-shadow:1px 1px 2px rgba(0,0,0,0.2),inset 0 0 3px 1px white;border-radius:30px}.irs--big .irs-handle.state_hover,.irs--big .irs-handle:hover{border-color:rgba(0,0,0,0.45);background-color:#939ba7;background:linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%)}.irs--big .irs-min,.irs--big .irs-max{top:0;padding:1px 5px;color:white;text-shadow:none;background-color:#9f9f9f;border-radius:3px}.irs--big .irs-from,.irs--big .irs-to,.irs--big .irs-single{color:white;text-shadow:none;padding:1px 5px;background-color:#428bca;background:linear-gradient(to bottom, #428bca 0%, #3071a9 100%);border-radius:3px}.irs--big .irs-grid-pol{background-color:#428bca}.irs--big .irs-grid-text{color:#428bca}.irs--modern{height:55px}.irs--modern.irs-with-grid{height:55px}.irs--modern .irs-line{top:25px;height:5px;background-color:#d1d6e0;background:linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);border:1px solid #a3adc1;border-bottom-width:0;border-radius:5px}.irs--modern .irs-bar{top:25px;height:5px;background:#20b426;background:linear-gradient(to bottom, #20b426 0%, #18891d 100%)}.irs--modern .irs-bar--single{border-radius:5px 0 0 5px}.irs--modern .irs-shadow{height:1px;bottom:21px;background-color:rgba(209,214,224,0.5)}.irs--modern .irs-handle{top:37px;width:12px;height:13px;border:1px solid #a3adc1;border-top-width:0;box-shadow:1px 1px 1px rgba(0,0,0,0.1);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(1){position:absolute;display:block;top:-4px;left:1px;width:6px;height:6px;border:1px solid #a3adc1;background:white;transform:rotate(45deg)}.irs--modern .irs-handle>i:nth-child(2){position:absolute;display:block;box-sizing:border-box;top:0;left:0;width:10px;height:12px;background:#e9e6e6;background:linear-gradient(to bottom, white 0%, #e9e6e6 100%);border-radius:0 0 3px 3px}.irs--modern .irs-handle>i:nth-child(3){position:absolute;display:block;box-sizing:border-box;top:3px;left:3px;width:4px;height:5px;border-left:1px solid #a3adc1;border-right:1px solid #a3adc1}.irs--modern .irs-handle.state_hover,.irs--modern .irs-handle:hover{border-color:#7685a2;background:#c3c7cd;background:linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%)}.irs--modern .irs-handle.state_hover>i:nth-child(1),.irs--modern .irs-handle:hover>i:nth-child(1){border-color:#7685a2}.irs--modern .irs-handle.state_hover>i:nth-child(3),.irs--modern .irs-handle:hover>i:nth-child(3){border-color:#48536a}.irs--modern .irs-min,.irs--modern .irs-max{top:0;font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;color:white;background-color:#d1d6e0;border-radius:5px}.irs--modern .irs-from,.irs--modern .irs-to,.irs--modern .irs-single{font-size:10px;line-height:1.333;text-shadow:none;padding:1px 5px;background-color:#20b426;color:white;border-radius:5px}.irs--modern .irs-from:before,.irs--modern .irs-to:before,.irs--modern .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#20b426}.irs--modern .irs-grid{height:25px}.irs--modern .irs-grid-pol{background-color:#dedede}.irs--modern .irs-grid-text{color:silver;font-size:13px}.irs--sharp{height:50px;font-size:12px;line-height:1}.irs--sharp.irs-with-grid{height:57px}.irs--sharp .irs-line{top:30px;height:2px;background-color:black;border-radius:2px}.irs--sharp .irs-bar{top:30px;height:2px;background-color:#ee22fa}.irs--sharp .irs-bar--single{border-radius:2px 0 0 2px}.irs--sharp .irs-shadow{height:1px;bottom:21px;background-color:rgba(0,0,0,0.5)}.irs--sharp .irs-handle{top:25px;width:10px;height:10px;background-color:#a804b2}.irs--sharp .irs-handle>i:first-child{position:absolute;display:block;top:100%;left:0;width:0;height:0;border:5px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-handle.state_hover,.irs--sharp .irs-handle:hover{background-color:black}.irs--sharp .irs-handle.state_hover>i:first-child,.irs--sharp .irs-handle:hover>i:first-child{border-top-color:black}.irs--sharp .irs-min,.irs--sharp .irs-max{color:white;font-size:14px;line-height:1;top:0;padding:3px 4px;opacity:.4;background-color:#a804b2;border-radius:2px}.irs--sharp .irs-from,.irs--sharp .irs-to,.irs--sharp .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 4px;background-color:#a804b2;color:white;border-radius:2px}.irs--sharp .irs-from:before,.irs--sharp .irs-to:before,.irs--sharp .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#a804b2}.irs--sharp .irs-grid{height:25px}.irs--sharp .irs-grid-pol{background-color:#dedede}.irs--sharp .irs-grid-text{color:silver;font-size:13px}.irs--round{height:50px}.irs--round.irs-with-grid{height:65px}.irs--round .irs-line{top:36px;height:4px;background-color:#dee4ec;border-radius:4px}.irs--round .irs-bar{top:36px;height:4px;background-color:#006cfa}.irs--round .irs-bar--single{border-radius:4px 0 0 4px}.irs--round .irs-shadow{height:4px;bottom:21px;background-color:rgba(222,228,236,0.5)}.irs--round .irs-handle{top:26px;width:24px;height:24px;border:4px solid #006cfa;background-color:white;border-radius:24px;box-shadow:0 1px 3px rgba(0,0,255,0.3)}.irs--round .irs-handle.state_hover,.irs--round .irs-handle:hover{background-color:#f0f6ff}.irs--round .irs-min,.irs--round .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1);border-radius:4px}.irs--round .irs-from,.irs--round .irs-to,.irs--round .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:#006cfa;color:white;border-radius:4px}.irs--round .irs-from:before,.irs--round .irs-to:before,.irs--round .irs-single:before{position:absolute;display:block;content:"";bottom:-6px;left:50%;width:0;height:0;margin-left:-3px;overflow:hidden;border:3px solid transparent;border-top-color:#006cfa}.irs--round .irs-grid{height:25px}.irs--round .irs-grid-pol{background-color:#dedede}.irs--round .irs-grid-text{color:silver;font-size:13px}.irs--square{height:50px}.irs--square.irs-with-grid{height:60px}.irs--square .irs-line{top:31px;height:4px;background-color:#dedede}.irs--square .irs-bar{top:31px;height:4px;background-color:black}.irs--square .irs-shadow{height:2px;bottom:21px;background-color:#dedede}.irs--square .irs-handle{top:25px;width:16px;height:16px;border:3px solid black;background-color:white;transform:rotate(45deg)}.irs--square .irs-handle.state_hover,.irs--square .irs-handle:hover{background-color:#f0f6ff}.irs--square .irs-min,.irs--square .irs-max{color:#333;font-size:14px;line-height:1;top:0;padding:3px 5px;background-color:rgba(0,0,0,0.1)}.irs--square .irs-from,.irs--square .irs-to,.irs--square .irs-single{font-size:14px;line-height:1;text-shadow:none;padding:3px 5px;background-color:black;color:white}.irs--square .irs-grid{height:25px}.irs--square .irs-grid-pol{background-color:#dedede}.irs--square .irs-grid-text{color:silver;font-size:11px}@charset "UTF-8";

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slide-in {
  0% {
    transform: translateY(5%);
  }

  100% {
    transform: translateY(0%);
  }
}

.colorpicker.fade-in {
  animation-name: fade-in;
  animation-duration: 0.2s;
}

.colorpicker.slide-in {
  animation-name: slide-in;
  animation-duration: 0.15s;
}

.colorpicker {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: inherit;
  position: fixed;
  display: none;
  border: 0px solid #e9ebee;
  box-shadow: none;
  background: none;
  border-radius: 0px;
}

.colorpicker.is-opened {
  display: inline-block;
  z-index: 9;
}

.colorpicker:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border: 6px solid black;
  box-shadow: -1px 1px 1px 0 rgba(147, 157, 170, 0.23);
  transform-origin: 50% 50%;
}

.colorpicker-input + .colorpicker--inline,
.colorpicker-anchor + .colorpicker--inline {
  margin-top: 0px;
}

.colorpicker-circle-anchor {
  box-sizing: border-box;
  display: inline-block;
  line-height: 0;
}

.colorpicker-circle-anchor__color {
  line-height: 0;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.colorpicker-anchor--inline {
  display: block;
}

.colorpicker--position-top::after,
.colorpicker--position-top::before,
.colorpicker--position-top-center::after,
.colorpicker--position-top-center::before {
  margin-left: -3px;
  bottom: -6px;
  left: 50%;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-45deg);
}

.colorpicker--position-bottom::after,
.colorpicker--position-bottom-center::after {
  margin-left: -3px;
  top: -6px;
  bottom: auto;
  left: 50%;
  border-color: transparent transparent #fff #fff;
  transform: rotate(135deg);
}

.colorpicker--position-top.is-arrow-left::after,
.colorpicker--position-bottom.is-arrow-left::after {
  left: 18px;
  right: auto;
}

.colorpicker--position-top.is-arrow-right::after,
.colorpicker--position-bottom.is-arrow-right::after {
  left: auto;
  right: 18px;
}

.colorpicker--position-left::after,
.colorpicker--position-left-center::after {
  margin-top: -3px;
  left: auto;
  bottom: auto;
  right: -6px;
  top: 50%;
  border-color: transparent transparent #fff #fff;
  transform: rotate(225deg);
}

.colorpicker--position-right::after,
.colorpicker--position-right-center::after {
  margin-top: -3px;
  left: -6px;
  bottom: auto;
  right: auto;
  top: 50%;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-315deg);
}

.colorpicker--position-left.is-arrow-top::after,
.colorpicker--position-right.is-arrow-top::after {
  top: 18px;
  bottom: auto;
}

.colorpicker--position-left.is-arrow-bottom::after,
.colorpicker--position-right.is-arrow-bottom::after {
  top: auto;
  bottom: 18px;
}

.colorpicker--inline {
  position: static;
  box-shadow: none;
  display: inline-block;
}

.colorpicker--inline:after {
  display: none;
}

.colorpicker--no-arrow:after {
  opacity: 0;
}

.colorpicker-input {
  position: relative;
  display: block;
}

.colorpicker-input--position-right .colorpicker-custom-anchor {
  right: 10px;
}

.colorpicker-input--position-right input,
.colorpicker-input--position-right .form-control {
  padding-right: 42px;
}

.colorpicker-input--position-left .colorpicker-custom-anchor {
  left: 10px;
}

.colorpicker-input--position-left input,
.colorpicker-input--position-left .form-control {
  padding-left: 42px;
}

.colorpicker-input .colorpicker-custom-anchor {
  position: absolute;
  top: 50%;
  margin-top: -13px;
  display: block;
}

.colorpicker-input .colorpicker-circle-anchor__color {
  width: 26px;
  height: 26px;
}

input + .colorpicker--inline,
select + .colorpicker--inline,
textarea + .colorpicker--inline {
  margin-top: 0px;
}

.colorpicker-default {
  height: auto;
  width: 100%;
  padding: 0px;
}

.colorpicker-default__body {
  display: flex;
}

.colorpicker-default__spectrum-container {
  width: 260px;
  height: 260px;
  position: relative;
  box-sizing: border-box;
  border-radius: 0px;
}

.colorpicker-default__spectrum-canvas {
  width: 260px;
  height: 260px;
  border-radius: 0px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.colorpicker-default__spectrum-cursor,
.colorpicker-default__hue-cursor,
.colorpicker-default__opacity-cursor {
  border: 4px solid white;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  cursor: default;
  box-sizing: border-box;
}

.colorpicker-default__hue-cursor,
.colorpicker-default__opacity-cursor {
  left: calc(50% - 7px);
  top: 50%;
}

.colorpicker-default__hue-container,
.colorpicker-default__opacity-container {
  width: 25px;
  height: 260px;
  border-radius: 0px;
  margin-left: 10px;
  position: relative;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.colorpicker-default__opacity-container {
  background: #fff url("/images/transparent-bg.png");
}

.colorpicker-default__hue-canvas,
.colorpicker-default__opacity-canvas {
  width: 25px;
  height: 260px;
  border-radius: 0px;
}

.colorpicker-default__info {
  display: flex;
  padding: 10px 0 0 0;
}

.colorpicker-default__info--hidden {
  display: none;
}

.colorpicker-default__hex-input-container,
.colorpicker-default__r-input-container,
.colorpicker-default__g-input-container,
.colorpicker-default__b-input-container,
.colorpicker-default__a-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 12px;
}

.colorpicker-default__hex-input,
.colorpicker-default__r-input,
.colorpicker-default__g-input,
.colorpicker-default__b-input,
.colorpicker-default__a-input {
  box-sizing: border-box;
  width: 50px;
  height: 40px;
  border: 1px solid #eceeef;
  border-radius: 0px;
  color: #464a4c;
  padding: 6px 8px;
  font-size: 14px;
  transition: border 0.2s ease-in-out;
  background: #fff;
}

.colorpicker-default__hex-input::-moz-placeholder, .colorpicker-default__r-input::-moz-placeholder, .colorpicker-default__g-input::-moz-placeholder, .colorpicker-default__b-input::-moz-placeholder, .colorpicker-default__a-input::-moz-placeholder {
  color: #636c72;
}

.colorpicker-default__hex-input::placeholder,
.colorpicker-default__r-input::placeholder,
.colorpicker-default__g-input::placeholder,
.colorpicker-default__b-input::placeholder,
.colorpicker-default__a-input::placeholder {
  color: #636c72;
}

.colorpicker-default__hex-input:focus,
.colorpicker-default__r-input:focus,
.colorpicker-default__g-input:focus,
.colorpicker-default__b-input:focus,
.colorpicker-default__a-input:focus {
  border-color: #9bd3ae;
  box-shadow: none;
  outline: none;
}

.colorpicker-default__hex-input {
  width: 82px;
}

.colorpicker-default__hex-text,
.colorpicker-default__r-text,
.colorpicker-default__g-text,
.colorpicker-default__b-text,
.colorpicker-default__a-text {
  text-transform: uppercase;
  font-size: 14px;
  color: #636c72;
  margin-top: 6px;
}

.colorpicker-default__history {
  border-top: 0px solid #e9ebee;
  padding: 0px;
  margin: 0px;
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}

.colorpicker-default__history.is-hidden {
  display: none;
}

.colorpicker-default__history-item {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background: #EEF1F5;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.2s ease-in-out;
}

.colorpicker-default__history-item:nth-child(7n) {
  margin-right: 0px;
}

.colorpicker-default__history-item:hover {
  transform: scale(1.15);
}

.colorpicker-default__history-item.is-empty {
  border-color: transparent;
}

.colorpicker-default__history-item.is-add-new {
  text-align: center;
  cursor: pointer;
  position: relative;
  background: #dfe5ec url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAA7SURBVHjaYvz//z9Dy6RlDFDwH0oz1uRFQRjNE5cyIAG4ApgAEwMBwIKkC5tJxJnAiM8NjIR8QdAKwABr3RPEnLgHwwAAAABJRU5ErkJggg==") center center no-repeat;
  width: 40px;
  height: 40px;
  border: none;
}

.colorpicker-default__history-item.is-add-new:hover {
  background-color: #d5dde6;
}

html {
  font-size: 14px;
}

body {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #636c72;
  background-color: #fff;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

a {
  transition: all 0.2s ease-in-out;
  color: #78c391;
}

a:hover {
  color: #2e5fa7;
  text-decoration: none;
}

.btn {
  font-family: "Poppins";
  font-weight: 600;
}

@media (max-width: 991px) {
  .btn {
    font-size: 15px !important;
  }
}

@media (max-width: 767px) {
  .btn {
    font-size: 14px !important;
  }
}

.btn.btn-secondary {
  background: #f7f7f9;
  color: #a7b0b5;
  border: 1px solid transparent;
}

.btn.btn-secondary:hover {
  color: #636c72;
  border-color: #f7f7f9;
}

.btn.btn-focus,
.btn.btn-danger,
.btn.btn-accent,
.btn.btn-brand {
  color: #fff;
}

.btn.btn-focus:hover,
.btn.btn-focus:active,
.btn.btn-focus:focus,
.btn.btn-danger:hover,
.btn.btn-danger:active,
.btn.btn-danger:focus,
.btn.btn-accent:hover,
.btn.btn-accent:active,
.btn.btn-accent:focus,
.btn.btn-brand:hover,
.btn.btn-brand:active,
.btn.btn-brand:focus {
  color: #fff;
}

.btn.btn-outline-accent:hover,
.btn.btn-outline-accent:active,
.btn.btn-outline-accent:focus {
  background: #2e5fa7;
  color: #fff;
}

@media (max-width: 991px) {
  .btn.btn-lg {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .btn.btn-block-xs-only {
    display: block;
    width: 100%;
  }
}

.brand-color {
  color: #9bd3ae;
}

#wrapper .container {
  width: 1240px;
  padding: 0 30px;
  max-width: 100%;
}

@media (max-width: 575px) {
  #wrapper .container {
    padding: 0 20px;
  }
}

#wrapper .container.lg {
  width: 1040px;
}

#wrapper .container.md {
  width: 840px;
}

#wrapper .container.xs {
  width: 740px;
}

@media (max-width: 767px) {
  #wrapper .container.lg .page-intro,
  #wrapper .container.md .page-intro,
  #wrapper .container.xs .page-intro {
    padding-bottom: 10px;
  }
}

#wrapper .container.lg .page-intro p,
#wrapper .container.md .page-intro p,
#wrapper .container.xs .page-intro p {
  max-width: 100%;
}

#wrapper .container.xs .page-intro h1 {
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 575px) {
  #wrapper .container.xs .page-intro h1 {
    font-size: 26px;
  }
}

#wrapper #main {
  margin: 144px 0 80px;
  min-height: calc(100vh - 500px);
}

@media (max-width: 991px) {
  #wrapper #main {
    margin: 129px 0 65px;
    min-height: calc(100vh - 540px);
  }
}

@media (max-width: 767px) {
  #wrapper #main {
    margin: 114px 0 50px;
  }
}

#wrapper #main.centered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  #wrapper #main.centered {
    min-height: calc(100vh - 144px);
  }
}

#wrapper #main.no-footer {
  min-height: calc(100vh - 432px);
}

@media (max-width: 991px) {
  #wrapper #main.no-footer {
    min-height: calc(100vh - 402px);
  }
}

@media (max-width: 767px) {
  #wrapper #main.no-footer {
    min-height: calc(100vh - 372px);
  }
}

@media (max-width: 575px) {
  #wrapper #main.no-footer {
    min-height: calc(100vh - 331px);
  }
}

#wrapper #main.no-footer.productfooter {
  min-height: calc(100vh - 518px);
}

@media (max-width: 991px) {
  #wrapper #main.no-footer.productfooter {
    min-height: unset;
  }
}

#wrapper #main .content a {
  text-decoration: underline;
}

#wrapper #main .content a:hover,
#wrapper #main .content a:active,
#wrapper #main .content a:focus {
  text-decoration: underline;
}

#wrapper #main .content strong,
#wrapper #main .content b {
  font-weight: 600;
}

#wrapper #main .content h2,
#wrapper #main .content h3,
#wrapper #main .content h4,
#wrapper #main .content h5,
#wrapper #main .content h6 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
  color: #2e5fa7;
}

#wrapper #main .content h2:first-child,
#wrapper #main .content h3:first-child,
#wrapper #main .content h4:first-child,
#wrapper #main .content h5:first-child,
#wrapper #main .content h6:first-child {
  margin-top: 0;
}

#wrapper #main .content h2.header,
#wrapper #main .content h3.header,
#wrapper #main .content h4.header,
#wrapper #main .content h5.header,
#wrapper #main .content h6.header {
  font-weight: 800;
  color: #2e5fa7;
  font-size: 36px;
}

#wrapper #main .content ol,
#wrapper #main .content ul,
#wrapper #main .content dl {
  padding-left: 20px;
}

#wrapper #main .content img,
#wrapper #main .content iframe {
  max-width: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

#wrapper #main .content img.featured,
#wrapper #main .content iframe.featured {
  margin: 0px 0 40px;
}

#wrapper #main .content img.no-shadow,
#wrapper #main .content iframe.no-shadow {
  box-shadow: none;
}

#wrapper #main .content table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  #wrapper #main .content table {
    border: 0;
  }

  #wrapper #main .content table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media (max-width: 991px) {
  #wrapper #main .content table tr {
    display: block;
    margin-bottom: 20px;
    border: 2px solid #eceeef;
  }
}

@media (max-width: 991px) {
  #wrapper #main .content table tr:last-child {
    margin-bottom: 0;
  }
}

#wrapper #main .content table tr:last-child td {
  border-bottom: 0 !important;
}

@media (max-width: 991px) {
  #wrapper #main .content table tr:last-child td {
    border-bottom: 1px solid #eceeef !important;
  }
}

#wrapper #main .content table th,
#wrapper #main .content table td {
  padding: 0.35em 0.55em;
  text-align: left;
  border-bottom: 1px solid #eceeef;
  vertical-align: middle;
}

#wrapper #main .content table td {
  font-size: 0.9em;
}

#wrapper #main .content table th {
  font-weight: 600;
}

@media (max-width: 991px) {
  #wrapper #main .content table td {
    display: flex;
    text-align: left;
    align-items: center;
    border-bottom: 1px solid #eceeef;
  }

  #wrapper #main .content table td::before {
    content: attr(data-label);
    font-weight: 700;
    margin-right: 20px;
    width: 90px;
  }

  #wrapper #main .content table td:last-child {
    border-bottom: 0;
  }
}

#wrapper #main .content .download-item {
  border-radius: 5px;
  padding: 15px 20px 15px 15px;
  border: 2px solid #dee2e3;
  background: #fff;
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  margin: 0 5px;
  text-decoration: none !important;
}

@media (max-width: 575px) {
  #wrapper #main .content .download-item {
    padding: 8px;
    min-width: 100%;
    margin-bottom: 5px;
  }
}

#wrapper #main .content .download-item img {
  width: 20px;
  height: 20px;
}

#wrapper #main .content .download-item i,
#wrapper #main .content .download-item svg {
  font-size: 18px;
}

#wrapper #main .content .download-item .text {
  margin-left: 15px;
  display: block;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: #636c72;
  transition: all 0.2s ease-in-out;
}

#wrapper #main .content .download-item:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border: solid 2px #9bd3ae !important;
}

#wrapper #main .content .download-item:hover .text {
  color: #9bd3ae;
}

#wrapper #main .content .download-item.m-loader.m-loader--light {
  padding-right: 40px;
}

#wrapper #main .content .download-item.m-loader.m-loader--light::before {
  border-top-color: #c2c9cc;
}

.overlay-dropdown {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1042;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.25);
}

.overlay-dropdown.active {
  opacity: 1;
  visibility: visible;
}

.long-text {
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .long-text {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .long-text {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .long-text {
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid #eceeef;
  }
}

.long-text .container-text.collapsed {
  max-height: 300px;
  overflow: hidden;
}

.long-text .container-text.collapsed:after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0px, currentColor 100px);
  color: #fff;
}

.long-text .btn {
  position: relative;
  margin-top: 20px;
  z-index: 99;
  color: #fff !important;
  text-decoration: none !important;
}

.long-text .btn:after {
  content: "\F113";
  padding-left: 5px;
}

.long-text .btn.collapsed {
  position: absolute;
  bottom: 25px;
  margin-top: 0;
}

.long-text .btn.collapsed:after {
  content: "\F110";
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: #fff !important;
}

textarea {
  resize: none;
}

@media (max-width: 767px) {
  .form-group.pr-1,
  .form-group.pl-1,
  .m-form__group-sub.pr-1,
  .m-form__group-sub.pl-1 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  .form-group .m-form__group-sub:nth-child(2n),
  .m-form__group-sub .m-form__group-sub:nth-child(2n) {
    margin-top: 10px;
    padding-top: 0 !important;
  }

  .form-group .m-form__group-sub.first,
  .m-form__group-sub .m-form__group-sub.first {
    margin-top: 10px;
  }
}

.form-group .req,
.m-form__group-sub .req {
  position: relative;
  display: flex;
  color: #e11d48;
  font-size: 14px;
  margin-left: 20px;
  align-self: center;
}

@media (max-width: 575px) {
  .form-group .req,
  .m-form__group-sub .req {
    margin-left: 0;
    margin-top: 10px;
  }
}

.form-group .req .asterisk,
.m-form__group-sub .req .asterisk {
  font-size: 18px;
  margin-right: 3px;
}

.form-group label,
.m-form__group-sub label {
  position: relative;
}

.form-group label .required,
.m-form__group-sub label .required {
  color: #e11d48;
  font-size: 18px;
  position: absolute;
  top: -2px;
  padding-left: 2px;
}

.form-group .form-control,
.m-form__group-sub .form-control {
  padding: 15px;
  font-family: "Poppins";
  color: #636c72;
  font-size: 14px;
  border: 2px solid #dee2e3;
  font-weight: 300;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .form-group .form-control,
  .m-form__group-sub .form-control {
    padding: 12px;
  }
}

.form-group .form-control:focus,
.m-form__group-sub .form-control:focus {
  border-color: #2e5fa7;
}

.form-group .form-control::-moz-placeholder, .m-form__group-sub .form-control::-moz-placeholder {
  color: #c2c9cc;
}

.form-group .form-control::placeholder,
.m-form__group-sub .form-control::placeholder {
  color: #c2c9cc;
}

.form-group .form-control.bootstrap-select,
.m-form__group-sub .form-control.bootstrap-select {
  padding: 0;
  border: 0;
  margin-bottom: 0;
}

.form-group .form-control.bootstrap-select .dropdown-toggle,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle {
  padding: 15px;
  font-family: "Poppins";
  font-size: 14px;
  border: 2px solid #dee2e3;
  border-radius: 5px !important;
}

@media (max-width: 575px) {
  .form-group .form-control.bootstrap-select .dropdown-toggle,
  .m-form__group-sub .form-control.bootstrap-select .dropdown-toggle {
    padding: 12px;
  }
}

.form-group .form-control.bootstrap-select .dropdown-toggle > span,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle > span {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #636c72;
}

.form-group .form-control.bootstrap-select .dropdown-toggle > span strong,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle > span strong {
  margin-right: 5px;
  font-weight: 600;
}

.form-group .form-control.bootstrap-select .dropdown-toggle > span .m-badge,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle > span .m-badge {
  display: none;
}

.form-group .form-control.bootstrap-select .dropdown-toggle.bs-placeholder,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle.bs-placeholder {
  color: #a4abb0;
}

.form-group .form-control.bootstrap-select .dropdown-toggle::after,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle::after {
  position: absolute;
  font-family: "FontAwesome";
  font-size: 16px;
  content: "\F078";
  color: #b5bcc0;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.form-group .form-control.bootstrap-select.show,
.m-form__group-sub .form-control.bootstrap-select.show {
  z-index: 1043;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.form-group .form-control.bootstrap-select.show > .dropdown-toggle,
.m-form__group-sub .form-control.bootstrap-select.show > .dropdown-toggle {
  transition: border 0s;
}

.form-group .form-control.bootstrap-select.show > .dropdown-toggle.btn-default,
.m-form__group-sub .form-control.bootstrap-select.show > .dropdown-toggle.btn-default {
  border-color: #fff !important;
}

.form-group .form-control.bootstrap-select.show > .dropdown-toggle::after,
.m-form__group-sub .form-control.bootstrap-select.show > .dropdown-toggle::after {
  color: #2e5fa7;
  transform: rotate(180deg);
}

.form-group .form-control.bootstrap-select .dropdown-menu,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  top: -2px !important;
  box-shadow: none;
}

.form-group .form-control.bootstrap-select .dropdown-menu.open,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu.open {
  z-index: 1043;
}

.form-group .form-control.bootstrap-select .dropdown-menu .popover-title,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu .popover-title {
  background: #e11d48;
  color: #fff;
  font-weight: 300 !important;
  font-size: 14px;
  margin: 0px;
  padding: 12px 15px;
}

.form-group .form-control.bootstrap-select .dropdown-menu .popover-title a,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu .popover-title a {
  color: #fff;
  font-weight: 600;
  z-index: 2044;
  pointer-events: all;
}

.form-group .form-control.bootstrap-select .dropdown-menu li,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li {
  border-bottom: 1px solid rgba(236, 238, 239, 0.5);
}

.form-group .form-control.bootstrap-select .dropdown-menu li:last-child,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:last-child {
  border-bottom: 0;
}

.form-group .form-control.bootstrap-select .dropdown-menu li:first-child,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:first-child {
  border-top: 1px solid rgba(236, 238, 239, 0.5);
}

.form-group .form-control.bootstrap-select .dropdown-menu li a,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li a {
  font-size: 14px;
  border-left: solid 0px #9bd3ae;
  padding: 10px 15px;
}

.form-group .form-control.bootstrap-select .dropdown-menu li a strong,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li a strong {
  font-weight: 600;
}

@media (max-width: 575px) {
  .form-group .form-control.bootstrap-select .dropdown-menu li a,
  .m-form__group-sub .form-control.bootstrap-select .dropdown-menu li a {
    padding: 8px 12px;
    font-size: 15px;
  }
}

.form-group .form-control.bootstrap-select .dropdown-menu li a .m-badge,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li a .m-badge {
  padding: 1px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 400;
}

.form-group .form-control.bootstrap-select .dropdown-menu li a .m-badge.m-badge--secondary,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li a .m-badge.m-badge--secondary {
  color: #464a4c !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li:hover a,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:hover a {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border-left: solid 5px #9bd3ae !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li:hover a span,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:hover a span {
  color: #89cba0 !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li:hover a .m-badge,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:hover a .m-badge {
  color: #fff !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li:hover a .m-badge.m-badge--secondary,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li:hover a .m-badge.m-badge--secondary {
  color: #464a4c !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border-left: solid 5px #2e5fa7 !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a .check-mark,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a .check-mark {
  font-size: 16px !important;
  margin-top: -10px !important;
  color: #2e5fa7 !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a .check-mark:before,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a .check-mark:before {
  font-family: "FontAwesome";
  content: "\F00C" !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a span,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a span {
  color: #285493 !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a .m-badge,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a .m-badge {
  color: #fff !important;
}

.form-group .form-control.bootstrap-select .dropdown-menu li.selected a .m-badge.m-badge--secondary,
.m-form__group-sub .form-control.bootstrap-select .dropdown-menu li.selected a .m-badge.m-badge--secondary {
  color: #464a4c !important;
}

.form-group .form-control.bootstrap-select.dropup.show,
.m-form__group-sub .form-control.bootstrap-select.dropup.show {
  z-index: 1043;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.form-group .form-control.bootstrap-select.dropup .dropdown-menu,
.m-form__group-sub .form-control.bootstrap-select.dropup .dropdown-menu {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  top: 2px !important;
}

.form-group .form-control.bootstrap-select.dropup .dropdown-menu li:last-child,
.m-form__group-sub .form-control.bootstrap-select.dropup .dropdown-menu li:last-child {
  border-bottom: 1px solid rgba(236, 238, 239, 0.5);
}

.form-group .form-control.bootstrap-select.dropup .dropdown-menu li:first-child,
.m-form__group-sub .form-control.bootstrap-select.dropup .dropdown-menu li:first-child {
  border-top: 0;
}

.form-group .form-control.bootstrap-select .form-control-feedback,
.m-form__group-sub .form-control.bootstrap-select .form-control-feedback {
  position: absolute;
  top: 8px;
  left: 8px;
}

.form-group .form-control[readonly],
.m-form__group-sub .form-control[readonly] {
  color: #b5bcc0;
  border: 2px solid #eceeef;
}

.form-group.has-danger .form-control,
.m-form__group-sub.has-danger .form-control {
  border: 2px solid #e11d48 !important;
}

.form-group.has-danger .form-control.bootstrap-select .dropdown-toggle span,
.m-form__group-sub.has-danger .form-control.bootstrap-select .dropdown-toggle span {
  display: none;
}

.form-group.has-danger .m-checkbox span,
.form-group.has-danger .m-radio span,
.m-form__group-sub.has-danger .m-checkbox span,
.m-form__group-sub.has-danger .m-radio span {
  border-color: #e11d48;
}

.form-group .form-control-feedback,
.m-form__group-sub .form-control-feedback {
  margin: 4px 0px 0px 2px;
  color: #e11d48;
  font-size: 13px;
}

.form-group .m-checkbox,
.form-group .m-radio,
.m-form__group-sub .m-checkbox,
.m-form__group-sub .m-radio {
  color: #636c72;
}

.form-group .m-checkbox span,
.form-group .m-radio span,
.m-form__group-sub .m-checkbox span,
.m-form__group-sub .m-radio span {
  border-color: #dee2e3;
}

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

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

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

.pulse-sm {
  animation: pulse-sm 1s linear infinite;
}

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

  50% {
    transform: scale3d(1, 1, 1);
    transform: rotate(5deg);
  }

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

.pulse-lg {
  animation: pulse-lg 3s linear infinite;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-20deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.rotating {
  animation: rotating 15s linear infinite;
}

#header {
  position: fixed;
  width: 100%;
  z-index: 1041;
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 0px;
  background: #fff;
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

#header .container .brand img {
  width: 145px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  #header .container .brand img {
    width: 125px;
  }
}

#header .container .menu {
  display: flex;
  align-items: center;
}

#header .container .menu ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 20px;
}

@media (max-width: 991px) {
  #header .container .menu ul {
    display: none;
  }
}

#header .container .menu ul.navigation {
  display: flex;
  margin-right: 0;
}

#header .container .menu ul.navigation li a.btn {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 575px) {
  #header .container .menu ul.navigation li a.btn .text {
    display: none;
  }
}

#header .container .menu ul.navigation li a.btn i,
#header .container .menu ul.navigation li a.btn svg {
  margin-right: 8px;
  font-size: 14px;
}

@media (max-width: 575px) {
  #header .container .menu ul.navigation li a.btn i,
  #header .container .menu ul.navigation li a.btn svg {
    margin-right: 0;
  }
}

#header .container .menu ul li {
  padding: 0px 10px;
}

#header .container .menu ul li:first-child {
  padding-left: 0px;
}

#header .container .menu ul li:last-child {
  padding-right: 0px;
}

#header .container .menu ul li a {
  color: #2e5fa7;
  font-weight: 500;
  font-size: 16px;
}

#header .container .menu ul li a:hover {
  color: #78c391;
}

#header .container .menu ul li a.current {
  color: #2e5fa7;
  font-weight: 600;
}

#header .container .menu ul li a.btn {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

#header .container .menu ul li a.btn-outline-accent {
  color: #2e5fa7;
  font-weight: 600;
}

#header .container .menu ul li a.btn-outline-accent:hover {
  color: #fff !important;
}

#header .container .menu ul li a.btn-outline-danger {
  color: #e11d48;
  font-weight: 600;
}

#header .container .menu ul li a.btn-outline-danger:hover {
  color: #fff !important;
}

#header .container .menu ul li a.btn-outline-eco {
  color: #00bf63 !important;
  border-color: #00bf63 !important;
  font-weight: 600;
}

#header .container .menu ul li a.btn-outline-eco:hover {
  color: #fff !important;
  background: #00bf63 !important;
}

#header .container .menu ul li a.btn-sm {
  padding: 0.5rem 1rem;
}

#header .container .menu ul li .dropdown-menu {
  margin-top: 15px;
  z-index: 1040;
  border-radius: 12px;
}

#header .container .menu ul li .dropdown-menu .dropdown-item.delete {
  border-bottom: none;
}

#header .container .menu ul li .dropdown-menu .dropdown-item .icon-text .text {
  font-size: 14px;
  padding-left: 30px;
}

#header .container .menu ul li .dropdown-menu .dropdown-item .icon-text .text.no-icon {
  padding-left: 25px;
}

#header .container .menu .hamburger-menu {
  cursor: pointer;
  margin-right: 40px;
  position: relative;
  color: #2e5fa7;
  font-weight: 600;
  font-size: 15px;
  width: 34px;
  height: 34px;
}

@media (max-width: 991px) {
  #header .container .menu .hamburger-menu {
    margin-right: 20px;
  }
}

@media (max-width: 575px) {
  #header .container .menu .hamburger-menu {
    margin-right: 10px;
  }
}

#header .container .menu .hamburger-menu .text {
  font-weight: 600;
  padding-right: 5px;
  display: none;
}

@media (max-width: 991px) {
  #header .container .menu .hamburger-menu .text {
    display: inherit;
  }
}

@media (max-width: 575px) {
  #header .container .menu .hamburger-menu .text {
    display: none;
  }
}

#header .container .menu .hamburger-menu .bar {
  position: relative;
  top: -5px;
  left: -7px;
  width: 17px;
  height: 2px;
  background: #2e5fa7;
  display: inline-block;
  align-self: center;
  transition: all 0.3s;
}

#header .container .menu .hamburger-menu .bar::before {
  content: "";
  position: absolute;
  background: #2e5fa7;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transform: translate(0, 5px);
}

#header .container .menu .hamburger-menu .bar::after {
  content: "";
  position: absolute;
  background: #2e5fa7;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transform: translate(0, -5px);
}

#header .container .menu .hamburger-menu:hover .bar {
  background: #fff;
}

#header .container .menu .hamburger-menu:hover .bar::before {
  background: #fff;
}

#header .container .menu .hamburger-menu:hover .bar::after {
  background: #fff;
}

#header .container .menu .hamburger-menu.active .bar {
  background: 0 0;
}

#header .container .menu .hamburger-menu.active .bar::before {
  transform: rotate(-45deg);
  background: #fff;
}

#header .container .menu .hamburger-menu.active .bar::after {
  transform: rotate(45deg);
  background: #fff;
}

#header .container .menu .cart {
  margin-left: 20px;
  position: relative;
}

@media (max-width: 575px) {
  #header .container .menu .cart {
    margin-left: 10px;
  }
}

#header .container .menu .cart a {
  cursor: pointer;
}

#header .container .menu .cart a i,
#header .container .menu .cart a svg {
  color: #9bd3ae;
  font-size: 26px;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

#header .container .menu .cart a:hover i,
#header .container .menu .cart a:hover svg {
  transform: scale(1.1);
}

#header .container .menu .cart a .items {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #2e5fa7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#header .container .menu .cart a .items.active {
  background: #e11d48;
}

#header .container .menu .cart a .items span {
  position: relative;
  left: 0px;
}

@media (max-width: 767px) {
  #header .container .menu .cart a .items span {
    top: 1px;
  }
}

#header.active {
  background: #fff;
  border: none;
  box-shadow: none;
}

#mainmenu {
  position: fixed;
  margin-top: 85px;
  overflow: auto;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.47);
  height: calc(100vh - 85px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#mainmenu .overlay {
  background: #fff;
}

#mainmenu .overlay .inner-mainmenu {
  padding: 60px 0 0;
  text-align: center;
  overflow: auto;
}

@media (max-width: 767px) {
  #mainmenu .overlay .inner-mainmenu {
    padding: 40px 0 0;
  }
}

#mainmenu .overlay .inner-mainmenu .products {
  display: none;
}

@media (max-width: 991px) {
  #mainmenu .overlay .inner-mainmenu .products {
    display: inline-block;
    margin-bottom: 30px;
    font-size: 16px;
    padding: 0.5rem 1rem;
  }
}

#mainmenu.active {
  opacity: 1;
  visibility: visible;
}

body.no-header #header .menu {
  display: none;
}

#footer,
#mainmenu .inner-mainmenu {
  padding: 80px 0;
  background: rgba(46, 95, 167, 0.05);
}

@media (max-width: 767px) {
  #footer,
  #mainmenu .inner-mainmenu {
    padding: 55px 0;
  }
}

@media (max-width: 575px) {
  #footer,
  #mainmenu .inner-mainmenu {
    padding: 50px 0;
  }
}

#footer .newsletter,
#mainmenu .inner-mainmenu .newsletter {
  max-width: 600px;
  margin: 0 auto 0px;
  text-align: left;
}

#footer .newsletter h2,
#mainmenu .inner-mainmenu .newsletter h2 {
  color: #2e5fa7;
  font-weight: 600;
}

#footer section.menus,
#mainmenu .inner-mainmenu section.menus {
  padding: 0 0 60px 0;
}

@media (max-width: 767px) {
  #footer section.menus,
  #mainmenu .inner-mainmenu section.menus {
    padding: 0 0 20px 0;
  }
}

#footer section.menus .container h2,
#mainmenu .inner-mainmenu section.menus .container h2 {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 12px;
  color: #2e5fa7;
}

@media (max-width: 767px) {
  #footer section.menus .container h2,
  #mainmenu .inner-mainmenu section.menus .container h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  #footer section.menus .container .footer-menu,
  #mainmenu .inner-mainmenu section.menus .container .footer-menu {
    margin-bottom: 20px;
  }
}

#footer section.menus .container .footer-menu ul,
#mainmenu .inner-mainmenu section.menus .container .footer-menu ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

#footer section.menus .container .footer-menu ul li,
#mainmenu .inner-mainmenu section.menus .container .footer-menu ul li {
  line-height: 25px;
}

#footer section.menus .container .footer-menu ul li a,
#mainmenu .inner-mainmenu section.menus .container .footer-menu ul li a {
  color: #2e5fa7;
  font-size: 16px;
  transition: none !important;
}

#footer section.menus .container .footer-menu ul li a:hover,
#mainmenu .inner-mainmenu section.menus .container .footer-menu ul li a:hover {
  font-weight: 500;
}

#footer section.menus .container .footer-menu ul li a.current,
#mainmenu .inner-mainmenu section.menus .container .footer-menu ul li a.current {
  color: #2e5fa7;
  font-weight: 600;
}

#footer .socials,
#mainmenu .inner-mainmenu .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 30px;
}

#footer .socials .icon,
#mainmenu .inner-mainmenu .socials .icon {
  background: #2e5fa7;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}

#footer .socials .icon i,
#footer .socials .icon svg,
#mainmenu .inner-mainmenu .socials .icon i,
#mainmenu .inner-mainmenu .socials .icon svg {
  font-size: 16px;
  transform: scale(1);
  color: #fff !important;
  transition: all 0.2s ease-in-out;
}

#footer .socials .icon:hover,
#mainmenu .inner-mainmenu .socials .icon:hover {
  background: #285493;
}

#footer section.help,
#mainmenu .inner-mainmenu section.help {
  display: none;
}

#footer section.help .container,
#mainmenu .inner-mainmenu section.help .container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  text-align: center;
}

#footer section.help .container a,
#mainmenu .inner-mainmenu section.help .container a {
  font-size: 22px;
  color: #2e5fa7;
  font-weight: 700;
}

@media (max-width: 575px) {
  #footer section.help .container a,
  #mainmenu .inner-mainmenu section.help .container a {
    font-size: 18px;
  }
}

#footer section.help .container a:hover,
#mainmenu .inner-mainmenu section.help .container a:hover {
  color: #285493;
}

#footer section.legal,
#mainmenu .inner-mainmenu section.legal {
  padding: 0 0 20px 0;
}

@media (max-width: 767px) {
  #footer section.legal,
  #mainmenu .inner-mainmenu section.legal {
    padding: 0 0 40px 0;
  }
}

#footer section.legal .realisation,
#mainmenu .inner-mainmenu section.legal .realisation {
  color: #2e5fa7;
}

#footer section.legal .realisation i,
#footer section.legal .realisation svg,
#mainmenu .inner-mainmenu section.legal .realisation i,
#mainmenu .inner-mainmenu section.legal .realisation svg {
  color: #e11d48;
}

#footer section.legal .realisation img,
#mainmenu .inner-mainmenu section.legal .realisation img {
  position: relative;
  top: -1px;
  width: 61px;
}

#footer section.legal .menu,
#mainmenu .inner-mainmenu section.legal .menu {
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: center;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}

@media (max-width: 575px) {
  #footer section.legal .menu,
  #mainmenu .inner-mainmenu section.legal .menu {
    flex-direction: column;
  }
}

#footer section.legal .menu span a,
#mainmenu .inner-mainmenu section.legal .menu span a {
  line-height: 12px;
  padding-right: 10px;
  color: #2e5fa7;
  font-size: 14px;
}

#footer section.legal .menu span a:hover,
#mainmenu .inner-mainmenu section.legal .menu span a:hover {
  color: #285493;
}

#footer section.legal .menu ul,
#mainmenu .inner-mainmenu section.legal .menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#footer section.legal .menu ul li,
#mainmenu .inner-mainmenu section.legal .menu ul li {
  line-height: 12px;
  padding: 0px 10px;
  border-left: 1px solid #2e5fa7;
  font-size: 14px;
  display: inline-block;
}

@media (max-width: 575px) {
  #footer section.legal .menu ul li:first-child,
  #mainmenu .inner-mainmenu section.legal .menu ul li:first-child {
    border-left: none;
    padding-left: 0;
  }
}

#footer section.legal .menu ul li:last-child,
#mainmenu .inner-mainmenu section.legal .menu ul li:last-child {
  padding-right: 0;
}

#footer section.legal .menu ul li a,
#mainmenu .inner-mainmenu section.legal .menu ul li a {
  color: #2e5fa7;
  font-size: 14px;
  transition: none !important;
}

#footer section.legal .menu ul li a:hover,
#mainmenu .inner-mainmenu section.legal .menu ul li a:hover {
  color: #285493;
}

#footer section.legal .menu ul li a.current,
#mainmenu .inner-mainmenu section.legal .menu ul li a.current {
  color: #2e5fa7;
  font-weight: 600;
}

#footer section.payments,
#mainmenu .inner-mainmenu section.payments {
  padding: 0;
}

#footer section.payments .payment-methods,
#mainmenu .inner-mainmenu section.payments .payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer section.payments .payment-methods .icon_container,
#mainmenu .inner-mainmenu section.payments .payment-methods .icon_container {
  text-align: center;
  padding: 0 10px;
}

@media (max-width: 575px) {
  #footer section.payments .payment-methods .icon_container,
  #mainmenu .inner-mainmenu section.payments .payment-methods .icon_container {
    padding: 0 5px;
  }
}

#footer section.payments .payment-methods .icon_container img,
#mainmenu .inner-mainmenu section.payments .payment-methods .icon_container img {
  height: 45px;
  width: 45px;
  border: 2px solid rgba(46, 95, 167, 0.25);
  background: #fff;
  padding: 3px;
  border-radius: 50px;
  transform: translateY(0px);
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  #footer section.payments .payment-methods .icon_container img,
  #mainmenu .inner-mainmenu section.payments .payment-methods .icon_container img {
    height: 40px;
    width: 40px;
  }
}

#footer section.payments .payment-methods .icon_container img:hover,
#mainmenu .inner-mainmenu section.payments .payment-methods .icon_container img:hover {
  transform: translateY(-5px);
}

#footer #notice,
#mainmenu .inner-mainmenu #notice {
  background: #e11d48;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  z-index: 998;
}

#footer #notice .container,
#mainmenu .inner-mainmenu #notice .container {
  display: flex;
  justify-content: center;
  align-content: center;
}

#footer #notice .container p,
#mainmenu .inner-mainmenu #notice .container p {
  margin: 0;
}

body.no-footer #footer {
  padding: 50px 0px;
}

@media (max-width: 575px) {
  body.no-footer #footer {
    padding: 35px 0px;
  }
}

body.no-footer #footer .menus {
  display: none;
}

body.no-footer #footer .help {
  display: block;
}

body.no-footer #footer .legal {
  display: none;
}

body.no-footer #footer .socialmedia {
  display: none;
}

.login-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffb822;
  padding: 15px;
  color: #fff;
  text-align: center;
}

.login-bar strong {
  color: #fff;
  font-weight: 600;
}

.login-bar a {
  color: #fff;
  text-decoration: underline;
}

.m-popover {
  z-index: 9999;
}

.m-popover.popover .popover-body {
  font-size: 13px;
  font-family: "Poppins";
}

.m-popover.popover .popover-body strong {
  font-weight: 600;
}

.m-bootstrap-switch .bootstrap-switch {
  border: 3px solid #eceeef;
}

.accordion {
  position: relative;
}

.accordion .item {
  display: flex;
  flex-direction: column;
}

.accordion .item .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #2e5fa7;
}

@media (max-width: 1199px) {
  .accordion .item .header {
    padding: 6px 18px;
  }
}

@media (max-width: 991px) {
  .accordion .item .header {
    padding: 4px 16px;
  }
}

@media (max-width: 767px) {
  .accordion .item .header {
    padding: 2px 14px;
  }
}

.accordion .item .header .icon-text {
  display: inline-flex;
  padding: 10px 0px;
  align-items: center;
  font-weight: 300;
}

.accordion .item .header .icon-text .icon {
  position: absolute;
  font-size: 18px;
}

.accordion .item .header .icon-text .text {
  font-size: 16px;
  padding-left: 35px;
  line-height: 1.6rem;
}

@media (max-width: 991px) {
  .accordion .item .header .icon-text .text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .accordion .item .header .icon-text .text {
    font-size: 14px;
  }
}

.accordion .item .header .accordion-plus-min {
  box-sizing: border-box;
  transition: transform 0.3s;
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
  position: relative;
}

@media (max-width: 767px) {
  .accordion .item .header .accordion-plus-min {
    width: 12px;
    height: 12px;
  }
}

.accordion .item .header .accordion-plus-min::before {
  content: "";
  display: block;
  width: 17px;
  height: 0;
  border-bottom: solid 3px #979fa4;
  position: absolute;
  bottom: 8px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

@media (max-width: 767px) {
  .accordion .item .header .accordion-plus-min::before {
    width: 12px;
    bottom: 6px;
  }
}

.accordion .item .header .accordion-plus-min::after {
  content: "";
  display: block;
  width: 17px;
  height: 0;
  border-bottom: solid 3px #979fa4;
  position: absolute;
  bottom: 8px;
}

@media (max-width: 767px) {
  .accordion .item .header .accordion-plus-min::after {
    width: 12px;
    bottom: 6px;
  }
}

.accordion .item .header:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border-left: solid 5px #9bd3ae;
}

.accordion .item .header:hover .accordion-plus-min::before {
  border-color: #9bd3ae;
}

.accordion .item .header:hover .accordion-plus-min::after {
  border-color: #9bd3ae;
}

.accordion .item .header:not(.collapsed) {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border-left: solid 5px #2e5fa7 !important;
}

.accordion .item .header:not(.collapsed) .icon-text {
  font-weight: 600;
}

.accordion .item .header:not(.collapsed) .accordion-plus-min {
  transform: rotate(0deg) !important;
}

.accordion .item .header:not(.collapsed) .accordion-plus-min::before {
  width: 0;
  border-color: #2e5fa7;
}

.accordion .item .header:not(.collapsed) .accordion-plus-min::after {
  border-color: #2e5fa7;
}

.accordion .item .header.subitem:hover {
  background: rgba(155, 211, 174, 0.02) !important;
  color: #9bd3ae !important;
  border-left: solid 0px #9bd3ae !important;
}

.accordion .item .header.subitem:hover .accordion-plus-min::before {
  border-color: rgba(155, 211, 174, 0.9);
}

.accordion .item .header.subitem:hover .accordion-plus-min::after {
  border-color: rgba(155, 211, 174, 0.9);
}

.accordion .item .header.subitem:not(.collapsed) {
  background: rgba(46, 95, 167, 0.03) !important;
  color: #2e5fa7 !important;
  border-left: solid 0px #2e5fa7 !important;
}

.accordion .item .header.subitem:not(.collapsed) .accordion-plus-min {
  transform: rotate(0deg) !important;
}

.accordion .item .header.subitem:not(.collapsed) .accordion-plus-min::before {
  width: 0;
  border-color: rgba(46, 95, 167, 0.8);
}

.accordion .item .header.subitem:not(.collapsed) .accordion-plus-min::after {
  border-color: rgba(46, 95, 167, 0.8);
}

.accordion .item .header.subitem:hover {
  border-left: solid 0px #9bd3ae;
}

.accordion .item .body .accordion-content {
  padding: 20px;
  text-align: left;
  border-bottom: solid 1px #eceeef;
  font-size: 15px;
}

@media (max-width: 767px) {
  .accordion .item .body .accordion-content {
    padding: 12px;
    font-size: 14px;
  }
}

.accordion .item .body .accordion-content p {
  font-size: 15px;
}

@media (max-width: 767px) {
  .accordion .item .body .accordion-content p {
    font-size: 14px;
  }
}

.accordion .item .body .accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion .item .body .accordion-content a {
  color: #2e5fa7;
}

.accordion .item .body .accordion-content ul li {
  font-size: 15px;
}

@media (max-width: 767px) {
  .accordion .item .body .accordion-content ul li {
    font-size: 14px;
  }
}

.accordion .item .body.collapse .accordion-content {
  color: #2e5fa7;
  background: rgba(46, 95, 167, 0.03) !important;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0 0 5px;
}

.select2-container .select2-dropdown .select2-search .select2-search__field {
  padding: 10px 15px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #eceeef;
  font-size: 14px;
  color: #636c72;
}

.select2-container .select2-dropdown .select2-search .select2-search__field::-moz-placeholder {
  color: #979fa4;
}

.select2-container .select2-dropdown .select2-search .select2-search__field::placeholder {
  color: #979fa4;
}

.select2-container .select2-results .select2-results__options {
  position: relative;
  min-height: 325px;
}

.select2-container .select2-results .select2-results__options .select2-results__option {
  font-size: 14px;
  border-left: solid 0px #9bd3ae;
  transition: all 0.2s ease-in-out;
}

.select2-container .select2-results .select2-results__options .select2-results__option:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border-left: solid 5px #9bd3ae !important;
}

.select2-container .select2-results .select2-results__options .select2-results__option[aria-selected=true] {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border-left: solid 5px #2e5fa7 !important;
}

.irs {
  font-family: "Poppins";
}

.irs.irs--round .irs-handle {
  border: 5px solid #9bd3ae;
  box-shadow: none;
  transition: background 0.2s ease-in-out;
  cursor: grab;
}

.irs.irs--round .irs-handle:hover {
  background: #fff;
}

.irs.irs--round .irs-handle.state_hover {
  background: #fff;
}

.irs.irs--round .irs-bar {
  background-color: #9bd3ae;
}

.irs.irs--round .irs-min,
.irs.irs--round .irs-max {
  background: #9bd3ae;
  color: #fff;
}

.irs.irs--round .irs-single {
  background-color: #2e5fa7;
  font-weight: 400;
}

.irs.irs--round .irs-single:before {
  border-top-color: #2e5fa7;
}

.alert {
  border: none;
}

.alert h3 {
  font-weight: 600;
  font-size: 20px;
}

.alert .close {
  transition: all 0.2s ease-in-out;
}

.alert.alert-danger {
  background: #e11d48;
  color: #fff;
}

.alert.alert-danger .close {
  color: #fff;
}

.alert.alert-danger a {
  color: #fff;
  text-decoration: underline;
}

.alert.alert-success,
.alert.alert-brand {
  background: #9bd3ae;
  color: #fff;
}

.alert.alert-success .close,
.alert.alert-brand .close {
  color: #fff;
}

.alert.alert-success a,
.alert.alert-brand a {
  color: #fff;
  text-decoration: underline;
}

.alert.alert-secondary {
  color: #7b868d;
}

.alert ul {
  margin: 0;
  padding: 0;
}

.alert ul li {
  list-style-type: none;
}

.alert .terms {
  color: #9bd3ae !important;
  cursor: pointer;
}

.alert .terms:hover {
  color: #2e5fa7 !important;
}

.breadcrumb {
  list-style: none;
  background: none;
  margin: 0;
  padding: 0px;
  font-size: 14px;
}

.breadcrumb a {
  color: #636c72;
}

.breadcrumb a:hover {
  color: #9bd3ae;
}

.breadcrumb .breadcrumb-item {
  color: #899299;
}

.breadcrumb .breadcrumb-item::before {
  content: "/";
  font-size: 11px;
  color: #a4abb0;
}

.breadcrumb .breadcrumb-item:first-child::before {
  content: "";
}

.breadcrumb .breadcrumb-item.active a {
  color: #899299 !important;
  pointer-events: none !important;
}

.page-intro {
  padding: 0px 0px 25px;
}

.page-intro .breadcrumb {
  margin-bottom: 20px;
  display: flex;
}

@media (max-width: 575px) {
  .page-intro .breadcrumb {
    display: block;
  }
}

.page-intro h1 {
  font-size: 50px;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
}

@media (max-width: 991px) {
  .page-intro h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .page-intro h1 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .page-intro h1 {
    font-size: 26px;
  }
}

.page-intro h2 {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 600;
  color: #9bd3ae;
}

@media (max-width: 991px) {
  .page-intro h2 {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .page-intro h2 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .page-intro h2 {
    font-size: 17px;
  }
}

.page-intro p {
  color: #636c72;
}

.page-intro p a {
  text-decoration: underline !important;
}

.page-intro.centered h1,
.page-intro.centered h2,
.page-intro.centered p {
  text-align: center;
}

@media (max-width: 991px) {
  .page-intro.centered h1,
  .page-intro.centered h2,
  .page-intro.centered p {
    text-align: left;
  }
}

.page-intro.centered p {
  max-width: 50%;
  margin: 0 auto;
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .page-intro.centered p {
    max-width: 60%;
  }
}

@media (max-width: 991px) {
  .page-intro.centered p {
    max-width: 100%;
  }
}

.page-intro.centered .breadcrumb {
  justify-content: center;
}

@media (max-width: 991px) {
  .page-intro.centered .breadcrumb {
    justify-content: flex-start;
  }
}

#admin-debug {
  background: #e11d48;
  position: fixed;
  bottom: 0px;
  width: 100%;
  color: #fff;
  padding: 20px;
  margin: 0;
}

#admin-debug li {
  margin-left: 20px;
}

.tool {
  position: relative;
}

.tool .overlay_loader {
  position: absolute;
  background: #fff;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.tool .overlay_loader.done {
  opacity: 0;
  visibility: hidden;
}

.tool label {
  font-size: 15px;
}

@media (max-width: 575px) {
  .tool label {
    font-size: 14px;
  }
}

.tool label span {
  font-weight: 600;
}

.tool label .info-icon {
  border-radius: 50px;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #979fa4;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 0px;
}

.tool label .info-icon i,
.tool label .info-icon svg {
  position: relative;
  right: 0.5px;
  color: #fff;
  font-size: 9px;
}

.tool label .info-icon:hover {
  background: #23487f;
}

.tool .bootstrap-select .select_qty {
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool .bootstrap-select .select_qty .price {
  font-weight: 600;
}

.tool .bootstrap-select .dropdown-menu .inner {
  max-height: 300px !important;
  overflow-y: auto;
}

.tool .options {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 575px) {
  .tool .options {
    grid-template-columns: 1fr;
  }
}

.tool .options .option {
  border-radius: 5px;
  padding: 10px;
  border: 2px solid #dee2e3;
  background: #fff;
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

@media (max-width: 575px) {
  .tool .options .option {
    padding: 6px;
  }
}

.tool .options .option input {
  display: none;
}

.tool .options .option .color {
  border-radius: 50px;
  width: 35px;
  height: 35px;
  border: 2px solid #dee2e3;
}

@media (max-width: 575px) {
  .tool .options .option .color {
    width: 32px;
    height: 32px;
  }
}

.tool .options .option .color img,
.tool .options .option .color .background {
  border: 2px solid #fff;
  display: block;
  border-radius: 50px;
  width: 31px;
  height: 31px;
}

@media (max-width: 575px) {
  .tool .options .option .color img,
  .tool .options .option .color .background {
    width: 28px;
    height: 28px;
  }
}

.tool .options .option .text {
  margin-left: 10px;
}

.tool .options .option .text .title {
  display: block;
  font-size: 14px;
  line-height: 17px;
}

.tool .options .option .text .price {
  display: block;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
}

.tool .options .option .m-badge {
  position: absolute;
  top: calc(50% - 11px);
  right: 10px;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 50px;
}

@media (max-width: 575px) {
  .tool .options .option .m-badge {
    top: calc(50% - 13px);
  }
}

.tool .options .option .btn-option {
  position: absolute;
  bottom: 10px;
  left: 30px;
  width: 18px;
  height: 18px;
}

@media (max-width: 575px) {
  .tool .options .option .btn-option {
    bottom: 5px;
    left: 24px;
  }
}

.tool .options .option .btn-option .info-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  background: #979fa4;
  transition: all 0.2s ease-in-out;
}

.tool .options .option .btn-option .info-btn i,
.tool .options .option .btn-option .info-btn svg {
  font-size: 8px;
  color: #fff;
}

.tool .options .option .btn-option .info-btn:hover {
  background: #23487f;
}

.tool .options .option:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border: solid 2px #9bd3ae !important;
}

.tool .options .option.active {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border: solid 2px #2e5fa7 !important;
}

.tool .options .option.excluded {
  cursor: not-allowed;
  border: 2px solid #f2f3f4 !important;
}

.tool .options .option.excluded .text,
.tool .options .option.excluded .color,
.tool .options .option.excluded .m-badge {
  opacity: 0.35;
}

.tool .options .option.excluded:hover {
  border: 2px solid #f2f3f4 !important;
  color: #636c72 !important;
  background: #fff !important;
}

.tool #custom-sizing {
  max-height: 0;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.tool #custom-sizing.active {
  max-height: 260px;
  opacity: 1;
}

.tool #custom-sizing .sizing-wrapper {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
  padding-bottom: 10px;
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  position: relative;
}

.tool #custom-sizing .sizing-wrapper .customsize_loader {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
}

.tool #custom-sizing .sizing-wrapper .customsize_loader.done {
  opacity: 0;
  visibility: hidden;
}

.tool #custom-sizing .sizing-wrapper .customsize_loader .loader .text {
  margin-top: 10px;
}

.tool #custom-sizing .sizing-wrapper .size-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 5px;
}

.tool #custom-sizing .sizing-wrapper .size-row .title {
  margin: 0;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
}

.tool #custom-sizing .sizing-wrapper .size-row .title strong {
  font-weight: 600;
}

.tool #custom-sizing .sizing-wrapper .size-row .title .form-note {
  font-size: 11px;
  font-weight: normal;
  display: none;
}

.tool #custom-sizing .sizing-wrapper .size-row .form-control {
  width: 80px;
  margin: 0 5px 0 10px;
  padding: 8px 10px;
  font-size: 12px;
}

.tool #custom-sizing .sizing-wrapper .size-row .form-control-feedback {
  display: none !important;
  color: #9bd3ae;
}

.tool #custom-sizing .sizing-wrapper .size-row .range {
  width: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 15px;
}

.tool #custom-sizing .sizing-wrapper .size-row .range a {
  height: 24px;
  width: 24px;
  min-width: 24px;
  box-sizing: border-box;
  font-size: 15px;
  cursor: pointer;
  background: #fff;
  color: #c2c9cc;
  border: solid 2px #dee2e3;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool #custom-sizing .sizing-wrapper .size-row .range a i,
.tool #custom-sizing .sizing-wrapper .size-row .range a svg {
  font-size: 12px;
}

.tool #custom-sizing .sizing-wrapper .size-row .range a:hover {
  background: white;
  color: #89cba0;
  border: solid 2px #9bd3ae;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger {
  width: 100%;
  margin: 0 5px;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger.noUi-target {
  background: #eceeef;
  box-shadow: none;
  border-radius: 50px;
  padding: 0 3px 0 15px;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger .noUi-connect {
  border-radius: 50px;
  box-shadow: none;
  margin-left: -15px;
  background: #2e5fa7;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger .noUi-origin .noUi-handle {
  top: -7px;
  outline: none;
  box-shadow: none;
  border: none;
  background: #f2f6fb;
  color: #285493;
  border: solid 2px #2e5fa7;
  border-radius: 50px;
  box-shadow: none;
  cursor: grab;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger .noUi-origin .noUi-handle::before,
.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger .noUi-origin .noUi-handle::after {
  display: none;
}

.tool #custom-sizing .sizing-wrapper .size-row .range .nouislider-drag-danger .noUi-origin .noUi-handle.noUi-active {
  cursor: grabbing;
}

.tool #custom-sizing .sizing-wrapper .customsize_errors {
  background: #e11d48;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.tool #custom-sizing .sizing-wrapper .customsize_errors.done {
  display: none;
}

.tool #custom-sizing .sizing-wrapper .customsize_errors .header {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.tool #custom-sizing .sizing-wrapper .customsize_errors .customsize_error {
  color: #fff;
  font-size: 14px;
}

.tool #quantities {
  position: relative;
}

.tool #quantities .custom-qty {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  pointer-events: all;
  max-height: 49px;
  border: none;
  padding: 18px;
}

@media (max-width: 575px) {
  .tool #quantities .custom-qty {
    max-height: 45px;
  }
}

.tool #quantities .custom-qty.show {
  z-index: 9999;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.tool #quantities .btn-qty {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: -1;
  pointer-events: all;
  max-height: 52px;
  transition: none !important;
  color: #fff;
}

@media (max-width: 575px) {
  .tool #quantities .btn-qty {
    top: 7px;
    right: 7px;
  }
}

.tool #quantities .btn-qty.show {
  z-index: 10000;
}

.tool .shipping {
  display: block;
  margin: 20px 0px 30px;
  font-size: 15px;
}

@media (max-width: 575px) {
  .tool .shipping {
    font-size: 14px;
    margin: 10px 0px 15px;
  }
}

.tool .shipping .date {
  font-weight: 600;
}

.tool .shipping .info-icon {
  border-radius: 50px;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #979fa4;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 0px;
}

.tool .shipping .info-icon i,
.tool .shipping .info-icon svg {
  position: relative;
  right: 0.5px;
  color: #fff;
  font-size: 9px;
}

.tool .shipping .info-icon:hover {
  background: #23487f;
}

.tool .templates {
  margin-top: 15px;
  text-align: center;
}

.tool .templates .item .or {
  padding-right: 5px;
}

.tool .templates .item .download {
  text-decoration: underline;
  color: #636c72;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.tool .templates .item .download:hover {
  color: #2e5fa7;
}

.tool .templates .item.m-loader.m-loader--light {
  padding-right: 40px;
}

.tool .templates .item.m-loader.m-loader--light::before {
  border-top-color: #636c72;
}

.tool .debug {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 5px solid #2e5fa7;
  font-size: 14px;
  font-weight: 400;
}

.tool .debug .debug-row {
  border-bottom: 1px solid #d0ead9;
  padding-bottom: 2px;
  margin-bottom: 2px;
}

.tool .debug .debug-row .inner-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f4faf6;
}

.tool .debug .debug-row .inner-row:last-child {
  border: none;
}

.tool .debug .debug-row.qty {
  color: #e11d48;
}

.tool .debug .debug-row.defaults {
  color: #78c391;
}

.tool .debug .debug-row.size {
  color: #2e5fa7;
}

.tool .debug .debug-row.radio {
  color: #78c391;
}

.tool .debug .debug-row.totals {
  color: #2e5fa7;
}

.tool .debug .debug-row.calculations {
  color: #e11d48;
}

.tool .debug .debug-row.subtotals {
  color: #2e5fa7;
}

.tool .debug .debug-row.discount {
  color: #78c391;
}

.tool .debug .debug-row.margin {
  color: #e11d48;
}

.design-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  padding: 0 200px;
}

.design-options.two {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1199px) {
  .design-options {
    grid-gap: 15px;
    padding: 0 80px;
  }
}

@media (max-width: 991px) {
  .design-options {
    grid-template-columns: 1fr;
  }

  .design-options.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .design-options {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .design-options {
    padding: 0;
  }
}

.design-options .design-option {
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  background: #fff;
  margin: 0;
  transition: all 0.2s ease-in-out;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .design-options .design-option {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .design-options .design-option {
    flex-direction: row;
  }
}

.design-options .design-option .image {
  margin: 20px 0 40px 0;
}

@media (max-width: 991px) {
  .design-options .design-option .image {
    display: none;
  }
}

.design-options .design-option .image img {
  max-width: 100%;
  max-height: 150px;
}

.design-options .design-option .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.design-options .design-option .text .title {
  font-size: 24px;
  font-weight: 600;
  color: #2e5fa7;
}

@media (max-width: 1199px) {
  .design-options .design-option .text .title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .design-options .design-option .text .title {
    margin-top: 20px;
  }
}

.design-options .design-option .text .description {
  font-size: 15px;
}

@media (max-width: 1199px) {
  .design-options .design-option .text .description {
    font-size: 14px;
  }
}

.design-options .design-option .text .btn {
  position: relative;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .design-options .design-option .text .btn {
    display: inline-block;
    max-width: 300px;
    margin-top: 0;
  }
}

.design-options .design-option .text .btn .price {
  font-weight: 300;
  background: #fff;
  padding: 7px 8px;
  font-size: 14px;
  color: #2e5fa7;
  border-radius: 50px;
  position: absolute;
  right: 7px;
  bottom: 5px;
}

@media (max-width: 991px) {
  .design-options .design-option .text .btn .price {
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  .design-options .design-option .text .btn .price {
    font-size: 12px !important;
  }
}

.design-options .design-option .text .btn .price strong {
  font-weight: 600;
}

.design-options .design-option .text .info {
  cursor: help;
  margin-top: 20px;
  font-size: 15px;
  text-decoration: underline;
  color: #979fa4;
}

@media (max-width: 991px) {
  .design-options .design-option .text .info {
    margin-top: 15px;
    display: inline-block;
  }
}

.design-options .design-option.off {
  cursor: not-allowed;
}

.design-options .design-option.off img,
.design-options .design-option.off .title,
.design-options .design-option.off .description {
  opacity: 0.15;
}

.design-options .design-option.off .btn,
.design-options .design-option.off .info {
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 767px) {
  .design-options .design-option.editor {
    display: none;
  }
}

.mfp-bg {
  background: rgba(0, 0, 0, 0.47) !important;
}

.mfp-bg.mfp-with-zoom {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.mfp-bg.mfp-with-zoom.mfp-ready {
  opacity: 1;
}

.mfp-bg.mfp-with-zoom.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-close {
  transition: all 0.2s ease-in-out;
  color: #fff;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.mfp-wrap .mfp-close svg {
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  font-size: 28px;
}

.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:focus {
  top: 10px;
  right: 10px;
}

.mfp-wrap .mfp-container .mfp-image-holder,
.mfp-wrap .mfp-container .mfp-content {
  max-width: 70rem;
  padding: 0 20px;
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder,
  .mfp-wrap .mfp-container .mfp-content {
    padding: 0;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .mfp-figure:after,
.mfp-wrap .mfp-container .mfp-content .mfp-figure:after {
  display: none;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block,
.mfp-wrap .mfp-container .mfp-content .white-popup-block {
  margin: 50px auto;
  max-width: 60rem;
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block {
    margin: 0px auto;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner {
  background: #fff;
  padding: 50px;
  margin: 10px;
  max-height: calc(100vh - 100px);
  overflow-y: scroll;
  position: relative;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner {
    padding: 35px;
  }
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner {
    padding: 30px;
    max-height: calc(100vh - 35px);
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner h2,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner h2 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  display: block;
  margin-top: 20px;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner h2 {
    font-size: 15px;
    line-height: 20px;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner h2:first-child,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner h2:first-child {
  margin-top: 0;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner p:last-child,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner p:last-child {
  margin-bottom: 0 !important;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner ol,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner ol {
  padding: 0px 0px 0px 14px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block .popup-inner ul,
.mfp-wrap .mfp-container .mfp-content .white-popup-block .popup-inner ul {
  padding: 0px 0px 0px 18px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner {
  padding: 35px;
}

@media (max-width: 991px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner {
    padding: 20px;
  }
}

@media (max-width: 400px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner {
    padding: 20px;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner h2,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner h2 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner h2 {
    font-size: 24px;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner ul,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner ul {
  padding: 0;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner .manual-address,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner .manual-address {
  margin-top: 30px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner .address-result,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner .address-result {
  margin-top: 32px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.padding-small .popup-inner .address-result .alert,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.padding-small .popup-inner .address-result .alert {
  margin: 0;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design {
  max-width: 1200px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design.two,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design.two {
  max-width: 800px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design .popup-inner,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design .popup-inner {
  overflow-y: auto;
  padding: 0px;
  background: none;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design .popup-inner h2,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design .popup-inner h2 {
  font-size: 56px;
  line-height: 50px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 15px 0px 60px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design .popup-inner h2 {
    font-size: 46px;
    line-height: 40px;
    margin: 10px 0px 40px;
  }
}

@media (max-width: 767px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.popup-design .popup-inner h2,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.popup-design .popup-inner h2 {
    font-size: 36px;
    line-height: 30px;
    margin: 15px 0px 30px;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.terms h2,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.terms h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2e5fa7;
  margin-top: 30px;
  margin-bottom: 0.5rem;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.terms h3.header,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.terms h3.header {
  font-weight: 700;
  color: #2e5fa7;
  font-size: 36px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.terms strong,
.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.terms b,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.terms strong,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.terms b {
  font-weight: 600 !important;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info {
  max-width: 40rem;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner {
  overflow-y: auto;
  padding: 35px;
}

@media (max-width: 991px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner {
    padding: 30px;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner h2,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2e5fa7;
  margin-bottom: 0.5rem;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner h3.header,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner h3.header {
  font-weight: 800;
  color: #2e5fa7;
  font-size: 36px;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner strong,
.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner b,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner strong,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner b {
  font-weight: 600 !important;
}

.mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner img,
.mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner img {
  display: block;
  margin: 0 auto;
  max-width: 350px;
}

@media (max-width: 575px) {
  .mfp-wrap .mfp-container .mfp-image-holder .white-popup-block.info .popup-inner img,
  .mfp-wrap .mfp-container .mfp-content .white-popup-block.info .popup-inner img {
    max-width: 100%;
  }
}

.mfp-wrap.mfp-with-zoom .mfp-container {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.mfp-wrap.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-wrap.mfp-with-zoom.mfp-removing .mfp-container {
  opacity: 0;
}

.mfp-wrap.width-none .mfp-content {
  max-width: none;
}

.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader .spinner {
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.loader .dot1,
.loader .dot2 {
  width: 60%;
  height: 60%;
  position: absolute;
  top: 0;
  background-color: #9bd3ae;
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.loader .dot2 {
  background-color: #2e5fa7;
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

.loader .text {
  margin-top: 40px;
  color: #2e5fa7;
  font-weight: 600;
  font-size: 18px;
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.swal2-container > div {
  border-radius: 12px;
}

.swal2-container.swal2-top-end {
  top: 5px !important;
  right: 5px !important;
}

.swal2-container.swal2-top-end.swal2-shown {
  background-color: transparent !important;
}

.swal2-container .swal2-toast {
  padding: 10px 13px !important;
  background: #9bd3ae !important;
}

.swal2-container .swal2-toast.swal2-show {
  animation: slideInRight 0.4s !important;
}

.swal2-container .swal2-toast .swal2-title {
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 500;
}

.swal2-container .swal2-toast .swal2-icon.swal2-success {
  border-color: #fff;
}

.swal2-container .swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #fff;
}

.swal2-container .swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(255, 255, 255, 0.3);
}

.swal2-container .swal2-icon.swal2-error {
  border-color: #e11d48;
}

.swal2-container .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background: #e11d48;
}

.swal2-container .swal2-icon.swal2-success {
  border-color: #9bd3ae;
}

.swal2-container .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #9bd3ae;
}

.swal2-container .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(155, 211, 174, 0.3);
}

.swal2-container .swal2-contentwrapper .swal2-title {
  font-size: 36px;
  font-weight: 800;
  color: #2e5fa7;
}

.swal2-container .swal2-contentwrapper .swal2-content {
  font-size: 16px;
  font-weight: 300;
}

.swal2-container .swal2-buttonswrapper .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.swal2-container.swal2-shown {
  background: rgba(0, 0, 0, 0.47) !important;
}

#minicart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1042;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.47);
}

#minicart.active {
  visibility: visible;
  opacity: 1;
}

#minicart .panel {
  position: absolute;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  height: 100vh;
  right: 0px;
  width: 390px;
  transform: translateX(390px);
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
}

@media (max-width: 575px) {
  #minicart .panel {
    max-width: 100%;
  }
}

#minicart .panel.active {
  transform: translateX(0px);
}

#minicart .panel .panel-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#minicart .panel .panel-content .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 85px;
  border-bottom: 1px solid #f7f7f9;
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
}

#minicart .panel .panel-content .panel-header .close {
  width: 35%;
}

#minicart .panel .panel-content .panel-header .close .close-panel {
  cursor: pointer;
  position: relative;
  width: 38px;
  height: 38px;
  background: #eeeef2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 20px;
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .close .close-panel svg {
  font-size: 20px;
  color: #99a4a9;
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .close .close-panel:hover {
  background: #e8e8ee;
}

#minicart .panel .panel-content .panel-header .close .close-panel:hover svg {
  color: #636c72;
}

#minicart .panel .panel-content .panel-header .cartwrapper {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon {
  position: relative;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a {
  cursor: pointer;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a i,
#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a svg {
  color: #9bd3ae;
  font-size: 32px;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a:hover i,
#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a:hover svg {
  transform: scale(1.1);
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a .items {
  position: absolute;
  bottom: -7px;
  right: -7px;
  background: #2e5fa7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a .items span {
  position: relative;
  left: 0px;
}

#minicart .panel .panel-content .panel-header .header-total {
  width: 35%;
  text-align: right;
  position: relative;
  right: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #9bd3ae;
}

#minicart .panel .panel-content .panel-body {
  padding: 20px;
  align-self: flex-start;
  overflow-y: hidden;
  position: relative;
  height: 100%;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eceeef;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  #minicart .panel .panel-content .panel-body #cart-items .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item.removed {
  animation: removed-item-animation 0.4s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header h3 {
  display: block;
  font-size: 18px;
  color: #9bd3ae;
  font-weight: 600;
  margin-bottom: 5px;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header h3 small {
  display: none;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing {
  align-self: flex-start;
  text-align: right;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing .price {
  font-size: 16px;
  font-weight: 600;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing .remove-cart-item {
  margin-left: 5px;
  cursor: pointer;
  color: #a4abb0;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing .remove-cart-item:hover {
  color: #e11d48;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 25%;
  margin-right: 10px;
}

@media (max-width: 374px) {
  #minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .image {
    display: none;
  }
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs {
  width: 75%;
}

@media (max-width: 374px) {
  #minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs {
    width: 100%;
  }
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div {
  display: flex;
  font-size: 13px;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div .option {
  font-weight: 500;
  width: 35%;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div .value {
  width: 65%;
}

#minicart .panel .panel-content .panel-body #cart-totals h3 {
  border-top-left-radius: 5px;
  font-weight: 800;
  font-size: 30px;
  color: #2e5fa7;
  margin-bottom: 15px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows {
  width: 100%;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row small {
  font-weight: 600;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.calculated {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #eceeef;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .subtotal {
  font-weight: 500;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .total {
  font-size: 20px;
  font-weight: 600;
  color: #2e5fa7;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a {
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #9bd3ae;
  text-decoration: underline;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a .accordion-plus-min {
  left: 5px;
  top: 5px;
  box-sizing: border-box;
  transition: transform 0.3s;
  width: 10px;
  height: 10px;
  transform: rotate(180deg);
  position: relative;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a .accordion-plus-min::before {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a .accordion-plus-min::after {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min {
  transform: rotate(0deg) !important;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min::before {
  width: 0;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a:hover,
#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a:focus,
#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a:active {
  text-decoration: underline !important;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form {
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form.show {
  opacity: 1;
  max-height: 150px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form {
  width: 100%;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .alert {
  margin: 10px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .form-group {
  position: relative;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .form-group .form-control {
  padding: 12px 120px 12px 12px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .form-group .btn {
  position: absolute;
  margin-top: 0;
  right: 7px;
  top: 12px;
  border-radius: 3px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .remove-discount {
  color: #a4abb0;
  cursor: pointer;
  position: relative;
  top: 0px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .remove-discount:hover {
  color: #e11d48;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .remove-discount i,
#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .remove-discount svg {
  font-size: 14px;
}

#minicart .panel .panel-content .panel-footer .btns {
  padding: 20px;
}

#minicart .panel .panel-content .panel-footer .btns .btn-checkout {
  margin-top: 10px;
}

#minicart .panel .panel-content .panel-footer .btns .btn-checkout:hover,
#minicart .panel .panel-content .panel-footer .btns .btn-checkout:focus,
#minicart .panel .panel-content .panel-footer .btns .btn-checkout:active {
  color: #fff !important;
}

#minicart .panel .panel-content .panel-footer .secure-payment {
  height: 100px;
  border-top: 1px solid #f7f7f9;
  box-shadow: 0px -20px 20px -30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  #minicart .panel .panel-content .panel-footer .secure-payment {
    display: none;
  }
}

#minicart .panel .panel-content .panel-footer .secure-payment img {
  width: 165px;
}

.m_datatable.m-datatable--default .m-datatable__table {
  border-radius: 5px;
  box-shadow: 0px 1px 20px -10px rgba(0, 0, 0, 0.1);
  min-height: 0 !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell {
  background: rgba(46, 95, 167, 0.05);
  padding: 16px 10px;
}

@media (max-width: 991px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell {
    padding: 15px 8px;
  }
}

@media (max-width: 767px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell {
    padding: 14px 6px;
  }
}

@media (max-width: 575px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell {
    padding: 13px 5px;
  }
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell > span {
  color: #285493;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell > span i {
  color: #285493;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell[data-title=Acties] span {
  opacity: 0;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row {
  transition: all 0.2s ease-in-out;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell {
  background: #fff !important;
  border-bottom: solid 1px #eceeef;
  transition: all 0.2s ease-in-out;
  padding: 11px 10px;
}

@media (max-width: 991px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell {
    padding: 11px 8px;
  }
}

@media (max-width: 767px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell {
    padding: 11px 6px;
  }
}

@media (max-width: 575px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell {
    padding: 11px 5px;
  }
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell.m-datatable__toggle--detail .m-datatable__toggle-detail {
  color: #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell.m-datatable__toggle--detail i {
  cursor: cell;
  font-size: 14px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span {
  transition: all 0.2s ease-in-out;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span strong {
  font-weight: 500;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .m-card-user {
  margin-left: 10px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span p {
  margin: 0;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .link-small {
  font-size: 14px;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .link-small {
    font-size: 13px;
  }
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .link-small:hover {
  color: #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .btn-accent,
.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .btn-brand {
  color: #fff;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .specs {
  font-size: 13px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .m-badge {
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: 400;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:last-child .m-datatable__cell {
  border-bottom: 0;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:hover .m-datatable__cell {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:hover .m-datatable__cell > span {
  color: #89cba0;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:hover .m-datatable__cell > span .m-card-user .m--bg-fill-brand {
  background: #9bd3ae !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:hover .m-datatable__cell > span .m-card-user .m--bg-fill-brand span {
  color: #fff !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail {
  width: 100%;
  display: block;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail {
  width: 100%;
  display: block;
  padding: 10px 8px;
  background: #fff !important;
  border-bottom: solid 1px #eceeef;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail table {
  width: 100%;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row {
  background: none !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell {
  background: none !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 5px 5px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span {
  color: #636c72;
}

@media (max-width: 767px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span {
    width: 100% !important;
  }

  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .dropdown .btn {
    background: #2e5fa7;
    color: #fff;
  }

  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .dropdown .btn::after {
    font-size: 14px;
  }
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .link-small {
  font-size: 14px;
  color: #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .m-badge {
  font-size: 11px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .btn {
  color: #2e5fa7;
  font-size: 16px;
}

@media (max-width: 767px) {
  .m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .btn {
    width: 100%;
    color: #fff;
  }
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell > span .m-btn--icon {
  height: unset;
  padding: 0.2rem 0.8rem;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell:first-child {
  width: 100px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row-detail .m-datatable__detail .m-datatable__row .m-datatable__cell:last-child {
  font-weight: 500 !important;
}

@media (max-width: 991px) {
  .m_datatable.m-datatable--default .m-datatable__pager {
    margin-top: 10px !important;
  }
}

@media (max-width: 767px) {
  .m_datatable.m-datatable--default .m-datatable__pager {
    margin-top: 5px !important;
  }
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav {
  display: inline-flex;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link {
  border-radius: 50px !important;
  background: #fff;
  color: #636c72;
  font-weight: 600 !important;
  border: solid 2px #eceeef;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border: solid 2px #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--active {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border: solid 2px #2e5fa7 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--disabled {
  background: #fff;
  border: solid 2px #eceeef;
  cursor: not-allowed;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--disabled:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border: solid 2px #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--next,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--prev {
  background: #fff;
  border: solid 2px #eceeef;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--next:hover,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--prev:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border: solid 2px #9bd3ae;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li .m-pager-input {
  padding: 10px;
  font-family: "Poppins";
  color: #636c72;
  background: #fff;
  font-size: 14px !important;
  border: solid 2px #eceeef;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle {
  border-radius: 50px !important;
  background: #fff;
  color: #636c72;
  font-weight: 600 !important;
  border: solid 2px #eceeef !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle::after {
  position: absolute;
  font-family: "FontAwesome";
  font-size: 16px;
  content: "\F107";
  color: #636c72;
  right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border: solid 2px #9bd3ae !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle:hover::after {
  color: #89cba0;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .btn.dropdown-toggle {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border: solid 2px #2e5fa7 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .btn.dropdown-toggle::after {
  color: #285493 !important;
  transform: rotate(180deg);
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li a {
  font-size: 12px;
  border-left: solid 0px #9bd3ae;
  padding: 8px 12px;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li:hover a {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border-left: solid 5px #9bd3ae !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li:hover a span {
  color: #89cba0 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border-left: solid 5px #2e5fa7 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a .check-mark {
  font-size: 12px !important;
  color: #2e5fa7 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a .check-mark:before {
  font-family: "FontAwesome";
  content: "\F00C" !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a span {
  color: #285493 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-detail {
  font-size: 14px;
}

.dropdown-menu {
  padding: 0;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.15);
}

.dropdown-menu[x-placement=bottom-end]::before {
  content: "" !important;
  display: inline-block !important;
  box-shadow: 0px -5px 15px -3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -8px;
  right: 25px;
  bottom: auto;
  border-top: none;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.dropdown-menu[x-placement=top-end]::before {
  content: "" !important;
  display: inline-block !important;
  box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -7px;
  right: 25px;
  top: auto;
  border-bottom: none;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

.dropdown-menu.width-s {
  width: 220px;
}

.dropdown-menu.width-m {
  width: 270px;
}

.dropdown-menu .dropdown-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 15px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #2e5fa7;
  color: #636c72;
}

.dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-menu .dropdown-item .icon-text {
  display: inline-flex;
  padding: 0px 0px;
  align-items: center;
  font-weight: 300;
  color: #636c72;
}

.dropdown-menu .dropdown-item .icon-text .icon {
  position: absolute;
  font-size: 14px;
}

.dropdown-menu .dropdown-item .icon-text .text {
  padding-left: 25px;
  line-height: 1.6rem;
  font-size: 13px;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border-left: solid 5px #9bd3ae;
}

.dropdown-menu .dropdown-item:hover .icon-text,
.dropdown-menu .dropdown-item:focus .icon-text,
.dropdown-menu .dropdown-item:active .icon-text {
  color: #89cba0;
}

.dropdown-menu .dropdown-item.active {
  background: rgba(46, 95, 167, 0.05);
  color: #285493;
  border-left: solid 5px #2e5fa7;
}

.dropdown-menu .dropdown-item.active .icon-text {
  color: #285493;
}

.dropdown-menu .dropdown-item.active .icon-text .text {
  font-weight: 600;
}

.dropdown-menu .dropdown-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.dropdown-menu .dropdown-item.delete {
  border-bottom: none;
}

.dropdown-menu .dropdown-item.delete:hover {
  background: rgba(225, 29, 72, 0.05);
  color: #ca1a41 !important;
  border-left: solid 5px #e11d48;
}

.dropdown-menu .dropdown-item.delete:hover .icon-text {
  color: #ca1a41;
}

#address_book .addresses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  #address_book .addresses-header {
    flex-wrap: wrap;
  }
}

#address_book .addresses-header .form-group {
  position: relative;
  width: 100%;
  margin: 0 10px 0 0;
}

@media (max-width: 575px) {
  #address_book .addresses-header .form-group {
    margin: 0;
  }
}

#address_book .addresses-header .form-group .search {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  color: #979fa4;
}

@media (max-width: 575px) {
  #address_book .addresses-header .form-group .search {
    top: 12px;
  }
}

#address_book .addresses-header .form-group .form-control {
  padding-right: 45px;
}

#address_book .addresses-header .btn {
  padding: 0.85rem 1.5rem;
  border-radius: 5px;
}

@media (max-width: 575px) {
  #address_book .addresses-header .btn {
    width: 100%;
    margin-top: 5px;
  }
}

.payment-options,
.shipping-options {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 1199px) {
  .payment-options,
  .shipping-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .payment-options,
  .shipping-options {
    grid-template-columns: 1fr;
  }
}

.payment-options .option,
.shipping-options .option {
  border-radius: 5px;
  padding: 12px;
  border: 2px solid #dee2e3;
  background: #fff;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.payment-options .option .m-radio > span,
.shipping-options .option .m-radio > span {
  transition: all 0.2s ease-in-out;
}

.payment-options .option .input,
.shipping-options .option .input {
  display: flex;
  flex-direction: row;
}

.payment-options .option .input .radio,
.shipping-options .option .input .radio {
  position: relative;
  top: -10px;
}

.payment-options .option .input .info,
.shipping-options .option .input .info {
  position: relative;
}

.payment-options .option .input .info .title,
.shipping-options .option .input .info .title {
  font-weight: 500;
  font-size: 1.1rem;
}

.payment-options .option .input .info .title .m-badge,
.shipping-options .option .input .info .title .m-badge {
  position: relative;
  top: -2px;
  left: -5px;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 50px;
}

.payment-options .option .input .info .text,
.shipping-options .option .input .info .text {
  display: block;
  padding-top: 0.2rem;
  font-size: 0.9rem;
}

.payment-options .option .icon,
.shipping-options .option .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin: 20px 0 10px;
}

.payment-options .option .icon img,
.shipping-options .option .icon img {
  height: 45px;
  width: 45px;
  border: 2px solid #dee2e3;
  background: #fff;
  padding: 3px;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}

.payment-options .option:hover,
.shipping-options .option:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border: solid 2px #9bd3ae !important;
}

.payment-options .option:hover .m-radio > span,
.shipping-options .option:hover .m-radio > span {
  border-color: #89cba0;
}

.payment-options .option:hover .icon img,
.shipping-options .option:hover .icon img {
  border: solid 2px #9bd3ae !important;
}

.payment-options .option.active,
.shipping-options .option.active {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border: solid 2px #2e5fa7 !important;
}

.payment-options .option.active .m-radio > span,
.shipping-options .option.active .m-radio > span {
  border-color: #285493;
}

.payment-options .option.active .icon img,
.shipping-options .option.active .icon img {
  border: solid 2px #2e5fa7 !important;
}

.payment-options .option.excluded,
.shipping-options .option.excluded {
  cursor: not-allowed;
  border: 2px solid #f2f3f4 !important;
  color: #636c72 !important;
  background: #fff !important;
}

.payment-options .option.excluded .title,
.payment-options .option.excluded .text,
.payment-options .option.excluded .color,
.payment-options .option.excluded .m-badge,
.shipping-options .option.excluded .title,
.shipping-options .option.excluded .text,
.shipping-options .option.excluded .color,
.shipping-options .option.excluded .m-badge {
  opacity: 0.6;
}

.payment-options .option.excluded .m-radio > span,
.shipping-options .option.excluded .m-radio > span {
  border: 2px solid #eceeef !important;
}

.payment-options .option.excluded:hover,
.shipping-options .option.excluded:hover {
  border: 2px solid #eceeef !important;
  color: #636c72 !important;
  background: #fff !important;
}

.product-carousel:not(.owl-loaded),
.blog-carousel:not(.owl-loaded),
.review-carousel:not(.owl-loaded) {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.product-carousel:not(.owl-loaded) .tile,
.product-carousel:not(.owl-loaded) .blog-tile,
.product-carousel:not(.owl-loaded) .review-item,
.blog-carousel:not(.owl-loaded) .tile,
.blog-carousel:not(.owl-loaded) .blog-tile,
.blog-carousel:not(.owl-loaded) .review-item,
.review-carousel:not(.owl-loaded) .tile,
.review-carousel:not(.owl-loaded) .blog-tile,
.review-carousel:not(.owl-loaded) .review-item {
  opacity: 0;
}

.product-carousel .owl-stage-outer,
.blog-carousel .owl-stage-outer,
.review-carousel .owl-stage-outer {
  padding: 25px 0px;
}

@media (max-width: 1199px) {
  .product-carousel .owl-stage-outer,
  .blog-carousel .owl-stage-outer,
  .review-carousel .owl-stage-outer {
    padding: 20px 0px;
  }
}

@media (max-width: 991px) {
  .product-carousel .owl-stage-outer,
  .blog-carousel .owl-stage-outer,
  .review-carousel .owl-stage-outer {
    padding: 15px 0px;
  }
}

@media (max-width: 767px) {
  .product-carousel .owl-stage-outer,
  .blog-carousel .owl-stage-outer,
  .review-carousel .owl-stage-outer {
    padding: 10px 0px;
  }
}

@media (max-width: 575px) {
  .product-carousel .owl-stage-outer,
  .blog-carousel .owl-stage-outer,
  .review-carousel .owl-stage-outer {
    padding: 5px 0px;
  }
}

.product-carousel .owl-stage-outer .owl-item:hover,
.blog-carousel .owl-stage-outer .owl-item:hover,
.review-carousel .owl-stage-outer .owl-item:hover {
  z-index: 9999;
}

.product-carousel .tile,
.blog-carousel .tile,
.review-carousel .tile {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad opacity 0.3s ease-in-out;
  opacity: 1;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .product-carousel .tile,
  .blog-carousel .tile,
  .review-carousel .tile {
    padding: 25px 30px;
  }
}

@media (max-width: 767px) {
  .product-carousel .tile,
  .blog-carousel .tile,
  .review-carousel .tile {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .product-carousel .tile,
  .blog-carousel .tile,
  .review-carousel .tile {
    padding: 0px 30px;
  }
}

.product-carousel .tile .image-wrapper,
.blog-carousel .tile .image-wrapper,
.review-carousel .tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 205px;
  margin: 0;
  position: relative;
}

.product-carousel .tile .image-wrapper .badges,
.blog-carousel .tile .image-wrapper .badges,
.review-carousel .tile .image-wrapper .badges {
  position: absolute;
  top: 0;
  left: 0;
}

.product-carousel .tile .image-wrapper .badges .m-badge,
.blog-carousel .tile .image-wrapper .badges .m-badge,
.review-carousel .tile .image-wrapper .badges .m-badge {
  background: #e11d48;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 400;
}

.product-carousel .tile .image-wrapper img,
.blog-carousel .tile .image-wrapper img,
.review-carousel .tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.product-carousel .tile .info .name,
.blog-carousel .tile .info .name,
.review-carousel .tile .info .name {
  display: block;
  font-size: 18px;
  color: #2e5fa7;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.product-carousel .tile .info .title,
.blog-carousel .tile .info .title,
.review-carousel .tile .info .title {
  display: block;
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: #636c72;
  text-align: center;
}

.product-carousel .tile:hover,
.blog-carousel .tile:hover,
.review-carousel .tile:hover {
  z-index: 1;
  transform: scale(1.05);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .product-carousel .tile:hover,
  .blog-carousel .tile:hover,
  .review-carousel .tile:hover {
    transform: scale(1) !important;
  }
}

@media (max-width: 575px) {
  .product-carousel .tile:hover,
  .blog-carousel .tile:hover,
  .review-carousel .tile:hover {
    box-shadow: none;
  }
}

.product-carousel .tile:hover .name,
.blog-carousel .tile:hover .name,
.review-carousel .tile:hover .name {
  color: #2e5fa7;
}

.product-carousel .blog-tile,
.blog-carousel .blog-tile,
.review-carousel .blog-tile {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad opacity 0.3s ease-in-out;
  opacity: 1;
  border-radius: 12px;
}

.product-carousel .blog-tile .image-wrapper,
.blog-carousel .blog-tile .image-wrapper,
.review-carousel .blog-tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
  border-radius: 12px;
}

.product-carousel .blog-tile .image-wrapper img,
.blog-carousel .blog-tile .image-wrapper img,
.review-carousel .blog-tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.product-carousel .blog-tile .info,
.blog-carousel .blog-tile .info,
.review-carousel .blog-tile .info {
  padding: 10px 2px;
}

.product-carousel .blog-tile .info .info-categories,
.blog-carousel .blog-tile .info .info-categories,
.review-carousel .blog-tile .info .info-categories {
  display: block;
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: rgba(99, 108, 114, 0.7);
}

.product-carousel .blog-tile .info .name,
.blog-carousel .blog-tile .info .name,
.review-carousel .blog-tile .info .name {
  display: block;
  font-size: 1.2rem;
  color: #2e5fa7;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.product-carousel .blog-tile .info .readmore,
.blog-carousel .blog-tile .info .readmore,
.review-carousel .blog-tile .info .readmore {
  color: #636c72;
  font-size: 14px;
  text-decoration: underline;
}

.product-carousel .blog-tile .info .readmore:hover,
.blog-carousel .blog-tile .info .readmore:hover,
.review-carousel .blog-tile .info .readmore:hover {
  color: #2e5fa7;
}

.product-carousel .blog-tile:hover,
.blog-carousel .blog-tile:hover,
.review-carousel .blog-tile:hover {
  z-index: 1;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .product-carousel .blog-tile:hover,
  .blog-carousel .blog-tile:hover,
  .review-carousel .blog-tile:hover {
    transform: scale(1) !important;
  }
}

.product-carousel .blog-tile:hover .name,
.blog-carousel .blog-tile:hover .name,
.review-carousel .blog-tile:hover .name {
  color: #2e5fa7;
}

.product-carousel .review-item,
.blog-carousel .review-item,
.review-carousel .review-item {
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.product-carousel .review-item .star-box,
.blog-carousel .review-item .star-box,
.review-carousel .review-item .star-box {
  display: inline-block;
  vertical-align: top;
  width: 125px;
  height: 25px;
  background-image: url("/images/star-inverse.svg");
  background-repeat: repeat-x;
  background-size: 25px 25px;
}

@media (max-width: 767px) {
  .product-carousel .review-item .star-box,
  .blog-carousel .review-item .star-box,
  .review-carousel .review-item .star-box {
    width: 90px;
    height: 18px;
    background-size: 18px 18px;
  }
}

.product-carousel .review-item .star-box .stars,
.blog-carousel .review-item .star-box .stars,
.review-carousel .review-item .star-box .stars {
  height: 25px;
  width: 25px;
  background-image: url("/images/star.svg");
  background-repeat: repeat-x;
  background-size: 25px 25px;
}

@media (max-width: 767px) {
  .product-carousel .review-item .star-box .stars,
  .blog-carousel .review-item .star-box .stars,
  .review-carousel .review-item .star-box .stars {
    height: 18px;
    width: 18px;
    background-size: 18px 18px;
  }
}

.product-carousel .review-item .text,
.blog-carousel .review-item .text,
.review-carousel .review-item .text {
  margin-top: 15px;
}

.product-carousel .review-item .user,
.blog-carousel .review-item .user,
.review-carousel .review-item .user {
  margin-top: 12px;
  font-weight: 500;
}

.product-carousel .review-item .user .rating,
.blog-carousel .review-item .user .rating,
.review-carousel .review-item .user .rating {
  display: inline-block;
  color: #2e5fa7;
  font-weight: 300;
  margin-right: 5px;
}

.product-carousel .review-item .user .rating .bold,
.blog-carousel .review-item .user .rating .bold,
.review-carousel .review-item .user .rating .bold {
  font-weight: 500;
}

.product-carousel.owl-theme .owl-dots .owl-dot span,
.blog-carousel.owl-theme .owl-dots .owl-dot span,
.review-carousel.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  background: none;
  border: 2px solid #cdd1d4;
}

.product-carousel.owl-theme .owl-dots .owl-dot:hover span,
.blog-carousel.owl-theme .owl-dots .owl-dot:hover span,
.review-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: none;
  border: 2px solid #979fa4;
}

.product-carousel.owl-theme .owl-dots .owl-dot.active span,
.blog-carousel.owl-theme .owl-dots .owl-dot.active span,
.review-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #979fa4;
  border: 2px solid #979fa4;
}

.product-carousel.owl-theme .owl-prev,
.product-carousel.owl-theme .owl-next,
.blog-carousel.owl-theme .owl-prev,
.blog-carousel.owl-theme .owl-next,
.review-carousel.owl-theme .owl-prev,
.review-carousel.owl-theme .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.product-carousel.owl-theme .owl-prev svg,
.product-carousel.owl-theme .owl-next svg,
.blog-carousel.owl-theme .owl-prev svg,
.blog-carousel.owl-theme .owl-next svg,
.review-carousel.owl-theme .owl-prev svg,
.review-carousel.owl-theme .owl-next svg {
  position: relative;
  font-size: 28px;
  color: #979fa4;
  transition: all 0.2s ease-in-out;
}

.product-carousel.owl-theme .owl-prev:hover,
.product-carousel.owl-theme .owl-next:hover,
.blog-carousel.owl-theme .owl-prev:hover,
.blog-carousel.owl-theme .owl-next:hover,
.review-carousel.owl-theme .owl-prev:hover,
.review-carousel.owl-theme .owl-next:hover {
  background: none !important;
  color: #636c72 !important;
}

.product-carousel.owl-theme .owl-prev:hover svg,
.product-carousel.owl-theme .owl-next:hover svg,
.blog-carousel.owl-theme .owl-prev:hover svg,
.blog-carousel.owl-theme .owl-next:hover svg,
.review-carousel.owl-theme .owl-prev:hover svg,
.review-carousel.owl-theme .owl-next:hover svg {
  color: #636c72;
}

.product-carousel.owl-theme .owl-prev,
.blog-carousel.owl-theme .owl-prev,
.review-carousel.owl-theme .owl-prev {
  left: -40px;
}

.product-carousel.owl-theme .owl-prev svg,
.blog-carousel.owl-theme .owl-prev svg,
.review-carousel.owl-theme .owl-prev svg {
  left: -40px;
}

@media (max-width: 1199px) {
  .product-carousel.owl-theme .owl-prev,
  .blog-carousel.owl-theme .owl-prev,
  .review-carousel.owl-theme .owl-prev {
    left: -20px;
  }
}

.product-carousel.owl-theme .owl-next,
.blog-carousel.owl-theme .owl-next,
.review-carousel.owl-theme .owl-next {
  right: -40px;
}

.product-carousel.owl-theme .owl-next svg,
.blog-carousel.owl-theme .owl-next svg,
.review-carousel.owl-theme .owl-next svg {
  right: -40px;
}

@media (max-width: 1199px) {
  .product-carousel.owl-theme .owl-next,
  .blog-carousel.owl-theme .owl-next,
  .review-carousel.owl-theme .owl-next {
    right: -20px;
  }
}

.product-carousel:hover .owl-prev,
.product-carousel:hover .owl-next,
.blog-carousel:hover .owl-prev,
.blog-carousel:hover .owl-next,
.review-carousel:hover .owl-prev,
.review-carousel:hover .owl-next {
  opacity: 1;
}

.product-carousel:hover .owl-prev svg,
.blog-carousel:hover .owl-prev svg,
.review-carousel:hover .owl-prev svg {
  left: -20px;
}

@media (max-width: 1199px) {
  .product-carousel:hover .owl-prev svg,
  .blog-carousel:hover .owl-prev svg,
  .review-carousel:hover .owl-prev svg {
    left: -20px;
  }
}

.product-carousel:hover .owl-next svg,
.blog-carousel:hover .owl-next svg,
.review-carousel:hover .owl-next svg {
  right: -20px;
}

@media (max-width: 1199px) {
  .product-carousel:hover .owl-next svg,
  .blog-carousel:hover .owl-next svg,
  .review-carousel:hover .owl-next svg {
    right: -20px;
  }
}

.review-carousel .owl-prev svg,
.review-carousel .owl-next svg {
  color: #2e5fa7 !important;
}

.product-footer {
  bottom: 0;
  width: 100%;
  z-index: 9;
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 0px;
  background: #fff;
  box-shadow: 0px -20px 20px -30px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #f7f7f9;
}

.product-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

@media (max-width: 991px) {
  .product-footer .container {
    height: unset;
    display: block;
    padding: 10px 30px 20px !important;
  }

  .product-footer .container #add-to-cart {
    min-width: 200px;
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .product-footer .container .btn-secondary {
    display: none;
  }
}

.product-footer .container .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .product-footer .container .info {
    display: block;
  }
}

.product-footer .container .info .info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 35px;
  border-right: 1px solid #eceeef;
  height: 85px;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .product-footer .container .info .info-section {
    padding: 0 25px;
    min-width: 0;
  }
}

.product-footer .container .info .info-section:first-child {
  border-left: 1px solid #eceeef;
}

@media (max-width: 991px) {
  .product-footer .container .info .info-section {
    height: unset;
    padding: 10px 0;
    border-bottom: 1px solid #eceeef;
    border-left: 0 !important;
    border-right: 0 !important;
  }
}

.product-footer .container .info .info-section .title {
  font-weight: 500;
  font-size: 15px;
}

.product-footer .container .info .info-section .title .price {
  color: #9bd3ae;
  font-weight: 500;
}

.product-footer .container .info .info-section .subtitle {
  font-size: 13px;
  font-weight: 300;
}

.product-footer .container .info .info-section .subtitle .price {
  color: #9bd3ae;
  font-weight: 500;
}

.product-footer #footer {
  border-top: 1px solid rgba(46, 95, 167, 0.2);
  padding: 10px 0;
}

@media (max-width: 991px) {
  .product-footer #footer {
    padding: 20px 0 10px 0;
  }
}

.product-footer #footer .help .container {
  margin-bottom: 0;
}

#upload-wrapper .dropzone-file-area {
  border: 2px dashed #9bd3ae;
  background: #fbfdfb;
  border-radius: 12px;
  text-align: center;
  min-height: 250px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#upload-wrapper .dropzone-file-area svg {
  color: rgba(155, 211, 174, 0.5);
  font-size: 48px;
}

#upload-wrapper .dropzone-file-area .m-dropzone__msg-desc {
  color: #9bd3ae;
  pointer-events: none;
  padding: 15px 0;
  display: block;
}

#upload-wrapper .dropzone-file-area .btn {
  transition: none;
}

#upload-wrapper .dropzone-file-area .dz-progress {
  border: 0px solid #2e5fa7 !important;
  background: #eceeef !important;
  border-radius: 50px !important;
  height: 20px;
  margin-top: 15px !important;
  width: 300px !important;
  margin-left: -150px !important;
}

#upload-wrapper .dropzone-file-area .dz-progress .dz-upload {
  background: #2e5fa7 !important;
}

#upload-wrapper .dropzone-file-area .dz-error-message {
  background: #e11d48 !important;
  color: #fff !important;
}

#upload-wrapper .dropzone-file-area:hover {
  border-color: #2e5fa7;
  background: rgba(46, 95, 167, 0.05);
}

#upload-wrapper .dropzone-file-area:hover svg {
  color: rgba(46, 95, 167, 0.5);
}

#upload-wrapper .dropzone-file-area:hover .m-dropzone__msg-desc {
  color: #2e5fa7;
}

#upload-wrapper .dropzone-file-area:hover .btn {
  background: #2e5fa7;
  border-color: #2e5fa7;
}

#upload-wrapper .dropzone-file-area .loader {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: #fbfdfb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

#upload-wrapper .dropzone-file-area .loader.active {
  opacity: 1;
  visibility: visible;
}

#upload-wrapper .dropzone-file-area .loader .text {
  margin-top: 80px;
}

#upload-wrapper .file-uploaded {
  border: 2px solid #9bd3ae;
  background: #fbfdfb;
  border-radius: 12px;
  text-align: center;
  min-height: 250px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 575px) {
  #upload-wrapper .file-uploaded {
    padding: 15px;
  }
}

#upload-wrapper .file-uploaded svg {
  color: #9bd3ae;
  font-size: 48px;
}

@media (max-width: 575px) {
  #upload-wrapper .file-uploaded svg {
    font-size: 40px;
  }
}

#upload-wrapper .file-uploaded .filename {
  font-size: 14px;
  background: #9bd3ae;
  color: #fff;
  border-radius: 5px;
  padding: 12px 18px;
  margin: 15px 0px 25px;
  font-weight: 500;
}

#upload-wrapper .file-uploaded .filename a {
  background: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: #9bd3ae;
  font-weight: 300;
  margin-left: 10px;
}

@media (max-width: 575px) {
  #upload-wrapper .file-uploaded .filename a {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
}

#upload-wrapper .file-uploaded .filename a:hover {
  background: #e11d48;
  color: #fff;
}

#upload-wrapper .file-uploaded .text {
  margin-top: 20px;
  color: #9bd3ae;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 575px) {
  #upload-wrapper .file-uploaded .text {
    font-size: 17px;
  }
}

#upload-wrapper .file-uploaded .m-checkbox-inline {
  padding: 0 100px;
}

@media (max-width: 991px) {
  #upload-wrapper .file-uploaded .m-checkbox-inline {
    padding: 0;
  }
}

#upload-wrapper .file-uploaded .m-checkbox-inline label {
  text-align: left;
  font-weight: 300;
}

#upload-wrapper .file-uploaded .alert {
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #upload-wrapper .file-uploaded .alert {
    max-width: unset;
  }
}

.tags .tag,
.tags .category,
.categories .tag,
.categories .category {
  text-align: center;
  border: 2px solid #eceeef;
  background: #fff;
  color: #636c72;
  margin: 0px 2px 6px 0px;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 12px;
  text-decoration: none !important;
}

.tags .tag.lg,
.tags .category.lg,
.categories .tag.lg,
.categories .category.lg {
  margin: 0px 3px;
  padding: 12px 24px;
  font-size: 14px;
}

.tags .tag.sm,
.tags .category.sm,
.categories .tag.sm,
.categories .category.sm {
  margin: 0px;
  padding: 2px 10px;
  font-size: 11px;
}

@media (max-width: 767px) {
  .tags .tag,
  .tags .category,
  .categories .tag,
  .categories .category {
    margin: 2px 0px;
    border: 1px solid #eceeef;
    padding: 2px 10px;
    font-size: 11px;
  }
}

.tags .tag:hover,
.tags .category:hover,
.categories .tag:hover,
.categories .category:hover {
  color: #89cba0;
  border-color: #9bd3ae;
  background: rgba(155, 211, 174, 0.05);
}

.tags .tag.current,
.tags .category.current,
.categories .tag.current,
.categories .category.current {
  color: #285493;
  border-color: #2e5fa7;
  background: rgba(46, 95, 167, 0.05);
  font-weight: 500;
}

.share #social-links ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.share #social-links ul li {
  padding: 0px 8px;
  cursor: pointer;
}

.share #social-links ul li i,
.share #social-links ul li svg {
  font-size: 24px;
  color: #a4abb0;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

.share #social-links ul li i.fa-facebook-f,
.share #social-links ul li svg.fa-facebook-f {
  color: #3b5998;
}

.share #social-links ul li i.fa-twitter,
.share #social-links ul li svg.fa-twitter {
  color: #00aced;
}

.share #social-links ul li i.fa-linkedin-in,
.share #social-links ul li svg.fa-linkedin-in {
  color: #007bb6;
}

.share #social-links ul li i.fa-whatsapp,
.share #social-links ul li svg.fa-whatsapp {
  color: #4AC959;
}

.share #social-links ul li i:hover,
.share #social-links ul li svg:hover {
  transform: scale(1.2);
}

.insta-feed .insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .insta-feed .insta-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .insta-feed .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .insta-feed .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .insta-feed .insta-grid {
    grid-gap: 10px;
  }
}

.insta-feed .insta-grid .item {
  aspect-ratio: 1;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
}

.insta-feed .insta-grid .item:nth-child(14n+1),
.insta-feed .insta-grid .item:nth-child(14n+11) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1199px) {
  .insta-feed .insta-grid .item:nth-child(14n+1),
  .insta-feed .insta-grid .item:nth-child(14n+11) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 1199px) {
  .insta-feed .insta-grid .item:nth-child(n+13) {
    display: none;
  }
}

@media (max-width: 767px) {
  .insta-feed .insta-grid .item:nth-child(n+13) {
    display: block;
  }
}

@media (max-width: 991px) {
  .insta-feed .insta-grid .item:nth-child(n+10) {
    display: none;
  }
}

.insta-feed .insta-grid .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  position: relative;
}

.insta-feed .insta-grid .item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(46, 95, 167, 0.9);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  border-radius: 12px;
}

.insta-feed .insta-grid .item .overlay .text {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 575px) {
  .insta-feed .insta-grid .item .overlay .text {
    font-size: 12px;
  }
}

.insta-feed .insta-grid .item:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.insta-feed .insta-grid:hover {
  z-index: 1;
}

.newsletter form .group-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.newsletter form .group-row .form-control {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-left: 20px;
  border-right: 0;
  height: 52px;
}

@media (max-width: 767px) {
  .newsletter form .group-row .form-control {
    height: 45px;
  }
}

.newsletter form .group-row .form-group {
  margin-bottom: 10px;
}

.newsletter form .group-row .form-group:first-child {
  position: relative;
  width: 100%;
}

.newsletter form .group-row .btn {
  padding: 0.85rem 1.5rem;
  border-radius: 0px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  height: 52px;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .newsletter form .group-row .btn {
    height: 45px;
  }
}

@media (max-width: 575px) {
  .newsletter form .group-row .btn {
    display: block;
    width: 100%;
  }
}

.newsletter h2 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  color: #9bd3ae;
  text-align: center;
}

@media (max-width: 1199px) {
  .newsletter h2 {
    font-size: 21px;
  }
}

@media (max-width: 991px) {
  .newsletter h2 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .newsletter h2 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .newsletter h2 {
    font-size: 18px;
  }
}

.steps {
  width: 45%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .steps {
    width: 55%;
  }
}

@media (max-width: 991px) {
  .steps {
    width: 65%;
  }
}

@media (max-width: 767px) {
  .steps {
    width: 45%;
  }
}

.steps .step {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.steps .step .number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: #f7f7f9;
  color: #b5bcc0;
  font-weight: 600;
  font-size: 12px;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .steps .step .number {
    margin-right: 0;
  }
}

.steps .step .number i,
.steps .step .number svg {
  font-size: 12px;
}

.steps .step .title {
  font-size: 14px;
  font-weight: 500;
  color: #b5bcc0;
}

@media (max-width: 767px) {
  .steps .step .title {
    display: none;
  }
}

.steps .step .bar {
  flex-grow: 1;
  height: 4px;
  margin: 0 10px;
  background: #eceeef;
}

.steps .step.no-grow {
  flex-grow: 0;
}

.steps .step.done .number {
  background: #2e5fa7;
  color: #fff;
}

.steps .step.done .bar {
  background: #2e5fa7;
}

.steps .step.current .number {
  border: 2px solid #2e5fa7;
  background: #fff;
  color: #2e5fa7;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.modal-backdrop {
  z-index: 1042;
}

.modal.bounce-in {
  animation-name: bounceIn;
  animation-duration: 450ms;
}

.modal .modal-dialog {
  max-width: 420px;
  margin: 30px auto;
}

@media (max-width: 575px) {
  .modal .modal-dialog {
    margin: 30px 10px;
    max-width: 100%;
  }
}

.modal .modal-dialog.modal-dialog-centered {
  min-height: calc(100% - (2.15rem * 2));
}

.modal .modal-dialog .modal-content {
  border-radius: 12px;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}

@media (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 25px;
  }
}

.modal .modal-dialog .modal-content .modal-body .modal-title {
  margin-top: 5px;
  font-size: 25px;
  font-weight: 600;
  color: #2e5fa7;
  text-align: center;
}

.modal .modal-dialog .modal-content .modal-body .modal-intro {
  padding: 10px 0;
  text-align: center;
  margin-bottom: 5px;
}

.modal .modal-dialog .modal-content .modal-body form a {
  text-decoration: underline;
}

body.home section {
  padding: 80px 0px;
}

@media (max-width: 1199px) {
  body.home section {
    padding: 70px 0px;
  }
}

@media (max-width: 991px) {
  body.home section {
    padding: 65px 0px;
  }
}

@media (max-width: 767px) {
  body.home section {
    padding: 50px 0px;
  }
}

body.home section .section_title {
  font-size: 50px;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
  text-align: center;
}

@media (max-width: 1199px) {
  body.home section .section_title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  body.home section .section_title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  body.home section .section_title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  body.home section .section_title {
    font-size: 28px;
  }
}

body.home section .section_subtitle {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
  display: block;
}

@media (max-width: 1199px) {
  body.home section .section_subtitle {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  body.home section .section_subtitle {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.home section .section_subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.home section .section_subtitle {
    font-size: 15px;
  }
}

body.home section .section_subtitle a {
  font-weight: 600;
  color: #2e5fa7;
}

body.home section .button {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

@media (max-width: 400px) {
  body.home section .button {
    display: block;
    width: 100%;
  }
}

body.home .hero {
  padding: 0px;
  display: flex;
  flex-direction: row;
  background: #9bd3ae;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  height: 655px;
}

@media (max-width: 1199px) {
  body.home .hero {
    height: unset;
  }
}

body.home .hero .owl-carousel {
  position: relative;
  height: 655px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel {
    height: unset;
  }
}

body.home .hero .owl-carousel:not(.owl-loaded) {
  opacity: 0;
  visibility: hidden;
  height: 655px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 605px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 450px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 325px;
  }
}

body.home .hero .owl-carousel:not(.owl-loaded) .slide {
  opacity: 0;
}

body.home .hero .owl-carousel .slide {
  height: 655px;
  padding-bottom: 70px;
  padding-top: 85px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide {
    height: 605px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide {
    height: 450px;
    padding-bottom: 0px;
    padding-top: 65px;
    margin-bottom: 0px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide {
    height: 325px;
    padding-top: 85px;
    margin-bottom: -10px;
  }
}

body.home .hero .owl-carousel .slide .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container::before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
  }
}

body.home .hero .owl-carousel .slide .container .image {
  position: absolute;
  right: -140px;
  top: 15px;
  z-index: -1;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .image {
    top: 30px;
    right: -50px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    right: 0;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .image {
    top: inherit;
  }
}

body.home .hero .owl-carousel .slide .container .image img {
  max-height: 530px;
  width: auto;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .image img {
    max-height: 450px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .image img {
    width: 100%;
    max-height: inherit;
  }
}

body.home .hero .owl-carousel .slide .container .text {
  width: 40%;
  z-index: 9999;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .text {
    width: 35%;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .text {
    width: 100%;
    text-align: center;
  }
}

body.home .hero .owl-carousel .slide .container .text h1 {
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    padding: 0;
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    padding: 0;
    font-size: 24px;
  }
}

body.home .hero .owl-carousel .slide .container .text h2 {
  font-weight: 500;
  color: #fff;
  font-size: 22px;
  line-height: 28px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .text h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .text h2 {
    padding: 0 50px;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .text h2 {
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .text h2 {
    display: none;
  }
}

body.home .hero .owl-carousel .slide .btn {
  margin-top: 20px;
  padding: 15px 40px;
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .btn {
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 16px;
  }
}

body.home .hero .owl-carousel .owl-prev,
body.home .hero .owl-carousel .owl-next {
  position: absolute;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  width: 40px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

body.home .hero .owl-carousel .owl-prev svg,
body.home .hero .owl-carousel .owl-next svg {
  font-size: 40px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

body.home .hero .owl-carousel .owl-prev:hover,
body.home .hero .owl-carousel .owl-next:hover {
  background: none !important;
  color: #2e5fa7 !important;
}

body.home .hero .owl-carousel .owl-prev:hover svg,
body.home .hero .owl-carousel .owl-next:hover svg {
  color: #2e5fa7;
}

body.home .hero .owl-carousel .owl-prev {
  left: 20px;
}

body.home .hero .owl-carousel .owl-next {
  right: 20px;
}

body.home .hero .owl-carousel:hover .owl-prev,
body.home .hero .owl-carousel:hover .owl-next {
  opacity: 1;
}

body.home .usps {
  padding: 0px;
  margin-top: -70px;
}

@media (max-width: 991px) {
  body.home .usps {
    display: none;
  }
}

body.home .usps ul {
  background: #fff;
  padding: 50px 20px 30px;
  box-shadow: 0px -12px 15px 0 rgba(0, 0, 0, 0.03);
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 12px;
}

@media (max-width: 1199px) {
  body.home .usps ul {
    padding: 35px 15px 15px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul {
    padding: 25px 10px 10px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul {
    padding: 20px 5px 5px;
  }
}

body.home .usps ul li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5px;
}

@media (max-width: 767px) {
  body.home .usps ul li {
    padding: 0 3px;
  }
}

body.home .usps ul li img {
  margin-bottom: 20px;
  width: 60px;
}

@media (max-width: 1199px) {
  body.home .usps ul li img {
    width: 55px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul li img {
    width: 50px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li img {
    width: 40px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  body.home .usps ul li img {
    width: 30px;
    margin-bottom: 10px;
  }
}

body.home .usps ul li h3 {
  font-size: 20px;
  color: #2e5fa7;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1199px) {
  body.home .usps ul li h3 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul li h3 {
    font-size: 14px;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li h3 {
    font-size: 13px;
    font-weight: 600;
  }
}

@media (max-width: 575px) {
  body.home .usps ul li h3 {
    font-size: 11px;
    font-weight: 500;
  }
}

@media (max-width: 400px) {
  body.home .usps ul li h3 {
    font-size: 10px;
  }
}

body.home .usps ul li span {
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1199px) {
  body.home .usps ul li span {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li span {
    display: none;
  }
}

body.home .divider {
  padding: 0;
  margin-top: -80px;
}

@media (max-width: 1199px) {
  body.home .divider {
    margin-top: -90px;
  }
}

@media (max-width: 991px) {
  body.home .divider {
    margin-top: -95px;
  }
}

@media (max-width: 767px) {
  body.home .divider {
    display: none;
  }
}

body.home .divider .container {
  max-width: 640px;
}

body.home .divider .container .seperator {
  display: block;
  box-shadow: 0px 12px 30px -30px rgba(0, 0, 0, 0.2);
  padding: 50px 0;
}

body.home .products .section_title {
  color: #2e5fa7;
}

body.home .how-it-works {
  background: rgba(46, 95, 167, 0.05);
}

body.home .how-it-works .section_title {
  color: #2e5fa7;
}

body.home .how-it-works .video {
  background: #fff;
  border-radius: 12px;
  padding: 15px 15px 10px 15px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  display: block;
  margin: auto;
  max-width: 1040px;
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  body.home .how-it-works .video {
    padding: 5px 5px 0px 5px;
  }
}

@media (max-width: 1199px) {
  body.home .how-it-works .video {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  body.home .how-it-works .video {
    margin-top: 45px;
  }
}

@media (max-width: 767px) {
  body.home .how-it-works .video {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  body.home .how-it-works .video {
    margin-top: 35px;
  }
}

body.home .how-it-works .video video {
  width: 100%;
  border-radius: 8px;
  padding: 0px;
  overflow: hidden;
}

body.home .how-it-works .video .video-play {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: all;
  z-index: 99;
  cursor: pointer;
}

body.home .how-it-works .video .video-play:not(.active) {
  display: none;
}

body.home .how-it-works .video .video-play img {
  width: 150px;
}

@media (max-width: 767px) {
  body.home .how-it-works .video .video-play img {
    width: 120px;
  }
}

@media (max-width: 575px) {
  body.home .how-it-works .video .video-play img {
    width: 80px;
  }
}

body.home .blog {
  background: rgba(46, 95, 167, 0.05);
}

body.home .blog .section_title {
  color: #2e5fa7;
}

body.home .blog .blog-carousel {
  margin-top: 40px;
}

@media (max-width: 575px) {
  body.home .blog .blog-carousel {
    margin-top: 20px;
  }
}

body.home .reviews {
  padding: 100px 0px 80px;
}

@media (max-width: 1199px) {
  body.home .reviews {
    padding: 70px 0px 20px;
  }
}

@media (max-width: 991px) {
  body.home .reviews {
    padding: 65px 0px 15px;
  }
}

@media (max-width: 767px) {
  body.home .reviews {
    padding: 50px 0px 10px;
  }
}

body.home .reviews .section_title {
  color: #2e5fa7;
}

body.home .reviews #review-carousel {
  margin: 50px 0;
}

@media (max-width: 575px) {
  body.home .reviews #review-carousel {
    margin: 30px 0;
  }
}

body.home .insta .section_title {
  color: #2e5fa7;
}

body.home .insta .insta-feed {
  margin-top: 40px;
}

body.home .insta .insta-feed .insta-grid {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  body.home .insta .insta-feed .insta-grid .item:nth-child(n+9) {
    display: none;
  }
}

body.home .your-turn {
  padding: 60px 0 120px;
}

@media (max-width: 1199px) {
  body.home .your-turn {
    padding: 40px 0 100px;
  }
}

@media (max-width: 991px) {
  body.home .your-turn {
    padding: 30px 0 80px;
  }
}

@media (max-width: 767px) {
  body.home .your-turn {
    padding: 20px 0 60px;
  }
}

@media (max-width: 575px) {
  body.home .your-turn {
    padding: 10px 0 40px;
  }
}

body.home .your-turn .btn:first-child {
  margin-right: 5px;
}

body.home .your-turn .btn:last-child {
  margin-left: 5px;
}

@media (max-width: 400px) {
  body.home .your-turn .btn {
    width: 100%;
    margin: 0 !important;
  }

  body.home .your-turn .btn:last-child {
    margin-top: 10px !important;
  }
}

body.home .form .newsletter {
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 30px;
}

body.category .heading {
  margin-bottom: 60px;
}

body.category .heading .d-block {
  background: #f7f7f9;
  padding: 40px;
}

body.category .heading .d-block .image {
  border: 3px solid #eceeef;
  padding: 20px;
  display: block;
}

body.category .heading .d-block .image .image-block {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 230px;
}

body.category .heading .d-block .image .image-block .badge {
  background: #e11d48;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  left: 15px;
  line-height: 1.36em;
  padding: 3px 5px;
  position: absolute;
  text-transform: uppercase;
  top: 15px;
}

body.category .heading .d-block .image .image-block .helper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

body.category .heading .d-block .image .image-block .helper img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
}

body.category .heading .d-block .info h1 {
  text-transform: uppercase;
  color: #464a4c;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 28px;
  display: block;
  margin: 0px;
}

body.category .heading .d-block .info h2 {
  color: #9bd3ae;
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
  display: block;
  margin-bottom: 15px;
}

body.category .heading .d-block .info ul {
  list-style-type: none;
  padding: 0;
}

body.category .heading .d-block .info ul li {
  position: relative;
  padding-left: 20px;
  line-height: 22px;
}

body.category .heading .d-block .info ul li:before {
  content: "";
  width: 15px;
  height: 14px;
  position: absolute;
  background-image: url("/images/checkbox-green.svg");
  background-size: cover;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

body.category .subheader {
  text-transform: uppercase;
  color: #464a4c;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 28px;
  display: block;
  margin-bottom: 15px;
}

body.category .categories {
  margin-bottom: 30px;
}

body.category .products {
  margin-bottom: 30px;
}

body.category .content {
  padding: 40px;
  background: #f7f7f9;
  font-size: 13px;
  text-align: justify;
}

body.category .content h2 {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 28px;
  margin-bottom: 15px;
}

body.category .content h3 {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 22px;
  padding-top: 8px;
  margin-bottom: 8px;
}

body.category .content a {
  color: #9bd3ae;
  text-decoration: underline;
}

body.page-error .error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  padding: 0px 100px;
}

@media (max-width: 767px) {
  body.page-error .error-wrapper {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  body.page-error .error-wrapper {
    padding: 0 20px;
  }
}

body.page-error .error-wrapper h2 {
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.page-error .error-wrapper h2 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  body.page-error .error-wrapper h2 {
    font-size: 60px;
  }
}

body.page-error .error-wrapper h1 {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  color: #9bd3ae;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.page-error .error-wrapper h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  body.page-error .error-wrapper h1 {
    font-size: 26px;
    text-align: center;
  }
}

body.page-error .error-wrapper p {
  text-align: center;
  font-size: 18px;
}

@media (max-width: 575px) {
  body.page-error .error-wrapper p {
    font-size: 16px;
  }
}

body.auth .content-wrapper {
  width: 420px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 575px) {
  body.auth .content-wrapper {
    padding: 0 20px;
  }
}

body.auth .content-wrapper h1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: #2e5fa7;
}

@media (max-width: 767px) {
  body.auth .content-wrapper h1 {
    font-size: 35px;
  }
}

body.auth .content-wrapper a {
  color: #78c391;
  text-decoration: underline;
}

body.auth .content-wrapper a:hover {
  color: #2e5fa7;
}

@media (max-width: 575px) {
  body.auth .content-wrapper .remember-password {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

body.auth .content-wrapper .ww-forgotten {
  font-size: 15px;
}

body.shop .shop-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

body.shop .shop-wrapper .accordion {
  width: calc(25% - 25px);
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .accordion {
    width: calc(30% - 20px);
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .accordion {
    width: 100%;
  }
}

body.shop .shop-wrapper .accordion .header {
  display: none;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .accordion .header {
    border: 1px solid #eceeef;
    display: flex;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 25px;
  }
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .accordion .header {
    padding: 6px 20px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .header .accordion-plus-min {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .header .accordion-plus-min::before {
    width: 14px;
    bottom: 6px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .header .accordion-plus-min::after {
    width: 14px;
    bottom: 6px;
  }
}

body.shop .shop-wrapper .accordion .header:hover {
  background: #fff;
  color: #636c72;
  border: 1px solid #eceeef;
}

body.shop .shop-wrapper .accordion .header:hover .accordion-plus-min::before {
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .header:hover .accordion-plus-min::after {
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .header:not(.collapsed) {
  background: #fff !important;
  color: #636c72 !important;
  border: 1px solid #eceeef !important;
}

body.shop .shop-wrapper .accordion .header:not(.collapsed) .accordion-plus-min {
  transform: rotate(0deg) !important;
}

body.shop .shop-wrapper .accordion .header:not(.collapsed) .accordion-plus-min::before {
  width: 0;
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .header:not(.collapsed) .accordion-plus-min::after {
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .collapse {
  display: block;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .accordion .collapse {
    display: none;
  }
}

body.shop .shop-wrapper .accordion .collapse .content a {
  text-decoration: none !important;
}

body.shop .shop-wrapper .accordion .show {
  display: block !important;
}

body.shop .shop-wrapper .sidebar {
  width: 100%;
  box-shadow: 20px -20px 20px -30px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #f7f7f9;
  border-top: 1px solid #f7f7f9;
  border-top-right-radius: 12px;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar {
    border-top-right-radius: 0px;
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar {
    box-shadow: none;
    border-right: none;
    border-top: 1px solid #eceeef;
  }
}

body.shop .shop-wrapper .sidebar .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #2e5fa7;
  color: #636c72;
  text-decoration: none !important;
}

body.shop .shop-wrapper .sidebar .menu-item:first-child {
  border-top-right-radius: 12px;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar .menu-item:first-child {
    border-top-right-radius: 0px;
  }
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text {
  display: inline-flex;
  padding: 5px 0px;
  align-items: center;
  font-weight: 300;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar .menu-item .icon-text {
    padding: 0;
  }
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text .text {
  padding-left: 0px;
  line-height: 1.6rem;
  text-decoration: none !important;
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text .m-badge {
  background: #e11d48;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 400;
  margin-left: 5px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .sidebar .menu-item .icon-text .m-badge {
    padding: 0px 8px;
  }
}

body.shop .shop-wrapper .sidebar .menu-item .arrow {
  opacity: 0;
  visibility: hidden;
  position: relative;
  left: 0px;
  font-size: 16px;
  transition: left 200ms linear;
  color: #b5bcc0;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar .menu-item .arrow {
    display: none;
  }
}

body.shop .shop-wrapper .sidebar .menu-item:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border-left: solid 5px #9bd3ae;
}

body.shop .shop-wrapper .sidebar .menu-item:hover .m-badge {
  background: #9bd3ae;
}

body.shop .shop-wrapper .sidebar .menu-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  left: 5px;
  color: #89cba0;
}

body.shop .shop-wrapper .sidebar .menu-item.current {
  background: rgba(46, 95, 167, 0.05);
  color: #285493;
  border-left: solid 5px #2e5fa7;
}

body.shop .shop-wrapper .sidebar .menu-item.current .icon-text .text {
  font-weight: 600;
}

body.shop .shop-wrapper .sidebar .menu-item.current .arrow {
  opacity: 1;
  visibility: visible;
  color: #285493;
}

body.shop .shop-wrapper .sidebar .menu-item.current .m-badge {
  background: #2e5fa7;
}

body.shop .shop-wrapper .products {
  width: calc(75% - 25px);
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .products {
    width: calc(70% - 20px);
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .products {
    width: 100%;
    margin-top: 20px;
  }
}

body.shop .shop-wrapper .products .grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .products .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

body.shop .shop-wrapper .products .grid .tile {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile {
    border-top: 1px solid #eceeef !important;
    flex-direction: row;
    align-items: center;
    padding: 10px 0;
  }

  body.shop .shop-wrapper .products .grid .tile:last-child {
    border-bottom: 1px solid #eceeef !important;
  }
}

body.shop .shop-wrapper .products .grid .tile:nth-child(-n+3) {
  border-bottom: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(-n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(-n+3) {
    border-bottom: 0;
  }
}

body.shop .shop-wrapper .products .grid .tile:nth-child(3n+1) {
  border-right: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(3n+1) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(3n+1) {
    border-right: 0;
  }
}

body.shop .shop-wrapper .products .grid .tile:nth-child(3n) {
  border-left: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(3n) {
    border-left: 0;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(3n) {
    border-left: 0;
  }
}

body.shop .shop-wrapper .products .grid .tile:nth-child(n+7) {
  border-top: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(n+7) {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(n+7) {
    border-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(-n+2) {
    border-bottom: 1px solid #eceeef;
  }

  body.shop .shop-wrapper .products .grid .tile:nth-child(n+5) {
    border-top: 1px solid #eceeef;
  }

  body.shop .shop-wrapper .products .grid .tile:nth-child(odd) {
    border-right: 1px solid #eceeef;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  body.shop .shop-wrapper .products .grid .tile:nth-child(-n+2) {
    border-bottom: 1px solid #eceeef;
  }

  body.shop .shop-wrapper .products .grid .tile:nth-child(n+5) {
    border-top: 1px solid #eceeef;
  }

  body.shop .shop-wrapper .products .grid .tile:nth-child(odd) {
    border-right: 1px solid #eceeef;
  }
}

body.shop .shop-wrapper .products .grid .tile.no-border {
  border: none;
}

body.shop .shop-wrapper .products .grid .tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 205px;
  margin: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile .image-wrapper {
    justify-content: flex-start;
    height: auto;
    max-width: 150px;
    height: 120px;
    margin-right: 10px;
  }
}

@media (max-width: 400px) {
  body.shop .shop-wrapper .products .grid .tile .image-wrapper {
    max-width: 120px;
    height: 100px;
    margin-right: 10px;
  }
}

body.shop .shop-wrapper .products .grid .tile .image-wrapper .badges {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
}

body.shop .shop-wrapper .products .grid .tile .image-wrapper .badges .m-badge {
  background: #e11d48;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 400;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile .image-wrapper .badges .m-badge {
    padding: 0px 8px;
  }
}

body.shop .shop-wrapper .products .grid .tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

body.shop .shop-wrapper .products .grid .tile .info .name {
  display: block;
  font-size: 18px;
  color: #2e5fa7;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile .info .name {
    text-align: left;
  }
}

@media (max-width: 400px) {
  body.shop .shop-wrapper .products .grid .tile .info .name {
    font-size: 16px;
  }
}

body.shop .shop-wrapper .products .grid .tile .info .title {
  display: block;
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: #636c72;
  text-align: center;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile .info .title {
    text-align: left;
  }
}

@media (max-width: 400px) {
  body.shop .shop-wrapper .products .grid .tile .info .title {
    font-size: 13px;
  }
}

body.shop .shop-wrapper .products .grid .tile:hover {
  z-index: 1;
  border-color: #fff !important;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
  border-radius: 12px;
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile:hover {
    transform: scale(1);
    box-shadow: none;
    border-top: 1px solid #eceeef !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0;
  }
}

@media (max-width: 575px) {
  body.shop .shop-wrapper .products .grid .tile:hover .image-wrapper .badges {
    left: 12px;
  }
}

body.shop .shop-wrapper .products .grid .tile:hover .name {
  color: #2e5fa7;
}

body.shop .shop-wrapper .products .grid .tile.off {
  transform: scale(1);
  box-shadow: none;
  border-color: #eceeef;
}

body.shop .tags {
  margin: 0 auto;
  width: 75%;
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 1199px) {
  body.shop .tags {
    margin-top: 85px;
  }
}

@media (max-width: 991px) {
  body.shop .tags {
    margin-top: 65px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.shop .tags {
    margin-top: 50px;
  }
}

body.shop .tags h2 {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #2e5fa7;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  body.shop .tags h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  body.shop .tags h2 {
    font-size: 22px;
  }
}

body.product .overview {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1199px) {
  body.product .overview {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  body.product .overview {
    flex-wrap: wrap;
  }
}

body.product .overview .images {
  width: calc(60% - 15px);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  body.product .overview .images {
    width: calc(50% - 15px);
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  body.product .overview .images {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  body.product .overview .images {
    margin-bottom: 20px;
  }
}

body.product .overview .images .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 0px 50px;
}

@media (max-width: 991px) {
  body.product .overview .images .image-wrapper {
    padding: 0;
  }
}

body.product .overview .images .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  cursor: zoom-in;
  border-radius: 12px;
}

@media (max-width: 991px) {
  body.product .overview .images .image-wrapper img {
    max-height: 400px;
  }
}

body.product .overview .images .image-wrapper img.has-border {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

body.product .overview .images .image-wrapper img.padding {
  padding: 0 50px;
}

body.product .overview .images .image-wrapper .info {
  width: 90%;
  text-align: center;
}

@media (max-width: 991px) {
  body.product .overview .images .image-wrapper .info {
    width: 100%;
    text-align: left;
  }
}

body.product .overview .images .image-wrapper .size {
  margin-top: 10px;
  width: 90%;
  text-align: center;
}

@media (max-width: 991px) {
  body.product .overview .images .image-wrapper .size {
    width: 100%;
    text-align: left;
  }
}

body.product .overview .images .image-wrapper .size span {
  font-weight: 600;
}

body.product .overview .images .image-wrapper .size.smaller {
  margin-top: 0;
  color: #979fa4;
  font-size: 15px;
}

body.product .overview .images .gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 991px) {
  body.product .overview .images .gallery {
    justify-content: flex-start;
  }
}

body.product .overview .images .gallery .wrapper-item {
  border: 2px solid #dee2e3;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  padding: 3px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 575px) {
  body.product .overview .images .gallery .wrapper-item {
    width: 60px;
    height: 60px;
  }
}

body.product .overview .images .gallery .wrapper-item .item {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.product .overview .images .gallery .wrapper-item .item img {
  max-height: 100%;
  max-width: 100%;
}

body.product .overview .images .gallery .wrapper-item:hover {
  border: solid 2px #9bd3ae !important;
}

body.product .overview .images .gallery .wrapper-item.active {
  border: solid 2px #2e5fa7 !important;
}

body.product .overview .info {
  width: calc(40% - 15px);
}

@media (max-width: 1199px) {
  body.product .overview .info {
    width: calc(50% - 15px);
  }
}

@media (max-width: 991px) {
  body.product .overview .info {
    width: 100%;
  }
}

body.product .overview .info h1 {
  font-size: 36px;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
}

@media (max-width: 991px) {
  body.product .overview .info h1 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  body.product .overview .info h1 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  body.product .overview .info h1 {
    font-size: 24px;
  }
}

body.product .overview .info h2 {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #9bd3ae;
}

@media (max-width: 991px) {
  body.product .overview .info h2 {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  body.product .overview .info h2 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  body.product .overview .info h2 {
    font-size: 17px;
  }
}

body.product .overview .info p {
  color: #636c72;
  margin-top: 15px;
}

body.product .usps {
  margin-top: 80px;
  list-style-type: none;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  body.product .usps {
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  body.product .usps {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  body.product .usps {
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid #eceeef;
  }
}

body.product .usps li {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 991px) {
  body.product .usps li {
    width: 32%;
  }
}

@media (max-width: 767px) {
  body.product .usps li {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  body.product .usps li {
    margin-bottom: 15px;
  }
}

body.product .usps li:last-child {
  margin-bottom: 0 !important;
}

body.product .usps li img {
  margin-bottom: 30px;
  width: 70px;
}

@media (max-width: 1199px) {
  body.product .usps li img {
    width: 60px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  body.product .usps li img {
    width: 50px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  body.product .usps li img {
    width: 40px;
    margin-right: 20px;
  }
}

body.product .usps li h3 {
  color: #2e5fa7;
  font-weight: 700;
}

@media (max-width: 1199px) {
  body.product .usps li h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  body.product .usps li h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  body.product .usps li h3 {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  body.product .usps li h3 {
    font-size: 16px;
  }
}

body.product .usps li span {
  text-align: center;
}

@media (max-width: 1199px) {
  body.product .usps li span {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  body.product .usps li span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  body.product .usps li span {
    font-size: 13px;
  }
}

@keyframes removed-item-animation {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes added-item-animation {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

body.cart.empty .cart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  padding: 0px 100px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  body.cart.empty .cart-wrapper {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  body.cart.empty .cart-wrapper {
    padding: 0 20px;
  }
}

body.cart.empty .cart-wrapper h1 {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  color: #2e5fa7;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.cart.empty .cart-wrapper h1 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  body.cart.empty .cart-wrapper h1 {
    font-size: 25px;
  }
}

body.cart.empty .cart-wrapper p {
  font-size: 18px;
  text-align: center;
}

@media (max-width: 575px) {
  body.cart.empty .cart-wrapper p {
    font-size: 16px;
  }
}

body.cart.not-empty .cart-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper {
    flex-wrap: wrap;
    padding-top: 0;
  }
}

body.cart.not-empty .cart-wrapper .cart-items {
  width: calc(65% - 25px);
  box-shadow: 20px 0px 20px -30px rgba(0, 0, 0, 0.1);
  padding-right: 30px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199px) {
  body.cart.not-empty .cart-wrapper .cart-items {
    width: calc(60% - 10px);
  }
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items {
    width: 100%;
    padding-right: 0;
    box-shadow: none;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .steps {
  width: 100%;
  margin-bottom: 15px;
}

body.cart.not-empty .cart-wrapper .cart-items h1 {
  color: #2e5fa7;
  font-weight: 800;
  font-size: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items h1 {
    font-size: 28px;
    padding-top: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items h1 {
    font-size: 26px;
    padding-top: 15px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items h1 {
    font-size: 24px;
    padding-top: 10px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eceeef;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media (min-width: 992px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item:last-child {
    border-bottom: 0px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item.removed {
  animation: removed-item-animation 0.4s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item.added {
  animation: added-item-animation 0.4s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 25%;
  margin-right: 20px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .image {
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .image {
    width: calc(25% - 15px);
  }
}

@media (max-width: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .image {
    display: none;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info {
  width: 55%;
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info {
    width: 75%;
  }
}

@media (max-width: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info {
    width: 100%;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
  display: block;
  font-size: 20px;
  color: #9bd3ae;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 16px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 small {
  display: none;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs {
  width: 100%;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div {
  display: flex;
  font-size: 15px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div {
    font-size: 14px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div .option {
  font-weight: 500;
  width: 105px;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing {
  width: 20%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

@media (max-width: 1199px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing {
    width: 25%;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing {
    width: 100%;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .price {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .price {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .price {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .price {
    font-size: 15px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .remove-cart-item {
  margin-left: 10px;
  cursor: pointer;
  color: #a4abb0;
}

@media (max-width: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .remove-cart-item {
    margin-left: 5px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .price-remove .remove-cart-item:hover {
  color: #e11d48;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  color: #9bd3ae;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a i,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a svg {
  margin-right: 3px;
  font-size: 10px;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a:hover,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a:focus,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate a:active {
  color: #2e5fa7;
  text-decoration: underline !important;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate .info-icon {
  border-radius: 50px;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2e5fa7;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 0px;
  margin-left: 5px;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate .info-icon i,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate .info-icon svg {
  color: #fff;
  font-size: 9px;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing .duplicate .info-icon:hover {
  background: #23487f;
}

body.cart.not-empty .cart-wrapper .sidebar {
  width: calc(35% - 25px);
  position: relative;
}

@media (max-width: 1199px) {
  body.cart.not-empty .cart-wrapper .sidebar {
    width: calc(40% - 10px);
  }
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar {
    width: 100%;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals {
  box-shadow: -20px -20px 20px -30px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #f7f7f9;
  border-top: 1px solid #f7f7f9;
  border-top-left-radius: 12px;
  padding: 30px 0px 30px 30px;
  transition: margin 0.2s ease-in-out 0s;
  position: relative;
  margin-top: 0;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals {
    padding: 0px;
    background: none;
    box-shadow: none;
    border: none;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals.sticky {
  position: fixed;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals.sticky {
    position: relative;
    margin-top: 0 !important;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals.stick-bottom {
  position: absolute;
  bottom: 0px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals.stick-bottom {
    position: relative;
    bottom: unset;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals h3 {
  border-top-left-radius: 12px;
  font-weight: 800;
  font-size: 30px;
  color: #2e5fa7;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows {
  width: 100%;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row small {
  font-weight: 600;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.calculated {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #eceeef;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .subtotal {
  font-weight: 500;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .total {
  font-size: 20px;
  font-weight: 600;
  color: #2e5fa7;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a {
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #9bd3ae;
  text-decoration: underline;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min {
  left: 5px;
  top: 5px;
  box-sizing: border-box;
  transition: transform 0.3s;
  width: 10px;
  height: 10px;
  transform: rotate(180deg);
  position: relative;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min::before {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min::after {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min {
  transform: rotate(0deg) !important;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min::before {
  width: 0;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:hover,
body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:focus,
body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:active {
  text-decoration: underline !important;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form {
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form.show {
  opacity: 1;
  max-height: 150px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form {
  width: 100%;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .alert {
  margin: 10px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group {
  position: relative;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .form-control {
  padding: 12px 120px 12px 12px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .btn {
  position: absolute;
  margin-top: 0;
  right: 7px;
  top: 12px;
  border-radius: 3px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount {
  color: #a4abb0;
  cursor: pointer;
  position: relative;
  top: 0px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount:hover {
  color: #e11d48;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount i,
body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount svg {
  font-size: 14px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .btn {
  margin-top: 20px;
  color: #fff;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .secure-payment {
  height: 100px;
  margin-top: 30px;
  border-top: 1px solid #eceeef;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .secure-payment img {
  width: 165px;
}

body.checkout.pre-check .checkout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 640px;
}

@media (max-width: 991px) {
  body.checkout.pre-check .checkout-wrapper {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  body.checkout.pre-check .checkout-wrapper {
    padding: 0 20px;
  }
}

body.checkout.pre-check .checkout-wrapper h1 {
  font-size: 46px;
  font-weight: 800;
  text-align: center;
  color: #2e5fa7;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.checkout.pre-check .checkout-wrapper h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  body.checkout.pre-check .checkout-wrapper h1 {
    font-size: 26px;
  }
}

body.checkout.pre-check .checkout-wrapper h2 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: #9bd3ae;
  margin: 0 0 40px;
  line-height: 25px;
}

@media (max-width: 767px) {
  body.checkout.pre-check .checkout-wrapper h2 {
    font-size: 20px;
    margin: 0 0 25px;
  }
}

@media (max-width: 575px) {
  body.checkout.pre-check .checkout-wrapper h2 {
    font-size: 18px;
  }
}

body.checkout.pre-check .checkout-wrapper p {
  font-size: 18px;
  text-align: center;
  margin: 30px 0px 35px;
  max-width: 75%;
}

@media (max-width: 767px) {
  body.checkout.pre-check .checkout-wrapper p {
    font-size: 16px;
    max-width: 100%;
    margin: 20px 0px 25px;
  }
}

body.checkout.pre-check .checkout-wrapper .ww-forgotten {
  text-decoration: underline;
}

body.checkout.pre-check .checkout-wrapper #checkout-form {
  width: 100%;
  display: flex;
  justify-content: center;
}

body.checkout.pre-check .checkout-wrapper #checkout-form .m-form {
  width: 65%;
}

@media (max-width: 767px) {
  body.checkout.pre-check .checkout-wrapper #checkout-form .m-form {
    width: 100%;
  }
}

body.checkout.post-check .cart-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper {
    flex-wrap: wrap;
    padding-top: 0;
  }
}

body.checkout.post-check .cart-wrapper .information {
  width: calc(65% - 25px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199px) {
  body.checkout.post-check .cart-wrapper .information {
    width: calc(60% - 10px);
  }
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information {
    width: 100%;
  }
}

body.checkout.post-check .cart-wrapper .information h1 {
  color: #2e5fa7;
  font-weight: 800;
  font-size: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information h1 {
    font-size: 28px;
    padding-top: 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information h1 {
    font-size: 26px;
    padding-top: 15px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information h1 {
    font-size: 24px;
    padding-top: 10px;
  }
}

body.checkout.post-check .cart-wrapper .information h2 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information h2 {
    font-size: 20px;
    border-top: 1px solid #eceeef;
    padding-top: 20px;
  }
}

body.checkout.post-check .cart-wrapper .information form {
  margin-bottom: 25px;
  box-shadow: 20px 0px 20px -30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 30px 30px 30px 0;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information form {
    padding: 30px 0;
    box-shadow: none;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information form {
    padding: 20px 0 30px 0;
  }
}

body.checkout.post-check .cart-wrapper .information form:last-child {
  margin-bottom: 0;
}

body.checkout.post-check .cart-wrapper .information .grid {
  display: grid;
  width: calc(100% + 30px);
  grid-template-columns: repeat(2, 1fr);
  margin-left: -30px;
  margin-top: -20px;
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information .grid {
    margin-left: -20px;
    width: calc(100% + 20px);
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information .grid {
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information .grid .tile {
    border-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information .grid .tile {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information .grid .tile {
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 20px 0;
    border-bottom: 1px solid #eceeef !important;
  }

  body.checkout.post-check .cart-wrapper .information .grid .tile:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0;
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile:nth-child(-n+2) {
  border-bottom: 1px solid #eceeef;
}

body.checkout.post-check .cart-wrapper .information .grid .tile:nth-child(2n+1) {
  border-right: 1px solid #eceeef;
}

body.checkout.post-check .cart-wrapper .information .grid .tile:nth-child(n+7) {
  border-top: 1px solid #eceeef;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info .title {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information .grid .tile .info .title {
    font-size: 20px;
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info h3 {
  color: #2e5fa7;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: -10px;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info ul {
  margin: 0;
  padding: 0;
  margin: 1rem 0;
  color: #636c72;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info ul li {
  list-style-type: none;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info ul li strong {
  font-weight: 500;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info p {
  margin: 1rem 0;
  color: #636c72;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info .link {
  font-weight: 300;
  color: #9bd3ae;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

body.checkout.post-check .cart-wrapper .information .grid .tile:hover {
  z-index: 1;
  border-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
  border-radius: 12px;
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information .grid .tile:hover {
    transform: scale(1);
    box-shadow: none;
    border-bottom: 1px solid #eceeef !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0;
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile:hover .link {
  color: #2e5fa7;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice {
  border-radius: 5px;
  padding: 12px;
  border: 2px solid #dee2e3;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  width: calc(50% - 15px);
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information .shipping_invoice {
    width: 70%;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information .shipping_invoice {
    width: 100%;
  }
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .m-radio > span {
  transition: all 0.2s ease-in-out;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input {
  display: flex;
  flex-direction: row;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input .radio {
  position: relative;
  top: -10px;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input .info {
  position: relative;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input .info .title {
  font-weight: 600;
  font-size: 1.1rem;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input .info .title .m-badge {
  position: relative;
  top: -2px;
  left: -5px;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 50px;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .input .info .text {
  display: block;
  padding-top: 0.7rem;
  font-size: 0.9rem;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin-top: 10px;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice .icon img {
  max-height: 30px;
  max-width: 80px;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border: solid 2px #9bd3ae !important;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice:hover .m-radio > span {
  border-color: #89cba0;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice.active {
  background: rgba(46, 95, 167, 0.05) !important;
  color: #285493 !important;
  border: solid 2px #2e5fa7 !important;
}

body.checkout.post-check .cart-wrapper .information .shipping_invoice.active .m-radio > span {
  border-color: #285493;
}

body.checkout.post-check .cart-wrapper .information .manual-address,
body.checkout.post-check .cart-wrapper .information .shipping_manual-address {
  margin-top: 30px;
}

body.checkout.post-check .cart-wrapper .information .address-result,
body.checkout.post-check .cart-wrapper .information .shipping_address-result {
  margin-top: 32px;
}

body.checkout.post-check .cart-wrapper .information .address-result .alert,
body.checkout.post-check .cart-wrapper .information .shipping_address-result .alert {
  margin: 0;
}

body.checkout.post-check .cart-wrapper .information .info-icon {
  border-radius: 50px;
  height: 18px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2e5fa7;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: -1px;
}

body.checkout.post-check .cart-wrapper .information .info-icon i,
body.checkout.post-check .cart-wrapper .information .info-icon svg {
  color: #fff;
  font-size: 8px;
}

body.checkout.post-check .cart-wrapper .information .info-icon:hover {
  background: #23487f;
}

body.checkout.post-check .cart-wrapper .sidebar {
  width: calc(35% - 25px);
  position: relative;
}

@media (max-width: 1199px) {
  body.checkout.post-check .cart-wrapper .sidebar {
    width: calc(40% - 10px);
  }
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar {
    width: 100%;
    margin-top: 20px;
  }
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eceeef;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item.removed {
  animation: removed-item-animation 0.4s cubic-bezier(0.55, -0.04, 0.91, 0.94) forwards;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header h3 {
  display: block;
  font-size: 18px;
  color: #9bd3ae;
  font-weight: 600;
  margin-bottom: 5px;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header h3 small {
  display: none;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing {
  align-self: flex-start;
  width: 30%;
  text-align: right;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing .price {
  font-size: 16px;
  font-weight: 600;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing .remove-cart-item {
  margin-left: 5px;
  cursor: pointer;
  color: #a4abb0;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing .remove-cart-item:hover {
  color: #e11d48;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 25%;
  margin-right: 10px;
}

@media (max-width: 420px) {
  body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .image {
    display: none;
  }
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs {
  width: 75%;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div {
  display: flex;
  font-size: 13px;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .option {
  font-weight: 500;
  width: 35%;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals {
  box-shadow: -20px -20px 20px -30px rgba(0, 0, 0, 0.1);
  border-left: 1px solid #f7f7f9;
  border-top: 1px solid #f7f7f9;
  border-top-left-radius: 12px;
  padding: 30px 0px 30px 30px;
  transition: margin 0.2s ease-in-out 0s;
  position: relative;
  margin-top: 0;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals {
    padding: 0px;
    background: none;
    box-shadow: none;
    border: none;
  }
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals.sticky {
  position: fixed;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals.sticky {
    position: relative;
    margin-top: 0 !important;
  }
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals.stick-bottom {
  position: absolute;
  bottom: 0px;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals.stick-bottom {
    position: relative;
    bottom: unset;
  }
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals h3 {
  border-top-left-radius: 5px;
  font-weight: 800;
  font-size: 30px;
  color: #2e5fa7;
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .sidebar .cart-totals h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows {
  width: 100%;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row small {
  font-weight: 600;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.calculated {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #eceeef;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .subtotal {
  font-weight: 500;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .total {
  font-size: 20px;
  font-weight: 600;
  color: #2e5fa7;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a {
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #9bd3ae;
  text-decoration: underline;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min {
  left: 5px;
  top: 5px;
  box-sizing: border-box;
  transition: transform 0.3s;
  width: 10px;
  height: 10px;
  transform: rotate(180deg);
  position: relative;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min::before {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a .accordion-plus-min::after {
  content: "";
  display: block;
  width: 10px;
  height: 0;
  border-bottom: solid 2px #9bd3ae;
  position: absolute;
  bottom: 4px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min {
  transform: rotate(0deg) !important;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a.active .accordion-plus-min::before {
  width: 0;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:hover,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:focus,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.discount a:active {
  text-decoration: underline !important;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form {
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease-in-out;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form.show {
  opacity: 1;
  max-height: 150px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form {
  width: 100%;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .alert {
  margin: 10px 0px 0px;
  padding: 10px;
  font-size: 14px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group {
  position: relative;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .form-control {
  padding: 12px 120px 12px 12px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .btn {
  position: absolute;
  margin-top: 0;
  right: 7px;
  top: 12px;
  border-radius: 3px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount {
  color: #a4abb0;
  cursor: pointer;
  position: relative;
  top: 0px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount:hover {
  color: #e11d48;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount i,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount svg {
  font-size: 14px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .btn {
  margin-top: 20px;
  color: #fff;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .btn i,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .btn svg {
  margin-right: 10px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .terms {
  margin-top: 20px;
  font-size: 15px;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .terms a {
  text-decoration: underline;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .terms a:hover {
  color: #2e5fa7;
  text-decoration: underline !important;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .terms a:focus,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .terms a:active {
  color: #9bd3ae;
  text-decoration: underline !important;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .secure-payment {
  height: 100px;
  margin-top: 30px;
  border-top: 1px solid #f7f7f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals .secure-payment img {
  width: 165px;
}

body.checkout.payment .checkout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  padding: 0px 100px;
}

@media (max-width: 991px) {
  body.checkout.payment .checkout-wrapper {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  body.checkout.payment .checkout-wrapper {
    padding: 0 20px;
  }
}

body.checkout.payment .checkout-wrapper h2 {
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.checkout.payment .checkout-wrapper h2 {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  body.checkout.payment .checkout-wrapper h2 {
    font-size: 60px;
  }
}

body.checkout.payment .checkout-wrapper h1 {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  color: #9bd3ae;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.checkout.payment .checkout-wrapper h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  body.checkout.payment .checkout-wrapper h1 {
    font-size: 26px;
    text-align: center;
  }
}

body.checkout.payment .checkout-wrapper p {
  font-size: 18px;
  text-align: center;
}

@media (max-width: 575px) {
  body.checkout.payment .checkout-wrapper p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  body.account #footer {
    padding-bottom: 90px;
  }
}

body.account .account-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

@media (max-width: 1199px) {
  body.account .account-wrapper {
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper {
    flex-wrap: wrap;
  }
}

body.account .account-wrapper .sidebar {
  width: calc(28% - 25px);
  box-shadow: 20px -20px 20px -30px rgba(0, 0, 0, 0.1);
  border-right: 1px solid #f7f7f9;
  border-top: 1px solid #f7f7f9;
  border-top-right-radius: 12px;
}

@media (max-width: 1199px) {
  body.account .account-wrapper .sidebar {
    width: calc(28% - 20px);
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar {
    width: 100%;
    position: fixed;
    z-index: 998;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0px -10px 20px -15px rgba(0, 0, 0, 0.1);
    padding: 0;
  }
}

body.account .account-wrapper .sidebar .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #2e5fa7;
  color: #636c72;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item {
    padding: 10px;
    border-bottom: none;
    border-left: 1px solid #eceeef !important;
    border-radius: 0px !important;
    background: #fff;
    flex: 1;
    justify-content: center;
    height: 60px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar .menu-item {
    padding: 5px;
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item.admin {
    display: none;
  }
}

body.account .account-wrapper .sidebar .menu-item:first-child {
  border-top-right-radius: 12px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item:last-child {
    border-right: 1px solid #eceeef !important;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text {
  display: inline-flex;
  padding: 10px 0px;
  align-items: center;
  font-weight: 300;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text {
    padding: 0;
    flex-direction: column;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
  position: absolute;
  font-size: 18px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
    position: relative;
    font-size: 16px;
    margin-top: 5px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
    font-size: 14px;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text .text {
  padding-left: 35px;
  line-height: 1.6rem;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .text {
    padding-left: 0;
    font-size: 13px;
    margin-top: 3px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .text {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .text {
    font-size: 9px;
  }
}

body.account .account-wrapper .sidebar .menu-item .arrow {
  opacity: 0;
  visibility: hidden;
  position: relative;
  left: 0px;
  font-size: 16px;
  transition: left 200ms linear;
  color: #b5bcc0;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .arrow {
    display: none;
  }
}

body.account .account-wrapper .sidebar .menu-item:hover {
  background: rgba(155, 211, 174, 0.05);
  color: #89cba0;
  border-left: solid 5px #9bd3ae;
}

body.account .account-wrapper .sidebar .menu-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  left: 5px;
  color: #89cba0;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item:hover {
    border-bottom: solid 5px #9bd3ae;
  }
}

body.account .account-wrapper .sidebar .menu-item.current {
  background: rgba(46, 95, 167, 0.05);
  color: #285493;
  border-left: solid 5px #2e5fa7;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item.current {
    border-bottom: solid 5px #2e5fa7;
  }
}

body.account .account-wrapper .sidebar .menu-item.current .icon-text .text {
  font-weight: 600;
}

body.account .account-wrapper .sidebar .menu-item.current .arrow {
  opacity: 1;
  visibility: visible;
  color: #285493;
}

body.account .account-wrapper .sidebar .menu-item.delete:hover {
  background: rgba(225, 29, 72, 0.05);
  color: #ca1a41;
  border-left: solid 5px #e11d48;
}

body.account .account-wrapper .sidebar .menu-item.delete:hover .arrow {
  color: #ca1a41;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item.delete:hover {
    border-bottom: solid 5px #e11d48;
  }
}

body.account .account-wrapper .information {
  width: calc(72% - 25px);
}

@media (max-width: 1199px) {
  body.account .account-wrapper .information {
    width: calc(72% - 20px);
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .information {
    width: 100%;
  }
}

body.account .account-wrapper .information h1 {
  color: #2e5fa7;
  font-weight: 800;
  font-size: 30px;
  padding-top: 20px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information h1 {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information h1 {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information h1 {
    font-size: 24px;
  }
}

body.account .account-wrapper .information h2 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

body.account .account-wrapper .information form {
  margin-top: 30px;
  padding: 30px 0px 30px 30px;
  border-top: 1px solid #eceeef;
  box-shadow: -20px 0px 20px -30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  body.account .account-wrapper .information form {
    padding: 30px 0;
    box-shadow: none;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information form {
    padding: 20px 0;
    margin-top: 20px;
  }
}

body.account .account-wrapper .information .grid {
  display: grid;
  width: calc(100% + 30px);
  grid-template-columns: repeat(2, 1fr);
  margin-left: -30px;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .grid {
    margin-left: -20px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .grid {
    margin-left: 0;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

body.account .account-wrapper .information .grid .tile {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .grid .tile {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .grid .tile {
    border-top: 1px solid #eceeef;
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 20px 0;
  }

  body.account .account-wrapper .information .grid .tile:last-child {
    border-bottom: 1px solid #eceeef !important;
  }
}

body.account .account-wrapper .information .grid .tile:nth-child(-n+2) {
  border-bottom: 1px solid #eceeef;
}

body.account .account-wrapper .information .grid .tile:nth-child(2n+1) {
  border-right: 1px solid #eceeef;
}

body.account .account-wrapper .information .grid .tile .info {
  transition: all 0.2s ease-in-out;
}

body.account .account-wrapper .information .grid .tile .info .title {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .grid .tile .info .title {
    font-size: 20px;
  }
}

body.account .account-wrapper .information .grid .tile .info strong {
  font-weight: 500;
}

body.account .account-wrapper .information .grid .tile .info h3 {
  color: #2e5fa7;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: -10px;
}

body.account .account-wrapper .information .grid .tile .info ul {
  margin: 0;
  padding: 0;
  margin: 1rem 0;
  color: #636c72;
}

body.account .account-wrapper .information .grid .tile .info ul li {
  list-style-type: none;
}

body.account .account-wrapper .information .grid .tile .info ul li strong {
  font-weight: 500;
}

body.account .account-wrapper .information .grid .tile .info p {
  margin: 1rem 0;
  color: #636c72;
}

body.account .account-wrapper .information .grid .tile .info .link {
  font-weight: 300;
  color: #9bd3ae;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

body.account .account-wrapper .information .grid .tile:hover {
  z-index: 1;
  border-color: #fff !important;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
  border-radius: 12px;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .grid .tile:hover {
    transform: scale(1);
    box-shadow: none;
    border-top: 1px solid #eceeef !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 20px 0;
    border-radius: 0;
  }
}

body.account .account-wrapper .information .grid .tile:hover .link {
  color: #2e5fa7;
}

body.account .account-wrapper .information .delete_account {
  color: #e11d48;
  text-decoration: underline;
  font-size: 14px;
  display: block;
  margin-top: 30px;
}

body.account .account-wrapper .information .delete_account:hover {
  color: #b4173a;
}

body.account .account-wrapper .information .manual-address {
  margin-top: 30px;
}

body.account .account-wrapper .information .address-result {
  margin-top: 32px;
}

body.account .account-wrapper .information .address-result .alert {
  margin: 0;
}

body.account .account-wrapper .information .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-header {
    flex-wrap: wrap;
  }
}

body.account .account-wrapper .information .order-header .form-group {
  position: relative;
  width: 100%;
  margin: 0;
}

body.account .account-wrapper .information .order-header .form-group .search {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
  color: #979fa4;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-header .form-group .search {
    top: 12px;
  }
}

body.account .account-wrapper .information .order-header .form-group .form-control {
  padding-right: 45px;
}

body.account .account-wrapper .information .order-header .form-group .form-control .m-badge {
  display: inline-block;
}

body.account .account-wrapper .information .order-header .form-group.filter_status {
  padding: 0;
  width: 50%;
  margin-left: 10px;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-header .form-group.filter_status {
    margin: 5px 0 0 0;
    width: 100%;
  }
}

body.account .account-wrapper .information .order-header .form-group.filter_status .form-control {
  padding-right: 0;
}

body.account .account-wrapper .information .intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

body.account .account-wrapper .information .intro h1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

body.account .account-wrapper .information .intro h1 .m-badge {
  margin-left: 10px;
  border-radius: 5px;
  padding: 2px 8px;
  font-weight: 400;
}

body.account .account-wrapper .information .intro .btn {
  margin-bottom: 18px;
}

body.account .account-wrapper .information .order-text strong {
  font-weight: 600;
}

body.account .account-wrapper .information .order-items {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eceeef;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items {
    margin-top: 25px;
    padding-top: 25px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items {
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-items {
    margin-top: 15px;
    padding-top: 15px;
  }
}

body.account .account-wrapper .information .order-items .order-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eceeef;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-items .order-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

body.account .account-wrapper .information .order-items .order-item .image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 25%;
  max-width: 240px;
  margin-right: 20px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .image {
    margin-right: 15px;
    width: 35%;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .image {
    width: 25%;
  }
}

@media (max-width: 420px) {
  body.account .account-wrapper .information .order-items .order-item .image {
    display: none;
  }
}

body.account .account-wrapper .information .order-items .order-item .image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

body.account .account-wrapper .information .order-items .order-item .info {
  width: 55%;
  flex-grow: 1;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .info {
    width: 45%;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .info {
    width: 55%;
  }
}

@media (max-width: 420px) {
  body.account .account-wrapper .information .order-items .order-item .info {
    width: 80%;
  }
}

body.account .account-wrapper .information .order-items .order-item .info h3 {
  display: block;
  font-size: 20px;
  color: #9bd3ae;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 16px;
  }
}

body.account .account-wrapper .information .order-items .order-item .info h3 a {
  color: #9bd3ae;
}

body.account .account-wrapper .information .order-items .order-item .info h3 a:hover {
  color: #2e5fa7;
}

body.account .account-wrapper .information .order-items .order-item .info h3 small {
  display: none;
}

body.account .account-wrapper .information .order-items .order-item .info .specs {
  width: 100%;
}

body.account .account-wrapper .information .order-items .order-item .info .specs div {
  display: flex;
  font-size: 15px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .info .specs div {
    font-size: 14px;
  }
}

body.account .account-wrapper .information .order-items .order-item .info .specs div .option {
  font-weight: 500;
  width: 105px;
}

body.account .account-wrapper .information .order-items .order-item .pricing {
  width: 20%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .pricing {
    width: 100%;
  }
}

body.account .account-wrapper .information .order-items .order-item .pricing span {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .pricing span {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .pricing span {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-items .order-item .pricing span {
    font-size: 15px;
  }
}

body.account .account-wrapper .information .order-details {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-details {
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}

body.account .account-wrapper .information .order-details .invoice-shipping-address {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-details .invoice-shipping-address {
    margin-top: 30px;
    padding-top: 20px;
  }
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .invoice-address,
body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address {
  align-self: flex-start;
  margin-right: 50px;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .invoice-address .title,
body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address .title {
  color: #9bd3ae;
  font-weight: 600;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .invoice-address ul,
body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address ul {
  margin: 0;
  padding: 0;
  margin: 1rem 0;
  color: #636c72;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .invoice-address ul li,
body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address ul li {
  list-style-type: none;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .invoice-address ul li strong,
body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address ul li strong {
  font-weight: 500;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address {
  margin-right: 40px;
}

body.account .account-wrapper .information .order-details .totals {
  padding: 0px 0px 30px 30px;
  box-shadow: -20px 0px 20px -30px rgba(0, 0, 0, 0.1);
  width: 40%;
}

@media (max-width: 1199px) {
  body.account .account-wrapper .information .order-details .totals {
    margin-left: auto;
    width: 50%;
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-details .totals {
    width: 60%;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-details .totals {
    width: 100%;
    padding: 0px;
    background: none;
    box-shadow: none;
    border: none;
  }
}

body.account .account-wrapper .information .order-details .totals .totals-rows {
  width: 100%;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0px;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row small {
  font-weight: 500;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row.calculated {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #eceeef;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row .subtotal {
  font-weight: 500;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row .total {
  font-size: 20px;
  font-weight: 600;
  color: #2e5fa7;
}

@media (max-width: 991px) {
  body.account #main {
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.account #footer {
    display: none;
  }
}

body.upload .templates {
  text-align: center;
  margin: 30px 0;
}

body.upload .templates .item {
  border-radius: 5px;
  padding: 15px 20px 15px 15px;
  border: 2px solid #dee2e3;
  background: #fff;
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  margin: 0 5px;
}

@media (max-width: 575px) {
  body.upload .templates .item {
    padding: 8px;
    min-width: 100%;
    margin-bottom: 5px;
  }
}

body.upload .templates .item img {
  width: 20px;
  height: 20px;
}

body.upload .templates .item i,
body.upload .templates .item svg {
  font-size: 18px;
}

body.upload .templates .item .text {
  margin-left: 15px;
  display: block;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: #636c72;
  transition: all 0.2s ease-in-out;
}

body.upload .templates .item:hover {
  background: rgba(155, 211, 174, 0.05) !important;
  color: #89cba0 !important;
  border: solid 2px #9bd3ae !important;
}

body.upload .templates .item:hover .text {
  color: #9bd3ae;
}

body.upload .templates .item.m-loader.m-loader--light {
  padding-right: 40px;
}

body.upload .templates .item.m-loader.m-loader--light::before {
  border-top-color: #c2c9cc;
}

body.upload .guidelines {
  font-size: 15px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  body.upload .guidelines {
    margin-bottom: 0;
  }
}

body.upload .guidelines a {
  text-decoration: underline;
  color: #636c72;
}

body.upload .guidelines a:hover,
body.upload .guidelines a:focus,
body.upload .guidelines a:active {
  text-decoration: underline !important;
}

body.blog .blog-wrapper {
  margin: 20px 0 70px;
}

@media (max-width: 991px) {
  body.blog .blog-wrapper {
    margin: 0px 0 50px;
  }
}

body.blog .blog-wrapper .accordion {
  width: 100%;
}

body.blog .blog-wrapper .accordion .categories {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .accordion .categories {
    margin-bottom: 0;
  }

  body.blog .blog-wrapper .accordion .categories .category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    border-bottom: solid 1px #eceeef;
    cursor: pointer;
    transition: linear 100ms;
    border-left: solid 0px #2e5fa7;
    border-right: 0;
    border-top: 0;
    color: #636c72;
    text-decoration: none !important;
    border-radius: 0;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0;
  }
}

@media (max-width: 991px) and (max-width: 767px) {
  body.blog .blog-wrapper .accordion .categories .category {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .accordion .categories .category:hover {
    background: rgba(155, 211, 174, 0.05);
    color: #89cba0;
    border-left: solid 5px #9bd3ae;
  }
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .accordion .categories .category.current {
    background: rgba(46, 95, 167, 0.05);
    color: #285493;
    border-left: solid 5px #2e5fa7;
    font-weight: 600;
  }
}

body.blog .blog-wrapper .accordion .header {
  display: none;
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .accordion .header {
    border: 1px solid #eceeef;
    display: flex;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 8px 25px;
  }
}

@media (max-width: 575px) {
  body.blog .blog-wrapper .accordion .header {
    padding: 6px 20px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper .accordion .header .accordion-plus-min {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper .accordion .header .accordion-plus-min::before {
    width: 14px;
    bottom: 6px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper .accordion .header .accordion-plus-min::after {
    width: 14px;
    bottom: 6px;
  }
}

body.blog .blog-wrapper .accordion .header:hover {
  background: #fff;
  color: #636c72;
  border: 1px solid #eceeef;
}

body.blog .blog-wrapper .accordion .header:hover .accordion-plus-min::before {
  border-color: #979fa4;
}

body.blog .blog-wrapper .accordion .header:hover .accordion-plus-min::after {
  border-color: #979fa4;
}

body.blog .blog-wrapper .accordion .header:not(.collapsed) {
  background: #fff !important;
  color: #636c72 !important;
  border: 1px solid #eceeef !important;
}

body.blog .blog-wrapper .accordion .header:not(.collapsed) .accordion-plus-min {
  transform: rotate(0deg) !important;
}

body.blog .blog-wrapper .accordion .header:not(.collapsed) .accordion-plus-min::before {
  width: 0;
  border-color: #979fa4;
}

body.blog .blog-wrapper .accordion .header:not(.collapsed) .accordion-plus-min::after {
  border-color: #979fa4;
}

body.blog .blog-wrapper .accordion .collapse {
  display: block;
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .accordion .collapse {
    display: none;
  }
}

body.blog .blog-wrapper .accordion .collapse .content a {
  text-decoration: none !important;
}

body.blog .blog-wrapper .accordion .show {
  display: block !important;
}

body.blog .blog-wrapper .grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  grid-row-gap: 30px;
}

@media (max-width: 1199px) {
  body.blog .blog-wrapper .grid {
    -moz-column-gap: 20px;
         column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .grid {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  body.blog .blog-wrapper .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 10px;
  }
}

body.blog .blog-wrapper .grid .tile {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
}

body.blog .blog-wrapper .grid .tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
}

body.blog .blog-wrapper .grid .tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

body.blog .blog-wrapper .grid .tile .info {
  padding: 10px 2px;
}

body.blog .blog-wrapper .grid .tile .info .info-categories {
  display: block;
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: rgba(99, 108, 114, 0.7);
}

body.blog .blog-wrapper .grid .tile .info .name {
  display: block;
  font-size: 1.2rem;
  color: #2e5fa7;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1199px) {
  body.blog .blog-wrapper .grid .tile .info .name {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper .grid .tile .info .name {
    font-size: 16px;
  }
}

body.blog .blog-wrapper .grid .tile .info .readmore {
  color: #636c72;
  font-size: 14px;
  text-decoration: underline;
}

body.blog .blog-wrapper .grid .tile .info .readmore:hover {
  color: #2e5fa7;
}

body.blog .blog-wrapper .grid .tile:hover {
  z-index: 1;
  transform: scale(1.05);
}

body.blog .blog-wrapper .grid .tile:hover .name {
  color: #2e5fa7;
}

body.blog .blog-wrapper > .tags {
  margin: 0 auto;
  max-width: 640px;
  margin-top: 100px;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  body.blog .blog-wrapper > .tags {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.blog .blog-wrapper > .tags {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper > .tags {
    margin-top: 40px;
  }
}

body.blog .blog-wrapper > .tags h2 {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #2e5fa7;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  body.blog .blog-wrapper > .tags h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  body.blog .blog-wrapper > .tags h2 {
    font-size: 22px;
  }
}

body.blog .blog-wrapper .newsletter {
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: 100px;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  body.blog .blog-wrapper .newsletter {
    margin-bottom: 80px;
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.blog .blog-wrapper .newsletter {
    margin-bottom: 60px;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-wrapper .newsletter {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}

body.blog .blog-item {
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  padding-bottom: 50px;
}

@media (max-width: 767px) {
  body.blog .blog-item {
    padding-bottom: 30px;
  }
}

body.blog .blog-item p {
  text-align: left;
}

body.blog .blog-item strong,
body.blog .blog-item b {
  font-weight: 600;
}

body.blog .blog-item h1,
body.blog .blog-item h2,
body.blog .blog-item h3,
body.blog .blog-item h4,
body.blog .blog-item h5,
body.blog .blog-item h6 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  margin-top: 30px;
}

body.blog .blog-item img,
body.blog .blog-item iframe {
  max-width: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  margin: 20px 0;
  border-radius: 12px;
}

@media (max-width: 767px) {
  body.blog .blog-item img,
  body.blog .blog-item iframe {
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  body.blog .blog-item img,
  body.blog .blog-item iframe {
    margin: 10px 0;
  }
}

body.blog .blog-item img.featured,
body.blog .blog-item iframe.featured {
  margin: 0px 0 40px;
}

@media (max-width: 767px) {
  body.blog .blog-item img.featured,
  body.blog .blog-item iframe.featured {
    margin: 0px 0 30px;
  }
}

@media (max-width: 575px) {
  body.blog .blog-item img.featured,
  body.blog .blog-item iframe.featured {
    margin: 0px 0 20px;
  }
}

body.blog .blog-item img.no-shadow,
body.blog .blog-item iframe.no-shadow {
  box-shadow: none;
}

body.blog .blog-item a {
  text-decoration: underline !important;
}

body.blog .blog-item ul,
body.blog .blog-item ol,
body.blog .blog-item dl {
  padding-left: 20px;
}

body.blog .blog-meta {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  body.blog .blog-meta {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  body.blog .blog-meta {
    margin-top: 30px;
  }
}

body.blog .blog-meta h3 {
  display: inline-block;
  font-size: 14px;
  color: #2e5fa7;
  font-weight: 600;
  margin-bottom: 10px;
}

body.blog .blog-share {
  margin-top: 50px;
  text-align: center;
}

@media (max-width: 767px) {
  body.blog .blog-share {
    margin-top: 30px;
  }
}

body.blog .blog-share h3 {
  display: block;
  font-size: 18px;
  color: #2e5fa7;
  font-weight: 700;
}

@media (max-width: 991px) {
  body.blog .insta-grid {
    margin-top: 15px;
  }
}

body.blog .footer-title {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #2e5fa7;
  text-align: center;
}

@media (max-width: 767px) {
  body.blog .footer-title {
    font-size: 24px;
  }
}

body.blog.templates .template-info {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}

@media (max-width: 1199px) {
  body.blog.templates .template-info {
    padding: 0 !important;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .template-info {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .template-info {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .template-info h2 {
    font-size: 19px !important;
  }
}

body.blog.templates .template-info .button {
  margin-top: 40px;
}

@media (max-width: 767px) {
  body.blog.templates .template-info .button {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  body.blog.templates .template-info .button {
    margin-top: 20px;
  }
}

body.blog.templates .how-it-works {
  margin: 30px 0;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works {
    margin: 20px 0;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works {
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .how-it-works {
    margin: 0px 0;
  }
}

body.blog.templates .how-it-works .usps {
  display: flex;
  background: #fff;
  padding: 58px 50px 51px;
  background: rgba(46, 95, 167, 0.05);
  border-radius: 12px;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works .usps {
    padding: 48px 40px 41px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works .usps {
    padding: 38px 0px 31px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .how-it-works .usps {
    flex-wrap: wrap;
    padding: 28px 30px 21px;
  }
}

@media (max-width: 575px) {
  body.blog.templates .how-it-works .usps {
    padding: 18px 20px 11px;
  }
}

body.blog.templates .how-it-works .usps li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 0 20px;
  text-align: center;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works .usps li {
    padding: 0 18px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works .usps li {
    padding: 0 16px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .how-it-works .usps li {
    padding: 10px 0;
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
  }
}

body.blog.templates .how-it-works .usps li i,
body.blog.templates .how-it-works .usps li svg {
  color: #2e5fa7;
  font-size: 30px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works .usps li i,
  body.blog.templates .how-it-works .usps li svg {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works .usps li i,
  body.blog.templates .how-it-works .usps li svg {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .how-it-works .usps li i,
  body.blog.templates .how-it-works .usps li svg {
    font-size: 24px;
    margin-right: 14px;
    width: 30px;
  }
}

body.blog.templates .how-it-works .usps li h3 {
  color: #2e5fa7;
  font-weight: 700;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works .usps li h3 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works .usps li h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .how-it-works .usps li h3 {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  body.blog.templates .how-it-works .usps li h3 {
    font-size: 16px;
  }
}

body.blog.templates .how-it-works .usps li span {
  color: #2e5fa7;
  text-align: center;
  font-size: 16px;
}

@media (max-width: 1199px) {
  body.blog.templates .how-it-works .usps li span {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .how-it-works .usps li span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  body.blog.templates .how-it-works .usps li span {
    font-size: 13px;
  }
}

body.blog.templates .requirements {
  margin: 60px 0 100px 0;
}

@media (max-width: 1199px) {
  body.blog.templates .requirements {
    margin: 55px 0 90px 0;
  }
}

@media (max-width: 991px) {
  body.blog.templates .requirements {
    margin: 50px 0 80px 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements {
    margin: 45px 0 70px 0;
  }
}

body.blog.templates .requirements .footer-title {
  color: #2e5fa7;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  body.blog.templates .requirements .footer-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.blog.templates .requirements .footer-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .footer-title {
    margin-bottom: 20px;
  }
}

body.blog.templates .requirements .grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1199px) {
  body.blog.templates .requirements .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  body.blog.templates .requirements .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

body.blog.templates .requirements .grid .tile {
  background: #fff;
  padding: 40px;
  transform: scale(1);
  transition: transform 0.1s ease-in-out-quad;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  text-align: left;
}

@media (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  body.blog.templates .requirements .grid .tile {
    border-top: 1px solid #eceeef !important;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px 0;
  }

  body.blog.templates .requirements .grid .tile:last-child {
    border-bottom: 1px solid #eceeef !important;
  }
}

body.blog.templates .requirements .grid .tile:nth-child(-n+3) {
  border-bottom: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+3) {
    border-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+3) {
    border-bottom: 0;
  }
}

body.blog.templates .requirements .grid .tile:nth-child(3n+1) {
  border-right: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n+1) {
    border-right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n+1) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n+1) {
    border-right: 0;
  }
}

body.blog.templates .requirements .grid .tile:nth-child(3n) {
  border-left: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n) {
    border-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n) {
    border-left: 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid .tile:nth-child(3n) {
    border-left: 0;
  }
}

body.blog.templates .requirements .grid .tile:nth-child(n+7) {
  border-top: 1px solid #eceeef;
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile:nth-child(n+7) {
    border-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.blog.templates .requirements .grid .tile:nth-child(n+7) {
    border-top: 0;
  }
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid .tile:nth-child(n+7) {
    border-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+2) {
    border-bottom: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(n+5) {
    border-top: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(odd) {
    border-right: 1px solid #eceeef;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+2) {
    border-bottom: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(n+5) {
    border-top: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(odd) {
    border-right: 1px solid #eceeef;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  body.blog.templates .requirements .grid .tile:nth-child(-n+2) {
    border-bottom: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(n+5) {
    border-top: 1px solid #eceeef;
  }

  body.blog.templates .requirements .grid .tile:nth-child(odd) {
    border-right: 1px solid #eceeef;
  }
}

body.blog.templates .requirements .grid .tile i,
body.blog.templates .requirements .grid .tile svg {
  color: #9bd3ae;
  font-size: 24px;
  margin-right: 16px;
}

body.blog.templates .requirements .grid .tile .text h3 {
  display: block;
  font-size: 18px;
  color: #2e5fa7;
  font-weight: 600;
  text-align: left;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  body.blog.templates .requirements .grid .tile .text h3 {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  body.blog.templates .requirements .grid .tile .text h3 {
    text-align: left;
    font-size: 18px;
    margin-bottom: 2px;
  }
}

@media (max-width: 400px) {
  body.blog.templates .requirements .grid .tile .text h3 {
    font-size: 16px;
  }
}

body.blog.templates .requirements .grid .tile .text span {
  display: block;
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: 300;
  color: #636c72;
  text-align: left;
}

@media (max-width: 575px) {
  body.blog.templates .requirements .grid .tile .text span {
    text-align: left;
  }
}

@media (max-width: 400px) {
  body.blog.templates .requirements .grid .tile .text span {
    font-size: 13px;
  }
}

body.blog.templates .requirements .grid .tile .text strong {
  font-weight: 500;
}

body.blog.templates .requirements .grid .tile:hover {
  z-index: 1;
  border-color: #fff !important;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
  border-radius: 12px;
}

@media (max-width: 575px) {
  body.blog.templates .requirements .grid .tile:hover {
    transform: scale(1);
    box-shadow: none;
    border-top: 1px solid #eceeef !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    padding: 20px 0;
    border-radius: 0;
  }
}

body.blog.templates .requirements .grid .tile:hover .name {
  color: #2e5fa7;
}

body.text-page .content p {
  text-align: left;
}

body.text-page .content strong,
body.text-page .content b {
  font-weight: 600;
}

body.text-page .content h1,
body.text-page .content h2,
body.text-page .content h3,
body.text-page .content h4,
body.text-page .content h5,
body.text-page .content h6 {
  color: #2e5fa7;
  font-weight: 600;
  font-size: 22px;
  margin-top: 30px;
}

body.text-page .content img,
body.text-page .content iframe {
  max-width: 100%;
  box-shadow: none !important;
  margin: 20px 0;
  border-radius: 12px;
}

@media (max-width: 767px) {
  body.text-page .content img,
  body.text-page .content iframe {
    margin: 15px 0;
  }
}

@media (max-width: 575px) {
  body.text-page .content img,
  body.text-page .content iframe {
    margin: 10px 0;
  }
}

body.text-page .content img.featured,
body.text-page .content iframe.featured {
  margin: 0px 0 40px;
}

@media (max-width: 767px) {
  body.text-page .content img.featured,
  body.text-page .content iframe.featured {
    margin: 0px 0 30px;
  }
}

@media (max-width: 575px) {
  body.text-page .content img.featured,
  body.text-page .content iframe.featured {
    margin: 0px 0 20px;
  }
}

body.text-page .content img.no-shadow,
body.text-page .content iframe.no-shadow {
  box-shadow: none;
}

body.text-page .content a {
  text-decoration: underline !important;
}

body.text-page .content ul,
body.text-page .content ol,
body.text-page .content dl {
  padding-left: 20px;
}

body.text-page.contact form,
body.text-page.quote form {
  padding: 30px;
  border-top: 1px solid #eceeef;
  box-shadow: -20px 0px 20px -30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  body.text-page.contact form,
  body.text-page.quote form {
    padding: 15px 0 30px;
    box-shadow: none;
  }
}

@media (max-width: 575px) {
  body.text-page.contact form,
  body.text-page.quote form {
    padding: 10px 0;
  }
}

body.text-page.contact .contact-wrapper,
body.text-page.quote .contact-wrapper {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0px 0px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  body.text-page.contact .contact-wrapper,
  body.text-page.quote .contact-wrapper {
    padding: 0px 30px 0px;
    margin-top: -20px;
  }
}

@media (max-width: 991px) {
  body.text-page.contact .contact-wrapper,
  body.text-page.quote .contact-wrapper {
    padding: 0px;
  }
}

@media (max-width: 767px) {
  body.text-page.contact .contact-wrapper,
  body.text-page.quote .contact-wrapper {
    margin-top: -12px;
    margin-bottom: 10px;
  }
}

body.text-page.contact .contact-wrapper > div,
body.text-page.quote .contact-wrapper > div {
  padding: 10px;
  line-height: 27px;
  font-size: 15px;
}

@media (max-width: 1199px) {
  body.text-page.contact .contact-wrapper > div.contact-info,
  body.text-page.quote .contact-wrapper > div.contact-info {
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  body.text-page.contact .contact-wrapper > div.company-info,
  body.text-page.quote .contact-wrapper > div.company-info {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  body.text-page.contact .contact-wrapper > div,
  body.text-page.quote .contact-wrapper > div {
    width: 100%;
    padding: 8px 0;
  }
}

body.text-page.contact .contact-wrapper > div strong,
body.text-page.quote .contact-wrapper > div strong {
  font-weight: 600;
}

body.text-page.contact .contact-wrapper > div ul,
body.text-page.quote .contact-wrapper > div ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

body.text-page.contact .contact-wrapper > div ul strong,
body.text-page.quote .contact-wrapper > div ul strong {
  font-weight: 600;
  display: inline-block;
  min-width: 42px;
}

body.text-page.contact .contact-wrapper > div ul a,
body.text-page.quote .contact-wrapper > div ul a {
  color: #636c72;
}

body.text-page.contact .contact-wrapper > div ul a i,
body.text-page.contact .contact-wrapper > div ul a svg,
body.text-page.quote .contact-wrapper > div ul a i,
body.text-page.quote .contact-wrapper > div ul a svg {
  display: inline-block;
  min-width: 22px;
  position: relative;
  left: -2px;
}

body.text-page.contact .contact-wrapper > div ul a:hover,
body.text-page.contact .contact-wrapper > div ul a:active,
body.text-page.contact .contact-wrapper > div ul a:focus,
body.text-page.quote .contact-wrapper > div ul a:hover,
body.text-page.quote .contact-wrapper > div ul a:active,
body.text-page.quote .contact-wrapper > div ul a:focus {
  color: #2e5fa7;
}

body.text-page.eco section {
  padding: 80px 0px;
}

@media (max-width: 1199px) {
  body.text-page.eco section {
    padding: 70px 0px;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section {
    padding: 65px 0px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section {
    padding: 50px 0px;
  }
}

body.text-page.eco section .section_title {
  font-size: 50px;
  font-weight: 800;
  color: #2e5fa7;
  padding: 0;
  text-align: center;
}

@media (max-width: 1199px) {
  body.text-page.eco section .section_title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section .section_title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section .section_title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section .section_title {
    font-size: 22px;
  }
}

body.text-page.eco section .section_title span {
  color: #00bf63;
}

body.text-page.eco section .section_subtitle {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
  display: block;
}

@media (max-width: 1199px) {
  body.text-page.eco section .section_subtitle {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section .section_subtitle {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section .section_subtitle {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section .section_subtitle {
    font-size: 15px;
  }
}

body.text-page.eco section .section_subtitle a {
  font-weight: 600;
  color: #2e5fa7;
}

body.text-page.eco section .button {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

@media (max-width: 400px) {
  body.text-page.eco section .button {
    display: block;
    width: 100%;
  }
}

body.text-page.eco section p strong {
  font-weight: 500;
}

body.text-page.eco section.green {
  padding: 40px 0;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  body.text-page.eco section.green {
    padding: 25px 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section.green {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}

body.text-page.eco section.green .container {
  display: flex;
}

body.text-page.eco section.green .container .green-visual {
  position: relative;
}

@media (max-width: 991px) {
  body.text-page.eco section.green .container .green-visual {
    display: none;
  }
}

body.text-page.eco section.green .container .green-visual .visual {
  width: 470px;
}

@media (max-width: 1199px) {
  body.text-page.eco section.green .container .green-visual .visual {
    width: 335px;
  }
}

body.text-page.eco section.green .container .green-visual .eco-badge {
  position: absolute;
  left: 130px;
  top: 63px;
  width: 300px;
}

@media (max-width: 1199px) {
  body.text-page.eco section.green .container .green-visual .eco-badge {
    left: 93px;
    top: 44px;
    width: 213px;
  }
}

body.text-page.eco section.green .container .text {
  margin-left: 50px;
}

@media (max-width: 991px) {
  body.text-page.eco section.green .container .text {
    margin-left: 0;
  }
}

body.text-page.eco section.green .container .text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2e5fa7;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  body.text-page.eco section.green .container .text h2 {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section.green .container .text h2 {
    font-size: 27px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section.green .container .text h2 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.green .container .text h2 {
    font-size: 25px;
  }
}

body.text-page.eco section.green .container .text h2 span {
  color: #00bf63;
}

body.text-page.eco section.green .container .text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2e5fa7;
  margin: 10px 0;
}

body.text-page.eco section.green .container .text h3 span {
  color: #00bf63;
}

body.text-page.eco section.green .container .text img {
  margin: 0 auto;
  display: block;
  max-width: 65%;
  padding: 30px 0;
}

@media (max-width: 991px) {
  body.text-page.eco section.green .container .text img {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.green .container .text img {
    max-width: 90%;
  }
}

body.text-page.eco section.ecobadge {
  background: rgba(46, 95, 167, 0.05);
}

body.text-page.eco section.ecobadge .section_title {
  color: #2e5fa7;
}

body.text-page.eco section.ecobadge .visual {
  max-width: 800px;
  margin: 50px auto 60px;
  display: block;
  padding: 0 10px;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .visual {
    margin: 40px auto 50px;
  }
}

body.text-page.eco section.ecobadge .section-block {
  background: #fff;
  border-radius: 12px;
  padding: 60px;
  display: flex;
  height: auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.ecobadge .section-block {
    padding: 35px 25px;
  }
}

body.text-page.eco section.ecobadge .section-block .block-bundle {
  border-right: 1px solid #eceeef;
  padding-right: 60px;
  width: 50%;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block .block-bundle {
    width: 100%;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #eceeef;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  padding: 20px;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges {
    margin-top: 20px;
  }
}

body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges img {
  height: 115px;
  margin-bottom: 0;
  position: relative;
  width: 115px;
}

@media (max-width: 575px) {
  body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges img {
    height: 95px;
    width: 95px;
  }
}

body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges img:nth-child(1) {
  left: 50px;
}

body.text-page.eco section.ecobadge .section-block .block-bundle .eco-badges img:nth-child(3) {
  right: 50px;
}

body.text-page.eco section.ecobadge .section-block .block-website {
  padding-left: 60px;
  width: 50%;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block .block-website {
    width: 100%;
    padding-left: 0;
  }
}

body.text-page.eco section.ecobadge .section-block .block-website .eco-code {
  display: flex;
  margin: 42px 0;
}

body.text-page.eco section.ecobadge .section-block .block-website .eco-code .code-content {
  align-items: flex-start;
  background: #f7f7f9;
  border-radius: 10px;
  display: flex;
  padding: 20px;
  overflow: auto;
}

body.text-page.eco section.ecobadge .section-block .block-website .eco-code .code-content img {
  height: 100px;
  margin-bottom: 0;
  width: 100px;
}

body.text-page.eco section.ecobadge .section-block .block-website .eco-code .code-content pre {
  background: #f7f7f9;
  border-radius: 10px;
  color: #636c72;
  font-size: 15px;
  height: 100px;
  line-height: 20px;
  margin: 0;
  word-wrap: normal;
  padding: 10px 20px;
  overflow-y: hidden;
  overflow-x: visible;
}

body.text-page.eco section.ecobadge .section-block h3 {
  color: #00bf63;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  min-height: 76px;
  text-align: center;
}

@media (max-width: 1199px) {
  body.text-page.eco section.ecobadge .section-block h3 {
    font-size: 28px;
    line-height: 36px;
    min-height: 71px;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block h3 {
    font-size: 26px;
    line-height: 34px;
    min-height: 66px;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section.ecobadge .section-block h3 {
    font-size: 24px;
    line-height: 34px;
    min-height: 61px;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.ecobadge .section-block h3 {
    font-size: 22px;
    line-height: 32px;
    min-height: 56px;
  }
}

body.text-page.eco section.ecobadge .section-block p {
  margin-top: 10px;
  text-align: center;
}

body.text-page.eco section.ecobadge .section-block .block-button {
  margin-top: 35px;
  text-align: center;
}

@media (max-width: 991px) {
  body.text-page.eco section.ecobadge .section-block .block-button {
    margin-top: 20px;
  }
}

body.text-page.eco section.ecobadge .section-block .block-button .copied {
  font-size: 13px;
  margin-top: 10px;
}

body.text-page.eco section.your-turn {
  background-image: url(/images/worldmap.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 150px 0;
  margin-top: 75px;
}

@media (max-width: 1199px) {
  body.text-page.eco section.your-turn {
    padding: 125px 0;
  }
}

@media (max-width: 991px) {
  body.text-page.eco section.your-turn {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  body.text-page.eco section.your-turn {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.your-turn {
    background-image: none;
    padding: 50px 0 0;
    margin-top: 0;
  }
}

body.text-page.eco section.your-turn .btn:first-child {
  margin-right: 5px;
}

body.text-page.eco section.your-turn .btn:last-child {
  margin-left: 5px;
}

@media (max-width: 400px) {
  body.text-page.eco section.your-turn .btn {
    width: 100%;
    margin: 0 !important;
  }

  body.text-page.eco section.your-turn .btn:last-child {
    margin-top: 10px !important;
  }
}

@media (max-width: 575px) {
  body.text-page.eco section.form {
    padding-top: 15px;
  }
}

body.text-page.eco section.form .newsletter {
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media (max-width: 575px) {
  body.text-page.eco section.form .newsletter {
    padding: 0;
  }
}

body.text-page.eco section.form .newsletter h2 {
  color: #00bf63;
}

body.text-page.eco section.accordion {
  padding-top: 0;
  margin-top: -50px;
}

body.text-page.eco section.accordion .container {
  width: 730px !important;
}

body.yourquote .quote-item {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 991px) {
  body.yourquote .quote-item {
    width: 100%;
  }
}

body.yourquote .quote-item h3 {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 600;
  color: #9bd3ae;
}

body.yourquote .quote-item .specs div {
  display: flex;
  text-align: left;
}

body.yourquote .quote-item .specs div .option {
  display: block;
  font-weight: 600;
  min-width: 120px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  body.yourquote .quote-item .specs div .option {
    min-width: 95px;
  }
}

body.yourquote .quote-item .specs div .value.flex {
  display: flex;
  flex-direction: column;
}

body.yourquote .quote-item .specs div .value .items {
  width: 100%;
  display: flex;
}

body.yourquote .quote-item .specs div .value .items > span:not(.valueradio) {
  width: 100px;
}

body.yourquote .quote-item .specs div .value .items > span.valueradio {
  width: 30px !important;
}

body.yourquote .quote-item .specs div .value .info-icon {
  border-radius: 50px;
  height: 15px;
  width: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #979fa4;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  top: 0px;
}

body.yourquote .quote-item .specs div .value .info-icon i,
body.yourquote .quote-item .specs div .value .info-icon svg {
  position: relative;
  right: 0.5px;
  color: #fff;
  font-size: 9px;
}

body.yourquote .quote-item .specs div .value .info-icon:hover {
  background: #23487f;
}

body.yourquote .note {
  font-size: 14px;
  text-align: center;
  display: block;
  margin: 40px 0;
}

@media (max-width: 991px) {
  body.yourquote .note {
    text-align: left;
  }
}

.sitemaps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: masonry;
}

.sitemaps h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-top: 10px !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

