@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 {
  backface-visibility: visible;
  animation-name: flip;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flipOutY {
  animation-duration: 0.75s;
  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;-moz-user-select:none;-ms-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}/*!
 * Cropper.js v1.5.4
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-08-03T08:38:38.177Z
 */.cropper-container{direction:ltr;font-size:0;line-height:0;position:relative;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cropper-container img{display:block;height:100%;image-orientation:0deg;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;width:100%}.cropper-canvas,.cropper-crop-box,.cropper-drag-box,.cropper-modal,.cropper-wrap-box{bottom:0;left:0;position:absolute;right:0;top:0}.cropper-canvas,.cropper-wrap-box{overflow:hidden}.cropper-drag-box{background-color:#fff;opacity:0}.cropper-modal{background-color:#000;opacity:.5}.cropper-view-box{display:block;height:100%;outline:1px solid #39f;outline-color:rgba(51,153,255,.75);overflow:hidden;width:100%}.cropper-dashed{border:0 dashed #eee;display:block;opacity:.5;position:absolute}.cropper-dashed.dashed-h{border-bottom-width:1px;border-top-width:1px;height:33.33333%;left:0;top:33.33333%;width:100%}.cropper-dashed.dashed-v{border-left-width:1px;border-right-width:1px;height:100%;left:33.33333%;top:0;width:33.33333%}.cropper-center{display:block;height:0;left:50%;opacity:.75;position:absolute;top:50%;width:0}.cropper-center:after,.cropper-center:before{background-color:#eee;content:" ";display:block;position:absolute}.cropper-center:before{height:1px;left:-3px;top:0;width:7px}.cropper-center:after{height:7px;left:0;top:-3px;width:1px}.cropper-face,.cropper-line,.cropper-point{display:block;height:100%;opacity:.1;position:absolute;width:100%}.cropper-face{background-color:#fff;left:0;top:0}.cropper-line{background-color:#39f}.cropper-line.line-e{cursor:ew-resize;right:-3px;top:0;width:5px}.cropper-line.line-n{cursor:ns-resize;height:5px;left:0;top:-3px}.cropper-line.line-w{cursor:ew-resize;left:-3px;top:0;width:5px}.cropper-line.line-s{bottom:-3px;cursor:ns-resize;height:5px;left:0}.cropper-point{background-color:#39f;height:5px;opacity:.75;width:5px}.cropper-point.point-e{cursor:ew-resize;margin-top:-3px;right:-3px;top:50%}.cropper-point.point-n{cursor:ns-resize;left:50%;margin-left:-3px;top:-3px}.cropper-point.point-w{cursor:ew-resize;left:-3px;margin-top:-3px;top:50%}.cropper-point.point-s{bottom:-3px;cursor:s-resize;left:50%;margin-left:-3px}.cropper-point.point-ne{cursor:nesw-resize;right:-3px;top:-3px}.cropper-point.point-nw{cursor:nwse-resize;left:-3px;top:-3px}.cropper-point.point-sw{bottom:-3px;cursor:nesw-resize;left:-3px}.cropper-point.point-se{bottom:-3px;cursor:nwse-resize;height:20px;opacity:1;right:-3px;width:20px}@media (min-width:768px){.cropper-point.point-se{height:15px;width:15px}}@media (min-width:992px){.cropper-point.point-se{height:10px;width:10px}}@media (min-width:1200px){.cropper-point.point-se{height:5px;opacity:.75;width:5px}}.cropper-point.point-se:before{background-color:#39f;bottom:-50%;content:" ";display:block;height:200%;opacity:0;position:absolute;right:-50%;width:200%}.cropper-invisible{opacity:0}.cropper-bg{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC")}.cropper-hide{display:block;height:0;position:absolute;width:0}.cropper-hidden{display:none!important}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-drag-box,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}.introjs-overlay{position:absolute;box-sizing:content-box;z-index:999999;background-color:#000;opacity:0;background:radial-gradient(center,ellipse farthest-corner,rgba(0,0,0,.4) 0,rgba(0,0,0,.9) 100%);transition:all .3s ease-out}.introjs-fixParent{z-index:auto!important;opacity:1!important;transform:none!important}.introjs-showElement,tr.introjs-showElement>td,tr.introjs-showElement>th{z-index:9999999!important}.introjs-disableInteraction{z-index:99999999!important;position:absolute;background-color:#fff;opacity:0}.introjs-relativePosition,tr.introjs-showElement>td,tr.introjs-showElement>th{position:relative}.introjs-helperLayer{box-sizing:content-box;position:absolute;z-index:9999998;background-color:#fff;background-color:rgba(255,255,255,.9);border:1px solid #777;border:1px solid rgba(0,0,0,.5);border-radius:4px;box-shadow:0 2px 15px rgba(0,0,0,.4);transition:all .3s ease-out}.introjs-tooltipReferenceLayer{box-sizing:content-box;position:absolute;visibility:hidden;z-index:100000000;background-color:transparent;transition:all .3s ease-out}.introjs-helperLayer *,.introjs-helperLayer :after,.introjs-helperLayer :before{-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box}.introjs-helperNumberLayer{box-sizing:content-box;position:absolute;visibility:visible;top:-16px;left:-16px;z-index:9999999999!important;padding:2px;font-family:Arial,verdana,tahoma;font-size:13px;font-weight:700;color:#fff;text-align:center;text-shadow:1px 1px 1px rgba(0,0,0,.3);background:#ff3019;background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%);width:20px;height:20px;line-height:20px;border:3px solid #fff;border-radius:50%;box-shadow:0 2px 5px rgba(0,0,0,.4)}.introjs-arrow{border:5px solid transparent;content:'';position:absolute}.introjs-arrow.top{top:-10px;border-bottom-color:#fff}.introjs-arrow.top-right{top:-10px;right:10px;border-bottom-color:#fff}.introjs-arrow.top-middle{top:-10px;left:50%;margin-left:-5px;border-bottom-color:#fff}.introjs-arrow.right{right:-10px;top:10px;border-left-color:#fff}.introjs-arrow.right-bottom{bottom:10px;right:-10px;border-left-color:#fff}.introjs-arrow.bottom{bottom:-10px;border-top-color:#fff}.introjs-arrow.bottom-right{bottom:-10px;right:10px;border-top-color:#fff}.introjs-arrow.bottom-middle{bottom:-10px;left:50%;margin-left:-5px;border-top-color:#fff}.introjs-arrow.left{left:-10px;top:10px;border-right-color:#fff}.introjs-arrow.left-bottom{left:-10px;bottom:10px;border-right-color:#fff}.introjs-tooltip{box-sizing:content-box;position:absolute;visibility:visible;padding:10px;background-color:#fff;min-width:200px;max-width:300px;border-radius:3px;box-shadow:0 1px 10px rgba(0,0,0,.4);transition:opacity .1s ease-out}.introjs-tooltipbuttons{text-align:right;white-space:nowrap}.introjs-button{box-sizing:content-box;position:relative;overflow:visible;display:inline-block;padding:.3em .8em;border:1px solid #d4d4d4;margin:0;text-decoration:none;text-shadow:1px 1px 0 #fff;font:11px/normal sans-serif;color:#333;white-space:nowrap;cursor:pointer;outline:0;background-color:#ececec;background-image:linear-gradient(#f4f4f4,#ececec);-webkit-background-clip:padding;-moz-background-clip:padding;-o-background-clip:padding-box;border-radius:.2em;zoom:1;margin-top:10px}.introjs-button:hover{border-color:#bcbcbc;text-decoration:none;box-shadow:0 1px 1px #e3e3e3}.introjs-button:active,.introjs-button:focus{background-image:linear-gradient(#ececec,#f4f4f4)}.introjs-button::-moz-focus-inner{padding:0;border:0}.introjs-skipbutton{box-sizing:content-box;margin-right:5px;color:#7a7a7a}.introjs-prevbutton{border-radius:.2em 0 0 .2em;border-right:none}.introjs-prevbutton.introjs-fullbutton{border:1px solid #d4d4d4;border-radius:.2em}.introjs-nextbutton{border-radius:0 .2em .2em 0}.introjs-nextbutton.introjs-fullbutton{border-radius:.2em}.introjs-disabled,.introjs-disabled:focus,.introjs-disabled:hover{color:#9a9a9a;border-color:#d4d4d4;box-shadow:none;cursor:default;background-color:#f4f4f4;background-image:none;text-decoration:none}.introjs-hidden{display:none}.introjs-bullets{text-align:center}.introjs-bullets ul{box-sizing:content-box;clear:both;margin:15px auto 0;padding:0;display:inline-block}.introjs-bullets ul li{box-sizing:content-box;list-style:none;float:left;margin:0 2px}.introjs-bullets ul li a{box-sizing:content-box;display:block;width:6px;height:6px;background:#ccc;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;text-decoration:none;cursor:pointer}.introjs-bullets ul li a:hover{background:#999}.introjs-bullets ul li a.active{background:#999}.introjs-progress{box-sizing:content-box;overflow:hidden;height:10px;margin:10px 0 5px 0;border-radius:4px;background-color:#ecf0f1}.introjs-progressbar{box-sizing:content-box;float:left;width:0%;height:100%;font-size:10px;line-height:10px;text-align:center;background-color:#08c}.introjsFloatingElement{position:absolute;height:0;width:0;left:50%;top:50%}.introjs-fixedTooltip{position:fixed}.introjs-hint{box-sizing:content-box;position:absolute;background:0 0;width:20px;height:15px;cursor:pointer}.introjs-hint:focus{border:0;outline:0}.introjs-hidehint{display:none}.introjs-fixedhint{position:fixed}.introjs-hint:hover>.introjs-hint-pulse{border:5px solid rgba(60,60,60,.57)}.introjs-hint-pulse{box-sizing:content-box;width:10px;height:10px;border:5px solid rgba(60,60,60,.27);border-radius:30px;background-color:rgba(136,136,136,.24);z-index:10;position:absolute;transition:all .2s ease-out}.introjs-hint-no-anim .introjs-hint-dot{animation:none}.introjs-hint-dot{box-sizing:content-box;border:10px solid rgba(146,146,146,.36);background:0 0;border-radius:60px;height:50px;width:50px;animation:introjspulse 3s ease-out;animation-iteration-count:infinite;position:absolute;top:-25px;left:-25px;z-index:1;opacity:0}@keyframes introjspulse{0%{transform:scale(0);opacity:0}25%{transform:scale(0);opacity:.1}50%{transform:scale(.1);opacity:.3}75%{transform:scale(.5);opacity:.5}100%{transform:scale(1);opacity:0}}
@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;
  -moz-user-select: none;
   -ms-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:-ms-input-placeholder,
.colorpicker-default__r-input:-ms-input-placeholder,
.colorpicker-default__g-input:-ms-input-placeholder,
.colorpicker-default__b-input:-ms-input-placeholder,
.colorpicker-default__a-input:-ms-input-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: #463250;
  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;
}

body {
  font-family: "Source Sans Pro";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #463250;
  background-color: #fff;
}

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

a:hover,
a:focus,
a:active {
  color: #463250;
  text-decoration: none;
}

.btn,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button {
  font-family: "Source Sans Pro";
  font-weight: 400;
  border-radius: 0;
  font-size: 17px;
  padding: 12px 20px;
}

@media (max-width: 575px) {
  .btn,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button {
    font-size: 16px;
  }
}

.btn strong,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button strong {
  font-weight: 700;
}

.btn.has-arrow,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .has-arrow.introjs-button {
  position: relative;
  padding-right: 40px !important;
}

.btn.has-arrow:after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .has-arrow.introjs-button:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  transform: translateX(2px);
  background-color: #fff;
  -webkit-mask: url("/images/chevron-right.svg") no-repeat;
          mask: url("/images/chevron-right.svg") no-repeat;
}

@media (max-width: 575px) {
  .btn.has-arrow:after,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .has-arrow.introjs-button:after {
    top: 17px;
  }
}

.btn.has-arrow:hover:after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .has-arrow.introjs-button:hover:after {
  transform: translateX(5px);
}

.btn.btn-lg,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.introjs-button {
  padding: 15px 30px;
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 991px) {
  .btn.btn-lg,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.introjs-button {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .btn.btn-lg,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.introjs-button {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .btn.btn-lg,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.introjs-button {
    font-size: 16px;
  }
}

.btn.btn-lg.has-arrow,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.has-arrow.introjs-button {
  padding-right: 50px !important;
}

.btn.btn-lg.has-arrow:after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.has-arrow.introjs-button:after {
  right: 18px;
  top: 22px;
}

@media (max-width: 991px) {
  .btn.btn-lg.has-arrow:after,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.has-arrow.introjs-button:after {
    top: 21px;
  }
}

@media (max-width: 767px) {
  .btn.btn-lg.has-arrow:after,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-lg.has-arrow.introjs-button:after {
    top: 20px;
  }
}

.btn.btn-sm,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-sm.introjs-button,
.btn .btn-group-sm > .btn,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button .btn-group-sm > .btn,
.btn .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-group-sm > .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn .btn-group-sm > .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button .btn-group-sm > .introjs-button {
  padding: 0.35rem 0.7rem;
  font-size: 1rem;
}

@media (max-width: 575px) {
  .btn.btn-block-xs-only,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-block-xs-only.introjs-button {
    display: block;
    width: 100%;
  }
}

.btn.btn-secondary,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button {
  background: #c0c5c8;
  color: #fff;
  border: 1px solid transparent;
  font-weight: 400;
}

.btn.btn-secondary:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:hover {
  border: 1px solid transparent;
  background: #a4abb0;
}

.btn.btn-focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button,
.btn.btn-danger,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-danger.introjs-button,
.btn.btn-accent,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-accent.introjs-button {
  color: #fff;
}

.btn.btn-focus:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:hover,
.btn.btn-focus:active,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:active,
.btn.btn-focus:focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:focus,
.btn.btn-danger:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-danger.introjs-button:hover,
.btn.btn-danger:active,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-danger.introjs-button:active,
.btn.btn-danger:focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-danger.introjs-button:focus,
.btn.btn-accent:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-accent.introjs-button:hover,
.btn.btn-accent:active,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-accent.introjs-button:active,
.btn.btn-accent:focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-accent.introjs-button:focus {
  color: #fff;
}

.btn.btn-focus:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:hover,
.btn.btn-focus:active,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:active,
.btn.btn-focus:focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-focus.introjs-button:focus {
  background: #ca7166;
}

.brand-color {
  color: #463250;
}

#wrapper .container {
  width: 1140px;
  padding: 0 24px;
  position: inherit;
  max-width: 100%;
}

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

@media screen and (max-width: 400px) {
  #wrapper .container {
    padding: 0 15px;
  }
}

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

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

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

#wrapper .container.lg .page-intro h1,
#wrapper .container.md .page-intro h1,
#wrapper .container.xs .page-intro h1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  color: #463250;
}

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

#wrapper #main {
  margin: 60px 0;
  min-height: calc(100vh - 664px);
}

@media (max-width: 1199px) {
  #wrapper #main {
    margin: 55px 0;
    min-height: calc(100vh - 640px);
  }
}

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

@media (max-width: 767px) {
  #wrapper #main {
    margin: 45px 0;
    min-height: calc(100vh - 484px);
  }
}

@media (max-width: 575px) {
  #wrapper #main {
    margin: 40px 0;
    min-height: calc(100vh - 450px);
  }
}

@media screen and (max-width: 400px) {
  #wrapper #main {
    min-height: calc(100vh - 436px);
  }
}

#wrapper #main.centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#wrapper #main.centered .flex-row {
  flex-direction: row;
}

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

#wrapper #main .content {
  text-align: justify;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  #wrapper #main .content {
    text-align: left;
  }
}

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

#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: 400;
  color: #d18379;
  text-align: left;
}

#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: 400;
  color: #463250;
  font-size: 28px;
}

#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 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: 80px;
  }

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

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;
  transition: background-color 5000s ease-in-out 0s;
  background-color: #fff !important;
}

textarea {
  resize: none;
}

@media (max-width: 575px) {
  .form-group {
    padding-top: 8px !important;
  }
}

@media (max-width: 575px) {
  .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: 8px;
    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: #ea4f6e;
  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: 20px;
  margin-right: 3px;
}

.form-group label,
.m-form__group-sub label {
  position: relative;
  font-size: 16px !important;
}

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

.form-group .form-control,
.m-form__group-sub .form-control {
  padding: 14px;
  font-family: "Source Sans Pro";
  color: #463250;
  font-size: 16px;
  border: 2px solid #dee2e3;
  font-weight: 400;
  border-radius: 0;
}

@media (max-width: 1199px) {
  .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: #d18379;
}

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

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

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

.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: "Source Sans Pro";
  font-size: 14px;
  border: 2px solid #dee2e3;
  border-radius: 0px !important;
}

@media (max-width: 1199px) {
  .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: 16px;
  font-weight: 400;
  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;
}

.form-group .form-control.bootstrap-select .dropdown-toggle > span .m-badge,
.m-form__group-sub .form-control.bootstrap-select .dropdown-toggle > span .m-badge {
  border-radius: 0;
  font-size: 12px;
  padding: 0px 8px;
}

.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: "LineAwesome";
  font-size: 16px;
  content: "\F110";
  color: #b5bcc0;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.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: #d18379 !important;
}

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

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

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

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

@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 {
  border-radius: 0;
  font-size: 12px;
  padding: 3px 8px;
}

.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(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border-left: solid 5px #463250 !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: #382840 !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(209, 131, 121, 0.05) !important;
  color: #ca7166 !important;
  border-left: solid 5px #d18379 !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: #d18379 !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: #ca7166 !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 .form-control-feedback,
.m-form__group-sub .form-control.bootstrap-select .form-control-feedback {
  position: absolute;
  top: 8px;
  left: 8px;
}

.form-group .input-group .input-group-addon,
.m-form__group-sub .input-group .input-group-addon {
  border-radius: 0;
  background: #d18379;
  border: none;
}

.form-group .input-group .input-group-addon span,
.m-form__group-sub .input-group .input-group-addon span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

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

.form-group.has-danger .form-control.bootstrap-select,
.m-form__group-sub.has-danger .form-control.bootstrap-select {
  border: none !important;
}

.form-group.has-danger .form-control.bootstrap-select .form-control-feedback,
.m-form__group-sub.has-danger .form-control.bootstrap-select .form-control-feedback {
  position: relative;
  top: 0;
  left: 0;
}

.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: #ea4f6e;
}

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

.form-group .m-checkbox,
.form-group .m-radio,
.m-form__group-sub .m-checkbox,
.m-form__group-sub .m-radio {
  color: #636c72;
  font-size: 16px !important;
}

.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;
  border-radius: 0;
  top: 4px;
}

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

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

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

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

.header-meta {
  background: #fff;
  border-bottom: 1px solid #eceeef;
  z-index: 999;
}

@media (max-width: 991px) {
  .header-meta {
    display: none;
  }
}

.header-meta .container {
  height: 36px;
  display: flex;
  justify-content: space-between;
}

.header-meta .container .usps {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}

.header-meta .container .usps li {
  display: flex;
  align-items: center;
  color: #a4abb0;
  line-height: 36px;
  font-weight: 600;
  font-size: 14px;
  margin-right: 5%;
}

@media (max-width: 1199px) {
  .header-meta .container .usps li {
    font-size: 13px;
  }

  .header-meta .container .usps li span {
    position: relative;
    top: 1px;
  }
}

.header-meta .container .usps li img {
  width: 20px;
  margin-right: 8px;
  position: relative;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
}

