@charset "UTF-8";

@font-face {
  font-family: 'Lato';
  src: url("./fonts/lato/Lato-Regular.eot?v=1.0.0");
  src: url("./fonts/lato/Lato-Regular.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("./fonts/lato/Lato-Regular.woff2?v=1.0.0") format("woff2"), url("./fonts/lato/Lato-Regular.woff?v=1.0.0") format("woff"), url("./fonts/lato/Lato-Regular.ttf?v=1.0.0") format("truetype"), url("./fonts/lato/Lato-Regular.svg?v=1.0.0#LatoRegular") format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Lato";
  src: url("./fonts/lato/Lato-Medium.eot?v=1.0.0");
  src: url("./fonts/lato/Lato-Medium.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("./fonts/lato/Lato-Medium.woff2?v=1.0.0") format("woff2"), url("./fonts/lato/Lato-Medium.woff?v=1.0.0") format("woff"), url("./fonts/lato/Lato-Medium.ttf?v=1.0.0") format("truetype"), url("./fonts/lato/Lato-Medium.svg?v=1.0.0#LatoMedium") format("svg");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Lato";
  src: url("./fonts/lato/Lato-Semibold.eot?v=1.0.0");
  src: url("./fonts/lato/Lato-Semibold.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("./fonts/lato/Lato-Semibold.woff2?v=1.0.0") format("woff2"), url("./fonts/lato/Lato-Semibold.woff?v=1.0.0") format("woff"), url("./fonts/lato/Lato-Semibold.ttf?v=1.0.0") format("truetype"), url("./fonts/lato/Lato-Semibold.svg?v=1.0.0#LatoSemibold") format("svg");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Lato";
  src: url("./fonts/lato/Lato-Bold.eot?v=1.0.0");
  src: url("./fonts/lato/Lato-Bold.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("./fonts/lato/Lato-Bold.woff2?v=1.0.0") format("woff2"), url("./fonts/lato/Lato-Bold.woff?v=1.0.0") format("woff"), url("./fonts/lato/Lato-Bold.ttf?v=1.0.0") format("truetype"), url("./fonts/lato/Lato-Bold.svg?v=1.0.0#LatoBold") format("svg");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Lato";
  src: url("./fonts/lato/Lato-Black.eot?v=1.0.0");
  src: url("./fonts/lato/Lato-Black.eot?#iefix&v=1.0.0") format("embedded-opentype"), url("./fonts/lato/Lato-Black.woff2?v=1.0.0") format("woff2"), url("./fonts/lato/Lato-Black.woff?v=1.0.0") format("woff"), url("./fonts/lato/Lato-Black.ttf?v=1.0.0") format("truetype"), url("./fonts/lato/Lato-Black.svg?v=1.0.0#LatoBlack") format("svg");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  text-rendering: optimizeLegibility;
}

/* custom */
/*
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.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.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}


@font-face {
  font-family: 'Linearicons-Free';
  src: url("../css/webfonts/Linearicons-Free.eot?w118d");
  src: url("../css/webfonts/Linearicons-Free.eot?#iefixw118d") format("embedded-opentype"), url("../css/webfonts/Linearicons-Free.woff2?w118d") format("woff2"), url("../css/webfonts/Linearicons-Free.woff?w118d") format("woff"), url("../css/webfonts/Linearicons-Free.ttf?w118d") format("truetype"), url("../css/webfonts/Linearicons-Free.svg?w118d#Linearicons-Free") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.lnr {
  font-family: 'Linearicons-Free';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lnr-home:before {
  content: "\e800";
}

.lnr-apartment:before {
  content: "\e801";
}

.lnr-pencil:before {
  content: "\e802";
}

.lnr-magic-wand:before {
  content: "\e803";
}

.lnr-drop:before {
  content: "\e804";
}

.lnr-lighter:before {
  content: "\e805";
}

.lnr-poop:before {
  content: "\e806";
}

.lnr-sun:before {
  content: "\e807";
}

.lnr-moon:before {
  content: "\e808";
}

.lnr-cloud:before {
  content: "\e809";
}

.lnr-cloud-upload:before {
  content: "\e80a";
}

.lnr-cloud-download:before {
  content: "\e80b";
}

.lnr-cloud-sync:before {
  content: "\e80c";
}

.lnr-cloud-check:before {
  content: "\e80d";
}

.lnr-database:before {
  content: "\e80e";
}

.lnr-lock:before {
  content: "\e80f";
}

.lnr-cog:before {
  content: "\e810";
}

.lnr-trash:before {
  content: "\e811";
}

.lnr-dice:before {
  content: "\e812";
}

.lnr-heart:before {
  content: "\e813";
}

.lnr-star:before {
  content: "\e814";
}

.lnr-star-half:before {
  content: "\e815";
}

.lnr-star-empty:before {
  content: "\e816";
}

.lnr-flag:before {
  content: "\e817";
}

.lnr-envelope:before {
  content: "\e818";
}

.lnr-paperclip:before {
  content: "\e819";
}

.lnr-inbox:before {
  content: "\e81a";
}

.lnr-eye:before {
  content: "\e81b";
}

.lnr-printer:before {
  content: "\e81c";
}

.lnr-file-empty:before {
  content: "\e81d";
}

.lnr-file-add:before {
  content: "\e81e";
}

.lnr-enter:before {
  content: "\e81f";
}

.lnr-exit:before {
  content: "\e820";
}

.lnr-graduation-hat:before {
  content: "\e821";
}

.lnr-license:before {
  content: "\e822";
}

.lnr-music-note:before {
  content: "\e823";
}

.lnr-film-play:before {
  content: "\e824";
}

.lnr-camera-video:before {
  content: "\e825";
}

.lnr-camera:before {
  content: "\e826";
}

.lnr-picture:before {
  content: "\e827";
}

.lnr-book:before {
  content: "\e828";
}

.lnr-bookmark:before {
  content: "\e829";
}

.lnr-user:before {
  content: "\e82a";
}

.lnr-users:before {
  content: "\e82b";
}

.lnr-shirt:before {
  content: "\e82c";
}

.lnr-store:before {
  content: "\e82d";
}

.lnr-cart:before {
  content: "\e82e";
}

.lnr-tag:before {
  content: "\e82f";
}

.lnr-phone-handset:before {
  content: "\e830";
}

.lnr-phone:before {
  content: "\e831";
}

.lnr-pushpin:before {
  content: "\e832";
}

.lnr-map-marker:before {
  content: "\e833";
}

.lnr-map:before {
  content: "\e834";
}

.lnr-location:before {
  content: "\e835";
}

.lnr-calendar-full:before {
  content: "\e836";
}

.lnr-keyboard:before {
  content: "\e837";
}

.lnr-spell-check:before {
  content: "\e838";
}

.lnr-screen:before {
  content: "\e839";
}

.lnr-smartphone:before {
  content: "\e83a";
}

.lnr-tablet:before {
  content: "\e83b";
}

.lnr-laptop:before {
  content: "\e83c";
}

.lnr-laptop-phone:before {
  content: "\e83d";
}

.lnr-power-switch:before {
  content: "\e83e";
}

.lnr-bubble:before {
  content: "\e83f";
}

.lnr-heart-pulse:before {
  content: "\e840";
}

.lnr-construction:before {
  content: "\e841";
}

.lnr-pie-chart:before {
  content: "\e842";
}

.lnr-chart-bars:before {
  content: "\e843";
}

.lnr-gift:before {
  content: "\e844";
}

.lnr-diamond:before {
  content: "\e845";
}

.lnr-linearicons:before {
  content: "\e846";
}

.lnr-dinner:before {
  content: "\e847";
}

.lnr-coffee-cup:before {
  content: "\e848";
}

.lnr-leaf:before {
  content: "\e849";
}

.lnr-paw:before {
  content: "\e84a";
}

.lnr-rocket:before {
  content: "\e84b";
}

.lnr-briefcase:before {
  content: "\e84c";
}

.lnr-bus:before {
  content: "\e84d";
}

.lnr-car:before {
  content: "\e84e";
}

.lnr-train:before {
  content: "\e84f";
}

.lnr-bicycle:before {
  content: "\e850";
}

.lnr-wheelchair:before {
  content: "\e851";
}

.lnr-select:before {
  content: "\e852";
}

.lnr-earth:before {
  content: "\e853";
}

.lnr-smile:before {
  content: "\e854";
}

.lnr-sad:before {
  content: "\e855";
}

.lnr-neutral:before {
  content: "\e856";
}

.lnr-mustache:before {
  content: "\e857";
}

.lnr-alarm:before {
  content: "\e858";
}

.lnr-bullhorn:before {
  content: "\e859";
}

.lnr-volume-high:before {
  content: "\e85a";
}

.lnr-volume-medium:before {
  content: "\e85b";
}

.lnr-volume-low:before {
  content: "\e85c";
}

.lnr-volume:before {
  content: "\e85d";
}

.lnr-mic:before {
  content: "\e85e";
}

.lnr-hourglass:before {
  content: "\e85f";
}

.lnr-undo:before {
  content: "\e860";
}

.lnr-redo:before {
  content: "\e861";
}

.lnr-sync:before {
  content: "\e862";
}

.lnr-history:before {
  content: "\e863";
}

.lnr-clock:before {
  content: "\e864";
}

.lnr-download:before {
  content: "\e865";
}

.lnr-upload:before {
  content: "\e866";
}

.lnr-enter-down:before {
  content: "\e867";
}

.lnr-exit-up:before {
  content: "\e868";
}

.lnr-bug:before {
  content: "\e869";
}

.lnr-code:before {
  content: "\e86a";
}

.lnr-link:before {
  content: "\e86b";
}

.lnr-unlink:before {
  content: "\e86c";
}

.lnr-thumbs-up:before {
  content: "\e86d";
}

.lnr-thumbs-down:before {
  content: "\e86e";
}

.lnr-magnifier:before {
  content: "\e86f";
}

.lnr-cross:before {
  content: "\e870";
}

.lnr-menu:before {
  content: "\e871";
}

.lnr-list:before {
  content: "\e872";
}

.lnr-chevron-up:before {
  content: "\e873";
}

.lnr-chevron-down:before {
  content: "\e874";
}

.lnr-chevron-left:before {
  content: "\e875";
}

.lnr-chevron-right:before {
  content: "\e876";
}

.lnr-arrow-up:before {
  content: "\e877";
}

.lnr-arrow-down:before {
  content: "\e878";
}

.lnr-arrow-left:before {
  content: "\e879";
}

.lnr-arrow-right:before {
  content: "\e87a";
}

.lnr-move:before {
  content: "\e87b";
}

.lnr-warning:before {
  content: "\e87c";
}

.lnr-question-circle:before {
  content: "\e87d";
}

.lnr-menu-circle:before {
  content: "\e87e";
}

.lnr-checkmark-circle:before {
  content: "\e87f";
}

.lnr-cross-circle:before {
  content: "\e880";
}

.lnr-plus-circle:before {
  content: "\e881";
}

.lnr-circle-minus:before {
  content: "\e882";
}

.lnr-arrow-up-circle:before {
  content: "\e883";
}

.lnr-arrow-down-circle:before {
  content: "\e884";
}

.lnr-arrow-left-circle:before {
  content: "\e885";
}

.lnr-arrow-right-circle:before {
  content: "\e886";
}

.lnr-chevron-up-circle:before {
  content: "\e887";
}

.lnr-chevron-down-circle:before {
  content: "\e888";
}

.lnr-chevron-left-circle:before {
  content: "\e889";
}

.lnr-chevron-right-circle:before {
  content: "\e88a";
}

.lnr-crop:before {
  content: "\e88b";
}

.lnr-frame-expand:before {
  content: "\e88c";
}

.lnr-frame-contract:before {
  content: "\e88d";
}

.lnr-layers:before {
  content: "\e88e";
}

.lnr-funnel:before {
  content: "\e88f";
}

.lnr-text-format:before {
  content: "\e890";
}

.lnr-text-format-remove:before {
  content: "\e891";
}

.lnr-text-size:before {
  content: "\e892";
}

.lnr-bold:before {
  content: "\e893";
}

.lnr-italic:before {
  content: "\e894";
}

.lnr-underline:before {
  content: "\e895";
}

.lnr-strikethrough:before {
  content: "\e896";
}

.lnr-highlight:before {
  content: "\e897";
}

.lnr-text-align-left:before {
  content: "\e898";
}

.lnr-text-align-center:before {
  content: "\e899";
}

.lnr-text-align-right:before {
  content: "\e89a";
}

.lnr-text-align-justify:before {
  content: "\e89b";
}

.lnr-line-spacing:before {
  content: "\e89c";
}

.lnr-indent-increase:before {
  content: "\e89d";
}

.lnr-indent-decrease:before {
  content: "\e89e";
}

.lnr-pilcrow:before {
  content: "\e89f";
}

.lnr-direction-ltr:before {
  content: "\e8a0";
}

.lnr-direction-rtl:before {
  content: "\e8a1";
}

.lnr-page-break:before {
  content: "\e8a2";
}

.lnr-sort-alpha-asc:before {
  content: "\e8a3";
}

.lnr-sort-amount-asc:before {
  content: "\e8a4";
}

.lnr-hand:before {
  content: "\e8a5";
}

.lnr-pointer-up:before {
  content: "\e8a6";
}

.lnr-pointer-right:before {
  content: "\e8a7";
}

.lnr-pointer-down:before {
  content: "\e8a8";
}

.lnr-pointer-left:before {
  content: "\e8a9";
}

/* Ionicons, v2.0.0 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons Android-style icons originally built by Google’s Material Design Icons: https://github.com/google/material-design-icons used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. */
@font-face {
  font-family: "Ionicons";
  src: url("../css/webfonts/ionicons.eot?v=2.0.0");
  src: url("../css/webfonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../css/webfonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../css/webfonts/ionicons.woff?v=2.0.0") format("woff"), url("../css/webfonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.ion,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ion-alert:before {
  content: "\f101";
}

.ion-alert-circled:before {
  content: "\f100";
}

.ion-android-add:before {
  content: "\f2c7";
}

.ion-android-add-circle:before {
  content: "\f359";
}

.ion-android-alarm-clock:before {
  content: "\f35a";
}

.ion-android-alert:before {
  content: "\f35b";
}

.ion-android-apps:before {
  content: "\f35c";
}

.ion-android-archive:before {
  content: "\f2c9";
}

.ion-android-arrow-back:before {
  content: "\f2ca";
}

.ion-android-arrow-down:before {
  content: "\f35d";
}

.ion-android-arrow-dropdown:before {
  content: "\f35f";
}

.ion-android-arrow-dropdown-circle:before {
  content: "\f35e";
}

.ion-android-arrow-dropleft:before {
  content: "\f361";
}

.ion-android-arrow-dropleft-circle:before {
  content: "\f360";
}

.ion-android-arrow-dropright:before {
  content: "\f363";
}

.ion-android-arrow-dropright-circle:before {
  content: "\f362";
}

.ion-android-arrow-dropup:before {
  content: "\f365";
}

.ion-android-arrow-dropup-circle:before {
  content: "\f364";
}

.ion-android-arrow-forward:before {
  content: "\f30f";
}

.ion-android-arrow-up:before {
  content: "\f366";
}

.ion-android-attach:before {
  content: "\f367";
}

.ion-android-bar:before {
  content: "\f368";
}

.ion-android-bicycle:before {
  content: "\f369";
}

.ion-android-boat:before {
  content: "\f36a";
}

.ion-android-bookmark:before {
  content: "\f36b";
}

.ion-android-bulb:before {
  content: "\f36c";
}

.ion-android-bus:before {
  content: "\f36d";
}

.ion-android-calendar:before {
  content: "\f2d1";
}

.ion-android-call:before {
  content: "\f2d2";
}

.ion-android-camera:before {
  content: "\f2d3";
}

.ion-android-cancel:before {
  content: "\f36e";
}

.ion-android-car:before {
  content: "\f36f";
}

.ion-android-cart:before {
  content: "\f370";
}

.ion-android-chat:before {
  content: "\f2d4";
}

.ion-android-checkbox:before {
  content: "\f374";
}

.ion-android-checkbox-blank:before {
  content: "\f371";
}

.ion-android-checkbox-outline:before {
  content: "\f373";
}

.ion-android-checkbox-outline-blank:before {
  content: "\f372";
}

.ion-android-checkmark-circle:before {
  content: "\f375";
}

.ion-android-clipboard:before {
  content: "\f376";
}

.ion-android-close:before {
  content: "\f2d7";
}

.ion-android-cloud:before {
  content: "\f37a";
}

.ion-android-cloud-circle:before {
  content: "\f377";
}

.ion-android-cloud-done:before {
  content: "\f378";
}

.ion-android-cloud-outline:before {
  content: "\f379";
}

.ion-android-color-palette:before {
  content: "\f37b";
}

.ion-android-compass:before {
  content: "\f37c";
}

.ion-android-contact:before {
  content: "\f2d8";
}

.ion-android-contacts:before {
  content: "\f2d9";
}

.ion-android-contract:before {
  content: "\f37d";
}

.ion-android-create:before {
  content: "\f37e";
}

.ion-android-delete:before {
  content: "\f37f";
}

.ion-android-desktop:before {
  content: "\f380";
}

.ion-android-document:before {
  content: "\f381";
}

.ion-android-done:before {
  content: "\f383";
}

.ion-android-done-all:before {
  content: "\f382";
}

.ion-android-download:before {
  content: "\f2dd";
}

.ion-android-drafts:before {
  content: "\f384";
}

.ion-android-exit:before {
  content: "\f385";
}

.ion-android-expand:before {
  content: "\f386";
}

.ion-android-favorite:before {
  content: "\f388";
}

.ion-android-favorite-outline:before {
  content: "\f387";
}

.ion-android-film:before {
  content: "\f389";
}

.ion-android-folder:before {
  content: "\f2e0";
}

.ion-android-folder-open:before {
  content: "\f38a";
}

.ion-android-funnel:before {
  content: "\f38b";
}

.ion-android-globe:before {
  content: "\f38c";
}

.ion-android-hand:before {
  content: "\f2e3";
}

.ion-android-hangout:before {
  content: "\f38d";
}

.ion-android-happy:before {
  content: "\f38e";
}

.ion-android-home:before {
  content: "\f38f";
}

.ion-android-image:before {
  content: "\f2e4";
}

.ion-android-laptop:before {
  content: "\f390";
}

.ion-android-list:before {
  content: "\f391";
}

.ion-android-locate:before {
  content: "\f2e9";
}

.ion-android-lock:before {
  content: "\f392";
}

.ion-android-mail:before {
  content: "\f2eb";
}

.ion-android-map:before {
  content: "\f393";
}

.ion-android-menu:before {
  content: "\f394";
}

.ion-android-microphone:before {
  content: "\f2ec";
}

.ion-android-microphone-off:before {
  content: "\f395";
}

.ion-android-more-horizontal:before {
  content: "\f396";
}

.ion-android-more-vertical:before {
  content: "\f397";
}

.ion-android-navigate:before {
  content: "\f398";
}

.ion-android-notifications:before {
  content: "\f39b";
}

.ion-android-notifications-none:before {
  content: "\f399";
}

.ion-android-notifications-off:before {
  content: "\f39a";
}

.ion-android-open:before {
  content: "\f39c";
}

.ion-android-options:before {
  content: "\f39d";
}

.ion-android-people:before {
  content: "\f39e";
}

.ion-android-person:before {
  content: "\f3a0";
}

.ion-android-person-add:before {
  content: "\f39f";
}

.ion-android-phone-landscape:before {
  content: "\f3a1";
}

.ion-android-phone-portrait:before {
  content: "\f3a2";
}

.ion-android-pin:before {
  content: "\f3a3";
}

.ion-android-plane:before {
  content: "\f3a4";
}

.ion-android-playstore:before {
  content: "\f2f0";
}

.ion-android-print:before {
  content: "\f3a5";
}

.ion-android-radio-button-off:before {
  content: "\f3a6";
}

.ion-android-radio-button-on:before {
  content: "\f3a7";
}

.ion-android-refresh:before {
  content: "\f3a8";
}

.ion-android-remove:before {
  content: "\f2f4";
}

.ion-android-remove-circle:before {
  content: "\f3a9";
}

.ion-android-restaurant:before {
  content: "\f3aa";
}

.ion-android-sad:before {
  content: "\f3ab";
}

.ion-android-search:before {
  content: "\f2f5";
}

.ion-android-send:before {
  content: "\f2f6";
}

.ion-android-settings:before {
  content: "\f2f7";
}

.ion-android-share:before {
  content: "\f2f8";
}

.ion-android-share-alt:before {
  content: "\f3ac";
}

.ion-android-star:before {
  content: "\f2fc";
}

.ion-android-star-half:before {
  content: "\f3ad";
}

.ion-android-star-outline:before {
  content: "\f3ae";
}

.ion-android-stopwatch:before {
  content: "\f2fd";
}

.ion-android-subway:before {
  content: "\f3af";
}

.ion-android-sunny:before {
  content: "\f3b0";
}

.ion-android-sync:before {
  content: "\f3b1";
}

.ion-android-textsms:before {
  content: "\f3b2";
}

.ion-android-time:before {
  content: "\f3b3";
}

.ion-android-train:before {
  content: "\f3b4";
}

.ion-android-unlock:before {
  content: "\f3b5";
}

.ion-android-upload:before {
  content: "\f3b6";
}

.ion-android-volume-down:before {
  content: "\f3b7";
}

.ion-android-volume-mute:before {
  content: "\f3b8";
}

.ion-android-volume-off:before {
  content: "\f3b9";
}

.ion-android-volume-up:before {
  content: "\f3ba";
}

.ion-android-walk:before {
  content: "\f3bb";
}

.ion-android-warning:before {
  content: "\f3bc";
}

.ion-android-watch:before {
  content: "\f3bd";
}

.ion-android-wifi:before {
  content: "\f305";
}

.ion-aperture:before {
  content: "\f313";
}

.ion-archive:before {
  content: "\f102";
}

.ion-arrow-down-a:before {
  content: "\f103";
}

.ion-arrow-down-b:before {
  content: "\f104";
}

.ion-arrow-down-c:before {
  content: "\f105";
}

.ion-arrow-expand:before {
  content: "\f25e";
}

.ion-arrow-graph-down-left:before {
  content: "\f25f";
}

.ion-arrow-graph-down-right:before {
  content: "\f260";
}

.ion-arrow-graph-up-left:before {
  content: "\f261";
}

.ion-arrow-graph-up-right:before {
  content: "\f262";
}

.ion-arrow-left-a:before {
  content: "\f106";
}

.ion-arrow-left-b:before {
  content: "\f107";
}

.ion-arrow-left-c:before {
  content: "\f108";
}

.ion-arrow-move:before {
  content: "\f263";
}

.ion-arrow-resize:before {
  content: "\f264";
}

.ion-arrow-return-left:before {
  content: "\f265";
}

.ion-arrow-return-right:before {
  content: "\f266";
}

.ion-arrow-right-a:before {
  content: "\f109";
}

.ion-arrow-right-b:before {
  content: "\f10a";
}

.ion-arrow-right-c:before {
  content: "\f10b";
}

.ion-arrow-shrink:before {
  content: "\f267";
}

.ion-arrow-swap:before {
  content: "\f268";
}

.ion-arrow-up-a:before {
  content: "\f10c";
}

.ion-arrow-up-b:before {
  content: "\f10d";
}

.ion-arrow-up-c:before {
  content: "\f10e";
}

.ion-asterisk:before {
  content: "\f314";
}

.ion-at:before {
  content: "\f10f";
}

.ion-backspace:before {
  content: "\f3bf";
}

.ion-backspace-outline:before {
  content: "\f3be";
}

.ion-bag:before {
  content: "\f110";
}

.ion-battery-charging:before {
  content: "\f111";
}

.ion-battery-empty:before {
  content: "\f112";
}

.ion-battery-full:before {
  content: "\f113";
}

.ion-battery-half:before {
  content: "\f114";
}

.ion-battery-low:before {
  content: "\f115";
}

.ion-beaker:before {
  content: "\f269";
}

.ion-beer:before {
  content: "\f26a";
}

.ion-bluetooth:before {
  content: "\f116";
}

.ion-bonfire:before {
  content: "\f315";
}

.ion-bookmark:before {
  content: "\f26b";
}

.ion-bowtie:before {
  content: "\f3c0";
}

.ion-briefcase:before {
  content: "\f26c";
}

.ion-bug:before {
  content: "\f2be";
}

.ion-calculator:before {
  content: "\f26d";
}

.ion-calendar:before {
  content: "\f117";
}

.ion-camera:before {
  content: "\f118";
}

.ion-card:before {
  content: "\f119";
}

.ion-cash:before {
  content: "\f316";
}

.ion-chatbox:before {
  content: "\f11b";
}

.ion-chatbox-working:before {
  content: "\f11a";
}

.ion-chatboxes:before {
  content: "\f11c";
}

.ion-chatbubble:before {
  content: "\f11e";
}

.ion-chatbubble-working:before {
  content: "\f11d";
}

.ion-chatbubbles:before {
  content: "\f11f";
}

.ion-checkmark:before {
  content: "\f122";
}

.ion-checkmark-circled:before {
  content: "\f120";
}

.ion-checkmark-round:before {
  content: "\f121";
}

.ion-chevron-down:before {
  content: "\f123";
}

.ion-chevron-left:before {
  content: "\f124";
}

.ion-chevron-right:before {
  content: "\f125";
}

.ion-chevron-up:before {
  content: "\f126";
}

.ion-clipboard:before {
  content: "\f127";
}

.ion-clock:before {
  content: "\f26e";
}

.ion-close:before {
  content: "\f12a";
}

.ion-close-circled:before {
  content: "\f128";
}

.ion-close-round:before {
  content: "\f129";
}

.ion-closed-captioning:before {
  content: "\f317";
}

.ion-cloud:before {
  content: "\f12b";
}

.ion-code:before {
  content: "\f271";
}

.ion-code-download:before {
  content: "\f26f";
}

.ion-code-working:before {
  content: "\f270";
}

.ion-coffee:before {
  content: "\f272";
}

.ion-compass:before {
  content: "\f273";
}

.ion-compose:before {
  content: "\f12c";
}

.ion-connection-bars:before {
  content: "\f274";
}

.ion-contrast:before {
  content: "\f275";
}

.ion-crop:before {
  content: "\f3c1";
}

.ion-cube:before {
  content: "\f318";
}

.ion-disc:before {
  content: "\f12d";
}

.ion-document:before {
  content: "\f12f";
}

.ion-document-text:before {
  content: "\f12e";
}

.ion-drag:before {
  content: "\f130";
}

.ion-earth:before {
  content: "\f276";
}

.ion-easel:before {
  content: "\f3c2";
}

.ion-edit:before {
  content: "\f2bf";
}

.ion-egg:before {
  content: "\f277";
}

.ion-eject:before {
  content: "\f131";
}

.ion-email:before {
  content: "\f132";
}

.ion-email-unread:before {
  content: "\f3c3";
}

.ion-erlenmeyer-flask:before {
  content: "\f3c5";
}

.ion-erlenmeyer-flask-bubbles:before {
  content: "\f3c4";
}

.ion-eye:before {
  content: "\f133";
}

.ion-eye-disabled:before {
  content: "\f306";
}

.ion-female:before {
  content: "\f278";
}

.ion-filing:before {
  content: "\f134";
}

.ion-film-marker:before {
  content: "\f135";
}

.ion-fireball:before {
  content: "\f319";
}

.ion-flag:before {
  content: "\f279";
}

.ion-flame:before {
  content: "\f31a";
}

.ion-flash:before {
  content: "\f137";
}

.ion-flash-off:before {
  content: "\f136";
}

.ion-folder:before {
  content: "\f139";
}

.ion-fork:before {
  content: "\f27a";
}

.ion-fork-repo:before {
  content: "\f2c0";
}

.ion-forward:before {
  content: "\f13a";
}

.ion-funnel:before {
  content: "\f31b";
}

.ion-gear-a:before {
  content: "\f13d";
}

.ion-gear-b:before {
  content: "\f13e";
}

.ion-grid:before {
  content: "\f13f";
}

.ion-hammer:before {
  content: "\f27b";
}

.ion-happy:before {
  content: "\f31c";
}

.ion-happy-outline:before {
  content: "\f3c6";
}

.ion-headphone:before {
  content: "\f140";
}

.ion-heart:before {
  content: "\f141";
}

.ion-heart-broken:before {
  content: "\f31d";
}

.ion-help:before {
  content: "\f143";
}

.ion-help-buoy:before {
  content: "\f27c";
}

.ion-help-circled:before {
  content: "\f142";
}

.ion-home:before {
  content: "\f144";
}

.ion-icecream:before {
  content: "\f27d";
}

.ion-image:before {
  content: "\f147";
}

.ion-images:before {
  content: "\f148";
}

.ion-information:before {
  content: "\f14a";
}

.ion-information-circled:before {
  content: "\f149";
}

.ion-ionic:before {
  content: "\f14b";
}

.ion-ios-alarm:before {
  content: "\f3c8";
}

.ion-ios-alarm-outline:before {
  content: "\f3c7";
}

.ion-ios-albums:before {
  content: "\f3ca";
}

.ion-ios-albums-outline:before {
  content: "\f3c9";
}

.ion-ios-americanfootball:before {
  content: "\f3cc";
}

.ion-ios-americanfootball-outline:before {
  content: "\f3cb";
}

.ion-ios-analytics:before {
  content: "\f3ce";
}

.ion-ios-analytics-outline:before {
  content: "\f3cd";
}

.ion-ios-arrow-back:before {
  content: "\f3cf";
}

.ion-ios-arrow-down:before {
  content: "\f3d0";
}

.ion-ios-arrow-forward:before {
  content: "\f3d1";
}

.ion-ios-arrow-left:before {
  content: "\f3d2";
}

.ion-ios-arrow-right:before {
  content: "\f3d3";
}

.ion-ios-arrow-thin-down:before {
  content: "\f3d4";
}

.ion-ios-arrow-thin-left:before {
  content: "\f3d5";
}

.ion-ios-arrow-thin-right:before {
  content: "\f3d6";
}

.ion-ios-arrow-thin-up:before {
  content: "\f3d7";
}

.ion-ios-arrow-up:before {
  content: "\f3d8";
}

.ion-ios-at:before {
  content: "\f3da";
}

.ion-ios-at-outline:before {
  content: "\f3d9";
}

.ion-ios-barcode:before {
  content: "\f3dc";
}

.ion-ios-barcode-outline:before {
  content: "\f3db";
}

.ion-ios-baseball:before {
  content: "\f3de";
}

.ion-ios-baseball-outline:before {
  content: "\f3dd";
}

.ion-ios-basketball:before {
  content: "\f3e0";
}

.ion-ios-basketball-outline:before {
  content: "\f3df";
}

.ion-ios-bell:before {
  content: "\f3e2";
}

.ion-ios-bell-outline:before {
  content: "\f3e1";
}

.ion-ios-body:before {
  content: "\f3e4";
}

.ion-ios-body-outline:before {
  content: "\f3e3";
}

.ion-ios-bolt:before {
  content: "\f3e6";
}

.ion-ios-bolt-outline:before {
  content: "\f3e5";
}

.ion-ios-book:before {
  content: "\f3e8";
}

.ion-ios-book-outline:before {
  content: "\f3e7";
}

.ion-ios-bookmarks:before {
  content: "\f3ea";
}

.ion-ios-bookmarks-outline:before {
  content: "\f3e9";
}

.ion-ios-box:before {
  content: "\f3ec";
}

.ion-ios-box-outline:before {
  content: "\f3eb";
}

.ion-ios-briefcase:before {
  content: "\f3ee";
}

.ion-ios-briefcase-outline:before {
  content: "\f3ed";
}

.ion-ios-browsers:before {
  content: "\f3f0";
}

.ion-ios-browsers-outline:before {
  content: "\f3ef";
}

.ion-ios-calculator:before {
  content: "\f3f2";
}

.ion-ios-calculator-outline:before {
  content: "\f3f1";
}

.ion-ios-calendar:before {
  content: "\f3f4";
}

.ion-ios-calendar-outline:before {
  content: "\f3f3";
}

.ion-ios-camera:before {
  content: "\f3f6";
}

.ion-ios-camera-outline:before {
  content: "\f3f5";
}

.ion-ios-cart:before {
  content: "\f3f8";
}

.ion-ios-cart-outline:before {
  content: "\f3f7";
}

.ion-ios-chatboxes:before {
  content: "\f3fa";
}

.ion-ios-chatboxes-outline:before {
  content: "\f3f9";
}

.ion-ios-chatbubble:before {
  content: "\f3fc";
}

.ion-ios-chatbubble-outline:before {
  content: "\f3fb";
}

.ion-ios-checkmark:before {
  content: "\f3ff";
}

.ion-ios-checkmark-empty:before {
  content: "\f3fd";
}

.ion-ios-checkmark-outline:before {
  content: "\f3fe";
}

.ion-ios-circle-filled:before {
  content: "\f400";
}

.ion-ios-circle-outline:before {
  content: "\f401";
}

.ion-ios-clock:before {
  content: "\f403";
}

.ion-ios-clock-outline:before {
  content: "\f402";
}

.ion-ios-close:before {
  content: "\f406";
}

.ion-ios-close-empty:before {
  content: "\f404";
}

.ion-ios-close-outline:before {
  content: "\f405";
}

.ion-ios-cloud:before {
  content: "\f40c";
}

.ion-ios-cloud-download:before {
  content: "\f408";
}

.ion-ios-cloud-download-outline:before {
  content: "\f407";
}

.ion-ios-cloud-outline:before {
  content: "\f409";
}

.ion-ios-cloud-upload:before {
  content: "\f40b";
}

.ion-ios-cloud-upload-outline:before {
  content: "\f40a";
}

.ion-ios-cloudy:before {
  content: "\f410";
}

.ion-ios-cloudy-night:before {
  content: "\f40e";
}

.ion-ios-cloudy-night-outline:before {
  content: "\f40d";
}

.ion-ios-cloudy-outline:before {
  content: "\f40f";
}

.ion-ios-cog:before {
  content: "\f412";
}

.ion-ios-cog-outline:before {
  content: "\f411";
}

.ion-ios-color-filter:before {
  content: "\f414";
}

.ion-ios-color-filter-outline:before {
  content: "\f413";
}

.ion-ios-color-wand:before {
  content: "\f416";
}

.ion-ios-color-wand-outline:before {
  content: "\f415";
}

.ion-ios-compose:before {
  content: "\f418";
}

.ion-ios-compose-outline:before {
  content: "\f417";
}

.ion-ios-contact:before {
  content: "\f41a";
}

.ion-ios-contact-outline:before {
  content: "\f419";
}

.ion-ios-copy:before {
  content: "\f41c";
}

.ion-ios-copy-outline:before {
  content: "\f41b";
}

.ion-ios-crop:before {
  content: "\f41e";
}

.ion-ios-crop-strong:before {
  content: "\f41d";
}

.ion-ios-download:before {
  content: "\f420";
}

.ion-ios-download-outline:before {
  content: "\f41f";
}

.ion-ios-drag:before {
  content: "\f421";
}

.ion-ios-email:before {
  content: "\f423";
}

.ion-ios-email-outline:before {
  content: "\f422";
}

.ion-ios-eye:before {
  content: "\f425";
}

.ion-ios-eye-outline:before {
  content: "\f424";
}

.ion-ios-fastforward:before {
  content: "\f427";
}

.ion-ios-fastforward-outline:before {
  content: "\f426";
}

.ion-ios-filing:before {
  content: "\f429";
}

.ion-ios-filing-outline:before {
  content: "\f428";
}

.ion-ios-film:before {
  content: "\f42b";
}

.ion-ios-film-outline:before {
  content: "\f42a";
}

.ion-ios-flag:before {
  content: "\f42d";
}

.ion-ios-flag-outline:before {
  content: "\f42c";
}

.ion-ios-flame:before {
  content: "\f42f";
}

.ion-ios-flame-outline:before {
  content: "\f42e";
}

.ion-ios-flask:before {
  content: "\f431";
}

.ion-ios-flask-outline:before {
  content: "\f430";
}

.ion-ios-flower:before {
  content: "\f433";
}

.ion-ios-flower-outline:before {
  content: "\f432";
}

.ion-ios-folder:before {
  content: "\f435";
}

.ion-ios-folder-outline:before {
  content: "\f434";
}

.ion-ios-football:before {
  content: "\f437";
}

.ion-ios-football-outline:before {
  content: "\f436";
}

.ion-ios-game-controller-a:before {
  content: "\f439";
}

.ion-ios-game-controller-a-outline:before {
  content: "\f438";
}

.ion-ios-game-controller-b:before {
  content: "\f43b";
}

.ion-ios-game-controller-b-outline:before {
  content: "\f43a";
}

.ion-ios-gear:before {
  content: "\f43d";
}

.ion-ios-gear-outline:before {
  content: "\f43c";
}

.ion-ios-glasses:before {
  content: "\f43f";
}

.ion-ios-glasses-outline:before {
  content: "\f43e";
}

.ion-ios-grid-view:before {
  content: "\f441";
}

.ion-ios-grid-view-outline:before {
  content: "\f440";
}

.ion-ios-heart:before {
  content: "\f443";
}

.ion-ios-heart-outline:before {
  content: "\f442";
}

.ion-ios-help:before {
  content: "\f446";
}

.ion-ios-help-empty:before {
  content: "\f444";
}

.ion-ios-help-outline:before {
  content: "\f445";
}

.ion-ios-home:before {
  content: "\f448";
}

.ion-ios-home-outline:before {
  content: "\f447";
}

.ion-ios-infinite:before {
  content: "\f44a";
}

.ion-ios-infinite-outline:before {
  content: "\f449";
}

.ion-ios-information:before {
  content: "\f44d";
}

.ion-ios-information-empty:before {
  content: "\f44b";
}

.ion-ios-information-outline:before {
  content: "\f44c";
}

.ion-ios-ionic-outline:before {
  content: "\f44e";
}

.ion-ios-keypad:before {
  content: "\f450";
}

.ion-ios-keypad-outline:before {
  content: "\f44f";
}

.ion-ios-lightbulb:before {
  content: "\f452";
}

.ion-ios-lightbulb-outline:before {
  content: "\f451";
}

.ion-ios-list:before {
  content: "\f454";
}

.ion-ios-list-outline:before {
  content: "\f453";
}

.ion-ios-location:before {
  content: "\f456";
}

.ion-ios-location-outline:before {
  content: "\f455";
}

.ion-ios-locked:before {
  content: "\f458";
}

.ion-ios-locked-outline:before {
  content: "\f457";
}

.ion-ios-loop:before {
  content: "\f45a";
}

.ion-ios-loop-strong:before {
  content: "\f459";
}

.ion-ios-medical:before {
  content: "\f45c";
}

.ion-ios-medical-outline:before {
  content: "\f45b";
}

.ion-ios-medkit:before {
  content: "\f45e";
}

.ion-ios-medkit-outline:before {
  content: "\f45d";
}

.ion-ios-mic:before {
  content: "\f461";
}

.ion-ios-mic-off:before {
  content: "\f45f";
}

.ion-ios-mic-outline:before {
  content: "\f460";
}

.ion-ios-minus:before {
  content: "\f464";
}

.ion-ios-minus-empty:before {
  content: "\f462";
}

.ion-ios-minus-outline:before {
  content: "\f463";
}

.ion-ios-monitor:before {
  content: "\f466";
}

.ion-ios-monitor-outline:before {
  content: "\f465";
}

.ion-ios-moon:before {
  content: "\f468";
}

.ion-ios-moon-outline:before {
  content: "\f467";
}

.ion-ios-more:before {
  content: "\f46a";
}

.ion-ios-more-outline:before {
  content: "\f469";
}

.ion-ios-musical-note:before {
  content: "\f46b";
}

.ion-ios-musical-notes:before {
  content: "\f46c";
}

.ion-ios-navigate:before {
  content: "\f46e";
}

.ion-ios-navigate-outline:before {
  content: "\f46d";
}

.ion-ios-nutrition:before {
  content: "\f470";
}

.ion-ios-nutrition-outline:before {
  content: "\f46f";
}

.ion-ios-paper:before {
  content: "\f472";
}

.ion-ios-paper-outline:before {
  content: "\f471";
}

.ion-ios-paperplane:before {
  content: "\f474";
}

.ion-ios-paperplane-outline:before {
  content: "\f473";
}

.ion-ios-partlysunny:before {
  content: "\f476";
}

.ion-ios-partlysunny-outline:before {
  content: "\f475";
}

.ion-ios-pause:before {
  content: "\f478";
}

.ion-ios-pause-outline:before {
  content: "\f477";
}

.ion-ios-paw:before {
  content: "\f47a";
}

.ion-ios-paw-outline:before {
  content: "\f479";
}

.ion-ios-people:before {
  content: "\f47c";
}

.ion-ios-people-outline:before {
  content: "\f47b";
}

.ion-ios-person:before {
  content: "\f47e";
}

.ion-ios-person-outline:before {
  content: "\f47d";
}

.ion-ios-personadd:before {
  content: "\f480";
}

.ion-ios-personadd-outline:before {
  content: "\f47f";
}

.ion-ios-photos:before {
  content: "\f482";
}

.ion-ios-photos-outline:before {
  content: "\f481";
}

.ion-ios-pie:before {
  content: "\f484";
}

.ion-ios-pie-outline:before {
  content: "\f483";
}

.ion-ios-pint:before {
  content: "\f486";
}

.ion-ios-pint-outline:before {
  content: "\f485";
}

.ion-ios-play:before {
  content: "\f488";
}

.ion-ios-play-outline:before {
  content: "\f487";
}

.ion-ios-plus:before {
  content: "\f48b";
}

.ion-ios-plus-empty:before {
  content: "\f489";
}

.ion-ios-plus-outline:before {
  content: "\f48a";
}

.ion-ios-pricetag:before {
  content: "\f48d";
}

.ion-ios-pricetag-outline:before {
  content: "\f48c";
}

.ion-ios-pricetags:before {
  content: "\f48f";
}

.ion-ios-pricetags-outline:before {
  content: "\f48e";
}

.ion-ios-printer:before {
  content: "\f491";
}

.ion-ios-printer-outline:before {
  content: "\f490";
}

.ion-ios-pulse:before {
  content: "\f493";
}

.ion-ios-pulse-strong:before {
  content: "\f492";
}

.ion-ios-rainy:before {
  content: "\f495";
}

.ion-ios-rainy-outline:before {
  content: "\f494";
}

.ion-ios-recording:before {
  content: "\f497";
}

.ion-ios-recording-outline:before {
  content: "\f496";
}

.ion-ios-redo:before {
  content: "\f499";
}

.ion-ios-redo-outline:before {
  content: "\f498";
}

.ion-ios-refresh:before {
  content: "\f49c";
}

.ion-ios-refresh-empty:before {
  content: "\f49a";
}

.ion-ios-refresh-outline:before {
  content: "\f49b";
}

.ion-ios-reload:before {
  content: "\f49d";
}

.ion-ios-reverse-camera:before {
  content: "\f49f";
}

.ion-ios-reverse-camera-outline:before {
  content: "\f49e";
}

.ion-ios-rewind:before {
  content: "\f4a1";
}

.ion-ios-rewind-outline:before {
  content: "\f4a0";
}

.ion-ios-rose:before {
  content: "\f4a3";
}

.ion-ios-rose-outline:before {
  content: "\f4a2";
}

.ion-ios-search:before {
  content: "\f4a5";
}

.ion-ios-search-strong:before {
  content: "\f4a4";
}

.ion-ios-settings:before {
  content: "\f4a7";
}

.ion-ios-settings-strong:before {
  content: "\f4a6";
}

.ion-ios-shuffle:before {
  content: "\f4a9";
}

.ion-ios-shuffle-strong:before {
  content: "\f4a8";
}

.ion-ios-skipbackward:before {
  content: "\f4ab";
}

.ion-ios-skipbackward-outline:before {
  content: "\f4aa";
}

.ion-ios-skipforward:before {
  content: "\f4ad";
}

.ion-ios-skipforward-outline:before {
  content: "\f4ac";
}

.ion-ios-snowy:before {
  content: "\f4ae";
}

.ion-ios-speedometer:before {
  content: "\f4b0";
}

.ion-ios-speedometer-outline:before {
  content: "\f4af";
}

.ion-ios-star:before {
  content: "\f4b3";
}

.ion-ios-star-half:before {
  content: "\f4b1";
}

.ion-ios-star-outline:before {
  content: "\f4b2";
}

.ion-ios-stopwatch:before {
  content: "\f4b5";
}

.ion-ios-stopwatch-outline:before {
  content: "\f4b4";
}

.ion-ios-sunny:before {
  content: "\f4b7";
}

.ion-ios-sunny-outline:before {
  content: "\f4b6";
}

.ion-ios-telephone:before {
  content: "\f4b9";
}

.ion-ios-telephone-outline:before {
  content: "\f4b8";
}

.ion-ios-tennisball:before {
  content: "\f4bb";
}

.ion-ios-tennisball-outline:before {
  content: "\f4ba";
}

.ion-ios-thunderstorm:before {
  content: "\f4bd";
}

.ion-ios-thunderstorm-outline:before {
  content: "\f4bc";
}

.ion-ios-time:before {
  content: "\f4bf";
}

.ion-ios-time-outline:before {
  content: "\f4be";
}

.ion-ios-timer:before {
  content: "\f4c1";
}

.ion-ios-timer-outline:before {
  content: "\f4c0";
}

.ion-ios-toggle:before {
  content: "\f4c3";
}

.ion-ios-toggle-outline:before {
  content: "\f4c2";
}

.ion-ios-trash:before {
  content: "\f4c5";
}

.ion-ios-trash-outline:before {
  content: "\f4c4";
}

.ion-ios-undo:before {
  content: "\f4c7";
}

.ion-ios-undo-outline:before {
  content: "\f4c6";
}

.ion-ios-unlocked:before {
  content: "\f4c9";
}

.ion-ios-unlocked-outline:before {
  content: "\f4c8";
}

.ion-ios-upload:before {
  content: "\f4cb";
}

.ion-ios-upload-outline:before {
  content: "\f4ca";
}

.ion-ios-videocam:before {
  content: "\f4cd";
}

.ion-ios-videocam-outline:before {
  content: "\f4cc";
}

.ion-ios-volume-high:before {
  content: "\f4ce";
}

.ion-ios-volume-low:before {
  content: "\f4cf";
}

.ion-ios-wineglass:before {
  content: "\f4d1";
}

.ion-ios-wineglass-outline:before {
  content: "\f4d0";
}

.ion-ios-world:before {
  content: "\f4d3";
}

.ion-ios-world-outline:before {
  content: "\f4d2";
}

.ion-ipad:before {
  content: "\f1f9";
}

.ion-iphone:before {
  content: "\f1fa";
}

.ion-ipod:before {
  content: "\f1fb";
}

.ion-jet:before {
  content: "\f295";
}

.ion-key:before {
  content: "\f296";
}

.ion-knife:before {
  content: "\f297";
}

.ion-laptop:before {
  content: "\f1fc";
}

.ion-leaf:before {
  content: "\f1fd";
}

.ion-levels:before {
  content: "\f298";
}

.ion-lightbulb:before {
  content: "\f299";
}

.ion-link:before {
  content: "\f1fe";
}

.ion-load-a:before {
  content: "\f29a";
}

.ion-load-b:before {
  content: "\f29b";
}

.ion-load-c:before {
  content: "\f29c";
}

.ion-load-d:before {
  content: "\f29d";
}

.ion-location:before {
  content: "\f1ff";
}

.ion-lock-combination:before {
  content: "\f4d4";
}

.ion-locked:before {
  content: "\f200";
}

.ion-log-in:before {
  content: "\f29e";
}

.ion-log-out:before {
  content: "\f29f";
}

.ion-loop:before {
  content: "\f201";
}

.ion-magnet:before {
  content: "\f2a0";
}

.ion-male:before {
  content: "\f2a1";
}

.ion-man:before {
  content: "\f202";
}

.ion-map:before {
  content: "\f203";
}

.ion-medkit:before {
  content: "\f2a2";
}

.ion-merge:before {
  content: "\f33f";
}

.ion-mic-a:before {
  content: "\f204";
}

.ion-mic-b:before {
  content: "\f205";
}

.ion-mic-c:before {
  content: "\f206";
}

.ion-minus:before {
  content: "\f209";
}

.ion-minus-circled:before {
  content: "\f207";
}

.ion-minus-round:before {
  content: "\f208";
}

.ion-model-s:before {
  content: "\f2c1";
}

.ion-monitor:before {
  content: "\f20a";
}

.ion-more:before {
  content: "\f20b";
}

.ion-mouse:before {
  content: "\f340";
}

.ion-music-note:before {
  content: "\f20c";
}

.ion-navicon:before {
  content: "\f20e";
}

.ion-navicon-round:before {
  content: "\f20d";
}

.ion-navigate:before {
  content: "\f2a3";
}

.ion-network:before {
  content: "\f341";
}

.ion-no-smoking:before {
  content: "\f2c2";
}

.ion-nuclear:before {
  content: "\f2a4";
}

.ion-outlet:before {
  content: "\f342";
}

.ion-paintbrush:before {
  content: "\f4d5";
}

.ion-paintbucket:before {
  content: "\f4d6";
}

.ion-paper-airplane:before {
  content: "\f2c3";
}

.ion-paperclip:before {
  content: "\f20f";
}

.ion-pause:before {
  content: "\f210";
}

.ion-person:before {
  content: "\f213";
}

.ion-person-add:before {
  content: "\f211";
}

.ion-person-stalker:before {
  content: "\f212";
}

.ion-pie-graph:before {
  content: "\f2a5";
}

.ion-pin:before {
  content: "\f2a6";
}

.ion-pinpoint:before {
  content: "\f2a7";
}

.ion-pizza:before {
  content: "\f2a8";
}

.ion-plane:before {
  content: "\f214";
}

.ion-planet:before {
  content: "\f343";
}

.ion-play:before {
  content: "\f215";
}

.ion-playstation:before {
  content: "\f30a";
}

.ion-plus:before {
  content: "\f218";
}

.ion-plus-circled:before {
  content: "\f216";
}

.ion-plus-round:before {
  content: "\f217";
}

.ion-podium:before {
  content: "\f344";
}

.ion-pound:before {
  content: "\f219";
}

.ion-power:before {
  content: "\f2a9";
}

.ion-pricetag:before {
  content: "\f2aa";
}

.ion-pricetags:before {
  content: "\f2ab";
}

.ion-printer:before {
  content: "\f21a";
}

.ion-pull-request:before {
  content: "\f345";
}

.ion-qr-scanner:before {
  content: "\f346";
}

.ion-quote:before {
  content: "\f347";
}

.ion-radio-waves:before {
  content: "\f2ac";
}

.ion-record:before {
  content: "\f21b";
}

.ion-refresh:before {
  content: "\f21c";
}

.ion-reply:before {
  content: "\f21e";
}

.ion-reply-all:before {
  content: "\f21d";
}

.ion-ribbon-a:before {
  content: "\f348";
}

.ion-ribbon-b:before {
  content: "\f349";
}

.ion-sad:before {
  content: "\f34a";
}

.ion-sad-outline:before {
  content: "\f4d7";
}

.ion-scissors:before {
  content: "\f34b";
}

.ion-search:before {
  content: "\f21f";
}

.ion-settings:before {
  content: "\f2ad";
}

.ion-share:before {
  content: "\f220";
}

.ion-shuffle:before {
  content: "\f221";
}

.ion-skip-backward:before {
  content: "\f222";
}

.ion-skip-forward:before {
  content: "\f223";
}

.ion-social-android:before {
  content: "\f225";
}

.ion-social-android-outline:before {
  content: "\f224";
}

.ion-social-angular:before {
  content: "\f4d9";
}

.ion-social-angular-outline:before {
  content: "\f4d8";
}

.ion-social-apple:before {
  content: "\f227";
}

.ion-social-apple-outline:before {
  content: "\f226";
}

.ion-social-bitcoin:before {
  content: "\f2af";
}

.ion-social-bitcoin-outline:before {
  content: "\f2ae";
}

.ion-social-buffer:before {
  content: "\f229";
}

.ion-social-buffer-outline:before {
  content: "\f228";
}

.ion-social-chrome:before {
  content: "\f4db";
}

.ion-social-chrome-outline:before {
  content: "\f4da";
}

.ion-social-codepen:before {
  content: "\f4dd";
}

.ion-social-codepen-outline:before {
  content: "\f4dc";
}

.ion-social-css3:before {
  content: "\f4df";
}

.ion-social-css3-outline:before {
  content: "\f4de";
}

.ion-social-designernews:before {
  content: "\f22b";
}

.ion-social-designernews-outline:before {
  content: "\f22a";
}

.ion-social-dribbble:before {
  content: "\f22d";
}

.ion-social-dribbble-outline:before {
  content: "\f22c";
}

.ion-social-dropbox:before {
  content: "\f22f";
}

.ion-social-dropbox-outline:before {
  content: "\f22e";
}

.ion-social-euro:before {
  content: "\f4e1";
}

.ion-social-euro-outline:before {
  content: "\f4e0";
}

.ion-social-facebook:before {
  content: "\f231";
}

.ion-social-facebook-outline:before {
  content: "\f230";
}

.ion-social-foursquare:before {
  content: "\f34d";
}

.ion-social-foursquare-outline:before {
  content: "\f34c";
}

.ion-social-freebsd-devil:before {
  content: "\f2c4";
}

.ion-social-github:before {
  content: "\f233";
}

.ion-social-github-outline:before {
  content: "\f232";
}

.ion-social-google:before {
  content: "\f34f";
}

.ion-social-google-outline:before {
  content: "\f34e";
}

.ion-social-googleplus:before {
  content: "\f235";
}

.ion-social-googleplus-outline:before {
  content: "\f234";
}

.ion-social-hackernews:before {
  content: "\f237";
}

.ion-social-hackernews-outline:before {
  content: "\f236";
}

.ion-social-html5:before {
  content: "\f4e3";
}

.ion-social-html5-outline:before {
  content: "\f4e2";
}

.ion-social-instagram:before {
  content: "\f351";
}

.ion-social-instagram-outline:before {
  content: "\f350";
}

.ion-social-javascript:before {
  content: "\f4e5";
}

.ion-social-javascript-outline:before {
  content: "\f4e4";
}

.ion-social-linkedin:before {
  content: "\f239";
}

.ion-social-linkedin-outline:before {
  content: "\f238";
}

.ion-social-markdown:before {
  content: "\f4e6";
}

.ion-social-nodejs:before {
  content: "\f4e7";
}

.ion-social-octocat:before {
  content: "\f4e8";
}

.ion-social-pinterest:before {
  content: "\f2b1";
}

.ion-social-pinterest-outline:before {
  content: "\f2b0";
}

.ion-social-python:before {
  content: "\f4e9";
}

.ion-social-reddit:before {
  content: "\f23b";
}

.ion-social-reddit-outline:before {
  content: "\f23a";
}

.ion-social-rss:before {
  content: "\f23d";
}

.ion-social-rss-outline:before {
  content: "\f23c";
}

.ion-social-sass:before {
  content: "\f4ea";
}

.ion-social-skype:before {
  content: "\f23f";
}

.ion-social-skype-outline:before {
  content: "\f23e";
}

.ion-social-snapchat:before {
  content: "\f4ec";
}

.ion-social-snapchat-outline:before {
  content: "\f4eb";
}

.ion-social-tumblr:before {
  content: "\f241";
}

.ion-social-tumblr-outline:before {
  content: "\f240";
}

.ion-social-tux:before {
  content: "\f2c5";
}

.ion-social-twitch:before {
  content: "\f4ee";
}

.ion-social-twitch-outline:before {
  content: "\f4ed";
}

.ion-social-twitter:before {
  content: "\f243";
}

.ion-social-twitter-outline:before {
  content: "\f242";
}

.ion-social-usd:before {
  content: "\f353";
}

.ion-social-usd-outline:before {
  content: "\f352";
}

.ion-social-vimeo:before {
  content: "\f245";
}

.ion-social-vimeo-outline:before {
  content: "\f244";
}

.ion-social-whatsapp:before {
  content: "\f4f0";
}

.ion-social-whatsapp-outline:before {
  content: "\f4ef";
}

.ion-social-windows:before {
  content: "\f247";
}

.ion-social-windows-outline:before {
  content: "\f246";
}

.ion-social-wordpress:before {
  content: "\f249";
}

.ion-social-wordpress-outline:before {
  content: "\f248";
}

.ion-social-yahoo:before {
  content: "\f24b";
}

.ion-social-yahoo-outline:before {
  content: "\f24a";
}

.ion-social-yen:before {
  content: "\f4f2";
}

.ion-social-yen-outline:before {
  content: "\f4f1";
}

.ion-social-youtube:before {
  content: "\f24d";
}

.ion-social-youtube-outline:before {
  content: "\f24c";
}

.ion-soup-can:before {
  content: "\f4f4";
}

.ion-soup-can-outline:before {
  content: "\f4f3";
}

.ion-speakerphone:before {
  content: "\f2b2";
}

.ion-speedometer:before {
  content: "\f2b3";
}

.ion-spoon:before {
  content: "\f2b4";
}

.ion-star:before {
  content: "\f24e";
}

.ion-stats-bars:before {
  content: "\f2b5";
}

.ion-steam:before {
  content: "\f30b";
}

.ion-stop:before {
  content: "\f24f";
}

.ion-thermometer:before {
  content: "\f2b6";
}

.ion-thumbsdown:before {
  content: "\f250";
}

.ion-thumbsup:before {
  content: "\f251";
}

.ion-toggle:before {
  content: "\f355";
}

.ion-toggle-filled:before {
  content: "\f354";
}

.ion-transgender:before {
  content: "\f4f5";
}

.ion-trash-a:before {
  content: "\f252";
}

.ion-trash-b:before {
  content: "\f253";
}

.ion-trophy:before {
  content: "\f356";
}

.ion-tshirt:before {
  content: "\f4f7";
}

.ion-tshirt-outline:before {
  content: "\f4f6";
}

.ion-umbrella:before {
  content: "\f2b7";
}

.ion-university:before {
  content: "\f357";
}

.ion-unlocked:before {
  content: "\f254";
}

.ion-upload:before {
  content: "\f255";
}

.ion-usb:before {
  content: "\f2b8";
}

.ion-videocamera:before {
  content: "\f256";
}

.ion-volume-high:before {
  content: "\f257";
}

.ion-volume-low:before {
  content: "\f258";
}

.ion-volume-medium:before {
  content: "\f259";
}

.ion-volume-mute:before {
  content: "\f25a";
}

.ion-wand:before {
  content: "\f358";
}

.ion-waterdrop:before {
  content: "\f25b";
}

.ion-wifi:before {
  content: "\f25c";
}

.ion-wineglass:before {
  content: "\f2b9";
}

.ion-woman:before {
  content: "\f25d";
}

.ion-wrench:before {
  content: "\f2ba";
}

.ion-xbox:before {
  content: "\f30c";
}

.animatetab .owl-carousel .owl-item {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease;
}

/* fonts */
/* end fonts */
/* css jquery */
/* Slider */
.slick-loading .slick-list {
  background: white url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-display: swap;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-vertical .slick-prev,
.slick-vertical .slick-next {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.slick-vertical .slick-prev {
  top: -25px;
}

.slick-vertical .slick-next {
  bottom: -25px;
  top: auto;
}

.slick-vertical .slick-prev:before {
  content: "\ea35";
}

.slick-vertical [dir='rtl'] .slick-prev:before {
  content: "\ea32";
}

.slick-vertical .slick-next:before {
  content: "\ea32";
}

.slick-vertical [dir='rtl'] .slick-next:before {
  content: "\ea35";
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'Linearicons-Free';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

@media (max-width: 991px) {
  .slick-prev {
    left: -15px;
  }
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

@media (max-width: 991px) {
  [dir='rtl'] .slick-prev {
    right: -15px;
  }
}

.slick-prev:before {
  content: "\e875";
}

[dir='rtl'] .slick-prev:before {
  content: '→';
  content: "\e876";
}

.slick-next {
  right: -25px;
}

@media (max-width: 991px) {
  .slick-next {
    right: -15px;
  }
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

@media (max-width: 991px) {
  [dir='rtl'] .slick-next {
    left: -15px;
  }
}

.slick-next:before {
  content: '→';
  content: "\e876";
}

[dir='rtl'] .slick-next:before {
  content: "\e875";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox-slick-item:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 50px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '×';
}

.slick-lightbox-close:hover:before {
  opacity: 1;
}

.slick-lightbox .slick-prev,
.slick-lightbox .slick-next {
  width: 60px;
  height: 60px;
}

.slick-lightbox .slick-prev:before,
.slick-lightbox .slick-next:before {
  font-size: 60px;
}

@media (max-width: 767px) {

  .slick-lightbox .slick-prev,
  .slick-lightbox .slick-next {
    width: 30px;
    height: 30px;
  }

  .slick-lightbox .slick-prev:before,
  .slick-lightbox .slick-next:before {
    font-size: 30px;
  }
}

/** * EasyZoom core styles */
.easyzoom {
  position: relative;
  display: inline-block;
}

.easyzoom img {
  vertical-align: bottom;
  max-width: none;
}

.easyzoom.is-loading img {
  cursor: progress;
}

.easyzoom.is-ready img {
  cursor: crosshair;
}

.easyzoom.is-error img {
  cursor: not-allowed;
}

.easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: #FFF;
  box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  background: #FFF;
}

/** * EasyZoom layout variations */
.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  margin-left: 20px;
}

/* end css jquery */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.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;
  width: 100%;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  padding: 0 10px;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item:hover {
  z-index: 2;
}

.owl-carousel .owl-item img {
  display: block;
  max-width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  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-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -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;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 	Owl Carousel - Auto Height Plugin */
.owl-height {
  transition: height 500ms ease-in-out;
}

/* 	Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/* 	Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  text-decoration: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

a:hover,
a:focus {
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
  outline: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  background: #2d3338;
  border: none;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
  color: white;
  background-color: #2d3338;
  border-color: transparent;
  border: none;
}

.btn-secondary,
.btn-tertiary,
.btn-primary {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 14px;
  border: none;
  color: #2d3338;
  line-height: 25px;
  box-shadow: none;
  padding: 5px 20px;
  border-radius: 5px;
  background: #ffd54c;
}

.btn-secondary:hover,
.btn-tertiary:hover,
.btn-primary:hover {
  background: #2d3338;
  border-color: #ffd54c;
  color: white;
  border: none;
}

.btn-secondary:hover,
.btn-tertiary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
  color: white;
  background: #2d3338;
  border-color: transparent;
  border: none;
}

a {
  color: #2d3338;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
}

/* edit from here */
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a {
  font-size: 12px;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  margin: 0;
  background: none;
  border: 0;
  color: #ffd54c;
  cursor: pointer;
}

button {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.product-flag {
  margin: 0;
}

/* edit theme */
*:focus {
  outline: none !important;
}

img {
  max-width: 100%;
  margin: auto;
  height: auto;
}

ol,
ul,
dl {
  margin: 0;
  padding: 0;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #2d3338;
}

p {
  font-size: 14px;
  color: #2d3338;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  text-transform: capitalize;
  color: #333333;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

.unvisible,
.headerSpace {
  display: none;
}

/* custom page */
.card {
  box-shadow: none;
  border: none;
  padding: 0;
  text-align: justify;
}

.page-header h1,
.card-block h1 {
  color: #333333;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: .8em;
  padding-bottom: .5em;
}

.page-content.page-cms {
  padding: 1.25rem 0;
}

.contact-form {
  padding: 0 0 0 50px;
  color: #2d3338;
  border-left: 1px solid #ebebeb;
}

.form-control {
  background-color: white;
  color: #2d3338;
  border: 1px solid #ebebeb;
  font-size: 14px;
}

.form-control:focus {
  color: #2d3338;
  border-color: #333333;
}

.form-control:focus,
.input-group.focus {
  outline: 0;
}

.input-group .input-group-btn>.btn[data-action=show-password]:hover {
  background: #ffd54c;
}

.form-control-label {
  font-size: 14px;
  text-align: left;
  color: #2d3338;
}

.input-group .input-group-btn>.btn {
  padding: .67rem 1rem;
}

.sitemap h2 {
  color: #2d3338;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #ebebeb;
}

.sitemap ul li {
  font-size: 14px;
}

.sitemap ul li:before {
  content: "\f363";
  font-family: "IonIcons";
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
  font-weight: 900;
}

#stores .page-stores {
  width: 100%;
}

#stores .page-stores .store-item {
  padding: 0;
}

#stores .page-stores .store-item-container {
  border-bottom: 1px solid rgba(161, 161, 161, 0.25);
}

#stores .page-stores .store-item-container .h3.card-title {
  font-size: 16px;
  color: #333333;
  text-transform: capitalize;
}

#stores .page-stores .store-item-container .store-description {
  font-size: 14px;
  color: #666;
}

#stores .page-stores .store-item-container ul {
  margin-bottom: 0;
  font-size: 14px;
}

#stores .page-stores .store-item-container .divide-left {
  border-left: 1px solid rgba(161, 161, 161, 0.25);
}

.page-addresses .address,
.page-authentication #content {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ebebeb;
}

.page-authentication #content {
  max-width: 100%;
}

.page-customer-account #content {
  box-shadow: none;
  border: 1px solid #ebebeb;
  font-size: 14px;
  color: #2d3338;
}

.page-customer-account #content .no-account {
  text-align: center;
  font-size: 14px;
}

