@charset "UTF-8";



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes swing {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {
  from, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOut {

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

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

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

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

@-webkit-keyframes bounceOutDown {

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

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

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

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

@-webkit-keyframes bounceOutLeft {

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

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

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

@-webkit-keyframes bounceOutRight {

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

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

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

@-webkit-keyframes bounceOutUp {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutDown {

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

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

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

@-webkit-keyframes zoomOutLeft {

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

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

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

@-webkit-keyframes zoomOutRight {

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

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

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

@-webkit-keyframes zoomOutUp {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
/**
 * Owl Carousel v2.3.0
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.html) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-close,
.mfp-arrow,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */ }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
	/*
  	Flaticon icon font: Flaticon
  	Creation date: 04/01/2019 13:45
  	*/


@font-face {
  font-family: "Flaticon";
  src: url("../fonts/flaticon/font/Flaticon.eot");
  src: url("../fonts/flaticon/font/Flaticond41d.eot?#iefix") format("embedded-opentype"),
       url("../fonts/flaticon/font/Flaticon.woff") format("woff"),
       url("../fonts/flaticon/font/Flaticon.ttf") format("truetype"),
       url("../fonts/flaticon/font/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

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

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

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

.flaticon-shopping-bag:before { content: "\f100"; }
.flaticon-support:before { content: "\f101"; }
.flaticon-cashback:before { content: "\f102"; }
.flaticon-free-delivery:before { content: "\f103"; }
.flaticon-heart:before { content: "\f104"; }
.flaticon-visibility:before { content: "\f105"; }
/*!
 * Bootstrap v4.2.1 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

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

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

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

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

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

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

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

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

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


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


ul ul {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

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

sub {
  bottom: -.25em; }

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent; }
  a:hover {
    color: #0056b3;
    text-decoration: underline; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none; }
  a:not([href]):not([tabindex]):focus {
    outline: 0; }


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

figure {
  margin: 0 0 1rem; }

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

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

table {
  border-collapse: collapse; }

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

th {
  text-align: inherit; }

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

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

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

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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


input[type="time"] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

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

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

progress {
  vertical-align: baseline; }

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

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

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

output {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none !important; }

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

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

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

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

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

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

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

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

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

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

.figure {
  display: inline-block; }

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word; }
  a > code {
    color: inherit; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1200px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

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

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

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

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

@media (min-width: 576px) {
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; } }

@media (min-width: 992px) {
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; } }

@media (min-width: 1200px) {
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; } }

.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent; }
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6; }
  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6; }
  .table tbody + tbody {
    border-top: 2px solid #dee2e6; }
  .table .table {
    background-color: #fff; }

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .form-control {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .form-control::-ms-expand {
    background-color: transparent;
    border: 0; }
  .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control::placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1; }

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

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

textarea.form-control {
  height: auto; }

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

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
  @media screen and (prefers-reduced-motion: reduce) {
    .btn {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .btn:hover {
    color: #212529;
    text-decoration: none; }
  .btn:focus, .btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  .btn.disabled, .btn:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled) {
    cursor: pointer; }

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

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }
  .btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc; }
  .btn-primary:focus, .btn-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
  .btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }
  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
      -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
      box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }

.btn-link {
  font-weight: 400;
  color: #007bff; }
  .btn-link:hover {
    color: #0056b3;
    text-decoration: underline; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropright .dropdown-toggle::after {
  vertical-align: 0; }

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

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropleft .dropdown-toggle::after {
  display: none; }

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

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

.dropleft .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:first-child {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px); }
  .dropdown-item:last-child {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px); }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #fff;
    text-decoration: none;
    background-color: #07060b; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; }

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

.btn-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
    .btn-group > .btn:hover {
      z-index: 1; }
    .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
      z-index: 1; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

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

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .input-group > .form-control + .form-control {
      margin-left: -1px; }
  .input-group > .form-control:focus {
    z-index: 3; }
  .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .nav-link:hover, .nav-link:focus {
    text-decoration: none; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-pills .nav-link {
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff; }

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

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

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar > .container,
  .navbar > .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 25px;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }
  .navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer; }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

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

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  .close:hover {
    color: #000;
    text-decoration: none; }
  .close:not(:disabled):not(.disabled) {
    cursor: pointer; }
    .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
      opacity: .75; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

a.close.disabled {
  pointer-events: none; }

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0; }
  .toast:not(:last-child) {
    margin-bottom: 0.75rem; }
  .toast.showing {
    opacity: 1; }
  .toast.show {
    display: block;
    opacity: 1; }
  .toast.hide {
    display: none; }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

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

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

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

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    /* max-width: 500px; */
    margin: 1.75rem auto; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

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

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

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

.carousel {
  position: relative; }

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

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

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

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    -webkit-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease; }
    @media screen and (prefers-reduced-motion: reduce) {
      .carousel-indicators li {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  50% {
    opacity: 1; } }

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

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

@media (min-width: 768px) {
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

@media (min-width: 992px) {
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

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

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

@media (min-width: 768px) {
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; } }

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

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

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

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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


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


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

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

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


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

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

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


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

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


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


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

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

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


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

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


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

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

@media (min-width: 768px) {
  .ml-md-4 {
    margin-left: 1.5rem !important; }
  .pl-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }

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

  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pl-md-5 {
    padding-left: 3rem !important; } }

@media (min-width: 992px) {
  .mr-lg-1 {
    margin-right: 0.25rem !important; }
  .pl-lg-5 {
    padding-left: 3rem !important; } }

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

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

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

.visible {
  visibility: visible !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; } }

body {
  font-family: unset;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: gray; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #01567a; }
  a:hover, a:focus {
    text-decoration: none;
    color: #01567a;
    outline: none !important; }

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  line-height: 1.5;
  color: black;
  font-weight: 400; }

.wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  background: #07060b; }
  .wrap .phone {
    z-index: 1;
    font-weight: 200; }
    .wrap .phone span {
      color: rgba(255, 255, 255, 0.6); }
    .wrap .phone a {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px; }
  @media (max-width: 767.98px) {
    .wrap .reg {
      width: 50%;
      text-align: right; } }
  .wrap .reg p {
    font-weight: 200; }
    .wrap .reg p a {
      color: rgba(255, 255, 255, 0.8);
      text-transform: uppercase;
      font-size: 13px; }

.social-media {
  display: inline-block; }
  @media (max-width: 767.98px) {
    .social-media {
      width: 50%; } }
  .social-media p {
    display: block;
    width: 100%; }
    .social-media p a {
      height: 30px;
      margin-right: 10px; }
      .social-media p a span {
        font-size: 12px;
        color: #fff; }
      .social-media p a:hover {
        background: #01567a;
        border-color: #01567a; }
        .social-media p a:hover span {
          color: #fff; }

.ftco-navbar-light {
  background: white !important;
  position: absolute;
  top: 0px;
  /* top: 30px; */
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px 0; }
  @media (max-width: 991.98px) {
    .ftco-navbar-light {
      background: #f3f3f3 !important;
      position: relative;
      top: 0;
      padding: 10px 15px; }
    #mSlider {
      display: block!important;
    }
    #dSlider {
      display: none!important;
    }
    }
  .ftco-navbar-light .navbar-brand {
    color: rgba(255, 255, 255, 0.8); }
    .ftco-navbar-light .navbar-brand span {
      color: rgba(255, 255, 255, 0.5); }
    .ftco-navbar-light .navbar-brand:hover {
      color: #fff; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light .navbar-brand {
        color: #fff; } }
  .ftco-navbar-light .btn-cart {
    display: inline-block;
    position: relative; }
    .ftco-navbar-light .btn-cart span {
      font-size: 20px; }
    .ftco-navbar-light .btn-cart div {
      position: absolute;
      top: 0;
      right: 0px;
      height: 18px;
      line-height: 1;
      border-radius: 50%;
      padding: 0 5px;
      background: rgba(255, 255, 255, 0.2); }
      .ftco-navbar-light .btn-cart div small {
        color: rgba(255, 255, 255, 0.5); }
  .ftco-navbar-light .btn-group .dropdown-toggle::after {
    display: none; }
  .ftco-navbar-light .btn-group .dropdown-menu {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    padding: 0;
    min-width: 20rem;
    margin-top: 20px; }
    @media (max-width: 767.98px) {
      .ftco-navbar-light .btn-group .dropdown-menu {
        right: -70px !important; } }
    .ftco-navbar-light .btn-group .dropdown-menu:after, .ftco-navbar-light .btn-group .dropdown-menu:before {
      content: ' ';
      display: block;
      border-style: solid;
      border-width: 0 .5em .6em .5em;
      border-color: transparent;
      position: absolute;
      right: 12px;
      z-index: -1; }
      @media (max-width: 767.98px) {
        .ftco-navbar-light .btn-group .dropdown-menu:after, .ftco-navbar-light .btn-group .dropdown-menu:before {
          right: 70px; } }
    .ftco-navbar-light .btn-group .dropdown-menu:before {
      top: -.6em;
      border-bottom-color: rgba(0, 0, 0, 0.02); }
    .ftco-navbar-light .btn-group .dropdown-menu:after {
      top: -.5em;
      border-bottom-color: #fff; }
    .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item {
      font-size: 16px;
      color: rgba(0, 0, 0, 0.7);
      font-weight: 400;
      padding: 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      white-space: normal; }
      .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item:last-child {
        border: none; }
      .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item .img {
        width: 60px;
        height: 60px;
        position: relative; }
      .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item .text {
        width: calc(100% - 60px); }
        .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item .text h4 {
          margin-bottom: 0;
          font-size: 18px;
          font-weight: 500;
          color: rgba(0, 0, 0, 0.8); }
        .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item .text .quantity {
          color: rgba(0, 0, 0, 0.4); }
      .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item.btn-link {
        color: #01567a;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 500; }
      .ftco-navbar-light .btn-group .dropdown-menu .dropdown-item:hover {
        background: transparent; }
  @media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav {
      padding-bottom: 10px; } }
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 15px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 8px 10px;
    color: black;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 1px;
    opacity: 1 !important; }
    .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
      color: #01567a; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        color: #fff; } }
  .ftco-navbar-light .navbar-nav > .nav-item .dropdown-menu {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    max-height: 600px;
    overflow-y: auto;
  }
  .ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: #01567a; }
  @media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav > .nav-item.active > a {
      color: #01567a; } }
  .ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: unset; }
    .ftco-navbar-light .navbar-toggler:hover, .ftco-navbar-light .navbar-toggler:focus {
      text-decoration: none;
      color: #01567a;
      outline: none !important; }
  .ftco-navbar-light.scrolled {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    margin-top: -130px;
    background: #f3f3f3 !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px; }
    .ftco-navbar-light.scrolled .btn-cart div {
      position: absolute;
      top: 0;
      right: -5px;
      height: 18px;
      line-height: 1;
      border-radius: 50%;
      padding: 0 5px;
      background: rgba(0, 0, 0, 0.1); }
      .ftco-navbar-light.scrolled .btn-cart div small {
        color: #01567a; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light.scrolled .nav-item > .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important; } }
    .ftco-navbar-light.scrolled .nav-item.active > a {
      color: #01567a !important; }
    @media (max-width: 991.98px) {
      .ftco-navbar-light.scrolled .navbar-nav {
        background: none;
        border-radius: 0px;
        padding-left: 0rem !important;
        padding-right: 0rem !important; } }
    .ftco-navbar-light.scrolled .navbar-toggler {
      border: none;
      color: rgba(0, 0, 0, 0.5) !important;
      border-color: rgba(0, 0, 0, 0.5) !important;
      cursor: pointer;
      padding-right: 0;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: .1em; }
    .ftco-navbar-light.scrolled .nav-link {
      padding-top: 0.9rem !important;
      padding-bottom: 0.9rem !important;
      color: #000000 !important; }
      .ftco-navbar-light.scrolled .nav-link.active {
        color: #01567a !important; }
    .ftco-navbar-light.scrolled.awake {
      margin-top: 0px;
      -webkit-transition: .3s all ease-out;
      -o-transition: .3s all ease-out;
      transition: .3s all ease-out; }
    .ftco-navbar-light.scrolled.sleep {
      -webkit-transition: .3s all ease-out;
      -o-transition: .3s all ease-out;
      transition: .3s all ease-out; }
    .ftco-navbar-light.scrolled .navbar-brand {
      color: #000000; }
      .ftco-navbar-light.scrolled .navbar-brand span {
        color: #01567a; }

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  position: relative;
  text-transform: uppercase; }

.hero-wrap {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  z-index: 0;
  /* height: 450px; */
  height: 405px;
 }
  @media (max-width: 1199.98px) {
    .hero-wrap {
      background-position: center center !important; } }
  .hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .4;
    background: #000000; }
  .hero-wrap .slider-text {
    height: 750px;
    position: relative; }
    .hero-wrap .slider-text .text {
      padding: 30px 0;
      -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
      transform: rotate(-4deg); }
    .hero-wrap .slider-text h1 {
      font-size: 80px;
      color: #fff;
      line-height: 1.1;
      font-weight: 700;
      font-style: italic;
      color: transparent;
      -webkit-text-fill-color: transparent;
      /* Will override color (regardless of order) */
      -webkit-text-stroke-width: .5px;
      -webkit-text-stroke-color: #fff; }
      .hero-wrap .slider-text h1 span {
        color: #01567a;
        -webkit-text-fill-color: #fff;
        -webkit-text-stroke-width: 0px; }
      @media (max-width: 991.98px) {
        .hero-wrap .slider-text h1 {
          font-size: 40px; } }
    .hero-wrap .slider-text p {
      font-weight: 400;
      font-size: 20px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.9); }
  .hero-wrap.hero-wrap-2 {
    height: 400px !important;
    position: relative; }
    .hero-wrap.hero-wrap-2 .overlay {
      width: 100%;
      height: 400px;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      opacity: .3; }
    .hero-wrap.hero-wrap-2 .slider-text {
      height: 400px !important; }
       .breadcrumbs {
        font-size: 14px;
        margin-bottom: 20px;
        z-index: 99;
        text-transform: uppercase;
        font-weight: 500; }
         .breadcrumbs span {
          color: rgba(255, 255, 255, 0.7); }
           .breadcrumbs span i {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px; }
           .breadcrumbs span a {
            color: rgba(255, 255, 255, 0.7); }
             .breadcrumbs span a:hover,  .breadcrumbs span a:focus {
              color: #01567a; }
               .breadcrumbs span a:hover i,  .breadcrumbs span a:focus i {
                color: #01567a; }
       .bread {
        position: relative;
        color: #fff !important;
        font-size: 60px;
        color: #fff;
        line-height: 1.1;
        font-weight: 400; }

.owl-carousel {
  position: relative; }
  .owl-carousel .owl-item {
    opacity: .4; }
    .owl-carousel .owl-item.active {
      opacity: 1; }
  .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%; }
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-top: -10px;
      color: #01567a !important;
      -moz-transition: all 0.7s ease;
      -o-transition: all 0.7s ease;
      -webkit-transition: all 0.7s ease;
      -ms-transition: all 0.7s ease;
      transition: all 0.7s ease;
      opacity: 0; }
      .owl-carousel .owl-nav .owl-prev span:before,
      .owl-carousel .owl-nav .owl-next span:before {
        font-size: 30px; }
    .owl-carousel .owl-nav .owl-prev {
      left: 0; }
    .owl-carousel .owl-nav .owl-next {
      right: 0; }
  .owl-carousel .owl-dots {
    text-align: center; }
    .owl-carousel .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: #e6e6e6;
      position: relative; }
      .owl-carousel .owl-dots .owl-dot:after {
        position: absolute;
        top: -2px;
        left: -2px;
        right: 0;
        bottom: 0;
        width: 14px;
        height: 14px;
        content: '';
        border: 1px solid #e6e6e6;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%; }
      .owl-carousel .owl-dots .owl-dot.active {
        background: #b3b3b3; }
  .owl-carousel:hover .owl-nav .owl-prev,
  .owl-carousel:hover .owl-nav .owl-next {
    opacity: 1; }
  .owl-carousel:hover .owl-nav .owl-prev {
    left: -25px; }
  .owl-carousel:hover .owl-nav .owl-next {
    right: -25px; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.bg-light {
  background: #f5f4f0 !important; }

.btn {
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
  font-weight: 500; }
  .btn:hover, .btn:active, .btn:focus {
    outline: none; }
  .btn.btn-primary {
    background: #01567a !important;
    border: 1px solid #01567a !important;
    color: #fff !important; }
    .btn.btn-primary:hover {
      border: 1px solid #01567a!important;
      background: transparent!important;
      color: #01567a!important; }
  .btn.btn-white {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #000000 !important; }
    .btn.btn-white:hover {
      border: 1px solid #01567a;
      background: transparent;
      color: #01567a; }
    .btn.btn-white.btn-outline-white {
      border: 1px solid white !important;
      background: transparent !important;
      color: #fff !important; }
      .btn.btn-white.btn-outline-white:hover {
        border: 1px solid #01567a !important;
        background: #01567a !important;
        color: #fff !important; }

.ftco-intro {
  /* background: #01567a;  */
}
  .ftco-intro .intro {
    z-index: 0;
    position: relative; }

.intro {
  width: 100%;
  /* background: #01567a; */
  border: 1px solid #01567a;
  padding: 5px; }
  .intro.color-1 {
    /* background: #01567a;  */
  }
  .intro.color-2 {
    background: #07060b; }
  .intro .icon {
    margin-right: 20px;
    margin-bottom: -9px;
    margin-top: -10px;
   }
    .intro .icon span {
      font-size: 30px;
      color: #01567a; }
  .intro .text {
    color: #000;
    font-size: 13px;
   }
    .intro .text h2 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 0;
      text-transform: capitalize;
      color: #000; }

.product {
  width: 100%;
  display: block;
  border-radius: 5px;
  /* height: 49vh; */
  margin-bottom: 25px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .product .img {
    display: block;
    border-radius: 4px;
    height: 200px;
    /* height: 350px; */
    position: relative;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0; }
    .product .img:after {
      z-index: -1;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      background: #e5e5e58c;
      opacity: 0;
      border-radius: 4px;
      -moz-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      -webkit-transition: all 0.6s ease;
      -ms-transition: all 0.6s ease;
      transition: all 0.6s ease; }
    .product .img .desc {
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      opacity: 0; }
      .product .img .desc .meta-prod a {
        margin: 0 2px;
        width: 40px;
        height: 40px;
        border: 1px solid rgb(1 86 122);
        background-color: rgb(1 86 122);
        border-radius: 50%;
        backdrop-filter: blur(3px);
      }
        .product .img .desc .meta-prod a span {
          color: #fff;
        font-weight: 600;
      font-size: large; }
  .product .text {
    padding: 20px;
    position: relative; }
    .product .text .sale, .product .text .seller, .product .text .new {
      position: absolute;
      top: 0;
      left: 4px;
      font-size: 12px;
      padding: 0 10px;
      color: #fff; }
    .product .text .sale {
      background: #01567a; }
    .product .text .seller {
      background: #fe9801; }
    .product .text .new {
      background: #01d28e; }
    .product .text h2 {
      font-size: 16px;
      text-transform: capitalize;
      font-weight: 600; }
    .product .text .category {
      font-style: unset;
      font-size: 15px;
      color: #01567a;
      font-weight: 500;
    }
    .product .text .price {
      font-style: unset;
      color: #01567a;
      font-weight: 600;
      font-size: 15px;
    }
      .product .text .price.price-sale {
        color: #cccccc;
        text-decoration: line-through; }
  .product:hover {
    -webkit-box-shadow: 0px 10px 27px -21px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 27px -21px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 27px -21px rgba(0, 0, 0, 0.2); }
    .product:hover .img:after {
      opacity: .7; }
    .product:hover .img .desc {
      opacity: 1; }

.product-select {
  font-size: 18px; }

.prod-img-bg {
  background: #fff;
  -webkit-box-shadow: inset 0px 0px 101px 21px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: inset 0px 0px 101px 21px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0px 0px 101px 21px rgba(0, 0, 0, 0.09);
  height: 100%;
  display: block; }

.product-details h3 {
  font-size: 30px;
  font-weight: 400; }

.product-details .price span {
  font-size: 30px;
  color: #000000; }

.product-details button i {
  color: #000000; }

.product-details .quantity-left-minus {
  background: transparent;
  padding: 0 15px; }

.product-details .quantity-right-plus {
  background: transparent;
  padding: 0 15px; }

.product-details button, .product-details .form-control {
  height: 40px !important;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #01567a;
  padding: 10px 20px;
  background: transparent !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-size: 14px; }
  .product-details button:hover, .product-details button:focus, .product-details .form-control:hover, .product-details .form-control:focus {
    text-decoration: none;
    outline: none; }

.product-details .form-group {
  position: relative; }
  .product-details .form-group .form-control {
    padding-right: 40px;
    color: #000000;
    background: transparent !important; }
    .product-details .form-group .form-control::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #4d4d4d; }
    .product-details .form-group .form-control::-moz-placeholder {
      /* Firefox 19+ */
      color: #4d4d4d; }
    .product-details .form-group .form-control:-ms-input-placeholder {
      /* IE 10+ */
      color: #4d4d4d; }
    .product-details .form-group .form-control:-moz-placeholder {
      /* Firefox 18- */
      color: #4d4d4d; }
  .product-details .form-group .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 14px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #000000; }
    .product-details .form-group .icon span {
      color: #000000; }
    @media (max-width: 767.98px) {
      .product-details .form-group .icon {
        right: 10px; } }
  .product-details .form-group .select-wrap {
    position: relative; }
    .product-details .form-group .select-wrap select {
      font-size: 13px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      text-transform: uppercase;
      letter-spacing: 2px; }

.nav-pills {
  width: 100%;
  display: block; }
  .nav-pills p {
    margin-bottom: 0; }
  .nav-pills .nav-link {
    padding: 20px 30px !important;
    border-radius: 0;
    margin-bottom: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    border: 1px solid transparent;
    background: rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
    .nav-pills .nav-link:after {
      position: absolute;
      bottom: -10px;
      left: 0;
      right: 0;
      width: 0;
      content: '';
      height: 0;
      margin: 0 auto;
      border-style: solid;
      border-width: 10px 10px 0 10px;
      border-color: #01567a transparent transparent transparent;
      opacity: 0; }
    .nav-pills .nav-link span {
      display: block;
      font-size: 14px; }
    @media (max-width: 991.98px) {
      .nav-pills .nav-link {
        width: 100%; } }
    .nav-pills .nav-link:hover {
      background: #07060b;
      color: #fff; }
    .nav-pills .nav-link.active {
      color: #fff;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      background: #01567a; }
      .nav-pills .nav-link.active:after {
        opacity: 1; }
      @media (max-width: 767.98px) {
        .nav-pills .nav-link.active:after {
          opacity: 0; } }
    @media (max-width: 767.98px) {
      .nav-pills .nav-link {
        display: block;
        margin-bottom: 5px; } }

.tab-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-top: 15px; }

.review {
  width: 100%;
  margin-bottom: 30px;
  display: block;
  float: left; }
  .review .user-img {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    float: left; }
  .review .desc {
    width: calc(100% - 100px);
    float: right; }
    .review .desc h4 {
      width: 100%;
      margin-bottom: 10px; }
      .review .desc h4 span {
        width: 49%;
        display: inline-block; }
        .review .desc h4 span:first-child {
          font-size: 18px;
          font-weight: 400; }
        .review .desc h4 span:last-child {
          font-size: 14px;
          color: #b3b3b3;
          font-style: italic; }
    .review .desc .star {
      width: 100%; }
      .review .desc .star span {
        width: 49%;
        display: inline-block; }
      .review .desc .star i {
        color: #01567a;
        font-size: 14px; }
      .review .desc .star .reply {
        padding: 2px 10px;
        background: #f0f0f0;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px; }
        .review .desc .star .reply i {
          color: gray;
          font-size: 12px; }

.rating-wrap {
  width: 100%;
  display: block; }
  .rating-wrap .star {
    display: block;
    width: 100%; }
    .rating-wrap .star span {
      display: inline-block;
      color: #b3b3b3; }
      .rating-wrap .star span i {
        color: #01567a;
        font-size: 14px; }
      .rating-wrap .star span:first-child {
        width: 62%; }
      .rating-wrap .star span:last-child {
        width: 32%; }

.table-wrap {
  overflow-x: scroll; }

.table {
  min-width: 860px;
  width: 99%;
  background: #fff;
  -webkit-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
  box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29); }
  .table thead.thead-primary {
    background: #01567a;
    border-radius: 4px; }
  .table thead th {
    border: none;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
    color: white; }
  .table tbody tr {
    margin-bottom: 10px; }
  .table tbody th, .table tbody td {
    border: none;
    padding: 10px;
    background: #fff;
    border-bottom: 4px solid #f8f9fd;
    vertical-align: middle; }
  .table tbody td.quantity {
    width: 10%; }
  .table tbody td .img {
    width: 70px;
    height: 80px; }
  .table tbody td .email span {
    display: block;
    font-size: 13px;
   }
    .table tbody td .email span:first-child {
      font-weight: 500;
      font-size: 16px;
      color: #000000; }
    .table tbody td .email span:last-child {
      color: rgba(0, 0, 0, 0.3); }
  .table tbody td .close span {
    font-size: 12px;
    color: #dc3545; }

.checkbox-wrap {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Hide the browser's default checkbox */
.checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "\f0c8";
  font-family: "FontAwesome";
  position: absolute;
  color: rgba(0, 0, 0, 0.1);
  font-size: 20px;
  margin-top: -14px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease; }

/* Show the checkmark when checked */
.checkbox-wrap input:checked ~ .checkmark:after {
  display: block;
  content: "\f14a";
  font-family: "FontAwesome";
  color: rgba(0, 0, 0, 0.2); }

/* Style the checkmark/indicator */
.checkbox-primary {
  color: #01567a; }
  .checkbox-primary input:checked ~ .checkmark:after {
    color: #01567a; }

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

.cart-total {
  width: 100%;
  display: block;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px; }
  .cart-total h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500; }
  .cart-total p {
    width: 100%;
    display: block; }
    .cart-total p span {
      display: block;
      width: 50%; }
    .cart-total p.total-price span {
      text-transform: uppercase; }
      .cart-total p.total-price span:last-child {
        color: #000000;
        font-weight: 600; }
  .cart-total hr {
    background: rgba(255, 255, 255, 0.1); }

.billing-heading {
  font-size: 24px;
  font-weight: 500; }

.billing-form .form-group {
  position: relative; }

.billing-form label {
  color: #000000;
  font-size: 18px;
  font-weight: 500; }

.billing-form .icon {
  position: absolute;
  top: 50% !important;
  right: 15px;
  font-size: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .billing-form .icon span {
    color: black !important; }

.billing-form .select-wrap {
  position: relative; }
  .billing-form .select-wrap select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }

.billing-form .form-control {
  font-weight: 300;
  border: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  height: 58px !important;
  padding-left: 15px;
  padding-right: 15px;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 14px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }
  .billing-form .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.4); }
  .billing-form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.4); }
  .billing-form .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.4); }
  .billing-form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.4); }
  .billing-form .form-control:focus, .billing-form .form-control:active {
    border-color: #01567a !important; }

.billing-form textarea.form-control {
  height: inherit !important; }

.cart-detail {
  width: 100%;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05); }
  .cart-detail .btn-primary {
    display: block;
    width: 100%; }

.form-control {
  height: 52px !important;
  background: #fff !important;
  color: #000000 !important;
  font-size: 18px;
  border-radius: 5px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }
  .form-control:focus, .form-control:active {
    border-color: #000000; }

textarea.form-control {
  height: inherit !important; }

.ftco-animate {
  opacity: 1;
  visibility: visible; }

.bg-black {
  background: #000000; }

@media (max-width: 767.98px) {
  .img-3 {
    height: 400px; } }

.wrap-about .year {
  font-size: 30px;
  color: #000000; }
  .wrap-about .year strong {
    font-style: italic;
    color: #01567a; }

@media (max-width: 991.98px) {
  .sort {
    margin-bottom: 30px; }

    .header-logo{
      height: 25px!important;
    }
    .cart-top{
      margin-top: 25px!important;
    }
    .cart_img{
      max-width: 100%!important;
      background: transparent;
      margin-right: 10px!important;
    }
    .cart_price p{
      font-size: 15px!important;
    }
    .cart_qnty{
      width: 50%!important;
    }
    .cart-position{
      text-align: left!important;
    }
    .top-pro{
      margin-top: 20px;
    }
    .pro-marg{
      margin-top: 0!important;
    }
    .col-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: 50%;
  }
    .content-mobile{
      display: block!important;
    }
    .products-desktop{
      display: none!important;
    }
    .products-mobile{
      display: block;
    }
    .text-sm{
      font-size: 24px!important;
    }
     .bread{
      font-size: 45px!important;
    }
    .product:hover .product_adcart {
      top: 0!important;
    }
    .navbar-brand{
      margin-right: 10px;
    }
    .mobile_bottombar{
      display: block!important;
    }
    .singlecats span.txt {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      /* padding: 10px 0; */
      padding-top: 5px;
      font-size: 16px;
      color: #222;
  }
    .mobile_bottombar .header_icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
  }

  .mobile_bottombar {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background: #fff;
      border-top: 1px solid #cacaca;
      padding: 12px 0px;
      z-index: 8;
  }

  span.sidebarclose {
      position: absolute;
      right: 15px;
      font-size: 20px;
      color: #FFFFFF;
      cursor: pointer;
  }

  .home_2_hero ul.slick-dots button,
  .banner_slider ul.slick-dots button {
      display: none;
  }

  .home_2_hero ul.slick-dots li,
  .banner_slider ul.slick-dots li {
      border: 2px solid #01567a;
      background: transparent;
      line-height: 0;
      font-size: 0;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      cursor: pointer;
      margin: 0 2px;
  }

  .home_2_hero ul.slick-dots li.slick-active,
  .banner_slider ul.slick-dots li.slick-active {
      background: #01567a;
  }

  .home_2_hero ul.slick-dots,
  .banner_slider ul.slick-dots {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: absolute;
      bottom: 16px;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
  }

  .mobile_bottombar .header_icon a.icon_wrp {
      padding: 0;
  }

  .banner_slider ul.slick-dots {
      bottom: 25px;
  }

  /* footer copyright */
  .copyright_wrap {
      background: black;
      padding: 12px 0;
  }

  .copyright_text {
      font-size: 16px;
      color: #F9F9F9;
      margin-bottom: 0;
  }

  .payment_method {
      text-align: right;
  }

  .payment_method img {
      width: 333px;
      display: inline-block;
  }

  /* mobile search */
  .mobile_search_bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: 9;
      padding: 30px;
      visibility: hidden;
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%);
      -webkit-transition: .5s;
      -o-transition: .5s;
      transition: .5s;
  }

  .mobile_search_bar.active {
      visibility: visible;
      -webkit-transform: translateY(0%);
          -ms-transform: translateY(0%);
              transform: translateY(0%);
  }

  .mobile_search_text p {
      font-size: 12px;
      text-transform: uppercase;
      margin-bottom: 12px;
      color: #8a8a8a;
  }

  .mobile_search_text {
      position: relative;
  }

  .close_mbsearch {
      position: absolute;
      right: 0;
      top: 0;
      cursor: pointer;
      font-size: 20px;
  }

  .mobile_search_bar form input {
      width: 100%;
      display: block;
      border: none;
      border-bottom: 1px solid #c3c3c3;
      padding: 5px 10px;
      padding-left: 0;
      font-size: 18px;
      color: black;
  }

  .mobile_search_bar form {
      position: relative;
  }

  .mobile_search_bar form button {
      position: absolute;
      right: 0;
      top: 3px;
      border: none;
      background: transparent;
  }

  .single_sresult_product {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid #ebebeb;
  }

  .sresult_img {
      width: 90px;
      padding: 10px;
  }

  .sresult_img img {
      width: 100%;
      height: 50px;
      -o-object-fit: contain;
         object-fit: contain;
  }

  .sresult_content h4 {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 6px;
      color: black;
  }

  .search_result_product {
      height: calc(100vh - 160px);
      overflow-y: auto;
      padding-top: 16px;
  }

  .mobile_search_bar form input:focus {
      border-bottom: 1px solid #696969;
      -webkit-box-shadow: none !important;
              box-shadow: none !important;
  }

  .sresult_content a {
      color: black;
  }

  .sresult_content a:hover {
      color: #01567a;
  }

  .sresult_content {
      padding-left: 8px;
  }
    .product{
      height: 26vh!important;
    }
    .product .img{
      height: 100px;
    }
    .product .text{
      padding: 10px;
    }
    .product .text .category{
      font-size: 11px;
    }
    .product .text h2{
      font-size: 11px;
    }
    .product .text .price{
      font-size: 12px;
    }
    .btn-pro{
      font-size: 9px!important;
      padding: 5px!important;
    }
    .product .img .desc .meta-prod a{
      width: 20px;
      height: 20px;
    }
    .product .img .desc .meta-prod a span{
      font-size: 10px;
    }
    /* .product{
      height: 65vh!important;
    } */
    .sm-h3{
      font-size: 25px;
    }
    .contact-sm{
      padding: 0!important;
    }
    .blog-entry .img{
      height: auto!important;
    }
    .map-m{
      width: 100%!important;
    }
    .exp{
      text-align: center;
    }
    .abt-img{
      width: 100%;
    }
    .pad-top{
      padding-top: 0px!important;
    }
    .marg{
      margin-top: 25px;
    }
  }

.sort .img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 0; }
  .sort .img:after {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    content: '';
    border: 1px solid #01567a;
    z-index: -1;
    border-radius: 50%;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease; }
  .sort .img:hover:after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.4); }

.sort h3 {
  font-size: 22px;
  font-weight: 300; }

.about-author .desc h3 {
  font-size: 24px; }

.ftco-section {
  padding: 35px 0;
  position: relative; }
  @media (max-width: 767.98px) {
    .ftco-section {
      padding: 6em 0; } }

.ftco-no-pt {
  padding-top: 0; }

.ftco-no-pb {
  padding-bottom: 0; }

.ftco-footer {
  font-size: 16px;
  padding: 3em 0 0 0;
  background: #f3f3f3;
  color: rgba(255, 255, 255, 0.7); }
  .ftco-footer .logo {
    text-transform: uppercase; }
    .ftco-footer .logo a {
      position: relative; }
      .ftco-footer .logo a span {
        color: rgba(255, 255, 255, 0.3); }
  .ftco-footer .ftco-footer-widget h2 {
    font-weight: normal;
    color: black;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400; }
  .ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 10px; }
    .ftco-footer .ftco-footer-widget ul li a {
      color: black;
      font-size: 15px;
     }
      .ftco-footer .ftco-footer-widget ul li a span {
        color: black;
        font-size: 14px; }
  .ftco-footer .ftco-footer-widget .btn-primary {
    background: #01567a !important;
    border: 2px solid #01567a !important; }
    .ftco-footer .ftco-footer-widget .btn-primary:hover {
      background: #fff;
      border: 2px solid #01567a !important; }
  .ftco-footer p {
    color: black;
    font-size: 15px;
   }
  .ftco-footer a {
    color: black; }
    .ftco-footer a:hover {
      color: #01567a; }

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block; }
  .ftco-footer-social li a {
    height: 40px;
    width: 40px;
    display: block;
    float: left;
    background: #01567a;
    border-radius: 50%;
    position: relative; }
    .ftco-footer-social li a span {
      position: absolute;
      font-size: 18px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .ftco-footer-social li a:hover {
      color: #fff; }

.heading-section .subheading {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 5px;
  color: #01567a;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  position: relative; }

  .thumb-size{
    font-size: 12px;
  }

.heading-section h2 {
  font-size: 32px;
  font-weight: 700; }
  @media (max-width: 767.98px) {
    .heading-section h2 {
      font-size: 24px; } }

.heading-section.heading-section-white .subheading {
  color: rgba(255, 255, 255, 0.9); }

.heading-section.heading-section-white h2 {
  font-size: 40px;
  color: #fff; }

.heading-section.heading-section-white p {
  color: rgba(255, 255, 255, 0.9); }

.img,
.blog-img,
.user-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.testimony-section {
  position: relative;
  z-index: 0;
  background-position: center center !important;
  position: relative;
  background-attachment: fixed; }
  .testimony-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #000000;
    opacity: .7; }
  .testimony-section .owl-carousel {
    margin: 0; }
  .testimony-section .owl-carousel .owl-stage-outer {
    padding: 1.5em 0 2em 0;
    position: relative; }
  .testimony-section .owl-nav {
    position: absolute;
    top: 100%;
    width: 100%; }
    .testimony-section .owl-nav .owl-prev,
    .testimony-section .owl-nav .owl-next {
      position: absolute;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-top: -10px;
      outline: none !important;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      transition: all 0.3s ease;
      opacity: 0; }
      .testimony-section .owl-nav .owl-prev span:before,
      .testimony-section .owl-nav .owl-next span:before {
        font-size: 30px;
        color: rgba(0, 0, 0, 0.5);
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .testimony-section .owl-nav .owl-prev:hover span:before, .testimony-section .owl-nav .owl-prev:focus span:before,
      .testimony-section .owl-nav .owl-next:hover span:before,
      .testimony-section .owl-nav .owl-next:focus span:before {
        color: #fff; }
    .testimony-section .owl-nav .owl-prev {
      left: 50%;
      margin-left: -80px; }
    .testimony-section .owl-nav .owl-next {
      right: 50%;
      margin-right: -80px; }
  .testimony-section:hover .owl-nav .owl-prev,
  .testimony-section:hover .owl-nav .owl-next {
    opacity: 1; }
  .testimony-section:hover .owl-nav .owl-prev {
    left: 50%;
    margin-left: -80px; }
  .testimony-section:hover .owl-nav .owl-next {
    right: 50%;
    margin-right: -80px; }
  .testimony-section .owl-dots {
    text-align: center; }
    .testimony-section .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.1); }
      .testimony-section .owl-dots .owl-dot.active {
        background: #01567a; }

.testimony-wrap {
  display: block;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 30px 33px -41px rgba(0, 0, 0, 0.24); }
  .testimony-wrap .text p {
    font-style: italic; }
  .testimony-wrap .icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #01567a; }
    .testimony-wrap .icon span {
      color: #fff; }
  .testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; }
  .testimony-wrap .name {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 0;
    color: #fff;
    font-style: normal !important; }
  .testimony-wrap .position {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7); }

.image-popup {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1; }

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8; }

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0; }

#section-counter {
  position: relative;
  z-index: 0; }
  #section-counter:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: 0;
    background: #000000; }

.ftco-counter {
  position: relative;
  z-index: 0; }
  .ftco-counter .overlay {
    position: absolute;
    width: 27%;
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: #01567a;
    z-index: -1; }
    @media (min-width: 992px) {
      .ftco-counter .overlay {
        opacity: .3; } }
  .ftco-counter .block-18 {
    text-align: center;
    padding: 0 20px; }
  .ftco-counter .text strong.number {
    font-weight: 500;
    font-size: 40px;
    color: #01567a;
    font-style: italic; }
  .ftco-counter .text span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase; }
  @media (max-width: 767.98px) {
    .ftco-counter .counter-wrap {
      margin-bottom: 20px; } }

.block-20 {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: block;
  width: 100%;
  z-index: -1; }

.blog-entry {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 0; }
  @media (min-width: 768px) {
    .blog-entry {
      margin-bottom: 30px; } }
  @media (max-width: 767.98px) {
    .blog-entry {
      margin-bottom: 30px; } }
  .blog-entry .img, .blog-entry .text {
    width: 50%; }
    @media (max-width: 991.98px) {
      .blog-entry .img, .blog-entry .text {
        width: 100%; } }
  @media (max-width: 767.98px) {
    .blog-entry .img {
      height: 300px; } }
  .blog-entry .text {
    position: relative;
    margin: 0 auto;
    z-index: 0; }
    .blog-entry .text .heading {
      font-size: 22px;
      margin-bottom: 0;
      font-weight: 500;
      font-style: italic; }
      .blog-entry .text .heading a {
        color: #000000; }
        .blog-entry .text .heading a:hover, .blog-entry .text .heading a:focus, .blog-entry .text .heading a:active {
          color: #01567a; }
  .blog-entry .meta p span {
    padding-right: 10px; }
  .blog-entry .btn-custom {
    color: #01567a;
    font-style: italic;
    font-weight: 700; }
    .blog-entry .btn-custom span {
      font-size: 12px; }

.block-23 ul {
  padding: 0; }
  .block-23 ul li {
    color: rgba(255, 255, 255, 0.8); }
    .block-23 ul li, .block-23 ul li > a {
      display: table;
      line-height: 1.5;
      margin-bottom: 15px; }
    .block-23 ul li span {
      color: black!important; }
    .block-23 ul li .icon, .block-23 ul li .text {
      display: table-cell;
      font-size: 15px;
      vertical-align: top; }
    .block-23 ul li .icon {
      width: 40px;
      font-size: 18px;
      padding-top: 2px;
      color: black; }

.block-27 ul {
  padding: 0;
  margin: 0; }
  .block-27 ul li {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400; }
    .block-27 ul li a, .block-27 ul li span {
      color: #01567a;
      text-align: center;
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      border: 1px solid #e6e6e6; }
    .block-27 ul li.active a, .block-27 ul li.active span {
      background: #01567a;
      color: #fff;
      border: 1px solid transparent; }

.wrapper {
  width: 100%; }

.contact-wrap {
  background: #fff; }

.dbox {
  width: 100%;
  margin-bottom: 25px; }
  @media (max-width: 767.98px) {
    .dbox {
      margin-bottom: 25px !important;
      padding: 0 20px; } }
  .dbox p {
    font-size: larger;
    color: #000;
    margin-bottom: 0; }
    .dbox p span {
      font-weight: 500;
      color: #000000; }
    .dbox p a {
      color: #01567a; }
  .dbox .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #01567a;
    margin: 0 auto;
    margin-bottom: 20px; }
    .dbox .icon span {
      font-size: 20px;
      color: #fff; }
  .dbox .text {
    width: 100%; }

.contactForm .label {
  color: black !important;
  text-transform: capitalize;
  font-size: 16px;
  display: block;
  font-weight: normal;
  line-height: 1.5; }

  .contactForm .label span{
    color: #01567a;
    font-size: 15px;
    line-height: 1.5;
  }

.contactForm .form-control {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 }

.contactForm .form-control {
  height: 36px;
  background: #fff;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  border-radius: 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .contactForm .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5) !important; }
  .contactForm .form-control:focus, .contactForm .form-control:active {
    border-color: #01567a !important; }

.contactForm textarea.form-control {
  height: inherit !important; }

#map {
  width: 100%; }
  @media (max-width: 767.98px) {
    #map {
      height: 300px; } }

.block-21 .blog-img {
  display: block;
  height: 70px;
  width: 70px;
  border-radius: 4px; }

.block-21 .text {
  width: calc(100% - 70px); }
  .block-21 .text .heading {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px; }
    .block-21 .text .heading a {
      color: #000000; }
      .block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
        color: #01567a; }
  .block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px; }
    .block-21 .text .meta > div a {
      color: #b3b3b3; }

/* Blog*/

.tagcloud a {
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 7px;
  margin-right: 4px;
  border-radius: 4px;
  color: #000000;
  border: 1px solid #ccc;
  font-size: 11px; }
  .tagcloud a:hover {
    border: 1px solid #000; }

.comment-form-wrap {
  clear: both; }
  .comment-form-wrap .form-control {
    border: transparent;
    background: white !important;
    color: rgba(0, 0, 0, 0.8) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }
    .comment-form-wrap .form-control::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: rgba(0, 0, 0, 0.8); }
    .comment-form-wrap .form-control::-moz-placeholder {
      /* Firefox 19+ */
      color: rgba(0, 0, 0, 0.8); }
    .comment-form-wrap .form-control:-ms-input-placeholder {
      /* IE 10+ */
      color: rgba(0, 0, 0, 0.8); }
    .comment-form-wrap .form-control:-moz-placeholder {
      /* Firefox 18- */
      color: rgba(0, 0, 0, 0.8); }
  .comment-form-wrap textarea.form-control {
    height: inherit !important; }

.comment-list {
  padding: 0;
  margin: 0; }
  .comment-list .children {
    padding: 50px 0 0 40px;
    margin: 0;
    float: left;
    width: 100%; }
  .comment-list li {
    padding: 0;
    margin: 0 0 30px 0;
    float: left;
    width: 100%;
    clear: both;
    list-style: none; }
    .comment-list li .vcard {
      width: 80px;
      float: left; }
      .comment-list li .vcard img {
        width: 50px;
        border-radius: 50%; }
    .comment-list li .comment-body {
      float: right;
      width: calc(100% - 80px); }
      .comment-list li .comment-body h3 {
        font-weight: 500;
        font-size: 20px; }
      .comment-list li .comment-body .meta {
        font-size: 15px;
        color: #01567a; }
      .comment-list li .comment-body .reply {
        padding: 5px 10px;
        background: #e6e6e6;
        color: #000000;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: .1em;
        font-weight: 400;
        border-radius: 4px; }
        .comment-list li .comment-body .reply:hover {
          color: #fff;
          background: black; }

.search-form .form-group {
  position: relative; }
  .search-form .form-group input {
    padding-right: 50px;
    font-size: 14px; }

.search-form .fa {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.sidebar-box {
  margin-bottom: 10px;
  height: auto;
  font-size: 15px;
  width: 100%;
  background: #fff; }
  .sidebar-box *:last-child {
    margin-bottom: 0; }
  .sidebar-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500; }

.categories li {
  position: relative;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px solid #dee2e6;
  list-style: none; }
  .categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0; }
  .categories li a {
    display: block;
    font-size: smaller;
    color: #1a1a1a!important; }
    .categories li a span {
      position: absolute;
      right: 0;
      top: 7px;
      color: #ccc; }
    .categories li a:hover, .categories li a:focus {
      outline: none;
      color: #01567a!important; }
  .categories li.active a {
    color: #01567a!important; }
    .categories li.active a span {
      color: #01567a!important; }

#ftco-loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
  -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
  transition: opacity .2s ease-out, visibility 0s linear .2s;
  z-index: 1000; }

#ftco-loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }

#ftco-loader.show {
  -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
  -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
  transition: opacity .4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1; }

#ftco-loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

#ftco-loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round; }

@keyframes loader-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0; }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px; }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px; } }
    .text-orange {
      color: #07060b;
    }
    #mSlider {
      display: none;
    }

    .product_adcart {
      left: 20px;
      top: 56px;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
  }

  .product_adcart {
      opacity: 0;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      top: 65px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      margin-top: 15px;
  }


  .product:hover .product_adcart {
      opacity: 1;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      top: 22px;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      margin-top: 30px;
  }
  .product:hover .contain_hide{
    display: none;
  }
  .icon-color{
    color: #01567a;
  }
  .footernews_form input {
    padding: 5px 15px;
    font-size: 13px;
    width: 230px;
    border: 1px solid #c7c7c7;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background-color: transparent;
    color: black;
}

.bottom-nav{
  background: #01567a;
    position: relative;
    z-index: 3;
    /* top: 73px; */
    padding: 7px;
}
.cat-box{
  display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    padding: 10px 15px;
    background: #fff;
}
.cat-icon{
  font-size: 18px;
    margin-right: 10px;
    color: black;
}
.cat-box h4{
  font-size: 17px;
    margin-bottom: 0;
}

.text-black{
  color: black;
}
.text-size{
  font-size: 11px;
}
.icon_size{
  font-size: 22px;
}
.header-logo{
  width: auto;
  height: 35px;
}
.cat_height{
  height: 55vh;
  padding-right: 7px!important;
  overflow: auto;
}
.cat_height::-webkit-scrollbar-thumb {
  background: transparent;
}

.cat_height::-webkit-scrollbar-track {

background: transparent;
}

.cat_height::-webkit-scrollbar {
  transition: all .5s;
  width: 5px;
  height: 1px;
  border-radius: 20px;
}

.cat_height::-webkit-scrollbar-thumb {
  background: #01567a;
}
.cat_height2{
  height: 100vh;
  padding-right: 7px!important;
  overflow: auto;
}
.cat_height2::-webkit-scrollbar-thumb {
  background: transparent;
}

.cat_height2::-webkit-scrollbar-track {

background: transparent;
}

.cat_height2::-webkit-scrollbar {
  transition: all .5s;
  width: 5px;
  height: 1px;
  border-radius: 20px;
}

.cat_height2::-webkit-scrollbar-thumb {
  background: #01567a;
}
.checkbox{
  width: 15px;
  height: 15px;
}
.banner-about{
  font-size: 17px;
  color: #01567a;
}
.faqs {
  display: grid;
  color: black;

}

.faq__question {
  display: flex;
  align-items: center;
  color: black;
  /* padding: 5px; */
  font-size: 11px;
  cursor: pointer;
}
.faq__question::before {
  display: inline-block;
  content: "×";
  margin-right: 5px;
  color: #01567a;
  font-weight: 900;
  transform: rotatez(-135deg);
  transition: all 0.4s ease-in-out;
}
.faq__answer::before {
  display: inline-block;
  content: "-";
  margin-right: 5px;
  color: #01567a;
  font-weight: 900;
  /* transform: rotatez(-135deg);
  transition: all 0.4s ease-in-out; */
}
.faq__answer {
  padding: 0;
  margin-bottom: 0;
  font-size: 11px;
  margin-left: 27px;
}
.faq__answer a{
  color: black;
}
.faq[open] .faq__question::before {
  transform: rotate(0);
}
.faq[open] .faq__answer {
  animation: slide-down 0.5s ease-in-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-justify{
  text-align: justify;
}






/* header */
header {
    position: relative;
}

.logo img {
    width: 120px;
}

.search_wrap {
    position: relative;
}

.search_suggest {
    position: absolute;
    left: 134px;
    top: 56px;
    width: 67%;
    background-color: #fff;
    z-index: 9;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
}

.search_suggest.active {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.search {
    border-radius: 5px;
    width: 675px;
}

.search_category {
    width: 145px;
    background: #fff;
    border-radius: 6px 0 0 6px;
}

.search_category select {
    width: 100%;
    border: none;
    padding: 11px 14px;
    font-size: 15px;
}

.search_category select:focus {
    outline: 0;
}

.search_category .nice-select {
    border-radius: 5px;
    font-size: 14px;
    height: 42px;
    line-height: 43px;
    margin-top: 2px;
    padding-left: 18px;
    padding-right: 30px;
    width: 100%;
    border: none;
}

.search_input {
    max-width: 390px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.search_input input {
    width: 100%;
    padding: 10px 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.search_input input::-webkit-input-placeholder {
    font-size: 14px;
}

.search_input input::-moz-placeholder {
    font-size: 14px;
}

.search_input input:-ms-input-placeholder {
    font-size: 14px;
}

.search_input input::-ms-input-placeholder {
    font-size: 14px;
}

.search_input input::placeholder {
    font-size: 14px;
}

.search_input input:focus {
    outline: 0;
}

.search_subimt {
    width: 142px;
}

.search_subimt button {
    border: none;
    background-color: black;
    width: 100%;
    display: block;
    padding: 8px 15px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0 5px 5px 0;
}

.search_suggest .search_result_product {
    height: auto;
    padding: 0;
}

a.single_sresult_product:hover {
    background: #f2f0f0;
}

.single_sresult_product:last-child {
    border-bottom: none;
}

.header_icon a.icon_wrp span {
    display: block;
    position: relative;
    font-size: 20px;
    color: black;
}

.header_icon a.icon_wrp span.icon img {
    height: 30px;
    width: 30px;
}

.header_icon a.icon_wrp span.icon_text {
    font-size: 11px;
    line-height: 10px;
    margin-top: 4px;
}

.header_icon a.icon_wrp {
    position: relative;
    /* margin-left: 20px; */
    display: block;
    color: black;
    /* padding: 20px 0; */
}

.header_icon a.icon_wrp:hover {
    color: #01567a;
}


.header_icon a.icon_wrp .pops {
  position: absolute;
  right: -11px;
    top: -3px;
    font-size: 10px;
  background: #01567a;
  border: 1px solid;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  line-height: 15px;
  text-align: center;
  color: white;
}

.header_icon a.icon_wrp.wishlist .pops {
    right: 0;
}

/* navbar */
nav {
    background-color: black;
}

.all_category {
    width: 195px;
    background-color: #01567a;
    position: relative;
}

.all_category .bars {
    padding: 15px;
}

.all_category .bars .icon_text {
    font-size: 16px;
}

.all_category .bars .icon {
    font-size: 18px;
    margin-right: 5px;
}

.nav_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 29px;
}

.nav_bar li {
    position: relative;
}

.nav_bar > li > a {
    display: block;
    color: #e1e1e1;
    text-transform: capitalize;
    margin: 0 10px;
    padding: 15px 10px;
}

.nav_bar > li:hover > a {
    color: #ffffff;
}

.nav_bar .subnav {
    position: absolute;
    left: 0;
    top: 100%;
    /* min-width: 200px; */
    background-color: #fff;
    padding: 12px 0;
    z-index: 10;
    -webkit-box-shadow: 0px 0px 16px rgb(0 0 0 / 6%);
            box-shadow: 0px 0px 16px rgb(0 0 0 / 6%);
    opacity: 0;
    visibility: hidden;
    margin-top: 15px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 3px;
    min-width: 170px;
}

.single_subnav {
    min-width: 140px;
}

.nav_bar li:hover .subnav {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav_bar .subnav li a {
    font-size: 15px;
    display: block;
    padding: 1px 16px;
    color: black;
    border-left: 2px solid #fff;
    white-space: nowrap;
}

.nav_bar .subnav li:hover a {
    color: #01567a;
}

.nav_bar > li.withsubs > a > span {
    position: absolute;
    top: 15px;
    right: 2px;
    font-size: 13px;
}

.sub_categories {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px 0;
    top: 100%;
    background-color: #ffffff;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    -webkit-box-shadow: 0 0 5px #00000020;
            box-shadow: 0 0 5px #00000020;
}

.all_category:hover .sub_categories {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.sub_categories .singlecats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 15px;
    width: 100%;
    text-decoration: none;
    color: black;
    padding-bottom: 5px!important;
    padding-left: 25px;
    border-bottom: 1px dotted #C8C8CE;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sub_categories .singlecats:last-child {
    border-bottom: none;
}

.sub_categories .singlecats .img_wrp {
    width: 45px;
}
.sub_categories .singlecats .img_wrp i {
    font-size: 21px;
    color: #f4cad0;
}
.sub_categories .singlecats .img_wrp img {
    height: 20px;
}

.sub_categories .singlecats span {
    font-size: 13px;
}

.sub_categories .singlecats:hover {
    background-color: #efefef;
}

.sub_categories .singlecats .wsicon {
    font-size: 14px;
    margin-left: auto;
    margin-right: 2px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}


.myacc_cont {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 20px 15px;
    border-radius: 3px;
    width: 205px;
    z-index: 2;
    -webkit-box-shadow: 2px 4px 10px #00000020;
            box-shadow: 2px 4px 10px #00000020;
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.myacwrap:hover .myacc_cont {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.ac_join p {
    font-family: Roboto;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    font-weight: 500;
}

.account_btn .default_btn {
    padding: 1px 15px;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: 500;
    min-width: 84px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.ac_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    margin-top: 7px;
    font-size: 15px;
    color: #464545;
    padding-left: 32px;
}

.ac_links i {
    position: absolute;
    width: 20px;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.ac_links {
    padding-top: 10px;
}

.ac_links a:hover {
    color: #01567a;
}

.ac_links .myac img {
    top: 5px;
}

/* mega menu */

.mega_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 200px;
    background: #FFFFFF;
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    width: auto;
    height: 100%;
    padding: 20px;
    margin-left: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sub_categories .singlecats:hover .mega_menu {
    margin-left: 0px;
    opacity: 1;
    visibility: visible;
    cursor: default;
}

.sub_categories .singlecats:hover .wsicon {
    margin-right: -2px;
}

.single_mega_menu {
    width: 25%;
}

.mega_menu_wrap h4 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
    font-weight: 500;
}

.mega_categories a {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    font-size: 13px;
    color: #453E3E;
    line-height: 1.4;
    margin-bottom: 9px;
}

.mega_categories a:hover {
    color: #01567a;
}

.mega_menu_wrap:first-child {
    margin-bottom: 20px;
}

.mega_brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.mega_brnd_img {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 12px;
}

.mega_brnd_img img {
    width: 100%;
    height: 42px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-box-shadow: 0 0 9px #00000014;
            box-shadow: 0 0 9px #00000014;
}

/* hero area */
.hero_area {
    background-position: center bottom;
    background-size: cover;
    min-height: 520px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.hero_content h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero_btn {
    margin-top: 40px;
}

.hero_img img {
    width: 100%;
}

.single_hero_slider.bg-1 {
    background: #cccccc;
}

.single_hero_slider.bg-2 {
    background: #7cc8f8ba;
}

.single_hero_slider.bg-3 {
    background: rgba(253, 61, 87, 0.19);
}

/* features area */

.feature_icon img {
    width: 50px;
    max-height: 45px;
}

.feature_icon {
    margin-right: 24px;
    font-size: 30px;
}

.feature_content h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}

.feature_content p {
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
    line-height: 1;
}

.single_feature {
    min-height: 90px;
    border: 1px solid #01567a;
    border-radius: 3px;
}

/* section title */
.section_title {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
}

.section_title h2 {
    font-size: 32px;
    text-transform: uppercase;
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: #01567a;
}

h2.section_title_3 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* offer area */

.offerimg img {
    width: 200px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_offercard:hover .offerimg img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.single_offercard {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #FBE3E4;
    padding: 24px 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.single_offercard.bg_2 {
    background: #EDECEC;
}

.offertext .offer_pers {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 8px;
    color: #01567a;
}

.offertext h4 {
    font-size: 22px;
    line-height: 26px;
    color: black;
}

.offertext p {
    font-size: 15px;
    line-height: 16px;
    color: #464545;
    margin-bottom: 20px;
}

.offerimg {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

/* shop by category */
.single_shopbycat {
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.single_shopbycat::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #00000060;
}

.shopcat_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
}

.shopcat_cont .icon {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.shopcat_cont h4 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
}

.single_shopbycat:hover .shopcat_cont .icon {
    opacity: 1;
    margin-left: 8px;
}

/* product design */
.topariv_img {
    position: relative;
}

.topariv_img img {
    width: 100%;
}

.persof {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #28A745;
    padding: 8px;
    border-radius: 3px;
    font-size: 15px;
    color: #fff;
    line-height: 16px;
    z-index: 1;
}

.adto_wish {
    height: 30px;
    width: 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #0000;
            box-shadow: 0 0 10px #0000;
    font-size: 16px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #01567a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

.topariv_cont {
    padding: 16px;
}

.topariv_cont h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.topariv_cont a {
    color: black;
}

.topariv_cont a:hover {
    color: #01567a;
}

.topariv_cont p {
    font-size: 15px;
    color: #464545;
    margin-bottom: 10px;
}

.single_toparrival {
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.full_atc_btn button {
    width: 100%;
    border: 1px solid #01567a;
    background: #01567a;
    border-radius: 0 0 3px 3px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    padding: 8px 0;
    text-transform: uppercase;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.full_atc_btn button:hover {
    background-color: transparent;
    color: #01567a;
}

.topariv_cont .org_price {
    font-weight: 600;
    font-size: 20px;
}

.product_slider_2 .single_toparrival {
    margin: 0 15px;
}

.product_slider_2 {
    margin-left: -15px;
    margin-right: -15px;
}

/* product design 2*/

.single_product {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    text-align: center;
    height: 358px;
}

.product_slider .single_product {
    width: 100%;
    margin: 0 15px;
}

.product_img {
    position: relative;
    padding: 20px;
    background: #FBFBFB;
    border-radius: 5px 5px 0 0;
}

.prodcut_hovcont {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #e5e5e58c;
    z-index: 1;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.product_img img {
    width: 200px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
}

.product_content {
    padding: 20px 5px;
    padding-top: 30px;
    position: relative;
}

.product_content a {
    text-decoration: none;
    color: #000;
}

.product_content h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.price {
    line-height: 20px;
    margin-bottom: 5px;
    font-size: 13px;
}

.price span.prev_price {
    font-size: 14px;
    color: #687188;
    text-decoration: line-through;
}

.price span.org_price {
    color: #01567a;
    margin-right: 5px;
}

.prodcut_hovcont a {
    margin: 0 8px;
    height: 40px;
    width: 40px;
    background: #01567a;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.prodcut_hovcont a:hover {
    background: black;
}

.rating_star span {
    font-size: 16px;
    color: #F6BC3E;
}

.rating_count {
    font-size: 14px;
    margin-left: 9px;
    margin-bottom: 0;
    color: #687188;
}

.default_btn {
    border: 1px solid #01567a;
    background: #01567a;
    color: #fff!important;
    padding: 8px 24px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 15px;
    transition: .5s;
    display: inline-block;
    text-align: center;
    font-weight: 500;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;

}

.default_btn:hover,
.default_btn.second {
    background-color: transparent;
    color: #01567a!important;
}
.default_btn.second:hover {
    background: #01567a;
    color: #fff;
}
.default_btn.xs_btn {
    min-width: 80px;
    padding: 6px 15px;
}

.product_adcart {
    opacity: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 65px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin-top: 15px;
}

.single_product:hover .ratprice {
    opacity: 0;
}

.single_product:hover .product_adcart,
.single_new_arrive:hover .prodcut_hovcont {
    opacity: 1;
    margin-top: 0;
}

.single_product:hover .prodcut_hovcont {
    opacity: 1;
}

.product_area {
    padding: 50px 0;
    overflow-x: hidden;
}

/* banner ad */
.offer_banner_area img {
    width: 100%;
}

/* footer */
footer {
    background: #f3f3f3;
    padding: 56px 0;
}

footer.colored {
    background: #01567a1a;
}

.footer_logo img {
    width: 120px;
}

.footet_text p {
    font-size: 15px;
    line-height: 1.5;
    color: black;
    margin-bottom: 0;
    margin-top: 16px;
}

.footer_menu a {
    color: black;
    font-size: 15px;
    display: block;
    text-decoration: none;
    line-height: 24px;
    margin-bottom: 12px;
}

.footer_menu a:last-child {
    margin-bottom: 0;
}

h4.footer_title {
    color: black;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 9px;
    text-transform: uppercase;
}

.download_img img {
    width: 150px;
}

.download_img a {
    margin-right: 20px;
}

.footer_social h5 {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer_icon a {
    width: 32px;
    height: 32px;
    font-size: 15px;
    display: block;
    border-radius: 50%;
    margin-right: 12px;
    text-align: center;
    line-height: 32px;
    color: #ffffff;
}

a.facebook {
    background: #3B5998;
}

a.twitter {
    background: #00ACEE;
}

a.instagram {
    background: #D53982;
}

.footer_menu a:hover {
    color: #01567a;
}

.footer_contact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: black;
    position: relative;
    padding-left: 32px;
    margin-bottom: 13px;
}

.footer_contact p span.txt {
    font-weight: 500;
}

.footer_contact .icn {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
}

.footer_icon {
    margin-top: 6px;
}

form.footernews_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footernews_form button {
    padding: 6px 10px;
    border-radius: 0 5px 5px 0;
    min-width: 105px;
}

.footernews_form input {
    padding: 5px 15px;
    font-size: 13px;
    width: 230px;
    border: 1px solid #c7c7c7;
    border-right: 0;
    border-radius: 5px 0 0 5px;
    background-color: transparent;
    color: black;
}

.footernews_form input:focus {
    border-color: #909090;
}

.footernews_form input::-webkit-input-placeholder {
    color: #a5a5a5;
}

.footernews_form input::-moz-placeholder {
    color: #a5a5a5;
}

.footernews_form input:-ms-input-placeholder {
    color: #a5a5a5;
}

.footernews_form input::-ms-input-placeholder {
    color: #a5a5a5;
}

.footernews_form input::placeholder {
    color: #a5a5a5;
}

.footer_newslet h4 {
    font-size: 18px;
    color: black;
    margin-top: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

footer.white {
    background: #ffffff;
    border: 1px solid #E9E4E4;
}

/* slider setting */
.product_slider {
    margin-left: -15px;
    margin-right: -15px;
}

.slick-slide:focus,
.slick-track:focus {
    outline: 0;
}

.banner_slider button.slick-arrow,
.product_slider_2 button.slick-arrow {
    position: absolute;
    z-index: 1;
    font-size: 25px;
    color: black;
    top: 50%;
    left: 15px;
    border: none;
    background: transparent;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.banner_slider button.slick-arrow:hover {
    color: #01567a;
}

.banner_slider button.slick-next.slick-arrow,
.product_slider_2 button.slick-next.slick-arrow {
    left: auto;
    right: 15px;
}

/* custom checkbox */
.custom_check label {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

.custom_check label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 1px solid #C5C4C4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.custom_check .check_inp:checked + label:after {
    border: none;
    background-image: url('../images/check.png');
}

.custom_check.check_2 label:after {
    border: none;
    width: 18px;
    background-image: url('../images/checkbox-empty.png');

}

.custom_check.check_2 .check_inp:checked + label:after {
    background-image: url('../images/checkbox.png');
}

.custom_check.radio label:after {
    border: none;
    background-image: url('../images/radio-empty.png');
}

.custom_check.radio .check_inp:checked + label:after {
    background-image: url('../images/radio.png');
}

/* shop */
.shop_wrap {
    position: relative;
}

/* shop sidebar */
h4.filter_title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.shop_filter {
    padding-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
    margin-bottom: 16px;
}

.filter_list .custom_check {
    margin-bottom: 8px;
}

.filter_list .custom_check:last-child {
    margin-bottom: 0;
}

.custom_check p {
    font-size: 15px;
    line-height: 26px;
}

.view_filter .view_icon {
    font-size: 24px;
    width: 40px;
    height: 32px;
    border: 1px solid #C1C1C1;
    text-align: center;
    border-radius: 3px;
    margin-left: 10px;
    color: #717171;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.view_filter .view_icon.active {
    background-color: #01567a;
    border: 1px solid #01567a;
    color: #FFFFFF;
}

.sorting_filter .nice-select {
    border: 1px solid #C1C1C1;
    border-radius: 3px;
    width: 210px;
}

button#mobile_filter_btn {
    padding: 7px 10px;
    min-width: 150px;
}

.close_filter {
  font-size: 11px;
  position: absolute;
  right: 10px;
  padding: 6px;
  width: 22px;
  height: 22px;
  line-height: 0.5;
  top: 0px;
  border: 1px solid;
  cursor: pointer;
  color: #01567a;
  border-radius: 50%;
}

/* price range slider */

.price-range-slider {
    width: 100%;
    margin-top: 25px;
}

.ui-widget.ui-widget-content {
    border: none;
    background: #DDDDDD;
    height: 8px;
}

.price-range-slider .range-bar .ui-slider-handle {
    -webkit-box-shadow: 0px 0px 154px rgba(0, 0, 0, 0.22),
    0px 0px 67.1344px rgba(0, 0, 0, 0.1485),
    0px 0px 25.025px rgba(0, 0, 0, 0.11),
    0px 0px 8.90312px rgba(0, 0, 0, 0.0715);
            box-shadow: 0px 0px 154px rgba(0, 0, 0, 0.22),
    0px 0px 67.1344px rgba(0, 0, 0, 0.1485),
    0px 0px 25.025px rgba(0, 0, 0, 0.11),
    0px 0px 8.90312px rgba(0, 0, 0, 0.0715);
    width: 18px;
    height: 18px;
    background-color: #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle:focus {
    outline: none;
}

.price-range-slider .range-bar .ui-slider-range {
    background-color: #01567a;
}

.price-range-slider .range-value {
    margin-top: 16px;
    margin-bottom: 0;
}

.price-range-slider .range-value input {
    border: none;
    font-size: 16px;
    font-weight: 500;
}

/* price-range-slider */

/* size select box */
.single_size_opt label {
    width: 24px;
    height: 24px;
    line-height: 24px;
    border: 1px solid #E9E4E4;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
}

.single_size_opt .size_inp:checked + label {
    border: none;
    background: #fc3d57;
    color: #ffffff;
}

.color_selector .single_size_opt .size_inp:checked + label {
    border: 2px solid #eceef0;
    -webkit-box-shadow: 0 0 0 2px #01567a;
            box-shadow: 0 0 0 2px #01567a;
}

/* shop products */
.shop_products {
    margin-top: 24px;
}

.shop_products .single_product {
    margin-bottom: 30px;
}

/* pagination design */
.pagination_wrp .single_paginat {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    border: 1px solid #E9E4E4;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pagination_wrp {
    margin-top: 20px;
}

.pagination_wrp .single_paginat:hover,
.pagination_wrp .single_paginat.active {
    background: #fc3d57;
    color: #fff;
    border: 1px solid #fc3d57;
}

/* list product design */
.single_list_product .product_content {
    padding: 20px 30px 20px 0;
}

.single_list_product .product_content h5 {
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 6px;
}

.single_list_product .price span.org_price {
    font-size: 18px;
}

.single_list_product .price span.prev_price {
    font-size: 16px;
}

.list_product_img img {
    width: 200px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_list_product {
    border: 1px solid #E9E4E4;
    margin-bottom: 30px;
}

p.product_list_desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
}

.list_product_img {
    background: #fafafa;
    min-height: 260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
}

button.list_product_btn {
    border: 1px solid #01567a;
    background: #01567a;
    color: #fff;
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight: 500;
    min-width: 135px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

button.list_product_btn.disable {
    background: rgba(253, 61, 87, 0.74);
    cursor: not-allowed;
    border-color: rgba(253, 61, 87, 0.74);
}

button.list_product_btn.disable:hover {
    background-color: rgba(253, 61, 87, 0.74);
    color: #fff;
}

button.list_product_btn .icon {
    margin-right: 5px;
}

button.list_product_btn.wish {
    background: transparent;
    color: #01567a;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
button.list_product_btn.wish:hover {
    background: #01567a;
    color: #fff;

}

button.list_product_btn:hover {
    background: transparent;
    color: #01567a;
}

/* shopping cart */
.shop_cart_title {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 70px;
    color: #fff;
    background: #01567a;
}

.shop_cart_title.wishlist_ttl span:first-child {
    width: 22%;
}

.shop_cart_title.wishlist_ttl span:nth-child(2) {
    width: 39%;
}

.single_shop_cart,
.cart_summary {
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    padding: 20px;
    padding-bottom: 15px;
}

.single_shop_cart {
    margin-top: 24px;
}

.cart_summary {
    padding-bottom: 15px;
}

.cart_summary h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

.cartsum_text p {
    margin-bottom: 5px;
}

.cart_img {
    max-width: 120px;
    background: transparent;
    margin-right: 10px;
}

.cart_img img {
    width: 100%;
    max-height: 105px;
    -o-object-fit: contain;
       object-fit: contain;
}

.cart_cont {
    width: 180px;
}

.shop_cart_wrap.wishlist .cart_cont {
    width: 400px;
}

.cart_cont h5 {
    font-size: 17px;
    margin-bottom: 12px;
    /* text-transform: uppercase; */
    line-height: 1.4;
    font-weight: 500;
    color: black;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_cont h5:hover {
    color: #01567a;
}

.cart_cont p.price {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #01567a;
    margin-bottom: 0px;
}

.cart_qnty .cart_qnty_btn {
    font-size: 10px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    border: 1px solid #E9E4E4;
}

.cart_qnty .cart_count {
    font-size: 14px;
    width: 42px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 1px solid #E9E4E4;
    border-left: 0;
    border-right: 0;
}

.cart_price p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    /* font-family: 'Roboto', sans-serif; */
    color: #01567a;
}

.cart_remove {
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.cart_remove:hover {
    color: #01567a;
}

.cart_qnty_btn:hover {
    background: #dadada;
}

.cart_price {
    min-width: 100px;
    text-align: right;
}

.cart_sum_total p {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.cart_sum_total {
    padding-top: 12px;
    border-top: 1px solid #E9E4E4;
    margin-bottom: 5px;
    margin-top: 4px;
}

.cart_sum_coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.cart_sum_coupon input {
    width: 65%;
    border-radius: 5px 0 0 5px;
    border: 1px solid #E9E4E4;
    font-size: 13px;
    padding: 5px 10px;
}

.cart_sum_coupon button {
    width: 35%;
    border: none;
    background: #01567a;
    border-radius: 0 5px 5px 0;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #01567a;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_sum_coupon button:hover {
    background: transparent;
    color: #01567a;
}

.cart_sum_pros button {
    width: 100%;
    border: 1px solid #01567a;
    background: #01567a;
    text-align: center;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cart_sum_pros {
    margin-bottom: 10px;
}

.cart_sum_pros button:hover {
    background: transparent;
    color: #01567a;
}

.wishlist .cart_cont h5 {
    margin-bottom: 0;
}

.cart_cont .instock {
    margin-bottom: 0;
    font-size: 14px;
    color: #464545;
}

.cart_cont .instock span {
    color: #28A745;
}

.cart_cont .instock span.outstock {
    color: #01567a;
}

.shop_cart_title.sopcart_ttl span:first-child {
    width: 30%;
    /* padding-left: 95px; */
}

.shop_cart_title.sopcart_ttl {
    padding-left: 150px;
}

.shop_cart_title.sopcart_ttl span:nth-child(2) {
    width: 22%;
}

/* breadcrums */
/* .breadcrumbs a {
    color: #01567a;
    font-size: 16px;
    position: relative;
    display: block;
    margin-right: 25px;
}

.breadcrumbs {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.breadcrumbs a:not(.active):after {
    content: '\f105';
    position: absolute;
    right: -17px;
    top: 1px;
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 13px;
    color: black;
}

.breadcrumbs a.active {
    color: black;
    margin-right: 0;
} */

/* product view page */
.single_viewslider img {
    width: 100%;
    border-radius: 2px;
    background-color: #eceef0;
    height: 460px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_viewslid_nav img {
    width: 100%;
    height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
    background: #eceef0;
}

.product_viewslid_nav {
    margin-top: 15px;
}

.single_viewslid_nav {
    padding: 0 7px;
}

.product_viewslid_nav {
    margin-left: -7px;
    margin-right: -7px;
}

.product_quickview .product_viewslid_nav {
    margin-right: -4px;
}

.product_viewslid_nav button.slick-arrow {
    border: none;
    border-radius: 0;
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.32);
            box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.32);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: absolute;
    z-index: 1;
}

.product_viewslid_nav:hover button.slick-arrow {
    opacity: 1;
}

.product_viewslid_nav button.slick-next.slick-arrow {
    left: auto;
    right: 5px;
}

.single_viewslid_nav.slick-current img {
    border-color: #01567a;
}

.product_base_info h1 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 10px;
}

.product_top_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product_delevary_info {
    width: 226px;
}

.product_base_info .price {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product_base_info .price span.prev_price {
    font-size: 16px;
    font-weight: 500;
}

.product_base_info .rating {
    margin-bottom: 6px;
}

.brand_info {
    margin-bottom: 12px;
    font-size: 16px;
}

.brand_info span {
    margin-right: 10px;
}

.size_selector h5 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
}

.product_base_info .cart_qnty p {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 15px;
}

.delivery_opts {
    background: #F1F1F1;
    padding: 18px 15px;
    margin-bottom: 3px;
}

.delivery_opts h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
}

.single_delivery_opt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
}

.delivery_icon img {
    width: 18px;
}

.delivery_icon {
    width: 38px;
}

.delivery_content h5 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 20px;
}

.delivery_content p {
    font-size: 12px;
    margin: 0;
    line-height: 16px;
}

.delivery_cost {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
}

.product_buttons {
    padding: 20px 0;
    border-bottom: 1px solid #E9E4E4;
    margin-top: 6px;
    margin-bottom: 14px;
}

.product_other_info {
    margin-top: 14px;
}

.product_info_wrapper .share_icons.footer_icon a {
    color: black;
    border: 1px solid #E9E4E4;
}

.product_info_wrapper .share_icons.footer_icon a:hover {
    background: #E9E4E4;
}

.product_other_info p {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 26px;
}

.product_other_info p span {
    font-weight: 600;
    margin-right: 10px;
}

.share_icons.footer_icon a {
    height: 32px;
    width: 32px;
    font-size: 16px;
    line-height: 32px;
    margin-right: 12px;
}

.pv_tab_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 32px;
}

.pbt_single_btn {
    padding: 10px 15px;
    border: 1px solid black;
    border-radius: 5px 5px 0 0;
    border-bottom: none;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    margin-right: 8px;
    cursor: pointer;
}

.pbt_single_btn.active {
    border-color: #01567a;
    color: #01567a;
}

.pbt_info_text p {
    font-size: 15px;
    line-height: 1.5;
    color: #393838;
    margin-bottom: 16px;
}

.pbt_info_table {
    margin-top: 24px;
}

.pbtit_single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #B2B2B2;
}

.pbtit_single:not(:last-child) {
    border-bottom: none;
}

.pbtit_single p {
    margin-bottom: 0;
    font-size: 14px;
    -height: 18px;
    padding: 12px 15px;
}

.pbtit_single .specs {
    min-width: 190px;
    border-right: 1px solid #B2B2B2;
}

.pb_tab_content {
    display: none;
}

.pb_tab_content.active {
    display: block;
}

.pb_tab_content.qna h4 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 0;
}

.pbqna_wrp {
    border-bottom: 1px solid #F0F0F0;
    padding: 16px 0;
}

.single_pbqna {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.pbqna_content h5 {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #393838;
}

.pbqna_content p {
    font-size: 12px;
    line-height: 1.5;
    color: #7D7979;
    margin: 0;
}

.pbqna_icon {
    width: 40px;
}
.pbqna_icon i {
    font-size: 20px;
}
.single_pbqna:first-child {
    margin-bottom: 8px;
}

.pbqna_form textarea {
    width: 100%;
    display: block;
    margin-bottom: 25px;
    border: 1px solid black;
    border-radius: 5px;
    min-height: 110px;
    padding: 20px;
}

.pbqna_form {
    margin-top: 24px;
}

.review_rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.total_rating {
    margin-right: 50px;
}

.trating_number .avrage {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    line-height: 41px;
    font-weight: 500;
}

.trating_number .from {
    font-size: 35px;
    line-height: 27px;
    font-family: 'Roboto', sans-serif;
    padding-top: 7px;
    margin-left: 4px;
}

.trating_number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.trating_count {
    color: #9E9EA0;
    font-size: 13px;
    line-height: 18px;
}

.rating_pbox {
    width: 150px;
    height: 8px;
    background: #EFF0F5;
    margin-left: 14px;
    margin-right: 8px;
    border-radius: 2px;
}

.rating_pbox span {
    height: 8px;
    background: #FACA51;
    display: block;
    width: 0;
}

.review_filters {
    width: 160px;
}

.review_filters {
    width: 160px;
}

.review_header {
    padding-bottom: 0px;
    margin-top: 24px;
}

.single_review_wrp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.review_avatar img {
    width: 70px;
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
    border-radius: 50%;
}

.review_avatar {
    margin-right: 30px;
}

.single_review_wrp {
    margin-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.review_content h5 {
    font-size: 16px;
}

.review_date {
    font-size: 12px;
    color: #A1A2A3;
    line-height: 15px;
    margin-bottom: 10px;
    margin-top: 4px;
}

.review_body p {
    margin-bottom: 15px;
    color: #393838;
    line-height: 1.5;
    font-size: 16px;
}

.review_imgs img {
    width: 70px;
    height: 55px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #A39E9E;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.add_review_form {
    margin-top: 50px;
}

.add_review_form h4 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.add_review_form .rating_star {
    margin-bottom: 15px;
}

.add_review_form .rating_star span {
    cursor: pointer;
}

.add_review_form textarea {
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    min-height: 120px;
    display: block;
}

.add_review_form .files_inp {
    max-width: 470px;
}

.add_review_form .review_submit {
    margin-top: 30px;
}

/* checkout page design */

.single_billing_inp label {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.single_billing_inp input,
.single_billing_inp textarea {
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 8px 16px;
    border: 1px solid #E9E4E4;
    border-radius: 3px;
    margin-bottom: 5px;
}

.single_billing_inp input.right {
    border: 1px solid #28A745;
}

.single_billing_inp input.wrong {
    border: 1px solid #FB3245;
}

.single_billing_inp label span {
    color: #01567a;
}

.single_billing_inp p.inp_err_msg {
    margin-bottom: 0;
    color: #FB3245;
    font-size: 13px;
    line-height: 1.5;
}

.single_billing_inp {
    margin-bottom: 17px;
}

.checkout_order {
    margin-top: 40px;
    border: 1px solid #E9E4E4;
    border-radius: 3px;
    padding: 24px 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.checkout_order h4 {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
}

.checkout_order h4 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5;
    border-bottom: 1px solid #E9E4E4;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.checkorder_cont h5 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}
.checkorder_cont.subtotal-h h5 {
    font-size: 15px;
}
.single_check_order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

.checkorder_cont p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

p.checkorder_qnty {
    margin-left: auto;
    margin-right: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

p.checkorder_price {
    margin-left: auto;
    min-width: 70px;
    text-align: right;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5;
}

.single_check_order.subs,
.single_check_order.total {
    border-bottom: 1px solid #E9E4E4;
}

.single_check_order.total h5,
.single_check_order.subs h5 {
    font-weight: 600;
    text-transform: uppercase;
}

.single_check_order.total .checkorder_cont h5,
.single_check_order.total .checkorder_price {
    font-size: 18px;
    line-height: 1.5;
}

.checkorder_agree {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.checkorder_agree label {
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkorder_agree input {
    position: relative;
    top: -2px;
    cursor: pointer;
}

/* order complete page */
.order_complete {
    margin-top: 40px;
    text-align: center;
}

.complete_icon img {
    width: 70px;
}

.complete_icon {
    margin-bottom: 25px;
}

.order_complete_content h4 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.order_complete_content p {
    font-size: 16px;
    line-height: 1.5;
}

.order_complete_btn {
    margin-top: 30px;
}

/* payment design */
.payment_method_options {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single_payment_method {
    width: 150px;
    height: 107px;
    border: 1px solid #E9E4E4;
    border-radius: 5px;
    margin-right: 20px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    cursor: pointer;
}

.sp_img {
    height: 69px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.single_payment_method .sp_text {
    font-size: 13px;
    color: #393838;
    font-weight: 500;
}

.single_payment_method.active {
    border: 1px solid #01567a;
}

.single_payment_method.active::after {
    content: '\f00c';
    position: absolute;
    right: -8px;
    top: -8px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    font-size: 10px;
    z-index: 2;
    background: #01567a;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.payment_methods {
    padding: 15px 25px 35px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    display: none;
}

.payment_methods.active {
    display: block;
}

.payment_method_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.payment_method_title h4 {
    margin: 0;
    color: #393838;
    font-size: 16px;
    line-height: 1.5;
}

.payment_method_img img {
    margin-left: 5px;
}

.cash_on_text p {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 15px;
}

/* comming soon */
.comming_soon {
    padding-top: 250px;
    padding-bottom: 250px;
}

/* home page 2 */

/* home 2 header and nav  */
header.home-2 {
    padding: 12px 0;
}

nav.home-2 {
    background: #01567a;
    padding: 0;
}

 .all_category {
    background: #fff;
    color: black;
    border-radius: 5px;
}

 .all_category .bars {
    padding: 8px 15px;
}

.home-2 .search_category {
    border-right: 1px solid black;
}

.home-2 .search_subimt button {
    background: black;
    border-radius: 0 5px 5px 0;
}

.home-2 .header_icon a.icon_wrp {
    color: #fff;
    padding: 12px 0;
}

.home-2 .header_icon a.icon_wrp span {
    color: #fff;
}

.home-2 .header_icon a.icon_wrp .pops {
    background: black;
    top: 5px;
}

 .sub_categories.active {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

 .all_category:hover .sub_categories {
    margin-top: 10px;
}

.home-2 .nav_bar > li > a {
    color: black;
    font-weight: 500;
    padding-bottom: 10px;
}

.home-2 .nav_bar {
    margin-left: 65px;
}

.home-2 .nav_bar > li:hover > a {
    color: #01567a;
}

.home_2_hero {
    margin-left: 205px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.home_2_hero .hero_content h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 15px;
}

.home_2_hero .hero_content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.home_2_hero .hero_btn {
    margin-top: 30px;
}

.home_2_hero .hero_img img {
    max-height: 280px;
    -o-object-fit: contain;
       object-fit: contain;
}

.home_2_hero .hero_content {
    padding: 113px 0;
    padding-left: 110px;
}

.home-2 .tophead_items .nice-select {
    font-weight: 500;
}

.home-2 .tophead_items .nice-select .current {
    font-size: 14px;
}

/* mobile design */
.mobile_logo img {
    width: 120px;
}



span.sidebarclose {
    position: absolute;
    right: 15px;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
}

.home_2_hero ul.slick-dots button,
.banner_slider ul.slick-dots button {
    display: none;
}

.home_2_hero ul.slick-dots li,
.banner_slider ul.slick-dots li {
    border: 2px solid #01567a;
    background: transparent;
    line-height: 0;
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    margin: 0 2px;
}

.home_2_hero ul.slick-dots li.slick-active,
.banner_slider ul.slick-dots li.slick-active {
    background: #01567a;
}

.home_2_hero ul.slick-dots,
.banner_slider ul.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.mobile_bottombar .header_icon a.icon_wrp {
    padding: 0;
}

.banner_slider ul.slick-dots {
    bottom: 25px;
}

/* footer copyright */
.copyright_wrap {
    background: black;
    padding: 12px 0;
}

.copyright_text {
    font-size: 16px;
    color: #F9F9F9;
    margin-bottom: 0;
}

.payment_method {
    text-align: right;
}

.payment_method img {
    width: 333px;
    display: inline-block;
}

/* mobile search */
.mobile_search_bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9;
    padding: 30px;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.mobile_search_bar.active {
    visibility: visible;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
}

.mobile_search_text p {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #8a8a8a;
}

.mobile_search_text {
    position: relative;
}

.close_mbsearch {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 20px;
}

.mobile_search_bar form input {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #c3c3c3;
    padding: 5px 10px;
    padding-left: 0;
    font-size: 18px;
    color: black;
}

.mobile_search_bar form {
    position: relative;
}

.mobile_search_bar form button {
    position: absolute;
    right: 0;
    top: 3px;
    border: none;
    background: transparent;
}

.single_sresult_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ebebeb;
}

.sresult_img {
    width: 90px;
    padding: 10px;
}

.sresult_img img {
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
}

.sresult_content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: black;
}

.search_result_product {
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-top: 16px;
}

.mobile_search_bar form input:focus {
    border-bottom: 1px solid #696969;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

.sresult_content a {
    color: black;
}

.sresult_content a:hover {
    color: #01567a;
}

.sresult_content {
    padding-left: 8px;
}

/* top ranking */
.section_title_2 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.5;
    text-transform: capitalize;
    color: black;
    margin-bottom: 30px;
}

.single_topr_title {
    font-size: 18px;
    margin-top: 30px;
    font-weight: 500;
}

.single_top_ranking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
}

.topr_img {
    width: 105px;
    background-color: #F2F0F0;
    position: relative;
    border-radius: 5px;
    padding: 10px;
}

.topr_img img {
    width: 100%;
    height: 75px;
    -o-object-fit: contain;
       object-fit: contain;
}

.topr_img .tag {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 18px;
    background: #01567a;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 12px;
    border-radius: 0 5px 0 5px;
}

.topr_content h4 {
    font-family: Roboto;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.topr_content {
    padding-left: 15px;
}

.topr_content .rating_star span {
    font-size: 12px;
    margin-right: 0;
}

.topr_content .rating_count {
    font-size: 12px;
}

.topr_content .price {
    margin-bottom: 0;
    line-height: 1;
}

.topr_content a {
    color: black;
}

.topr_content a:hover {
    color: #01567a;
}

/* new arrivale */
.single_new_arrive {
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.sna_img {
    position: relative;
    background-color: #f3f3f3;
    /* padding: 30px 20px; */
    border-radius: 5px 5px 0 0;
}

.sna_img img.prd_img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
}

.sna_content {
    padding: 20px 20px;
    height: 125px;
    overflow: hidden;
    position: relative;
}

.sna_content a {
    color: black;
}

.sna_content a:hover {
    color: #01567a;
}

.sna_content h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 5px;
}

.sna_content .price {
    margin-bottom: 2px;
}

.sna_content .default_btn {
    padding: 7px 15px;
    min-width: 150px;
}

.single_new_arrive:hover .product_adcart {
    opacity: 1;
    margin-top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_new_arrive .product_adcart {
    left: 20px;
    top: 56px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}

.single_new_arrive:hover .ratprice {
    opacity: 0;
}

.sna_img .tag {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 10px;
    background: #ED0020;
    border-radius: 5px 0 5px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    z-index: 2;
}

.ratprice {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

/* home 1 account */
.all_category.otherpage .sub_categories_wrp {
    position: absolute;
    width: 100%;
    padding-top: 9px;
}

.all_category.otherpage:hover .sub_categories {
    margin-top: 0;
}

/* download app */
.download_bg {
    background-color: #f3f3f3;
}

.download_cont {
    padding-top: 90px;
    padding-bottom: 105px;
}
.download_left img{
    height: 100%;
    max-height: 450px;
    object-fit: contain;
}
.subscribe_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

form.subscribe_form input {
    width: 100%;
    background: #fff;
    border-radius: 5px 0 0 5px;
    border: 1px solid #01567a;
    border-right: none;
    font-size: 14px;
    padding: 11px 20px;
}

.subscribe_form button {
    min-width: 120px;
    background: #01567a;
    color: #fff;
    border: 1px solid #01567a;
    border-radius: 0 5px 5px 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.download_cont form button:hover {
    background: transparent;
    color: #01567a;
}

.download_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 35px;
}

.download_links img {
    width: 120px;
    border-radius: 5px;
}

/* my account */
.account_profile {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 24px;
}

.acprof_img img {
    width: 100%;
}

.acprof_img {
    width: 50px;
    padding: 5px;
    border: 1px solid #E9E4E4;
    border-radius: 50%;
}

.acprof_cont {
    padding-left: 16px;
}

.acprof_cont p {
    font-size: 15px;
    margin-bottom: 0;
}

.acprof_cont h4 {
    font-size: 17px;
    font-weight: 500;
    margin: 0;
}

.acprof_wrap {
    padding: 24px 16px;
}

.acprof_links a {
    display: block;
    padding-left: 32px;
    font-size: 15px;
    line-height: 22px;
    color: black;
    margin-bottom: 8px;
    position: relative;
}

.acprof_links a h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.acprof_links a h4 i {
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    font-size:22px;
}

.acprof_links {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E9E4E4;
}

.acprof_links a:last-child {
    margin-bottom: 0;
}

.acprof_links a.active,
.acprof_links a:hover {
    color: #01567a;
}

.acprof_links:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.prof_info_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 16px;
}

.prof_info_title h4 {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}

.single_prof_info {
    padding: 24px;
    min-height: 225px;
}

.prof_info_title a {
    color: #01567a;
}

.prof_info_title a:hover {
    text-decoration: underline;
}

.prfo_info_cont p {
    margin-bottom: 0px;
}

.prof_recent_order {
    margin-top: 40px;
    padding: 32px 24px;
}

.prof_recent_order h4 {
    font-size: 18px;
    line-height: 21px;
}

.single_prof_recorder {
    border: 1px solid #E9E4E4;
    margin-top: 24px;
    padding: 32px 24px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4] 130px;
    grid-template-columns: repeat(4, 1fr) 130px;
    grid-row-gap: 24px;
    padding-bottom: 22px;
}

.prorder_btn {
    -ms-grid-column: 5;
        grid-column-start: 5;
    -ms-grid-column-span: 1;
    grid-column-end: 6;
    -ms-grid-row-align: center;
        align-self: center;
}

.prorder_img {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 4;
    grid-column-end: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.prorder_img img {
    width: 80px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 16px;
}

.prorder_btn a {
    color: #01567a;
    font-size: 16px;
    border: 1px solid #01567a;
    border-radius: 3px;
    padding: 8px 24px;
    font-weight: 500;
    font-family: 'Roboto';
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.prorder_btn a:hover {
    background: #01567a;
    color: #fff;
}
.prorder_txt h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.prorder_txt p {
    font-size: 15px;
    margin: 0;
}

.profile_hambarg {
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: 22px;
    color: black;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border: 1px solid #01567a;
    height: 32px;
    width: 32px;
    border-radius: 3px;
    text-align: center;
    line-height: 32px;
}

.profile_hambarg:hover {
    color: #01567a;
}

.acprof_info_wrap {
    padding: 32px 24px;
    padding-top: 26px;
}
.acprof_info_wrap.voucher {
    min-height: 400px;
}
.acprof_info_wrap .single_billing_inp .nice_select {
    line-height: 44px;
    height: 44px;
    font-size: 15px;
}

.acprof_info_wrap .single_billing_inp {
    margin-bottom: 20px;
}

.acprof_subbtn {
    margin-top: 12px;
}

.single_billing_inp span.icon {
    position: absolute;
    right: 16px;
    top: 9px;
    font-size: 14px;
    cursor: pointer;
}

/* account order details */
.order_detail_wrapper {
    padding: 32px 24px;
}

h4.od_title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.single_orderdet h5 {
    font-size: 16px;
    margin-bottom: 4px;
}

.single_orderdet p {
    margin: 0;
    font-size: 14px;
}

.sprocess_cont {
    max-width: 618px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.single_sproc_cont p {
    margin-bottom: 0;
    margin-top: 2px;
    font-size: 15px;
}

.single_sproc_cont .sproc_cont_dot {
    width: 15px;
    height: 15px;
    background: #4CAE50;
    border-radius: 50%;
}

.single_sproc_cont .sproc_cont_dot.gray {
    background: #E9E4E4;
}

.single_sproc_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.shipping_process {
    margin-top: 70px;
}

.sprosbar {
    position: absolute;
    left: 37px;
    top: 6px;
    right: 35px;
    background: #E9E4E4;
    height: 2px;
    z-index: -1;
}

.sprosbar .sp_fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: #4CAE50;
}

.sprocess_tooltip {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border: 1px solid #E9E4E4;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 24px;
    margin-top: 32px;
    position: relative;
    background: #fff;
    max-width: 750px;
}

.sprocess_tooltip p {
    margin: 0;
    font-size: 15px;
    color: #464545;
}

.sprocess_tooltip::after {
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    border: 1px solid #E9E4E4;
    right: 87px;
    top: -14px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: -1;
    background: #fff;
}

.orderprod_img img {
    width: 64px;
    height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
}

.order_prodetails {
    margin-top: 70px;
}

.single_orderdet.pdname {
    padding-left: 16px;
}

.padding_default {
    padding: 30px 24px;
}

.align-self-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important;
}

.single_orderdet.pdname {
    width: 220px;
}

.nice_select.retorder {
    width: 180px;
    height: 38px;
    line-height: 38px;
}

.nice-select.retorder .option {
    min-height: 38px;
    line-height: 38px;
}

.single_retreq p {
    margin-left: 32px;
    line-height: 1.4;
}

.return_requirement {
    margin-top: 32px;
}

/* rating intaraction */
.intaractive_rating .rating-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.intaractive_rating .rating__icon {
    pointer-events: none;
}

.intaractive_rating .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.intaractive_rating .rating__input--none {
    display: none;
}

.intaractive_rating .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 20px;
}

.intaractive_rating .rating__icon--star {
    color: #FACA52;
}

.intaractive_rating .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}

.intaractive_rating .rating-group:hover .rating__label .rating__icon--star {
    color: #FACA52;
}

.intaractive_rating .rating__input:hover ~ .rating__label .rating__icon--star {
    color: #ddd;
}

/* write review page */
.reviewdet_textbox {
    font-size: 13px;
    color: #464545;
    line-height: 1.4;
    padding: 8px 16px;
    border: 1px solid #E9E4E4;
    margin: 0;
    border-radius: 3px;
    display: block;
    width: 100%;
    min-height: 70px;
}
.reviewdet_textbox::-webkit-input-placeholder{
    color:#cac7c7;
}
.reviewdet_textbox::-moz-placeholder{
    color:#cac7c7;
}
.reviewdet_textbox:-ms-input-placeholder{
    color:#cac7c7;
}
.reviewdet_textbox::-ms-input-placeholder{
    color:#cac7c7;
}
.reviewdet_textbox::placeholder{
    color:#cac7c7;
}

.upload_icn img {
    width: 32px;
    display: inline-block;
}

label.upload_img {
    display: block;
    padding: 12px 10px;
    border-radius: 5px;
    border: 1px dashed #01567a;
    text-align: center;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding-bottom: 8px;
}

label.upload_img p {
    font-size: 12px;
    color: #464545;
    margin: 0;
}

label.upload_img:hover {
    background: #f9f9f9;
}

.upload_icn {
    margin-bottom: 6px;
}

.img_uproles {
    position: relative;
}

.uproles_content {
    position: absolute;
    width: 330px;
    background: #FFFFFF;
    padding: 12px;
    top: 31px;
    left: -3px;
    border: 1px solid #E9E4E4;
    opacity: 0;
    visibility: hidden;
}

.uproles_content::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border: 1px solid #E9E4E4;
    left: 3px;
    top: -5px;
    z-index: -1;
    background: #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.uproles_content h4 {
    font-size: 14px;
    line-height: 14px;
}

.uproles_content ul li {
    font-size: 11px;
    list-style: disc;
    line-height: 15px;
    margin-bottom: 3px;
    color: #464545;
}

.uproles_content ul li:last-child {
    margin-bottom: 0;
}

.uproles_content ul {
    padding-left: 20px;
}

.img_uproles:hover .uproles_content {
    opacity: 1;
    visibility: visible;
}

.paymeth_img img {
    width: 70px;
    height: 40px;
    -o-object-fit: cover;
       object-fit: cover;
}

.w-130px {
    width: 130px;
}

/* product slider 2 design */
.product_slider_2 button.slick-arrow {
    left: -38px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    -webkit-box-shadow: 0 0 10px #00000024;
            box-shadow: 0 0 10px #00000024;
}

.product_slider_2 button.slick-arrow:hover {
    background: #01567a;
    color: #fff;
}

.product_slider_2 button.slick-arrow.slick-next {
    right: -40px;
}

/* top header */
.tophead_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.tophead_items a {
    color: black;
    font-size: 14px;
    margin-right: 6px;
    text-transform: capitalize;
}

.tophead_items a:hover {
    color: #01567a;
}

.tophead_items .nice-select {
    color: black;
    border: none;
    padding: 0;
    padding-right: 30px;
    height: auto;
}

.tophead_items .nice-select .list {
    width: 110px;
}

.tophead_items .nice-select .current {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.tophead_items .nice-select:hover .current {
    color: #01567a;
}

.tophead_items .nice-select:hover:after {
    border-color: #01567a;
}

.tophead_items a span {
    margin-right: 3px;
}

.top_heaeder {
    border-bottom: 1px solid #f1f1f1;
    padding: 2px 0;
}

/* contact us page */
.contact_banner {
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
}

.contact_banner .breadcrumbs {
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.contact_banner h1 {
    color: #fff;
}

.contact_banner .breadcrumbs a.active {
    color: #fff;
}

.contact_banner .breadcrumbs a:after {
    color: #fff;
}

.title_2 {
    font-size: 28px;
    margin-bottom: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact_form .footer_contact p {
    color: #464545;
}

.contact_form textarea {
    height: 80px;
}

.title_4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}

/* login */
.bg-facebook {
    background-color: #3B5999;
    border-color: #3B5999;
}

.bg-facebook:hover {
    color: #3B5999;
}

.bg-google {
    border-color: #D85040;
    background-color: #D85040;
}

.bg-google:hover {
    color: #D85040;
}

.dif_regway {
    position: relative;
    text-align: center;
}

.dif_regway .txt {
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    text-transform: uppercase;
}

.dif_regway:after {
    z-index: -1;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #E9E4E4;;
    left: 0;
    top: 13px;
}

/* 404 page */
.page_nfcont h4 {
    font-size: 25px;
}

/* about us */
.team_img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 29, 29, 0.42);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.single_team:hover .team_img:after {
    opacity: 1;
}

.single_team:hover .team_icons {
    opacity: 1;
    bottom: 16px;
}

.team_img {
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    position: relative;
}

.team_icons {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.team_icons a {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    border-radius: 4px;
    margin: 0 4px;
}

.team_cont h5 {
    font-size: 18px;
    color: black;
    margin-bottom: 3px;
    margin-top: 20px;
}

.slider-m-margin {
    margin-right: -15px;
    margin-left: -15px;
}

.slider-margin {
    margin-right: 15px;
    margin-left: 15px;
}

/* brand */
.single_brand_slid img {
    width: 180px;
    display: inline-block;
}

/* faq page */
.title_3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0;
}

.accordion-button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}
.accord_wrap {
    padding-bottom: 32px;
}
.accordion-button:not(.collapsed) {
    color: #01567a;
    background-color: #FFF;
}

.accordion-button {
    background-color: #FAFAFA;
}

.accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 18px;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    content: '\f068';
}

/* order tracking */
.track_status h4 {
    background: #28A745;
    padding: 8px 0;
    text-align: center;
    color: #fff;
}

.track_path {
    width: 650px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-top: 32px;
}

.single_track:nth-child(odd) {
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.single_track {
    max-width: 290px;
    padding: 16px;
    position: relative;
    background: #fff;
    border: 1px solid #E9E4E4;
    margin-bottom: 32px;
    width: 100%;
}

.single_track:last-child {
    margin-bottom: 0;
}

.single_track:after {
    content: '';
    position: absolute;
    left: -13px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 24px;
    height: 24px;
    background: white;
    border-left: 1px solid #E9E4E4;
    border-bottom: 1px solid #E9E4E4;
}

.single_track:nth-child(even):after {
    left: auto;
    right: -12px;
    border: none;
    border-right: 1px solid #E9E4E4;
    border-top: 1px solid #E9E4E4;
}

.single_track:before {
    content: '\f00c';
    position: absolute;
    width: 26px;
    height: 26px;
    background: #28a745;
    border-radius: 50%;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 26px;
    left: -48px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.single_track.pending:before {
    content: '\f12a';
    background-color: #ffc107;
}

.single_track:nth-child(even):before {
    left: auto;
    right: -48px;
}

.track_path:after {
    content: '';
    position: absolute;
    left: 50%;
    height: 100%;
    border-right: 1px dashed #979797;
    z-index: -1;
}

/* product quick view */
.prodquick_wrap {
    width: 100%;
    max-width: 975px;
    padding: 40px 24px;
    border-radius: 3px;
    background: #FFFFFF;
    max-height: 88vh;
    overflow-y: auto;
}

.product_quickview {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
}

.product_quickview.active {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 1;
    visibility: visible;
}

.disc_tag {
    background: #01567a;
    padding: 4px;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-family: 'Poppins';
    position: relative;
}

.disc_tag::after {
    content: '';
    position: absolute;
    left: -23px;
    top: 2px;
    width: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid #01567a;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
}

.close_quickview {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 17px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #fc3d57;
    color: #fff;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 3px;
}

.close_quickview:hover {
    color: #fff;
}

/* home 3 */
header.home-3 {
    background: #01567a;
}

.home_2_hero_wrp.home-3 {
    padding-top: 4px;
}

.home-3 .search_subimt button {
    background-color: black;
}

.home-3 .search_category {
    border-right: 1px solid black;
}

.home-3 .header_icon a.icon_wrp span {
    color: #fff;
}

.home-3 .header_icon a.icon_wrp .pops {
    background: black;
}

nav.home-3 {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}

.home-3 .nav_bar > li > a {
    color: black;
    font-weight: 500;
}

.home-3 .nav_bar > li > a:hover {
    color: #01567a;
}

.home-3 .all_category {
    background-color: black;
}

.home-3 .nav_bar {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.home-3 .sub_categories.active {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.home-3 .home_2_hero .hero_content h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 15px;
}

.home-3 .home_2_hero {
    min-height: auto;
}

.home-3 .home_2_hero .hero_img img {
    padding-top: 35px;
    width: 100%;
    max-height: 400px;
}

.home-3 .hero_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.home-3 .home_2_hero ul.slick-dots {
    bottom: 24px;
}

.single_bannercol:first-child {
    background: #76A4D8;
}

.single_bannercol h4 {
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 5px;
}

.single_bannercol {
    padding: 16px;
    padding-bottom: 19px;
}

.single_bannercol h5 {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    text-transform: uppercase;
}

.bancol_img img {
    width: 190px;
    height: 99px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_bannercol:last-child {
    background: #EAF1F9;
}

.single_bannercol:last-child h4,
.single_bannercol:last-child h5 {
    color: black;
}

.bancol_img {
    text-align: center;
}

/* flash sale */
.flash_counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.end_in {
    background: black;
    border-radius: 3px;
    padding: 4px 16px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    margin-right: 16px;
}

.single_count {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    padding: 8px 5px;
    color: #fff;
    background: #01567a;
    border-radius: 3px;
    margin-right: 8px;
    width: 36px;
    text-align: center;
}

.time_sep {
    color: #01567a;
    margin-right: 8px;
    font-size: 16px;
    font-weight: 500;
}

.seemore_2 a {
    font-weight: 500;
    font-size: 15px;
    color: #01567a;
}

.seemore_2 a span {
    margin-left: 4px;
    font-size: 14px;
}

.home-3 .topariv_img img {
    width: 230px;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 24px;
    display: inline-block;
}

.home-3 .topariv_img {
    background: #F7F7F7;
    text-align: center;
}

.qk_view {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: black;
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.qk_view span i {
    font-size: 18px;
    margin-right: 4px;
}
.qk_view span {
    margin-right: 3px;
}

.prod_soh {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(43, 45, 66, 0.48);
    opacity: 0;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}

.single_toparrival:hover .prod_soh {
    opacity: 1;
}

.cat2_img {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: #F7F7F7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
}

.cat2_img img {
    width: 56px;
    height: 56px;
    -o-object-fit: contain;
       object-fit: contain;
}

.single_category_2 {
    padding: 16px;
}

.single_category_2 {
    display: block;
    padding: 16px;
    text-align: center;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 3px;

}

.single_category_2 h5 {
    margin-top: 16px;
    font-size: 18px;
    line-height: 21px;
    color: black;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.single_category_2:hover h5 {
    color: #01567a;
}

/* best selling */
.single_bestprod {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
}

.single_bestprod:last-child {
    margin-bottom: 0;
}

.bestprod_img {
    width: 112px;
    padding: 16px;
    background: #F7F7F7;
    border-radius: 8px;
    text-align: center;
}

.bestprod_img img {
    width: 65px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
}

.bestprod_content {
    padding-left: 16px;
}

.bestprod_title {
    padding-bottom: 8px;
    border-bottom: 1px solid #BFBFBF;
    margin-bottom: 24px;
}

/* popup */
.popup_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 99;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.popup_wrap.active {
    opacity: 1;
    visibility: visible;
}

.popup_container {
    position: relative;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 66px 24px;
    background-image: url(../images/popup-bg.jpg);
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: 97% center;
    border-radius: 5px;
}

.popup_content {
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.popup_content h2 {
    font-size: 40px;
    line-height: 50px;
}

.close_popup {
    position: absolute;
    right: 13px;
    top: 8px;
    font-size: 20px;
    color: black;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.close_popup:hover {
    color: #01567a;
}

.popup_content p {
    font-size: 15px;
    line-height: 22px;
}

/* shop cart content */
.shopcart {
    position: relative;
}

.shopcart_dropdown {
    position: absolute;
    background: #fff;
    right: 0;
    top: 100%;
    z-index: 99;
    padding: 16px;
    width: 300px;
    border-radius: 0 0 3px 3px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cartdrop_img img {
    width: 75px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
}

.cartdrop_img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.single_cartdrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-right: 20px;
}

.cart_droptitle {
    padding-bottom: 0px;
    margin-bottom: 12px;
    border-bottom: 1px solid #d8d8d8;
}

.cartdrop_cont {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 16px;
}

span.remove_cart {
    position: absolute;
    right: 0;
    color: black;
    cursor: pointer;
}

span.remove_cart:hover {
    color: #01567a;
}

.cartdrop_footer .default_btn {
    padding: 6px 8px;
}

.shopcart:hover .shopcart_dropdown {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.mobile_title {
    background: #01567a;
    text-align: center;
    color: #fff;
    padding: 14px 0px;
    text-transform: capitalize;
    position: relative;
}

.total_cartdrop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #d8d8d8;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.wishlist .cart_img img {
    width: 80px;
    height: 80px;
}



/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container, .container-lg {
      max-width: 1200px;
  }

  .home_2_hero .container {
      padding: 0px;
  }

  .footet_text p {
      max-width: 330px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .search_input {
      width: 215px;
  }

  .hero_content h1 {
      font-size: 48px;
      line-height: 52px;
  }

  .download_img img {
      width: 130px;
  }

  .cart_cont {
      width: 200px;
  }

  .cart_sum_pros button {
      padding: 8px 6px;
      font-size: 13px;
  }

  .single_shop_cart,
  .cart_summary {
      padding: 20px 15px;
  }

  .cart_price p {
      font-size: 20px;
  }

  .product_base_info {
      width: 270px;
  }

  .product_base_info h1 {
      font-size: 24px;
  }

  .delivery_opts h4 {
      font-size: 13px;
  }

  .delivery_content h5 {
      font-size: 13px;
  }

  .delivery_icon img {
      width: 15px;
  }

  .delivery_icon {
      width: 30px;
  }

  .delivery_content p {
      font-size: 11px;
  }

  .delivery_opts {
      padding: 15px 10px;
  }

  .delivery_cost {
      font-size: 12px;
  }

  .home_2_hero .hero_content {
      padding-left: 40px;
  }

  .home_2_hero .hero_content h1 {
      font-size: 35px;
  }

 .all_category {
      margin-right: 40px;
  }

  .mega_menu {
      width: 748px;
  }

  .home-2 .nav_bar {
      margin-left: 42px;
  }

  .mega_menu_wrap h4 {
      font-size: 17px;
      letter-spacing: -0.5px;
  }

  .single_mega_menu.brnd {
      width: 17%;
  }

  .single_mega_menu {
      width: 28%;
  }
  .home_2_hero {
      margin-left: 215px;
  }
  .search {
      width: 500px;
  }
  .acprof_links a {
      font-size: 14px;
  }
  .acprof_links a h4 {
      font-size: 16px;
  }
  .acprof_links a h4 img {
      width: 16px;
  }
  .prof_info_title h4 {
      font-size: 16px;
  }
  .prfo_info_cont p {
      margin-bottom: 1px;
      font-size: 15px;
  }
  .sprocess_tooltip::after {
      right: 36px;
  }
  .return_ordwrap .single_orderdet.pdname {
      max-width: 200px;
  }
  .orderprod_img img {
      width: 56px;
      height: 56px;
  }
  .return_ordwrap .default_btn.small {
      width: 130px;
      padding: 6px 15px;
  }
  .single_bannercol{
      width: 50%
  }
  .home_2_hero > .container {
      padding: 0;
  }
  .shop_cart_wrap.wishlist .cart_cont {
      width: 250px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .feature_icon img {
      width: 40px;
      max-height: 35px;
  }

  .feature_icon {
      margin-right: 12px;
  }

  .filter_box {
      margin-bottom: 10px;
  }


  .list_product_img {
      min-height: 283px;
  }

  .cart_sum_coupon button {
      width: 25%;
  }

  .cart_sum_coupon input {
      width: 75%;
  }

  .cart_cont {
      width: 230px;
  }

  .wishlist .cart_img {
      max-width: 100px;
      padding: 6px;
      margin-right: 15px;
  }

  .wishlist .cart_img img {
      max-height: 70px;
  }

  .wishlist .cart_price p {
      font-size: 20px;
  }

  .shop_cart_wrap.wishlist .cart_cont {
      width: 200px;
  }

  .product_info_wrapper {
      margin-top: 40px;
  }

  .nav_bar a {
      margin: 0 5px;
      padding: 15px 5px;
  }

  .home-2 .nav_bar {
      margin-left: 30px;
  }

  .home_2_hero {
      margin-left: 0;
      margin-right: 0;
  }

  .home_2_hero .hero_content {
      padding-left: 0;
  }

  .header_icon a.icon_wrp span.icon img {
      height: 24px;
      width: 24px;
  }

  .header_icon a.icon_wrp.crt .pops {
      top: -6px;
  }

  .copyright_wrap {
      margin-bottom: 70px;
  }

  .sprocess_tooltip::after {
      right: 36px;
  }

  .return_ordwrap .single_orderdet.pdname {
      width: 200px;
  }
  .orderprod_img img {
      width: 56px;
      height: 56px;
  }
  .return_ordwrap .default_btn.small {
      min-width: 130px;
      padding: 6px 15px;
  }
  .home_2_hero .hero_content h1 {
      font-size: 38px;
  }
}

/* Extra small devices (portrait phones, less than 768px) */
@media (max-width: 767.98px) {
  .header_icon a.icon_wrp .pops {
      top: 17px;
  }
  .mobile_bottombar .header_icon a.icon_wrp .pops {
    top: 0px;
    right: -10px;
  }
  .home-2 .header_icon a.icon_wrp .pops {
      top: 8px;
  }
  .nav_bar {
      margin-left: 15px;
  }

  .nav_bar a {
      margin: 0 5px;
      padding: 15px 6px;
  }

  .hero_area {
      min-height: 430px;
  }

  .hero_content h1 {
      font-size: 42px;
      line-height: 46px;
      margin-bottom: 20px;
  }

  .hero_btn {
      margin-top: 30px;
  }

  .logo img {
      width: 150px;
  }

  .feature_icon img {
      width: 40px;
      max-height: 35px;
  }

  .feature_icon {
      margin-right: 12px;
  }

  .filter_box {
      margin-bottom: 10px;
  }



  .cart_cont, .shop_cart_wrap.wishlist .cart_cont {
      width: 100%;
  }

  .single_shop_cart,
  .cart_summary {
      padding: 20px 15px;
  }

  .cart_img {
    max-width: 120px;
    background: transparent;
    margin-right: 10px;
  }

  .wishlist .cart_price {
      text-align: left;
      padding-left: 10px;
  }

  .hero_btn button {
      padding: 12px 35px;
  }

  .section_title h2 {
      font-size: 26px;
  }

  .search_subimt {
      width: 130px;
  }

  .product_info_wrapper {
      margin-top: 24px;
  }

  .single_viewslider img {
      height: 350px;
  }

  .single_viewslid_nav img {
      height: 110px;
  }

  .home_2_hero {
      margin-left: 0;
      margin-right: 0;
  }

  .home_2_hero .hero_content {
      padding-left: 0;
  }
  .header_icon a.icon_wrp .pops {
      font-size: 10px;
      width: 15px;
      height: 15px;
      line-height: 16px;
  }
  .home_2_hero .hero_img img {
      max-height: 230px;
  }
  .home_2_hero {
      min-height: 370px;
  }

  .header_icon a.icon_wrp span.icon img {
      height: 24px;
      width: 24px;
  }

  .copyright_wrap {
      margin-bottom: 70px;
  }
  .copyright_text {
      text-align: center;
      margin-bottom: 10px;
  }


  .feature_icon img {
      width: 25px;
      max-height: 25px;
      margin-bottom: 5px;
  }

  .feature_content h4 {
      font-size: 14px;
      line-height: 18px;
      margin-bottom: 2px;
  }

  .feature_content p {
      font-size: 10px;
      line-height: 1;
  }

  .feature_icon {
      margin-right: 0px;
  }

  .section_title_2 {
      font-size: 26px;
  }


  .product_slider .single_product {
      margin: 0 15px;
  }

  .single_shop_cart {
      max-width: 320px;
      margin: 0 auto;
      margin-top: 30px;
  }

  .wishlist .cart_price {
      width: 100%;
      margin-top: 5px;
      padding-left: 0;
  }

  .wishlist .cart_price p {
      font-size: 18px;
  }

  .cart_summary {
      max-width: 320px;
      margin: 0 auto;
  }




  .prorder_txt h5 {
      margin-bottom: 3px;
  }

  .prorder_txt.prorder_total {
      display: none;
  }

  .prorder_txt.prorder_purchased {
      -ms-grid-column-align: center;
          justify-self: center;
  }

  .prorder_txt.prorder_qnty {
      -ms-grid-column-align: center;
          justify-self: center;
  }

  .sprocess_tooltip {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start;
  }
  .order_detail_wrapper .orderdet_btn{
      margin-top: 16px;
      width: 100%;
  }
  .single_orderdet.pdname {
      width: calc(100% - 64px);
  }
  .sprocess_tooltip::after {
      right: 20px;
  }
  .default_btn.small {
      min-width: 130px;
      padding: 6px 15px;
  }
  .single_shopbycat {
      height: 150px;
  }
  .adto_wish {
      height: 26px;
      width: 26px;
      font-size: 16px;
      top: 10px;
      right:10px;
  }
  .persof {
      padding: 5px 6px;
      top: 10px;
      left:10px;
  }
  h2.section_title_3 {
      font-size: 24px;
      margin-bottom: 16px;
  }
  .top_heaeder{
      display: none;
  }
  .title_2{
      font-size: 26px;
  }
  .contact_banner {
      height: 280px;
  }
  .page_nfcont h4 {
      font-size: 22px;
  }
  .prodquick_wrap {
      padding: 24px 16px;
      padding-top: 5px;
  }
  .close_quickview {
      top: 0;
      position: -webkit-sticky;
      position: sticky;
      z-index: 9;
      text-align: right;
      margin-left: auto;
      right: 0px;
  }
  .track_path {
      width: 100%;
      padding-left: 48px;
  }
  .single_track:nth-child(odd){
      -ms-flex-item-align: start;
          align-self: flex-start
  }
  .track_path:after {
      left: 13px;
  }
  .single_track:nth-child(even):before{
      left: -48px;
  }
  .single_track:nth-child(even):after {
      left: -13px;
      border: none;
      border-left: 1px solid #E9E4E4;
      border-bottom: 1px solid #E9E4E4;
  }
  .list_product_img {
      min-height: 200px;
  }
  .list_product_img img {
      height: 160px;
  }
  .popup_container {
      background-position: 400px center;
  }
  .home_2_hero .hero_content h1 {
      font-size: 29px;
  }
  .cart_cont p.price {
      margin-bottom: 8px;
  }
  .cart_qnty {
      margin-top: 4px;
  }
  .download_left img {
      max-height: 330px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .download_img img {
      width: 110px;
  }

  .sorting_filter .nice-select {
      width: 160px;
  }

  .list_product_img {
      min-height: 283px;
  }

  .wishlist .cart_price p {
      font-size: 16px;
  }

  .wishlist .cart_cont {
      width: 170px;
  }

  .wishlist .cart_cont h5 {
      font-size: 16px;
  }

  .wishlist .cart_price {
      min-width: 80px;
  }

  button.list_product_btn {
      padding: 4px 10px;
      font-size: 12px;
      min-width: 110px;
  }

  .cart_remove {
      font-size: 14px;
  }
  .feature_icon {
      margin-right: 10px;
  }
  .w-sm-20{
      width: 20%;
  }
  .popup_container {
      background-position: 400px center;
  }
}

@media(max-width: 575.98px) {

  .header_icon a.icon_wrp span.icon {
      font-size: 20px;
  }

  .header_icon a.icon_wrp {
      margin-left: 15px;
      padding: 10px 0;
  }

  .logo img {
      width: 120px;
  }

  .hero_area {
      padding: 70px 0;
  }

  .download_img img {
      width: 130px;
  }

  .search_subimt {
      width: 90px;
  }

  .product_top_info {
      display: block;
  }

  .product_delevary_info {
      margin-bottom: 20px;
  }

  .product_buttons .default_btn {
      min-width: auto;
  }

  .breadcrumbs a {
      font-size: 13px;
  }

  .pbtit_single .specs {
      min-width: 130px;
  }

  .pbt_single_btn:last-child {
      margin-right: 0;
  }

  .pbt_single_btn {
      padding: 10px 8px;
      margin-right: 10px;
      font-size: 13px;
  }

  .review_avatar img {
      width: 50px;
      height: 50px;
  }

  .review_avatar {
      margin-right: 10px;
  }

  .review_body p {
      font-size: 14px;
  }

  .review_imgs img {
      width: 60px;
      height: 50px;
  }

  .total_rating {
      margin-right: 0px;
      margin-bottom: 20px;
  }

  .review_rating {
      display: block;
  }

  p.checkorder_qnty {
      margin-right: 10px;
  }

  .order_complete_content h4 {
      font-size: 24px;
  }

  .single_payment_method {
      margin-right: 10px;
  }

  .single_payment_method .sp_text {
      line-height: 1.2;
      text-align: center;
  }

  .sp_img {
      height: 68px;
  }

  .credit_crd img {
      width: 50px;
  }

  .home_2_hero {
      min-height: 330px;
  }

  .mobile_bottombar .header_icon a.icon_wrp span.icon_text {
      display: block;
  }

  .single_top_ranking {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .topr_img {
      width: 100%;
      padding: 20px;
  }
  .topr_img img {
      height: 70px;
  }
  .topr_content {
      padding-left: 0;
      padding-top: 12px;
  }
  .product_slider{
      max-width: 300px;
      margin: 0 auto;
  }
  .header_icon a.icon_wrp .pops {
      top: 8px;
  }




  .home-3 .home_2_hero .hero_content {
      padding: 70px 0;
  }



  .home_2_hero .hero_btn {
      margin-top: 20px;
  }


}

@media (max-width: 992px) {
  .home_2_hero > .container {
      padding: 0;
      max-width: 100%;
  }
  .home_2_hero .hero_img img {
      max-height: 280px;
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: right;
         object-position: right;
  }


  .mobile_menwrap {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9;
      height: 100%;
      overflow: hidden;
      background: #00000070;
      cursor: default;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
  }

  .sub_categories_wrp .subcats_title {
      background: #01567a;
      text-align: center;
      color: #fff;
      padding: 14px 0px;
      text-transform: capitalize;
  }

  .mobile_menwrap.active{
      opacity: 1;
      visibility: visible;
  }

  .all_category {
      margin: 0;
      width: 0;
  }

  .sub_categories, .mobile_menu_2, .mobile_cart_wrap {
      position: relative;
      width: 320px;
      margin: 0;
      margin-top: 0px !important;
      height: 100%;
      overflow-y: auto;
      background: #FFF;
      padding: 0;
      opacity: 1;
      visibility: visible;
      left: -320px;
      top: 0;
      visibility: hidden !important;
      -webkit-transition: .4s;
      -o-transition: .4s;
      transition: .4s;
  }

  .mobile_menwrap.active .sub_categories, .mobile_menwrap.active .mobile_menu_2, .mobile_menwrap.active .mobile_cart_wrap{
      left: 0;
      visibility: visible !important;
  }

  .sub_categories .singlecats {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 0 20px;
  }

  .mega_menu {
      position: static;
      background: transparent;
      border: none;
      border-radius: 0;
      width: 100%;
      height: auto;
      padding: 5px;
      margin-left: 0;
      opacity: 1;
      visibility: visible;
      width: 100%;
      padding-bottom: 0px;
      padding-top: 5px;
      padding-left: 15px;
      display: none;
  }

  .sub_categories .singlecats .wsicon,
  .sub_categories .singlecats:hover .wsicon {
      margin-right: 0;
  }

  .sub_categories .singlecats.active:hover {
      background: #fff;
  }

  .singlecats.active .mega_menu {
      display: block;
  }

  .single_mega_menu {
      width: 100%;
  }

  .mega_menu_wrap h4 {
      cursor: pointer;
      position: relative;
      font-size: 16px;
      font-weight: 400;
      color: #424242 !important
  }

  .mega_menu_wrap h4:hover {
      color: #01567a;
  }

  .mega_menu_wrap h4::after {
      position: absolute;
      right: -20px;
      top: 0;
      content: '\f067';
      font-family: 'Line Awesome Free';
      font-weight: 900;
      font-size: 15px;
  }

  .mega_menu_wrap.active h4::after{
      content: '\f068';
  }

  .mega_categories {
      display: none;
      padding-left: 15px;
  }



  .mega_menu_wrap:first-child {
      margin-bottom: 0;
  }

  .sub_categories .singlecats .wsicon {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
  }

  .sub_categories .singlecats .wsicon {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg);
  }

  .sub_categories .singlecats.active .wsicon {
      -webkit-transform: rotate(360deg);
          -ms-transform: rotate(360deg);
              transform: rotate(360deg);
  }

  .mega_menu_wrap.active .mega_categories{
      display: block;
  }



  .mobile_menu_2 a:hover {
      background-color: #efefef;
  }

  .mobile_menu_2 a {
      display: block;
      padding: 10px 15px;
      width: 100%;
      text-decoration: none;
      color: black;
      padding-left: 25px;
      border-bottom: 1px dotted #C8C8CE;
      text-transform: capitalize;
  }

  .mobile_menu_2 .submn a {
      padding-left: 48px;
  }

  .mobile_menu_2 .submn {
      display: none;
  }

  .mobile_menu_2 .withsub.active .submn {
      display: block;
  }

  .mobile_menu_2 ul li {
      display: block;
      position: relative;
  }

  .mobile_menu_2 ul li.withsub:after {
      content: '\f107';
      position: absolute;
      right: 15px;
      top: 10px;
      font-weight: 900;
      font-size: 15px;
      font-family: 'Line Awesome Free';
      -webkit-transition: .2s;
      -o-transition: .2s;
      transition: .2s;
  }

  .mobile_menu_2 .withsub.active:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
  }

  .home_2_hero_wrp{
      padding-left: 0;
      padding-right: 0;
  }




  .home_2_hero_wrp.home-3 .col-xl-9,.home_2_hero_wrp.home-3 .row {
      padding: 0;
      margin: 0;
  }
  .home_2_hero_wrp.home-3 .col-xl-3{
      padding: 0 13px;
  }


  .home_2_hero_wrp.home-3{
      padding: 0;
  }

}

.mobile_bottombar{
  display: none;
}

.single_feature {
  min-height: 85px;
  max-width: 270px;
  margin: 0 auto;
}
.content-mobile{
  display: none;
}
.shadow_sm {
  -webkit-box-shadow: 0px 0px 16px rgb(0 0 0 / 8%);
  box-shadow: 0px 0px 16px rgb(0 0 0 / 8%);
}
.pl-0{
  padding-left: 0;
}

.products-mobile{
  display: none;
}


.wrapperds {
  position: relative;
}

.ul {
  width: 285px;
  height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}
.second-level{
  height: auto!important;
}
.li {
  position: static;
  list-style: none;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 15px;
    width: 100%;
    text-decoration: none;
    color: black;
    padding-bottom: 5px!important;
    padding-left: 25px;
    border-bottom: 1px dotted #C8C8CE;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.li .wrapperds {
  position: absolute;
  z-index: 10;
  display: none;
}
.li:hover > .wrapperds {
  display: block;
}

.ul {
  /* margin: 1em; */
  color: black;
  background-color: #fff;
  font-size: 14px;
  padding-left: 12px;
}

.li {
  padding: 1em;
}
.li .ul {
  margin: 0;
}
.li .wrapperds {
  cursor: auto;
}
.li .wrapperds .li {
  padding: 1em;
}

.all_category:hover > .sub_categories_wrp{
  display: block;
}
.sub_categories_wrp{
  display: none;
}
.cart-top{
  margin-top: 90px;
}
.pro-marg{
  margin-top: 73px;
}
.cart-position{
  text-align: center;
}