.header-meta .container .usps li img.cards {
  width: 12px;
}

.header-meta .container .usps li img.phone {
  width: 22px;
}

.header-meta .container .usps li img.mail {
  width: 18px;
}

.header-meta .container .top-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #a4abb0;
  color: #fff !important;
  padding: 0 22px 0 15px;
  font-size: 14px;
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  white-space: nowrap;
}

.header-meta .container .top-btn img {
  width: 22px;
  position: relative;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}

.header-meta .container .top-btn span {
  margin-left: 15px;
}

.header-meta .container .top-btn:hover {
  background: #99495c;
}

.header-meta .container .top-btn.account {
  display: none;
}

.header-meta .container .top-btn.active {
  background: #d18379;
}

.header-logo {
  background: #fff;
}

.header-logo .container {
  height: 185px;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .header-logo .container {
    height: 145px;
  }
}

@media (max-width: 767px) {
  .header-logo .container {
    height: 125px;
  }
}

@media (max-width: 575px) {
  .header-logo .container {
    height: 105px;
  }
}

@media screen and (max-width: 400px) {
  .header-logo .container {
    height: 85px;
  }
}

.header-logo .container .logo img,
.header-logo .container .logo svg {
  width: 185px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .header-logo .container .logo img,
  .header-logo .container .logo svg {
    width: 165px;
  }
}

@media (max-width: 767px) {
  .header-logo .container .logo img,
  .header-logo .container .logo svg {
    width: 145px;
  }
}

@media (max-width: 575px) {
  .header-logo .container .logo img,
  .header-logo .container .logo svg {
    width: 125px;
  }
}

@media screen and (max-width: 400px) {
  .header-logo .container .logo img,
  .header-logo .container .logo svg {
    width: 105px;
  }
}

.header-logo .container .payoff {
  font-size: 22px;
  color: #463250;
  letter-spacing: 1.6px;
  margin-left: 35px;
}

@media (max-width: 991px) {
  .header-logo .container .payoff {
    margin-left: 25px;
    font-size: 20px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 767px) {
  .header-logo .container .payoff {
    margin-left: 20px;
    font-size: 18px;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 575px) {
  .header-logo .container .payoff {
    margin-left: 15px;
    font-size: 16px;
    letter-spacing: 0.4px;
  }
}

@media screen and (max-width: 400px) {
  .header-logo .container .payoff {
    margin-left: 10px;
  }
}

.header-nav {
  background: #463250;
  z-index: 100;
  display: flex;
  justify-content: center;
  height: 50px;
  transition: all 0.6s ease;
}

.header-nav .container {
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.header-nav .container .mainmenu {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .header-nav .container .mainmenu {
    justify-content: space-between;
  }
}

.header-nav .container .mainmenu .nav-left .home {
  margin-right: 20px;
}

@media (max-width: 991px) {
  .header-nav .container .mainmenu .nav-left .home {
    display: none;
  }
}

.header-nav .container .mainmenu .nav-left .home img {
  height: 20px;
  position: relative;
  top: -2px;
  padding: 0;
}

.header-nav .container .mainmenu .nav-left .hamburger-menu {
  cursor: pointer;
  position: relative;
  display: none;
}

@media (max-width: 991px) {
  .header-nav .container .mainmenu .nav-left .hamburger-menu {
    display: block;
  }
}

.header-nav .container .mainmenu .nav-left .hamburger-menu .bar {
  position: relative;
  top: -5px;
  left: 2px;
  width: 17px;
  height: 1px;
  background: #fff;
  display: inline-block;
  align-self: center;
  transition: all 0.3s;
  transform: scale(1.2);
}

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

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

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

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

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

.header-nav .container .mainmenu .nav-left .hamburger-menu.active .bar {
  background: 0 0;
}

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

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

.header-nav .container .mainmenu .nav-left .hamburger-menu .text {
  color: #fff;
  font-size: 16px;
  margin-left: 10px;
}

.header-nav .container .mainmenu .menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

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

.header-nav .container .mainmenu .menu > li {
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav .container .mainmenu .menu > li > a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
}

.header-nav .container .mainmenu .menu > li:hover {
  background: #2b1e31;
}

.header-nav .container .mainmenu .menu > li.current {
  background: #61466f;
}

@media (max-width: 991px) {
  .header-nav .container .mainmenu .menu > li.current {
    background: #463250;
  }
}

.header-nav .container .mainmenu .menu > li .dropdown {
  height: 100%;
}

.header-nav .container .mainmenu .menu > li .dropdown > a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.header-nav .container .mainmenu .menu > li .dropdown > a::after {
  top: 1px;
  margin-left: 6px;
}

.header-nav .container .mainmenu .menu > li .dropdown-menu {
  margin-top: 0px;
  z-index: 1040;
}

.header-nav .container .mainmenu .menu > li .dropdown-menu .dropdown-item .text {
  font-size: 16px;
}

@media (max-width: 575px) {
  .header-nav .container .mainmenu .menu > li .dropdown-menu .dropdown-item .text {
    font-size: 15px;
  }
}

.header-nav .container #shoppingcart {
  display: none;
  align-items: center;
  background: #61466f;
  color: #fff;
  padding: 0 22px 0 15px;
  font-size: 14px;
  position: relative;
  margin-left: 20px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .header-nav .container #shoppingcart {
    display: flex;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .header-nav .container #shoppingcart {
    padding: 0 15px;
  }
}

.header-nav .container #shoppingcart img {
  width: 22px;
  position: relative;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}

.header-nav .container #shoppingcart span {
  margin-left: 15px;
}

@media (max-width: 575px) {
  .header-nav .container #shoppingcart span {
    display: none;
  }
}

.header-nav .container #shoppingcart:hover {
  background: #2b1e31;
}

@media (max-width: 991px) {
  .header-nav .container .myaccount {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 22px 0 15px !important;
    position: relative;
    cursor: pointer;
  }
}

@media (max-width: 991px) and (max-width: 575px) {
  .header-nav .container .myaccount {
    padding: 0 15px !important;
  }
}

.header-nav .container .myaccount img {
  display: none;
  width: 20px;
  position: relative;
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(102%) contrast(102%);
}

@media (max-width: 991px) {
  .header-nav .container .myaccount img {
    display: block;
  }
}

@media (max-width: 991px) {
  .header-nav .container .myaccount span {
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .header-nav .container .myaccount span {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-nav .container .myaccount:hover {
    background: #2b1e31;
  }
}

@media (max-width: 575px) {
  .header-nav .container .myaccount::after {
    padding-right: 10px;
  }
}

.header-nav.fixed {
  width: 100%;
  top: -46px;
  transform: translateY(45px);
  position: fixed;
}

.header-nav.fixed #shoppingcart {
  display: flex;
}

.header-nav.fixed #shoppingcart:hover {
  background: #2b1e31;
}

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

#mainmenu .overlay {
  background: #2b1e31;
}

#mainmenu .overlay .inner-mainmenu {
  padding: 30px 0px;
  overflow: auto;
}

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

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

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

#mainmenu .overlay .inner-mainmenu .responsive-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li {
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  height: 100%;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li > a {
  padding: 5px 24px;
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 575px) {
  #mainmenu .overlay .inner-mainmenu .responsive-menu > li > a {
    padding: 5px 20px;
  }
}

@media screen and (max-width: 400px) {
  #mainmenu .overlay .inner-mainmenu .responsive-menu > li > a {
    padding: 5px 15px;
  }
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li.current {
  font-weight: 700;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li .dropdown {
  height: 100%;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li .dropdown > a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li .dropdown > a::after {
  top: 1px;
  margin-left: 6px;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li .dropdown-menu {
  margin-top: 0px;
  z-index: 1040;
}

#mainmenu .overlay .inner-mainmenu .responsive-menu > li .dropdown-menu .dropdown-item .text {
  font-size: 16px;
}

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

body.fixed .header {
  margin-top: 50px;
}

body.no-header #header {
  border-bottom: 1px solid #eceeef;
}

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

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

body.no-header #header .header-logo .container {
  height: 100px;
  justify-content: space-between;
}

body.no-header #header .header-logo .container img {
  width: 125px;
}

body.no-header #header .header-logo .container .payoff {
  display: none;
}

footer {
  background: #463250;
  padding: 50px 0;
}

@media (max-width: 1199px) {
  footer {
    padding: 45px 0;
  }
}

@media (max-width: 991px) {
  footer {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  footer {
    padding: 30px 10px;
  }
}

footer section.help {
  display: none;
}

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

footer section.help .container a {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}

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

footer section.help .container a:hover {
  color: #d9d9d9;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

@media (max-width: 767px) {
  footer .container {
    flex-wrap: wrap;
  }
}

footer .container .menus {
  width: 75%;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  footer .container .menus {
    width: 100%;
    flex-wrap: wrap;
  }
}

footer .container .menus > div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  width: 33.3%;
  padding-left: 50px;
}

@media (max-width: 991px) {
  footer .container .menus > div {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  footer .container .menus > div:first-child {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  footer .container .menus > div {
    width: 50%;
  }

  footer .container .menus > div:first-child {
    border-left: 0;
    padding-left: 0;
  }

  footer .container .menus > div:last-child {
    width: 100%;
    margin-top: 30px;
    border-left: 0;
    padding-left: 0;
    text-align: center;
  }

  footer .container .menus > div:last-child ul {
    display: flex;
    justify-content: center;
  }

  footer .container .menus > div:last-child ul li {
    padding: 0 10px;
  }
}

footer .container .menus > div .title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
}

footer .container .menus > div ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer .container .menus > div ul li {
  padding-bottom: 10px;
}

footer .container .menus > div ul li:last-child {
  padding-bottom: 0px;
}

footer .container .menus > div ul li a {
  color: #fff;
  font-size: 15px;
  position: relative;
  left: 0;
}

footer .container .menus > div ul li a i,
footer .container .menus > div ul li a svg {
  font-size: 18px;
  position: relative;
  top: 2px;
  margin-right: 8px;
}

footer .container .menus > div ul li a:hover {
  left: 5px;
}

footer .container .menus > div ul li.current a {
  font-weight: 700;
}

@media (max-width: 767px) {
  footer .container .branding {
    width: 100%;
    order: 2;
    margin-top: 50px;
  }
}

footer .container .branding .logo a {
  position: relative;
  display: block;
  text-align: center;
  transform: translateY(0);
}

footer .container .branding .logo a:hover {
  transform: translateY(-5px);
}

footer .container .branding .logo a img {
  max-width: 100px;
}

footer .container .branding .logo span {
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: block;
}

footer .container .branding .logo .title {
  margin-top: 10px;
}

footer .container .branding .logo .rights {
  margin-top: 30px;
}

footer #notice {
  background: #d18379;
  color: #fff;
  position: fixed;
  display: flex;
  justify-content: center;
  height: 50px;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
}

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

footer #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 .help {
  display: block;
}

body.no-footer footer .container {
  display: block;
  justify-content: center;
}

body.no-footer footer .container .branding {
  width: unset;
  padding: 0;
  border: 0;
  margin-top: 0;
}

body.no-footer footer .container .branding .rights {
  display: none;
}

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

body.no-footer footer .container .menu {
  display: none;
}

body.no-footer footer .container .menu2 {
  display: none;
}

body.no-footer footer .container .social-media {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

@media (max-width: 1199px) {
  .product-grid {
    grid-gap: 25px;
  }
}

@media (max-width: 991px) {
  .product-grid {
    grid-gap: 20px;
  }
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

@media screen and (max-width: 400px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-grid.two-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .product-grid.two-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .product-grid.two-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 400px) {
  .product-grid.two-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-grid.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
  .product-grid.four-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 400px) {
  .product-grid.four-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-grid .tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-grid .tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.product-grid .tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.product-grid .tile .image-wrapper .overlay {
  background: rgba(70, 50, 80, 0.75);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.product-grid .tile .image-wrapper .overlay .icon {
  width: 20px;
  -webkit-filter: invert(96%) sepia(96%) saturate(16%) hue-rotate(227deg) brightness(103%) contrast(106%);
          filter: invert(96%) sepia(96%) saturate(16%) hue-rotate(227deg) brightness(103%) contrast(106%);
}

.product-grid .tile .image-wrapper .overlay span {
  background: #463250;
  padding: 6px 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.product-grid .tile .info {
  width: 100% !important;
  margin-top: 10px;
}

.product-grid .tile .info .name {
  display: block;
  font-size: 17px;
  color: #463250;
  font-weight: 600;
  text-align: center;
}

.product-grid .tile:hover .image-wrapper .overlay {
  opacity: 1;
  visibility: visible;
}

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

.m-popover.popover .popover-body {
  font-size: 13px;
  font-family: "Source Sans Pro";
}

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

.m-popover.m-popover--skin-dark.popover {
  background: #463250;
}

.m-popover.m-popover--skin-dark.popover .popover-body {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.m-popover.m-popover--skin-dark.popover.bs-popover-left .arrow::after {
  border-left-color: #463250;
}

.m-popover.m-popover--skin-dark.popover.bs-popover-top .arrow::after {
  border-top-color: #463250;
}

.m-popover.m-popover--skin-dark.popover.bs-popover-bottom .arrow::after {
  border-bottom-color: #463250;
}

.m-popover.m-popover--skin-dark.popover.bs-popover-right .arrow::after {
  border-right-color: #463250;
}

.m-popover.m-popover--skin-light.popover {
  background: #fff;
}

.m-popover.m-popover--skin-light.popover .popover-body {
  font-size: 14px;
  font-weight: 400;
  color: rgba(70, 50, 80, 0.8);
}

.m-popover.m-popover--skin-light.popover.bs-popover-left .arrow::after {
  border-left-color: #fff;
}

.m-popover.m-popover--skin-light.popover.bs-popover-top .arrow::after {
  border-top-color: #fff;
}

.m-popover.m-popover--skin-light.popover.bs-popover-bottom .arrow::after {
  border-bottom-color: #fff;
}

.m-popover.m-popover--skin-light.popover.bs-popover-right .arrow::after {
  border-right-color: #fff;
}

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

.accordion {
  position: relative;
  border-top: solid 1px #eceeef;
}

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

.accordion .item .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #99495c;
}

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

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

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

.accordion .item .head .icon-text {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
}

.accordion .item .head .icon-text .text {
  font-size: 16px;
  line-height: 1.6rem;
}

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

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

.accordion .item .head .accordion-plus-min::before {
  content: "";
  display: block;
  width: 15px;
  height: 0;
  border-bottom: solid 2px rgba(70, 50, 80, 0.6);
  position: absolute;
  bottom: 8px;
  transform: rotate(90deg);
  transition: all 0.3s;
}

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

.accordion .item .head .accordion-plus-min::after {
  content: "";
  display: block;
  width: 15px;
  height: 0;
  border-bottom: solid 2px rgba(70, 50, 80, 0.6);
  position: absolute;
  bottom: 8px;
}

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

.accordion .item .head:hover {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border-left: solid 5px #463250;
}

.accordion .item .head:not(.collapsed) {
  color: #fff !important;
  background: #463250;
  border-left: 0px solid #463250;
}

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

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

.accordion .item .head:not(.collapsed) .accordion-plus-min::after {
  border-color: #fff;
}

.accordion .item .body .accordion-content {
  padding: 20px;
  text-align: left;
  border-bottom: solid 1px #eceeef;
  font-size: 16px;
  background: rgba(70, 50, 80, 0.05);
}

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

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

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

.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:-ms-input-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 #463250;
  transition: all 0.2s ease-in-out;
}

.select2-container .select2-results .select2-results__options .select2-results__option:hover {
  background: rgba(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border-left: solid 5px #463250 !important;
}

.select2-container .select2-results .select2-results__options .select2-results__option[aria-selected=true] {
  background: rgba(153, 73, 92, 0.05) !important;
  color: #884152 !important;
  border-left: solid 5px #99495c !important;
}

.irs {
  font-family: "Source Sans Pro";
}

.irs.irs--round .irs-handle {
  border: 5px solid #463250;
  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: #463250;
}

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

.irs.irs--round .irs-single {
  background-color: #99495c;
  font-weight: 400;
}

.irs.irs--round .irs-single:before {
  border-top-color: #99495c;
}

.alert {
  border: none;
  border-radius: 0;
  padding: 15px 18px;
}

@media (max-width: 767px) {
  .alert {
    padding: 13px 16px;
  }
}

@media (max-width: 575px) {
  .alert {
    padding: 11px 14px;
  }
}

.alert span {
  display: block;
}

@media (max-width: 575px) {
  .alert span {
    font-size: 15px;
    line-height: 20px;
  }
}

.alert h3 {
  font-weight: 600;
  font-size: 20px;
  color: #fff !important;
}

@media (max-width: 575px) {
  .alert h3 {
    margin-bottom: 5px;
  }
}

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

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

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

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

.alert.alert-success {
  background: #70c1ab;
  color: #fff;
}

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

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

.alert.alert-brand {
  background: #463250;
  color: #fff;
}

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

.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: #463250 !important;
  cursor: pointer;
}

.alert .terms:hover {
  color: #99495c !important;
}

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

.breadcrumb a {
  color: #463250;
}

.breadcrumb a:hover {
  color: #d18379;
}

.breadcrumb .breadcrumb-item {
  color: #61466f;
}

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

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

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

@media (max-width: 991px) {
  .page-intro {
    padding: 0px 0px 20px;
  }
}

@media (max-width: 767px) {
  .page-intro {
    padding: 0px 0px 15px;
  }
}

@media (max-width: 575px) {
  .page-intro {
    padding: 0px 0px 10px;
  }
}

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

@media (max-width: 991px) {
  .page-intro .breadcrumb {
    margin: -5px 0px 10px;
  }
}

@media (max-width: 767px) {
  .page-intro .breadcrumb {
    margin: -10px 0 10px;
  }
}

.page-intro h1 {
  font-size: 28px;
  font-weight: 400;
  color: #463250;
}

.page-intro h2 {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 700;
  color: #463250;
}

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

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

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

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

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

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

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

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

.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: #463250;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 20px;
}

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

.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: #463250;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 20px;
}

.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-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 .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #463250;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loader .lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
  background: #463250;
}

.loader .lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
  background: #99495c;
}

.loader .lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
  background: #d18379;
}

.loader .lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
  background: #d18379;
}

.loader .text {
  color: #463250;
  font-weight: 600;
  font-size: 18px;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

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

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

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

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

.swal2-container .swal2-popup {
  border-radius: 0px;
}

.swal2-container .swal2-popup.swal2-show {
  animation: fadeIn 0.4s !important;
}

.swal2-container .swal2-popup.swal2-hide {
  animation: fadeOut 0.4s !important;
}

.swal2-container.error .swal2-toast {
  background: #ea4f6e;
  align-items: flex-start !important;
}

.swal2-container.warning .swal2-toast {
  background: #f0ad4e;
  align-items: flex-start !important;
}

.swal2-container.success .swal2-toast {
  background: #70c1ab;
}

.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 {
  border-radius: 0px;
  box-shadow: none !important;
  padding: 10px 13px !important;
}

.swal2-container .swal2-toast.swal2-show {
  animation: slideInRight 0.4s !important;
}

.swal2-container .swal2-toast .swal2-title {
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 600;
}

.swal2-container .swal2-toast .swal2-content {
  max-width: 250px;
  margin-left: 10px;
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 400;
}

.swal2-container .swal2-toast .swal2-icon.swal2-error {
  border-color: rgba(255, 255, 255, 0.5);
}

.swal2-container .swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background: #fff;
}