.custom-checkbox input[type=checkbox]+span {
  margin-top: 5px;
}

.label,
label {
  font-size: 14px;
  color: #2d3338;
}

.page-my-account #content .links a span.link-item {
  box-shadow: none;
  border: 1px solid #ebebeb;
  font-size: 14px;
}

.separator {
  border-color: #d9d9d9;
}

.cart-summary,
#js-checkout-summary {
  border: 1px solid #ebebeb;
}

.cart-summary-line .label,
.cart-summary .label,
.cart-summary-line.cart-summary-subtotals .label,
.cart-summary-line.cart-summary-subtotals .value {
  text-transform: capitalize;
  font-weight: 600;
}

.cart-summary-line .value {
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

.cart-summary-products p {
  font-weight: 600;
}

.cart-grid-body .card-block {
  padding: 0;
}

.cart-item {
  border-bottom: 1px solid #ebebeb;
}

body#checkout section.checkout-step {
  box-shadow: none;
  border-bottom: 1px solid #ebebeb;
}

body#checkout section.checkout-step .step-title {
  text-transform: capitalize;
}

.checkout-inner {
  border: 1px solid #ebebeb;
}

.block-reassurance-item .h6 {
  font-size: 14px;
}

/* end custom page */
@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 100%;
  }
}

main {
  overflow: hidden;
}

