* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  /* -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; */
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-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: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

body {
  font-family: "Lato", -apple-system, "BlinkMacSystemFont", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #231f20;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 106px;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

.page-title {
  text-align: center;
  padding: 80px 0;
}
.page-title h1 {
  font-size: 32px;
  font-weight: 600;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.phone-head-mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .phone-head-mobile {
    display: inline-block !important;
  }
  .phone-head-desktop {
    display: none !important;
  }
}

.header {
  background-color: #dceeda;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  transition: top 0.2s ease-in-out;
  z-index: 99999;
}
.header.goup {
  top: -100px;
  transition: top 0.2s ease-in-out;
}

.header-logo {
  float: left;
  width: 150px;
  margin-top: 24px;
}
.header-menu {
  float: left;
  margin-left: 60px;
  position: relative;
}
.header-menu > ul > li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.header-menu > ul > li > a {
  display: block;
  font-size: 16px;
  color: #231f20;
  font-weight: 900;
  text-transform: uppercase;
  padding: 30px 15px 25px;
}
.header-menu > ul > li > a:hover,
.header-menu > ul > li > a.opened {
  background: white;
  color: #259e49;
}
.header-search {
  float: right;
  position: relative;
  margin-top: 20px;
}
.header-search-input {
  background: white;
  border: 0 !important;
  border-radius: 10px;
  padding: 10px !important;
  font-family: "Lato", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: black;
}
.header-search-input::-webkit-input-placeholder {
  color: #b3b3b3;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.header-search-input:-moz-placeholder {
  color: #b3b3b3;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.header-search-input::-moz-placeholder {
  color: #b3b3b3;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.header-search-input:-ms-input-placeholder {
  color: #b3b3b3;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.header-search-submit {
  background: none;
  background-image: url(../img/gb-icon-search.png);
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -999px;
  width: 39px;
  height: 39px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 10px;
}

body.home .header-menu > ul > li {
  margin-right: 90px;
}
body.home .header-menu > ul > li:last-of-type {
  margin-right: 0;
}

.mega-bg {
  z-index: 888;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(35, 31, 32, 0.3);
  display: none;
}

.mega-products {
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 30px 0;
  display: flex;
  width: 500px;
  z-index: 99999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.mega-products-col {
  flex: 1 1 33.333%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.mega-products-col a {
  color: #231f20;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: block;
  padding: 10px 30px 10px 15px;
}
.mega-products-col a:hover,
.mega-products-col a.opened-menu {
  color: white;
  background-color: #259e49;
}
.mega-products-col a:hover:after,
.mega-products-col a.opened-menu:after {
  background-image: url(../img/menu-arrow-white.svg);
}
.mega-products-col a:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 13px;
  right: 30px;
}
.mega-products-col._2 a:after {
  display: none;
}
.mega-products-col._3 {
  border-right: 0;
}
.mega-products-col._3 a {
  color: #259e49;
}
.mega-products-col._3 a:after {
  background-image: url(../img/menu-arrow-green.svg);
}
.mega-products-col._3 a:hover {
  color: white;
}
.mega-products-col._3 a:hover:after {
  background-image: url(../img/menu-arrow-white.svg);
}
.mega-products-title {
  font-size: 15px;
  display: block;
  font-weight: 900;
  padding: 0 0 0 15px;
  padding-bottom: 24px;
}

.mega-products-sub {
  background-color: #259e49;
  position: absolute;
  width: 66.666%;
  width: 50%;
  height: 100%;
  display: flex;
  top: 0;
  right: -600px;
  padding: 30px 45px;
}
.mega-products-sub-in {
  flex: 1;
}
.mega-products-sub-title {
  color: white;
  font-weight: 900;
  display: block;
  border-bottom: 1px solid white;
  padding: 10px 0;
  margin-bottom: 15px;
  font-size: 14px;
  position: relative;
}
.mega-products-sub-close {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}
.mega-products-sub-close svg {
  width: 14px;
  height: 14px;
}
.mega-products-sub ul li {
  display: block;
  padding: 12px 0;
}
.mega-products-sub ul li a {
  color: white;
  font-size: 14px;
  display: inline-block;
  position: relative;
  width: 150px;
}
.mega-products-sub ul li a.all-link {
  font-weight: 700;
}
.mega-products-sub ul li a.all-link:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow-white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 3px;
  right: 0;
}

.header ul {
  list-style: none;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}
.mob-header-menu ul {
  list-style: none;
  margin-left: 0 !important;
}

.mega-services {
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 40px 0 30px 0;
  display: block;
  width: 270px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.mega-services-title {
  font-size: 16px;
  display: block;
  font-weight: 900;
  padding: 0 0 0 17px;
  padding-bottom: 24px;
}

.mega-services-main-list li {
  display: block;
  margin-bottom: 12px;
}
.mega-services-main-list li:last-of-type {
  margin-bottom: 0;
}

.mega-services-main-list li a {
  display: block;
  padding: 15px 20px 15px 60px;
  font-size: 14px;
  color: #231f20;
  position: relative;
}
.mega-services-main-list li a:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mega-services-main-list li a:hover {
  color: white;
  background-color: #259e49;
}
.mega-services-main-list li a:hover:after {
  background-image: url(../img/menu-arrow-white.svg);
}
.mega-services-main-list li a:hover svg path {
  stroke: white;
}
.mega-services-main-list li a.opened {
  color: white;
  background-color: #259e49;
}
.mega-services-main-list li a.opened:after {
  background-image: url(../img/menu-arrow-white.svg);
}
.mega-services-main-list li a svg {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mega-services-sub {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  background-color: #259e49;
  color: white;
  padding: 40px 30px 20px;
  width: 230px;
  display: none;
}
.mega-services-sub-title {
  display: block;
  font-size: 16px;
  font-weight: 900;
  padding-bottom: 35px;
  color: white;
}
.mega-services-sub ul li {
  padding-bottom: 20px;
}
.mega-services-sub ul li a {
  color: white;
  font-size: 14px;
}

.mega-services {
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 40px 0 20px 0;
  display: block;
  width: 270px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.mega-services-title {
  font-size: 16px;
  display: block;
  font-weight: 900;
  padding: 0 0 0 17px;
  padding-bottom: 24px;
}

.mega-services-main-list li {
  display: block;
  margin-bottom: 12px;
}
.mega-services-main-list li:last-of-type {
  margin-bottom: 0;
}

.mega-services-main-list li a {
  display: block;
  padding: 15px 20px 15px 60px;
  font-size: 14px;
  color: #231f20;
  position: relative;
}
.mega-services-main-list li a:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mega-services-main-list li a:hover {
  color: white;
  background-color: #259e49;
}
.mega-services-main-list li a:hover:after {
  background-image: url(../img/menu-arrow-white.svg);
}

.mega-contact {
  background: white;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 40px 0 20px 0;
  display: block;
  width: 270px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}
.mega-contact-title {
  font-size: 16px;
  display: block;
  font-weight: 900;
  padding: 0 0 0 17px;
  padding-bottom: 24px;
}
.mega-contact-main-list li {
  display: block;
  margin-bottom: 12px;
}
.mega-contact-main-list li:last-of-type {
  margin-bottom: 0;
}
.mega-contact-main-list li a {
  display: block;
  padding: 15px 20px 15px 17px;
  font-size: 14px;
  color: #231f20;
  position: relative;
}
.mega-contact-main-list li a:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mega-contact-main-list li a:hover {
  color: white;
  background-color: #259e49;
}
.mega-contact-main-list li a:hover:after {
  background-image: url(../img/menu-arrow-white.svg);
}

h1 {
  font-weight: 900;
}

h3,
h4 {
  font-weight: 700;
}

.heading-wrap {
  text-align: center;
  padding: 50px 0 70px;
}
.heading-wrap h1,
.heading-wrap h2 {
  font-size: 26px;
  letter-spacing: 0.8px;
  padding: 0 0 15px;
}
.heading-wrap h3 {
  font-size: 22px;
  letter-spacing: 0.58px;
}

@media (max-width: 1260px) {
  .heading-wrap {
    padding: 40px 0 30px;
  }
}

h2 {
  font-size: 25px;
  font-weight: 900;
}

.h2-wrap {
  text-align: center;
  padding: 0 0 50px;
}
.h2-wrap h1 {
  font-size: 32px;
  letter-spacing: 0.8px;
  padding: 0 0 20px;
}

.head-slider .owl-dots {
  text-align: center;
  padding: 50px 0 0;
}

.head-slider .owl-dot {
  display: inline-block;
  margin: 0 10px 5px;
  height: 21px;
  width: 21px;
  border: 3px solid #259e49;
  border-radius: 50%;
}

.head-slider .owl-dot.active {
  background-color: #259e49;
}

.head-slider .owl-nav > div {
  position: absolute;
  top: 200px;
}

.head-slider .owl-prev {
  left: -50px;
}
.head-slider .owl-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.head-slider .owl-next {
  right: -50px;
}

.head-slide span {
  display: block;
  text-align: center;
  color: #b3b3b3;
  font-size: 14px;
  padding: 3px 0 0;
  font-weight: 400;
}

.header-search-icon {
  display: none;
}

.top-bar {
  background: #259e49;
  padding: 4px 0 6px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.2s ease-in-out;
  z-index: 999;
}
.top-bar.goup {
  top: -100px;
}
.top-bar-icons {
  float: right;
}
.top-bar-icons a {
  display: inline-block;
  margin-left: 12px;
}
.top-bar-icons a img {
  height: 20px;
  width: auto;
}
.top-bar-text {
  color: white;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  top: 6px;
  /*width: 300px;*/
  text-align: center;
}
.top-bar-text a {
  text-decoration: underline;
  color: white;
  font-weight: 700;
}

.mob-header-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999999;
}

.mob-header-menu {
  position: fixed;
  top: 0;
  left: -500px;
  bottom: 0;
  overflow-y: auto;
  width: calc(100% - 70px);
  background-color: #dceeda;
  margin: 0;
  z-index: 2999999;
  visibility: hidden;
  opacity: 0;
  transition: left 0.4s;
}
.mob-header-menu.mob-opened {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.mob-header-menu > ul > li {
  display: block;
}
.mob-header-menu > ul > li > a {
  display: block;
  padding: 25px 15px;
  color: #231f20;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid rgba(35, 31, 32, 0.4);
  position: relative;
}
.mob-header-menu > ul > li > a:after {
  content: "";
  display: block;
  background-image: url(../img/menu-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 31px;
  right: 20px;
}
.mob-header-menu > ul > li ul {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.mob-header-menu > ul > li ul li {
  display: block;
}
.mob-header-menu > ul > li ul a {
  display: block;
  padding: 20px 15px;
  color: #231f20;
  font-size: 20px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.4);
  position: relative;
  background: white;
}
.mob-header-menu > ul > li:last-of-type a {
  border-bottom: 0;
}
.mob-header-menu > ul > li.mob-opened > a {
  text-align: center;
}
.mob-header-menu > ul > li.mob-opened > a:after {
  right: auto;
  left: 15px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mob-header-menu > ul > li.mob-opened ul {
  visibility: visible;
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.4s;
}
.mob-header-menu > ul > li.sibling-opened {
  display: none;
}

.mob-header-close {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  background: white;
  top: 16px;
  right: 14px;
  z-index: 2999999;
  border-radius: 50%;
}
.mob-header-close img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 13px;
  left: 13px;
}

.header-mob-open {
  display: none;
}

.header-search {
  max-width: 200px;
  width: auto;
}
.header-search .asp_main_container {
  min-width: 180px !important;
}
.header-search #ajaxsearchlite1 .probox,
.header-search .asp_main_container .probox {
  border-radius: 10px !important;
  padding: 7px !important;
  box-shadow: none !important;
}
.header-search #ajaxsearchlite1,
.header-search .asp_main_container {
  border-radius: 10px !important;
  box-shadow: none !important;
}
.wrapper.body {
  margin-top: 89px;
  /* margin-top: 30px; */
}
body.single-product .wrapper.body {
  margin-top: 30px !important;
}
.header-search-close {
  display: none;
  position: absolute;
  top: 10px;
  left: 0;
  cursor: pointer;
}

.nf-logo {
  display: none !important;
}
#sidebar-right {
  top: 138px !important;
  transition: top 0.2s ease-in-out;
}
#sidebar-right.goup {
  top: 10px !important;
  transition: top 0.2s ease-in-out;
}
.gb-new-loader {
  position: fixed;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*display: none;*/
}
.sk-circle {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #259e49;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.checkout--row {
  padding: 10px 0;
  clear: both;
}
/* .checkout--row._5050 {
	clear: none;
	float: left;
	width: 50%;
}
.checkout--row._5050:first-of-type {
	padding-right: 10px;
}
.checkout--row._5050:last-of-type {
	padding-left: 10px;
} */
.checkout-main-wrap > h1 {
  text-align: center;
}
.checkout--row label {
  display: none;
  padding-bottom: 5px;
  font-size: 18px;
}
.checkout--width-wrap {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.checkout--row input {
  font-size: 15px;
}
.checkout--row input::-webkit-input-placeholder {
  color: #4a4a4a;
}
.checkout--row input:-ms-input-placeholder {
  color: #4a4a4a;
}
.checkout--row input::placeholder {
  color: #4a4a4a;
}
.checkout-new-select .selectize-input {
  -webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%), 0 1px 2px 0 rgb(0 0 0 / 6%);
  border: 0;
  height: 40px;
}

/* .shop-cart-2020.checkout--page {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: auto;
  overflow-y: visible;
  padding: 0;
  position: static;
  border-radius: 0;
  background: transparent;
}
.shop-cart-2020.checkout--page .prod-print-body {
  padding: 0;
  border: 0;
}
.shop-cart-2020.checkout--page .prod-print-header {
  position: static;
  display: block;
} */

.shop-cart-2020.checkout--page {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  height: auto;
  overflow-y: visible;
  padding: 0;
  position: static;
  border-radius: 0;
  background: transparent;
}

.shop-cart-2020.checkout--page .shop-cart-2020-body_in {
  height: auto;
  overflow-y: visible;
  padding: 0;
}

.shop-cart-2020.checkout--page #orders {
  margin-top: 50px;
}

.shop-cart-2020.checkout--page .cart--footer {
  float: none;
}
.shop-cart-2020.checkout--page .cart--footer:after {
  display: table;
  content: "";
  clear: both;
}
.checkout--page .shop-cart-2020-body_in .prod-print-body {
  padding-top: 20px;
}
.checkout-red-alert {
  color: white;
  background: #ff3737;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  display: block;
  padding: 10px;
  font-size: 18px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 20px;
}

@media (max-width: 1300px) {
  .head-slider {
    padding-left: 30px;
    padding-right: 30px;
  }
  .head-slider .owl-prev {
    left: 0;
  }
  .head-slider .owl-next {
    right: 0;
  }
  .footer .container {
    max-width: 1000px;
  }
}

@media (max-width: 1230px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .header-menu > ul > li {
    margin-right: 0;
  }
  body.home .header-menu > ul > li {
    margin-right: 40px;
  }
}

@media (max-width: 1099px) {
  .header-search-in {
    padding-left: 20px;
    display: none;
  }
  .header-search-icon {
    display: block;
    margin-top: 11px;
  }
  .header-search-input {
    width: 160px;
  }
  /* .header-menu > ul > li > a {
    padding: 42px 12px 40px; }  */
}

@media (max-width: 1019px) and (min-width: 992px) {
  .header-search-input {
    width: 145px;
  }
}

@media (max-width: 1024px) {
  .head-slider .owl-nav > div {
    top: 150px;
  }
  .heading-wrap {
    padding: 30px 0;
  }
}

@media (max-height: 767px) and (min-width: 1000px) {
  .mega-products {
    padding: 15px 0 0;
  }
  .mega-products-col {
    padding: 5px 0;
  }
  .mega-products-col a {
    padding: 5px 30px 5px 15px;
  }
  .mega-products-sub ul li {
    padding: 5px 0;
  }
  .mega-products-sub ul li a.all-link:after {
    top: 7px;
  }
  .mega-products-col a:after {
    top: 12px;
  }
}

@media (max-width: 991px) {
  .nf-top-wrap {
    margin-top: 120px !important;
  }
  .header-logo {
    float: none;
    margin: 20px auto 0;
    display: block;
  }
  .header-menu > ul > li > a {
    padding: 20px 15px 20px;
  }
  .header-search-icon {
    margin-top: 0;
  }
  .head-slide img {
    max-width: 350px;
    margin: 0 auto;
  }
  body {
    padding-top: 182px;
  }
  .header-menu {
    float: none;
    margin: 15px auto 0;
    text-align: center;
  }
  .mega-products,
  .mega-services {
    text-align: left;
  }
  .header-search {
    position: absolute;
    top: 0px;
    right: 15px;
  }
  .wrapper.body {
    margin-top: 111px;
  }
}

@media (max-width: 767px) {
  .nf-top-wrap {
    margin-top: 46px !important;
  }
  .header {
    padding-bottom: 15px;
    top: 0;
  }
  .header-logo {
    float: left;
  }
  .header-mob-open {
    display: block;
    position: absolute;
    top: 20px;
    right: 60px;
  }
  .header-menu {
    display: none;
  }
  body {
    padding-top: 70px;
  }
  .top-bar-text {
    display: none;
  }
  .heading-wrap h1,
  .heading-wrap h2 {
    font-size: 24px;
  }
  .heading-wrap h3 {
    font-size: 20px;
  }
  .wrapper.body {
    margin-top: 60px;
  }
  .checkout-main-wrap > h1 {
    margin-top: 0 !important;
  }
  .top-bar {
    display: none;
  }
  .header {
    top: 0;
  }
}

@media (max-width: 500px) {
  .header-logo {
    width: 140px;
  }
  .header-search {
    margin-top: 15px;
  }
  .header-search-icon {
    margin-top: 10px;
  }
  .header-search {
    max-width: 182px;
  }
  .header-mob-open {
    top: 26px;
  }
  .heading-wrap {
    padding: 25px 0;
  }
  .head-slide img {
    max-width: 275px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .header,
  .top-bar {
    position: absolute;
  }
}