.swal2-container .swal2-toast .swal2-icon.swal2-warning {
  font-size: 10px;
  color: #fff;
  padding: 5px;
}

.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: #ea4f6e;
}

.swal2-container .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background: #ea4f6e;
}

.swal2-container .swal2-icon.swal2-success {
  border-color: #463250;
}

.swal2-container .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #463250;
}

.swal2-container .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(70, 50, 80, 0.3);
}

.swal2-container .swal2-contentwrapper .swal2-title {
  font-size: 36px;
  font-weight: 400;
  color: #463250;
}

.swal2-container .swal2-contentwrapper .swal2-content {
  font-size: 16px;
  font-weight: 400;
}

.swal2-container .swal2-buttonswrapper .btn,
.swal2-container .swal2-buttonswrapper .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .swal2-container .swal2-buttonswrapper .introjs-button {
  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;
  background: #fafafb;
}

#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: #dadae3;
  border-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 20px;
  transition: background 0.3s ease-in-out;
}

#minicart .panel .panel-content .panel-header .close .close-panel i {
  font-size: 20px;
  color: #636c72;
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .close .close-panel:hover {
  background: #dadae3;
}

#minicart .panel .panel-content .panel-header .close .close-panel:hover i {
  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 img {
  width: 30px;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}

#minicart .panel .panel-content .panel-header .cartwrapper .cart-icon a .items {
  position: absolute;
  bottom: -7px;
  right: -7px;
  background: #d18379;
  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: #463250;
}

#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 #e8e8ee;
  transition: all 0.2s ease-in-out;
}

#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: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header h3 a {
  color: #463250;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header h3 a:hover {
  color: #2b1e31;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing {
  align-self: flex-start;
  width: 30%;
  text-align: right;
  position: relative;
  top: -2px;
}

#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;
  position: relative;
  top: 1px;
  color: #a4abb0;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-header .pricing .remove-cart-item:hover {
  color: #ea4f6e;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info {
  display: flex;
  justify-content: space-between;
}

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

#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%;
  border: 1px solid #e8e8ee;
  padding: 3px;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs {
  width: 75%;
}

#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: 600;
  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-items .cart-item .cart-item-info .specs div .value a {
  color: #d18379;
  text-decoration: underline;
}

#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div .value a:hover,
#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div .value a:active,
#minicart .panel .panel-content .panel-body #cart-items .cart-item .cart-item-info .specs div .value a:focus {
  text-decoration: underline !important;
}

#minicart .panel .panel-content .panel-body #cart-totals h3 {
  border-top-left-radius: 5px;
  font-weight: 700;
  font-size: 30px;
  color: #99495c;
  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 #e8e8ee;
}

#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: 700;
  color: #463250;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.discount a {
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #463250;
  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 #cbcbd8;
  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 #cbcbd8;
  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,
#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-button {
  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: 0.5px;
}

#minicart .panel .panel-content .panel-body #cart-totals .totals-rows .total-row .remove-discount:hover {
  color: #ea4f6e;
}

#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 .chat {
  display: none;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  border-top: 1px solid #f7f7f9;
  background: #fafafb;
}

#minicart .panel .panel-content .panel-footer .chat span {
  font-size: 20px;
  font-weight: 400;
  padding: 25px;
  color: #463250;
}

.m_datatable.m-datatable--default .m-datatable__table {
  min-height: 0 !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell {
  background: #463250;
  font-size: 16px;
  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: #fff;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__head .m-datatable__row .m-datatable__cell > span i {
  color: #fff;
}

.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;
  font-size: 15px;
  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 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: 700;
}

.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 {
  color: #463250;
  text-decoration: underline;
}

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

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .link-small:hover {
  color: #463250;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .m-badge {
  border-radius: 0;
  font-size: 13px;
  padding: 3px 8px;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .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 .m-datatable__cell > span .btn-accent {
  color: #fff;
}

.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 .m-btn--hover-accent:hover,
.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .m-btn--hover-accent:active,
.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row .m-datatable__cell > span .m-btn--hover-accent:focus {
  background: #463250 !important;
  border-color: transparent !important;
}

.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(70, 50, 80, 0.05) !important;
  color: #382840 !important;
}

.m_datatable.m-datatable--default .m-datatable__table .m-datatable__body .m-datatable__row:hover .m-datatable__cell > span {
  color: #382840;
}

.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: #463250 !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: rgba(70, 50, 80, 0.05) !important;
}

.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: 14px !important;
  font-weight: 700 !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: #463250;
}

@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,
  .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 .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .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 .introjs-button {
    background: #463250;
    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,
  .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 .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button::after,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .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 .introjs-button::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: #463250;
}

.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,
.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 .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .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 .introjs-button {
  color: #99495c;
}

@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,
  .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 .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .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 .introjs-button {
    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: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: 0px !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(70, 50, 80, 0.05);
  color: #382840;
  border: solid 2px #463250;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-nav > li > .m-datatable__pager-link.m-datatable__pager-link--active {
  background: rgba(209, 131, 121, 0.05) !important;
  color: #ca7166 !important;
  border: solid 2px #d18379 !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(70, 50, 80, 0.05);
  color: #382840;
  border: solid 2px #463250;
}

.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(70, 50, 80, 0.05);
  color: #382840;
  border: solid 2px #463250;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-toggle.introjs-button {
  border-radius: 0px !important;
  background: #fff;
  color: #636c72;
  font-weight: 600 !important;
  font-size: 14px;
  border: solid 2px #eceeef !important;
  height: 32px;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle::after,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button::after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-toggle.introjs-button::after {
  position: absolute;
  font-size: 12px;
  color: #636c72;
  top: calc(50% + 1px);
  right: 15px;
  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,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-toggle.introjs-button:hover {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border: solid 2px #463250 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .btn.dropdown-toggle:hover::after,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button:hover::after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-toggle.introjs-button:hover::after {
  color: #382840;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .btn.dropdown-toggle,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .dropdown-toggle.introjs-button {
  background: rgba(153, 73, 92, 0.05) !important;
  color: #884152 !important;
  border: solid 2px #99495c !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .btn.dropdown-toggle::after,
.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .dropdown-toggle.introjs-button::after,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size.show .dropdown-toggle.introjs-button::after {
  color: #884152 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li a {
  font-size: 13px;
  border-left: solid 0px #463250;
  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(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border-left: solid 5px #463250 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li:hover a span {
  color: #382840 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a {
  background: rgba(209, 131, 121, 0.05) !important;
  color: #ca7166 !important;
  border-left: solid 5px #d18379 !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: #d18379 !important;
}

.m_datatable.m-datatable--default .m-datatable__pager > .m-datatable__pager-info .m-datatable__pager-size .dropdown-menu li.selected a span {
  color: #ca7166 !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);
  border-radius: 0px;
  z-index: 9999;
}

.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 #99495c;
  color: #636c72;
}

@media (max-width: 575px) {
  .dropdown-menu .dropdown-item {
    padding: 8px 12px;
  }
}

.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: 400;
  color: #463250;
  position: relative;
}

.dropdown-menu .dropdown-item .icon-text .icon {
  position: absolute;
  width: 18px;
  top: 2px;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

.dropdown-menu .dropdown-item .icon-text .icon.invoice {
  width: 14px;
}

.dropdown-menu .dropdown-item .icon-text .icon.shipping {
  width: 22px;
}

.dropdown-menu .dropdown-item .icon-text .icon.delete {
  width: 16px;
}

.dropdown-menu .dropdown-item .icon-text .icon.preview {
  top: 5px;
  width: 20px;
}

.dropdown-menu .dropdown-item .icon-text .icon.download {
  width: 14px;
}

.dropdown-menu .dropdown-item .icon-text i,
.dropdown-menu .dropdown-item .icon-text svg {
  position: absolute;
  width: 18px;
  top: 2px;
}

.dropdown-menu .dropdown-item .icon-text .text {
  padding-left: 30px;
  line-height: 1.6rem;
  font-size: 15px;
}

@media (max-width: 575px) {
  .dropdown-menu .dropdown-item .icon-text .text {
    font-size: 14px;
  }
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border-left: solid 5px #463250;
}

.dropdown-menu .dropdown-item:hover .icon-text,
.dropdown-menu .dropdown-item:focus .icon-text,
.dropdown-menu .dropdown-item:active .icon-text {
  color: #382840;
}

.dropdown-menu .dropdown-item:hover .icon-text .icon,
.dropdown-menu .dropdown-item:focus .icon-text .icon,
.dropdown-menu .dropdown-item:active .icon-text .icon {
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

.dropdown-menu .dropdown-item.active {
  background: rgba(209, 131, 121, 0.05);
  color: #ca7166;
  border-left: solid 5px #d18379;
}

.dropdown-menu .dropdown-item.active .text {
  font-weight: 600;
}

.dropdown-menu .dropdown-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.dropdown-menu .dropdown-item.delete:hover {
  background: rgba(234, 79, 110, 0.05);
  color: #e7385b !important;
  border-left: solid 5px #ea4f6e;
}

.dropdown-menu .dropdown-item.delete:hover .icon-text {
  color: #e7385b;
}

.dropdown-menu .dropdown-item.delete:hover .icon-text .icon {
  -webkit-filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
          filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
}

#address_book .addresses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  #address_book .addresses-header {
    margin-bottom: 10px;
  }
}

@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;
  height: 20px;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
}

@media (max-width: 575px) {
  #address_book .addresses-header .form-group .search {
    top: 22px;
  }
}

#address_book .addresses-header .form-group .form-control {
  padding-right: 45px;
}

#address_book .addresses-header .btn,
#address_book .addresses-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #address_book .addresses-header .introjs-button {
  padding: 1rem 1.5rem;
}

@media (max-width: 1199px) {
  #address_book .addresses-header .btn,
  #address_book .addresses-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #address_book .addresses-header .introjs-button {
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 575px) {
  #address_book .addresses-header .btn,
  #address_book .addresses-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #address_book .addresses-header .introjs-button {
    width: 100%;
    margin-top: 5px;
  }
}

.payment-options,
.shipping-options {
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1199px) {
  .payment-options,
  .shipping-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .payment-options,
  .shipping-options {
    grid-template-columns: 1fr;
  }
}

.payment-options .option,
.shipping-options .option {
  border-radius: 0px;
  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: 600;
  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;
  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(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border: solid 2px #463250 !important;
}

.payment-options .option:hover .m-radio > span,
.shipping-options .option:hover .m-radio > span {
  border-color: #382840;
}

.payment-options .option:hover .icon img,
.shipping-options .option:hover .icon img {
  border: solid 2px #463250 !important;
}

.payment-options .option.active,
.shipping-options .option.active {
  background: rgba(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border: solid 2px #463250 !important;
}

.payment-options .option.active .m-radio > span,
.shipping-options .option.active .m-radio > span {
  border-color: #382840;
}

.payment-options .option.active .icon img,
.shipping-options .option.active .icon img {
  border: solid 2px #463250 !important;
}

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

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

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

.product-carousel:not(.owl-loaded),
.blog-carousel:not(.owl-loaded),
.review-carousel:not(.owl-loaded),
#gallery-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,
#gallery-carousel:not(.owl-loaded) .tile,
#gallery-carousel:not(.owl-loaded) .blog-tile,
#gallery-carousel:not(.owl-loaded) .review-item {
  opacity: 0;
}

.product-carousel .owl-stage-outer,
.blog-carousel .owl-stage-outer,
.review-carousel .owl-stage-outer,
#gallery-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,
  #gallery-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,
  #gallery-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,
  #gallery-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,
  #gallery-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,
#gallery-carousel .owl-stage-outer .owl-item:hover {
  z-index: 9999;
}

.product-carousel .tile,
.blog-carousel .tile,
.review-carousel .tile,
#gallery-carousel .tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-carousel .tile .image-wrapper,
.blog-carousel .tile .image-wrapper,
.review-carousel .tile .image-wrapper,
#gallery-carousel .tile .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.product-carousel .tile .image-wrapper img,
.blog-carousel .tile .image-wrapper img,
.review-carousel .tile .image-wrapper img,
#gallery-carousel .tile .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.product-carousel .tile .image-wrapper .overlay,
.blog-carousel .tile .image-wrapper .overlay,
.review-carousel .tile .image-wrapper .overlay,
#gallery-carousel .tile .image-wrapper .overlay {
  background: rgba(70, 50, 80, 0.75);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.product-carousel .tile .image-wrapper .overlay .icon,
.blog-carousel .tile .image-wrapper .overlay .icon,
.review-carousel .tile .image-wrapper .overlay .icon,
#gallery-carousel .tile .image-wrapper .overlay .icon {
  width: 20px;
  -webkit-filter: invert(96%) sepia(96%) saturate(16%) hue-rotate(227deg) brightness(103%) contrast(106%);
          filter: invert(96%) sepia(96%) saturate(16%) hue-rotate(227deg) brightness(103%) contrast(106%);
}

.product-carousel .tile .image-wrapper .overlay span,
.blog-carousel .tile .image-wrapper .overlay span,
.review-carousel .tile .image-wrapper .overlay span,
#gallery-carousel .tile .image-wrapper .overlay span {
  background: #463250;
  padding: 6px 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.product-carousel .tile .info,
.blog-carousel .tile .info,
.review-carousel .tile .info,
#gallery-carousel .tile .info {
  width: 100% !important;
  margin-top: 10px;
}

.product-carousel .tile .info .name,
.blog-carousel .tile .info .name,
.review-carousel .tile .info .name,
#gallery-carousel .tile .info .name {
  display: block;
  font-size: 17px;
  color: #463250;
  font-weight: 600;
  text-align: center;
}

.product-carousel .tile:hover .image-wrapper .overlay,
.blog-carousel .tile:hover .image-wrapper .overlay,
.review-carousel .tile:hover .image-wrapper .overlay,
#gallery-carousel .tile:hover .image-wrapper .overlay {
  opacity: 1;
  visibility: visible;
}

.product-carousel .review-item,
.blog-carousel .review-item,
.review-carousel .review-item,
#gallery-carousel .review-item {
  text-align: center;
}

.product-carousel .review-item .text,
.blog-carousel .review-item .text,
.review-carousel .review-item .text,
#gallery-carousel .review-item .text {
  color: #463250;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  padding: 0 150px;
}

@media (max-width: 1199px) {
  .product-carousel .review-item .text,
  .blog-carousel .review-item .text,
  .review-carousel .review-item .text,
  #gallery-carousel .review-item .text {
    padding: 0 100px;
  }
}

@media (max-width: 991px) {
  .product-carousel .review-item .text,
  .blog-carousel .review-item .text,
  .review-carousel .review-item .text,
  #gallery-carousel .review-item .text {
    padding: 0 60px;
  }
}

@media (max-width: 767px) {
  .product-carousel .review-item .text,
  .blog-carousel .review-item .text,
  .review-carousel .review-item .text,
  #gallery-carousel .review-item .text {
    padding: 0 40px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .product-carousel .review-item .text,
  .blog-carousel .review-item .text,
  .review-carousel .review-item .text,
  #gallery-carousel .review-item .text {
    padding: 0 30px;
  }
}

.product-carousel .review-item .user,
.blog-carousel .review-item .user,
.review-carousel .review-item .user,
#gallery-carousel .review-item .user {
  margin-top: 20px;
  font-weight: 600;
  color: #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,
#gallery-carousel.owl-theme .owl-prev,
#gallery-carousel.owl-theme .owl-next {
  position: absolute;
  top: calc(50% - 17px);
  transform: translateY(-50%);
  width: 40px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.product-carousel.owl-theme .owl-prev img,
.product-carousel.owl-theme .owl-next img,
.blog-carousel.owl-theme .owl-prev img,
.blog-carousel.owl-theme .owl-next img,
.review-carousel.owl-theme .owl-prev img,
.review-carousel.owl-theme .owl-next img,
#gallery-carousel.owl-theme .owl-prev img,
#gallery-carousel.owl-theme .owl-next img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
  width: 20px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1199px) {
  .product-carousel.owl-theme .owl-prev img,
  .product-carousel.owl-theme .owl-next img,
  .blog-carousel.owl-theme .owl-prev img,
  .blog-carousel.owl-theme .owl-next img,
  .review-carousel.owl-theme .owl-prev img,
  .review-carousel.owl-theme .owl-next img,
  #gallery-carousel.owl-theme .owl-prev img,
  #gallery-carousel.owl-theme .owl-next img {
    width: 18px;
  }
}

@media (max-width: 991px) {
  .product-carousel.owl-theme .owl-prev img,
  .product-carousel.owl-theme .owl-next img,
  .blog-carousel.owl-theme .owl-prev img,
  .blog-carousel.owl-theme .owl-next img,
  .review-carousel.owl-theme .owl-prev img,
  .review-carousel.owl-theme .owl-next img,
  #gallery-carousel.owl-theme .owl-prev img,
  #gallery-carousel.owl-theme .owl-next img {
    width: 16px;
  }
}

@media (max-width: 767px) {
  .product-carousel.owl-theme .owl-prev img,
  .product-carousel.owl-theme .owl-next img,
  .blog-carousel.owl-theme .owl-prev img,
  .blog-carousel.owl-theme .owl-next img,
  .review-carousel.owl-theme .owl-prev img,
  .review-carousel.owl-theme .owl-next img,
  #gallery-carousel.owl-theme .owl-prev img,
  #gallery-carousel.owl-theme .owl-next img {
    width: 14px;
  }
}

@media (max-width: 575px) {
  .product-carousel.owl-theme .owl-prev img,
  .product-carousel.owl-theme .owl-next img,
  .blog-carousel.owl-theme .owl-prev img,
  .blog-carousel.owl-theme .owl-next img,
  .review-carousel.owl-theme .owl-prev img,
  .review-carousel.owl-theme .owl-next img,
  #gallery-carousel.owl-theme .owl-prev img,
  #gallery-carousel.owl-theme .owl-next img {
    width: 12px;
  }
}

.product-carousel.owl-theme .owl-prev,
.blog-carousel.owl-theme .owl-prev,
.review-carousel.owl-theme .owl-prev,
#gallery-carousel.owl-theme .owl-prev {
  left: 20px;
}

@media (max-width: 1199px) {
  .product-carousel.owl-theme .owl-prev,
  .blog-carousel.owl-theme .owl-prev,
  .review-carousel.owl-theme .owl-prev,
  #gallery-carousel.owl-theme .owl-prev {
    left: 15px;
  }
}

@media (max-width: 991px) {
  .product-carousel.owl-theme .owl-prev,
  .blog-carousel.owl-theme .owl-prev,
  .review-carousel.owl-theme .owl-prev,
  #gallery-carousel.owl-theme .owl-prev {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .product-carousel.owl-theme .owl-prev,
  .blog-carousel.owl-theme .owl-prev,
  .review-carousel.owl-theme .owl-prev,
  #gallery-carousel.owl-theme .owl-prev {
    left: 5px;
  }
}

@media (max-width: 575px) {
  .product-carousel.owl-theme .owl-prev,
  .blog-carousel.owl-theme .owl-prev,
  .review-carousel.owl-theme .owl-prev,
  #gallery-carousel.owl-theme .owl-prev {
    left: 0;
  }
}

.product-carousel.owl-theme .owl-next,
.blog-carousel.owl-theme .owl-next,
.review-carousel.owl-theme .owl-next,
#gallery-carousel.owl-theme .owl-next {
  right: 20px;
}