#wrapper {
  margin: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  padding-top: 30px;
}

#wrapper #main .page-footer {
  margin: 0;
}

#index #wrapper {
  padding-top: 0;
}

.back-top {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  overflow: hidden;
  z-index: 10;
}

@media (min-width: 1920px) {
  .back-top {
    right: 50px;
    bottom: 50px;
  }
}

.back-top a {
  background: #333333;
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.back-top a:after {
  content: "\f366";
  font-family: "IonIcons";
  font-size: 25px;
  font-weight: 900;
}

.back-top a:hover {
  background: #ffd54c;
}

/* ===== edit theme ======== */
@media (min-width: 992px) {
  #header .header-bottom.scroll-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    box-shadow: 0px 3px 10.23px 0.77px rgba(0, 0, 0, 0.1);
  }

  #header .header-bottom.scroll-menu:hover {
    background: white;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
  }
}

#header {
  position: relative;
  z-index: 9;
  background: #ffd54c;
}

@media (max-width: 767px) {
  #header {
    text-align: center;
  }
}

#header .header-nav {
  background: transparent;
  max-height: none;
  margin: 0;
}

#header .header-nav .container {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

#header .header-nav .container:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 15px;
  right: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  #header .header-nav {
    text-align: center;
  }
}

#header .header-top {
  padding: 10px 0;
}

@media (max-width: 767px) {
  #header .header-top {
    background: transparent;
    padding: 15px 0;
  }
}

@media (min-width: 992px) {
  #header .header-top .row {
    margin: 0;
    display: table;
    vertical-align: middle;
    width: 100%;
  }

  #header .header-top .row .col {
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    float: none;
  }

  #header .header-top .row .col.header_logo {
    padding-right: 30px;
  }
}

#header .header-top .header_logo img {
  margin: 0;
}

@media (max-width: 991px) {
  #header .header-top .header_logo img {
    margin: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  #header .header-top .header_logo img {
    margin-bottom: 0;
  }
}

#header .header-bottom {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  #header .header-bottom {
    box-shadow: 0px 3px 10.23px 0.77px rgba(0, 0, 0, 0.1);
    background: white;
  }
}

#index .header-bottom {
  margin-bottom: 30px;
}

/* item product */
.pos_title {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.pos_title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  border-bottom: 1px solid #ebebeb;
}

.pos_title h2 {
  margin: 0;
  position: relative;
  z-index: 1;
  background: white;
  padding-right: 20px;
  color: #2d3338;
  font-size: 26px;
  font-weight: 400;
  line-height: 35px;
  display: inline-block;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .pos_title h2 {
    font-size: 18px;
  }
}

.pos_title .firsttitle {
  font-weight: 700;
}

.js-product-miniature {
  position: relative;
  background: white;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.js-product-miniature:last-child {
  margin-bottom: 0;
}

.js-product-miniature .box-top {
  padding: 10px 20px;
  height: 80px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature h1 {
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.js-product-miniature .product_name {
  line-height: 20px;
  min-height: 40px;
  display: block;
  overflow: hidden;
  color: #2777d0;
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.js-product-miniature .product_name:hover {
  color: #ffd54c;
}

.js-product-miniature .manufacturer a {
  color: #878787;
  font-size: 12px;
  text-transform: uppercase;
  height: 0;
  line-height: 18px;
  opacity: 0;
  overflow: hidden;
}

.js-product-miniature .manufacturer a:hover {
  color: #ffd54c;
}

.js-product-miniature .img_block {
  position: relative;
  overflow: hidden;
}

.js-product-miniature .img_block img {
  width: 100%;
  margin: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature:hover .manufacturer a {
  height: 18px;
  opacity: 1;
  overflow: visible;
}

.js-product-miniature:hover .product_name {
  margin-top: 0;
}

.js-product-miniature:hover div.cart button.ajax_add_to_cart_button,
.js-product-miniature:hover div.cart span.ajax_add_to_cart_button {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature:hover .add-to-links li {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.js-product-miniature:hover .add-to-links li:nth-child(1) {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature:hover .add-to-links li:nth-child(2) {
  -webkit-transition: all 400ms linear;
  -moz-transition: all 400ms linear;
  -ms-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.js-product-miniature:hover .add-to-links li:nth-child(3) {
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
}

.js-product-miniature .add-to-links {
  position: absolute;
  top: 10px;
  right: 10px;
}

.js-product-miniature .add-to-links li {
  float: left;
  clear: both;
  height: 40px;
  opacity: 0;
  -moz-transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -o-transform: scale3d(0, 0, 0);
  -ms-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature .add-to-links li:last-child {
  margin: 0;
}

.js-product-miniature .add-to-links li a {
  display: inline-block;
  background: transparent;
  padding: 0;
  line-height: 40px;
  height: 40px;
  color: #2d3338;
  width: 40px;
  padding: 0;
  font-size: 0;
  text-align: center;
  text-transform: capitalize;
}

.js-product-miniature .add-to-links li a:before {
  font-size: 22px;
  font-family: 'Linearicons-Free';
  display: block;
  font-weight: 400;
}

.js-product-miniature .add-to-links li a:hover {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature .add-to-links li a.quick_view:before {
  content: "\e86f";
}

.js-product-miniature .add-to-links li a.addToWishlist:before {
  content: "\e813";
}

.js-product-miniature .add-to-links li a.compare-button:before {
  content: "\e862";
}

.js-product-miniature div.cart {
  position: absolute;
  right: 10px;
  bottom: 12px;
  height: 40px;
}

.js-product-miniature div.cart button.ajax_add_to_cart_button,
.js-product-miniature div.cart span.ajax_add_to_cart_button {
  display: inline-block;
  background: transparent;
  color: #2d3338;
  line-height: 40px;
  height: 40px;
  width: 40px;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  border: none;
  text-transform: uppercase;
  -moz-transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -o-transform: scale3d(0, 0, 0);
  -ms-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
  opacity: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature div.cart button.ajax_add_to_cart_button:before,
.js-product-miniature div.cart span.ajax_add_to_cart_button:before {
  font-size: 22px;
  font-family: 'Linearicons-Free';
  display: block;
  font-weight: 400;
  content: "\e82e";
}

.js-product-miniature div.cart button.ajax_add_to_cart_button i,
.js-product-miniature div.cart span.ajax_add_to_cart_button i {
  font-size: 14px;
  margin-right: 5px;
  display: none;
}

.js-product-miniature div.cart button.ajax_add_to_cart_button.disabled,
.js-product-miniature div.cart span.ajax_add_to_cart_button.disabled {
  opacity: 0.5;
}

.js-product-miniature div.cart button.ajax_add_to_cart_button:hover,
.js-product-miniature div.cart span.ajax_add_to_cart_button:hover {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature .product_desc {
  padding: 20px 60px 20px 20px;
  background: white;
  overflow: hidden;
  position: relative;
}

.js-product-miniature .product_desc .hook-reviews {
  display: block;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.js-product-miniature .product_desc .hook-reviews .comments_note {
  direction: ltr !important;
  text-align: left;
}

.js-product-miniature .product_desc .hook-reviews .star_content {
  display: inline-block;
  vertical-align: bottom;
}

.js-product-miniature .product_desc .hook-reviews .nb-comments {
  font-size: 12px;
  display: none;
}

.js-product-miniature .product_desc .product-desc {
  display: none;
  padding: 20px 0;
  font-size: 14px;
  color: #7a7a7a;
  line-height: 24px;
  margin: 0;
}

.js-product-miniature .product_desc .product-desc p {
  font-size: 14px;
  color: #7a7a7a;
  line-height: 24px;
  margin: 0;
}

.js-product-miniature .product_desc .product-desc p span {
  font-family: 'Lato', sans-serif !important;
  font-size: 14px !important;
}

.js-product-miniature .product_desc .variant-links {
  margin-top: 15px;
  margin-top: 15px;
  background: transparent;
  padding: 0;
  min-height: auto;
  text-align: left;
  display: none;
}

.js-product-miniature .product_desc .variant-links a {
  margin: 0 5px 0 0;
  margin: 0 5px 0 0;
  border-radius: 100%;
  width: 15px;
  height: 15px;
}

.cmp_added {
  color: #ffd54c !important;
}

.js-product-miniature .product-price-and-shipping {
  line-height: 1;
  text-align: left;
}

.js-product-miniature .product-price-and-shipping .sr-only {
  display: none;
}

.js-product-miniature .product-price-and-shipping .price {
  font-size: 18px;
  font-weight: 600;
  color: #2d3338;
}

.js-product-miniature .product-price-and-shipping .price.price-sale {
  color: #fd5018;
}

.js-product-miniature .product-price-and-shipping .regular-price {
  font-size: 16px;
  color: #757575;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 5px;
}

.product-price-and-shipping-top .discount-product {
  position: absolute;
  top: 5px !important;
  left: 20px;
  display: inline-block;
  background: #ffd54c;
  color: #222222;
  border-radius: 5px;
  padding: 0;
  min-width: 50px;
  text-align: center;
  line-height: 23px;
  height: 23px;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  -moz-transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;
}

.product-price-and-shipping-top .discount-product span {
  -moz-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transform: skewX(25deg);
  display: block;
}

.product-flag .new,
.product-flag .on-sale,
.product-flag .pack {
  position: absolute;
  top: 5px !important;
  left: 20px;
  display: inline-block;
  background: #ffd54c;
  color: #222222;
  border-radius: 5px;
  padding: 0;
  min-width: 50px;
  text-align: center;
  line-height: 23px;
  height: 23px;
  font-size: 12px;
  font-weight: 400;
  text-transform: capitalize;
  -moz-transform: skewX(-25deg);
  -webkit-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.product-flag .new span,
.product-flag .on-sale span,
.product-flag .pack span {
  -moz-transform: skewX(25deg);
  -webkit-transform: skewX(25deg);
  -o-transform: skewX(25deg);
  -ms-transform: skewX(25deg);
  transform: skewX(25deg);
  display: block;
}

.product-flag .pack {
  z-index: 2;
}

.product-flag .on-sale {
  top: 35px !important;
}

.product-flag .on-sale:before {
  background: #f8484a;
}

.product-flag .on-sale span {
  background: #f8484a;
}

.product-flag .discount {
  display: none;
}

.owl-dots {
  position: absolute;
  right: 15px;
  top: -50px;
}

.owl-dots .owl-dot {
  display: inline-block;
  margin: 0 4px;
}

.owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.owl-dots .owl-dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #cacaca;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-dots .owl-dot span:hover {
  background: #444444;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-dots .owl-dot.active span {
  background: #444444;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-nav {
  position: absolute;
  top: -60px;
  right: 10px;
  background: white;
  padding: 0 10px;
  border: 1px solid #ebebeb;
  border-radius: 25px;
  height: 35px;
}

@media (max-width: 767px) {
  .owl-nav {
    display: none;
  }
}

.owl-nav>div {
  display: inline-block;
  font-size: 0;
  cursor: pointer;
  text-align: center;
  height: 33px;
  width: 33px;
  line-height: 33px;
  color: #a9a9a9;
  z-index: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-nav>div:before {
  font-size: 21px;
  display: block;
  font-family: "Ionicons";
}

.owl-nav>div:hover {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  color: #ffd54c;
}

.owl-nav>div.owl-prev:before {
  content: "\f3d5";
}

.owl-nav>div.owl-next:before {
  content: "\f3d6";
}

.pos_content {
  position: relative;
  margin: 0 -10px;
}

.pos_content:hover .owl-nav>div {
  opacity: 1;
}

.pos_content .js-product-miniature img,
.pos_content .thumb-category img,
.pos_content .item_logo img,
.pos_content .thumb-container img {
  display: none;
}

.pos_content .owl-item .js-product-miniature img,
.pos_content .owl-item .thumb-category img,
.pos_content .owl-item .item_logo img,
.pos_content .owl-item .thumb-container img {
  display: block;
}

.category-products-slider,
.pos-featured-products,
.categoryproducts,
.product-accessories,
.pos-bestsellers-product,
.poslistcateproduct,
.tab-category-container-slider,
.tab-category-container-slider2,
.tab-category-container-slider3,
.pos_new_product,
.product-tabs-container-slider,
.pos-special-products,
.pos_random_product,
.poslistcategories,
.home_blog_post_area,
.testimonials_container,
.recommended-product {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  width: 100%;
  background: white;
}

/* end item product */
/* selector */
.selector-block {
  float: right;
  padding: 0 18px;
  line-height: 1;
  border-right: 1px solid #232323;
}

@media (max-width: 767px) {
  .selector-block {
    display: inline-block;
    float: none;
    border: none !important;
    padding: 0 10px;
  }
}

.selector-block.language-selector-wrapper {
  border: none;
}

@media (min-width: 992px) {
  .selector-block.language-selector-wrapper {
    padding-right: 0;
  }
}

.selector-block .selector-label {
  color: #2d3338;
  line-height: 16px;
  text-transform: capitalize;
  font-size: 13px;
  margin-right: 5px;
  display: none;
}

.selector-block .localiz_block {
  margin: 0 !important;
  display: inline-block;
}

.selector-block .localiz_block:hover button,
.selector-block .localiz_block:hover .current-block {
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block:hover button .expand-more,
.selector-block .localiz_block:hover .current-block .expand-more {
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block button,
.selector-block .localiz_block .current-block {
  font-weight: 400;
  color: #2d3338;
  background: transparent;
  text-shadow: none;
  cursor: pointer;
  line-height: 16px;
  font-size: 13px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block button .expand-more,
.selector-block .localiz_block .current-block .expand-more {
  color: #2d3338;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block button i,
.selector-block .localiz_block .current-block i {
  font-size: 16px;
  vertical-align: -1px;
  margin-right: 2px;
}

.selector-block .localiz_block button img,
.selector-block .localiz_block .current-block img {
  margin-right: 5px;
  vertical-align: -1px;
}

.selector-block .localiz_block .dropdown-menu {
  margin: 0;
  top: 32px;
  right: 0;
  left: auto;
  min-width: 130px;
  overflow: hidden;
  padding: 0 20px;
  background: white;
  border-radius: 0;
  border: none;
  box-shadow: 0px 3px 10.23px 0.77px rgba(0, 0, 0, 0.1);
}

@media (max-width: 320px) {
  .selector-block .localiz_block .dropdown-menu {
    top: 20px;
  }
}

.selector-block .localiz_block .dropdown-menu li {
  padding: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}

.selector-block .localiz_block .dropdown-menu li .dropdown-item {
  padding: 0 10px;
  color: #2d3338;
  line-height: 45px;
  font-size: 13px;
  border-bottom: 1px solid #ebebeb;
}

.selector-block .localiz_block .dropdown-menu li .dropdown-item img {
  display: inline-block;
  margin-right: 5px;
  vertical-align: -2px;
}

.selector-block .localiz_block .dropdown-menu li.current .dropdown-item {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.selector-block .localiz_block .dropdown-menu li:hover .dropdown-item {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media (min-width: 992px) {
  .user-info-block {
    float: right;
  }
}

.user-info-block .localiz_block button,
.user-info-block .localiz_block .current-block {
  text-transform: capitalize;
}

.user-info-block .localiz_block button .icon.icon-Settings,
.user-info-block .localiz_block .current-block .icon.icon-Settings {
  font-size: 16px;
  vertical-align: -2px;
  margin-right: 5px;
  display: none;
}

/* end selector */
/* wishlist block */
.wishtlist_Top {
  float: right;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .wishtlist_Top {
    float: none;
    display: inline-block;
    margin: 0 10px 0 0;
  }
}

@media (max-width: 479px) {
  .wishtlist_Top {
    width: 100%;
    margin: 0;
  }
}

.wishtlist_Top a {
  height: 48px;
  line-height: 48px;
  color: #2d3338;
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 13px;
}

.wishtlist_Top a:hover {
  color: white;
}

.wishtlist_Top a .lnr {
  font-size: 32px;
  margin-right: 5px;
  vertical-align: middle;
}

.wishtlist_Top a .txt_wishlist {
  display: inline-block;
  line-height: 1;
  vertical-align: -10px;
}

.wishtlist_Top a .cart-wishlist-number {
  position: absolute;
  top: 5px;
  left: 40px;
  display: block;
  overflow: hidden;
  font-weight: 500;
  color: #2d3338;
  font-size: 12px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 100%;
}

.popover-content .table {
  background: white;
  border: 1px solid #ebebeb;
}

.popover-content .table td,
.popover-content .table th {
  padding: 5px;
}

.popover-content .table td {
  cursor: pointer;
}

/* end wishlist block */
/* compare */
.compare_top a {
  font-weight: 400;
  color: #2d3338;
  background: transparent;
  text-shadow: none;
  cursor: pointer;
  line-height: 16px;
  font-size: 13px;
  display: inline-block;
}

.compare_top a:hover {
  color: white;
}

/* end compare */
/* module contact */
.contact-link {
  float: right;
  line-height: 1;
}

@media (max-width: 991px) {
  .contact-link {
    display: inline-block;
    width: 100%;
    float: none;
    margin-top: 10px;
  }
}

.contact-link .info_box {
  position: relative;
  line-height: 16px;
  text-shadow: none;
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  color: white;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-link .info_box .icon {
  margin-right: 5px;
  font-size: 16px;
  vertical-align: -2px;
}

.contact-link .info_box a {
  color: white;
}

.contact-link .info_box a:hover {
  color: #ffd54c;
}

/* end module contact */
/* module user-info */
.user_info_top {
  float: right;
  font-size: 0;
}

@media (max-width: 767px) {
  .user_info_top {
    width: 100%;
    display: inline-block;
    float: none;
  }
}

.user_info_top>li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  line-height: 1;
}

.user_info_top>li:last-child a {
  border: none;
}

.user_info_top>li a {
  display: inline-block;
  overflow: hidden;
  float: left;
  line-height: 35px;
  padding: 0 15px 0 30px;
  font-size: 14px;
  position: relative;
  color: #2d3338;
}

.user_info_top>li a i {
  position: absolute;
  top: 0;
  left: 3px;
  display: block;
  font-size: 14px;
  line-height: 35px;
  color: #999999;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.user_info_top>li a:hover {
  color: #ffd54c;
}

.user_info_top>li a:hover i {
  left: 7px;
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* end module user-info */
/* module megamenu */
.megamenu {
  position: relative;
  z-index: 1;
}

.pt_custommenu {
  position: relative;
}

.pt_custommenu .pt_menu {
  float: left;
}

.pt_custommenu .pt_menu .parentMenu a {
  display: block;
  line-height: 25px;
  padding: 15px 0;
  margin: 0 25px;
  font-size: 14px;
  font-weight: 500;
  color: #2d3338;
  background: transparent;
  text-transform: uppercase;
  position: relative;
  font-family: 'Lato', sans-serif;
}

@media (max-width: 1199px) {
  .pt_custommenu .pt_menu .parentMenu a {
    margin: 0 15px;
  }
}

.pt_custommenu .pt_menu .parentMenu a:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 50%;
  right: 50%;
  bottom: -2px;
  background: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.pt_custommenu .pt_menu .parentMenu a img {
  margin: 0;
}

.pt_custommenu .pt_menu .parentMenu a i {
  font-size: 11px;
  padding: 0 0 0 7px;
  font-family: "Ionicons";
}

.pt_custommenu .pt_menu .parentMenu a i:before {
  content: "\f3d0";
  font-size: 12px;
  font-weight: 400;
}

.pt_custommenu .pt_menu.act .parentMenu a:before,
.pt_custommenu .pt_menu.active .parentMenu a:before {
  left: 0;
  right: 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.pt_custommenu .pt_menu:first-child .parentMenu a {
  margin-left: 0;
}

.pt_custommenu .pt_menu .popup {
  position: absolute;
  box-shadow: 0px 3px 10.23px 0.77px rgba(0, 0, 0, 0.1);
  border-top: none;
  background: white;
  padding: 30px 0;
  z-index: 10;
  text-align: left;
}

.pt_custommenu .pt_menu .popup .cms_mega a img {
  -webkit-transition: all 1700ms ease;
  -moz-transition: all 1700ms ease;
  -o-transition: all 1700ms ease;
  transition: all 1700ms ease;
}

.pt_custommenu .pt_menu .popup .cms_mega a:hover img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}

.pt_custommenu .pt_menu .popup .block1 {
  overflow: hidden;
  float: left;
}

.pt_custommenu .pt_menu .popup .block1 .column {
  float: left;
  width: 260px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
  border-right: 1px solid #ebebeb;
}

.pt_custommenu .pt_menu .popup .block1 .column.last {
  border: none;
  margin-right: 0;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName {
  color: #2d3338;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemMenuName:hover {
  color: #ffd54c;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu {
  padding: 0;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName {
  color: #757575;
  text-transform: capitalize;
  line-height: 30px;
  font-weight: 400;
  font-size: 14px;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName:hover {
  color: #ffd54c;
}

.pt_custommenu .pt_menu .popup .block2 {
  padding: 30px 30px 0 30px;
  display: inline-block;
  width: 100%;
}

.pt_custommenu .pt_menu .popup .block2 .banner-box {
  margin-bottom: 0;
}

.pt_custommenu_mobile {
  text-align: left;
  position: relative;
  clear: both;
}

.pt_custommenu_mobile .navbar {
  min-height: 40px;
  margin: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  background: #333333;
  padding: 0 15px;
  overflow: hidden;
  cursor: pointer;
}

.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar {
  display: block;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  line-height: 40px;
}

.pt_custommenu_mobile .navbar .navbar-inner .btn-navbar:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: "IonIcons";
  cursor: pointer;
  font-weight: 900;
}

.pt_custommenu_mobile .navbar .navbar-inner.navbar-inactive .btn-navbar:after {
  content: "\f38b";
}

.pt_custommenu_mobile .navbar .navbar-inner.navbar-active .btn-navbar:after {
  content: "\f20d";
}

ul#pt_custommenu_itemmobile {
  overflow: hidden;
  margin: 0 0 15px;
  padding: 0;
}

ul#pt_custommenu_itemmobile li {
  cursor: pointer;
  list-style-type: none;
  margin: 0;
  padding: 0 10px;
  display: block;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

ul#pt_custommenu_itemmobile li:last-child {
  border: 0;
}

ul#pt_custommenu_itemmobile li a {
  line-height: 45px;
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

ul#pt_custommenu_itemmobile li a:hover {
  color: #ffd54c;
}

ul#pt_custommenu_itemmobile li .grower {
  position: absolute;
  top: 0;
  right: 0;
}

ul#pt_custommenu_itemmobile li .grower a:after {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: "IonIcons";
  content: "\f218";
  font-weight: 900;
}

ul#pt_custommenu_itemmobile li .grower.active a:after {
  content: "\f209";
}

/* end module megamenu */
/* module vegamenu */
.navleft-container {
  position: relative;
  z-index: 9;
}

.navleft-container .pt_vmegamenu_title {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #2d3338;
  height: 55px;
  padding: 0 20px 0 0;
}

.navleft-container .pt_vmegamenu_title h2 {
  margin: 0;
  color: white;
  line-height: 55px;
  padding: 0;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
}

.navleft-container .pt_vmegamenu_title h2:before {
  display: block;
  float: left;
  content: '\e898';
  color: #fff;
  line-height: 55px;
  font-family: 'Linearicons-Free';
  font-size: 24px;
  font-weight: normal;
  width: 50px;
  text-align: center;
}

.navleft-container .pt_vmegamenu_title h2 i {
  display: none;
}

.navleft-container .pt_vmegamenu {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #ebebeb;
  border-top: 0;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
}

.navleft-container .pt_vmegamenu .pt_menu {
  position: relative;
}

.navleft-container .pt_vmegamenu .pt_menu:hover .wrap-popup {
  opacity: 1;
}

.navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after {
  display: block;
  position: absolute;
  top: 0;
  right: 15px;
  line-height: 40px;
  content: "\f3d3";
  font-family: "Ionicons";
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .navleft-container .pt_vmegamenu .pt_menu:not(.noSub):after {
    line-height: 32px;
  }
}

.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a,
.navleft-container .pt_vmegamenu .pt_menu:hover:not(.noSub):after {
  color: #ffd54c;
}

.navleft-container .pt_vmegamenu .pt_menu:last-child .parentMenu a {
  border-bottom: 0;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 30px;
  text-transform: capitalize;
  word-wrap: break-word;
  background: white;
  color: #2d3338;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .navleft-container .pt_vmegamenu .pt_menu .parentMenu a {
    padding: 0 20px;
    line-height: 32px;
  }
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a .cate-thumb {
  float: left;
  width: 24px;
  margin-top: 2px;
  margin-right: 10px;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more {
  cursor: pointer;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:before {
  display: none;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more:hover {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more i {
  margin-right: 7px;
  font-size: 14px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.navleft-container .pt_vmegamenu .pt_menu.act .parentMenu a,
.navleft-container .pt_vmegamenu .pt_menu.active .parentMenu a {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  opacity: 0;
  width: 840px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup {
  display: none;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  width: auto !important;
  box-shadow: 0px 3px 10.23px 0.77px rgba(0, 0, 0, 0.1);
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup {
  background: #fff;
  padding: 20px;
  float: left;
  overflow: hidden;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column {
  width: 200px;
  padding: 0 15px;
  margin-bottom: -99999px;
  padding-bottom: 99999px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName {
  color: #2d3338;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName:hover {
  color: #ffd54c;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu {
  padding-bottom: 20px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName {
  color: #757575;
  text-transform: capitalize;
  line-height: 30px;
  font-weight: 400;
  font-size: 14px;
  border: 0;
  padding: 0;
  margin: 0;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:hover {
  color: #ffd54c;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:after,
.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemSubMenu .itemMenuName:before {
  display: none;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.last {
  padding-right: 0;
  border: 0;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.blockright {
  width: 300px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block1 {
  overflow: hidden;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block2 {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

/* end module vegamenu */
/* module search category */
#pos_search_top {
  padding: 0;
  position: relative;
}

@media (min-width: 1200px) {
  #pos_search_top {
    max-width: 570px;
  }
}

#pos_search_top .form_search {
  padding: 0;
  position: relative;
  width: 100%;
  float: left;
  height: 45px;
  color: #a9a9a9;
}

#pos_search_top .form_search label {
  display: none;
}

#pos_search_top .form_search .search-block {
  height: 45x;
  line-height: 45px;
}

#pos_search_top .form_search .form-control {
  padding: 10px 120px 10px 180px;
  width: 100%;
  height: 45px;
  font-size: 14px;
  background: white;
  color: #2d3338;
  border: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}

#pos_search_top .form_search .form-control::-moz-placeholder {
  color: #a5a5a5;
  opacity: 1;
}

#pos_search_top .form_search .form-control::-webkit-input-placeholder {
  color: #a5a5a5;
  opacity: 1;
}

#pos_search_top .form_search .form-control:-ms-input-placeholder {
  color: #a5a5a5;
  opacity: 1;
}

#pos_search_top .form_search .form-control:focus {
  box-shadow: none;
}

@media (max-width: 479px) {
  #pos_search_top .form_search .form-control {
    padding-right: 0;
  }
}

#pos_search_top .form_search .search_submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-align: center;
  color: white;
  background: #2777d0;
  padding: 0 35px;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  -webkit-border-radius: 0px 25px 25px 0;
  -moz-border-radius: 0px 25px 25px 0;
  -ms-border-radius: 0px 25px 25px 0;
  -o-border-radius: 0px 25px 25px 0;
  border-radius: 0px 25px 25px 0;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#pos_search_top .form_search .search_submit:hover {
  background: #0658b3;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#pos_search_top .form_search .form-group {
  position: absolute;
  left: 1px;
  top: 1px;
  display: inline-block;
  width: 150px;
  margin: 0;
  background: transparent;
}

#pos_search_top .form_search .form-group:after {
  content: "";
  width: 1px;
  height: 16px;
  background: #e1e1e1;
  position: absolute;
  top: 50%;
  right: -10px;
  margin-top: -8px;
}

#pos_search_top .form_search .form-group .bootstrap-select {
  width: 150px;
  height: 43px;
  line-height: 43px;
  margin: 0;
  border: 0;
  padding: 0 25px;
  color: #2d3338;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/option_search.png) no-repeat 90% 50% white;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
}

@media (max-width: 480px) {
  #pos_search_top .form_search .form-control {
    font-size: 10px;
    padding: 0 60px 0 120px;
  }

  #pos_search_top .form_search .form-group {
    width: 110px;
  }

  #pos_search_top .form_search .form-group .bootstrap-select {
    width: 110px;
    font-size: 10px;
    padding: 0 10px;
  }

  #pos_search_top .form_search .form-group:after {
    right: 0;
  }

  #pos_search_top .form_search .search_submit {
    padding: 0 15px;
  }
}

.ui-corner-all.ui-widget-content {
  max-height: 380px;
  overflow: auto;
  border: 1px solid #ebebeb;
}

/* end module search category */
.block-search {
  position: relative;
  margin-right: 30px;
}

@media (min-width: 992px) {
  .block-search {
    float: right;
  }
}

@media (max-width: 1199px) {
  .block-search {
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .block-search {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .block-search {
    margin-top: 20px;
  }
}

.search_top {
  padding: 0;
  background: transparent;
  border: 0;
}

.search_top form {
  width: 100%;
  position: relative;
}

.search_top form .text_input {
  padding: 10px 65px 10px 20px;
  height: 51px;
  line-height: 28px;
  font-size: 13px;
  border: none;
  border-radius: 5px;
  box-shadow: none;
  overflow: hidden;
  width: 100%;
  background: white;
  color: #9e9e9e;
}

.search_top form .text_input::-moz-placeholder {
  color: #9e9e9e;
}

.search_top form .text_input::-webkit-input-placeholder {
  color: #9e9e9e;
}

.search_top form .text_input:-ms-input-placeholder {
  color: #9e9e9e;
}

.search_top form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 51px;
  width: 60px;
  display: inline-block;
  padding: 0;
  text-align: center;
  background: #2d3338;
  color: white;
  line-height: 48px;
  font-size: 22px;
  text-transform: uppercase;
  border: 0;
  text-align: center;
  border-radius: 0px 5px 5px 0px;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.search_top form button span {
  line-height: 48px;
}

.search_top form button:hover {
  background: #1f2225;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.ui-corner-all {
  overflow: hidden;
  max-height: 300px;
  overflow-y: scroll;
}

@media (max-width: 360px) {
  .ui-corner-all {
    max-width: 300px !important;
  }
}

.ui-corner-all li a {
  display: inline-block !important;
  width: 100%;
  overflow: visible;
  max-height: none;
  overflow-y: auto;
}

.ui-corner-all li a img {
  float: left;
  margin-right: 30px;
  width: 50px;
}

.ui-corner-all li a>div {
  overflow: hidden;
  padding-top: 10px;
}

.ui-corner-all li a span {
  margin: 0;
  display: inline-block;
  font-size: 12px;
}

.ui-corner-all li a span.separator {
  margin-left: 5px;
  margin-right: 5px;
}

.ui-corner-all li a span.product {
  font-size: 13px;
  font-style: italic;
}

.ui-corner-all li a .price {
  font-weight: 600;
}

/* end search block */
.blockcart {
  float: right;
  position: relative;
}

@media (max-width: 767px) {
  .blockcart {
    float: none;
    display: inline-block;
    margin-top: 15px;
  }
}

.blockcart:hover .header a {
  color: white;
}

.blockcart .header {
  position: relative;
  display: inline-block;
  position: relative;
  height: 48px;
}

.blockcart .header a {
  display: block;
  position: relative;
  color: #2d3338;
  font-size: 13px;
  font-weight: 400;
  height: 48px;
  line-height: 48px;
}

.blockcart .header a .lnr {
  font-size: 32px;
  margin-right: 5px;
  vertical-align: middle;
}

.blockcart .header a .item_txt {
  display: inline-block;
  line-height: 1;
  vertical-align: -10px;
}

.blockcart .header a .item_count {
  position: absolute;
  top: 5px;
  left: 40px;
  display: block;
  overflow: hidden;
  font-weight: 500;
  color: #2d3338;
  font-size: 12px;
  line-height: 20px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 100%;
  text-align: center;
}

.blockcart .body {
  margin: 0;
  padding: 0;
  width: 340px;
  top: 100%;
  left: auto;
  right: 0;
  position: absolute;
  display: none;
  z-index: 99;
  text-align: left;
  background: white;
  box-shadow: 0px 7px 10.67px 0.33px rgba(0, 0, 0, 0.1);
}

@media (max-width: 479px) {
  .blockcart .body {
    width: 270px;
  }
}

@media (max-width: 767px) {
  .blockcart .body {
    right: 50%;
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.blockcart .body ul {
  padding: 0 20px;
}

.blockcart .body ul li {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
  overflow: hidden;
}

.blockcart .body ul li .img_content {
  float: left;
  margin: 0 10px 0 0;
  position: relative;
}

@media (max-width: 480px) {
  .blockcart .body ul li .img_content {
    width: 76px;
  }
}

.blockcart .body ul li .img_content .product-quantity {
  position: absolute;
  top: 5px;
  left: 5px;
  min-width: 25px;
  line-height: 25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  padding: 0;
  text-align: center;
  background: #ffd54c;
  color: #2d3338;
  font-size: 14px;
  display: inline-block;
}

.blockcart .body ul li .right_block {
  overflow: hidden;
  position: relative;
  padding: 0 15px 0 0;
}

.blockcart .body ul li .right_block span {
  font-size: 14px;
}

.blockcart .body ul li .right_block .product-name {
  display: block;
  color: #2777d0;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 20px;
}

.blockcart .body ul li .right_block .product-name:hover {
  color: #ffd54c;
}

.blockcart .body ul li .right_block .product-price {
  display: block;
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #2d3338;
}

.blockcart .body ul li .right_block .remove-from-cart {
  display: block;
  position: absolute;
  top: 0;
  right: -1px;
  color: #a4a4a4;
  font-size: 18px;
}

.blockcart .body ul li .right_block .remove-from-cart:hover {
  color: #2d3338;
}

.blockcart .body ul li .right_block .attributes_content {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #a4a4a4;
  margin: 5px 0 0;
}

.blockcart .body ul li .right_block strong {
  font-weight: 400;
}

.blockcart .body .price_content {
  overflow: hidden;
  padding: 20px;
}

.blockcart .body .price_content .price_inline {
  overflow: hidden;
  line-height: 25px;
}

.blockcart .body .price_content .price_inline .label {
  float: left;
  font-weight: 600;
  color: #2d3338;
  font-size: 16px;
}

.blockcart .body .price_content .price_inline .value {
  float: right;
  font-weight: 600;
  color: #fd5018;
  font-size: 20px;
}

.blockcart .body .checkout {
  padding: 20px;
  position: relative;
}

.blockcart .body .checkout:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #ebebeb;
}

.blockcart .body .checkout a {
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  border: none;
  color: #2d3338;
  box-shadow: none;
  padding: 10px 15px;
  line-height: 30px;
  border-radius: 5px;
  background: #ffd54c;
}

.blockcart .body .checkout a:hover {
  background: #2d3338;
  color: white;
}

@media (min-width: 992px) {
  .blockcart .body ul {
    max-height: 310px;
    overflow-y: auto;
  }
}

.blockcart .body ul::-webkit-scrollbar-track {
  background-color: #ffd54c;
}

.blockcart .body ul::-webkit-scrollbar {
  width: 4px;
  background-color: #ffd54c;
}

.blockcart .body ul::-webkit-scrollbar-thumb {
  background-color: rgba(46, 46, 46, 0.85);
  border-radius: 10px;
}

/* style layer cart */
#blockcart-modal .modal-body {
  background: white;
  padding: 3.125rem 1.875rem;
}

#blockcart-modal .divide-right {
  border-right: 1px solid #ebebeb;
}

#blockcart-modal .divide-right p,
#blockcart-modal .divide-right strong {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}

#blockcart-modal .cart-content p,
#blockcart-modal .cart-content strong {
  color: #333333;
  font-size: 14px;
}

#blockcart-modal .cart-content strong {
  font-weight: 600;
}

#blockcart-modal .product-name {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333333;
}

#blockcart-modal .modal-header {
  background: #ffd54c;
}

/* end style layer cart */
#blockcart-modal button.close {
  color: white;
  opacity: 1;
}

#blockcart-modal .cart-content .btn {
  margin-top: 20px;
}

/* end module cart block */
/* module slideshow */
.pos-loading {
  background: #cccccc;
  position: relative;
}

.pos-loading span {
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 99;
  background: url(../img/preloader.gif) no-repeat;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
}

.pos-loading img {
  opacity: 0;
}

.nivo-html-caption {
  display: none;
}

@-webkit-keyframes myfirst {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes myfirst {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.timethai.pos_hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.pos_bannerslide {
  background: white;
  position: relative;
  z-index: 1;
}

.slideshow_container .pos-slideshow {
  position: relative;
  margin-bottom: 50px;
}

.slideshow_container .pos-slideshow:hover .nivo-directionNav a {
  opacity: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.slideshow_container .pos-slideshow .nivo-directionNav a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #e1e1e1;
  text-align: center;
  font-size: 0;
  position: absolute;
  z-index: 8;
  cursor: pointer;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.slideshow_container .pos-slideshow .nivo-directionNav a i {
  font-size: 36px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .slideshow_container .pos-slideshow .nivo-directionNav a {
    display: none;
  }
}

.slideshow_container .pos-slideshow .nivo-directionNav a:hover {
  color: #2d3338;
}

.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
  left: 20px;
}

@media (min-width: 1920px) {
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-prevNav {
    left: 200px;
  }
}

.slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
  right: 20px;
}

@media (min-width: 1920px) {
  .slideshow_container .pos-slideshow .nivo-directionNav a.nivo-nextNav {
    right: 200px;
  }
}

.slideshow_container .pos-slideshow .nivo-controlNav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 30px;
  z-index: 8;
}

@media (max-width: 1199px) {
  .slideshow_container .pos-slideshow .nivo-controlNav {
    bottom: 2.92969vw;
  }
}

@media (max-width: 767px) {
  .slideshow_container .pos-slideshow .nivo-controlNav {
    display: none;
  }
}

.slideshow_container .pos-slideshow .nivo-controlNav a {
  display: inline-block;
  position: relative;
  margin: 0 8px;
  cursor: pointer;
  font-size: 0;
  width: 8px;
  height: 8px;
  background: #2d3338;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.slideshow_container .pos-slideshow .nivo-controlNav a:before {
  content: "";
  border: 1px solid transparent;
  left: -6px;
  right: -6px;
  top: -6px;
  bottom: -6px;
  border-radius: 100%;
  position: absolute;
}

.slideshow_container .pos-slideshow .nivo-controlNav a.active,
.slideshow_container .pos-slideshow .nivo-controlNav a:hover {
  background: #ffd54c;
}

.slideshow_container .pos-slideshow .nivo-controlNav a.active:before,
.slideshow_container .pos-slideshow .nivo-controlNav a:hover:before {
  border-color: #ffd54c;
}

.banner7-des {
  position: absolute;
  left: 40px;
  top: 50%;
  right: 0;
  z-index: 8;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  text-align: left;
  direction: ltr;
}

@media (max-width: 767px) {
  .banner7-des {
    left: 0;
  }
}

.banner7-des p {
  margin: 0;
}

.banner7-des .desc,
.banner7-des .desc1,
.banner7-des .desc2 {
  max-width: 52%;
}

@media (max-width: 480px) {

  .banner7-des .desc,
  .banner7-des .desc1,
  .banner7-des .desc2 {
    max-width: 80%;
  }
}

.desc,
.desc1,
.desc2,
.desc3 {
  font-family: 'Lato', sans-serif;
}

.desc .title1,
.desc1 .title1,
.desc2 .title1,
.desc3 .title1 {
  position: relative;
  font-size: 24px;
  font-style: italic;
  color: #2d3338;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: capitalize;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.desc .title1:before,
.desc1 .title1:before,
.desc2 .title1:before,
.desc3 .title1:before {
  content: "";
  position: absolute;
  left: 100%;
  margin-left: 10px;
  top: 60%;
  width: 70px;
  height: 1px;
  background: #a8a8a8;
}

.desc .title2,
.desc1 .title2,
.desc2 .title2,
.desc3 .title2 {
  position: relative;
  font-size: 48px;
  color: #2d3338;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.desc .title3,
.desc1 .title3,
.desc2 .title3,
.desc3 .title3 {
  position: relative;
  font-size: 48px;
  color: #2d3338;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
}

.desc .title4,
.desc1 .title4,
.desc2 .title4,
.desc3 .title4 {
  position: relative;
  font-size: 48px;
  color: #2d3338;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.desc .readmore,
.desc1 .readmore,
.desc2 .readmore,
.desc3 .readmore {
  -webkit-animation-duration: 2.4s;
  animation-duration: 2.4s;
  display: inline-block;
}

.desc .readmore a,
.desc1 .readmore a,
.desc2 .readmore a,
.desc3 .readmore a {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #2d3338;
  line-height: 50px;
  text-transform: uppercase;
  padding: 0 30px;
  border-radius: 5px;
  background: #ffd54c;
  display: inline-block;
}

.desc .readmore a:hover,
.desc1 .readmore a:hover,
.desc2 .readmore a:hover,
.desc3 .readmore a:hover {
  background: #2d3338;
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* responsive slideshow */
@media (max-width: 1199px) {

  .desc .title1,
  .desc1 .title1,
  .desc2 .title1,
  .desc3 .title1 {
    font-size: 1.95313vw;
    margin: 0 0 0.97656vw 0;
  }

  .desc .title1:before,
  .desc1 .title1:before,
  .desc2 .title1:before,
  .desc3 .title1:before {
    margin-left: 0.97656vw;
    width: 6.83594vw;
    height: 0.09766vw;
  }

  .desc .title2,
  .desc1 .title2,
  .desc2 .title2,
  .desc3 .title2 {
    font-size: 3.71094vw;
  }

  .desc .title3,
  .desc1 .title3,
  .desc2 .title3,
  .desc3 .title3 {
    font-size: 3.71094vw;
  }

  .desc .title4,
  .desc1 .title4,
  .desc2 .title4,
  .desc3 .title4 {
    font-size: 3.71094vw;
    margin: 0 0 2.92969vw 0;
  }

  .desc .readmore a,
  .desc1 .readmore a,
  .desc2 .readmore a,
  .desc3 .readmore a {
    font-size: 1.26953vw;
    line-height: 3.90625vw;
    padding: 0vw 2.44141vw;
  }
}

@media (max-width: 480px) {

  .desc .title1,
  .desc1 .title1,
  .desc2 .title1,
  .desc3 .title1 {
    font-size: 4.16667vw;
    margin: 0 0 2.08333vw 0;
  }

  .desc .title2,
  .desc1 .title2,
  .desc2 .title2,
  .desc3 .title2 {
    font-size: 5.83333vw;
  }

  .desc .title3,
  .desc1 .title3,
  .desc2 .title3,
  .desc3 .title3 {
    font-size: 5.83333vw;
  }

  .desc .title4,
  .desc1 .title4,
  .desc2 .title4,
  .desc3 .title4 {
    font-size: 5.83333vw;
    margin: 0 0 2.08333vw 0;
  }

  .desc .readmore a,
  .desc1 .readmore a,
  .desc2 .readmore a,
  .desc3 .readmore a {
    font-size: 2.5vw;
    line-height: 6.25vw;
    padding: 0vw 4.16667vw;
  }
}

/* end responsive slideshow */
/* end module slideshow */
/* module postabproductslider */
.product-tabs-container-slider {
  background: #f6f6f6;
  padding: 50px 0;
}

.product-tabs-container-slider .pos_title:before {
  border-color: #e9e9e9;
}

.product-tabs-container-slider ul.tabs_slider {
  display: inline-block;
  background: #f6f6f6;
  position: relative;
  font-family: 'Lato', sans-serif;
}

.product-tabs-container-slider ul.tabs_slider li {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-left: 15px;
  line-height: 35px;
  cursor: pointer;
  color: #777777;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 400;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

@media (max-width: 1199px) {
  .product-tabs-container-slider ul.tabs_slider li {
    font-size: 18px;
  }
}

.product-tabs-container-slider ul.tabs_slider li .firsttitle {
  font-weight: 700;
}

.product-tabs-container-slider ul.tabs_slider li:before {
  content: "";
  position: absolute;
  right: 100%;
  height: 1px;
  width: 15px;
  top: 50%;
  border-bottom: 1px solid #b2b2b2;
}

.product-tabs-container-slider ul.tabs_slider li:first-child {
  padding-left: 0;
  margin: 0;
}

.product-tabs-container-slider ul.tabs_slider li:first-child:before {
  display: none;
}

.product-tabs-container-slider ul.tabs_slider li.active,
.product-tabs-container-slider ul.tabs_slider li:hover {
  color: #2d3338;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.product-tabs-container-slider .first-item .js-product-miniature .img_block img {
  display: block;
}

@media (max-width: 767px) {
  .product-tabs-container-slider .first-item .js-product-miniature {
    margin-bottom: 20px;
  }
}

.product-tabs-container-slider .counts-item .js-product-miniature {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
}

.product-tabs-container-slider .counts-item .js-product-miniature .img_block {
  position: relative;
  float: right;
  width: 140px;
  margin: 0 0 0 10px;
}

@media (max-width: 1199px) {
  .product-tabs-container-slider .counts-item .js-product-miniature .img_block {
    width: 119px;
  }
}

@media (max-width: 767px) {
  .product-tabs-container-slider .counts-item .js-product-miniature .img_block {
    width: 100px;
  }
}

.product-tabs-container-slider .counts-item .js-product-miniature .product_desc {
  overflow: hidden;
  padding: 0;
}

.product-tabs-container-slider .counts-item .js-product-miniature .product_desc .product_name {
  margin-top: 15px !important;
  margin-bottom: 10px;
}

/* end  postabproductslider*/
/* module tabcateslider */
@media (min-width: 992px) {
  .tab-category-container-slider .pos_title {
    text-align: center;
  }

  .tab-category-container-slider .pos_title h2 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}

.tab-category-container-slider ul.tab_cates {
  display: inline-block;
  background: white;
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 25px;
  padding: 0 30px;
}

@media (min-width: 1200px) {
  .tab-category-container-slider ul.tab_cates {
    -moz-transform: translateX(80px);
    -webkit-transform: translateX(80px);
    -o-transform: translateX(80px);
    -ms-transform: translateX(80px);
    transform: translateX(80px);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tab-category-container-slider ul.tab_cates {
    -moz-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    -o-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
  }
}

.tab-category-container-slider ul.tab_cates li {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  margin-left: 15px;
  line-height: 33px;
  cursor: pointer;
  color: #777777;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tab-category-container-slider ul.tab_cates li:before {
  content: "";
  position: absolute;
  right: 100%;
  height: 1px;
  width: 15px;
  top: 50%;
  border-bottom: 1px solid #ebebeb;
}

.tab-category-container-slider ul.tab_cates li:first-child {
  margin: 0;
}

.tab-category-container-slider ul.tab_cates li:first-child:before {
  display: none;
}

.tab-category-container-slider ul.tab_cates li.active,
.tab-category-container-slider ul.tab_cates li:hover {
  color: #2d3338;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tab-category-container-slider ul.tab_cates li.active {
  font-weight: 700;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tab-category-container-slider .js-product-miniature .product_desc .add-to-links li {
  margin-right: 2px;
}

.tab-category-container-slider .js-product-miniature .product_desc .add-to-links li a {
  line-height: 33px;
  height: 35px;
  width: 35px;
}

.tab-category-container-slider .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button,
.tab-category-container-slider .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
  padding: 0 9px;
  font-size: 11px;
  height: 35px;
  line-height: 33px;
}

/* end module tabcateslider */
/* module poslistcateproduct  */
.poslistcateproduct .btn-group {
  position: absolute;
  right: 10px;
  top: 13px;
  z-index: 2;
}

.poslistcateproduct .btn-group>.btn {
  border: 0;
  background: transparent;
  padding: 0;
}

.poslistcateproduct .btn-group>.btn:after {
  display: none;
}

.poslistcateproduct .btn-group>.btn:hover,
.poslistcateproduct .btn-group>.btn:active,
.poslistcateproduct .btn-group>.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.poslistcateproduct .btn-group .dropdown-menu {
  right: 0;
  left: auto;
  top: 35px;
  border: 0;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.175);
  padding: 15px;
  min-width: 200px;
}

.poslistcateproduct .btn-group .dropdown-menu a {
  font-size: 12px;
  color: #666666;
  line-height: 25px;
}

.poslistcateproduct .btn-group .dropdown-menu a:hover {
  color: #ffd54c;
}

@media (min-width: 992px) {
  .poslistcateproduct .subcategories-list {
    float: right;
  }
}

.poslistcateproduct .subcategories-list li {
  display: inline-block;
}

.poslistcateproduct .subcategories-list li a {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 15px;
  line-height: 50px;
  cursor: pointer;
  color: #2777d0;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.poslistcateproduct .subcategories-list li a.active,
.poslistcateproduct .subcategories-list li a:hover {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.poslistcateproduct .banner-box img {
  width: 100%;
}

.poslistcateproduct .pos_content {
  padding: 30px;
}

.poslistcateproduct .pos_title {
  margin-bottom: 0;
}

.poslistcateproduct .pos_title .img_thumb {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #ffd54c;
  text-align: center;
  padding: 0;
}

.poslistcateproduct .pos_title .img_thumb img {
  width: 25px;
  margin: auto;
}

.poslistcateproduct .pos_title h2 {
  padding: 0;
}

.poslistcateproduct .pos_title span {
  padding: 0 20px;
}

.poslistcateproduct .js-product-miniature .product_desc .add-to-links li {
  margin-right: 2px;
}

.poslistcateproduct .js-product-miniature .product_desc .add-to-links li a {
  line-height: 33px;
  height: 35px;
  width: 35px;
}

.poslistcateproduct .js-product-miniature .product_desc .add-to-links li.cart button.ajax_add_to_cart_button,
.poslistcateproduct .js-product-miniature .product_desc .add-to-links li.cart span.ajax_add_to_cart_button {
  padding: 0 9px;
  font-size: 11px;
  height: 35px;
  line-height: 33px;
}

/* end module poslistcateproduct  */
/* module featured-products */
/* end module featured-products */
/* module new-products */
.pos_new_product .js-product-miniature,
.pos-featured-products .js-product-miniature {
  display: inline-block;
  width: 100%;
  padding: 20px;
}

.pos_new_product .js-product-miniature .img_block,
.pos-featured-products .js-product-miniature .img_block {
  position: relative;
  float: right;
  width: 140px;
  margin: 0 0 0 10px;
}

@media (max-width: 1199px) {

  .pos_new_product .js-product-miniature .img_block,
  .pos-featured-products .js-product-miniature .img_block {
    width: 100px;
  }
}

.pos_new_product .js-product-miniature .product_desc,
.pos-featured-products .js-product-miniature .product_desc {
  overflow: hidden;
  padding: 0;
}

.pos_new_product .js-product-miniature .product_desc .product_name,
.pos-featured-products .js-product-miniature .product_desc .product_name {
  margin-top: 15px !important;
  margin-bottom: 10px;
}

/* end module new-products */
/* end module suggestcateproducts */
.category-products-slider {
  margin-bottom: 0;
}

.category-products-slider .category_products {
  margin-bottom: 50px;
}

.category-products-slider .js-product-miniature {
  display: inline-block;
  width: 100%;
  border: none;
  padding: 0;
}

.category-products-slider .js-product-miniature .img_block {
  position: relative;
  float: left;
  width: 100px;
  margin-right: 20px;
}

.category-products-slider .js-product-miniature .product_desc {
  overflow: hidden;
  padding: 0;
}

.category-products-slider .js-product-miniature .product_desc .product_name {
  margin-top: 0 !important;
  margin-bottom: 5px;
}

/* end module  ssuggestcateproducts */
/* module special-products */
/* countdown */
.box-countdown {
  font-family: 'Rubik', sans-serif;
  margin-top: 25px;
  position: relative;
  padding-bottom: 20px;
}

.box-countdown:before {
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffd54c;
  border-radius: 10px;
}

.box-countdown .title-countdown {
  float: left;
  margin-right: 10px;
}

.box-countdown .title-countdown span {
  font-size: 14px;
  line-height: 20px;
  color: #2d3338;
  font-weight: 400;
}

.box-countdown .countdown {
  overflow: hidden;
}

.is-countdown {
  display: inline-block;
  width: 100%;
  position: relative;
}

.is-countdown .countdown-section {
  display: inline-block;
}

.is-countdown .countdown-section .countdown-amount {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #2d3338;
  font-weight: 400;
  position: relative;
}

.is-countdown .countdown-section .countdown-period {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #a4a4a4;
}

.is-countdown .countdown-section:last-child:after {
  display: none;
}

.is-countdown .countdown-section:after {
  content: ":";
  display: inline-block;
  margin: 0 5px;
}

/* 	.countdown-show1 .countdown-section {
		width: 100%;
	}
	.countdown-show2 .countdown-section {
		width: 50%;
	}
	.countdown-show3 .countdown-section {
		width: 33.33%;
	}
	.countdown-show4 .countdown-section {
		width: 25%;
	}
	#product .countdown-show4 .countdown-section{width: auto;}
	.countdown-show5 .countdown-section {
		width: 19.5%;
	}
	.countdown-show6 .countdown-section {
		width: 16.25%;
	}
	.countdown-show7 .countdown-section {
		width: 14%;
	}  */
/* end countdown */
/* end module special-products */
/* module recommendedproducts */
/*end  module recommendedproducts */
/* module list-categories */
.poslistcategories {
  position: relative;
  background: #f6f6f6;
  padding: 50px 0;
}

.poslistcategories .pos_title h2 {
  background: #f6f6f6;
}

.poslistcategories .owl-nav {
  right: 0;
}

.poslistcategories .pos_content {
  margin: 0;
}

.poslistcategories .pos_content .owl-carousel .owl-stage-outer {
  border-radius: 5px;
}

.poslistcategories .pos_content .owl-carousel .owl-item {
  padding: 0;
}

.poslistcategories .pos_content .owl-carousel .owl-item.firstActiveItem .list-categories {
  border-left: none;
}

.poslistcategories .list-categories {
  position: relative;
  background: white;
  padding: 20px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}

.poslistcategories .list-categories:last-child {
  border-bottom: none;
}

.poslistcategories .list-categories:hover .thumb-category img {
  -moz-transform: scale(1.1) rotate(0.05deg);
  -ms-transform: scale(1.1) rotate(0.05deg);
  -o-transform: scale(1.1) rotate(0.05deg);
  -webkit-transform: scale(1.1) rotate(0.05deg);
  transform: scale(1.1) rotate(0.05deg);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  width: 100%;
}

.poslistcategories .list-categories .thumb-category {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  float: left;
  width: 150px;
  margin-right: 20px;
}

@media (max-width: 360px) {
  .poslistcategories .list-categories .thumb-category {
    float: none;
    width: 100%;
    display: inline-block;
    margin: 0 0 20px 0;
  }
}

.poslistcategories .list-categories .thumb-category a {
  display: block;
  position: relative;
  overflow: hidden;
}

.poslistcategories .list-categories .thumb-category img {
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  width: 100%;
}

.poslistcategories .list-categories .desc-listcategoreis {
  overflow: hidden;
}

.poslistcategories .list-categories .desc-listcategoreis .name_categories {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #2d3338;
  text-transform: capitalize;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.poslistcategories .list-categories .desc-listcategoreis .sub a {
  color: #757575;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  float: left;
  clear: both;
}

.poslistcategories .list-categories .desc-listcategoreis .sub a:hover {
  padding-left: 10px;
  color: #ffd54c;
}

.poslistcategories .list-categories .desc-listcategoreis .view-more a {
  display: block;
  float: right;
  clear: both;
  margin-top: 10px;
  padding: 0;
  color: #757575;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
}

.poslistcategories .list-categories .desc-listcategoreis .view-more a:after {
  content: "\f362";
  font-size: 16px;
  display: inline-block;
  font-family: "Ionicons";
  margin-left: 5px;
  vertical-align: -2px;
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.poslistcategories .list-categories .desc-listcategoreis .view-more a:hover {
  color: #ffd54c;
}

.poslistcategories .list-categories .desc-listcategoreis .view-more a:hover:after {
  -moz-transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* end module list-categories */
/* blog */
.home_blog_post_area {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 40px;
}

.home_blog_post_area .pos_title:before {
  content: "";
  background: url(../img/icon_blog.png) no-repeat #ffd54c;
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: top;
}

.home_blog_post_area .pos_title a {
  float: right;
  color: #2777d0;
  font-size: 14px;
  line-height: 50px;
  text-transform: capitalize;
  margin-right: 15px;
}

.home_blog_post_area .pos_title a:hover {
  color: #ffd54c;
}

.home_blog_post_area .blog_slider .item .blog_post {
  display: inline-block;
  width: 100%;
  background: white;
}

.home_blog_post_area .blog_slider .item .blog_post .post_content {
  position: relative;
  padding-top: 45px;
}

.home_blog_post_area .blog_slider .item .blog_post img {
  width: 100%;
}

.home_blog_post_area .blog_slider .item .blog_post .post_title {
  margin: 0;
}

.home_blog_post_area .blog_slider .item .blog_post .post_title a {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #2d3338;
  text-transform: capitalize;
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.home_blog_post_area .blog_slider .item .blog_post .post_title a:hover {
  color: #ffd54c;
}

.home_blog_post_area .blog_slider .item .blog_post .date_time {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #ebebeb;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  left: 15px;
  top: -30px;
  padding-top: 12px;
}

.home_blog_post_area .blog_slider .item .blog_post .date_time .day_time {
  display: block;
  color: #2d3338;
  font-size: 18px;
  font-weight: 600;
}

.home_blog_post_area .blog_slider .item .blog_post .date_time .moth_time {
  display: block;
  color: #2d3338;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.home_blog_post_area .blog_slider .item .blog_post .post_meta {
  overflow: hidden;
}

.home_blog_post_area .blog_slider .item .blog_post .post_meta span {
  color: #ffd54c;
  font-size: 14px;
  line-height: 18px;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 20px;
}

.home_blog_post_area .blog_slider .item .blog_post .post_meta span:last-child {
  margin: 0;
}

.home_blog_post_area .blog_slider .item .blog_post .post_meta span i {
  margin-right: 5px;
  color: #5b5b5b;
  vertical-align: 1px;
}

.home_blog_post_area .blog_slider .item .blog_post .post_description {
  font-size: 14px;
  font-weight: 400;
  color: #2d3338;
  margin: 0;
  display: inline-block;
  width: 100%;
  line-height: 20px;
  padding: 20px 0 0 0;
}

.home_blog_post_area .blog_slider .item .blog_post a.read-more {
  display: inline-block;
  line-height: 40px;
  border: 1px solid transparent;
  padding: 0 40px;
  border-radius: 30px;
  color: white;
  background: #ffd54c;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-top: 30px;
}

.home_blog_post_area .blog_slider .item .blog_post a.read-more:hover {
  color: #ffd54c;
  background: white;
  border-color: #ffd54c;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail {
  position: relative;
  overflow: hidden;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail a {
  display: block;
  position: relative;
  overflow: hidden;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail a:before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  z-index: 1;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail a:after {
  background: rgba(255, 255, 255, 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover a:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover a:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail img {
  width: 100%;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.blog_mask {
  display: none;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail .blog_mask .blog_mask_content a {
  display: block;
  text-align: center;
  font-size: 70px;
  color: #fff;
  display: none;
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.home_blog_post_area .home_blog_post .blog_post .post_thumbnail:hover .blog_mask .blog_mask_content {
  left: 50%;
}

.kr_blog_post_area .blog_post {
  margin-bottom: 40px;
}

.kr_blog_post_area .blog_post .post_thumbnail img {
  margin: 0;
  width: 100%;
}

.kr_blog_post_area .blog_post .post_content .post_title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.kr_blog_post_area .blog_post .post_content .post_meta>p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  padding-right: 10px;
  margin-right: 10px;
}

.kr_blog_post_area .blog_post .post_content .read_more a {
  color: #999999;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

/* end blog */
/* module logo */
.pos_logo {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 15px 0;
  background: white;
  overflow: hidden;
  margin-bottom: 50px;
}

.pos_logo .item-banklogo:hover img {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}

.pos_logo .item-banklogo img {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* end module logo */
/* module newletter */
.ft_newsletter {
  position: relative;
}

.ft_newsletter .desc {
  font-size: 14px;
  color: #666666;
  margin: 0;
  line-height: 20px;
  max-width: 80%;
}

.ft_newsletter form {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

@media (max-width: 991px) {
  .ft_newsletter form {
    margin-top: 20px;
  }
}

.ft_newsletter form .input-wrapper input {
  height: 48px;
  background: white;
  border: 0;
  color: #9e9e9e;
  padding: 10px 120px 10px 25px;
  display: inline-block;
  width: 100%;
  font-size: 13px;
  border: none;
  background: #f0f0f0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

.ft_newsletter form .input-wrapper input::-moz-placeholder {
  color: #9e9e9e;
  opacity: 1;
}

.ft_newsletter form .input-wrapper input::-webkit-input-placeholder {
  color: #9e9e9e;
  opacity: 1;
}

.ft_newsletter form .input-wrapper input:-ms-input-placeholder {
  color: #9e9e9e;
  opacity: 1;
}

.ft_newsletter form .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  display: block;
  line-height: 28px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  color: #2d3338;
  background: #ffd54c;
  border: none;
  border-radius: 0px 5px 5px 0px;
  box-shadow: none;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.ft_newsletter form .btn:hover {
  background: #2d3338;
  color: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.ft_newsletter form .condition,
.ft_newsletter form .alert {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 24px;
  color: #bcbcbc;
  background: none;
  border: 0;
  padding: 0;
}

.ft_newsletter form .condition.alert-danger,
.ft_newsletter form .alert.alert-danger {
  color: #ffd54c;
}

.ft_newsletter form .condition.alert-success,
.ft_newsletter form .alert.alert-success {
  color: #ffd54c;
}

/* end module newletter */
/* end module social */
#header .social_follow {
  text-align: left;
  width: auto;
  padding: 0;
}

@media (max-width: 991px) {
  #header .social_follow {
    margin: 0;
  }
}

#header .social_follow h2 {
  color: #2d3338;
  font-size: 13px;
  line-height: 16px;
  float: left;
  margin: 0 10px 0 0;
  display: block;
  font-weight: 400;
}

@media (max-width: 767px) {
  #header .social_follow {
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  #header .social_follow h2 {
    margin: 0 0 10px 0;
    display: block;
    float: none;
    display: none;
  }
}

#header .social_follow ul {
  overflow: hidden;
}

#header .social_follow ul li {
  line-height: 16px;
  margin: 0 10px 0 0;
}

#header .social_follow ul li a {
  height: 16px;
  line-height: 16px;
  border: none;
  width: 16px;
}

#header .social_follow ul li a:before {
  font-size: 16px;
}

#header .social_follow ul li a:hover {
  background: transparent;
}

.social_follow {
  position: relative;
  font-size: 0;
  text-align: right;
}

@media (max-width: 991px) {
  .social_follow {
    margin-top: 10px;
    text-align: left;
  }
}

.social_follow h2 {
  display: none;
}

.social_follow li {
  display: inline-block;
  margin: 0 10px 0 0;
  line-height: 40px;
  background-image: none !important;
  padding: 0;
}

.social_follow li:last-child {
  margin: 0;
}

.social_follow li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #2d3338;
  background: transparent;
  font-size: 0;
  padding: 0;
  line-height: 44px;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  text-align: center;
  border: 1px solid #2d3338;
  z-index: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.social_follow li a:before {
  padding: 0 !important;
  font-size: 18px;
  display: inline-block;
  font-family: "Ionicons";
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.social_follow li a:hover {
  color: white;
  background: #2d3338;
}

.social_follow li.facebook a:before {
  content: "\f231";
}

.social_follow li.twitter a:before {
  content: "\f243";
}

.social_follow li.rss a:before {
  content: "\f23d";
}

.social_follow li.youtube a:before {
  content: "\f24d";
}

.social_follow li.googleplus a:before {
  content: "\f234";
}

.social_follow li.pinterest a:before {
  content: "\f2b1";
}

.social_follow li.vimeo a:before {
  content: "\f245";
}

.social_follow li.instagram a:before {
  content: "\f350";
}

/* end module social */
/* module advertising */
.advertising {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
  overflow: hidden;
}

.advertising a img {
  width: 100%;
  height: auto;
}

.advertising a:before {
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
}

.advertising a:after {
  background: rgba(255, 255, 255, 0.2);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
}

.advertising:hover a:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}

.advertising:hover a:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  -moz-transition: all 900ms linear;
  -ms-transition: all 900ms linear;
  -o-transition: all 900ms linear;
  transition: all 900ms linear;
}

/* end module advertising */
/* module tags */
#tags_block {
  background: white;
  padding: 15px 0;
}

#tags_block h2 {
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  color: #2d3338;
  margin: 0;
  text-transform: capitalize;
  float: left;
  margin-right: 30px;
}

#tags_block .tags_block {
  line-height: 1;
}

@media (max-width: 991px) {
  #tags_block .tags_block {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
  }
}

#tags_block .tags_block li {
  line-height: 1;
  float: left;
  list-style: none;
}

#tags_block .tags_block li:first-child a {
  padding-left: 0;
  border-left: 0;
}

#tags_block .tags_block li a {
  display: block;
  float: left;
  padding: 0 15px;
  font-size: 14px;
  line-height: 14px;
  color: #919191;
  font-weight: 400;
  border-left: 1px solid #ebebeb;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  #tags_block .tags_block li a {
    padding: 0 10px;
    font-size: 12px;
  }
}

#tags_block .tags_block li a:hover {
  color: #ffd54c;
}

/* end module tags */
/* module testimonials */
.testimonials_container {
  position: relative;
}

.testimonials_container .pos_title:before {
  content: "";
  background: url(../img/icon_testimonial.png) no-repeat #ffd54c;
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: top;
}

.testimonials_container .item-testimonials .item {
  position: relative;
  text-align: center;
}

.testimonials_container .item-testimonials .item:before {
  background: url(../img/bg_testimonial.jpg) no-repeat white;
  content: "";
  height: 155px;
  background-size: cover;
  display: block;
}

.testimonials_container .item-testimonials .item .des_testimonial {
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .testimonials_container .item-testimonials .item .des_testimonial {
    margin-bottom: 30px;
  }
}

.testimonials_container .item-testimonials .item .des_testimonial:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: -10px;
}

.testimonials_container .item-testimonials .item .des_testimonial p {
  color: #2d3338;
  line-height: 24px;
  margin: 0;
  font-size: 16px;
}

.testimonials_container .item-testimonials .item img {
  margin-bottom: 7px;
  border: 2px solid #ffd54c;
  border-radius: 100%;
  width: 86px;
  height: 86px;
  border: 3px solid #ffd54c;
  margin-top: -43px;
}

.testimonials_container .item-testimonials .item .content_author .des_namepost {
  font-size: 16px;
  color: #ffd54c;
  line-height: 30px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
}

.testimonials_container .item-testimonials .item .content_author .des_email {
  font-size: 14px;
  color: #959595;
  line-height: 20px;
  margin: 0;
}

.testimonials_container .item-testimonials .item .content_author .des_email:hover {
  color: #ffd54c;
}

/* end module testimonials */
/* static */
@-webkit-keyframes fadeInRightBanner {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBanner {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBanner {
  -webkit-animation-name: fadeInRightBanner;
  animation-name: fadeInRightBanner;
}

.home-banner {
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (min-width: 992px) {
  .home-banner {
    margin-bottom: 20px;
  }
}

.home-banner .row {
  margin: 0 -5px;
}

.home-banner .row .col {
  padding: 0 5px;
}

.banner-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.banner-box img {
  width: 100%;
}

.banner-box:hover .txt_banner h2,
.banner-box:hover .txt_banner h3,
.banner-box:hover .txt_banner a {
  animation: fadeInRightBanner 0.5s linear alternate;
  -webkit-animation: fadeInRightBanner 0.5s linear alternate;
  -moz-animation: fadeInRightBanner 0.5s linear alternate;
}

.banner-box .txt_banner {
  position: absolute;
  left: 50px;
  top: 50%;
  max-width: 40%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-box .txt_banner {
    left: 20px;
    max-width: 50%;
  }
}

@media (max-width: 440px) {
  .banner-box .txt_banner {
    left: 20px;
    max-width: 50%;
  }
}

.banner-box .txt_banner h2 {
  color: #747c83;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 440px) {
  .banner-box .txt_banner h2 {
    font-size: 16px;
  }
}

.banner-box .txt_banner h3 {
  color: #2d3338;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .banner-box .txt_banner h3 {
    font-size: 24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-box .txt_banner h3 {
    margin-bottom: 10px;
  }
}

@media (max-width: 440px) {
  .banner-box .txt_banner h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.banner-box .txt_banner a {
  display: inline-block;
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  color: #2d3338;
  background: #ffd54c;
  border-radius: 5px;
}

@media (max-width: 440px) {
  .banner-box .txt_banner a {
    line-height: 30px;
  }
}

.banner-box .txt_banner a:hover {
  background: #2d3338;
  color: white;
}

.static_cms {
  position: relative;
  background: white;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 27px 10px;
  margin-bottom: 50px;
}

.static_cms .col-cms {
  border-left: 1px solid #ebebeb;
}

@media (max-width: 575px) {
  .static_cms .col-cms {
    border: none;
  }
}

.static_cms .col-cms:first-child {
  border: none;
}

.static_cms .box_cms {
  display: inline-block;
  width: 100%;
}

.static_cms .box_cms:hover .txt_cms h2 {
  color: #ffd54c;
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.static_cms .box_cms img {
  float: left;
  margin-right: 10px;
}

.static_cms .box_cms .txt_cms {
  overflow: hidden;
  padding: 5px 0;
}

.static_cms .box_cms .txt_cms h2 {
  line-height: 20px;
  color: #2d3338;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  font-family: 'Lato', sans-serif;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.static_cms .box_cms .txt_cms p {
  line-height: 20px;
  color: #757575;
  font-size: 13px;
  margin: 0;
}

.static_footer .txt_info {
  float: left;
}

.static_footer .txt_info h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .static_footer .txt_info h2 {
    font-size: 26px;
  }
}

.static_footer .txt_info h2 span {
  font-weight: 700;
}

.static_footer .txt_info p {
  color: #757575;
  font-size: 13px;
}

.static_footer a {
  float: right;
  display: inline-block;
  padding: 0 30px;
  line-height: 48px;
  background: #2d3338;
  border-radius: 25px;
  color: white;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .static_footer a {
    float: left;
    clear: both;
    margin-top: 15px;
  }
}

.static_footer a:hover {
  background: #2b3137;
}

.tag-static {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-static li a {
  line-height: 30px;
  text-transform: capitalize;
  color: #5b697b;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}

.tag-static li a:first-child {
  padding: 0 15px;
  font-weight: 400;
  color: #fff;
  background: #37475a;
  border-radius: 5px;
  margin-right: 8px;
}

.tag-static li a:first-child:after {
  display: none;
}

.tag-static li a:hover {
  color: white;
}

.tag-static li a:after {
  content: "/";
  display: inline-block;
  vertical-align: top;
  margin: 0 9px;
  color: #5b697b;
}

.tag-static li a:last-child:after {
  display: none;
}

/* end static */
/* footer */
#footer {
  padding: 0;
  color: #666666;
}

#footer p {
  color: #666666;
}

#footer .footer-container {
  margin: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none;
  background: white;
}

#footer .footer-container .footer-top {
  padding: 45px 0;
  background: #ffd54c;
}

#footer .footer-container .footer-middle {
  padding: 45px 0;
}

#footer .footer-container .footer-bottom .container {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

#footer .footer-container .footer-bottom .container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  border-top: 1px solid #ebebeb;
}

#footer .footer-container .footer-bottom .copyright {
  line-height: 30px;
  color: #999999;
  font-size: 13px;
  line-height: 23px;
}

@media (max-width: 767px) {
  #footer .footer-container .footer-bottom .copyright {
    margin-bottom: 10px;
  }
}

#footer .footer-container .footer-bottom .copyright a {
  color: #2d3338;
}

#footer .footer-container .footer-bottom .copyright a:hover {
  color: #ffd54c;
}

#footer .footer-container .footer-bottom .payment {
  text-align: right;
}

@media (max-width: 767px) {
  #footer .footer-container .footer-bottom .payment {
    text-align: left;
  }
}

#footer .footer-container .footer-bottom .payment img {
  display: inline-block;
  margin: 0;
}

#footer .footer-container .about_us {
  line-height: 20px;
}

#footer .footer-container .about_us .footer-info {
  padding-top: 15px;
}

#footer .footer-container .about_us .logo_footer {
  margin-bottom: 25px;
}

#footer .footer-container .about_us .logo_footer img {
  margin: 0;
}

#footer .footer-container .about_us .desc_footer {
  margin-bottom: 20px;
}

#footer .footer-container .about_us .add {
  margin-bottom: 20px;
}