@media (max-width: 1199px) {
  .product-carousel.owl-theme .owl-next,
  .blog-carousel.owl-theme .owl-next,
  .review-carousel.owl-theme .owl-next,
  #gallery-carousel.owl-theme .owl-next {
    right: 15px;
  }
}

@media (max-width: 991px) {
  .product-carousel.owl-theme .owl-next,
  .blog-carousel.owl-theme .owl-next,
  .review-carousel.owl-theme .owl-next,
  #gallery-carousel.owl-theme .owl-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .product-carousel.owl-theme .owl-next,
  .blog-carousel.owl-theme .owl-next,
  .review-carousel.owl-theme .owl-next,
  #gallery-carousel.owl-theme .owl-next {
    right: 5px;
  }
}

@media (max-width: 575px) {
  .product-carousel.owl-theme .owl-next,
  .blog-carousel.owl-theme .owl-next,
  .review-carousel.owl-theme .owl-next,
  #gallery-carousel.owl-theme .owl-next {
    right: 0;
  }
}

.product-carousel.owl-theme:hover .owl-prev,
.product-carousel.owl-theme:hover .owl-next,
.blog-carousel.owl-theme:hover .owl-prev,
.blog-carousel.owl-theme:hover .owl-next,
.review-carousel.owl-theme:hover .owl-prev,
.review-carousel.owl-theme:hover .owl-next,
#gallery-carousel.owl-theme:hover .owl-prev,
#gallery-carousel.owl-theme:hover .owl-next {
  background: none !important;
  opacity: 1;
}

.product-carousel.owl-theme .owl-prev img,
.product-carousel.owl-theme .owl-next img {
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
}

.review-carousel.owl-theme .owl-prev,
.review-carousel.owl-theme .owl-next {
  opacity: 1;
}

.review-carousel.owl-theme .owl-prev img,
.review-carousel.owl-theme .owl-next img {
  -webkit-filter: invert(96%) sepia(4%) saturate(316%) hue-rotate(166deg) brightness(88%) contrast(94%);
          filter: invert(96%) sepia(4%) saturate(316%) hue-rotate(166deg) brightness(88%) contrast(94%);
}

@media (max-width: 1199px) {
  .review-carousel.owl-theme .owl-prev {
    left: 0;
  }
}

@media (max-width: 991px) {
  .review-carousel.owl-theme .owl-prev {
    left: -5px;
  }
}

@media (max-width: 767px) {
  .review-carousel.owl-theme .owl-prev {
    left: -10px;
  }
}

@media (max-width: 575px) {
  .review-carousel.owl-theme .owl-prev {
    left: -20px;
  }
}

@media (max-width: 1199px) {
  .review-carousel.owl-theme .owl-next {
    right: 0;
  }
}

@media (max-width: 991px) {
  .review-carousel.owl-theme .owl-next {
    right: -5px;
  }
}

@media (max-width: 767px) {
  .review-carousel.owl-theme .owl-next {
    right: -10px;
  }
}

@media (max-width: 575px) {
  .review-carousel.owl-theme .owl-next {
    right: -20px;
  }
}

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

.product-footer .container .btn-secondary,
.product-footer .container .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .product-footer .container .introjs-button {
  background: #f7f7f9;
  color: #a7b0b5;
}

.product-footer .container .btn-secondary:hover,
.product-footer .container .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .product-footer .container .introjs-button:hover {
  color: #636c72;
  border-color: #f7f7f9;
}

.product-footer .container .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.product-footer .container .info .info-section:first-child {
  border-left: 1px solid #eceeef;
}

.product-footer .container .info .info-section .title {
  font-weight: 500;
  font-size: 15px;
}

.product-footer .container .info .info-section .title .price {
  color: #463250;
  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: #463250;
  font-weight: 500;
}

.product-footer #footer {
  border-top: 1px solid rgba(153, 73, 92, 0.2);
  padding: 10px 0;
}

.product-footer #footer .help .container {
  margin-bottom: 0;
}

#upload-wrapper .dropzone-file-area {
  border: 2px dashed #463250;
  background: #8f6aa2;
  border-radius: 5px;
  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(70, 50, 80, 0.5);
  font-size: 48px;
}

#upload-wrapper .dropzone-file-area .m-dropzone__msg-desc {
  color: #463250;
  pointer-events: none;
  padding: 15px 0;
  display: block;
}

#upload-wrapper .dropzone-file-area .btn,
#upload-wrapper .dropzone-file-area .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #upload-wrapper .dropzone-file-area .introjs-button {
  transition: none;
}

#upload-wrapper .dropzone-file-area .dz-progress {
  border: 0px solid #99495c !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: #99495c !important;
}

#upload-wrapper .dropzone-file-area .dz-error-message {
  background: #d18379 !important;
  color: #fff !important;
}

#upload-wrapper .dropzone-file-area:hover {
  border-color: #99495c;
  background: rgba(153, 73, 92, 0.05);
}

#upload-wrapper .dropzone-file-area:hover svg {
  color: rgba(153, 73, 92, 0.5);
}

#upload-wrapper .dropzone-file-area:hover .m-dropzone__msg-desc {
  color: #99495c;
}

#upload-wrapper .dropzone-file-area:hover .btn,
#upload-wrapper .dropzone-file-area:hover .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons #upload-wrapper .dropzone-file-area:hover .introjs-button {
  background: #99495c;
  border-color: #99495c;
}

#upload-wrapper .dropzone-file-area .loader {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: #8f6aa2;
  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 #463250;
  background: #8f6aa2;
  border-radius: 5px;
  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;
}

#upload-wrapper .file-uploaded svg {
  color: #463250;
  font-size: 48px;
}

#upload-wrapper .file-uploaded .filename {
  font-size: 14px;
  background: #463250;
  color: #fff;
  border-radius: 5px;
  padding: 10px 10px 10px 15px;
  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: #463250;
  font-weight: 300;
  margin-left: 10px;
}

#upload-wrapper .file-uploaded .filename a:hover {
  background: #d18379;
  color: #fff;
}

#upload-wrapper .file-uploaded .text {
  margin-top: 20px;
  color: #463250;
  font-weight: 700;
  font-size: 18px;
}

#upload-wrapper .file-uploaded .m-checkbox-inline {
  padding: 0 100px;
}

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

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

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

.tags .tag:hover,
.tags .category:hover,
.categories .tag:hover,
.categories .category:hover {
  color: #382840;
  border-color: #463250;
  background: rgba(70, 50, 80, 0.05);
}