#footer .footer-container .about_us .add h2 {
  font-size: 16px;
  color: #2d3338;
  text-transform: capitalize;
  margin-bottom: 10px;
}

#footer .footer-container .about_us .add p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

#footer .footer-container .footer_block {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #footer .footer-container .footer_block {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #footer .footer-container .footer_block:nth-child(3) {
    clear: both;
  }
}

@media (max-width: 767px) {
  #footer .footer-container .footer_block .title {
    padding: 0;
    border: none;
  }
}

#footer .footer-container .footer_block h3 {
  font-size: 17px;
  line-height: 45px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 15px 0;
  text-transform: capitalize;
  font-family: 'Lato', sans-serif;
}

@media (max-width: 767px) {
  #footer .footer-container .footer_block h3 {
    margin: 0;
    line-height: 30px;
  }
}

#footer .footer-container .footer_block .navbar-toggler {
  position: absolute;
  right: 15px;
  top: 5px;
  width: auto;
  height: auto;
  color: #666666;
}

#footer .footer-container .footer_block .footer_list {
  margin-bottom: 0;
  background: none;
}

#footer .footer-container .footer_block .footer_list li {
  display: block;
  margin: 0;
  line-height: 20px;
  margin-bottom: 10px;
  border: 0;
  padding: 0;
  font-weight: 400;
}

#footer .footer-container .footer_block .footer_list li a {
  font-size: 14px;
  line-height: 20px;
  display: block;
  position: relative;
  color: #666666;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* #footer .footer-container .footer_block .footer_list li a:before { content: "\f105"; font-family: "Font Awesome 5 Free"; font-size: 14px; display: inline-block; margin-right: 5px; font-weight: 700; display: none; } */
#footer .footer-container .footer_block .footer_list li a:hover {
  color: #ffd54c;
  padding-left: 10px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

/* #footer .footer-container .footer_block .footer_list li a:hover:before { color: #ffd54c; } */

/* end footer */
/* category page */
@media (max-width: 767px) {

  #left-column,
  #content-wrapper,
  #right-column {
    width: 100%;
  }
}

.name_category {
  text-align: center;
  margin-bottom: 40px;
  display: inline-block;
  width: 100%;
}

.name_category h2 {
  display: inline-block;
  position: relative;
  font-size: 30px;
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

#js-product-list-top ul.display {
  float: left;
  margin-right: 50px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 991px) {
  #js-product-list-top ul.display {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  #js-product-list-top ul.display {
    margin-bottom: 10px;
  }
}

#js-product-list-top ul.display li {
  float: left;
  line-height: 26px;
  margin-right: 5px;
  cursor: pointer;
  color: #dbdbdb;
  background: transparent;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#js-product-list-top ul.display li:hover,