.tags .tag.current,
.tags .category.current,
.categories .tag.current,
.categories .category.current {
  color: #884152;
  border-color: #99495c;
  background: rgba(153, 73, 92, 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;
  grid-auto-rows: 224px;
  margin-bottom: 100px;
}

.insta-feed .insta-grid .item {
  grid-column: span 1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  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;
}

.insta-feed .insta-grid .item .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.insta-feed .insta-grid .item .image .overlay {
  background: rgba(153, 73, 92, 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;
}

.insta-feed .insta-grid .item .image .overlay .text {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

.insta-feed .insta-grid .item .image:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.insta-feed .insta-grid .item:hover {
  z-index: 1;
}

.newsletter form .group-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.newsletter form .group-row .form-group:first-child {
  position: relative;
  width: 100%;
}

.newsletter form .group-row .btn,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button,
.newsletter form .group-row .form-control {
  padding: 0 20px;
  background: #61466f;
  border: none !important;
  height: 50px;
  color: #fff;
}

.newsletter form .group-row .btn::-moz-placeholder,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button::-moz-placeholder,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button::-moz-placeholder,
.newsletter form .group-row .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter form .group-row .btn:-ms-input-placeholder,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:-ms-input-placeholder,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button:-ms-input-placeholder,
.newsletter form .group-row .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter form .group-row .btn::placeholder,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button::placeholder,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button::placeholder,
.newsletter form .group-row .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter form .group-row .btn img,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button img,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button img,
.newsletter form .group-row .form-control img {
  width: 18px;
}

.newsletter form .group-row .btn,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button {
  padding: 0 15px;
  background: #382840;
}

.newsletter form .group-row .btn:hover,
.newsletter form .group-row .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .newsletter form .group-row .introjs-button:hover {
  background: #2b1e31;
}

.cookie-consent {
  position: fixed;
  max-width: 580px;
  left: calc(50% - 290px);
  bottom: 50px;
  z-index: 99999;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .cookie-consent {
    display: block;
    max-width: calc(100% - 40px);
    left: 20px;
    bottom: 20px;
  }
}

.cookie-consent .cookie-consent__message {
  padding-right: 25px;
  color: #636c72;
}

.cookie-consent .cookie-consent__message a {
  color: #463250;
  font-weight: 600;
}

.cookie-consent .cookie-consent__message a:hover {
  color: #2b1e31;
}

.cookie-consent .cookie-consent__agree {
  background: #99495c;
  color: #fff;
  border: none;
  font-family: "Source Sans Pro";
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  outline: none !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767px) {
  .cookie-consent .cookie-consent__agree {
    width: 100%;
    margin-top: 15px;
    padding: 0.5rem 1rem;
    font-size: 15px;
  }
}

.cookie-consent .cookie-consent__agree:hover {
  background: #763947;
}

.cta {
  background: linear-gradient(135deg, #925b6a 0%, #c8908b 50%, #c9928c 100%);
  padding: 80px 0;
}

@media (max-width: 1399px) {
  .cta {
    padding: 70px 0;
  }
}

@media (max-width: 1199px) {
  .cta {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {
  .cta {
    padding: 50px 0;
  }
}

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

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

@media (max-width: 991px) {
  .cta .content {
    text-align: center;
  }
}

.cta .content .section_title {
  font-weight: 700;
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .cta .content .section_title {
    font-size: 45px;
    margin-bottom: 8px;
  }
}

@media (max-width: 991px) {
  .cta .content .section_title {
    font-size: 40px;
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  .cta .content .section_title {
    font-size: 35px;
    margin-bottom: 4px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta .content .section_title {
    font-size: 30px;
    margin-bottom: 2px;
  }
}

.cta .content .section_subtitle {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 991px) {
  .cta .content .section_subtitle {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .cta .content .section_subtitle {
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  .cta .content .section_subtitle {
    font-size: 16px;
  }
}

.cta .content .btn,
.cta .content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .cta .content .introjs-button {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .cta .content .btn,
  .cta .content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .cta .content .introjs-button {
    margin-top: 18px;
  }
}

@media (max-width: 991px) {
  .cta .content .btn,
  .cta .content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .cta .content .introjs-button {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .cta .content .btn,
  .cta .content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .cta .content .introjs-button {
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  .cta .content .btn,
  .cta .content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .cta .content .introjs-button {
    margin-top: 12px;
  }
}

.bootstrap-maxlength {
  border-radius: 0px;
  font-size: 13px;
}

.modal.fade .modal-dialog {
  transform: translate(0, -2%);
}

.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal .modal-dialog-centered {
  min-height: calc(100% - 60px);
}

.modal .modal-content {
  border-radius: 0;
}

.modal .modal-content .modal-header {
  background: #463250;
  border: none;
  padding: 25px;
}

@media (max-width: 1599px) {
  .modal .modal-content .modal-header {
    padding: 22px;
  }
}

@media (max-width: 1399px) {
  .modal .modal-content .modal-header {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .modal .modal-content .modal-header {
    padding: 18px;
  }
}

.modal .modal-content .modal-header .modal-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .modal .modal-content .modal-header .modal-title {
    font-size: 17px;
  }
}

.modal .modal-content .modal-header .close {
  opacity: 1;
  transform: rotate(0);
  transition: all 0.2s ease-in-out;
}

.modal .modal-content .modal-header .close::before {
  content: "";
}

.modal .modal-content .modal-header .close img {
  width: 32px;
  height: 32px;
  position: relative;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

@media (max-width: 1199px) {
  .modal .modal-content .modal-header .close img {
    transform: scale(0.9);
  }
}

.modal .modal-content .modal-header .close:hover {
  transform: rotate(90deg);
}

.modal .modal-content .modal-body {
  padding: 25px;
}

@media (max-width: 1599px) {
  .modal .modal-content .modal-body {
    padding: 22px;
  }
}

@media (max-width: 1399px) {
  .modal .modal-content .modal-body {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .modal .modal-content .modal-body {
    padding: 18px;
  }
}

.modal .modal-content .modal-body p {
  text-align: left;
}

.modal .modal-content .modal-body .search-account {
  padding: 10px;
  margin-bottom: 5px;
}

.modal .modal-content .modal-body .search-account .form-control {
  padding: 12px 12px 12px 40px;
  border-width: 2px;
  background: #fff;
}

.modal .modal-content .modal-body .search-account i {
  position: relative;
  top: 2px;
}

.modal .modal-content .modal-body .search-account .btn,
.modal .modal-content .modal-body .search-account .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .modal .modal-content .modal-body .search-account .introjs-button {
  margin-left: 10px;
}

.modal .modal-content .modal-body .search-account .btn.btn-primary,
.modal .modal-content .modal-body .search-account .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .btn-primary.introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .modal .modal-content .modal-body .search-account .btn-primary.introjs-button {
  color: #fff;
}

.modal .modal-content .modal-footer {
  padding: 25px;
}

@media (max-width: 1599px) {
  .modal .modal-content .modal-footer {
    padding: 22px;
  }
}

@media (max-width: 1399px) {
  .modal .modal-content .modal-footer {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .modal .modal-content .modal-footer {
    padding: 18px;
  }
}

.modal .modal-content .modal-footer label {
  margin-bottom: 0;
}

.cropper-view-box {
  outline: 1px solid #fff;
}

.cropper-face {
  opacity: 0;
}

.cropper-line {
  opacity: 0 !important;
  background-color: #fff;
}

.cropper-point {
  background-color: #fff;
  height: 10px !important;
  opacity: 1 !important;
  width: 10px !important;
}

.introjs-helperLayer {
  border-radius: 0;
  border: none;
  box-shadow: 3px 0px 20px -5px rgba(0, 0, 0, 0.3);
  background: white;
}

.introjs-tooltipReferenceLayer .introjs-tooltip {
  min-width: 300px;
  border-radius: 0;
  box-shadow: 3px 0px 20px -5px rgba(0, 0, 0, 0.3);
  padding: 15px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext {
  font-size: 15px;
  padding-top: 30px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul {
  margin: 0;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li {
  margin: 0 3px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li a {
  width: 10px;
  height: 10px;
  background: #dee2e3;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li a.active {
  background: #d18379;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-progress {
  height: 8px;
  background: #f2f3f4;
  border-radius: 0;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-progress .introjs-progressbar {
  background: #463250;
  line-height: 8px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button {
  text-shadow: none;
  box-shadow: none !important;
  padding: 5px 12px;
  font-size: 13px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button.introjs-nextbutton {
  background: #99495c;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button.introjs-nextbutton:hover {
  background: #884152;
}

.steps {
  width: 50%;
  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: 55%;
  }
}

.steps .step {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.steps .step .number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #f7f7f9;
  color: #b5bcc0;
  font-weight: 600;
  font-size: 16px;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .steps .step .number {
    margin-right: 1px;
  }
}

.steps .step .number i,
.steps .step .number svg {
  font-size: 14px;
}

.steps .step .title {
  font-size: 17px;
  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: #f7f7f9;
}

.steps .step.no-grow {
  flex-grow: 0;
}

.steps .step.done .number {
  background: #463250;
  color: #fff;
}

.steps .step.done .bar {
  background: #463250;
}

.steps .step.current .number {
  background: #463250;
  color: #fff;
}

.steps .step.current .title {
  color: #463250;
}

body.home .hero {
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 610px;
}

@media (max-width: 1199px) {
  body.home .hero {
    height: unset;
  }
}

body.home .hero .owl-carousel {
  position: relative;
  height: 610px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel {
    height: unset;
  }
}

body.home .hero .owl-carousel:not(.owl-loaded) {
  opacity: 0;
  visibility: hidden;
  height: 610px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 560px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 460px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 340px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel:not(.owl-loaded) {
    height: 280px;
  }
}

body.home .hero .owl-carousel:not(.owl-loaded) .slide {
  opacity: 0;
}

body.home .hero .owl-carousel .slide {
  height: 610px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.home .hero .owl-carousel .slide.slide1 {
  background: linear-gradient(20deg, #d7908a 0%, #dd948e 65%, #c87c7c 65%, #a5566b 100%);
}

body.home .hero .owl-carousel .slide.slide2 {
  background: linear-gradient(20deg, #5c4d6a 0%, #675b73 65%, #5c4e68 65%, #6d6177 100%);
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide {
    height: 560px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide {
    height: 460px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide {
    height: 340px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide {
    height: 280px;
  }
}

body.home .hero .owl-carousel .slide .container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative !important;
}

body.home .hero .owl-carousel .slide .container .image {
  position: absolute;
  right: -200px;
  top: -20px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .image {
    right: -167px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .image {
    right: -100px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .image {
    right: -167px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .image {
    right: -167px;
  }
}

body.home .hero .owl-carousel .slide .container .image img {
  max-height: 650px;
  width: auto;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .image img {
    max-height: 600px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .image img {
    max-height: 490px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .image img {
    max-height: 600px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .image img {
    height: 280px;
  }
}

body.home .hero .owl-carousel .slide .container .text {
  width: 50%;
  z-index: 1;
}

@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: 700;
  font-size: 45px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    font-size: 40px;
    margin-bottom: 8px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    font-size: 35px;
    margin-bottom: 6px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    font-size: 32px;
    margin-bottom: 4px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .text h1 {
    font-size: 30px;
    margin-bottom: 2px;
  }
}

body.home .hero .owl-carousel .slide .container .text p {
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .container .text p {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .container .text p {
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    line-height: 24px;
    margin-bottom: 5px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .container .text p {
    font-size: 15px;
    line-height: 20px;
  }
}

body.home .hero .owl-carousel .slide .btn,
body.home .hero .owl-carousel .slide .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.home .hero .owl-carousel .slide .introjs-button {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .slide .btn,
  body.home .hero .owl-carousel .slide .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.home .hero .owl-carousel .slide .introjs-button {
    margin-top: 18px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .slide .btn,
  body.home .hero .owl-carousel .slide .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.home .hero .owl-carousel .slide .introjs-button {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .slide .btn,
  body.home .hero .owl-carousel .slide .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.home .hero .owl-carousel .slide .introjs-button {
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .slide .btn,
  body.home .hero .owl-carousel .slide .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.home .hero .owl-carousel .slide .introjs-button {
    margin-top: 12px;
  }
}

body.home .hero .owl-carousel .owl-prev,
body.home .hero .owl-carousel .owl-next {
  position: absolute;
  top: calc(50% - 17px);
  transform: translateY(-50%);
  width: 40px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

body.home .hero .owl-carousel .owl-prev img,
body.home .hero .owl-carousel .owl-next img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
  width: 20px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .owl-prev img,
  body.home .hero .owl-carousel .owl-next img {
    width: 18px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .owl-prev img,
  body.home .hero .owl-carousel .owl-next img {
    width: 16px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .owl-prev img,
  body.home .hero .owl-carousel .owl-next img {
    width: 14px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .owl-prev img,
  body.home .hero .owl-carousel .owl-next img {
    width: 12px;
  }
}

body.home .hero .owl-carousel .owl-prev {
  left: 20px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .owl-prev {
    left: 15px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .owl-prev {
    left: 10px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .owl-prev {
    left: 5px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .owl-prev {
    left: 0;
  }
}

body.home .hero .owl-carousel .owl-next {
  right: 20px;
}

@media (max-width: 1199px) {
  body.home .hero .owl-carousel .owl-next {
    right: 15px;
  }
}

@media (max-width: 991px) {
  body.home .hero .owl-carousel .owl-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  body.home .hero .owl-carousel .owl-next {
    right: 5px;
  }
}

@media (max-width: 575px) {
  body.home .hero .owl-carousel .owl-next {
    right: 0;
  }
}

body.home .hero .owl-carousel:hover .owl-prev,
body.home .hero .owl-carousel:hover .owl-next {
  background: none;
  opacity: 1;
}

body.home .usps {
  padding: 0px;
  margin-top: -35px;
}

@media (max-width: 767px) {
  body.home .usps {
    margin-top: 24px;
  }
}

@media (max-width: 575px) {
  body.home .usps {
    margin-top: 20px;
  }
}

@media screen and (max-width: 400px) {
  body.home .usps {
    margin-top: 15px;
  }
}

body.home .usps .container {
  position: relative !important;
  z-index: 1;
}

body.home .usps ul {
  background: #f7f7f9;
  padding: 28px 25px;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  body.home .usps ul {
    padding: 26px 22px;
  }
}

@media (max-width: 1199px) {
  body.home .usps ul {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 860px) {
  body.home .usps ul {
    padding: 22px 18px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul {
    padding: 15px;
  }
}

body.home .usps ul li {
  width: 25%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  body.home .usps ul li {
    padding: 0 10px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul li {
    padding: 0 5px;
  }
}

@media screen and (max-width: 860px) {
  body.home .usps ul li {
    width: 50%;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li:nth-child(2) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 860px) {
  body.home .usps ul li:nth-child(3),
  body.home .usps ul li:nth-child(4) {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li:nth-child(3),
  body.home .usps ul li:nth-child(4) {
    margin-top: 10px;
  }
}

body.home .usps ul li img {
  max-width: 35px;
  max-height: 35px;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
  position: absolute;
}

@media (max-width: 1199px) {
  body.home .usps ul li img {
    max-width: 30px;
    max-height: 30px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul li img {
    max-width: 25px;
    max-height: 25px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li img {
    max-width: 20px;
    max-height: 20px;
  }
}

body.home .usps ul li .text {
  display: flex;
  flex-direction: column;
  line-height: 20px;
  margin-left: 50px;
}

@media (max-width: 1199px) {
  body.home .usps ul li .text {
    margin-left: 45px;
  }
}

@media (max-width: 991px) {
  body.home .usps ul li .text {
    margin-left: 35px;
  }
}

@media (max-width: 767px) {
  body.home .usps ul li .text {
    margin-left: 27px;
  }
}

body.home .usps ul li .text .title {
  font-size: 16px;
  font-weight: 700;
  color: #61466f;
}

@media (max-width: 991px) {
  body.home .usps ul li .text .title {
    font-size: 15px;
  }
}

body.home .usps ul li .text .subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #61466f;
}

@media (max-width: 1199px) {
  body.home .usps ul li .text .subtitle {
    font-size: 14px;
  }
}

body.home .usps ul li .text .subtitle a {
  color: #61466f;
}

body.home .promo {
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  body.home .promo {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  body.home .promo {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 400px) {
  body.home .promo {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

body.home .promo .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media (max-width: 1199px) {
  body.home .promo .grid {
    grid-gap: 24px;
  }
}

@media (max-width: 991px) {
  body.home .promo .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

body.home .promo .grid .item {
  grid-column: span 1;
  grid-row: span 2;
  background: #f7f7f9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 35px;
  display: flex;
  height: 500px;
}

@media (max-width: 991px) {
  body.home .promo .grid .item {
    grid-row: span 1;
    height: 235px;
    padding: 24px;
  }
}

body.home .promo .grid .item:nth-child(2),
body.home .promo .grid .item:nth-child(3) {
  grid-row: span 1;
  height: 235px;
}

body.home .promo .grid .item:nth-child(4) {
  grid-column: span 2;
  max-height: 85px;
}

@media (max-width: 991px) {
  body.home .promo .grid .item:nth-child(4) {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  body.home .promo .grid .item:nth-child(4) {
    max-height: unset;
  }
}

body.home .promo .grid .item h3 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
}

body.home .promo .grid .item .content {
  width: 50%;
}

body.home .promo .grid .item.promo-1 {
  align-items: flex-end;
}

body.home .promo .grid .item.promo-2 {
  align-items: center;
}

body.home .promo .grid .item.promo-2 h3 {
  margin-bottom: 20px;
  color: #99495c;
}

body.home .promo .grid .item.promo-3 {
  align-items: center;
}

body.home .promo .grid .item.promo-3 h3 {
  margin-bottom: 20px;
  color: #463250;
}

body.home .promo .grid .item.promo-4 {
  background: #d8958c;
  padding: 20px 35px;
}

body.home .promo .grid .item.promo-4 h3 {
  font-size: 26px;
}

body.home .promo .grid .item.promo-4 .content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  body.home .promo .grid .item.promo-4 .content h3 {
    width: 100%;
  }
}

body.home .products {
  margin-bottom: 35px;
}

body.home .products .section_title {
  color: #99495c;
}

body.home .reviews {
  background: #f7f7f9;
  padding: 60px 0;
}

@media (max-width: 1399px) {
  body.home .reviews {
    padding: 55px 0px;
  }
}

@media (max-width: 1199px) {
  body.home .reviews {
    padding: 50px 0px;
  }
}

@media (max-width: 991px) {
  body.home .reviews {
    padding: 45px 0px;
  }
}

@media (max-width: 767px) {
  body.home .reviews {
    padding: 40px 0px;
  }
}

@media (max-width: 575px) {
  body.home .reviews {
    padding: 35px 0px;
  }
}

body.home .reviews .title {
  color: #463250;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  text-align: center;
}

body.home .reviews .subtitle {
  color: #463250;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  text-align: center;
  display: block;
}

@media (max-width: 767px) {
  body.home .reviews .subtitle {
    margin-bottom: 10px;
  }
}

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: #ea4f6e;
  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: #463250;
  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: #463250;
  text-decoration: underline;
}

.editor .max-size {
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #463250;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1023px) {
  .editor .max-size {
    opacity: 1;
    visibility: visible;
  }
}

.editor .max-size .popup {
  padding: 30px;
  margin: 0 20px;
  max-width: 600px;
  background: #99495c;
}

.editor .max-size .popup .title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.editor .max-size .popup .text {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.editor .toast-top-right {
  top: 84px;
}

.editor .swal2-top-end {
  top: 75px !important;
}

.editor .swal2-top-end.no-top {
  top: 3px !important;
}

.editor .swal2-top-end.no-top > .swal2-popup {
  justify-content: flex-start;
  width: 360px;
}

.editor .overlay_loader {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.editor .overlay_loader.active {
  opacity: 1;
  visibility: visible;
}

.editor .overlay_loader .loader {
  background: #fff;
  padding: 20px 50px 30px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.editor .container-editor {
  background: #f7f7f9;
  display: flex;
  height: 100vh;
}

.editor .container-editor .sidebar {
  background: #463250;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 425px;
  height: 100%;
  box-shadow: 3px 0px 20px -5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar {
    width: 400px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar {
    width: 375px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar {
    width: 350px;
  }
}

@media screen and (max-width: 1023px) {
  .editor .container-editor .sidebar {
    display: none;
  }
}

.editor .container-editor .sidebar .empty-layers {
  color: #fff;
  font-size: 16px;
  padding: 0px 25px;
  margin: 0;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .empty-layers {
    padding: 0px 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .empty-layers {
    padding: 0px 20px;
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .empty-layers {
    padding: 0px 18px;
  }
}

.editor .container-editor .sidebar #debug {
  position: fixed;
  left: 0px;
  bottom: 60px;
  width: 435px;
  background: #d18379;
  padding: 20px;
  z-index: 1;
  color: #fff;
}

.editor .container-editor .sidebar #debug span,
.editor .container-editor .sidebar #debug a {
  font-weight: bold;
  color: #fff;
}

.editor .container-editor .sidebar #debug pre {
  max-height: 200px;
}

.editor .container-editor .sidebar #debug form {
  margin: 10px 0px;
}

.editor .container-editor .sidebar #debug .btn,
.editor .container-editor .sidebar #debug .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .editor .container-editor .sidebar #debug .introjs-button {
  padding: 4px 10px;
  font-size: 15px;
  margin: 2px;
  font-weight: 300;
}

.editor .container-editor .sidebar .brand {
  min-height: 68px;
  display: flex;
  align-items: center;
  background-color: #302237;
}

.editor .container-editor .sidebar .brand img {
  width: 150px;
  position: relative;
  left: 25px;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .brand img {
    left: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .brand img {
    left: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .brand img {
    left: 18px;
  }
}

.editor .container-editor .sidebar h1 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 35px 25px;
  margin: 0;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar h1 {
    font-size: 19px;
    padding: 32px 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar h1 {
    font-size: 18px;
    padding: 30px 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar h1 {
    font-size: 17px;
    padding: 28px 18px;
  }
}

.editor .container-editor .sidebar .btn-next {
  margin: 25px;
  color: #fff;
  background: #aa5166;
  border-color: #aa5166;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .btn-next {
    margin: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .btn-next {
    margin: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .btn-next {
    margin: 18px;
  }
}

.editor .container-editor .sidebar .btn-next:hover {
  background: #99495c;
  border-color: #99495c;
}

.editor .container-editor .sidebar .preview_info {
  padding: 0px 25px;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .preview_info {
    padding: 0px 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .preview_info {
    padding: 0px 20px;
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .preview_info {
    padding: 0px 18px;
  }
}

.editor .container-editor .sidebar .preview_info .qties {
  margin-top: 20px;
}

.editor .container-editor .sidebar .preview_info .qties label {
  font-weight: 600;
}

.editor .container-editor .sidebar .preview_info .qties .bootstrap-select .dropdown-toggle {
  border: none;
}

.editor .container-editor .sidebar .preview_info .qties .bootstrap-select .select_qty {
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
}

.editor .container-editor .sidebar .preview_info .qties .bootstrap-select .select_qty .price {
  font-weight: 600;
}

.editor .container-editor .sidebar .preview_info .qties .bootstrap-select .dropdown-menu .inner {
  max-height: 235px !important;
  overflow-y: auto;
}

.editor .container-editor .sidebar .preview_info .btn-preview {
  margin-top: 25px;
  background: #aa5166;
  border-color: #aa5166;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .preview_info .btn-preview {
    margin-top: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .preview_info .btn-preview {
    margin-top: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .preview_info .btn-preview {
    margin-top: 18px;
  }
}

.editor .container-editor .sidebar .preview_info .btn-preview:hover {
  background: #99495c;
  border-color: #99495c;
}

.editor .container-editor .sidebar .preview_info .btn-preview.done {
  background: #61466f;
  border-color: #61466f;
}

.editor .container-editor .sidebar .preview_info .btn-preview.done:hover {
  background: #5c4269;
  border-color: #5c4269;
}

.editor .container-editor .sidebar .preview_info .btn-cart {
  margin-top: 25px;
  background: #aa5166;
  border-color: #aa5166;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .preview_info .btn-cart {
    margin-top: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .preview_info .btn-cart {
    margin-top: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .preview_info .btn-cart {
    margin-top: 18px;
  }
}

.editor .container-editor .sidebar .preview_info .btn-cart:hover {
  background: #99495c;
  border-color: #99495c;
}

.editor .container-editor .sidebar .preview_info .btn-cart[disabled] {
  background: #7d598f;
  border-color: #7d598f;
}

.editor .container-editor .sidebar .preview_info .btn-cart.m-loader--light {
  background: #b46175 !important;
  border-color: #b46175 !important;
}

.editor .container-editor .sidebar #accordion .card {
  border-radius: 0;
  background: none;
  border: none;
}

.editor .container-editor .sidebar #accordion .card:last-child .card-header {
  border-bottom: 1px solid #2b1e31;
}

.editor .container-editor .sidebar #accordion .card:last-child .card-header.collapsed {
  border-bottom: 1px solid #543c60;
}

.editor .container-editor .sidebar #accordion .card:last-child .card-header:hover {
  border-bottom: 1px solid #2b1e31;
}

.editor .container-editor .sidebar #accordion .card .card-header {
  background: #2b1e31;
  border-top: 1px solid #2b1e31;
  height: 60px;
  border-left: 6px solid #7d598f;
  padding-left: 25px;
  padding-right: 25px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-header {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-header {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-header::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 25px;
  top: 28px;
  background-color: #fff;
  -webkit-mask: url("/images/chevron-down.svg") no-repeat;
          mask: url("/images/chevron-down.svg") no-repeat;
}

.editor .container-editor .sidebar #accordion .card .card-header.collapsed {
  background: #3b2a43;
  border-top: 1px solid #543c60;
  border-left: 0px solid #7d598f;
}

.editor .container-editor .sidebar #accordion .card .card-header.collapsed::after {
  display: none;
}

.editor .container-editor .sidebar #accordion .card .card-header a {
  color: #fff;
  font-family: "Source Sans Pro";
  font-size: 18px;
  font-weight: 400;
  position: relative;
  top: 6px;
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-header a {
    font-size: 17px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-header a img {
  position: relative;
  top: -1px;
  width: 30px;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-header a img {
    transform: scale(0.95);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-header a img {
    transform: scale(0.9);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-header a img {
    transform: scale(0.85);
  }
}

.editor .container-editor .sidebar #accordion .card .card-header a span {
  margin-left: 25px;
  position: relative;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-header a span {
    margin-left: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-header a span {
    margin-left: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-header a span {
    margin-left: 18px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-header:hover {
  background: #33243a;
  border-top: 1px solid #33243a;
}

.editor .container-editor .sidebar #accordion .card .card-header:hover::before {
  display: none;
}

.editor .container-editor .sidebar #accordion .card .card-body {
  background: #463250;
  color: #fff;
  padding: 25px;
  overflow-y: auto;
  position: relative;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body {
    padding: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body {
    padding: 18px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body.tabs_1 {
  max-height: calc(100vh - 378px);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_1 {
    max-height: calc(100vh - 364px);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_1 {
    max-height: calc(100vh - 354px);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_1 {
    max-height: calc(100vh - 344px);
  }
}

.editor .container-editor .sidebar #accordion .card .card-body.tabs_2 {
  max-height: calc(100vh - 438px);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_2 {
    max-height: calc(100vh - 424px);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_2 {
    max-height: calc(100vh - 414px);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_2 {
    max-height: calc(100vh - 404px);
  }
}

.editor .container-editor .sidebar #accordion .card .card-body.tabs_3 {
  max-height: calc(100vh - 500px);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_3 {
    max-height: calc(100vh - 485px);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_3 {
    max-height: calc(100vh - 475px);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body.tabs_3 {
    max-height: calc(100vh - 465px);
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .input-group-addon {
  background: #ff5b77;
  border-color: #ff5b77;
}

.editor .container-editor .sidebar #accordion .card .card-body .input-group-addon i {
  color: #fff !important;
}

.editor .container-editor .sidebar #accordion .card .card-body label {
  display: block;
  font-size: 16px !important;
  margin-bottom: 7px;
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body label {
    font-size: 15px !important;
    margin-bottom: 5px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .form-group {
  margin-bottom: 15px;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-group {
    margin-bottom: 12px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-group {
    margin-bottom: 10px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-group {
    margin-bottom: 8px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .form-control {
  border: 0;
  font-size: 15px;
  padding: 12px;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-control {
    padding: 11px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-control {
    padding: 10px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar #accordion .card .card-body .form-control {
    padding: 9px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .m-form__help {
  display: block;
  font-size: 0.85rem;
  padding-top: 5px;
}

.editor .container-editor .sidebar #accordion .card .card-body .m-form__help code {
  float: right;
  padding: 0;
  font-size: 16px;
  background: none;
  color: #926da4;
  word-break: break-word;
}

.editor .container-editor .sidebar #accordion .card .card-body .m-form__help::after {
  content: " ";
  display: block;
  clear: both;
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-upload {
  background: #61466f;
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-upload:hover {
  border-color: #5c4269;
  background: #5c4269;
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-upload .check {
  position: absolute;
  right: 15px;
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-upload.small {
  display: inline-block;
  width: 55%;
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body .btn-upload.small {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-edit-crop {
  display: inline-block;
  font-size: 16px;
  background: #7d598f;
  margin-bottom: 8px;
  width: calc(45% - 10px);
  margin-left: 10px;
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar #accordion .card .card-body .btn-edit-crop {
    display: block;
    margin-left: 0;
    width: 100%;
    font-size: 15px;
  }
}

.editor .container-editor .sidebar #accordion .card .card-body .btn-edit-crop:hover {
  border-color: #674a76;
  background: #674a76;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality .bar {
  width: 100%;
  height: 4px;
  margin: 5px 0 3px;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.bad .bar {
  background: #ea4f6e;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.medium .bar {
  background: #ea4f6e;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.medium .title {
  color: #ea4f6e;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.ok .bar {
  background: #f0ad4e;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.ok .title {
  color: #f0ad4e;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.good .bar {
  background: #70c1ab;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality.good .title {
  color: #70c1ab;
}

.editor .container-editor .sidebar #accordion .card .card-body .quality .title {
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
}

.editor .container-editor .sidebar .editor-close {
  background: #61466f;
  align-self: flex-end;
  margin-top: auto;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  padding-left: 25px;
  cursor: pointer;
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .editor-close {
    padding-left: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .editor-close {
    padding-left: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .editor-close {
    padding-left: 18px;
    font-size: 17px;
  }
}

.editor .container-editor .sidebar .editor-close img {
  width: 32px;
  height: 32px;
  position: relative;
  margin-right: 15px;
  display: block;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

@media (max-width: 1599px) {
  .editor .container-editor .sidebar .editor-close img {
    transform: scale(0.95);
    margin-right: 12px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .sidebar .editor-close img {
    transform: scale(0.9);
    margin-right: 10px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .sidebar .editor-close img {
    transform: scale(0.85);
    margin-right: 8px;
  }
}

.editor .container-editor .sidebar .editor-close:hover {
  background: #5c4269;
}

.editor .container-editor .main-content {
  width: calc(100% - 425px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content {
    width: calc(100% - 400px);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content {
    width: calc(100% - 375px);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content {
    width: calc(100% - 350px);
  }
}

@media screen and (max-width: 1023px) {
  .editor .container-editor .main-content {
    width: 100%;
  }
}

.editor .container-editor .main-content .topbar {
  min-height: 68px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.3);
  z-index: 2;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .editor .container-editor .main-content .topbar {
    display: none;
  }
}

.editor .container-editor .main-content .topbar .left-nav,
.editor .container-editor .main-content .topbar .right-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.editor .container-editor .main-content .topbar .left-nav li > a,
.editor .container-editor .main-content .topbar .right-nav li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  cursor: pointer;
  padding: 0 30px;
  position: relative;
  border-right: 1px solid #f2f3f4;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .topbar .left-nav li > a,
  .editor .container-editor .main-content .topbar .right-nav li > a {
    padding: 0 25px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .topbar .left-nav li > a,
  .editor .container-editor .main-content .topbar .right-nav li > a {
    padding: 0 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content .topbar .left-nav li > a,
  .editor .container-editor .main-content .topbar .right-nav li > a {
    padding: 0 15px;
  }
}

.editor .container-editor .main-content .topbar .left-nav li > a img,
.editor .container-editor .main-content .topbar .right-nav li > a img {
  width: 22px;
  position: relative;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
}

.editor .container-editor .main-content .topbar .left-nav li > a img.landscape-front,
.editor .container-editor .main-content .topbar .left-nav li > a img.landscape-back,
.editor .container-editor .main-content .topbar .right-nav li > a img.landscape-front,
.editor .container-editor .main-content .topbar .right-nav li > a img.landscape-back {
  width: 32px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.double-portrait-inside-left,
.editor .container-editor .main-content .topbar .left-nav li > a img.double-portrait-inside-right,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-portrait-inside-left,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-portrait-inside-right {
  width: 26px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.double-landscape-front,
.editor .container-editor .main-content .topbar .left-nav li > a img.double-landscape-back,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-landscape-front,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-landscape-back {
  width: 34px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.double-landscape-inside-bottom,
.editor .container-editor .main-content .topbar .left-nav li > a img.double-landscape-inside-top,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-landscape-inside-bottom,
.editor .container-editor .main-content .topbar .right-nav li > a img.double-landscape-inside-top {
  width: 32px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.reset,
.editor .container-editor .main-content .topbar .right-nav li > a img.reset {
  width: 30px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.save,
.editor .container-editor .main-content .topbar .right-nav li > a img.save {
  width: 30px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.fullscreen,
.editor .container-editor .main-content .topbar .right-nav li > a img.fullscreen {
  width: 28px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.editor-help,
.editor .container-editor .main-content .topbar .right-nav li > a img.editor-help {
  width: 30px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.cart,
.editor .container-editor .main-content .topbar .right-nav li > a img.cart {
  width: 30px;
}

.editor .container-editor .main-content .topbar .left-nav li > a img.preview,
.editor .container-editor .main-content .topbar .right-nav li > a img.preview {
  width: 35px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .topbar .left-nav li > a img,
  .editor .container-editor .main-content .topbar .right-nav li > a img {
    transform: scale(0.95);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .topbar .left-nav li > a img,
  .editor .container-editor .main-content .topbar .right-nav li > a img {
    transform: scale(0.9);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content .topbar .left-nav li > a img,
  .editor .container-editor .main-content .topbar .right-nav li > a img {
    transform: scale(0.85);
  }
}

.editor .container-editor .main-content .topbar .left-nav li > a:hover,
.editor .container-editor .main-content .topbar .right-nav li > a:hover {
  background: #f2f3f4;
}

.editor .container-editor .main-content .topbar .left-nav li > a.step::before,
.editor .container-editor .main-content .topbar .right-nav li > a.step::before {
  content: "";
  background: #f2f3f4;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 8px;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.editor .container-editor .main-content .topbar .left-nav li > a.done::before,
.editor .container-editor .main-content .topbar .right-nav li > a.done::before {
  background: #463250;
}

.editor .container-editor .main-content .topbar .left-nav li > a.done:hover::before,
.editor .container-editor .main-content .topbar .right-nav li > a.done:hover::before {
  background: #d18379;
}

.editor .container-editor .main-content .topbar .left-nav li > a.active,
.editor .container-editor .main-content .topbar .right-nav li > a.active {
  background: #463250;
  color: #fff;
}

.editor .container-editor .main-content .topbar .left-nav li > a.active img,
.editor .container-editor .main-content .topbar .right-nav li > a.active img {
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

.editor .container-editor .main-content .topbar .left-nav li > a.active::after,
.editor .container-editor .main-content .topbar .right-nav li > a.active::after {
  content: "";
  background: url("/images/editor-menu-arrow.svg") no-repeat center center;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
  position: absolute;
  bottom: -12px;
  width: 20px;
  margin-left: -10px;
  left: 50%;
  height: 20px;
}

.editor .container-editor .main-content .topbar .left-nav li > a.active::before,
.editor .container-editor .main-content .topbar .right-nav li > a.active::before {
  background: none;
}

.editor .container-editor .main-content .topbar .left-nav li > a.active:hover::before,
.editor .container-editor .main-content .topbar .right-nav li > a.active:hover::before {
  background: none;
}

.editor .container-editor .main-content .topbar .left-nav li > a.off,
.editor .container-editor .main-content .topbar .right-nav li > a.off {
  cursor: not-allowed;
}

.editor .container-editor .main-content .topbar .left-nav li > a.off img,
.editor .container-editor .main-content .topbar .right-nav li > a.off img {
  -webkit-filter: invert(100%) sepia(0%) saturate(6727%) hue-rotate(195deg) brightness(89%) contrast(93%);
          filter: invert(100%) sepia(0%) saturate(6727%) hue-rotate(195deg) brightness(89%) contrast(93%);
}

.editor .container-editor .main-content .topbar .left-nav li > a.off span,
.editor .container-editor .main-content .topbar .right-nav li > a.off span {
  color: #979fa4;
}

.editor .container-editor .main-content .topbar .left-nav li.dropdown a,
.editor .container-editor .main-content .topbar .right-nav li.dropdown a {
  color: #463250;
  font-size: 16px;
  font-weight: 600;
  padding: 0 50px 0 30px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown a {
    padding: 0 45px 0 25px;
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown a {
    padding: 0 40px 0 20px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown a {
    padding: 0 50px 0 20px;
  }

  .editor .container-editor .main-content .topbar .left-nav li.dropdown a span,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown a span {
    display: none;
  }
}

.editor .container-editor .main-content .topbar .left-nav li.dropdown a::after,
.editor .container-editor .main-content .topbar .right-nav li.dropdown a::after {
  font-size: 15px;
  top: 1px;
  left: 5px;
}

.editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu,
.editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu {
  min-width: calc(100% - 1px);
}

.editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu a,
.editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu a {
  font-weight: 400;
  text-align: left;
  padding: 0;
  height: inherit;
  justify-content: flex-start;
  padding: 15px 30px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu a {
    padding: 12px 25px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu a {
    padding: 10px 20px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu a,
  .editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu a {
    padding: 8px 15px;
  }
}

.editor .container-editor .main-content .topbar .left-nav li.dropdown .dropdown-menu a:after,
.editor .container-editor .main-content .topbar .right-nav li.dropdown .dropdown-menu a:after {
  display: none;
}

.editor .container-editor .main-content .topbar .left-nav li.no_dropdown a,
.editor .container-editor .main-content .topbar .right-nav li.no_dropdown a {
  padding: 0 30px;
}

.editor .container-editor .main-content .topbar .left-nav li.no_dropdown a::after,
.editor .container-editor .main-content .topbar .right-nav li.no_dropdown a::after {
  content: "";
}

.editor .container-editor .main-content .topbar .right-nav li:first-child > a {
  border-left: 1px solid #f2f3f4;
}

.editor .container-editor .main-content .topbar .right-nav li:last-child > a {
  border-right: none;
}

.editor .container-editor .main-content .topbar .left-nav .nav-sides {
  display: flex;
}

.editor .container-editor .main-content .topbar .left-nav li:first-child > a {
  border-left: none;
}

.editor .container-editor .main-content #workspace {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 25px 115px 75px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace {
    padding: 25px 105px 75px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace {
    padding: 25px 95px 75px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content #workspace {
    padding: 25px 25px 75px;
  }
}

.editor .container-editor .main-content #workspace.preview {
  padding: 25px 115px 125px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace.preview {
    padding: 25px 105px 125px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace.preview {
    padding: 25px 95px 125px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content #workspace.preview {
    padding: 25px 25px 125px;
  }
}

.editor .container-editor .main-content #workspace .cart {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #99495c;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  padding: 15px;
  display: flex;
  flex-direction: row;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .cart {
    padding: 12px;
    top: 22px;
    right: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .cart {
    padding: 10px;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .cart {
    padding: 8px;
    top: 18px;
    right: 18px;
  }
}

.editor .container-editor .main-content #workspace .cart.active {
  opacity: 1;
  visibility: visible;
}

.editor .container-editor .main-content #workspace .cart img {
  height: 25px;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .cart img {
    transform: scale(0.95);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .cart img {
    transform: scale(0.9);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .cart img {
    transform: scale(0.85);
  }
}

.editor .container-editor .main-content #workspace .cart:hover {
  background: #d18379;
}

.editor .container-editor .main-content #workspace .dossier {
  position: absolute;
  bottom: 25px;
  z-index: 99;
}

.editor .container-editor .main-content #workspace .dossier a {
  cursor: pointer;
}

.editor .container-editor .main-content #workspace .dossier a img {
  position: relative;
  width: 16px;
  margin-left: 10px;
  top: -2px;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
}

.editor .container-editor .main-content #workspace .nav-right,
.editor .container-editor .main-content #workspace .nav-left {
  position: absolute;
  bottom: calc(50% - 36px);
  z-index: 99;
  background: #dee2e3;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .nav-right,
  .editor .container-editor .main-content #workspace .nav-left {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .nav-right,
  .editor .container-editor .main-content #workspace .nav-left {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .nav-right,
  .editor .container-editor .main-content #workspace .nav-left {
    width: 52px;
    height: 52px;
  }
}

.editor .container-editor .main-content #workspace .nav-right img,
.editor .container-editor .main-content #workspace .nav-left img {
  width: 15px;
  cursor: pointer;
  position: relative;
  -webkit-filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(264deg) brightness(101%) contrast(101%);
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .nav-right img,
  .editor .container-editor .main-content #workspace .nav-left img {
    transform: scale(0.95);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .nav-right img,
  .editor .container-editor .main-content #workspace .nav-left img {
    transform: scale(0.9);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .nav-right img,
  .editor .container-editor .main-content #workspace .nav-left img {
    transform: scale(0.85);
  }
}

.editor .container-editor .main-content #workspace .nav-right:hover,
.editor .container-editor .main-content #workspace .nav-left:hover {
  background: #463250;
}

.editor .container-editor .main-content #workspace .nav-right.off,
.editor .container-editor .main-content #workspace .nav-left.off {
  cursor: not-allowed;
  background: #eceeef;
}

.editor .container-editor .main-content #workspace .nav-right.off:hover,
.editor .container-editor .main-content #workspace .nav-left.off:hover {
  background: #eceeef;
}

.editor .container-editor .main-content #workspace .nav-right.off img,
.editor .container-editor .main-content #workspace .nav-left.off img {
  cursor: not-allowed;
}

.editor .container-editor .main-content #workspace .nav-right.cta,
.editor .container-editor .main-content #workspace .nav-left.cta {
  background: #70c1ab;
}

.editor .container-editor .main-content #workspace .nav-right.cta:hover,
.editor .container-editor .main-content #workspace .nav-left.cta:hover {
  background: #5eb9a1;
}

.editor .container-editor .main-content #workspace .nav-right.cta img,
.editor .container-editor .main-content #workspace .nav-left.cta img {
  width: 25px;
  right: 0px;
}

.editor .container-editor .main-content #workspace .nav-left {
  left: 25px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .nav-left {
    left: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .nav-left {
    left: 20px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content #workspace .nav-left {
    left: 96px;
    bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .nav-left {
    left: 86px;
    bottom: 18px;
  }
}

.editor .container-editor .main-content #workspace .nav-left img {
  right: 2px;
}

.editor .container-editor .main-content #workspace .nav-right {
  right: 25px;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content #workspace .nav-right {
    right: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content #workspace .nav-right {
    right: 20px;
  }
}

@media (max-width: 1300px) {
  .editor .container-editor .main-content #workspace .nav-right {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content #workspace .nav-right {
    right: 18px;
    bottom: 18px;
  }
}

.editor .container-editor .main-content #workspace .nav-right img {
  left: 2px;
}

.editor .container-editor .main-content #workspace #canvas-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.editor .container-editor .main-content #workspace #canvas-container .canvas-container {
  transition: width 0.3s ease-out, height 0.3s ease-out;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.editor .container-editor .main-content #workspace #canvas-container .canvas-container .lower-canvas,
.editor .container-editor .main-content #workspace #canvas-container .canvas-container .upper-canvas {
  transition: width 0.3s ease-out, height 0.3s ease-out;
}

.editor .container-editor .main-content #workspace #canvas-container .canvas-container::before {
  content: "";
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  position: absolute;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.editor .container-editor .main-content #workspace #canvas-container.double-portrait-front .canvas-container::before {
  width: 90%;
  height: 50%;
  left: 0px;
  top: 0px;
  transform-origin: top left;
  transform: skewy(-5deg);
  background: #e6e9ea;
}

.editor .container-editor .main-content #workspace #canvas-container.double-portrait-inside-left .canvas-container::before {
  width: 70%;
  height: 100%;
  right: calc(0px - 70%);
  top: 0px;
  transform-origin: center left;
  transform: matrix3d(1, 0, 0, -0.0003, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  border-left: 5px double #f7f7f9;
}

.editor .container-editor .main-content #workspace #canvas-container.double-portrait-inside-right .canvas-container::before {
  width: 70%;
  height: 100%;
  left: calc(0px - 70%);
  top: 0px;
  transform-origin: center right;
  transform: matrix3d(1, 0, 0, 0.0003, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  border-right: 5px double #f7f7f9;
}

.editor .container-editor .main-content #workspace #canvas-container.double-portrait-back .canvas-container::before {
  width: 90%;
  height: 50%;
  right: 0px;
  top: 0px;
  transform-origin: top right;
  transform: skewy(5deg);
  background: #e6e9ea;
}

.editor .container-editor .main-content #workspace #canvas-container.double-landscape-front .canvas-container::before {
  width: 50%;
  height: 90%;
  right: 0px;
  top: 0px;
  transform-origin: top right;
  transform: skewx(5deg);
  background: #e6e9ea;
}

.editor .container-editor .main-content #workspace #canvas-container.double-landscape-inside-bottom .canvas-container::before {
  width: 100%;
  height: 70%;
  top: calc(0px - 70%);
  left: 0px;
  transform-origin: bottom center;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0.0003, 0, 0, 1, 0, 0, 0, 0, 1);
  border-bottom: 5px double #f7f7f9;
}

.editor .container-editor .main-content #workspace #canvas-container.double-landscape-inside-top .canvas-container::before {
  width: 100%;
  height: 70%;
  bottom: calc(0px - 70%);
  left: 0px;
  transform-origin: top center;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0003, 0, 0, 1, 0, 0, 0, 0, 1);
  border-top: 5px double #f7f7f9;
}

.editor .container-editor .main-content #workspace #canvas-container.double-landscape-back .canvas-container::before {
  width: 50%;
  height: 90%;
  left: 0px;
  top: 0px;
  transform-origin: top left;
  transform: skewx(-5deg);
  background: #e6e9ea;
}

.editor .container-editor .main-content #workspace #canvas-container.preview .canvas-container::before {
  display: none;
}

.editor .container-editor .main-content #workspace #canvas-container .preview-navigation {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}

.editor .container-editor .main-content #workspace #canvas-container .preview-navigation .preview-nav {
  margin: 0 5px;
  cursor: pointer;
}

.editor .container-editor .main-content #workspace #canvas-container .preview-navigation .preview-nav .circle {
  background: #dee2e3;
  display: flex;
  border-radius: 50px;
  width: 15px;
  height: 15px;
  transition: 0.2s background ease-in-out;
}

.editor .container-editor .main-content #workspace #canvas-container .preview-navigation .preview-nav:hover .circle {
  background: #a7b0b5;
}

.editor .container-editor .main-content #workspace #canvas-container .preview-navigation .preview-nav.active .circle {
  background: #c2c9cc;
}

.editor .container-editor .main-content .tool-block {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  justify-content: center;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .tool-block {
    bottom: 22px;
    left: 22px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .tool-block {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content .tool-block {
    bottom: 18px;
    left: 18px;
  }
}

.editor .container-editor .main-content .tool-block .tools {
  background: #fff;
  padding: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  z-index: 99;
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .tool-block .tools {
    padding: 12px;
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .tool-block .tools {
    padding: 10px;
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content .tool-block .tools {
    padding: 8px;
  }
}

.editor .container-editor .main-content .tool-block .tools a {
  cursor: pointer;
  padding: 0 8px;
}

.editor .container-editor .main-content .tool-block .tools a:first-child {
  padding-left: 0;
}

.editor .container-editor .main-content .tool-block .tools a:last-child {
  padding-right: 0;
}

.editor .container-editor .main-content .tool-block .tools a img {
  height: 36px;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
}

@media (max-width: 1599px) {
  .editor .container-editor .main-content .tool-block .tools a img {
    transform: scale(0.95);
  }
}

@media (max-width: 1399px) {
  .editor .container-editor .main-content .tool-block .tools a img {
    transform: scale(0.9);
  }
}

@media (max-width: 1199px) {
  .editor .container-editor .main-content .tool-block .tools a img {
    transform: scale(0.85);
  }
}

.editor .container-editor .main-content .tool-block .tools a:hover img {
  transition: all 0.2s ease-in-out;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
}

.editor .container-editor .main-content .pdfpreview {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.editor .container-editor .main-content .pdfpreview a {
  background: #ff5b77;
}

.editor .container-editor .main-content .pdfpreview a:hover {
  background: #463250;
}

.editor .modal.edit-show {
  display: block !important;
  opacity: 1 !important;
}

.editor .modal.edit-show .modal-dialog {
  transform: translate(0, 0%);
}

.editor .modal .modal-dialog.modal-crop {
  max-width: 900px;
}

.editor .modal .modal-dialog.modal-dossier,
.editor .modal .modal-dialog.modal-save {
  max-width: 500px;
}

.editor .modal .modal-dialog.modal-dossier .m-radio-inline,
.editor .modal .modal-dialog.modal-save .m-radio-inline {
  margin-top: 0;
}

.editor .modal .modal-dialog.modal-dossier .form-control[readonly],
.editor .modal .modal-dialog.modal-save .form-control[readonly] {
  background: #f4f5f6;
  color: #979fa4;
  border-color: #dee2e3;
}

.editor .modal .modal-dialog.modal-dossier .form-control[readonly]:focus,
.editor .modal .modal-dialog.modal-save .form-control[readonly]:focus {
  border-color: #dee2e3;
}

.editor .modal .modal-dialog.modal-login {
  max-width: 400px;
}

.editor .modal .modal-dialog.modal-reset {
  max-width: 550px;
}

.editor .modal .modal-dialog img {
  height: 100%;
  max-height: calc(100vh - 400px);
  width: 100%;
}

.editor .modal .cropper-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.editor .modal .cropper-buttons label {
  margin: 0;
}

.editor .modal .cropper-buttons img {
  cursor: pointer;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
  height: 25px;
  width: 25px;
  margin-left: 20px;
}

body.page-error .error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  padding: 0px 100px;
  align-self: center;
}

@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: 170px;
  text-align: center;
  font-weight: 400;
  color: #d18379;
  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: 36px;
  font-weight: 400;
  text-align: center;
  color: #463250;
  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;
  }
}

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.page-error .collections {
  margin-top: 60px;
}

body.auth .content-wrapper {
  width: 400px;
  padding: 0 24px;
  align-self: center;
}

@media (max-width: 575px) {
  body.auth .content-wrapper {
    padding: 0 20px;
  }
}

@media screen and (max-width: 400px) {
  body.auth .content-wrapper {
    padding: 0 15px;
  }
}

body.auth .content-wrapper.larger {
  width: 500px;
}

@media (max-width: 575px) {
  body.auth .content-wrapper.larger {
    width: 100%;
  }
}

@media (max-width: 575px) {
  body.auth .content-wrapper {
    width: 100%;
  }
}

body.auth .content-wrapper h1 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  color: #463250;
}

@media (max-width: 767px) {
  body.auth .content-wrapper h1 {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  body.auth .content-wrapper h1 {
    margin-bottom: 20px;
  }
}

body.auth .content-wrapper .ww-forgotten {
  font-size: 16px;
}

body.shop .shop-wrapper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

body.shop .shop-wrapper .accordion {
  width: calc(28% - 30px);
  border-top: none;
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .accordion {
    width: calc(25% - 20px);
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .accordion {
    width: 100%;
  }
}

body.shop .shop-wrapper .accordion .head {
  display: none;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .accordion .head {
    border: 1px solid #eceeef;
    display: flex;
    margin-bottom: 5px;
  }
}

body.shop .shop-wrapper .accordion .head .icon-text .icon {
  color: #d18379;
}

body.shop .shop-wrapper .accordion .head .icon-text .text {
  line-height: 1.6rem;
  font-size: 17px;
  text-decoration: none !important;
  font-weight: normal;
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .head .accordion-plus-min {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .head .accordion-plus-min::before {
    width: 14px;
    bottom: 6px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .accordion .head .accordion-plus-min::after {
    width: 14px;
    bottom: 6px;
  }
}

body.shop .shop-wrapper .accordion .head:hover {
  background: #fff;
  color: #636c72;
  border: 1px solid #eceeef;
}

body.shop .shop-wrapper .accordion .head:hover .accordion-plus-min::before {
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .head:hover .accordion-plus-min::after {
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .head:not(.collapsed) {
  background: #fff !important;
  color: #636c72 !important;
  border: 1px solid #eceeef !important;
}

body.shop .shop-wrapper .accordion .head:not(.collapsed) .accordion-plus-min {
  transform: rotate(0deg) !important;
}

body.shop .shop-wrapper .accordion .head:not(.collapsed) .accordion-plus-min::before {
  width: 0;
  border-color: #979fa4;
}

body.shop .shop-wrapper .accordion .head: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%;
  border-right: 1px solid #eceeef;
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .sidebar {
    border-right: 0;
  }
}

body.shop .shop-wrapper .sidebar .header_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  background: #fafafb;
  color: #463250;
  font-weight: 600;
  margin-top: 15px;
}

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 #99495c;
  color: #463250;
  text-decoration: none !important;
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text {
  display: inline-flex;
  padding: 3px 0px;
  align-items: center;
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text .icon {
  position: absolute;
  font-size: 18px;
}

body.shop .shop-wrapper .sidebar .menu-item .icon-text .text {
  line-height: 1.6rem;
  font-size: 17px;
  text-decoration: none !important;
}

body.shop .shop-wrapper .sidebar .menu-item .arrow {
  opacity: 0;
  visibility: hidden;
  position: relative;
  left: 0px;
  width: 8px;
  transition: left 100ms linear;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

body.shop .shop-wrapper .sidebar .menu-item:hover {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border-left: solid 5px #463250;
}

body.shop .shop-wrapper .sidebar .menu-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  left: 5px;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

body.shop .shop-wrapper .sidebar .menu-item.current {
  background: rgba(209, 131, 121, 0.05);
  color: #ca7166;
  border-left: solid 5px #d18379;
}

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;
  -webkit-filter: invert(71%) sepia(42%) saturate(5293%) hue-rotate(321deg) brightness(93%) contrast(68%);
          filter: invert(71%) sepia(42%) saturate(5293%) hue-rotate(321deg) brightness(93%) contrast(68%);
}

body.shop .shop-wrapper .sidebar .menu-item.delete:hover {
  background: rgba(234, 79, 110, 0.05);
  color: #e7385b;
  border-left: solid 5px #ea4f6e;
}

body.shop .shop-wrapper .sidebar .menu-item.delete:hover .arrow {
  -webkit-filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
          filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
}

body.shop .shop-wrapper .products {
  width: calc(72% - 30px);
}

@media (max-width: 1199px) {
  body.shop .shop-wrapper .products {
    width: calc(75% - 20px);
  }
}

@media (max-width: 991px) {
  body.shop .shop-wrapper .products {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  body.shop .shop-wrapper .products {
    margin-top: 15px;
  }
}

@media screen and (max-width: 400px) {
  body.shop .shop-wrapper .products {
    margin-top: 10px;
  }
}

body.product .overview {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.product .overview {
    flex-wrap: wrap;
  }
}

body.product .overview .info {
  width: calc(50% - 30px);
}

@media (max-width: 991px) {
  body.product .overview .info {
    width: 100%;
  }
}

body.product .overview .info .btn,
body.product .overview .info .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.product .overview .info .introjs-button {
  margin-top: 15px;
}

body.product .overview .info hr {
  margin: 60px 0;
}

@media (max-width: 1399px) {
  body.product .overview .info hr {
    margin: 50px 0;
  }
}

@media (max-width: 1199px) {
  body.product .overview .info hr {
    margin: 40px 0;
  }
}

@media (max-width: 991px) {
  body.product .overview .info hr {
    margin: 25px 0;
  }
}

@media (max-width: 767px) {
  body.product .overview .info hr {
    margin: 20px 0;
  }
}

@media (max-width: 575px) {
  body.product .overview .info hr {
    margin: 15px 0;
  }
}

body.product .overview .info .specs .title {
  font-size: 22px;
  font-weight: 500;
}

body.product .overview .info .specs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

body.product .overview .info .specs ul li {
  display: flex;
  margin: 3px 0;
}

body.product .overview .info .specs ul li span:first-child {
  width: 100px;
  font-weight: 600;
}

body.product .overview .info .specs ul li span a {
  text-decoration: underline;
  color: #463250;
  font-weight: 500;
}

body.product .overview .templates,
body.product .overview .images {
  width: calc(50% - 30px);
  margin-top: 0;
}

@media (max-width: 991px) {
  body.product .overview .templates,
  body.product .overview .images {
    width: 100%;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  body.product .overview .templates,
  body.product .overview .images {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  body.product .overview .templates,
  body.product .overview .images {
    margin-top: 15px;
  }
}

body.product .images {
  margin-top: 60px;
}

@media (max-width: 1199px) {
  body.product .images {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  body.product .images {
    margin-top: 35px;
  }
}

@media (max-width: 767px) {
  body.product .images {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  body.product .images {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  body.product .images {
    display: none;
  }
}

@media (max-width: 991px) {
  body.product .images.singular {
    max-width: 500px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  body.product .images.singular {
    display: block;
  }
}

body.product .images .gallery {
  position: relative;
}

body.product .images .gallery .owl-nav {
  margin: 0;
}

body.product .images .gallery .owl-prev,
body.product .images .gallery .owl-next {
  position: absolute;
  top: calc(50% - 17px);
  width: 40px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

body.product .images .gallery .owl-prev img,
body.product .images .gallery .owl-next img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(135deg) brightness(107%) contrast(103%);
  width: 20px;
  transition: all 0.2s ease-in-out;
}

body.product .images .gallery .owl-prev img:hover,
body.product .images .gallery .owl-next img:hover {
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

body.product .images .gallery .owl-prev {
  left: 20px;
}

body.product .images .gallery .owl-next {
  right: 20px;
}

body.product .images .gallery:hover .owl-prev,
body.product .images .gallery:hover .owl-next {
  background: none;
  opacity: 1;
}

@media (max-width: 575px) {
  body.product .templates.show {
    display: block;
  }
}

body.product .templates.show .section_title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 400;
  color: #463250;
}

@media (max-width: 575px) {
  body.product .templates.show .section_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

body.product .collections {
  background: #f7f7f9;
  padding: 60px 0 35px;
}

@media (max-width: 1399px) {
  body.product .collections {
    padding: 55px 0 30px;
  }
}

@media (max-width: 1199px) {
  body.product .collections {
    padding: 50px 0 25px;
  }
}

@media (max-width: 991px) {
  body.product .collections {
    padding: 45px 0 20px;
  }
}

@media (max-width: 767px) {
  body.product .collections {
    padding: 40px 0px 15px;
  }
}

@media (max-width: 575px) {
  body.product .collections {
    padding: 35px 0px 10px;
  }
}

body.product .collections .section_title {
  color: #99495c;
}

@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;
  align-self: center;
}

@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: 36px;
  font-weight: 400;
  text-align: center;
  color: #463250;
  margin: 0 0 10px;
}

@media (max-width: 767px) {
  body.cart.empty .cart-wrapper h1 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  body.cart.empty .cart-wrapper h1 {
    font-size: 26px;
  }
}

body.cart.empty .cart-wrapper p {
  font-size: 18px;
  text-align: center;
}

body.cart.empty .collections {
  margin-top: 60px;
}

body.cart.not-empty .cart-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 20px;
}

@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);
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199px) {
  body.cart.not-empty .cart-wrapper .cart-items {
    width: calc(60% - 25px);
  }
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items {
    width: 100%;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .steps {
  width: 100%;
  margin-bottom: 15px;
}

body.cart.not-empty .cart-wrapper .cart-items h1 {
  padding-top: 30px;
  margin-bottom: 40px;
  color: #463250;
  font-weight: 400;
  font-size: 28px;
}

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

@media (max-width: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items h1 {
    font-size: 20px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8ee;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

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: 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%;
  border: 1px solid #e8e8ee;
  padding: 3px;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info {
  width: 55%;
}

@media (max-width: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info {
    width: 75%;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
  display: block;
  font-size: 18px;
  color: #463250;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 {
    font-size: 15px;
  }
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 a {
  color: #463250;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info h3 a:hover {
  color: #2b1e31;
}

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: 600;
  width: 35%;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div .value a {
  color: #d18379;
  text-decoration: underline;
}

body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div .value a:hover,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div .value a:active,
body.cart.not-empty .cart-wrapper .cart-items .cart-item .info .specs div .value a:focus {
  text-decoration: underline !important;
}

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: 420px) {
  body.cart.not-empty .cart-wrapper .cart-items .cart-item .pricing {
    width: 25%;
  }
}

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: #ea4f6e;
}

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% - 25px);
  }
}

@media (max-width: 991px) {
  body.cart.not-empty .cart-wrapper .sidebar {
    width: 100%;
  }
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals {
  background: #f7f7f9;
  padding: 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;
  }
}

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 {
  font-weight: 500;
  font-size: 30px;
  color: #463250;
  margin-bottom: 20px;
}

@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 #e8e8ee;
}

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: 700;
  color: #463250;
}

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: #463250;
  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 #cbcbd8;
  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 #cbcbd8;
  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,
body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-button {
  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: 0.5px;
}

body.cart.not-empty .cart-wrapper .sidebar .cart-totals .totals-rows .total-row .remove-discount:hover {
  color: #ea4f6e;
}

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,
body.cart.not-empty .cart-wrapper .sidebar .cart-totals .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.cart.not-empty .cart-wrapper .sidebar .cart-totals .introjs-button {
  margin-top: 20px;
  color: #fff;
}

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% - 25px);
  }
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information {
    width: 100%;
  }
}

body.checkout.post-check .cart-wrapper .information h1 {
  color: #463250;
  font-weight: 400;
  font-size: 28px;
}

@media (max-width: 991px) {
  body.checkout.post-check .cart-wrapper .information h1 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information h1 {
    font-size: 26px;
  }
}

body.checkout.post-check .cart-wrapper .information h2 {
  color: #463250;
  font-weight: 400;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

body.checkout.post-check .cart-wrapper .information form {
  background: #f7f7f9;
  margin-top: 30px;
  padding: 30px;
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information form {
    padding: 20px;
    margin-top: 20px;
  }
}

body.checkout.post-check .cart-wrapper .information form:last-child {
  margin-bottom: 0;
}

body.checkout.post-check .cart-wrapper .information .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  body.checkout.post-check .cart-wrapper .information .grid {
    grid-gap: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  body.checkout.post-check .cart-wrapper .information .grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile {
  background: #f7f7f9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: background 0.2s 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 {
    padding: 20px;
  }
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info .title {
  color: #463250;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 15px;
  transition: color 0.2s ease-in-out-quad;
}

@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: #99495c;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: -10px;
  transition: color 0.2s ease-in-out-quad;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info ul {
  margin: 0;
  padding: 0;
  margin: 1rem 0;
  color: #463250;
  transition: color 0.2s ease-in-out-quad;
}

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

body.checkout.post-check .cart-wrapper .information .grid .tile .info p {
  margin: 1rem 0;
  color: #463250;
  transition: color 0.2s ease-in-out-quad;
}

body.checkout.post-check .cart-wrapper .information .grid .tile .info .link {
  font-weight: 400;
  color: #d18379;
  text-decoration: underline;
  transition: color 0.2s ease-in-out-quad;
}

body.checkout.post-check .cart-wrapper .information .grid .tile:hover {
  background: #f1f1f5;
}

body.checkout.post-check .cart-wrapper .information .grid .tile:hover .link {
  color: #463250;
}

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% - 25px);
  }
}

@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 #e8e8ee;
  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: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header h3 a {
  color: #463250;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header h3 a:hover {
  color: #2b1e31;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing {
  align-self: flex-start;
  width: 30%;
  text-align: right;
  position: relative;
  top: -2px;
}

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;
  position: relative;
  top: 1px;
  color: #a4abb0;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-header .pricing .remove-cart-item:hover {
  color: #ea4f6e;
}

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

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%;
  border: 1px solid #e8e8ee;
  padding: 3px;
}

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: 600;
  width: 35%;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .value {
  width: 65%;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .value a {
  color: #d18379;
  text-decoration: underline;
}

body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .value a:hover,
body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .value a:active,
body.checkout.post-check .cart-wrapper .sidebar #cart-items .cart-item .cart-item-info .specs div .value a:focus {
  text-decoration: underline !important;
}

body.checkout.post-check .cart-wrapper .sidebar .cart-totals {
  background: #f7f7f9;
  padding: 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;
  }
}

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 {
  font-weight: 500;
  font-size: 30px;
  color: #463250;
  margin-bottom: 20px;
}

@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 #e8e8ee;
}

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: 700;
  color: #463250;
}

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: #463250;
  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 #463250;
  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 #463250;
  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,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.checkout.post-check .cart-wrapper .sidebar .cart-totals .totals-rows .total-row.form .m-form .form-group .introjs-button {
  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: #d18379;
}

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,
body.checkout.post-check .cart-wrapper .sidebar .cart-totals .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.checkout.post-check .cart-wrapper .sidebar .cart-totals .introjs-button {
  margin-top: 20px;
  color: #fff;
}

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: #99495c;
  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: #463250;
  text-decoration: underline !important;
}

body.checkout.payment .checkout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 940px;
  padding: 0px 100px;
  align-self: center;
}

@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: #99495c;
  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: 500;
  text-align: center;
  color: #463250;
  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;
  }
}

body.account .account-wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.account .account-wrapper {
    flex-wrap: wrap;
  }
}

body.account .account-wrapper .sidebar {
  width: calc(28% - 30px);
  border-right: 1px solid #eceeef;
}

@media (max-width: 1199px) {
  body.account .account-wrapper .sidebar {
    width: calc(28% - 25px);
  }
}

@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: #463250;
    box-shadow: 0px -10px 20px -15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0px 30px 0px 30px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar {
    padding: 0px 20px 0px 20px;
  }
}

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 #99495c;
  color: #463250;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item {
    padding: 10px;
    border-bottom: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0px !important;
    background: #463250;
    flex: 1;
    justify-content: center;
    height: 50px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar .menu-item.admin {
    display: none;
  }
}

body.account .account-wrapper .sidebar .menu-item:first-child {
  border-top-right-radius: 5px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text {
  display: inline-flex;
  padding: 6px 0px;
  align-items: center;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text {
    padding: 0;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
  position: absolute;
  font-size: 18px;
  display: none;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
    position: relative;
    display: block;
    color: #fff;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .icon {
    font-size: 16px;
  }
}

body.account .account-wrapper .sidebar .menu-item .icon-text .text {
  line-height: 1.6rem;
  font-size: 17px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .icon-text .text {
    display: none;
  }
}

body.account .account-wrapper .sidebar .menu-item .arrow {
  opacity: 0;
  visibility: hidden;
  position: relative;
  left: 0px;
  width: 8px;
  transition: left 200ms linear;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item .arrow {
    display: none;
  }
}

body.account .account-wrapper .sidebar .menu-item:hover {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border-left: solid 5px #463250;
}

body.account .account-wrapper .sidebar .menu-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  left: 5px;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item:hover {
    border-bottom: solid 5px #463250;
  }
}

body.account .account-wrapper .sidebar .menu-item.current {
  background: rgba(209, 131, 121, 0.05);
  color: #ca7166;
  border-left: solid 5px #d18379;
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item.current {
    border-bottom: solid 5px #d18379;
  }
}

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;
  -webkit-filter: invert(71%) sepia(42%) saturate(5293%) hue-rotate(321deg) brightness(93%) contrast(68%);
          filter: invert(71%) sepia(42%) saturate(5293%) hue-rotate(321deg) brightness(93%) contrast(68%);
}

body.account .account-wrapper .sidebar .menu-item.delete:hover {
  background: rgba(234, 79, 110, 0.05);
  color: #e7385b;
  border-left: solid 5px #ea4f6e;
}

body.account .account-wrapper .sidebar .menu-item.delete:hover .arrow {
  -webkit-filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
          filter: invert(44%) sepia(67%) saturate(3407%) hue-rotate(324deg) brightness(106%) contrast(91%);
}

@media (max-width: 991px) {
  body.account .account-wrapper .sidebar .menu-item.delete:hover {
    border-bottom: solid 5px #ea4f6e;
  }
}

body.account .account-wrapper .information {
  width: calc(72% - 30px);
}

@media (max-width: 1199px) {
  body.account .account-wrapper .information {
    width: calc(72% - 25px);
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .information {
    width: 100%;
  }
}

body.account .account-wrapper .information h1 {
  color: #463250;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 20px;
}

body.account .account-wrapper .information h2 {
  color: #463250;
  font-weight: 400;
  font-size: 22px;
  padding-top: 5px;
  margin-bottom: 15px;
}

body.account .account-wrapper .information form {
  background: #f7f7f9;
  margin-top: 30px;
  padding: 30px;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information form {
    padding: 20px;
    margin-top: 20px;
  }
}

body.account .account-wrapper .information .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 30px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .grid {
    grid-gap: 20px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .grid {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
}

body.account .account-wrapper .information .grid .tile {
  background: #f7f7f9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: background 0.2s ease-in-out-quad;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .grid .tile {
    padding: 20px;
  }
}

body.account .account-wrapper .information .grid .tile:first-child.wide {
  grid-column: span 2;
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .grid .tile:first-child.wide {
    grid-column: unset;
  }
}

body.account .account-wrapper .information .grid .tile .info .title {
  color: #463250;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 15px;
  transition: color 0.2s ease-in-out-quad;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .grid .tile .info .title {
    font-size: 20px;
  }
}

body.account .account-wrapper .information .grid .tile .info h3 {
  color: #99495c;
  font-size: 17px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: -10px;
  transition: color 0.2s ease-in-out-quad;
}

body.account .account-wrapper .information .grid .tile .info ul {
  margin: 0;
  padding: 0;
  margin: 1rem 0;
  color: #463250;
  transition: color 0.2s ease-in-out-quad;
}

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

body.account .account-wrapper .information .grid .tile .info .pricing {
  display: flex;
  flex-direction: column;
}

body.account .account-wrapper .information .grid .tile .info .pricing .price-row {
  display: flex;
}

body.account .account-wrapper .information .grid .tile .info .pricing .price-row .qty {
  width: 80px;
}

body.account .account-wrapper .information .grid .tile .info .pricing .price-row .qty.bold {
  font-weight: 600;
}

body.account .account-wrapper .information .grid .tile .info .pricing .price-row .price.bold {
  font-weight: 600;
}

body.account .account-wrapper .information .grid .tile .info .pdf-price {
  margin-top: 10px;
}

body.account .account-wrapper .information .grid .tile .info .pdf-price .name {
  font-weight: 600;
}

body.account .account-wrapper .information .grid .tile .info p {
  margin: 1rem 0;
  color: #463250;
  transition: color 0.2s ease-in-out-quad;
}

body.account .account-wrapper .information .grid .tile .info .link {
  font-weight: 400;
  color: #d18379;
  text-decoration: underline;
  transition: color 0.2s ease-in-out-quad;
}

body.account .account-wrapper .information .grid .tile:hover {
  background: #f1f1f5;
}

body.account .account-wrapper .information .grid .tile:hover .link {
  color: #463250;
}

body.account .account-wrapper .information .delete_account {
  color: #ea4f6e;
  text-decoration: underline;
  font-size: 14px;
  display: block;
  margin-top: 30px;
}

body.account .account-wrapper .information .delete_account:hover {
  color: #e52148;
}

body.account .account-wrapper .information .manual-address {
  margin-top: 30px;
}

body.account .account-wrapper .information .address-result {
  margin-top: 32px;
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .address-result {
    margin-top: 10px;
  }
}

body.account .account-wrapper .information .address-result .alert {
  margin: 0;
}

body.account .account-wrapper .information .dossier-header,
body.account .account-wrapper .information .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .dossier-header,
  body.account .account-wrapper .information .order-header {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
}

body.account .account-wrapper .information .dossier-header .form-group,
body.account .account-wrapper .information .order-header .form-group {
  position: relative;
  width: 100%;
  margin: 0 10px 0 0;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .dossier-header .form-group,
  body.account .account-wrapper .information .order-header .form-group {
    width: 49%;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .dossier-header .form-group,
  body.account .account-wrapper .information .order-header .form-group {
    margin: 5px 0 0 0;
    padding-top: 0 !important;
    width: 100%;
  }
}

body.account .account-wrapper .information .dossier-header .form-group .search,
body.account .account-wrapper .information .order-header .form-group .search {
  position: absolute;
  right: 15px;
  top: 15px;
  height: 20px;
  -webkit-filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
          filter: invert(69%) sepia(9%) saturate(198%) hue-rotate(162deg) brightness(98%) contrast(87%);
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .dossier-header .form-group .search,
  body.account .account-wrapper .information .order-header .form-group .search {
    top: 14px;
  }
}

body.account .account-wrapper .information .dossier-header .form-group .form-control,
body.account .account-wrapper .information .order-header .form-group .form-control {
  padding-right: 45px;
}

body.account .account-wrapper .information .dossier-header .form-group.filter_status,
body.account .account-wrapper .information .order-header .form-group.filter_status {
  padding: 0;
  width: 50%;
  margin-left: 10px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .dossier-header .form-group.filter_status,
  body.account .account-wrapper .information .order-header .form-group.filter_status {
    margin: 0;
  }

  body.account .account-wrapper .information .dossier-header .form-group.filter_status .btn,
  body.account .account-wrapper .information .dossier-header .form-group.filter_status .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .dossier-header .form-group.filter_status .introjs-button,
  body.account .account-wrapper .information .order-header .form-group.filter_status .btn,
  body.account .account-wrapper .information .order-header .form-group.filter_status .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .order-header .form-group.filter_status .introjs-button {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .dossier-header .form-group.filter_status,
  body.account .account-wrapper .information .order-header .form-group.filter_status {
    margin: 5px 0 0 0;
    width: 100%;
  }
}

body.account .account-wrapper .information .dossier-header .form-group.filter_status .form-control,
body.account .account-wrapper .information .order-header .form-group.filter_status .form-control {
  padding-right: 0;
}

body.account .account-wrapper .information .dossier-header .btn,
body.account .account-wrapper .information .dossier-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .dossier-header .introjs-button,
body.account .account-wrapper .information .order-header .btn,
body.account .account-wrapper .information .order-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .order-header .introjs-button {
  padding: 1rem 1.5rem;
}

@media (max-width: 1199px) {
  body.account .account-wrapper .information .dossier-header .btn,
  body.account .account-wrapper .information .dossier-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .dossier-header .introjs-button,
  body.account .account-wrapper .information .order-header .btn,
  body.account .account-wrapper .information .order-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .order-header .introjs-button {
    padding: 0.95rem 1.5rem;
  }
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .dossier-header .btn,
  body.account .account-wrapper .information .dossier-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .dossier-header .introjs-button,
  body.account .account-wrapper .information .order-header .btn,
  body.account .account-wrapper .information .order-header .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .order-header .introjs-button {
    width: 100%;
    margin-top: 5px;
  }
}

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

body.account .account-wrapper .information .intro h1 .m-badge {
  margin-left: 10px;
  border-radius: 0;
  font-size: 13px;
  padding: 3px 8px;
}

body.account .account-wrapper .information .intro .btn,
body.account .account-wrapper .information .intro .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.account .account-wrapper .information .intro .introjs-button {
  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 #e8e8ee;
}

@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 #e8e8ee;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

@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;
  position: relative;
  width: 25%;
  margin-right: 20px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .image {
    margin-right: 15px;
  }
}

@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%;
  border: 1px solid #e8e8ee;
  padding: 3px;
}

body.account .account-wrapper .information .order-items .order-item .info {
  width: 55%;
  flex-grow: 1;
}

@media (max-width: 420px) {
  body.account .account-wrapper .information .order-items .order-item .info {
    width: 75%;
  }
}

body.account .account-wrapper .information .order-items .order-item .info h3 {
  display: block;
  font-size: 18px;
  color: #463250;
  font-weight: 600;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.account .account-wrapper .information .order-items .order-item .info h3 {
    font-size: 15px;
  }
}

body.account .account-wrapper .information .order-items .order-item .info h3 a {
  color: #463250;
}

body.account .account-wrapper .information .order-items .order-item .info h3 a:hover {
  color: #2b1e31;
}

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: 600;
  width: 35%;
}

body.account .account-wrapper .information .order-items .order-item .info .specs div .value a {
  color: #d18379;
  text-decoration: underline;
}

body.account .account-wrapper .information .order-items .order-item .info .specs div .value a:hover,
body.account .account-wrapper .information .order-items .order-item .info .specs div .value a:active,
body.account .account-wrapper .information .order-items .order-item .info .specs div .value a:focus {
  text-decoration: underline !important;
}

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: 420px) {
  body.account .account-wrapper .information .order-items .order-item .pricing {
    width: 25%;
  }
}

body.account .account-wrapper .information .order-items .order-item .pricing span {
  font-size: 18px;
  font-weight: 600;
}

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: #463250;
  font-weight: 500;
  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: 600;
}

body.account .account-wrapper .information .order-details .invoice-shipping-address .shipping-address {
  margin-right: 40px;
}

body.account .account-wrapper .information .order-details .totals {
  background: #f7f7f9;
  padding: 30px;
  transition: margin 0.2s ease-in-out 0s;
  position: relative;
  margin-top: 0;
  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: 600;
}

body.account .account-wrapper .information .order-details .totals .totals-rows .total-row.calculated {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #e8e8ee;
}

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: 700;
  color: #463250;
}

@media (max-width: 991px) {
  body.account #main {
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.account footer {
    display: none;
  }
}

body.upload .templates {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: 1fr 1fr;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
}

body.upload .templates .item {
  border-radius: 5px;
  padding: 15px;
  border: 2px solid #dee2e3;
  background: #fff;
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
}

body.upload .templates .item img {
  width: 25px;
  height: 25px;
}

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(70, 50, 80, 0.05) !important;
  color: #382840 !important;
  border: solid 2px #463250 !important;
}

body.upload .templates .item:hover .text {
  color: #463250;
}

body.upload .guidelines {
  font-size: 15px;
  margin-bottom: 20px;
}

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

body.blog .blog-wrapper > .categories {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

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

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

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: 18px;
  color: #463250;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

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: #99495c;
}

body.blog .blog-wrapper .grid .tile:hover {
  z-index: 1;
  transform: scale(1.05);
}

body.blog .blog-wrapper .grid .tile:hover .name {
  color: #99495c;
}

body.blog .blog-wrapper > .tags {
  margin: 0 auto;
  max-width: 640px;
  margin-top: 100px;
  text-align: center;
  margin-bottom: 50px;
}

body.blog .blog-wrapper > .tags h2 {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #99495c;
  margin-bottom: 20px;
  text-align: center;
}

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

body.blog .page-intro .categories {
  margin-top: 15px;
}

body.blog .page-intro .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;
}

body.blog .page-intro .categories .category:hover {
  color: #382840;
  border-color: #463250;
  background: rgba(70, 50, 80, 0.05);
}

body.blog .page-intro .categories .category.current {
  color: #884152;
  border-color: #99495c;
  background: rgba(153, 73, 92, 0.05);
  font-weight: 500;
}

body.blog .blog-item {
  box-shadow: 0px 20px 20px -30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #f7f7f9;
  padding-bottom: 50px;
}

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

body.blog .blog-item img.featured,
body.blog .blog-item iframe.featured {
  margin: 0px 0 40px;
}

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

body.blog .blog-meta h3 {
  display: inline-block;
  font-size: 14px;
  color: #99495c;
  font-weight: 600;
  margin-bottom: 10px;
}

body.blog .blog-meta .tags {
  margin-top: 0px;
  margin-bottom: 80px;
}

body.blog .blog-share {
  margin-top: 50px;
  text-align: center;
}

body.blog .blog-share h3 {
  display: block;
  font-size: 18px;
  color: #99495c;
  font-weight: 700;
}

body.blog .insta-feed {
  margin-bottom: 100px;
}

body.blog .footer-title {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 700;
  color: #99495c;
  text-align: center;
}

body.text-page .content {
  margin-top: -25px;
}

body.text-page .page-content-left {
  width: calc(70% - 30px);
  margin-right: 30px;
}

@media (max-width: 991px) {
  body.text-page .page-content-left {
    width: 100%;
    margin-right: 0;
  }
}

body.text-page .page-content-left h1 {
  font-size: 28px;
  font-weight: 400;
  color: #463250;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  body.text-page .page-content-left h1 {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  body.text-page .page-content-left h1 {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  body.text-page .page-content-left h1 {
    margin-top: 15px;
  }
}

body.text-page .page-content-left .text-block {
  padding-right: 50px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-left .text-block {
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  body.text-page .page-content-left .text-block {
    padding-right: 0;
  }
}

body.text-page .page-content-left .text-block h1 {
  color: #d18379;
  font-weight: 300;
  text-align: center;
  padding: 50px 0;
}

body.text-page .page-content-left.contact form {
  box-shadow: 0px -5px 20px -10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 50px;
}

body.text-page .page-content-left .faqitems {
  margin-top: 40px;
}

@media (max-width: 991px) {
  body.text-page .page-content-left .faqitems {
    margin-top: 30px;
  }
}

body.text-page .page-content-left .faqitems .faqcategory {
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-left .faqitems .faqcategory {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  body.text-page .page-content-left .faqitems .faqcategory {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  body.text-page .page-content-left .faqitems .faqcategory {
    margin-bottom: 20px;
  }
}

body.text-page .page-content-left .faqitems .faqcategory .category {
  font-size: 22px;
  color: #d18379;
  display: block;
  margin-bottom: 15px;
}

body.text-page .page-content-left .grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-left .grid {
    grid-gap: 25px;
  }
}

@media (max-width: 991px) {
  body.text-page .page-content-left .grid {
    grid-gap: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  body.text-page .page-content-left .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
}

body.text-page .page-content-left .grid .grid-item {
  background: #f7f7f9;
}

body.text-page .page-content-left .grid .grid-item .grid-head {
  background: #e9e1ec;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

body.text-page .page-content-left .grid .grid-item .grid-head img {
  max-width: 100px !important;
  max-height: 100px !important;
  box-shadow: none !important;
}

body.text-page .page-content-left .grid .grid-item .grid-body {
  padding: 30px;
  text-align: left;
}

@media (max-width: 767px) {
  body.text-page .page-content-left .grid .grid-item .grid-body {
    padding: 20px;
  }
}

body.text-page .page-content-left .grid .grid-item .grid-body h2 {
  color: #463250 !important;
  font-weight: 600 !important;
  margin-bottom: 10px;
}

body.text-page .page-content-left .grid .grid-item .grid-body p:last-child {
  margin-bottom: 0;
}

body.text-page .page-content-left .grid .grid-item .grid-body ul li {
  padding-bottom: 15px;
}

body.text-page .page-content-left .grid .grid-item .grid-body ul li:last-child {
  padding-bottom: 0;
}

body.text-page .page-content-left .grid .grid-item .grid-body.p-large {
  padding: 40px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-left .grid .grid-item .grid-body.p-large {
    padding: 35px;
  }
}

@media (max-width: 991px) {
  body.text-page .page-content-left .grid .grid-item .grid-body.p-large {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  body.text-page .page-content-left .grid .grid-item .grid-body.p-large {
    padding: 20px;
  }
}

body.text-page .page-content-left .promo {
  background: #d8958c;
  padding: 20px 35px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-left .promo {
    padding: 20px 25px;
  }
}

body.text-page .page-content-left .promo .promo-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  body.text-page .page-content-left .promo .promo-content {
    flex-wrap: wrap;
  }
}

body.text-page .page-content-left .promo .promo-content h3 {
  font-size: 24px !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin: 0;
  padding-right: 30px;
}

@media (max-width: 575px) {
  body.text-page .page-content-left .promo .promo-content h3 {
    width: 100%;
  }
}

body.text-page .page-content-left .promo .promo-content .btn,
body.text-page .page-content-left .promo .promo-content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.text-page .page-content-left .promo .promo-content .introjs-button {
  text-decoration: none !important;
}

@media (max-width: 767px) {
  body.text-page .page-content-left .promo .promo-content .btn,
  body.text-page .page-content-left .promo .promo-content .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.text-page .page-content-left .promo .promo-content .introjs-button {
    margin-top: 10px;
  }
}

body.text-page .page-content-right {
  width: 30%;
  text-align: left;
}

@media (max-width: 991px) {
  body.text-page .page-content-right {
    width: 100%;
    margin-top: 30px;
  }
}

body.text-page .page-content-right h3 {
  color: #463250 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  margin-bottom: 20px !important;
}

body.text-page .page-content-right .menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 18px 8px;
  border-bottom: solid 1px #eceeef;
  cursor: pointer;
  transition: linear 100ms;
  border-left: solid 0px #99495c;
  color: #463250;
  text-decoration: none !important;
  text-align: left;
}

@media (max-width: 1199px) {
  body.text-page .page-content-right .menu-item {
    padding: 16px 18px 16px 6px;
  }
}

@media (max-width: 991px) {
  body.text-page .page-content-right .menu-item {
    padding: 14px 16px 14px 4px;
  }
}

@media (max-width: 767px) {
  body.text-page .page-content-right .menu-item {
    padding: 12px 14px 12px 4px;
  }
}

body.text-page .page-content-right .menu-item:first-child {
  border-top: solid 1px #eceeef;
}

body.text-page .page-content-right .menu-item .icon-text {
  display: inline-flex;
  padding: 3px 0px;
  align-items: center;
}

body.text-page .page-content-right .menu-item .icon-text .text {
  line-height: 1.6rem;
  font-size: 16px;
  text-decoration: none !important;
  padding-right: 10px;
  position: relative;
  left: 0px;
  transition: left 100ms linear;
}

body.text-page .page-content-right .menu-item .arrow {
  position: relative;
  left: 0px;
  width: 8px;
  transition: left 100ms linear;
  -webkit-filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
          filter: invert(16%) sepia(16%) saturate(1591%) hue-rotate(236deg) brightness(101%) contrast(84%);
}

body.text-page .page-content-right .menu-item:hover {
  background: rgba(70, 50, 80, 0.05);
  color: #382840;
  border-left: solid 5px #463250;
}

body.text-page .page-content-right .menu-item:hover .text {
  left: 5px;
}

body.text-page .page-content-right .menu-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  left: 5px;
  -webkit-filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
          filter: invert(24%) sepia(10%) saturate(2136%) hue-rotate(206deg) brightness(93%) contrast(84%);
}

body.text-page .page-content-right .promo {
  margin-top: 30px;
  background: #463250;
  padding: 35px;
}

@media (max-width: 1199px) {
  body.text-page .page-content-right .promo {
    padding: 25px;
  }
}

body.text-page .page-content-right .promo h3 {
  color: #fff !important;
  font-size: 24px !important;
}

body.text-page .page-content-right .promo .btn,
body.text-page .page-content-right .promo .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons body.text-page .page-content-right .promo .introjs-button {
  text-decoration: none !important;
}

body.text-page .contact-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 40px 0;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  body.text-page .contact-wrapper {
    margin: 30px 0;
  }
}

@media (max-width: 991px) {
  body.text-page .contact-wrapper {
    margin: 20px 0;
  }
}

body.text-page .contact-wrapper > div {
  line-height: 27px;
  margin-right: 45px;
}

@media (max-width: 1199px) {
  body.text-page .contact-wrapper > div {
    margin-right: 45px;
  }
}

@media (max-width: 767px) {
  body.text-page .contact-wrapper > div {
    width: 100%;
    margin: 15px 0 0;
  }

  body.text-page .contact-wrapper > div:first-child {
    margin: 0 !important;
  }
}

body.text-page .contact-wrapper > div:last-child {
  margin-right: 0;
}

body.text-page .contact-wrapper > div strong {
  font-weight: 600;
}

body.text-page .contact-wrapper > div ul {
  list-style-type: none;
  padding: 0 !important;
  margin: 0;
}

body.text-page .contact-wrapper > div ul strong {
  font-weight: 600;
  display: inline-block;
  min-width: 42px;
}

body.text-page .contact-wrapper > div ul a {
  color: #463250;
  text-decoration: none !important;
}

body.text-page .contact-wrapper > div ul a i,
body.text-page .contact-wrapper > div ul a svg {
  display: inline-block;
  min-width: 22px;
  position: relative;
  left: -2px;
}

body.text-page .contact-wrapper > div ul a:hover,
body.text-page .contact-wrapper > div ul a:active,
body.text-page .contact-wrapper > div ul a:focus {
  color: #d18379;
}

body.text-page .initiated {
  font-size: 18px !important;
  color: #463250 !important;
}

body.text-page .initiated strong {
  font-weight: 600;
}

body.text-page .initiated a {
  text-decoration: none !important;
  color: #99495c !important;
}

body.text-page .form {
  margin-top: 60px !important;
  background: #f7f7f9;
  margin-top: 30px;
  padding: 30px;
}

@media (max-width: 1199px) {
  body.text-page .form {
    margin-top: 40px !important;
  }
}

@media (max-width: 991px) {
  body.text-page .form {
    margin-top: 30px !important;
  }
}

body.text-page .form .contact-header {
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #463250 !important;
}

@media (max-width: 575px) {
  body.text-page .form {
    padding: 20px;
    margin-top: 20px;
  }
}

.flex-grow-1 {
  flex-grow: 1 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}