#js-product-list-top ul.display li.selected {
  color: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#js-product-list-top ul.display li i {
  font-size: 24px;
}

.quickview .modal-content {
  background: white;
}

@media (min-width: 1920px) {
  .modal {
    top: 50%;
    bottom: auto;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .modal-dialog {
    margin: 0 auto;
  }
}

#js-product-list .product_content {
  position: relative;
  background: white;
}

#js-product-list .product_content.list .js-product-miniature {
  padding: 20px;
  margin-bottom: 20px;
}

#js-product-list .product_content.list .js-product-miniature .row {
  margin: 0;
}

#js-product-list .product_content.list .js-product-miniature:before {
  display: none;
}

#js-product-list .product_content.list .js-product-miniature .box-top,
#js-product-list .product_content.list .js-product-miniature .img_block .add-to-links {
  display: none;
}

#js-product-list .product_content.list .js-product-miniature .img_block {
  padding: 0;
  overflow: hidden;
  margin: 0;
}

#js-product-list .product_content.list .js-product-miniature .product_desc {
  padding: 20px;
  text-align: left;
}

@media (max-width: 479px) {
  #js-product-list .product_content.list .js-product-miniature .product_desc {
    padding: 20px 0 0 0;
  }
}

@media (min-width: 992px) {
  #js-product-list .product_content.list .js-product-miniature .product_desc {
    padding-right: 200px;
  }
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner {
  text-align: center;
}

@media (min-width: 992px) {
  #js-product-list .product_content.list .js-product-miniature .product_desc .box-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-left: 1px solid #ebebeb;
    width: 180px;
    padding-top: 20px;
    padding-left: 20px;
  }
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart {
  position: static;
  margin-bottom: 10px;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart button.ajax_add_to_cart_button,
#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart span.ajax_add_to_cart_button {
  display: block;
  background: #ffd54c;
  color: #2d3338;
  line-height: 40px;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  cursor: pointer;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  text-transform: capitalize;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart button.ajax_add_to_cart_button:before,
#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart span.ajax_add_to_cart_button:before {
  display: none;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart button.ajax_add_to_cart_button:hover,
#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner div.cart span.ajax_add_to_cart_button:hover {
  color: white;
  background: #2d3338;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .add-to-links {
  position: static;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .add-to-links li {
  float: none;
  clear: none;
  display: inline-block;
  height: 40px;
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .product-price-and-shipping {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  #js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .product-price-and-shipping {
    margin-bottom: 20px;
  }
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .product-price-and-shipping .price {
  font-size: 24px;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .box-inner .product-price-and-shipping .regular-price {
  font-size: 22px;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .product_name {
  min-height: auto;
  text-transform: capitalize;
  font-size: 18px;
  color: #2777d0;
  margin-top: 0 !important;
  margin-bottom: 20px;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .product_name:hover {
  color: #2d3338;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .hook-reviews {
  margin: 0;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .product-desc {
  display: block;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .product-desc p {
  font-size: 14px;
  color: #757575;
  line-height: 25px;
  padding: 0;
}

#js-product-list .product_content.list .js-product-miniature .product_desc .variant-links {
  margin-top: 30px;
}

@media (max-width: 479px) {

  #js-product-list .product_content.list .js-product-miniature .img_block,
  #js-product-list .product_content.list .js-product-miniature .product_desc {
    width: 100%;
  }
}

#js-product-list .product_content.grid {
  margin: 0 -10px;
}

#js-product-list .product_content.grid .item-product {
  padding: 0 10px;
}

#js-product-list .product_content.grid .item-product .js-product-miniature {
  margin-bottom: 20px;
}

#js-product-list .product_content.grid .item-product .js-product-miniature:before {
  left: -15px;
  right: auto;
}

#js-product-list .product_content.grid .item-product .js-product-miniature:after {
  content: "";
  border-bottom: 1px solid #ebebeb;
  bottom: -30px;
  left: -30px;
  right: 0;
  position: absolute;
}

@media (min-width: 480px) and (max-width: 543px) {
  #js-product-list .product_content.grid .item-product {
    width: 50%;
  }
}

@media (min-width: 992px) {
  #js-product-list .product_content.grid .item-product:nth-child(3n+1) {
    clear: both;
  }

  #js-product-list .product_content.grid .item-product:nth-child(3n+1) .js-product-miniature:before {
    display: none;
  }

  #js-product-list .product_content.grid .item-product:nth-child(3n+1) .js-product-miniature:after {
    left: 0;
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  #js-product-list .product_content.grid .item-product:nth-child(2n+1) {
    clear: both;
  }

  #js-product-list .product_content.grid .item-product:nth-child(2n+1) .js-product-miniature:before {
    display: none;
  }

  #js-product-list .product_content.grid .item-product:nth-child(2n+1) .js-product-miniature:after {
    left: 0;
  }
}

@media (max-width: 479px) {
  #js-product-list .product_content.grid .item-product {
    clear: both;
  }

  #js-product-list .product_content.grid .item-product .js-product-miniature:before {
    display: none;
  }

  #js-product-list .product_content.grid .item-product .js-product-miniature:after {
    left: 0;
  }
}

@media (min-width: 480px) and (max-width: 543px) {
  #js-product-list .product_content .item-product.grid {
    float: left;
    width: 50%;
  }
}

.breadcrumb_container {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
}

.breadcrumb_container .breadcrumb-inner {
  background: transparent;
  margin-top: 30px;
}

.breadcrumb_container .breadcrumb-inner ol {
  padding-left: 0;
  margin-bottom: 0;
}

.breadcrumb_container .breadcrumb-inner ol li {
  display: inline;
}

.breadcrumb_container .breadcrumb-inner ol li:after {
  content: "\f3d3";
  font-family: "Ionicons";
  color: #666666;
  margin: 0.3125em;
  font-size: 14px;
  vertical-align: -1px;
}

.breadcrumb_container .breadcrumb-inner ol li:last-child a,
.breadcrumb_container .breadcrumb-inner ol li:last-child span {
  color: #333333;
}

.breadcrumb_container .breadcrumb-inner ol li:last-child:after {
  content: "";
}

.breadcrumb_container .breadcrumb-inner ol li a {
  display: inline-block;
  position: relative;
  color: #666666;
  line-height: 25px;
}

.breadcrumb_container .breadcrumb-inner ol li a:hover {
  color: #ffd54c;
}

.breadcrumb_container .breadcrumb-inner[data-depth="1"] {
  display: none;
}

.block-category {
  padding: 0;
  min-height: auto;
  margin: 0;
}

.block-category h1.h1 {
  font-weight: 500;
  color: #333333;
  font-size: 24px;
  line-height: 24px;
  padding: 0 0 15px 0;
  margin: 0;
  border: none;
}

.block-category .category-cover {
  position: static;
  margin-bottom: 20px;
}

.block-category .category-cover img {
  width: auto;
  height: auto;
}

.block-category.card {
  box-shadow: none;
  border: 0;
}

#products img,
.featured-products img,
.product-accessories img {
  margin: 0;
}

.block-categories,
#search_filters {
  box-shadow: none;
  background: #f6f6f6;
  padding: 35px 20px;
  margin-bottom: 30px;
}

.block-categories a.h6 {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #2d3338;
  margin-bottom: 15px;
  position: relative;
  display: block;
}

.block-categories .category-sub-menu {
  margin: 0;
}

.block-categories .category-sub-menu li {
  display: inline-block;
  width: 100%;
}

.block-categories .category-sub-menu li a {
  color: #2d3338;
}

.block-categories .category-sub-menu li a:hover {
  color: #ffd54c;
}

.block-categories .category-sub-menu li[data-depth="0"]>a {
  font-weight: 400;
  color: #2d3338;
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 35px;
  margin: 0;
  padding: 0;
  border: none;
}

.block-categories .category-sub-menu li[data-depth="0"]>a:hover {
  font-weight: 600;
}

.block-categories .category-sub-menu li[data-depth="1"] {
  margin: 0;
}

.block-categories .category-sub-menu li:last-child a {
  border-bottom: 0;
}

.block-categories .category-sub-menu .category-sub-link {
  font-size: 14px;
  line-height: 35px;
  margin: 0;
  padding: 0 10px;
  display: block;
}

.block-categories .collapse-icons {
  top: 5px;
  right: 0;
  height: auto;
  width: auto;
}

.block-categories .collapse-icons i {
  font-size: 18px;
}

.block-categories .collapse-icons i:hover {
  color: #ffd54c;
}

.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"]):before {
  display: none;
}

#search_filters_wrapper #search_filters h4 {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #2d3338;
  margin-bottom: 25px;
  position: relative;
  display: block;
}

#search_filters .facet .facet-title {
  display: block;
  clear: both;
  color: #2d3338;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 24px;
  text-transform: capitalize;
}

#search_filters .facet .collapse {
  margin: 0;
}

#search_filters .facet .collapse li {
  line-height: 25px;
}

#search_filters .facet .custom-checkbox input[type="checkbox"]+span {
  margin: -3px 3px 0 0;
  width: 15px;
  height: 15px;
  border: 1px #2d3338 solid;
  border-radius: 2px;
}

#search_filters .facet .custom-checkbox input[type="checkbox"]+span.color {
  border: 0;
}

#search_filters .facet .facet-label {
  margin: 5px 0;
}

#search_filters .facet .facet-label a {
  color: #2d3338;
  font-size: 14px;
  margin-top: 0;
}

#search_filters .facet .facet-label a:hover {
  color: #ffd54c;
}

/* Drop-down list */
.facet-dropdown {
  color: #2d3338;
  background: white;
  border: none;
  box-shadow: none;
}

.facet-dropdown .select-title {
  border: 1px solid #ebebeb;
  color: #2d3338;
  padding: 10px 15px;
  border-radius: 5px;
  background: #ffffff;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3', GradientType=0);
}

.facet-dropdown.open>.select-title {
  border: 1px solid #ebebeb;
  background: #ffffff;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3', GradientType=0);
}

.facet-dropdown .dropdown-menu {
  border: 1px solid #ebebeb;
  background: -moz-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: -webkit-linear-gradient(top, white 1%, #f3f3f3 100%);
  background: linear-gradient(to bottom, #ffffff 1%, #f3f3f3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3', GradientType=0);
  box-shadow: none;
}

.facet-dropdown .select-list {
  display: block;
  color: #2d3338;
  font-size: 14px;
  background: transparent;
}

/* end Drop-down list */
/* page list */
.pagination .page-list {
  box-shadow: none;
  padding: 0;
  text-align: left !important;
}

.pagination {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #ebebeb;
  padding: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 20px 0;
  line-height: 40px;
  color: #2d3338;
}

.pagination .previous,
.pagination .next {
  float: none;
}

.pagination a {
  font-weight: 400;
  color: #2d3338;
  padding: 0 10px;
  height: 28px;
  line-height: 28px;
  background: #f1f2f4;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

.pagination a i {
  font-size: 14px;
}

.pagination a:hover {
  background: #ffd54c;
  color: white;
}

.pagination .disabled {
  color: #2d3338;
}

.pagination .current a {
  background: #ffd54c;
  font-size: 14px;
  color: white;
}

.pagination .show_items {
  line-height: 28px;
  font-size: 14px;
}

.pagination>div:first-child {
  line-height: 1;
}

/*end page list */
@media (max-width: 767px) {
  #category #left-column #search_filters .facet .navbar-toggler {
    padding: 0.625rem 3rem 0 0;
  }
}

.products-selection .filter-button .btn-secondary,
.products-selection .filter-button .btn-tertiary {
  box-shadow: none;
  padding: 4px 15px;
  border-radius: 4px;
}

.products-selection .total-products {
  padding-top: 0;
}

.products-selection {
  border: 1px solid #ebebeb;
  padding: 15px;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.products-selection p,
.products-selection .sort-by {
  line-height: 20px;
  font-size: 14px;
  padding: 5px;
  margin: 0;
  float: left;
  color: #757575;
  font-weight: 400;
  text-transform: capitalize;
}

.products-selection .products-sort-order .select-title {
  border: 1px solid #ebebeb;
  padding: 2px 15px;
  line-height: 24px;
  font-size: 14px;
  margin: 0;
  color: #757575;
  text-align: left;
  box-shadow: none;
}

.products-selection .products-sort-order .select-title i {
  float: right;
}

.products-selection .products-sort-order .dropdown-menu {
  background: #fff;
  border: 1px solid #e1e1e1;
  right: 15px;
  left: auto;
  text-align: right;
  box-shadow: none;
  max-width: 100%;
}

.products-selection .products-sort-order .dropdown-menu .select-list {
  line-height: 24px;
  font-size: 14px;
  padding: 3px 15px;
}

.products-selection .products-sort-order .dropdown-menu .select-list:hover {
  background: #ffd54c;
}

.text-muted {
  margin-bottom: 20px;
}

/* end category page */
/* product page */
.box_content {
  border: 1px solid #ebebeb;
  padding: 20px;
  display: inline-block;
  width: 100%;
}

.h1.namne_details,
.product_name_h1 {
  font-size: 24px;
  line-height: 1;
  color: #2777d0;
  text-transform: capitalize;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.product-prices {
  margin: 0;
}

.product-prices .price,
.product-prices .current-price span:first-child {
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  color: #2d3338;
}

.product-prices .sale_details {
  color: #fd5018 !important;
}

.product-discount {
  display: inline-block;
}

.product-discount .regular-price {
  font-weight: 400;
  font-size: 30px;
  line-height: 20px;
  color: #a4a4a4;
}

.has-discount.product-price,
.has-discount p {
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  display: inline-block;
  color: #2d3338;
}

.has-discount .discount {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #2d3338;
  padding: 0 15px;
  background: #ffd54c;
  vertical-align: 7px;
}

.product-information {
  color: #2d3338;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}

.product-information span {
  font-size: 14px;
}

.product-information .product-desc {
  margin: 30px 0 0 0;
  padding: 30px 0;
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  color: #757575;
}

.product-information .product-desc p {
  font-size: 14px;
  color: #757575;
  margin: 0;
}

.product-information .product-desc p span {
  font-size: 14px !important;
  font-family: 'Lato', sans-serif !important;
  color: #757575;
}

.product-prices div {
  margin: 0;
}

.bootstrap-touchspin,
.product-variants>.product-variants-item select {
  box-shadow: none;
}

.product-variants>.product-variants-item {
  margin: 0 0 20px 0;
}

.product-quantity {
  display: block;
}

.product-quantity .qty {
  margin-right: 10px;
}

@media (max-width: 360px) {
  .product-quantity .add {
    clear: both;
    margin-top: 10px;
  }
}

.product-quantity #quantity_wanted {
  height: 50px;
}

.product-quantity .btn-touchspin {
  height: 26px;
}

.product-quantity .btn-touchspin:hover {
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.product-actions .product-add-to-cart {
  padding-top: 25px;
  border-top: 1px solid #ebebeb;
}

.product-actions .add-to-cart {
  position: relative;
  padding: 0 60px;
  color: #2d3338;
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  background: #ffd54c;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  box-shadow: none;
  text-transform: capitalize;
}

.product-actions .add-to-cart:hover {
  background: #2d3338;
  color: white;
}

.product-actions .add-to-cart:before {
  display: inline-block;
  margin-right: 5px;
  content: '+';
}

.product-actions .add-to-cart i {
  display: none;
}

.reference {
  font-size: 14px;
  color: #2d3338;
  margin: 0;
}

#block-reassurance {
  box-shadow: none !important;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #ebebeb;
  padding: 20px 0 0 0;
}

#block-reassurance span {
  font-weight: 400 !important;
  font-size: 14px;
}

#block-reassurance li {
  border: none !important;
}

#block-reassurance li .block-reassurance-item {
  padding: 10px;
  float: left;
  width: 33.33%;
  border: none !important;
}

#block-reassurance li .block-reassurance-item img {
  float: left;
  margin-right: 20px;
  width: auto;
}

#block-reassurance li .block-reassurance-item span.h6 {
  overflow: hidden;
  color: #757575;
  display: block;
}

@media (max-width: 543px) {
  #block-reassurance li {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
  }

  #block-reassurance li:last-child {
    margin: 0;
  }

  #block-reassurance li .block-reassurance-item {
    width: 100%;
  }
}

#product #content {
  overflow: hidden;
  max-width: 470px;
}

#product #content .product-flag .new {
  top: 10px !important;
  bottom: auto;
  z-index: 1;
  left: 10px;
}

.product-cover img {
  box-shadow: none;
  border: none;
}

li.product-flag {
  background: #ffd54c;
  color: white;
  font-size: 12px;
  padding: 0;
  min-width: 60px;
  text-align: center;
  display: block;
  z-index: 1;
  line-height: 30px;
  border-radius: 20px;
  font-weight: 500;
  height: 30px;
  margin: 0;
}

.social-sharing {
  margin: 0;
  line-height: 1;
}

.social-sharing li {
  box-shadow: none;
  height: auto;
  width: auto;
  border-radius: 0;
  display: inline-block;
  background: none;
  line-height: 1;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.social-sharing li:hover a {
  color: #ffd54c;
}

.social-sharing li a {
  display: inline-block;
  line-height: 24px;
  height: 24px;
  text-align: center;
  color: #b4b4b4;
  margin-right: 5px;
  white-space: normal;
  text-indent: 0;
  overflow: hidden;
  font-size: 0;
  padding: 0;
}

.social-sharing li a:before {
  font-family: "Ionicons";
  font-size: 18px;
  display: block;
  background: transparent;
  margin-right: 5px;
}

.social-sharing li.facebook a:before {
  content: "\f231";
}

.social-sharing li.twitter a:before {
  content: "\f243";
}

.social-sharing li.googleplus a:before {
  content: "\f234";
}

.social-sharing li.pinterest a:before {
  content: "\f2b1";
}

.tabs {
  box-shadow: none;
  display: inline-block;
  width: 100%;
  margin: 100px 0;
  padding: 30px;
  position: relative;
  background: white;
}

.tabs:before {
  content: "";
  background: #f6f6f6;
  position: absolute;
  left: -9999rem;
  right: -9999rem;
  top: -50px;
  bottom: -50px;
  z-index: -1;
}

.tabs .nav-tabs {
  border: none;
  position: relative;
  display: block;
  border-bottom: 1px solid #ebebeb;
  text-align: center;
}

.tabs .nav-tabs .nav-item {
  position: relative;
  display: inline-block;
  margin: 0;
  float: none;
}

@media (max-width: 639px) {
  .tabs .nav-tabs .nav-item {
    width: 100%;
  }

  .tabs .nav-tabs .nav-item .nav-link {
    border: none !important;
    padding: 10px 0 !important;
  }
}

.tabs .nav-tabs .nav-item:first-child .nav-link {
  margin-left: 0;
}

.tabs .nav-tabs .nav-item .nav-link {
  background: transparent;
  border: 0;
  text-transform: capitalize;
  line-height: 25px;
  font-weight: 600;
  color: #a9a9a9;
  padding: 15px 0;
  margin: 0 30px;
  font-size: 18px;
  position: relative;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tabs .nav-tabs .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: transparent;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tabs .nav-tabs .nav-item .nav-link span {
  position: relative;
  z-index: 1;
}

.tabs .nav-tabs .nav-item .nav-link:hover,
.tabs .nav-tabs .nav-item .nav-link.active {
  color: #2d3338;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tabs .nav-tabs .nav-item .nav-link:hover:before,
.tabs .nav-tabs .nav-item .nav-link.active:before {
  left: 0;
  right: 0;
  background: #ffd54c;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.tab-content {
  overflow: hidden;
  padding: 30px 0;
  background: white;
  font-size: 14px;
  background: white;
  line-height: 24px;
}

.product-description {
  font-size: 14px;
  color: #757575;
}

.product-description p {
  font-size: 14px;
  color: #757575;
}

.product-description p span {
  font-size: 14px !important;
  font-family: 'Lato', sans-serif !important;
}

#tab-content {
  font-size: 12px;
}

#tab-content label {
  font-size: 12px;
}

#product-modal .modal-content .modal-body .product-images img {
  max-width: none;
  border: transparent 3px solid;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

#product-modal .modal-content .modal-body .product-images img:hover {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.images-container {
  max-width: 510px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
}

.images-container img {
  display: none;
}

.images-container .slick-slider img {
  display: block;
}

.product-images {
  max-width: 80%;
  margin: auto;
}

@media (min-width: 1200px) {
  .product-images {
    max-width: 85%;
  }
}

.product-images .slick-prev:before,
.product-images .slick-next:before {
  color: #e2e2e2;
  opacity: 1;
}

.product-images .slick-prev:hover:before,
.product-images .slick-next:hover:before {
  color: #ffd54c;
}

.product-images .thumb-container {
  position: relative;
  cursor: pointer;
}

.product-images .thumb-container>div {
  margin: 0 5px;
  position: relative;
}

.product-images .thumb-container>div:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid transparent;
  pointer-events: none;
}

.product-images .thumb-container.slick-current>div:before {
  border-color: #ffd54c;
}

.product-images .thumb-container img {
  width: 100%;
}

.product-cover {
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.product-cover img {
  box-shadow: none;
}

.product-cover:before {
  font-family: "Ionicons";
  content: "\f25e";
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #e2e2e2;
  z-index: 1;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.7);
  line-height: 50px;
  font-size: 50px;
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 991px) {
  .product-cover:before {
    opacity: 1;
  }
}

.product-cover:hover:before {
  opacity: 1;
  background: white;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.quickview .product-cover:before {
  display: none;
}

.modal-content .thumb-container {
  margin-bottom: 10px;
}

.product-cover .layer {
  background: transparent;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.product-cover .layer .zoom-in {
  color: #ffd54c;
  font-size: 4.25rem;
}

.product-accessories,
.categoryproducts {
  margin-bottom: 50px;
}

.scroll-box-arrows.scroll {
  display: none;
}

.img-thumbnail {
  margin-bottom: 20px;
}

#product-modal .modal-content .modal-body .product-images img {
  max-width: 90px;
  margin: 0;
}

#product-modal .modal-content .modal-body .image-caption {
  width: 100%;
}

#product-modal .modal-content .modal-body .mask {
  max-height: 390px;
}

#product-modal .modal-content .modal-body {
  margin: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  #product-modal .modal-content .modal-body .product-images {
    display: inline-block;
  }

  .product-images>li.thumb-container {
    float: left;
    clear: both;
    display: inline-block;
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
  }
}

.quickview .social-sharing {
  margin: 0;
  text-align: left;
}

.product-discounts {
  margin: 0;
}

.quickview #product_comments_block_extra .comments_advices {
  display: none;
}

#blockcart-modal .modal-title,
#blockcart-modal button.close {
  color: white;
  font-weight: 400;
}

.product-line-grid-body>.product-line-info>.label {
  float: left;
  color: #2777d0;
  font-size: 14px;
  margin-bottom: 5px;
}

.product-line-grid-body>.product-line-info>.label:hover {
  color: #ffd54c;
}

.product-line-grid-body .product-discount .regular-price {
  font-size: 16px;
  color: #757575;
}

.product-line-grid-body .current-price {
  line-height: 1;
}

.product-line-grid-body .current-price .price {
  font-size: 16px;
  color: #fd5018;
  font-weight: 600;
}

.product-line-grid-body .has-discount .discount {
  line-height: 22px;
  vertical-align: bottom;
  border-radius: 5px;
}

.modal-content {
  border: none;
}

.cart-grid-body a.label {
  font-size: 17px;
}

.panel-product-actions {
  margin-top: 15px;
  text-align: left;
}

.panel-product-line {
  display: inline-block;
  vertical-align: top;
  float: left;
}

.panel-product-line #wishlist_button,
.panel-product-line .compare-button {
  line-height: 30px;
  padding: 0;
  border: none;
  color: #2d3338;
  font-size: 14px;
  background: transparent;
  margin-right: 15px;
  cursor: pointer;
}

.panel-product-line #wishlist_button:hover,
.panel-product-line .compare-button:hover {
  color: #ffd54c;
}

.panel-product-line #wishlist_button i,
.panel-product-line .compare-button i {
  display: inline-block;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 600;
  vertical-align: -1px;
}

@media (max-width: 1199px) {
  .zoomContainer {
    display: none !important;
  }

  .zoomWrapper {
    width: auto !important;
    height: auto !important;
  }
}

/* end product page */
/* ===== end edit theme ======== */
/* end custom */

/* custom ws*/
#pt_custommenu>div:last-child a span {
  background: #fdd54c;
  padding: 7px 10px;
  border-radius: 15px;
  color: #333;
}

#pt_custommenu.pt_custommenu .pt_menu .parentMenu a {
  color: #fff;
}

#pt_custommenu>div:nth-child(5) a span::after {
  content: "HOT!";
  position: absolute;
  font-size: 8px;
  top: 5px;
  text-transform: inherit;
  right: -16px;
  background: #8D0082;
  color: #fff;
  padding: 2px 4px;
  line-height: 10px;
  z-index: 10;
  border-radius: 5px;
}

#pt_custommenu>div:nth-child(2) .parentMenu a span::after {
  content: "NOWE!";
  position: absolute;
  font-size: 8px;
  top: 5px;
  text-transform: inherit;
  right: -16px;
  background: #8D0082;
  color: #fff;
  padding: 2px 4px;
  line-height: 10px;
  z-index: 10;
  border-radius: 5px;
}

#pt_custommenu.pt_custommenu .pt_menu .parentMenu a {
  padding: 17px 0;
}

.blockcart .header a .item_count,
.wishtlist_Top a .cart-wishlist-number {
  color: #ffffff;
  background: #8d0781;
}

.header-nav .dropdown-item {
  display: block;
  width: 100%;
  padding: 3px 0.5rem;
  clear: both;
  font-weight: 400;
  color: #2d3338;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
  font-weight: bold;
}

.selector-block .localiz_block button .expand-more {
  padding: 0;
  font-size: 14px;
  font-weight: bold;
}

.header-nav .dropdown-item:hover {
  color: #fff;
}

#pt_custommenu.pt_custommenu .pt_menu a:before {
  height: 3px;
}

.user-info-block .localiz_block button,
.user-info-block .localiz_block .current-block {
  text-transform: capitalize;
  line-height: 20px;
}

.user-info-block i.fas {
  margin-right: 3px;
  vertical-align: 0 !important;
}

#wrapper #main .page-footer {
  margin: 20px 0;
}

#cms #content-wrapper #content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

#cms #content-wrapper #content h4 {
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: left;
}

#cms #content-wrapper #content p {
  font-size: 15px;
  margin-bottom: 10px;
  text-align: left;
}

#cms .text-center {
  text-align: center;
}

#cms .akapit p {
  text-indent: 3%;
}

#cms .testimonials {
  text-align: left;
}

.page-header h1,
.card-block h1 {
  font-size: 25px;
}

#pt_menu_allsub .popup {
  width: 1040px !important;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName {
  line-height: 26px;
}

#pt_custommenu .pt_menu .itemSubMenu a:before {
  font-family: "IonIcons";
  font-weight: 900;
  content: "\f363";
  margin-right: 7px;
  color: #8D0082;
}

#pt_custommenu .pt_menu .itemSubMenu a {
  line-height: 26px;
}

.pt_custommenu .pt_menu .popup .block1 .column .itemSubMenu .itemMenuName {
  color: #1d1d1d;
}

#footer {
  margin-top: 30px;
}

.brand {
  text-align: center;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName {
  width: 33%;
  float: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 1px 5px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column .itemMenuName:before {
  font-family: "IonIcons";
  font-weight: 900;
  content: "\f363";
  margin-right: 7px;
  color: #8D0082;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .block1 {
  width: 856px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup {
  width: 856px;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup {
  width: 856px !important;
}

.navleft-container .pt_vmegamenu .pt_menu .wrap-popup .popup .box-popup .column.last {
  width: 100%;
}

.navleft-container .pt_vmegamenu .pt_menu .parentMenu a.view_more {
  font-weight: bold;
}

.poslistcategories .pos_title h2 {
  z-index: 0;
}

.product-price-and-shipping-top .discount-product {
  position: absolute;
  top: 5px !important;
  left: 20px;
  display: inline-block;
  background: #8d0781;
  color: #fff;
}

.static_footer .txt_info p {
  color: #757575;
  font-size: 15px;
  margin-top: 3px;
}

.banner-box .txt_banner h2 {
  font-size: 14px;
}

.banner-box .txt_banner h3 {
  font-size: 23px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.banner-box .txt_banner a {
  line-height: 37px;
  padding: 0 13px;
  font-size: 13px;
}

/********************/
/* facebook sidebar */
/********************/
.fb,
.fb * {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fb {
  position: fixed;
  left: 0px;
  top: 31%;
  z-index: 9999;
  list-style: none;
}

.social_facebook,
.social_instagram,
.sidebar-cart,
.sidebar-login {
  border-left: 0 solid transparent;
  position: relative;
  width: 40px;
  overflow: hidden;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  border-bottom: 1px solid #fff;
}

.social_facebook {
  background-color: #2d3338;
}

.social_facebook:hover {
  border-left: 5px solid #e0b527;
  background-color: #fdd54c;
}

.social_instagram {
  background-color: #2d3338;
}

.social_instagram:hover {
  border-left: 5px solid #e0b527;
  background-color: #fdd54c;
}

.sidebar-cart {
  background-color: #2d3338;
}

.sidebar-cart:hover {
  border-left: 5px solid #e0b527;
  background-color: #fdd54c;
}

.sidebar-login {
  background-color: #2d3338;
}

.sidebar-login:hover {
  border-left: 5px solid #e0b527;
  background-color: #fdd54c;
}

.social_share {
  display: block;
  padding: 12px 0 12px;
  float: left;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.social_share span,
.social_share i {
  color: #fff;
  display: block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  text-shadow: 1px 1px 3px #333;
}

body .js-product-miniature div.cart button.ajax_add_to_cart_button,
body .js-product-miniature div.cart span.ajax_add_to_cart_button {
  opacity: 1;
  background: #ffd54c;
  color: #2d3338;
  border-radius: 50%;
  transform: scale3d(1, 1, 1);
}

body .js-product-miniature div.cart button.ajax_add_to_cart_button:hover,
body .js-product-miniature div.cart span.ajax_add_to_cart_button:hover {
  opacity: 1;
  background: #2d3338;
  color: #ffd54c;
  border-radius: 50%;
  transform: scale3d(1, 1, 1);
}

body .js-product-miniature div.cart button.ajax_add_to_cart_button,
body .js-product-miniature div.cart span.ajax_add_to_cart_button {
  line-height: 43px;
  height: 45px;
  width: 45px;
}

body .pos_content .owl-item .js-product-miniature img,
body .pos_content .owl-item .thumb-category img,
body .pos_content .owl-item .item_logo img,
body .pos_content .owl-item .thumb-container img {
  display: block;
  padding: 10px;
}

body .js-product-miniature .img_block img {
  padding: 20px;
}

body .js-product-miniature .product_name {
  color: #000000;
}

.js-product-miniature div.cart button.ajax_add_to_cart_button.disabled,
.js-product-miniature div.cart span.ajax_add_to_cart_button.disabled {
  text-align: center;
}

.pt_custommenu #pt_menu2 .popup {
  padding: 17px 0;
  width: 1040px !important;
  left: 0 !important;
}

#pt_custommenu .pt_menu .itemSubMenu a:hover:before {
  color: #fdd54c;
}

.js-product-miniature .add-to-links li a:before {
  font-size: 19px;
}

.js-product-miniature .add-to-links li a {
  line-height: 35px;
  height: 35px;
  color: #2d3338;
  background: #fdd54c;
  width: 35px;
  border-radius: 50%;
  padding: 0;
}

.js-product-miniature .add-to-links li a:hover {
  background: #2d3338;
  color: #fdd54c;
}

.js-product-miniature .add-to-links li {
  margin-bottom: 2px;
}

.social-sharing {
  margin: 5px 0 0;
}

.social-sharing li a:before {
  font-family: "Ionicons";
  font-size: 15px;
  margin-right: 0px;
}

.social-sharing li a {
  line-height: 25px;
  height: 25px;
  width: 25px;
  color: #fdd54c;
  background: #2d3338;
  border-radius: 50%;
  margin-right: 2px;
  opacity: 0.7;
}

.social-sharing li a:hover {
  color: #2d3338;
  background: #fdd54c;
  opacity: 1;
}

.social-sharing li {
  margin-left: 2px;
}

.social-sharing li:first-child {
  margin-left: 7px;
}

#product-availability {
  margin-bottom: 10px;
}

.h1.namne_details,
.product_name_h1 {
  color: #2d3338;
  border-bottom: 1px solid #fdd54c;
  padding-bottom: 10px;
  margin: 0 0 15px 0;
}

.pt_custommenu_mobile .navbar {
  margin-bottom: 10px;
}

.gmgetfreeshipping {
  padding: 10px 15px;
  margin-top: 15px;
  border: 1px solid #c5c7c7;
  border-radius: 10px;
  text-align: center;
}

.kr_blog_post_area .blog_post .post_content .post_title {
  text-align: left;
}

.kr_blog_post_area .blog_post .post_content .read_more a {
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  color: #2d3338;
  background: #ffd54c;
  border-radius: 5px;
}

.kr_blog_post_area .blog_post .post_content .read_more a:hover {
  background: #2d3338;
  color: #ffd54c;
}

.kr_blog_post_area .blog_post .post_content .post_meta {
  display: none;
}

.cart-summary .alert-info {
  background-color: #2d3338;
  border-color: #2d3338;
  color: #fdd54c;
  font-size: 14px;
  text-align: left;
}

.block-promo .cart-summary-line .label,
.block-promo .promo-name {
  color: #2d3338;
  font-weight: 600;
  display: block;
  text-align: left;
}

.block-promo .cart-summary-line a[data-link-action="remove-voucher"] {
  display: none;
}

.panel-product-line {
  float: none;
}

.product-additional-info .alert-info,
.modal-footer .alert-info {
  background-color: #2d3338;
  border-color: #2d3338;
  color: #fdd54c;
  font-size: 14px;
  text-align: left;
  float: none;
  display: block;
  margin-top: 20px;
  border-radius: 10px;
}

.modal-footer .alert-info {
  background-color: #fdd54c;
  border-color: #fdd54c;
  color: #2d3338;
}

.block-promo.promo-highlighted {
  font-weight: bold;
}

.quickview .modal-footer {
  text-align: left;
}

.cat_h1 h1 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#category #content-wrapper .category-miniature {
  width: 19%;
  margin: 0.4%;
  border: 1px solid #ebebeb;
  overflow: hidden;
  height: initial;
  float: left;
  text-align: center;
  transition: background 0.5s;
}

#category #content-wrapper .category-miniature:hover {
  background: #2d3338;
  color: #fdd54c;
}

#category #content-wrapper .category-miniature:hover a {
  color: #fdd54c;
}

#category #content-wrapper .category-miniature h6 {
  overflow: hidden;
  margin: 0;
}

#category #content-wrapper .category-miniature h6 a {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  line-height: 21px;
  padding: 10px;
}

.sub_container {
  margin-bottom: 15px;
  overflow: auto;
}

.sub_container h5 {
  border-top: 1px solid #ebebeb;
  padding: 15px 0 0 0;
}

#main .block-search {
  position: relative;
  margin-right: 30px;
  margin-top: 40px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  float: none;
  padding: 0;
}

.item-product li.compare,
.product-miniature li.compare {
  display: none;
}

.product-flag .new,
.product-flag .on-sale,
.product-flag .pack {
  background: #8d0780;
  color: #ffffff;
}

.faceted-slider>li>p {
  margin-bottom: 12px;
}

#search_filters .ui-widget-header {
  background: #fdd54c;
}

#search_filters_wrapper .ui-corner-all.ui-widget-content {
  overflow: initial;
}

#search_filters .ui-slider .ui-slider-handle {
  width: 0.5em;
}

#search_filters_wrapper .ui-corner-all {
  overflow: initial;
  max-height: auto;
  overflow-y: initial;
}

#header .social_follow h2 {
  font-weight: bold;
}

.btn-header {
  font-weight: bold;
  border: 1px solid #333;
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 5px;
}

.btn-header:hover {
  color: #fff;
  background: #8d0781;
}

.user-info-block {
  padding-right: 5px
}

.user-menu-top {
  border-right: none;
}

.footer-top .top-buttons {
  display: none;
}

.fast-contact {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -32px;
}

.search_top form .text_input {
  border: 1px solid #a0a0a0;
  color: #2d3338;
}

.search_top form .text_input::placeholder {
  /* Firefox, Chrome, Opera */
  color: #2d3338;
}

.search_top form .text_input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #2d3338;
}

.search_top form .text_input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #2d3338;
}

.top-banner {
  background: #2d3338;
  margin-bottom: 5px;
}

#tags_block .tags_block li a {
  font-size: 11px;
  line-height: 14px;
  color: #2d3338;
  border: none;
  text-transform: uppercase;
  margin: 3px;
  text-align: center;
  border-radius: 5px;
  padding: 3px 10px;
  background: #fdd54c;
}

#tags_block .tags_block li a:hover {
  background: #2d3338;
  color: #fdd54c;
}

#tags_block .tags_block li:first-child a {
  padding-left: 10px;
}

#tags_block h2 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #2d3338;
  margin: 0;
  text-transform: capitalize;
  float: left;
  margin-right: 15px;
}

.product-tabs-container-slider {
  background: transparent;
}

.product-tabs-container-slider ul.tabs_slider {
  background: transparent;
}

.product-tabs-container-slider ul.tabs_slider li:first-child {
  padding-left: 20px;
}

.product-tabs-container-slider ul.tabs_slider li.active,
.product-tabs-container-slider ul.tabs_slider li:hover {
  color: #2d3338;
  background: #fdd54c;
  border-radius: 15px;
  text-align: center;
}

.product-tabs-container-slider .pos_title:before {
  border: none;
}

.product-tabs-container-slider ul.tabs_slider li {
  margin-left: 20px;
}

.product-tabs-container-slider ul.tabs_slider li:before {
  width: 10px;
  margin: 0px 5px;
}

.home-banners-top {
  margin-bottom: 30px;
}

.home-banners-top img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.static_cms {
  margin-bottom: 40px;
}

body .closeFontAwesome:before {
  content: "\f128";
  font-family: "IonIcons";
  display: inline-block;
  font-size: 23px;
  line-height: 23px;
  color: #FCC112;
  padding-right: 15px;
  cursor: pointer;
}

/* Mobile */

@media (min-width: 992px) {
  #header .header-bottom {
    background: #2d3338;
  }

  #header .header-bottom.scroll-menu {
    background: #2d3338 !important;
  }
}

@media (max-width: 992px) {
  #header .header-nav {
    background: #2d3338;
  }

  .selector-block .localiz_block button .expand-more {
    color: #ffffff;
  }

  .selector-block .localiz_block button i,
  .selector-block .localiz_block .current-block i {
    color: #fdd54c;
  }

  .user-info-block i.fas {
    color: #fdd54c;
  }

  .user-info-block>a.dropdown-item>span {
    color: #fff;
  }

  .social_facebook,
  .social_instagram {
    display: none;
  }

  .fb {
    top: auto;
    bottom: 0px;
  }

  #header .social_follow,
  #header .top-buttons {
    margin: 0;
    display: none;
  }

  #category #content-wrapper .category-miniature {
    width: 49%;
  }

  .header-nav .dropdown-item.logout {
    color: #fff;
  }

  .selector-block .localiz_block .dropdown-menu {
    right: auto;
    left: 0;
  }

  .fast-contact {
    display: none;
  }

  .top-banner {
    margin-bottom: 0px;
  }

  #tags_block .tags_block li a {
    padding: 3px 10px;
    font-size: 12px;
  }

  .product-tabs-container-slider ul.tabs_slider li:before {
    display: none;
  }

  .product-tabs-container-slider ul.tabs_slider li {
    font-size: 18px;
    margin-left: 0;
    width: 49%;
    margin-top: 6px;
    text-align: center;
  }

  .top-banner {
    display: none;
  }

  .home-banners-top {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .block-search {
    width: 60%;
  }

  .pt_custommenu .pt_menu .parentMenu a {
    margin: 0 14px;
  }
}

#header .pt_custommenu .pt_menu .parentMenu a {
  margin: 0 20px;
}

/* Mystery Box */
article[data-id-product="14868"]{
  display: none!important;
}
article[data-id-product="14868"] .img_block .add-to-links,
article[data-id-product="14868"] .img_block .product-flag{
  display: none!important;
}
#cart article[data-id-product="14868"]{
  display: flex!important;
}
#cart article[data-id-product="14868"] .img_block{
  /* order: 1; */
  width: 30%;
  text-align: center;
}
/* #cart article[data-id-product="14868"] .box-top{
  order: 2;
} */
#cart article[data-id-product="14868"] .product_desc{
  /* order: 3; */
  width: 70%;
}
#cart article[data-id-product="14868"] .img_block img{
  padding: 0;
  width: 190px;
}
.product__surprise{
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 22px;
}
#cart article[data-id-product="14868"] .img_block .discount-product{
  background: #8d0781;
  right: 10px;
  left: auto;
  font-size: 12px;
  line-height: 20px;
  text-transform: initial;
  min-height: 1.5rem;
  padding: 0.2rem 0.3rem;
}
#cart article[data-id-product="14868"] .product_desc .product-desc{
  display: block;
}
@media (max-width:768px){
  #cart article[data-id-product="14868"]{
    flex-direction: column;
  }
  #cart article[data-id-product="14868"] .img_block{
    width: 100%;
  }
  #cart article[data-id-product="14868"] .product_desc{
    width: 100%;
  }
}
#cart .cart-grid-right .pos-featured-products h2{
  font-size: 20px;
}