/**
 * Table of Contents:
 *
 * 1.0 - Core
 * 2.0 - Template
 * 3.0 - Header
 * 4.0 - Footer
 * 5.0 - Widget
 * 6.0 - Blog
 * 7.0 - WooCommerce
 * 8.0 - ShortCode
 * 9.0 - Color
 * ----------------------------------------------------------------------------
 */
/**

/**
 * 0.0 - Libraries and defined variable
 * ----------------------------------------------------------------------------
 */
/**
 * 1.0 - Core
 * ----------------------------------------------------------------------------
 */
/*-----------SPINNER---------------------*/
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes header-drop {
  0% {
    -webkit-transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    transform: translateY(-92px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes header-drop {
  0% {
    -webkit-transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    transform: translateY(-92px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-drop-out {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    transform: translateY(-92px);
  }
}
@keyframes header-drop-out {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-92px);
    -ms-transform: translateY(-92px);
    transform: translateY(-92px);
  }
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
            transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes anim-dash {
  0% {
    stroke-dashoffset: 1680;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes anim-dash {
  0% {
    stroke-dashoffset: 1680;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* Inner elements animations */
@-webkit-keyframes anim-elem-1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim-elem-1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* FadeInDown for Search Popup*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.animate {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  will-change: transform, opacity;
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate.slideDown {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.animate.slideUp {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}
@-webkit-keyframes swingInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(-90deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
  }
}
@keyframes swingInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(-90deg);
            transform: perspective(400px) rotateX(-90deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
  }
}
.animate.swingInX {
  -webkit-transform-origin: top;
  -ie-transform-origin: top;
  -ms-transform-origin: top;
      transform-origin: top;
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: swingInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: swingInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: swingInX;
  backface-visibility: visible !important;
  animation-name: swingInX;
}
@-webkit-keyframes swingOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(-90deg);
  }
}
@keyframes swingOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(-90deg);
            transform: perspective(400px) rotateX(-90deg);
  }
}
.animate.swingOutX {
  -webkit-transform-origin: top;
  -webkit-animation-name: swingOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: swingOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: swingOutX;
  -o-backface-visibility: visible !important;
  animation-name: swingOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.animate.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
}
.animate.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes pulse-left-right {
  0% {
    -webkit-transform: translate(0px, 0);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(20px, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0px, 0);
    opacity: 0;
  }
}
@keyframes pulse-left-right {
  0% {
    -ms-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
    opacity: 0;
  }
  50% {
    -ms-transform: translate(20px, 0);
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
    opacity: 1;
  }
  100% {
    -ms-transform: translate(0px, 0);
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
    opacity: 0;
  }
}
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(30%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(30%);
            transform: translate(30%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-30%);
            transform: translate(-30%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(-30%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(30%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toLeftFromRight {
  49% {
    -webkit-transform: translate(-30%);
            transform: translate(-30%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(30%);
            transform: translate(30%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes moveFromLeft {
  from {
    -webkit-transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
}
.rubino-testimonial h3 .rubino-post h3,
.rubino-ourteam h6,
.rubino-icon-box h3 {
  font-family: 'Lato';
}
.s-font,
.sidebar h4.widget-title,
.wpb_widgetised_column h4.widget-title,
.widget-title-s-font .widget-title,
footer.main-footer-wrapper .sidebar .widget-footer-logo .footer-logo-read-more a,
footer.main-footer-wrapper .bottom-bar-wrapper .bottom-bar-text {
  font-family: 'Lato';
}
.noo-full-width {
  width: 100%;
  margin: 0 auto;
}
.post-navigation {
  padding: 0;
  display: table;
  width: 100%;
  position: relative;
  margin-top: 50px;
}
.post-navigation .nav-links {
  width: 100%;
  margin: 0 auto;
  display: table;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.post-navigation .nav-previous .post-navigation-content,
.post-navigation .nav-next .post-navigation-content {
  margin-left: 30px;
}
.post-navigation .nav-next {
  display: table-cell;
  text-align: right;
}
.post-navigation .nav-next .post-navigation-content {
  margin-left: 0;
  margin-right: 30px;
}
.post-navigation .post-navigation-label {
  display: block;
  font-size: 25px;
  font-weight: normal;
  text-transform: uppercase;
  color: #333;
}
.post-navigation .post-navigation-title {
  -ms-word-wrap: break-word;
  text-align: left;
  word-wrap: break-word;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  color: #071645;
}
.post-navigation .post-navigation-icon {
  font-size: 24px;
  line-height: 28px;
  width: 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  color: #333;
  z-index: 1;
}
.post-navigation .nav-links .nav-next .post-navigation-icon {
  right: 0;
}
/* -----------------------------------------------------------------------------
 * WordPress Default Style
 * -------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}
.alignnone {
  margin: 15px 15px 0 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}
.alignright {
  float: right;
  margin: 15px 0 15px 15px;
}
.alignleft {
  float: left;
  margin: 15px 15px 15px 0;
}
.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}
a img.alignright {
  float: right;
  margin: 15px 0 0 15px;
}
a img.alignnone {
  margin: 15px 15px 0 0;
}
a img.alignleft {
  float: left;
  margin: 15px 15px 0 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  text-align: center;
  max-width: 100%;
}
.wp-caption.alignnone {
  margin: 15px 15px 30px 0;
}
.wp-caption.alignleft {
  margin: 15px 15px 30px 0;
}
.wp-caption.alignright {
  margin: 15px 0 30px 15px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.7;
  line-height: 17px;
  margin: 1em 0 0 0;
  padding: 0 10%;
}
.wp-post-image {
  height: auto;
  max-width: 100%;
}
.sticky {
  opacity: 1;
}
.bypostauthor {
  opacity: 1;
}
/**
 * 5.4 Galleries
 * ----------------------------------------------------------------------------
 */
.gallery {
  margin-bottom: 20px;
  margin-left: -4px;
}
.gallery:before {
  content: "";
  display: table;
}
.gallery:after {
  clear: both;
  content: "";
  display: block;
}
.gallery-item {
  float: left;
  margin: 0 4px 4px 0;
  overflow: hidden;
  position: relative;
}
.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
  display: table;
  margin: 0 auto 20px;
}
.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
  text-align: center;
}
.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: calc(25% - 4px);
}
.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: calc(20% - 4px);
}
.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: calc(16.7% - 4px);
}
.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: calc(14.28% - 4px);
}
.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: calc(12.5% - 4px);
}
.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: calc(11.1% - 4px);
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
  clear: left;
}
.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 2px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
}
.gallery-caption:before {
  -webkit-box-shadow: 0 -10px 15px #000 inset;
  box-shadow: 0 -10px 15px #000 inset;
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
.overflow-hidden {
  overflow: hidden;
}
.noo-page-links {
  font-size: 0;
  margin-bottom: 30px;
  display: inline-block;
  line-height: 50px;
}
.noo-page-links-title {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 0;
  color: #858585;
  font-weight: normal;
  margin-right: 20px;
}
.noo-page-link {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  padding: 0;
  width: 40px;
  height: 40px;
  color: #fcac2f;
  text-align: center;
  line-height: 40px;
  border: 1px solid #fcac2f;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.noo-page-links .noo-page-link:hover,
.noo-page-links > .noo-page-link {
  color: #fff;
  background-color: #fcac2f;
}
.has_searchbox .single-product-wrap,
.has_searchbox .site-content-single-post,
.has_searchbox .main-content-archive {
  padding: 70px 0 50px;
}
@media (max-width: 768px) {
  .has_searchbox .single-product-wrap,
  .has_searchbox .site-content-single-post,
  .has_searchbox .main-content-archive {
    padding: 80px 15px 50px;
  }
}
.site-content-single-post,
.main-content-archive {
  padding: 10px 0 30px;
  background: #f7f7f7;
}
@media (max-width: 768px) {
  .site-content-single-post,
  .main-content-archive {
    padding: 80px 15px 50px;
  }
}
.help-block {
  position: absolute;
  width: 100%;
  font-size: 90%!important;
}
/**
 * 2.0 - Header
 * ----------------------------------------------------------------------------
 */
.noo-top-bar {
  background-color: #fafafa;
  color: #6b6b6b;
  position: relative;
  z-index: 998;
  font-size: 14px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 1px;
}
.noo-top-bar .top-sidebar aside {
  display: inline-block;
  margin-top: 0;
  vertical-align: top;
}
.noo-top-bar .top-sidebar aside + aside {
  margin-left: 30px;
}
.noo-top-bar > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.noo-top-bar > ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}
.noo-top-bar > ul li + li {
  margin-left: 20px;
}
.noo-top-bar .top-sidebar .profile-text {
  padding-right: 10px;
}
.noo-top-bar .top-sidebar .textwidget i {
  color: #fcac2f;
}
.noo-top-bar .top-sidebar h4.widget-title {
  color: #6b6b6b;
}
.noo-top-bar .top-sidebar #wp-calendar caption,
.noo-top-bar .top-sidebar #wp-calendar thead th {
  color: #6b6b6b;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu {
  overflow: visible;
  border: none;
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu li {
  display: inline-block;
  position: relative;
  border: none;
  color: inherit;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu li:before {
  display: none;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu li:hover > ul {
  display: block;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu li > a {
  padding: 0;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu li > a:hover {
  padding-left: 0;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li {
  padding: 0;
  margin: 0;
  line-height: 50px;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li + li {
  margin-left: 30px;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li + li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 1px;
  height: 16px;
  margin: auto;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li + li:before {
  background-color: #d4d4d4;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li ul {
  display: none;
  position: absolute;
  z-index: 999;
  right: 0;
  top: 100%;
  background-color: #fafafa;
  color: #6b6b6b;
  text-align: left;
  margin: 0;
  padding: 0 15px;
  min-width: 150px;
  -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, 0.3);
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li ul li {
  display: block;
  white-space: nowrap;
  padding: 8px 0;
  margin: 0;
  line-height: 28px;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li ul li + li {
  border-top: solid 1px #f0f0f0;
}
.noo-top-bar .top-sidebar .widget_nav_menu > div > ul.menu > li ul ul {
  left: 100%;
  top: 0;
}
.noo-top-bar .top-sidebar .widget.base-primary-color i.fa,
.noo-top-bar .top-sidebar .widget.base-primary-color a {
  color: #6b6b6b;
}
.noo-top-bar .top-sidebar .widget.base-primary-color.widget_nav_menu > div > ul.menu > li + li:before,
.noo-top-bar .top-sidebar .widget.base-primary-color.separate-left:before,
.noo-top-bar .top-sidebar .widget.base-primary-color.separate-right:after {
  background-color: #6b6b6b;
}
.noo-top-bar .top-sidebar .separate-left {
  position: relative;
}
.noo-top-bar .top-sidebar .separate-left:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 1px;
  height: 16px;
  margin: auto;
}
.noo-top-bar .top-sidebar .separate-left:before {
  background-color: #d4d4d4;
}
.noo-top-bar .top-sidebar .separate-right {
  position: relative;
}
.noo-top-bar .top-sidebar .separate-right:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  width: 1px;
  height: 16px;
  margin: auto;
}
.noo-top-bar .top-sidebar .separate-right:after {
  background-color: #d4d4d4;
}
.noo-top-bar .top-sidebar a {
  color: inherit;
}
.noo-top-bar .top-sidebar .widget .custom-dropdown-list > ul li > a {
  color: #333;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul > li {
  padding: 0;
  display: block;
  list-style: none;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul > li > a:after {
  content: "\f107";
  font-family: 'fontawesome';
  display: inline-block;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  background-color: #fff;
  z-index: 999;
  -webkit-box-shadow: 2px 3px 5px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 3px 5px 2px rgba(0, 0, 0, 0.3);
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul ul > li {
  list-style: none;
  padding: 0 15px;
  display: block;
  line-height: 32px;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul ul > li img {
  padding-right: 5px;
}
.noo-top-bar .top-sidebar .widget #lang_sel > ul:hover ul {
  display: block;
}
.noo-top-bar .top-bar-left {
  text-align: left;
  float: left;
}
.noo-top-bar .top-bar-right {
  text-align: right;
  float: right;
}
.noo-top-bar .top-bar-right.top-sidebar .widget_nav_menu > div > ul.menu ul ul {
  left: auto;
  right: 100%;
}
.noo-top-bar .top-bar-right .noo-login-button {
  margin-left: 15px;
}
.noo-top-bar .top-bar-center {
  text-align: center;
}
.noo-top-bar .noo-account {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  font-size: 14px;
  padding-left: 20px;
}
.noo-top-bar .noo-account > a {
  line-height: 50px;
  vertical-align: middle;
}
.noo-top-bar .noo-account > a img {
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.noo-top-bar .noo-account ul li a {
  font-size: 14px;
}
.noo-top-bar ul {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.noo-top-bar ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
}
.noo-top-bar ul.noo-meta-contact i {
  color: #fcac2f;
  margin-right: 8px;
}
.noo-top-bar ul.noo-meta-contact li {
  margin-right: 34px;
}
.noo-top-bar ul.social-profile li {
  height: 26px;
  width: 30px;
  line-height: 26px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
}
.noo-top-bar ul.social-profile li a {
  display: inline-block;
  position: relative;
  font-size: 0;
}
.noo-top-bar ul.social-profile li a:after {
  content: '';
  background: #fcac2f;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
}
.noo-top-bar ul.social-profile li a i {
  font-size: 14px;
}
.noo-top-bar ul.social-profile li:hover a:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.noo-top-bar ul.noo-meta-property {
  margin-left: 15px;
}
.noo-top-bar ul.noo-meta-property li {
  margin-right: 20px;
}
.noo-top-bar ul.noo-meta-property li a {
  font-size: 14px;
  font-weight: 700;
  color: #6b6b6b;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.noo-top-bar ul.noo-meta-property li a:hover {
  color: #fcac2f;
}
.noo-top-bar ul.noo-meta-property li.meta-property-submit {
  margin-right: 0px;
}
.noo-top-bar .meta-email {
  font-size: 0;
}
.noo-top-bar .meta-email i {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .noo-top-bar {
    height: 50px;
    max-height: 50px;
  }
}
@media screen and (max-width: 991px) {
  .noo-top-bar {
    position: relative;
    z-index: 998;
    color: #6b6b6b;
    background: #fafafa;
  }
  .noo-top-bar .top-bar-left,
  .noo-top-bar .top-bar-right {
    text-align: center;
  }
  .top-bar-right.top-sidebar .widget_nav_menu > div > ul.menu ul ul {
    right: auto;
    left: 100%;
  }
}
@media screen and (max-width: 479px) {
  .noo-top-bar ul.top-bar-info li {
    display: block;
    margin-left: 0 !important;
  }
}
.cqtooltip-wrapper .cq-hotspots {
  z-index: 1;
}
.noo-mobile-menu-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
body.menu-mobile-in .noo-mobile-menu-overlay {
  opacity: 1;
  z-index: 11;
  pointer-events: auto;
  cursor: url(../images/close.png) 15 15, default;
}
.is-transparent {
  background: transparent !important;
}
@media screen and (min-width: 1370px) {
  header.noo-main-header .noo-header-nav-wrapper.nav-fullwith .container {
    width: 100%;
    padding: 0;
  }
  header.noo-main-header .noo-header-nav-wrapper.nav-fullwith .container .noo-header-wrapper .menu-wrapper .noo-main-menu > li.menu_style_tab > ul,
  header.noo-main-header .noo-header-nav-wrapper.nav-fullwith .container .noo-header-wrapper .menu-wrapper .noo-main-menu > li.menu_style_column > ul {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .noo-top-bar .topbar-fullwith {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (max-width: 1369px) {
  .noo-top-bar .topbar-fullwith {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.logo-sticky {
  list-style: none;
  display: none !important;
  vertical-align: middle;
}
header.noo-main-header .noo-header-wrapper {
  position: relative;
  width: 100%;
  display: table;
  z-index: 5;
}
header.noo-main-header .noo-header-wrapper .navbar-nav important li a {
  font-family: 'Lato';
  font-weight: 700;
  font-size: 16px;
}
header.noo-main-header .noo-header-wrapper .navbar-nav important li a:hover {
  color: #fcac2f;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.current-menu-item > a {
  color: #fcac2f;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children:hover > a {
  color: #fcac2f;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children.menu_style_column ul.sub-menu .menu-item-type-custom a {
  background-color: transparent;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children.menu_style_column > ul.sub-menu {
  background-color: #fff;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children.menu_style_column > ul.sub-menu ul.sub-menu {
  background-color: transparent;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu {
  background-color: #fff;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu li a {
  font-weight: normal;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu li.current-menu-item:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu li.current-menu-item > a {
  color: #fcac2f;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu > li {
  color: #333;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu > li .menu-caret {
  color: #333;
}
header.noo-main-header .noo-header-wrapper .navbar-nav li.menu-item-has-children ul.sub-menu .menu-item-type-custom a {
  background-color: #fff;
}
header.noo-main-header .header-left.text-center,
header.noo-main-header .header-right.text-center {
  text-align: center;
}
header.noo-main-header .header-left {
  display: table-cell;
  vertical-align: middle;
}
header.noo-main-header .header-right {
  display: table-cell;
  vertical-align: middle;
}
header.noo-main-header .header-logo > a > img {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
header.noo-main-header .noo-header-nav-wrapper {
  position: relative;
  left: 0;
  right: 0;
  z-index: 5;
}
header.noo-main-header .header-customize {
  display: inline-block;
  vertical-align: middle;
  font-size: 0px;
  margin-left: 10px;
}
header.noo-main-header .header-customize .header-customize-item {
  position: relative;
  display: inline-block;
  font-family: 'Lato';
  font-size: 16px;
  vertical-align: middle;
}
header.noo-main-header .header-customize .header-customize-item a.noo-login-button i {
  margin-right: 5px;
}
@media (max-width: 1199px) {
  header.noo-main-header .header-customize .header-customize-item a.noo-login-button span {
    display: none;
  }
}
header.noo-main-header .header-customize.header-customize-right .header-customize-item {
  margin-left: 20px;
  line-height: initial;
}
header.noo-main-header .header-customize.header-customize-left .header-customize-item {
  margin-right: 20px;
}
header.noo-main-header .header-customize-separate .header-customize-item + .header-customize-item:before {
  content: '';
  position: absolute;
  left: -15px;
  display: block;
  width: 1px;
  height: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
header.noo-main-header .icon-search-menu {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  border: none;
  vertical-align: middle;
  display: inline-block;
  text-align: center;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
header.noo-main-header .icon-search-menu i {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.noo-main-header .icon-search-menu i:hover {
  color: #fcac2f;
}
header.noo-main-header ul.header-social-profile-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
}
header.noo-main-header ul.header-social-profile-wrapper li {
  display: inline-block;
}
header.noo-main-header ul.header-social-profile-wrapper li a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.noo-main-header ul.header-social-profile-wrapper li a:hover {
  color: #fcac2f;
}
header.noo-main-header ul.header-social-profile-wrapper li a i {
  font-size: 16px;
}
header.noo-main-header ul.header-social-profile-wrapper li + li {
  margin-left: 20px;
}
@media (max-width: 1440px) {
  header.noo-main-header ul.header-social-profile-wrapper li + li {
    margin-left: 10px;
  }
}
header.noo-main-header .search-box input {
  width: 100%;
  padding-left: 10px;
  padding-right: 40px;
  max-width: 100%;
  vertical-align: middle;
  height: 30px;
}
header.noo-main-header .search-box button {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 10px;
  margin: auto;
  padding: 0;
  line-height: 1;
}
header.noo-main-header .search-box button i {
  font-size: 18px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.noo-main-header .search-box button:hover i {
  color: #fcac2f;
}
header.noo-main-header .search-box.search-with-category-inner input {
  background-color: transparent;
  height: 40px;
  line-height: 38px;
  border-left: 1px;
}
header.noo-main-header .search-box-wrapper > form {
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-block;
  line-height: 30px;
  border: none;
}
header.noo-main-header .search-box-wrapper > form button i.fa-spinner:before {
  content: '\f110';
  font-family: fontawesome;
  font-size: 14px;
  line-height: 30px;
}
header.noo-main-header .ajax-search-result {
  position: absolute;
  top: 100%;
  z-index: 10;
  background-color: #fff;
  left: 0;
  right: 0;
  border: solid 1px #eee;
  border-top: none;
  min-width: 200px;
}
header.noo-main-header .ajax-search-result > ul {
  position: relative;
  display: block;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}
header.noo-main-header .ajax-search-result > ul > li {
  padding: 10px 15px;
  position: relative;
}
header.noo-main-header .ajax-search-result > ul > li:after {
  content: '';
  display: block;
  clear: both;
}
header.noo-main-header .ajax-search-result > ul > li img {
  float: left;
  width: 50px;
  margin-right: 15px;
}
header.noo-main-header .ajax-search-result > ul > li.no-result {
  text-align: center;
}
header.noo-main-header .ajax-search-result > ul > li.selected,
header.noo-main-header .ajax-search-result > ul > li:hover {
  background-color: #fafafa;
}
header.noo-main-header .ajax-search-result > ul > li.selected + li:before,
header.noo-main-header .ajax-search-result > ul > li:hover + li:before {
  display: none;
}
header.noo-main-header .ajax-search-result > ul > li + li.selected:before,
header.noo-main-header .ajax-search-result > ul > li + li:hover:before {
  display: none;
}
header.noo-main-header .ajax-search-result > ul > li + li:before {
  content: '';
  position: absolute;
  display: block;
  margin: auto;
  left: 15px;
  right: 15px;
  top: 0;
}
header.noo-main-header .ajax-search-result .search-view-more {
  text-align: center;
  line-height: 40px;
  background-color: #ededed;
  border-top: solid 1px #d9d9d9;
}
header.noo-main-header .sticky-on .noo-customize-property-action a span.list-label.heading-font {
  height: 30px;
  line-height: 14px;
}
header.noo-main-header .noo-customize-property-action a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
header.noo-main-header .noo-customize-property-action a > i {
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 24px;
  line-height: 60px;
  margin-right: 20px;
  text-align: center;
  position: relative;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: inline-block;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fcac2f;
  border: 1px solid #fcac2f;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.noo-main-header .noo-customize-property-action a > i:after {
  z-index: 1;
  top: -15px;
  right: 15px;
  font-size: 12px;
  content: '\f067';
  position: absolute;
  font-weight: normal;
  font-family: 'FontAwesome';
}
@media (max-width: 1750px) {
  header.noo-main-header .noo-customize-property-action a > i {
    margin-right: 10px;
  }
}
header.noo-main-header .noo-customize-property-action a span.list-label.heading-font {
  vertical-align: middle;
  height: 40px;
}
header.noo-main-header .noo-customize-property-action a > span.compare-icon {
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 24px;
  line-height: 60px;
  margin-right: 20px;
  text-align: center;
  position: relative;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: inline-block;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #fcac2f;
  border: 1px solid #fcac2f;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header.noo-main-header .noo-customize-property-action a > span.compare-icon .number {
  z-index: 1;
  top: -15px;
  right: 15px;
  font-size: 12px;
  position: absolute;
  font-weight: 900;
  font-family: 'Lato';
}
header.noo-main-header .noo-customize-property-action a > span.compare-icon:hover i {
  color: #fff;
}
@media (max-width: 1750px) {
  header.noo-main-header .noo-customize-property-action a > span.compare-icon {
    margin-right: 10px;
  }
}
header.noo-main-header .noo-customize-property-action a:hover > .compare-icon,
header.noo-main-header .noo-customize-property-action a:hover i {
  background: transparent;
  color: #fcac2f;
}
header.noo-main-header .noo-customize-property-action a > span {
  max-width: 70px;
  line-height: 16px;
  text-align: center;
  display: inline-block;
}
header.noo-main-header .noo-customize-property-action a > span.compare-badge {
  display: none;
}
@media (max-width: 1700px) {
  header.noo-main-header .noo-customize-property-action.header-customize-item {
    margin-left: 10px !important;
  }
}
@media (max-width: 1600px) {
  header.noo-main-header .noo-customize-property-action.header-customize-item {
    margin-left: 10px !important;
  }
  header.noo-main-header .noo-customize-property-action.header-customize-item a .list-label {
    display: none;
  }
}
@media (max-width: 1440px) {
  header.noo-main-header .noo-customize-property-action.header-customize-item {
    margin-left: 10px !important;
  }
  header.noo-main-header .noo-customize-property-action a > i.compare-icon,
  header.noo-main-header .noo-customize-property-action a > span.compare-icon {
    margin-right: 0;
  }
  header.noo-main-header .noo-customize-property-action a .list-label {
    display: none;
  }
}
@media (max-width: 1200px) {
  header.noo-main-header .noo-customize-property-action a > i.compare-icon,
  header.noo-main-header .noo-customize-property-action a > span.compare-icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
  header.noo-main-header .noo-customize-property-action a > i.compare-icon .number,
  header.noo-main-header .noo-customize-property-action a > span.compare-icon .number {
    top: -2px;
    right: 2px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
  }
  header.noo-main-header .noo-customize-property-action a > i.compare-icon:after,
  header.noo-main-header .noo-customize-property-action a > span.compare-icon:after {
    top: -2px;
    right: 2px;
    height: 16px;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
  }
  header.noo-main-header .noo-customize-property-action a > span {
    vertical-align: inherit;
  }
}
header.noo-main-header .header-customize .noo-account > a > .profile-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-right: 5px;
}
header.noo-main-header .header-customize .noo-account ul.sub-menu {
  padding: 20px 25px;
}
header.noo-main-header .header-customize .noo-account ul.sub-menu li {
  font-weight: normal;
  display: block;
}
header.noo-main-header .search-with-category {
  width: 400px;
}
header.noo-main-header .search-with-category > .search-with-category-inner {
  line-height: 1;
}
header.noo-main-header .search-with-category .form-search-left {
  float: left;
  width: 140px;
  position: relative;
}
header.noo-main-header .search-with-category .form-search-left > span {
  border: solid 1px #eee;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  vertical-align: middle;
  width: 100%;
  border-right: none;
  padding: 0 18px;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Lato';
}
header.noo-main-header .search-with-category .form-search-left > span:after {
  content: '\f0d7';
  font-family: 'fontawesome';
  position: absolute;
  right: 15px;
  margin: auto;
  top: 15px;
  bottom: 0;
  height: 17px;
  font-size: 14px;
  line-height: 3px;
}
header.noo-main-header .search-with-category .form-search-right {
  padding-left: 140px;
}
header.noo-main-header .search-with-category .form-search-right input {
  border: 1px solid #eee;
}
header.noo-main-header .search-with-category .form-search-right button[type="button"]:hover i {
  color: #fcac2f;
}
header.noo-main-header .search-with-category .form-search-right button[type="button"] i {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
header.noo-main-header .search-with-category .form-search-right button[type="button"] i.fa-spinner.fa-spin:before {
  content: '\f110';
  font-family: fontawesome;
  font-size: 14px;
  line-height: 38px;
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
header.noo-main-header .search-with-category .search-category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0px;
  overflow: auto;
  padding: 5px 0;
  list-style: none;
  margin: 0;
  border: solid 1px #eee;
  border-top: none;
  background-color: #fff;
  line-height: 36px;
  z-index: 10;
  max-height: 380px;
}
header.noo-main-header .search-with-category .search-category-dropdown li > span {
  cursor: pointer;
  padding: 0 15px;
  display: block;
  text-align: left;
  color: #333;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.noo-main-header .search-with-category .search-category-dropdown ul li > span {
  padding-left: 30px;
}
header.noo-main-header .search-with-category .search-category-dropdown ul ul li > span {
  padding-left: 45px;
}
header.noo-main-header .search-with-category .search-category-dropdown li > span:hover {
  color: #fcac2f;
}
header.noo-main-header .search-with-category .search-category-dropdown ul {
  padding: 0;
  list-style: inside;
}
header.noo-main-header .search-with-category .ajax-search-result {
  border-width: 2px;
}
header.noo-main-header .header-customize-nav .header-customize-item {
  margin: 0 5px;
}
header.noo-main-header .header-customize-nav .search-box-wrapper .search-box input[type="text"] {
  line-height: 45px;
  height: 45px;
}
header.noo-main-header .header-customize-nav .search-with-category .form-search-left > span,
header.noo-main-header .header-customize-nav .search-with-category .search-with-category-inner,
header.noo-main-header .header-customize-nav .search-with-category .form-search-right > input {
  line-height: 38px;
  height: 40px;
}
header.noo-main-header .header-customize-right:before,
header.noo-main-header .header-customize-left:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
header.noo-main-header .header-customize-right .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper,
header.noo-main-header .header-customize-left .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
  margin-top: 20px;
}
header.noo-main-header .header-customize.header-customize-left {
  margin-left: 0;
}
header.noo-main-header .custom-list {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
header.noo-main-header .custom-list li {
  line-height: 24px;
}
header.noo-main-header .custom-separate {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  width: 1px;
  margin-left: 15px;
  margin-right: 15px;
}
header.header-float {
  position: absolute !important;
  z-index: 5;
  left: 0;
  right: 0;
  background-color: transparent;
}
header.header-float .noo-sticky-wrapper .noo-header-nav-wrapper {
  background-color: transparent;
}
header.header-float.header-4 .noo-top-bar {
  border-bottom: 1px solid #576385;
}
header.header-float.header-4 .header-logo {
  margin-top: 70px;
}
header.header-float.header-4 ul.noo-topbar li {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
  border-right: 1px solid #576385;
  padding: 12px 25px;
}
header.header-float.header-4 ul.noo-topbar li:last-child {
  border-right: none;
}
header.header-float.header-4 ul.noo-topbar li a {
  color: #fff;
}
header.header-float.header-4 ul.noo-topbar li a:hover {
  color: #fcac2f;
}
header.header-float.header-4 ul.noo-topbar li a i {
  padding-right: 3px;
}
header.header-float.header-4 ul.noo-topbar li.noo-social a {
  padding-left: 20px;
}
header.header-float.header-4 .header-center {
  text-align: center;
}
header.header-float.header-4 .navbar-nav {
  margin-top: 25px;
}
header.header-float.header-4 .navbar-nav > li > a {
  color: #fff;
  padding: 20px 40px;
}
header.header-float.header-4 .navbar-nav > li > a:hover {
  color: #fcac2f;
}
header.header-float.header-4 .sticky-on {
  background: #fff !important;
}
header.header-float.header-4 .sticky-on .logo-center {
  display: none !important;
}
header.header-float.header-4 .sticky-on .navbar-nav {
  margin: 0;
}
header.header-float.header-4 .sticky-on .navbar-nav > li > a {
  color: #071645;
}
header.header-float.header-4 .sticky-on .navbar-nav > li > a:hover {
  color: #fcac2f;
}
header.noo-main-header .is-sticky .noo-customize-property-action a > i,
header.noo-main-header .is-sticky .noo-customize-property-action a > span.compare-icon {
  width: 36px;
  height: 36px;
  font-size: 14px;
  margin-right: 0;
  line-height: 36px;
}
header.noo-main-header .is-sticky .noo-customize-property-action a > i:after,
header.noo-main-header .is-sticky .noo-customize-property-action a > span.compare-icon:after {
  top: -2px;
  right: 2px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 10px;
}
header.noo-main-header .is-sticky .noo-customize-property-action a > span.compare-icon .number {
  top: -2px;
  right: 2px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 10px;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper {
  z-index: 10;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  border: none !important;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .logo-sticky {
  display: table !important;
  line-height: 60px;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .logo-sticky > a > img {
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .header-logo.has-logo-sticky {
  display: none !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .header-logo {
  height: 60px;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .header-logo > a > img {
  max-height: 40px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: none;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .header-customize {
  line-height: 60px;
  height: 60px;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-inherit.sticky-on .menu-wrapper .noo-main-menu > li > a:hover {
  color: #fcac2f !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-gray.sticky-on {
  background-color: #eee !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-gray.sticky-on .header-customize-item,
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-gray.sticky-on .widget_shopping_cart_icon span.total {
  color: #333 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-gray.sticky-on .menu-wrapper .noo-main-menu > li > a {
  color: #333 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-gray.sticky-on .menu-wrapper .noo-main-menu > li:hover > a {
  color: #fcac2f !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-light.sticky-on {
  background-color: #fff !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-light.sticky-on .header-customize-item,
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-light.sticky-on .widget_shopping_cart_icon span.total {
  color: #333 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-light.sticky-on .menu-wrapper .noo-main-menu > li > a {
  color: #363738 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-dark.sticky-on {
  background-color: #333 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-dark.sticky-on .header-customize-item {
  color: #fff !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-dark.sticky-on .widget_shopping_cart_icon span.total {
  color: #333 !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-dark.sticky-on .menu-wrapper .noo-main-menu > li > a {
  color: #fff !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper.sticky-scheme-dark.sticky-on .menu-wrapper .noo-main-menu > li:hover > a {
  color: #fcac2f !important;
}
.noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper .noo-header-wrapper {
  border-bottom: none;
}
body.boxed .noo-sticky-wrapper.is-sticky > .noo-header-nav-wrapper {
  max-width: 1200px;
  margin: auto;
}
.shopping-cart-wrapper {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  position: relative;
}
.shopping-cart-wrapper.no-price .sub-total-text {
  display: none;
}
.shopping-cart-wrapper .widget_shopping_cart_content {
  display: block;
  text-align: left;
  font-size: 12px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon {
  position: relative;
  display: inline-block;
  line-height: 60px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon span.total {
  background-color: #fff;
  position: absolute;
  top: 10px;
  right: 0px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  color: #333;
  border-radius: 100%;
}
@media (max-width: 991px) {
  .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon span.total {
    top: 0px;
  }
}
.shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon i.wicon {
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon i.wicon:hover {
  color: #fcac2f !important;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
  display: block;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 150%;
  right: 0;
  left: auto;
  z-index: 11;
  min-width: 300px;
  background-color: #fff;
  border: solid 2px #eee;
  padding: 0;
  line-height: 2em;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transition-timing-function: cubic-bezier(1, 0.07, 1, 0.07);
  -o-transition-timing-function: cubic-bezier(1, 0.07, 1, 0.07);
  transition-timing-function: cubic-bezier(1, 0.07, 1, 0.07);
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper .cart-total {
  padding: 0 15px 20px;
  position: relative;
  color: #222222;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty {
  padding: 15px;
  text-align: center;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty h4 {
  text-transform: uppercase;
  padding: 0 0 15px;
  margin: 0;
  font-size: 16px;
  word-spacing: 0.2em;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty p {
  color: #333;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li {
  padding: 15px 0;
  margin: 0;
  position: relative;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li + li {
  border-top: solid 1px #666666;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-left {
  float: left;
  overflow: hidden;
  margin-right: 10px;
  border: solid 1px #eee;
  background: #fff;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-left > a > img {
  height: auto;
  width: 58px;
  margin: 0;
  display: block;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-right {
  overflow: hidden;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-right > a {
  text-transform: uppercase;
  word-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  display: block;
  padding-right: 15px;
  color: #071645;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-right > a:hover {
  color: #fcac2f;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-right > span.quantity {
  font-size: 12px;
  font-weight: 700;
  display: block;
  text-align: left;
  color: #8f8f8f;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li .cart-right > a.mini-cart-remove {
  position: absolute;
  right: 0;
  top: 15px;
  padding-right: 0;
  font-size: 18px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li:after {
  content: "";
  display: block;
  clear: both;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.total {
  padding: 0;
  font-size: 13px;
  font-weight: bold;
  margin: 0;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
  line-height: 43px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.total strong {
  text-transform: uppercase;
  font-weight: 400;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.total > span.amount {
  font-weight: 700;
  float: right;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons {
  text-align: center;
  margin: 0;
  padding: 15px 0 0;
  font-size: 0;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button {
  color: #fff;
  border-radius: 0;
  line-height: 20px;
  padding: 10px;
  font-size: 12px;
  min-width: 125px;
  width: 48%;
  display: inline-block;
  text-transform: uppercase;
  background-color: #333;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button:hover {
  background-color: #fcac2f;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button > i.fa {
  margin-right: 5px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button.checkout {
  background-color: #fcac2f;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button.checkout:hover {
  background-color: #c27803;
}
@media (max-width: 480px) {
  .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button {
    min-width: 100px;
  }
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button + .button {
  margin-left: 4%;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper dl {
  border: none;
  margin: 0;
  padding: 0;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper dl dt {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
  line-height: 20px;
  clear: none;
  font-size: 11px;
  font-weight: 400;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper dl dd {
  padding: 0;
  line-height: 20px;
  display: block;
  float: none;
  margin: 0;
  font-size: 11px;
}
.shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper dl p {
  margin: 0;
  padding: 0;
}
.shopping-cart-wrapper .widget_shopping_cart_content ul.cart_list,
.shopping-cart-wrapper .widget_shopping_cart_content ul.product_list_widget {
  position: relative;
  margin: 0;
  list-style: none;
  padding: 15px 15px 0;
}
.shopping-cart-wrapper .widget_shopping_cart_content:hover .cart_list_wrapper.mini-cart-hover {
  top: 100%;
  visibility: visible;
  opacity: 1;
  -webkit-transition-timing-function: cubic-bezier(0.11, 0.76, 0.24, 0.93);
  -o-transition-timing-function: cubic-bezier(0.11, 0.76, 0.24, 0.93);
  transition-timing-function: cubic-bezier(0.11, 0.76, 0.24, 0.93);
}
.shopping-cart-wrapper.with-price .sub-total-text {
  position: absolute;
  top: 25px;
  right: 0px;
}
.shopping-cart-wrapper.with-price .widget_shopping_cart_content .widget_shopping_cart_icon i.wicon {
  border-radius: 0;
  background-color: transparent;
}
.my-wishlist .widget_shopping_wishlist_content .my-wishlist-wrapper {
  position: relative;
  line-height: 60px;
}
.my-wishlist .widget_shopping_wishlist_content .my-wishlist-wrapper a.noo-wishlist i.wicon {
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 15px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.my-wishlist .widget_shopping_wishlist_content .my-wishlist-wrapper a.noo-wishlist i.wicon:hover {
  color: #fcac2f;
}
.my-wishlist .widget_shopping_wishlist_content .my-wishlist-wrapper a.noo-wishlist span.total {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  text-align: center;
  line-height: 18px;
  background-color: #fff;
  color: #333;
  border-radius: 100%;
}
.custom-dropdown-list {
  position: relative;
  display: inline-block;
}
.custom-dropdown-list > span {
  cursor: pointer;
}
.custom-dropdown-list:hover > ul {
  display: block;
}
.custom-dropdown-list > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  background-color: #fff;
  z-index: 4;
  -webkit-box-shadow: 2px 3px 5px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 3px 5px 2px rgba(0, 0, 0, 0.3);
}
.custom-dropdown-list > ul li {
  line-height: 32px;
  padding: 0 15px;
  display: block;
}
.custom-dropdown-list > ul li > a {
  color: #333;
  white-space: nowrap;
}
#mini-cart-canvas.noo-canvas-menu-wrapper {
  width: 300px;
  padding: 0;
  background: #fff;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .widget_shopping_cart_icon,
#mini-cart-canvas.noo-canvas-menu-wrapper .sub-total-text {
  display: none;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .noo-canvas-menu-close {
  top: 13px;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .mini-cart-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 0;
  margin: 0;
  background: #333333;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper {
  padding: 25px;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li {
  position: relative;
  text-align: center;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li img {
  float: none;
  width: auto;
  margin: 0 auto;
  display: block;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li > span {
  display: block;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li .mini-cart-remove {
  font-weight: normal;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li .mini-cart-remove:last-child {
  display: none;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li .price {
  display: block;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li a:first-child {
  margin-top: 10px;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li a.remove {
  display: none;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li .spinner {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  display: block;
  content: "";
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background-size: cover;
  background-position: center center;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .cart_list li .spinner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper dl {
  border: none;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .total {
  padding: 10px 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .total .amount {
  float: right;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .buttons a {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#mini-cart-canvas.noo-canvas-menu-wrapper .cart_list_wrapper .btcart {
  position: fixed;
}
#wishlists-canvas {
  padding: 0;
  background: #fff;
}
#wishlists-canvas.noo-canvas-menu-wrapper {
  width: 300px;
}
#wishlists-canvas .noo-canvas-menu-close {
  top: 13px;
}
#wishlists-canvas .wishlist-title {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 15px 0;
  margin: 0;
  background: #333333;
}
#wishlists-canvas .wishlists-content .woocommerce-error,
#wishlists-canvas .wishlists-content .woocommerce-message,
#wishlists-canvas .wishlists-content .yith-wcwl-messages {
  display: none;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form table {
  min-width: 100%;
  background: transparent !important;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#wishlists-canvas .wishlists-content #yith-wcwl-form table .blockUI.blockOverlay {
  display: none !important;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form .wishlist-title,
#wishlists-canvas .wishlists-content #yith-wcwl-form thead,
#wishlists-canvas .wishlists-content #yith-wcwl-form tfoot {
  display: none;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody,
#wishlists-canvas .wishlists-content #yith-wcwl-form tr,
#wishlists-canvas .wishlists-content #yith-wcwl-form td {
  border: none;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr {
  position: relative;
  display: block;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td {
  margin: 5px 0;
  padding: 0;
  display: block;
  width: 100%;
  text-align: center;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.product-thumbnail a {
  max-width: 180px !important;
  margin: 0 auto;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.product-remove {
  position: absolute;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.product-remove a {
  top: 10px;
  right: 10px;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.wishlist-empty {
  padding-top: 25px;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.product-add-to-cart {
  margin-bottom: 10px;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr td.product-add-to-cart .add-to-cart-wrap {
  position: relative;
  bottom: auto;
  left: auto;
  opacity: 1;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr .spinner {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  display: block;
  content: "";
  -webkit-animation: spin 1s ease-in-out infinite;
  animation: spin 1s ease-in-out infinite;
  background-size: cover;
  background-position: center center;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
  z-index: 5;
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr .spinner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
#wishlists-canvas .wishlists-content #yith-wcwl-form tbody tr:first-child {
  padding-top: 25px;
}
#wishlists-canvas .wl-button a {
  width: calc(100% - 50px);
  margin: 25px;
}
@media screen and (min-width: 1370px) {
  header.noo-main-header.header-1 .noo-header-nav-wrapper.nav-fullwith {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.header-float.header-1 .noo-top-bar .noo-account .sub-menu {
  color: #333;
}
@media (min-width: 992px) {
  .header-float.header-1 .noo-top-bar {
    position: absolute;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header-float.header-1 .noo-top-bar .noo-meta-contact .meta-phone {
    position: relative;
  }
  .header-float.header-1 .noo-top-bar .noo-meta-contact .meta-phone:before {
    top: 0;
    width: 1px;
    z-index: 1;
    left: -17px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .header-float.header-1 .noo-top-bar .noo-account,
  .header-float.header-1 .noo-top-bar .noo-popup-login {
    display: inline-block;
    margin-left: 20px;
    position: relative;
  }
  .header-float.header-1 .noo-top-bar .noo-account:before,
  .header-float.header-1 .noo-top-bar .noo-popup-login:before {
    top: 0;
    left: 0;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .header-float.header-1 header.header-1 {
    top: 60px;
  }
  .header-float.header-1.admin-bar header.header-1 {
    top: 80px;
  }
}
.header-float.header-1 .is-sticky.noo-sticky-wrapper .noo-header-nav-wrapper {
  background: #fff !important;
}
.header-float.header-1 .is-sticky.noo-sticky-wrapper .noo-header-nav-wrapper .noo-main-menu li {
  color: #333;
}
.header-float.header-1 .is-sticky.noo-sticky-wrapper .noo-header-nav-wrapper .noo-main-menu li a {
  color: inherit;
}
html header.header-1 {
  background-color: #fff0;
  position: relative;
}
html header.header-1 .noo-header-nav-wrapper {
  padding-top: 10px;
}
html header.header-1 .noo-header-nav-wrapper.text-left {
  z-index: 10;
}
html header.header-1 .noo-header-nav-wrapper .container .noo-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 40px 0 20px 0;
}
html header.header-1 .noo-header-wrapper .noo-main-menu {
  width: 100%;
  display: block;
  text-align: center;
}
html header.header-1 .noo-header-wrapper .noo-main-menu > li {
  float: none;
  display: inline-block;
  color: #fff;
}
html header.header-1 .noo-header-wrapper .noo-main-menu > li > a {
  padding-right: 50px;
}
@media (max-width: 1199px) {
  html header.header-1 .noo-header-wrapper .noo-main-menu > li > a {
    padding: 20px 10px;
    padding-right: 10px;
  }
}
html header.header-1 .header-customize.header-customize-nav {
  float: right;
  height: 60px;
  line-height: 60px;
}
html header.header-1 .header-customize.header-customize-nav .header-customize-item {
  margin-left: 20px;
}
html header.header-1 .header-customize .header-customize-item {
  color: #fff;
}
html header.header-1 .header-customize input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
html header.header-1 .header-customize input[type="text"]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
html header.header-1 .header-customize input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
html header.header-1 .header-customize input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
html header.header-1 .header-center .menu-wrapper {
  margin: 0 auto;
}
html header.header-1 .noo-sticky-wrapper.is-sticky .header-sticky {
  padding-top: 0px;
  background-color: #fff0;
}
html header.header-1 .noo-sticky-wrapper .header-sticky {
  padding-top: 0px;
}
@media screen and (min-width: 1370px) {
  header.noo-main-header.header-2 .noo-header-nav-wrapper.nav-fullwith {
    padding-left: 60px;
    padding-right: 60px;
  }
}
header.header-2 {
  background-color: #fff;
}
header.header-2 .noo-header-nav-wrapper {
  -webkit-transition: all 0.1s ease 0s;
  -o-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}
header.header-2 .noo-header-nav-wrapper .logo-center {
  padding: 0;
}
header.header-2 .noo-header-nav-wrapper .header-logo {
  text-align: center;
  display: table;
  height: 130px;
  width: 100%;
}
header.header-2 .noo-header-nav-wrapper .header-logo a {
  display: table-cell;
  vertical-align: middle;
}
header.header-2 .noo-header-nav-wrapper .header-logo a img {
  max-height: 130px;
}
header.header-2 .noo-header-nav-wrapper .header-customize-left {
  float: left;
}
header.header-2 .noo-header-nav-wrapper .header-customize-right,
header.header-2 .noo-header-nav-wrapper .header-customize-left {
  height: 130px;
}
@media (max-width: 1919px) {
  header.header-2 .noo-header-nav-wrapper .header-customize-right .search-with-category,
  header.header-2 .noo-header-nav-wrapper .header-customize-left .search-with-category {
    display: none;
  }
}
@media (max-width: 1450px) {
  header.header-2 .noo-header-nav-wrapper .header-customize-right .search-box-wrapper,
  header.header-2 .noo-header-nav-wrapper .header-customize-left .search-box-wrapper {
    max-width: 100px;
  }
}
header.header-2 .noo-header-nav-wrapper .header-customize .header-customize-item {
  color: #000033;
}
header.header-2 .noo-header-nav-wrapper .header-customize input[type="text"]::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.7);
}
header.header-2 .noo-header-nav-wrapper .header-customize input[type="text"]:-moz-placeholder {
  color: rgba(0, 0, 51, 0.7);
}
header.header-2 .noo-header-nav-wrapper .header-customize input[type="text"]::-moz-placeholder {
  color: rgba(0, 0, 51, 0.7);
}
header.header-2 .noo-header-nav-wrapper .header-customize input[type="text"]:-ms-input-placeholder {
  color: rgba(0, 0, 51, 0.7);
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper > div:first-child {
  text-align: right;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split {
  padding: 0;
  position: inherit;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav > li {
  color: #000033;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav > li > a {
  padding-right: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  line-height: 130px;
}
@media (max-width: 1700px) {
  header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav > li > a {
    padding-right: 10px !important;
  }
}
@media (max-width: 1199px) {
  header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav > li > a {
    padding-right: 0 !important;
    padding-left: 15px;
  }
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-left {
  float: right;
  padding-right: 30px;
}
@media (max-width: 1750px) {
  header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-left {
    padding-right: 15px;
  }
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-left > li:first-child > a {
  padding-left: 0;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-left > li:last-child > a {
  padding-right: 0;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-right {
  padding-left: 30px;
}
@media (max-width: 1750px) {
  header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-right {
    padding-left: 15px;
  }
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-right > li:first-child > a {
  padding-left: 0;
}
header.header-2 .noo-header-nav-wrapper .noo-header-wrapper .menu-split ul.navbar-nav.split-right > li:last-child > a {
  padding-right: 0;
}
header.header-2 .noo-header-nav-wrapper.sticky-in {
  -webkit-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}
header.header-2 .noo-header-nav-wrapper.sticky-on .noo-header-wrapper .menu-split ul.navbar-nav > li {
  color: #000033;
}
header.header-2 .noo-header-nav-wrapper.sticky-on .noo-header-wrapper .menu-split ul.navbar-nav > li > a {
  line-height: 60px;
}
header.header-2 .noo-header-nav-wrapper.sticky-out .noo-header-wrapper .menu-split ul.navbar-nav > li {
  color: #000033;
}
header.header-2 .noo-header-nav-wrapper.sticky-out .noo-header-wrapper .menu-split ul.navbar-nav > li > a {
  line-height: 60px;
}
header.header-2 .noo-sticky-wrapper.is-sticky .header-sticky {
  background-color: #fff;
}
@media screen and (max-width: 1199px) {
  header.header-2 .header-customize {
    display: none;
  }
}
@media screen and (min-width: 1370px) {
  header.noo-main-header.header-3 .noo-header-nav-wrapper.nav-fullwith {
    padding-left: 60px;
    padding-right: 60px;
  }
}
header.header-3 {
  position: relative;
  background-color: #fff;
}
header.header-3 .noo-header-nav-wrapper {
  position: relative;
  height: 130px;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas {
  position: relative;
  z-index: 2;
  float: left;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas .canvas-menu-toggle-wrapper {
  padding-right: 70px;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left {
  float: left;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo {
  position: relative;
  z-index: 1;
  display: table;
  height: 130px;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a {
  display: table-cell;
  vertical-align: middle;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
  max-height: 130px;
}
@media (max-width: 1199px) {
  header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
    max-width: 160px;
  }
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center {
  float: left;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize {
  line-height: 130px;
}
@media (max-width: 1650px) {
  header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize .search-with-category {
    width: 200px;
  }
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right {
  float: right;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper {
  float: left;
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 130px;
}
@media (max-width: 1199px) {
  header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 5px;
  }
}
header.header-3 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .header-customize {
  line-height: 130px;
}
header.header-3 .noo-header-nav-wrapper.sticky-in {
  -webkit-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}
header.header-3 .noo-header-nav-wrapper.sticky-on {
  height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 0px;
  padding-bottom: 0px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-center .header-customize {
  line-height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-right {
  float: right;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper {
  float: left;
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-3 .noo-header-nav-wrapper.sticky-on .container .header-right .header-customize {
  line-height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out {
  height: 60px !important;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-center .header-customize {
  line-height: 60px;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-right {
  float: right;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper {
  float: left;
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-3 .noo-header-nav-wrapper.sticky-out .container .header-right .header-customize {
  line-height: 60px;
}
header.header-3 .noo-sticky-wrapper.is-sticky .header-sticky {
  background-color: #fff;
}
@media screen and (min-width: 1370px) {
  header.noo-main-header.header-4 .noo-header-nav-wrapper.nav-fullwith .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
header.header-4 {
  position: relative;
}
header.header-4 .noo-header-nav-wrapper {
  position: relative;
  height: 130px;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas {
  position: relative;
  z-index: 2;
  float: left;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas .canvas-menu-toggle-wrapper {
  padding-right: 70px;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left {
  float: left;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo {
  position: relative;
  z-index: 1;
  display: table;
  height: 130px;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a {
  display: table-cell;
  vertical-align: middle;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
  max-height: 130px;
}
@media (max-width: 1199px) {
  header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
    max-width: 160px;
  }
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center {
  float: left;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize {
  line-height: 130px;
}
@media (max-width: 1650px) {
  header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize .search-with-category {
    width: 200px;
  }
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right {
  float: right;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right > div {
  float: left;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper {
  float: left;
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
  color: inherit;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 130px;
}
@media (max-width: 1199px) {
  header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-4 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .header-customize {
  line-height: 130px;
}
header.header-4 .noo-header-nav-wrapper #primary-menu {
  position: relative;
  background-color: #000033;
}
header.header-4 .noo-header-nav-wrapper #primary-menu .sub-menu {
  color: #333;
}
header.header-4 .noo-header-nav-wrapper #primary-menu ul.noo-main-menu {
  width: 100%;
  display: block;
  text-align: center;
}
header.header-4 .noo-header-nav-wrapper #primary-menu ul.noo-main-menu > li {
  display: inline-block;
  float: none;
}
header.header-4 .noo-header-nav-wrapper #primary-menu ul.noo-main-menu > li > a {
  font-family: 'Lato';
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  padding: 0 15px;
}
header.header-4 .noo-header-nav-wrapper .header-customize ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header.header-4 .noo-header-nav-wrapper .header-customize ul li {
  display: inline-block;
  vertical-align: middle;
}
header.header-4 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li {
  padding: 0 20px;
  text-transform: uppercase;
  color: #071645;
}
header.header-4 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li span {
  display: table;
  line-height: 24px;
}
header.header-4 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li b {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
header.header-4 .noo-header-nav-wrapper.sticky-in {
  -webkit-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}
header.header-4 .noo-header-nav-wrapper.sticky-on {
  height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 0px;
  padding-bottom: 0px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-center .header-customize {
  line-height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-right {
  float: right;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper {
  float: left;
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-4 .noo-header-nav-wrapper.sticky-on .container .header-right .header-customize {
  line-height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-on #primary-menu ul.noo-main-menu > li > a {
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
header.header-4 .noo-header-nav-wrapper.sticky-out {
  height: 60px !important;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-center .header-customize {
  line-height: 60px;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-right {
  float: right;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper {
  float: left;
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-4 .noo-header-nav-wrapper.sticky-out .container .header-right .header-customize {
  line-height: 60px;
}
header.header-4 .noo-sticky-wrapper.is-sticky .header-sticky {
  background-color: #000033;
}
header.header-4 .noo-sticky-wrapper.is-sticky .noo-header-wrapper {
  display: none;
}
@media screen and (min-width: 1370px) {
  header.noo-main-header.header-5 .noo-header-nav-wrapper.nav-fullwith .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
header.header-5 {
  position: relative;
}
header.header-5 .noo-header-nav-wrapper {
  position: relative;
  height: 130px;
  -webkit-transition: all 0.35s ease 0s;
  -o-transition: all 0.35s ease 0s;
  transition: all 0.35s ease 0s;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper {
  line-height: 130px;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas {
  position: relative;
  z-index: 2;
  float: left;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left-offcanvas .canvas-menu-toggle-wrapper {
  padding-right: 70px;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left {
  float: left;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo {
  position: relative;
  z-index: 1;
  display: table;
  height: 130px;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a {
  display: table-cell;
  vertical-align: middle;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
  max-height: 130px;
}
@media (max-width: 1199px) {
  header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-left .header-logo a img {
    max-width: 160px;
  }
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center {
  float: left;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize {
  line-height: 130px;
}
@media (max-width: 1650px) {
  header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-center .header-customize .search-with-category {
    width: 200px;
  }
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right {
  float: right;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper {
  float: left;
}
header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
  color: inherit;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 130px;
}
@media (max-width: 1199px) {
  header.header-5 .noo-header-nav-wrapper .container .noo-header-wrapper .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-5 .noo-header-nav-wrapper #primary-menu {
  position: relative;
  background-color: #000033;
}
header.header-5 .noo-header-nav-wrapper #primary-menu ul.noo-main-menu > li > a {
  font-family: 'Lato';
  font-size: 16px;
  font-weight: 700;
  line-height: 60px;
  padding: 0 15px;
}
header.header-5 .noo-header-nav-wrapper #primary-menu .sub-menu {
  color: #333;
}
header.header-5 .noo-header-nav-wrapper #primary-menu .container {
  display: table;
}
header.header-5 .noo-header-nav-wrapper #primary-menu .container > * {
  display: table-cell;
  vertical-align: middle;
}
header.header-5 .noo-header-nav-wrapper #primary-menu .container .header-customize-nav .header-customize-item {
  margin-left: 20px;
  float: right;
}
header.header-5 .noo-header-nav-wrapper #primary-menu .noo-account > a {
  line-height: 60px;
}
header.header-5 .noo-header-nav-wrapper .header-customize ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header.header-5 .noo-header-nav-wrapper .header-customize ul li {
  display: inline-block;
  vertical-align: middle;
}
header.header-5 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li {
  padding: 0 20px;
  text-transform: uppercase;
  color: #071645;
}
header.header-5 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li span {
  display: table;
  line-height: 24px;
}
header.header-5 .noo-header-nav-wrapper .header-customize ul.noo-customize-info-html li b {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
header.header-5 .noo-header-nav-wrapper.sticky-in {
  -webkit-transition: all 0s ease 0s;
  -o-transition: all 0s ease 0s;
  transition: all 0s ease 0s;
}
header.header-5 .noo-header-nav-wrapper.sticky-on {
  height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 0px;
  padding-bottom: 0px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-center .header-customize {
  line-height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-right {
  float: right;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper {
  float: left;
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-5 .noo-header-nav-wrapper.sticky-on .container .header-right .header-customize {
  line-height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-on #primary-menu ul.noo-main-menu > li > a {
  line-height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
header.header-5 .noo-header-nav-wrapper.sticky-out {
  height: 60px !important;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .noo-header-wrapper .header-left-offcanvas .header-customize {
  height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo {
  line-height: 60px;
  height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-left .header-logo img {
  max-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-center .menu-wrapper #main-menu > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-center .header-customize {
  line-height: 60px;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-right {
  float: right;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper {
  float: left;
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 60px;
}
@media (max-width: 1199px) {
  header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-right .menu-wrapper .navbar-nav > li > a {
    padding: 0 8px;
  }
}
header.header-5 .noo-header-nav-wrapper.sticky-out .container .header-right .header-customize {
  line-height: 60px;
}
header.header-5 .noo-sticky-wrapper.is-sticky .header-sticky {
  background-color: #000033;
}
header.header-5 .noo-sticky-wrapper.is-sticky .noo-header-wrapper {
  display: none;
}
@media screen and (min-width: 992px) {
  header.noo-mobile-header {
    display: none!important;
  }
}
@media screen and (max-width: 991px) {
  body {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    left: 0;
  }
  .mobile-top-bar-hide,
  header.noo-main-header {
    display: none!important;
  }
  body.menu-mobile-in {
    left: 280px;
    overflow: hidden;
  }
  .container.noo-mobile-header-wrapper {
    position: relative;
  }
  .header-mobile-before {
    text-align: center;
  }
  .header-mobile-before img {
    padding-top: 13px;
    padding-bottom: 13px;
    -ms-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .header-logo-mobile {
    vertical-align: middle;
    text-align: center;
  }
  .header-logo-mobile img {
    max-height: 60px;
    padding-top: 13px;
    padding-bottom: 13px;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .toggle-icon-wrapper .toggle-icon {
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 30px;
    cursor: pointer;
  }
  .toggle-icon-wrapper .toggle-icon > span {
    background: none repeat scroll 0 0 #000;
    bottom: 0;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
  }
  .toggle-icon-wrapper .toggle-icon:before,
  .toggle-icon-wrapper .toggle-icon:after {
    background: none repeat scroll 0 0 #000;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 80%;
    bottom: 5px;
  }
  .toggle-icon-wrapper .toggle-icon:before {
    top: 5px;
    bottom: auto;
  }
  .toggle-icon-wrapper .toggle-icon:hover > span,
  .toggle-icon-wrapper .toggle-icon:hover:before,
  .toggle-icon-wrapper .toggle-icon:hover:after {
    background-color: #fcac2f;
  }
  header.noo-mobile-header {
    background: #fff;
  }
  header.noo-mobile-header .header-left,
  header.noo-mobile-header .toggle-icon-wrapper.toggle-desktop,
  header.noo-mobile-header .header-customize {
    display: none;
  }
  header.noo-mobile-header .noo-header-container-wrapper {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #fff;
    z-index: 997;
    top: 0;
    -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  }
  header.noo-mobile-header .noo-mobile-header-wrapper {
    background-color: #fff;
  }
  header.noo-mobile-header .noo-mobile-header-inner {
    position: relative;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize {
    line-height: 60px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    color: #000;
    display: table;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > * {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *:last-child {
    padding: 0;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property {
    margin: 0;
    padding: 0;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property > * {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property > *:last-child {
    margin: 0;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property li {
    list-style: none;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property li.meta-property-action-item a:hover i {
    background: transparent;
    color: #fcac2f;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property li.meta-property-action-item a i {
    width: 32px;
    height: 32px;
    color: #fff;
    display: block;
    line-height: 30px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 100%;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #fcac2f;
    border: 1px solid #fcac2f;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property li.meta-property-action-item .list-label {
    display: none;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property .noo-account > a {
    font-size: 0;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property .noo-account > a img {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize-item {
    font-size: 14px;
    vertical-align: middle;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize-item + .header-customize-item {
    margin-left: 10px;
  }
  header.noo-mobile-header .noo-mobile-header-inner .toggle-icon-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  header.noo-mobile-header .noo-mobile-header-inner .icon-search-menu {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    padding: 0;
    font-size: 24px;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  header.noo-mobile-header .noo-mobile-header-inner .icon-search-menu:hover {
    color: #fcac2f;
  }
  header.noo-mobile-header .shopping-cart-wrapper .widget_shopping_cart_content:before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
  }
  header.noo-mobile-header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon {
    display: inline-block;
    vertical-align: middle;
    top: 0;
    height: 45px;
    line-height: 45px;
  }
  header.noo-mobile-header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > i.wicon {
    display: inline-block;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    padding: 0;
    font-size: 24px;
    color: #333;
  }
  header.noo-mobile-header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > i.wicon + span {
    position: absolute;
    top: 5px;
    right: 0px;
    color: #fff;
    background-color: #fcac2f;
    border-radius: 100%;
    padding: 0;
    width: 17px;
    height: 17px;
    line-height: 17px;
  }
  .noo-mobile-header-nav {
    background: #eee;
    display: none;
    margin-bottom: 15px;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-ancestor > a,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-parent > a,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-item > a,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.menu-current > a,
  .noo-mobile-header-nav .noo-nav-mobile-menu li > a:hover,
  .noo-mobile-header-nav .noo-nav-mobile-menu li:hover > a,
  .noo-mobile-header-nav .noo-nav-mobile-menu li ul.sub-menu li:hover > a {
    color: #fcac2f;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-ancestor > a > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-parent > a > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.current-menu-item > a > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li.menu-current > a > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li > a:hover > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li:hover > a > b.caret:before,
  .noo-mobile-header-nav .noo-nav-mobile-menu li ul.sub-menu li:hover > a > b.caret:before {
    color: #fcac2f;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul.sub-menu {
    background-color: #ffffff;
    position: relative;
    padding-left: 0;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul.sub-menu > li.menu-item {
    padding-left: 20px;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul.sub-menu > li.menu-item > a {
    font-size: 11px;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul.sub-menu > li.menu-item.sub-menu-open > ul.sub-menu:before {
    border-color: transparent transparent #ffffff;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul ul.sub-menu {
    background-color: #ffffff;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul ul.sub-menu > li.menu-item.sub-menu-open > ul.sub-menu:before {
    border-color: transparent transparent #ffffff;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul ul ul.sub-menu {
    background-color: #ffffff;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul ul ul.sub-menu > li.menu-item.sub-menu-open > ul.sub-menu:before {
    border-color: transparent transparent #ffffff;
  }
  .noo-mobile-header-nav .noo-nav-mobile-menu ul ul ul ul.sub-menu {
    background-color: #ffffff;
  }
  .noo-mobile-header-nav form.noo-search-form-mobile-menu {
    background-color: #222;
    padding: 15px;
    position: relative;
  }
  .noo-mobile-header-nav form.noo-search-form-mobile-menu input {
    background-color: #333;
    border: none;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    height: auto;
    padding: 12px;
    color: #fff;
  }
  .noo-mobile-header-nav form.noo-search-form-mobile-menu button {
    border: none;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 20px;
    line-height: 1;
    bottom: 0;
    margin: auto;
    font-size: 14px;
    color: #fff;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item {
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > a {
    padding: 15px;
    display: inline-block;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > a:hover {
    color: #fcac2f;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > b.menu-caret {
    float: right;
    right: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > b.menu-caret:before {
    content: "\f065";
    display: inline-block;
    font-family: FontAwesome;
    text-align: center;
    line-height: 45px;
    width: 45px;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > b.menu-caret:hover {
    cursor: pointer;
    color: #fcac2f;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item > b.menu-caret.active:before {
    content: "\f066";
    display: inline-block;
    font-family: FontAwesome;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item:not(.sub-menu-open):hover {
    background-color: #fbfbfb;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item.sub-menu-open {
    border-bottom-width: 0px;
  }
  .noo-mobile-header-nav ul.noo-nav-mobile-menu li.menu-item.sub-menu-open > ul.sub-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: 15px;
    z-index: 1;
    border-style: solid;
    border-width: 0 6px 6px 6px;
    border-color: transparent transparent #ffffff;
  }
  form.noo-search-form-mobile-menu {
    display: none;
  }
  .noo-mobile-header-nav.menu-drop-fly {
    display: block;
    position: fixed;
    margin: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 280px;
    left: -280px;
    border-right: solid 2px #fcac2f;
    z-index: 9999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .noo-mobile-header-nav.menu-drop-fly.in {
    left: 0;
  }
  .noo-mobile-header-nav.menu-drop-fly form.noo-search-form-mobile-menu {
    display: block;
  }
  .noo-mobile-header-nav.menu-drop-fly ul.noo-nav-mobile-menu {
    padding: 0;
  }
  .noo-mobile-header-nav.menu-drop-dropdown form.noo-search-form-mobile-menu {
    display: none;
  }
  .noo-mobile-header-nav.menu-drop-dropdown ul.noo-nav-mobile-menu {
    padding: 15px;
  }
  header.header-mobile-1 .noo-mobile-header-inner .toggle-icon-wrapper {
    top: 50%;
    -webkit-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    transform: translate(0, -45%);
  }
  header.header-mobile-2 {
    display: block;
  }
  header.header-mobile-2 .noo-mobile-header-wrapper {
    background-color: #f2f2f2;
  }
  header.header-mobile-2 .noo-mobile-header-inner {
    position: relative;
    padding-top: 10px;
    padding-bottom: 15px;
  }
  header.header-mobile-2 .noo-mobile-header-inner .header-customize {
    color: #666666;
    right: 0;
  }
  header.header-mobile-2 .noo-mobile-header-inner .icon-search-menu,
  header.header-mobile-2 .noo-mobile-header-inner .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > i.wicon {
    color: #000;
  }
  header.header-mobile-2 .noo-mobile-header-inner .icon-search-menu:before,
  header.header-mobile-2 .noo-mobile-header-inner .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > i.wicon:before {
    line-height: 28px;
  }
  header.header-mobile-2 .noo-mobile-header-inner .toggle-icon-wrapper {
    position: static;
  }
  header.header-mobile-3 .header-logo-mobile {
    text-align: right;
  }
  header.header-mobile-3 .noo-mobile-header-inner .header-customize {
    left: 50px;
    right: auto;
  }
  header.header-mobile-3 .noo-mobile-header-inner .header-customize .noo-account ul {
    right: inherit;
  }
  header.header-mobile-3 .shopping-cart-wrapper {
    position: static;
  }
  header.header-mobile-3 .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    left: -45px;
    right: auto;
  }
  header.header-mobile-3 .noo-mobile-header-inner .toggle-icon-wrapper {
    top: 50%;
    -webkit-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    transform: translate(0, -45%);
  }
  header.header-mobile-4 .header-logo-mobile {
    text-align: left;
  }
  header.header-mobile-4 .noo-mobile-header-inner .toggle-icon-wrapper {
    right: 0px;
    left: auto;
    top: 50%;
    -webkit-transform: translate(0, -45%);
    -ms-transform: translate(0, -45%);
    transform: translate(0, -45%);
  }
  header.header-mobile-4 .noo-mobile-header-wrapper .header-customize {
    right: 50px;
    left: auto;
  }
  .noo-sticky-wrapper.is-sticky > .noo-header-container-wrapper {
    z-index: 997;
    left: 0;
    right: 0;
  }
  .noo-sticky-wrapper:not(.is-sticky) {
    height: auto!important;
    position: relative!important;
  }
  body.menu-mobile-in .noo-sticky-wrapper.is-sticky > .noo-header-container-wrapper.menu-drop-fly {
    left: 280px;
    right: -280px;
  }
}
@media screen and (max-width: 480px) {
  .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    min-width: 280px;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property a.noo-login-button {
    color: transparent;
  }
  header.noo-mobile-header .noo-mobile-header-inner .header-customize > *.noo-meta-property a.noo-login-button i {
    color: #071645;
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 320px) {
  .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    min-width: 254px;
  }
}
nav.noo-canvas-menu-wrapper {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 330px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
nav.noo-canvas-menu-wrapper.in {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #333333;
  color: #fff;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside {
  padding: 0;
  border: none;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside:before {
  top: 2px;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside h4 {
  padding-left: 10px;
  color: #fff;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside h4.widget-title {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside h4.widget-title span {
  padding: 0;
  color: #fcac2f;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside h4.widget-title:before {
  display: none;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside ul li.menu-item {
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  font-weight: bold;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside ul li.menu-item a {
  padding: 8px 4px;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside ul li.menu-item a:hover {
  padding-left: 15px;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside ul.social-profile.social-icon-bordered li a:hover i {
  color: #fcac2f;
}
nav.noo-canvas-menu-wrapper .noo-canvas-menu-inner aside .about-description {
  padding: 15px 0;
}
nav.noo-canvas-menu-wrapper.dark {
  background-color: #333333;
  color: #fff;
}
nav.noo-canvas-menu-wrapper.dark .widget_archive > ul,
nav.noo-canvas-menu-wrapper.dark .widget_categories > ul,
nav.noo-canvas-menu-wrapper.dark .widget_pages > ul,
nav.noo-canvas-menu-wrapper.dark .widget_nav_menu > div > ul,
nav.noo-canvas-menu-wrapper.dark .woocommerce .widget_product_categories > ul,
nav.noo-canvas-menu-wrapper.dark .widget_layered_nav > ul {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
nav.noo-canvas-menu-wrapper.dark li + li,
nav.noo-canvas-menu-wrapper.dark .widget_posts_item + .widget_posts_item {
  border-top-color: rgba(255, 255, 255, 0.2);
}
nav.noo-canvas-menu-wrapper.dark .widget_categories ul ul,
nav.noo-canvas-menu-wrapper.dark .widget_pages ul ul,
nav.noo-canvas-menu-wrapper.dark .widget_nav_menu > div ul ul,
nav.noo-canvas-menu-wrapper.dark .widget_product_categories ul ul {
  border-top-color: rgba(255, 255, 255, 0.2);
}
body.admin-bar nav.noo-canvas-menu-wrapper {
  top: 32px;
}
.canvas-menu-toggle-wrapper i.micon {
  vertical-align: middle;
}
/* Style for Mega Menu */
/***** TABLE OF CONTENTS *****
*** 1. GENERAL
*** 2. MEGA MENU STYLE COLUMN
*** 3. MEGA MENU STYLE DROPDOWN
*** 4. MEGA MENU STYLE TAB
*/
/* RESET MENU STYLE */
.navbar-nav,
.navbar-nav a,
.navbar-nav ul,
.navbar-nav li,
.navbar-nav div,
.navbar-nav form,
.navbar-nav input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
.navbar-nav a {
  text-decoration: none;
}
.navbar-nav {
  display: inline-block;
  cursor: default;
}
.navbar-nav li {
  list-style: none;
}
.navbar-nav > li > a {
  position: relative;
  display: block;
  color: inherit;
  padding: 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-nav > li > a span.noo_sub_label {
  font-size: 11px;
}
/* Change ' +' in order to change the Dropdown symbol */
.navbar-nav li > a:after {
  font-family: "FontAwesome";
  content: ' \f107';
  padding-left: 5px;
  position: absolute;
  right: 15px;
}
.navbar-nav li > a:only-child:after {
  content: '';
}
.navbar-nav > li > a:after {
  position: relative;
  right: auto;
}
span.noo_sub_label {
  font-size: 10px;
  font-weight: normal;
  color: #eeeeee;
  letter-spacing: 0;
  line-height: 1;
  display: inline-block;
  padding: 1px 2px;
  vertical-align: baseline;
  margin-left: 4px;
  border-radius: 2px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  top: -1px;
}
/* 1. MEGA MENU STYLE COLUMN */
.navbar-nav > li.menu_style_column > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  display: none;
  width: 100%;
  top: 98%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: #fff;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.navbar-nav > li.menu_style_column:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_column.mega-fullwidth {
  position: inherit;
}
.navbar-nav > li.menu_style_column.mega-fullwidth > ul {
  left: 0;
  width: 100% !important;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-2 > ul > li {
  float: left;
  width: 50%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-3 > ul > li {
  float: left;
  width: 33.3333333%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-4 > ul > li {
  float: left;
  width: 25%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-5 > ul > li {
  float: left;
  width: 20%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-6 > ul > li {
  float: left;
  width: 16.6666666%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth {
  position: inherit;
}
.navbar-nav > li.menu_style_column.mega-fullwidth > ul {
  left: 0;
  width: 100% !important;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-2 > ul > li {
  float: left;
  width: 50%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-3 > ul > li {
  float: left;
  width: 33.3333333%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-4 > ul > li {
  float: left;
  width: 25%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-5 > ul > li {
  float: left;
  width: 20%;
}
.navbar-nav > li.menu_style_column.mega-fullwidth.mega-col-columns-6 > ul > li {
  float: left;
  width: 16.6666666%;
}
.navbar-nav > li.menu_style_column {
  position: relative;
}
.navbar-nav > li.menu_style_column > ul {
  left: 0;
  width: auto;
}
.navbar-nav > li.menu_style_column > ul > li {
  width: 250px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-2 > ul {
  width: 500px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-2 > ul > li {
  float: left;
}
.navbar-nav > li.menu_style_column.mega-col-columns-3 > ul {
  width: 750px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-3 > ul > li {
  float: left;
}
.navbar-nav > li.menu_style_column.mega-col-columns-4 > ul {
  width: 1000px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-4 > ul > li {
  float: left;
}
.navbar-nav > li.menu_style_column.mega-col-columns-5 > ul {
  width: 1250px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-5 > ul > li {
  float: left;
}
.navbar-nav > li.menu_style_column.mega-col-columns-6 > ul {
  width: 1500px;
}
.navbar-nav > li.menu_style_column.mega-col-columns-6 > ul > li {
  float: left;
}
.noo-main-menu .navbar-nav > li {
  position: relative;
}
/* 2. MEGA MENU STYLE DROPDOWN */
.navbar-nav > li.menu_style_dropdown > a > i {
  line-height: 20px;
}
.navbar-nav > li.menu_style_dropdown > a > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > a > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > a > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > a > span {
  font-size: 9px;
  line-height: 14px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul {
  position: absolute;
  display: none;
  top: 98%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  z-index: 1;
}
.navbar-nav > li.menu_style_dropdown > ul > li {
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li a {
  padding-left: 20px !important;
}
.navbar-nav > li.menu_style_dropdown > ul > li a > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li a > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li a > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li a > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li a > span {
  font-size: 9px;
  line-height: 12px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li {
  text-align: left;
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > span {
  font-size: 10px;
  line-height: 18px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  z-index: 1;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li {
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > span {
  font-size: 10px;
  line-height: 18px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  z-index: 1;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li {
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > span {
  font-size: 10px;
  line-height: 18px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li {
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > span {
  font-size: 10px;
  line-height: 18px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  z-index: 1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li {
  min-width: 250px;
  float: none;
  display: list-item;
  position: relative;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li:last-child {
  border: none;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > i {
  line-height: 25px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > i.left {
  padding-right: 10px;
  float: left;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > i.center {
  padding-left: 10px;
  padding-right: 10px;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > i.right {
  padding-left: 10px;
  padding-right: 10px;
  float: right;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > span {
  font-size: 10px;
  line-height: 18px;
  position: relative;
  top: -2px;
  margin-left: 5px;
  color: #fff;
  padding: 0 5px;
  display: inline-block;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul {
  position: absolute;
  top: 0;
  left: 90%;
  display: none;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  overflow: hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  z-index: 1;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_dropdown > ul > li > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
.navbar-nav > li.menu_style_dropdown > ul > li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
/* Display Dropdowns on Hover */
.navbar-nav > li.menu_style_dropdown:hover > ul {
  opacity: 1;
  display: block;
  visibility: visible;
  overflow: visible;
}
/* 3. MEGA MENU STYLE TAB */
.navbar-nav > li.menu_style_tab > ul {
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  text-align: left;
  position: absolute;
  display: none;
  width: 100%;
  top: 98%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.navbar-nav > li.menu_style_tab > ul:after {
  content: '';
  position: absolute;
  left: 25%;
  width: 1px;
  top: 0;
  bottom: 0;
  background-color: #666666;
}
.navbar-nav > li.menu_style_tab > ul > li {
  display: block;
  width: 25%;
  position: static;
  clear: none;
  border-bottom: 1px solid #666666;
}
.navbar-nav > li.menu_style_tab > ul > li:hover > a:before,
.navbar-nav > li.menu_style_tab > ul > li.active > a:before {
  height: 100%;
}
.navbar-nav > li.menu_style_tab > ul > li > a {
  padding: 15px 20px;
  display: block;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
}
.navbar-nav > li.menu_style_tab > ul > li > a:after {
  content: '';
}
.navbar-nav > li.menu_style_tab > ul > li > a:before {
  content: '';
  position: absolute;
  height: 0;
  width: 2px;
  top: 0;
  left: 0;
  background-color: #fcac2f;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.navbar-nav > li.menu_style_tab > ul > li.active > a {
  color: #fcac2f;
}
.navbar-nav > li.menu_style_tab > ul > li ul.social-profile > li a i {
  padding-right: 10px;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul {
  width: 100%;
  left: 0;
  padding: 0;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul li {
  width: 25%;
  display: inline-block;
  padding-top: 20px;
  padding: 8px;
  padding-bottom: 4%;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul li:last-child {
  padding: 8px !important;
  padding-bottom: 6% !important;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul li .posts-thumbnail-content .posts-thumbnail-meta .author,
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul li .posts-thumbnail-content .posts-thumbnail-meta time,
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area .widget-post-thumbnail ul li .posts-thumbnail-content .posts-thumbnail-meta span {
  color: #333;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area,
.navbar-nav > li.menu_style_tab > ul > li ul {
  padding: 20px 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: auto;
  height: auto;
  left: 25%;
  top: 100%;
  right: 0;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area.columns-1 section,
.navbar-nav > li.menu_style_tab > ul > li ul.columns-1 section {
  width: 100%;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area.columns-2 section,
.navbar-nav > li.menu_style_tab > ul > li ul.columns-2 section {
  width: 50%;
  float: left;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area.columns-3 section,
.navbar-nav > li.menu_style_tab > ul > li ul.columns-3 section {
  width: 33.3333%;
  float: left;
}
.navbar-nav > li.menu_style_tab > ul > li .noo_megamenu_widget_area.columns-4 section,
.navbar-nav > li.menu_style_tab > ul > li ul.columns-4 section {
  width: 25%;
  float: left;
}
.navbar-nav > li.menu_style_tab > ul > li.active .noo_megamenu_widget_area,
.navbar-nav > li.menu_style_tab > ul > li.active ul {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.navbar-nav > li.menu_style_tab:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
/* NOO MOBILE MENU */
.noo-nav-mobile-menu li {
  list-style-type: none;
}
.noo-nav-mobile-menu li > ul.sub-menu {
  background-color: #444;
  position: relative;
  list-style: none;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  display: none;
  background: transparent;
}
.noo_widget_area > .noo_megamenu_widget_area section {
  position: relative;
}
.noo_widget_area > .noo_megamenu_widget_area section:hover .widget-title-wrapper h3 {
  color: #fcac2f;
}
.noo_widget_area > .noo_megamenu_widget_area section .widget-title-wrapper {
  margin: 0;
}
.noo_widget_area > .noo_megamenu_widget_area section .widget-title-wrapper h3 {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.noo_widget_area > .noo_megamenu_widget_area section .widget-title-wrapper h3:before {
  content: '';
  background-color: #fcac2f;
  position: absolute;
  bottom: 0;
  left: 0px;
  height: 2px;
  width: 46px;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget {
  width: 100%;
  left: 0;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li {
  color: #333;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li del {
  color: rgba(7, 22, 69, 0.5);
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li ins {
  padding-left: 10px;
  color: #071645;
  text-decoration: none;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li:last-child {
  border: none;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li:hover {
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li a img {
  width: 33.33%;
  float: left;
  margin: 0;
  padding-right: 10px;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li a:after {
  content: '';
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li .star-rating {
  margin: 10px 0;
  text-align: left;
}
.noo_widget_area > .noo_megamenu_widget_area section .product_list_widget > li .star-rating:before {
  left: 0;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.noo_megamenu_widget_area ul.instagram-pics {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.noo_megamenu_widget_area ul.instagram-pics li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.noo_megamenu_widget_area ul.instagram-pics a {
  display: block;
  position: relative;
  overflow: hidden;
}
.noo_megamenu_widget_area ul.instagram-pics a:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.noo_megamenu_widget_area ul.instagram-pics a:hover:before {
  opacity: 1;
}
.noo_megamenu_widget_area .instagram-col-2 ul.instagram-pics li {
  width: 50%;
}
.noo_megamenu_widget_area .instagram-col-3 ul.instagram-pics li {
  width: 33.33333333%;
}
.noo_megamenu_widget_area .instagram-col-4 ul.instagram-pics li {
  width: 25%;
}
.noo_megamenu_widget_area .instagram-col-6 ul.instagram-pics li {
  width: 16.66666667%;
}
.noo_megamenu_widget_area .instagram-col-8 ul.instagram-pics li {
  width: 12.5%;
}
.noo_megamenu_widget_area .padding-2 ul.instagram-pics {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
  padding: 15px 15px 50px 0;
}
.noo_megamenu_widget_area .padding-2 ul.instagram-pics li {
  padding: 4px;
}
.noo_megamenu_widget_area .padding-3 ul.instagram-pics {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
  padding: 15px 15px 50px 0;
}
.noo_megamenu_widget_area .padding-3 ul.instagram-pics li {
  padding: 3px;
}
.noo_megamenu_widget_area .padding-4 ul.instagram-pics {
  margin-left: -4px;
  margin-right: -4px;
  margin-top: -4px;
  padding: 15px 15px 50px 0;
}
.noo_megamenu_widget_area .padding-4 ul.instagram-pics li {
  padding: 4px;
}
.noo_megamenu_widget_area .title-center .widget-title {
  text-align: center;
}
.noo_megamenu_widget_area ul.instagram-pics + p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.noo_megamenu_widget_area .widget-text-center {
  text-align: center;
}
.menu-wrapper .navbar-nav > li:first-child > a {
  padding-left: 0;
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu {
  text-align: left;
  font-size: 15px;
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu li {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #fcac2f;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu li:hover {
  padding-left: 5px;
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu li:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.menu-wrapper .navbar-nav li.menu_style_dropdown .sub-menu li a {
  position: relative;
  display: block;
  padding: 10px 20px;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu {
  text-align: left;
  padding: 40px 0px;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li {
  border-left: 2px solid #666666;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li:first-child {
  border: none;
  padding-left: 2px;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li > a {
  position: relative;
  display: block;
  padding: 0 20px 15px 20px !important;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li > a:hover {
  color: #fcac2f;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li > a:after {
  content: '';
  background-color: #fcac2f;
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 2px;
  width: 46px;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li ul li:before {
  width: 2px;
  left: -2px;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li .noo_megamenu_widget_area > .widget-social-profile > span {
  padding: 10px 20px;
  display: block;
}
.menu-wrapper .navbar-nav li.menu_style_column > .sub-menu > li .noo_megamenu_widget_area > .widget-social-profile ul li i {
  padding-right: 10px;
}
/* Menu Tagcloud */
.noo_widget_area .tagcloud {
  font-size: 0;
  margin-top: 20px;
}
.noo_widget_area .tagcloud a {
  color: #071645 !important;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  padding: 7px 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  line-height: 1;
  font-size: 14px;
  border: 1px solid #666666;
  font-weight: 500;
}
.noo_widget_area .tagcloud a:last-child {
  margin-right: 0;
}
.noo_widget_area .tagcloud a:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: #fcac2f !important;
  border-color: #fcac2f;
}
.noo-box-login.noo-popup-main {
  display: none;
  background: #fff;
  min-width: 376px;
  margin: 50px auto;
  position: relative;
  padding: 50px 35px;
  border-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .noo-box-login.noo-popup-main {
    padding: 60px 30px;
    min-width: 280px;
    min-height: 500px;
    max-width: 320px;
  }
}
.noo-box-login.noo-popup-main .login-demo {
  width: 100%;
  height: 45px;
  color: #fff;
  display: block;
  font-size: 12px;
  cursor: pointer;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  background-color: #fcac2f;
}
.noo-box-login.noo-popup-main .login-demo i {
  font-size: 16px;
  margin-right: 10px;
}
.noo-box-login .title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #071645;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .noo-box-login .title {
    font-size: 24px;
  }
}
.noo-box-login span {
  font-size: 18px;
}
@media (max-width: 480px) {
  .noo-box-login span {
    font-size: 14px;
  }
}
.noo-box-login label {
  display: none;
}
.noo-box-login .notice {
  display: none;
}
.noo-box-login .noo-login-member-wrap,
.noo-box-login .noo-register-member-wrap {
  margin-bottom: 15px;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left,
.noo-box-login .noo-register-member-wrap .noo-register-member-left {
  margin-bottom: 30px;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap {
  margin-bottom: 20px;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  border: 1px solid #dcdcdc;
  color: #333;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select::-moz-placeholder {
  color: #dcdcdc;
  opacity: 1;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:-ms-input-placeholder {
  color: #dcdcdc;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select::-webkit-input-placeholder {
  color: #dcdcdc;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:hover,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:hover,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:hover,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:hover,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:focus,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:focus,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:focus,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:focus,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:active,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:active,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:active,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:active {
  color: #fcac2f;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:hover::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:hover::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:hover::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:hover::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:focus::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:focus::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:focus::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:focus::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:active::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:active::-moz-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:active::-moz-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:active::-moz-placeholder {
  color: #fcac2f;
  opacity: 1;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:hover:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:hover:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:hover:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:hover:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:focus:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:focus:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:focus:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:focus:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:active:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:active:-ms-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:active:-ms-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:active:-ms-input-placeholder {
  color: #fcac2f;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:hover::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:hover::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:hover::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:hover::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:focus::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:focus::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:focus::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:focus::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap input:active::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap input:active::-webkit-input-placeholder,
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap select:active::-webkit-input-placeholder,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap select:active::-webkit-input-placeholder {
  color: #fcac2f;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap.validate-error input,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap.validate-error input {
  border: 1px solid red;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap.validate-error .notice,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap.validate-error .notice {
  color: red;
  display: block;
  margin-top: 10px;
}
.noo-box-login .noo-login-member-wrap .noo-register-member-left .noo-item-wrap.validate-error .notice span,
.noo-box-login .noo-register-member-wrap .noo-register-member-left .noo-item-wrap.validate-error .notice span {
  font-size: 14px;
}
.noo-box-login .noo-login-action button {
  padding: 0;
  width: 100%;
  border: none;
  height: 45px;
  color: #fff;
  line-height: 45px;
  position: relative;
  border-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #fcac2f;
}
.noo-box-login .noo-login-action button i {
  right: 3px;
  left: auto !important;
  top: 0;
  line-height: 45px;
}
.noo-box-login .noo-login-action button:hover {
  background-color: #fdca7a;
}
.noo-box-login .noo-login-member-container,
.noo-box-login .noo-register-member-container {
  margin-top: 25px;
}
.noo-box-login .noo-login-member-container .open-form-toggle,
.noo-box-login .noo-register-member-container .open-form-toggle {
  right: -95px;
  width: 152px;
  white-space: nowrap;
}
.noo-box-login .noo-register-member-container {
  display: none;
}
.noo-box-login .open-form-toggle {
  top: 70px;
  right: -81px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 16px;
  font-weight: 700;
  padding: 5px 20px;
  position: absolute;
  color: #071645;
  border-radius: 5px 5px 0 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #f4f4f4;
}
.noo-box-member {
  background-color: #fff;
}
.noo-box-member .noo-box-login,
.noo-box-member .noo-box-register {
  padding: 60px;
}
.noo-box-member .noo-box-login {
  position: relative;
}
.noo-box-member .noo-box-login:after {
  content: '\f090';
  position: absolute;
  bottom: -60%;
  right: 20px;
  font-family: FontAwesome;
  color: #d9d9d9;
  font-size: 298px;
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  -webkit-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
  filter: alpha(opacity=20);
}
.noo-box-member .noo-box-register:before {
  left: 0;
  top: 20%;
  width: 1px;
  z-index: 2;
  height: 60%;
  content: '';
  position: absolute;
  background: #dcdcdc;
}
.noo-box-member form.rp-form-register > .rp-item-wrap:first-child {
  margin-top: 0;
}
.noo-box-member form .rp-item-wrap {
  margin-top: 35px;
  margin-bottom: 0;
}
.noo-box-member .noo-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #071645;
  text-transform: uppercase;
}
.noo-box-member #login-demo {
  width: 100%;
  height: 45px;
  color: #fff;
  display: block;
  font-size: 12px;
  cursor: pointer;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  background-color: #fcac2f;
}
.noo-box-member #login-demo i {
  font-size: 16px;
  margin-right: 10px;
}
.noo-box-member .rp-item-wrap .rp-item-checkbox label {
  display: inline-block;
}
.noo-box-member .rp-item-wrap label {
  display: none;
}
.noo-box-member .rp-item-wrap input,
.noo-box-member .rp-item-wrap select {
  color: #dcdcdc;
  font-style: italic;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  border: 1px solid #dcdcdc;
}
.noo-box-member .rp-item-wrap input:hover,
.noo-box-member .rp-item-wrap select:hover,
.noo-box-member .rp-item-wrap input:focus,
.noo-box-member .rp-item-wrap select:focus,
.noo-box-member .rp-item-wrap input:active,
.noo-box-member .rp-item-wrap select:active {
  color: #fcac2f;
}
.noo-box-member .rp-item-wrap input:hover::-moz-placeholder,
.noo-box-member .rp-item-wrap select:hover::-moz-placeholder,
.noo-box-member .rp-item-wrap input:focus::-moz-placeholder,
.noo-box-member .rp-item-wrap select:focus::-moz-placeholder,
.noo-box-member .rp-item-wrap input:active::-moz-placeholder,
.noo-box-member .rp-item-wrap select:active::-moz-placeholder {
  color: #fcac2f;
  opacity: 1;
}
.noo-box-member .rp-item-wrap input:hover:-ms-input-placeholder,
.noo-box-member .rp-item-wrap select:hover:-ms-input-placeholder,
.noo-box-member .rp-item-wrap input:focus:-ms-input-placeholder,
.noo-box-member .rp-item-wrap select:focus:-ms-input-placeholder,
.noo-box-member .rp-item-wrap input:active:-ms-input-placeholder,
.noo-box-member .rp-item-wrap select:active:-ms-input-placeholder {
  color: #fcac2f;
}
.noo-box-member .rp-item-wrap input:hover::-webkit-input-placeholder,
.noo-box-member .rp-item-wrap select:hover::-webkit-input-placeholder,
.noo-box-member .rp-item-wrap input:focus::-webkit-input-placeholder,
.noo-box-member .rp-item-wrap select:focus::-webkit-input-placeholder,
.noo-box-member .rp-item-wrap input:active::-webkit-input-placeholder,
.noo-box-member .rp-item-wrap select:active::-webkit-input-placeholder {
  color: #fcac2f;
}
.noo-box-member .rp-item-wrap input::-moz-placeholder {
  color: #dcdcdc;
  opacity: 1;
}
.noo-box-member .rp-item-wrap input:-ms-input-placeholder {
  color: #dcdcdc;
}
.noo-box-member .rp-item-wrap input::-webkit-input-placeholder {
  color: #dcdcdc;
}
.noo-box-member .rp-login-member-action .rp-button,
.noo-box-member .rp-register-member-action .rp-button {
  height: 45px;
  padding: 0 45px;
  line-height: 45px;
}
.noo-box-member .rp-login-member-action {
  display: table;
}
.noo-box-member .rp-login-member-action > * {
  display: table-cell;
  margin-right: 30px;
}
.noo-box-member a {
  color: #071645;
}
.noo-box-member a:hover {
  color: #fcac2f;
}
.noo-box-member .rp-item-checkbox {
  color: #c4c4c4;
}
@media screen and (max-width: 991px) {
  .noo-box-member .noo-box-login,
  .noo-box-member .noo-box-register {
    padding: 30px;
  }
  .noo-box-member .noo-box-register:before {
    display: none;
  }
}
.noo-account {
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.noo-account > a {
  max-width: 100px;
  overflow: hidden;
  line-height: 62px;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-transform: capitalize;
}
.noo-account > a i {
  font-size: 18px;
}
.noo-account:hover > a {
  color: #fcac2f;
}
.noo-account ul {
  right: 0;
  top: 150%;
  z-index: 9;
  opacity: 0;
  min-width: 245px;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  padding: 20px 25px;
  border-radius: 5px;
  list-style-type: none;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #fff;
  -webkit-box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0px 4px 0 rgba(0, 0, 0, 0.2);
}
.noo-account ul li {
  line-height: 40px;
  display: block;
  font-weight: normal;
}
.noo-account ul li a {
  font-size: 15px;
  color: #333;
}
.noo-account ul li a span.profile-avatar {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 5px;
}
.noo-account ul li a span.profile-avatar img {
  border-radius: 100%;
}
.noo-account ul li a .profile-text {
  text-transform: capitalize;
}
.noo-account ul li a:hover {
  color: #fcac2f;
}
.noo-account:hover ul {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
/**
 * 3.0 - Template
 * ----------------------------------------------------------------------------
 */
body {
  margin-top: -1px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}
body {
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  color: #333;
}
@media (min-width: 992px) {
  body.page main .entry-content > div > .vc_row.vc_row-has-fill > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.float-right {
  float: right;
}
@media (max-width: 991px) {
  .float-right {
    float: none;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #071645;
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px !important;
  }
}
.title_border {
  text-align: center;
  position: relative;
}
.title_border:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #999;
  height: 1px;
  width: 100%;
}
.title_border h5 {
  padding: 5px 20px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.rubino_btn button {
  border-width: 1px !important;
  padding: 13px 60px !important;
}
.container {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
#noo-wrapper {
  background-color: #fff;
}
body.boxed #noo-wrapper {
  margin: auto;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  body.float {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
}
div,
iframe,
img {
  margin: 0;
  padding: 0;
}
p {
  font-weight: 400;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
::-moz-selection {
  color: #fff;
  background-color: #fcac2f;
}
::selection {
  color: #fff;
  background-color: #fcac2f;
}
::-moz-selection {
  color: #fff;
  background-color: #fcac2f;
}
a,
a:hover,
a.active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #fcac2f;
}
a:focus,
a.active {
  color: #fcac2f;
}
input,
textarea,
button,
select {
  outline: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.mfp-bg {
  background-color: #fff;
  opacity: 0.5;
}
#noo-popup {
  -webkit-box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 40px auto;
  max-width: 95%;
  position: relative;
  text-align: left;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  color: #1a1a1a;
}
#noo-popup .popup-content {
  width: 70%;
  text-align: center;
  padding: 0 30px;
}
@media (max-width: 767px) {
  #noo-popup .popup-content {
    width: 100%;
  }
}
@media (max-width: 480px) {
  #noo-popup .popup-content {
    padding: 0 15px;
  }
}
#noo-popup .popup-title {
  padding-top: 55px;
  font-size: 36px;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  #noo-popup .popup-title {
    padding-top: 30px;
    font-size: 20px;
    font-weight: bold;
  }
}
#noo-popup .sub-title {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  #noo-popup .sub-title {
    font-size: 14px;
  }
}
#noo-popup .your-info {
  margin-top: 10px;
}
#noo-popup .popup-form .your-email input {
  height: 40px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #fcac2f;
  color: #fcac2f;
  margin-bottom: 30px;
}
#noo-popup .popup-form .your-email input .placeholder {
  color: rgba(252, 172, 47, 0.5);
}
#noo-popup .popup-form .ctf7_submit {
  position: relative;
}
#noo-popup .popup-form .ctf7_submit input {
  width: 100%;
  height: 50px;
  background-color: #fcac2f;
  border: none;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
#noo-popup .popup-form .ctf7_submit input:hover {
  background-color: #fdd494;
}
#noo-popup .popup-form .ctf7_submit .ajax-loader {
  position: absolute;
  left: 50%;
  top: -22px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#noo-popup .checkbox-label {
  color: #fcac2f;
}
#noo-popup .checkbox-label label {
  font-weight: normal;
}
@media (max-width: 480px) {
  #noo-popup .checkbox-label {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  #noo-popup {
    max-width: 90%;
  }
}
@media (max-width: 479px) {
  #noo-popup {
    height: 400px !important;
  }
}
.maintanence-page {
  position: relative;
  height: 100vh;
  text-align: center;
}
.maintanence-page .container {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.maintanence-page .maintenance-title h2 {
  margin-top: 40px;
  color: #333;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: normal;
}
@media (max-width: 479px) {
  .maintanence-page .maintenance-title h2 {
    font-size: 24px;
    margin-top: 20px;
  }
}
.maintanence-page .countdown-wrap .countdown-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.maintanence-page .countdown-wrap .countdown-content ul li {
  position: relative;
  display: inline-block;
  margin: 30px 40px;
  padding: 0 0px;
}
.maintanence-page .countdown-wrap .countdown-content ul li p {
  margin: 0;
}
.maintanence-page .countdown-wrap .countdown-content ul li p.countdown-number {
  font-size: 60px;
  font-weight: normal;
}
@media (max-width: 479px) {
  .maintanence-page .countdown-wrap .countdown-content ul li p.countdown-number {
    font-size: 48px;
  }
}
.maintanence-page .countdown-wrap .countdown-content ul li p:last-child {
  position: absolute;
  right: -50px;
  top: 70px;
  display: block;
  margin-top: 0px;
  text-align: left;
  font-size: 16px;
  width: 70px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.maintanence-page .countdown-wrap .countdown-content ul li.cd-seconds p.countdown-number:after {
  content: '';
}
@media (max-width: 479px) {
  .maintanence-page .countdown-wrap .countdown-content ul li {
    margin: 10px 20px;
  }
}
.maintanence-page .maintenance-social {
  margin-top: 30px;
}
.maintanence-page .maintenance-social .maintenance-social-profile-wrapper {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
.maintanence-page .maintenance-social .maintenance-social-profile-wrapper li {
  list-style: none;
  display: inline-block;
}
.maintanence-page .maintenance-social .maintenance-social-profile-wrapper li a {
  color: #fcac2f;
  font-size: 18px;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 33px;
  display: block;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 5px;
}
.maintanence-page .maintenance-social .maintenance-social-profile-wrapper li:hover a {
  border-color: #fcac2f;
}
.under-construction,
.coming-soon {
  text-align: center;
}
.under-construction .logo,
.coming-soon .logo {
  max-width: 380px;
  max-height: 380px;
  margin: auto;
}
.under-construction .title,
.coming-soon .title {
  line-height: 1;
}
.under-construction .title,
.coming-soon .title {
  font-size: 36px;
  margin-top: 40px;
}
.under-construction .sub-title,
.coming-soon .sub-title {
  font-size: 16px;
  margin-top: 30px;
}
.under-construction .entry-content .mc4wp-form,
.coming-soon .entry-content .mc4wp-form {
  margin-top: 50px;
}
.under-construction .entry-content .mc4wp-form label,
.coming-soon .entry-content .mc4wp-form label {
  display: none;
}
.under-construction .entry-content .mc4wp-form input,
.coming-soon .entry-content .mc4wp-form input {
  display: none;
}
.under-construction .entry-content .mc4wp-form input[type="email"],
.coming-soon .entry-content .mc4wp-form input[type="email"] {
  border: solid 2px #DDDDDD;
  background-color: #fff;
  color: #888;
  width: 370px;
  display: block;
  padding-right: 30px;
}
.under-construction .entry-content .mc4wp-form input[type="submit"],
.coming-soon .entry-content .mc4wp-form input[type="submit"] {
  display: none;
}
.under-construction .entry-content .mc4wp-form p,
.coming-soon .entry-content .mc4wp-form p {
  display: inline-block;
}
.under-construction .entry-content .mc4wp-form span.email,
.coming-soon .entry-content .mc4wp-form span.email {
  display: inline-block;
  position: relative;
}
.under-construction .entry-content .mc4wp-form span.email i,
.coming-soon .entry-content .mc4wp-form span.email i {
  position: absolute;
  right: 14px;
  top: 14px;
}
.under-construction p .sub-title {
  line-height: 1;
}
/*-------------------------------------
INPUT
---------------------------------------*/
input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
textarea,
select {
  padding: 0 15px;
  font-size: 14px;
  color: #878787;
  height: 42px;
  line-height: 1;
  background-color: #f5f5f5;
  border: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
input[type="text"] ::-webkit-input-placeholder,
input[type="search"] ::-webkit-input-placeholder,
input[type="email"] ::-webkit-input-placeholder,
input[type="url"] ::-webkit-input-placeholder,
input[type="password"] ::-webkit-input-placeholder,
input[type="tel"] ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder,
select ::-webkit-input-placeholder {
  color: #878787;
}
input[type="text"] :-moz-placeholder,
input[type="search"] :-moz-placeholder,
input[type="email"] :-moz-placeholder,
input[type="url"] :-moz-placeholder,
input[type="password"] :-moz-placeholder,
input[type="tel"] :-moz-placeholder,
textarea :-moz-placeholder,
select :-moz-placeholder {
  color: #878787;
}
input[type="text"] ::-moz-placeholder,
input[type="search"] ::-moz-placeholder,
input[type="email"] ::-moz-placeholder,
input[type="url"] ::-moz-placeholder,
input[type="password"] ::-moz-placeholder,
input[type="tel"] ::-moz-placeholder,
textarea ::-moz-placeholder,
select ::-moz-placeholder {
  color: #878787;
}
input[type="text"] :-ms-input-placeholder,
input[type="search"] :-ms-input-placeholder,
input[type="email"] :-ms-input-placeholder,
input[type="url"] :-ms-input-placeholder,
input[type="password"] :-ms-input-placeholder,
input[type="tel"] :-ms-input-placeholder,
textarea :-ms-input-placeholder,
select :-ms-input-placeholder {
  color: #878787;
}
textarea {
  height: auto;
  padding-top: 15px;
}
select {
  max-width: 100%;
}
.block-inner > * {
  margin: auto;
}
.overflow-hidden {
  overflow: hidden !important;
}
/* MODAL SEARCH
/*-------------------------*/
#noo-modal-search {
  z-index: 999999;
  overflow: auto;
}
#noo-modal-search.modal.in .modal-backdrop.in {
  height: 100%;
  position: fixed;
  background-color: #333;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#noo-modal-search.modal.in .noo-modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 9999;
}
#noo-modal-search .noo-modal-dialog {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: auto;
}
#noo-modal-search .noo-dismiss-modal {
  position: absolute;
  right: 50px;
  top: 30px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  z-index: 1040;
  cursor: pointer;
}
#noo-modal-search .noo-modal-search {
  position: relative;
  width: 100%;
  height: 100%;
}
#noo-modal-search .noo-modal-search .noo-search-result {
  position: absolute;
  width: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 40%;
}
@media (max-width: 767px) {
  #noo-modal-search .noo-modal-search .noo-search-result {
    top: 20%;
  }
}
#noo-modal-search .noo-modal-search .noo-search-wrapper {
  position: relative;
  width: 100%;
  font-size: 24px;
  color: inherit;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  display: block;
}
#noo-modal-search .noo-modal-search .noo-search-wrapper:before,
#noo-modal-search .noo-modal-search .noo-search-wrapper:after {
  content: " ";
  display: table;
}
#noo-modal-search .noo-modal-search .noo-search-wrapper:after {
  clear: both;
}
#noo-modal-search .noo-modal-search input[type="search"] {
  border: none;
  outline: none;
  display: block;
  float: left;
  width: 100%;
  padding-right: 60px;
  padding-left: 20px;
  background-color: transparent;
  font-size: 22px;
  color: #fff;
}
#noo-modal-search .noo-modal-search input[type="search"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#noo-modal-search .noo-modal-search input[type="search"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#noo-modal-search .noo-modal-search button {
  position: absolute;
  display: block;
  color: #fff;
  bottom: 5px;
  right: 0;
  line-height: 1;
  border: none;
  outline: none;
  font-size: 24px;
  background-color: transparent;
}
#noo-modal-search .ajax-search-result {
  margin: auto;
  background: rgba(77, 77, 77, 0.1);
}
#noo-modal-search .ajax-search-result > ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}
#noo-modal-search .ajax-search-result li {
  padding: 5px 20px;
  color: inherit;
  font-size: 14px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  color: #fff;
}
#noo-modal-search .ajax-search-result li:hover,
#noo-modal-search .ajax-search-result li.selected {
  background-color: rgba(127, 127, 127, 0.1);
}
#noo-modal-search .ajax-search-result li > a {
  color: #fff;
}
#noo-modal-search .ajax-search-result li + li {
  border-top: dotted 1px rgba(77, 77, 77, 0.1);
}
#noo-modal-search .ajax-search-result li span {
  color: #fff;
  float: right;
}
#noo-modal-search .ajax-search-result li.search-view-more {
  font-size: 14px;
  font-style: italic;
}
#noo-modal-search .ajax-search-result li.search-view-more a {
  text-decoration: underline;
}
#noo-modal-search i.ajax-search-icon {
  color: inherit;
}
#noo-modal-search div.search-view-more {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 20px;
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  color: #fff;
}
#noo-modal-search div.search-view-more i.wicon {
  vertical-align: middle;
}
#noo-modal-search div.search-view-more:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
/*-------------------------*/
/* NOO SEARCH STANDARD
/*-------------------------*/
#noo_search_popup_wrapper .search-popup-inner {
  margin: 1em 0;
  width: 70%;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
  -ms-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
}
#noo_search_popup_wrapper .search-popup-inner > input {
  width: 100%;
  margin-bottom: 50px;
  font-size: 30px;
  border-bottom: 2px solid #fff;
  background-color: transparent;
  padding: 25px 20px;
  color: #fff;
}
#noo_search_popup_wrapper .search-popup-inner > input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
#noo_search_popup_wrapper .search-popup-inner > input:-ms-input-placeholder {
  color: #fff;
}
#noo_search_popup_wrapper .search-popup-inner > input::-webkit-input-placeholder {
  color: #fff;
}
#noo_search_popup_wrapper .search-popup-inner > button {
  border: none;
  background-color: transparent;
  text-transform: uppercase;
  position: absolute;
  right: 0px;
  top: -15px;
}
#noo_search_popup_wrapper .search-popup-inner > button i {
  font-size: 30px;
  padding: 20px;
  color: #fff;
}
#noo_search_popup_wrapper .search-popup-inner > button i:hover {
  color: #fcac2f;
}
@media (max-width: 767px) {
  #noo_search_popup_wrapper .search-popup-inner {
    top: 20%;
  }
}
/* 404 PAGE */
.error404 section.noo-page-title-wrap {
  margin-bottom: 0;
}
.error404 .page-title-inner {
  font-size: 32px;
}
.page404 {
  padding: 5% 0;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center right 80px;
}
@media (max-width: 991px) {
  .page404 {
    background-size: cover;
    background-position: center center;
  }
}
.page404 .content-wrap {
  float: none;
}
@media (min-width: 992px) {
  .page404 .content-wrap {
    padding: 0 10% 0 13.5%;
  }
}
.page404 .content-wrap .page404-title .p-title {
  margin-top: 0;
  line-height: 1;
  font-size: 160px;
  font-weight: 800;
  color: #fcac2f;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page404 .content-wrap .page404-title .p-title {
    font-size: 45px;
  }
}
@media (max-width: 479px) {
  .page404 .content-wrap .page404-title .p-title {
    font-size: 40px;
  }
}
.page404 .content-wrap .page404-content {
  margin: 35px 0;
}
.page404 .content-wrap .page404-content .p-description {
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  font-family: 'Lato';
}
@media (max-width: 767px) {
  .page404 .content-wrap .page404-content {
    margin: 0;
  }
  .page404 .content-wrap .page404-content .p-description {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
  }
}
@media (max-width: 479px) {
  .page404 .content-wrap .page404-content .p-description {
    font-size: 20px;
  }
}
.page404 .content-wrap .return a {
  height: 45px;
  font-size: 14px;
  padding: 0 30px;
  font-weight: bold;
  line-height: 45px;
  margin: 30px 10px 0 0;
  display: inline-block;
  color: #fcac2f;
  background-color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page404 .content-wrap .return a:hover {
  background: #fcac2f;
  color: #fff;
}
@media (max-width: 400px) {
  .page404 .content-wrap .return a {
    margin: 20px 10px 0 0;
  }
}
.back-to-top {
  position: fixed;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  z-index: 2;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  color: #fff;
  background-color: rgba(252, 172, 47, 0.7);
}
.back-to-top i {
  font-size: 22px;
}
.back-to-top:focus,
.back-to-top:hover {
  color: #fff;
  text-decoration: none;
  background-color: #fcac2f;
}
.back-to-top.in {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (min-width: 768px) {
  body.float .back-to-top {
    bottom: 30px;
    right: 30px;
  }
}
.ps-container > .ps-scrollbar-y-rail,
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  width: 5px;
}
#noo-content-wrapper {
  background-color: #f7f7f7;
  position: relative;
}
#noo-content-wrapper > main[role='main'] {
  overflow: hidden;
}
#noo-site-preload {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.site-loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
.site-loading-center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.wpb_map_wraper iframe {
  display: block;
  pointer-events: none;
}
.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}
.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 480px) {
  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
/*-------------------------
Loading
---------------------------*/
.loading-wrapper {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.spinner-double-section-far {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3.125px solid #aaa;
  -webkit-animation: spinner 1.2s linear infinite;
  animation: spinner 1.2s linear infinite;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.spinner-double-section-far:before,
.spinner-double-section-far:after {
  content: '';
  position: absolute;
  top: -3.125px;
  left: -3.125px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3.125px solid transparent;
  border-top-color: tomato;
}
.spinner-double-section-far:after {
  border-top-color: transparent;
  border-bottom-color: tomato;
}
.spinner-double-section-far:before,
.spinner-double-section-far:after {
  top: -9.375px;
  left: -9.375px;
  width: 62.5px;
  height: 62.5px;
}
.modal {
  z-index: 99999;
}
.modal-content {
  border-radius: 0;
}
.modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.modal-backdrop.in {
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  display: block;
  line-height: 1;
}
#popup-product-quick-view-wrapper .popup-close {
  width: 30px;
  height: 30px;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  z-index: 2;
  top: 0;
  right: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#popup-product-quick-view-wrapper .popup-close:hover {
  color: #fff;
  background-color: #071645;
}
#popup-product-quick-view-wrapper .ylp-single-product-info .ylp-summary-product-wrap .ylp-summary-product .social-share-wrap .social-share li a {
  border-color: #fcac2f;
  color: #fcac2f;
}
#popup-product-quick-view-wrapper .ylp-single-product-info .ylp-summary-product-wrap .ylp-summary-product .social-share-wrap .social-share li a:hover {
  background-color: #fcac2f;
  color: #fff;
}
#popup-product-quick-view-wrapper .ylp-single-product-info .ylp-single-product-image-wrap .ylp-single-product-image .owl-nav div:hover {
  color: #fcac2f;
}
#popup-product-quick-view-wrapper .ylp-single-product-info .ylp-summary-product-wrap .ylp-summary-product .price {
  color: #fcac2f;
}
.text-align-right {
  text-align: right;
}
.text-align-left {
  text-align: left;
}
.entry-content .mc4wp-form input[type="submit"] {
  padding-top: 14px;
  padding-bottom: 12px;
}
.entry-content .mc4wp-form input[type="email"] {
  width: 296px;
  height: 44px;
  display: inline-block;
}
.center {
  text-align: center;
}
.noo-full-width.section .vc_row {
  position: relative;
  height: 100%;
}
.owl-noo-shortcode .owl-controls .owl-buttons div {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #666666;
  top: 50%;
  margin-top: -20px;
  opacity: 0;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  line-height: 40px;
}
.owl-noo-shortcode .owl-controls .owl-buttons div i {
  color: #000;
  font-size: 20px;
}
.owl-noo-shortcode .owl-controls .owl-buttons .owl-prev {
  left: 20px;
}
.owl-noo-shortcode .owl-controls .owl-buttons .owl-next {
  right: 20px;
}
.owl-noo-shortcode:hover .owl-controls .owl-buttons .owl-prev {
  left: -45px;
  opacity: 1;
}
.owl-noo-shortcode:hover .owl-controls .owl-buttons .owl-next {
  right: -45px;
  opacity: 1;
}
.owl-noo-shortcode .owl-controls .owl-page span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
}
@media (max-width: 800px) {
  .owl-noo-shortcode:hover .owl-controls .owl-buttons .owl-prev {
    left: 0;
  }
  .owl-noo-shortcode:hover .owl-controls .owl-buttons .owl-next {
    right: 0;
  }
}
.noo-button {
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
}
.noo-button i {
  position: absolute;
  font-size: 20px;
  line-height: 1.2;
}
.noo-button.i_left {
  padding-left: 40px !important;
}
.noo-button.i_right {
  padding-right: 40px !important;
}
.noo-button.i_left i {
  left: 15px;
  margin-right: 5px;
}
.noo-button.i_right i {
  margin-left: 5px;
  right: 15px;
}
.noo-button.style1 {
  border: 1px solid #333;
  color: #333;
  background-color: transparent;
}
.noo-button.style1:hover,
.noo-button.style1.active {
  color: #fcac2f;
}
.noo-button.style2 {
  border: 1px solid #666666;
}
.noo-button.style2:hover,
.noo-button.style2.active {
  color: #fff;
  background: #fcac2f;
}
.noo-button.style2.button-light {
  color: #fcac2f;
}
.noo-button.button-1x {
  min-width: 140px;
  padding: 4px 15px;
}
.noo-button.button-1x i {
  top: 4px;
}
.noo-button.button-2x {
  min-width: 140px;
  padding: 7px 20px;
}
.noo-button.button-2x i {
  top: 7px;
}
.noo-button.button-3x {
  min-width: 160px;
  padding: 10px 20px;
}
.noo-button.button-3x i {
  top: 10px;
}
.boxed #noo-wrapper {
  width: 90%;
  max-width: 1200px;
}
ul.pagination {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  font-size: 0;
  border-radius: 0;
}
ul.pagination:before {
  content: '';
  height: 1px;
  position: absolute;
  width: 100%;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  top: 50%;
  left: 0;
}
@media (max-width: 767px) {
  ul.pagination {
    margin-top: 0px;
  }
}
.pagination > li {
  display: inline-block;
}
.pagination > li:first-child a,
.pagination > li:first-child span {
  padding-left: 30px;
}
.pagination > li:last-child a,
.pagination > li:last-child span {
  padding-right: 30px;
}
.pagination > li:last-child {
  margin: 0;
}
.pagination > li > a,
.pagination > li > span {
  border: none;
  text-align: center;
  display: inline-block;
  padding: 0 15px;
  color: rgba(252, 172, 47, 0.5);
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 0;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus,
.pagination > li > a.active,
.pagination > li > span.active {
  color: #fcac2f;
  background-color: #fff;
}
.pagination > li > a.current,
.pagination > li > span.current {
  color: #fcac2f;
  background-color: #fff;
}
.pagination > li > a.next,
.pagination > li > span.next,
.pagination > li > a.prev,
.pagination > li > span.prev {
  text-transform: uppercase;
  border-radius: 0;
}
.cqtooltip-wrapper .title {
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 600;
}
.cqtooltip-wrapper .cq-hotspots .hotspot-item a {
  border: 2px solid #fff !important;
  height: 42px !important;
  width: 42px !important;
  padding: 4px !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  -webkit-animation: none !important;
  animation: none !important;
}
.cqtooltip-wrapper .cq-hotspots .hotspot-item a:before {
  content: '';
  position: absolute;
  border-radius: 100%;
  left: 0;
  top: 0;
  -webkit-animation: pulse-white 2s ease-out infinite !important;
  animation: pulse-white 2s ease-out infinite !important;
  width: 100%;
  height: 100%;
}
.cqtooltip-wrapper .cq-hotspots .hotspot-item a:hover {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: none !important;
  animation: none !important;
}
.cqtooltip-wrapper .cq-hotspots .hotspot-item a span {
  position: relative !important;
  height: 30px !important;
  width: 30px !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
}
.cqtooltip-wrapper .cq-hotspots .hotspot-item a span:before {
  content: "\f1fe";
  display: inline-block;
  font-size: 18px;
  font-family: "Ionicons";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  line-height: 28px;
  margin-left: 8px;
  color: #fcac2f;
}
.tooltipster-default,
.tooltipster-shadow,
.tooltipster-base {
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-top: 10px !important;
  border-radius: 0 !important;
  -webkit-box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.3) !important;
          box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.3) !important;
  font-size: 16px !important;
}
.tooltipster-default .tooltipster-content,
.tooltipster-shadow .tooltipster-content,
.tooltipster-base .tooltipster-content {
  font-size: 16px !important;
  font-family: 'Lato' !important;
}
.menu-menu-footer-container,
.menu-menu-footer-half-map-container {
  text-align: center;
  margin-bottom: -21px;
}
.menu-menu-footer-container ul,
.menu-menu-footer-half-map-container ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  position: relative;
}
.menu-menu-footer-container ul li,
.menu-menu-footer-half-map-container ul li {
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #071645;
}
.menu-menu-footer-container ul li:hover ul.sub-menu,
.menu-menu-footer-half-map-container ul li:hover ul.sub-menu {
  top: 98%;
  opacity: 1;
  visibility: visible;
}
.menu-menu-footer-container ul li ul.sub-menu,
.menu-menu-footer-half-map-container ul li ul.sub-menu {
  visibility: hidden;
  width: 100%;
  text-align: left;
  z-index: 3;
  opacity: 0;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #fff;
  -webkit-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
.menu-menu-footer-container ul li ul.sub-menu li,
.menu-menu-footer-half-map-container ul li ul.sub-menu li {
  float: left;
  width: 25%;
  display: block;
  -webkit-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  transition: all 0.55s ease;
  border-left: 1px solid transparent;
}
.menu-menu-footer-container ul li ul.sub-menu li:hover,
.menu-menu-footer-half-map-container ul li ul.sub-menu li:hover {
  border-left: 1px solid #eee;
}
.list_text {
  position: relative;
  padding-left: 30px;
}
.list_text:before {
  position: absolute;
  vertical-align: middle;
  left: 0;
  display: inline-block;
  content: '';
  height: 10px;
  width: 10px;
  top: 7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #333;
  opacity: 0.5;
}
.about-description {
  margin-top: 20px;
}
.banner-widget {
  position: relative;
  margin-bottom: 50px;
}
.banner-widget a img {
  width: 100%;
}
.banner-widget a:before,
.banner-widget a:after {
  content: '';
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.banner-widget a:before {
  top: 0px;
  left: 0px;
  right: 100%;
  bottom: 100%;
  border-top: 5px solid;
  border-left: 5px solid;
}
.banner-widget a:after {
  left: 100%;
  top: 100%;
  bottom: 0px;
  right: 0px;
  border-bottom: 5px solid;
  border-right: 5px solid;
}
.banner-widget a:hover:before {
  opacity: 0.8;
  bottom: 0px;
  right: 0px;
  border-color: #fcac2f;
}
.banner-widget a:hover:after {
  opacity: 0.8;
  top: 0px;
  left: 0px;
  border-color: #fcac2f;
}
.social-share-wrap .social-share li a {
  border: 1px solid #eee;
  color: #333333;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.social-share-wrap .social-share li a i:before {
  padding-right: 18px;
}
.social-share-wrap .social-share li a:hover {
  color: #fcac2f;
  border-color: #fcac2f;
}
.woocommerce div.product form.cart .variations label {
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  line-height: 1.8;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 600px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .modal-lg {
    max-width: 1170px !important;
    width: 1170px !important;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 900px;
  }
}
.technical {
  list-style-type: none;
  padding: 0;
}
.technical li {
  width: 50%;
  color: #fff;
  float: left;
  margin: 5px 0;
}
.noo-overflow-bg {
  position: relative;
}
.noo-overflow-bg:after {
  top: 0;
  left: 0;
  width: 100%;
  content: '';
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 51, 0.6);
}
.noo-overflow-bg * {
  z-index: 1;
  position: relative;
}
.has-sidebar.has-sidebar-left .noo-main-content {
  float: right;
}
@media (max-width: 992px) {
  .has-sidebar.has-sidebar-left .noo-main-content {
    float: none;
  }
}
.post-type-archive-rp_agent .site-content-archive-inner {
  padding: 0;
}
.post-type-archive-rp_agency .site-content-archive-inner {
  padding: 0 30px;
}
/*-------------------------------------
NOO PAGE TITLE & BREADCRUMB 
---------------------------------------*/
body.float .noo-page-title-section {
  margin: 0;
}
body.float header.noo-main-header .noo-header-nav-wrapper.nav-fullwith {
  padding: 0;
}
body.float header.noo-main-header .noo-header-nav-wrapper.nav-fullwith.sticky-on {
  padding-left: 60px;
  padding-right: 60px;
}
.space-height {
  clear: both;
  min-height: 50px;
}
.noo-page-title-section.no_searchbox {
  margin-top: 0;
  margin-bottom: 70px;
}
.noo-page-title-section .noo-page-title-wrap {
  background-color: #FFFFFF;
  height: 300px;
}
.noo-page-title-section .page-title-inner h1 {
  font-weight: bold;
  text-shadow: 0 6px 3px rgba(0, 0, 0, 0.2);
  color: #ededed;
  font-size: 32px;
  letter-spacing: 1px;
}
.noo-page-title-section .noo-breadcrumb-wrap ul.breadcrumbs {
  margin: 0;
  padding: 0;
}
.noo-page-title-section .noo-breadcrumb-wrap ul.breadcrumbs > li {
  list-style: none;
  display: inline-block;
  padding: 0 15px;
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 0 6px 3px rgba(0, 0, 0, 0.2);
  color: #ededed;
}
.noo-page-title-section .noo-breadcrumb-wrap ul.breadcrumbs > li:before {
  position: absolute;
  left: -4px;
  content: '\f101';
  font-family: "fontAwesome";
}
.noo-page-title-section .noo-breadcrumb-wrap ul.breadcrumbs > li:first-child:before {
  display: none;
  font-family: fontAwesome;
}
.noo-page-title-section.page-title-style-1 .content-page-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
}
.noo-page-title-section.page-title-style-1 .content-page-title ul > li:first-child {
  padding-left: 0;
}
.noo-page-title-section.page-title-style-2 .content-page-title {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
}
.noo-page-title-section.page-title-style-2 .content-page-title h1 {
  text-align: center;
}
.noo-page-title-section.page-title-style-2 .content-page-title ul.breadcrumbs {
  text-align: center;
}
.noo-page-title-section.page-title-style-2 .content-page-title .page-sub-title {
  text-align: center;
  display: block;
}
.noo-page-title-section.page-title-style-3 .content-page-title {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
}
.noo-page-title-section.page-title-style-3 .content-page-title h1 {
  text-align: right;
}
.noo-page-title-section.page-title-style-3 .content-page-title ul.breadcrumbs {
  text-align: right;
}
.noo-page-title-section.page-title-style-3 .content-page-title ul.breadcrumbs li:last-child {
  padding-right: 0;
}
.noo-page-title-section.page-title-style-3 .content-page-title .page-sub-title {
  text-align: right;
  display: block;
}
@media (max-width: 1299px) {
  .noo-page-title-section {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.noo-page-title-wrap {
  width: 100%;
  position: relative;
}
.noo-page-title-wrap .content-page-title {
  padding: 10px 0;
}
.page-title-inner .page-sub-title {
  color: #ededed;
}
.page-title-wrap-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-title-parallax {
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .page-title-parallax {
    background-position: center !important;
  }
}
.noo-page-title-overlay {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0, 0, 51, 0.5);
}
/*--------
BREADCRUMB
---------*/
ul.breadcrumbs {
  padding: 32px 0;
  margin: 0;
  list-style-type: none;
}
ul.breadcrumbs li {
  display: inline-block;
}
ul.breadcrumbs li a,
ul.breadcrumbs li span {
  line-height: 1.2;
  display: inherit;
}
.dialog {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  z-index: 9999;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background-color: #333;
  top: 0px;
  left: 0px;
}
.dialog.dialog--open {
  visibility: visible;
}
.dialog__content {
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 5;
  opacity: 0;
}
.dialog--open .dialog__content {
  pointer-events: auto;
}
.dialog--open .dialog__overlay {
  -o-transition-duration: 0.8s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.dialog--close .dialog__overlay {
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.dialog__content {
  padding: 0;
}
.dialog.dialog--open .dialog__content {
  opacity: 1;
}
.morph-shape {
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -2px;
  left: -2px;
  z-index: -1;
}
.morph-shape svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 1680;
}
.dialog--open .morph-shape svg rect {
  -webkit-animation: anim-dash 0.6s forwards;
  animation: anim-dash 0.6s forwards;
}
.dialog-inner {
  opacity: 0;
}
.dialog-inner div button {
  background-color: transparent;
}
.dialog-inner div button i {
  font-size: 20px;
  color: #fff;
}
.dialog--open .dialog-inner {
  padding: 30px;
  opacity: 1;
  -webkit-transition: opacity 0.85s 0.35s;
  -o-transition: opacity 0.85s 0.35s;
  transition: opacity 0.85s 0.35s;
}
.dialog.dialog--open h2 {
  -webkit-animation: anim-elem-1 0.7s ease-out both;
  animation: anim-elem-1 0.7s ease-out both;
}
.dialog.dialog--open button[data-dialog-close] {
  position: absolute;
  border: none;
  top: 10%;
  right: 5%;
  width: 50px;
  height: 50px;
  line-height: 1;
  color: #fff;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.dialog.dialog--open p {
  line-height: 1.5;
  font-size: 18px;
}
.dialog--open {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.noo-footer-wrapper.footer-1 .link_left a {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
  color: #666;
}
.noo-footer-wrapper.footer-1 .link_left a:hover {
  color: #fcac2f;
}
@media (max-width: 1299px) {
  .noo-footer-wrapper.footer-1 .link_left a {
    margin-right: 15px;
  }
  .noo-footer-wrapper.footer-1 .link_left a:last-child {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .noo-footer-wrapper.footer-1 .link_left {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .noo-footer-wrapper.footer-1 h6 {
    text-align: center !important;
  }
}
ul.instagram-pics {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
ul.instagram-pics li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
ul.instagram-pics a {
  display: block;
  position: relative;
  overflow: hidden;
}
ul.instagram-pics a:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
ul.instagram-pics a:hover:before {
  opacity: 1;
}
.instagram-col-2 ul.instagram-pics li {
  width: 50%;
}
.instagram-col-3 ul.instagram-pics li {
  width: 33.33333333%;
}
.instagram-col-4 ul.instagram-pics li {
  width: 25%;
}
.instagram-col-6 ul.instagram-pics li {
  width: 16.66666667%;
}
.instagram-col-8 ul.instagram-pics li {
  width: 12.5%;
}
.padding-2 ul.instagram-pics {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
}
.padding-2 ul.instagram-pics li {
  padding: 2px;
}
.padding-3 ul.instagram-pics {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
}
.padding-3 ul.instagram-pics li {
  padding: 3px;
}
.padding-4 ul.instagram-pics {
  margin-left: -4px;
  margin-right: -4px;
  margin-top: -4px;
}
.padding-4 ul.instagram-pics li {
  padding: 4px;
}
.title-center .widget-title {
  text-align: center;
}
ul.instagram-pics + p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.noo-about-action .noo-content {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.noo-vertical-wrap {
  position: relative;
  padding-left: 60px;
}
.noo-vertical-wrap h3 {
  height: 60px;
  line-height: 60px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: -70px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(-90deg);
  -ms-transform: translate(0, -50%) rotate(-90deg);
  transform: translate(0, -50%) rotate(-90deg);
}
.noo-vertical-wrap h3 span {
  letter-spacing: 3px;
}
@media (min-width: 992px) {
  .noo-about-right .noo-heading-sc.style-2 {
    padding-top: 0;
  }
}
.noo-about-right .noo-heading-sc h3 {
  font-size: 24px;
  margin-top: 0;
}
.noo-about-right .noo-heading-sc h3:before {
  display: none;
}
.noo-about-right .noo-heading-sc h3:after {
  left: 0;
  content: '';
  height: 2px;
  width: 60px;
  bottom: -10px;
  position: absolute;
  background: #fcac2f;
}
.noo-about-right .noo-clients.style-2 .client-item img {
  height: auto;
}
.noo-about-right .noo-video-player {
  min-height: 350px;
  background-size: cover!important;
}
.noo-about-right .noo-video-player .noo-title {
  font-size: 18px;
  margin-bottom: 5px;
}
.noo-about-right .noo-video-player .noo-description {
  letter-spacing: 5px;
}
.noo-about-right .vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}
.noo-contact-info {
  padding: 0;
  list-style: none;
}
.noo-contact-info li {
  font-size: 16px;
  font-family: "PT Serif", Serif;
  font-style: italic;
  padding: 10px 0;
}
.noo-contact-info li i {
  width: 20px;
  margin-right: 5px;
  color: #fcac2f;
}
.noo-schedule-work h1,
.noo-schedule-work h2,
.noo-schedule-work h3,
.noo-schedule-work h4,
.noo-schedule-work h5,
.noo-schedule-work h6 {
  margin-bottom: 20px;
}
.noo-schedule-work p {
  margin-bottom: 20px;
}
.wpcf7 .home-agent-contact {
  max-width: 85%;
}
@media (min-width: 992px) {
  .wpcf7 .home-agent-contact.noo-contact-form .noo-attachment,
  .wpcf7 .home-agent-contact.noo-contact-form .noo-action {
    float: right;
  }
  .wpcf7 .home-agent-contact.noo-contact-form .noo-attachment {
    text-align: right;
  }
  .wpcf7 .home-agent-contact.noo-contact-form .noo-action {
    text-align: left;
  }
}
.wpcf7 .noo-contact-form {
  margin: 30px auto 0;
  max-width: 700px;
}
.wpcf7 .noo-contact-form .noo-item-wrap,
.wpcf7 .noo-contact-form .noo-item-wrap * {
  width: 100%;
  font-style: italic;
  font-family: 'Lato';
}
.wpcf7 .noo-contact-form .noo-item-wrap::-moz-placeholder,
.wpcf7 .noo-contact-form .noo-item-wrap *::-moz-placeholder {
  color: #666666;
  opacity: 1;
}
.wpcf7 .noo-contact-form .noo-item-wrap:-ms-input-placeholder,
.wpcf7 .noo-contact-form .noo-item-wrap *:-ms-input-placeholder {
  color: #666666;
}
.wpcf7 .noo-contact-form .noo-item-wrap::-webkit-input-placeholder,
.wpcf7 .noo-contact-form .noo-item-wrap *::-webkit-input-placeholder {
  color: #666666;
}
.wpcf7 .noo-contact-form .noo-item-wrap {
  margin-bottom: 25px;
}
.wpcf7 .noo-contact-form .noo-item-wrap textarea {
  min-height: 175px;
  width: 100%;
}
@media (min-width: 992px) {
  .wpcf7 .noo-contact-form .noo-group-left {
    float: left;
    margin-right: 30px;
    width: calc(45% - 30px);
  }
  .wpcf7 .noo-contact-form .noo-textarea {
    width: 55%;
    float: left;
  }
  .wpcf7 .noo-contact-form .noo-attachment,
  .wpcf7 .noo-contact-form .noo-action {
    width: 50%;
    float: left;
  }
  .wpcf7 .noo-contact-form .noo-action {
    text-align: right;
    position: relative;
  }
  .wpcf7 .noo-contact-form .noo-action input {
    font-weight: 800;
  }
  .wpcf7 .noo-contact-form .noo-action .ajax-loader {
    top: 50%;
    right: 5px;
    position: absolute;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@media (max-width: 991px) {
  .wpcf7 .noo-contact-form {
    margin: 30px auto 0;
  }
}
.wpcf7 .wpcf7-response-output {
  clear: both;
}
body.single-noo_footer footer {
  display: none;
}
.noo-footer-wrapper.footer-1 .link_left a {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
  color: #666;
}
.noo-footer-wrapper.footer-1 .link_left a:hover {
  color: #fcac2f;
}
@media (max-width: 1299px) {
  .noo-footer-wrapper.footer-1 .link_left a {
    margin-right: 15px;
  }
  .noo-footer-wrapper.footer-1 .link_left a:last-child {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .noo-footer-wrapper.footer-1 .link_left {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .noo-footer-wrapper.footer-1 h6 {
    text-align: center !important;
  }
}
ul.instagram-pics {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
ul.instagram-pics li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
ul.instagram-pics a {
  display: block;
  position: relative;
  overflow: hidden;
}
ul.instagram-pics a:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
ul.instagram-pics a:hover:before {
  opacity: 1;
}
.instagram-col-2 ul.instagram-pics li {
  width: 50%;
}
.instagram-col-3 ul.instagram-pics li {
  width: 33.33333333%;
}
.instagram-col-4 ul.instagram-pics li {
  width: 25%;
}
.instagram-col-6 ul.instagram-pics li {
  width: 16.66666667%;
}
.instagram-col-8 ul.instagram-pics li {
  width: 12.5%;
}
.padding-2 ul.instagram-pics {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
}
.padding-2 ul.instagram-pics li {
  padding: 2px;
}
.padding-3 ul.instagram-pics {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
}
.padding-3 ul.instagram-pics li {
  padding: 3px;
}
.padding-4 ul.instagram-pics {
  margin-left: -4px;
  margin-right: -4px;
  margin-top: -4px;
}
.padding-4 ul.instagram-pics li {
  padding: 4px;
}
.title-center .widget-title {
  text-align: center;
}
ul.instagram-pics + p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  #noo-footer-wrapper .noo-footer-col {
    padding: 10% 0 !important;
  }
}
.noo-footer-col {
  color: #fff;
}
.noo-footer-col .noo-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  margin: 0 0 50px;
}
.noo-footer-col .noo-title:after {
  content: '';
  height: 3px;
  width: 55px;
  background: #fcac2f;
  position: absolute;
  bottom: -12px;
  left: 0;
}
.noo-footer-col .noo-about-box {
  font-size: 14px;
  line-height: 24px;
}
.noo-footer-col .noo-about-box img {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
}
.noo-footer-col .noo-calendar-box ul {
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
}
.noo-footer-col .noo-calendar-box ul li {
  border-bottom: 1px solid #56566f;
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  padding: 15px 0;
}
.noo-footer-col .noo-calendar-box ul li:first-child {
  border-top: 1px solid #56566f;
}
.noo-footer-col .noo-calendar-box ul li span {
  text-transform: uppercase;
  font-weight: 600;
}
.noo-footer-col .noo-calendar-box div {
  color: #fff;
  font-size: 14px;
  line-height: 40px;
}
.noo-footer-col .noo-calendar-box div i {
  color: #fcac2f;
  padding-right: 10px;
}
.noo-footer-col-3 .noo-title {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #071645;
}
.noo-footer-col-3 ul.noo-menu-footer-col {
  padding: 0;
  list-style: none;
}
.noo-footer-col-3 ul.noo-menu-footer-col li {
  border-top: 1px solid #ccc;
  color: #333333;
}
.noo-footer-col-3 ul.noo-menu-footer-col li:first-child {
  border-top: none;
}
.noo-footer-col-3 ul.noo-menu-footer-col li a {
  font-size: 14px;
  line-height: 42px;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.noo-footer-col-3 .noo-about-us {
  color: #444444;
  font-size: 14px;
  line-height: 24px;
}
.noo-footer-col-3 .noo-about-us ul {
  padding: 0;
  list-style: none;
}
.noo-footer-col-3 .noo-about-us ul li {
  font-size: 14px;
  line-height: 40px;
}
.noo-footer-col-3 .noo-about-us ul li i {
  color: #fcac2f;
  font-size: 18px;
  line-height: 26px;
  padding-right: 18px;
}
.noo-footer-col-3 .noo-about-us .noo-follow span {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #071645;
}
.noo-footer-col-3 .noo-about-us .noo-follow a {
  display: inline-block;
  padding-right: 6px;
}
.noo-footer-col-3 .noo-about-us .noo-follow a i {
  color: #999999;
  font-size: 16px;
  line-height: 26px;
}
.noo-footer-col-3 .noo-about-us .noo-follow a:hover i {
  color: #071645;
}
.search-form {
  position: relative;
}
.search-form input[type="text"] {
  width: 100%;
  height: 45px;
  background-color: transparent;
  color: #071645;
  padding-right: 45px;
  border: 1px solid #999999;
}
.search-form input[type="text"] ::-webkit-input-placeholder {
  color: #333;
}
.search-form input[type="text"] :-moz-placeholder {
  color: #333;
}
.search-form input[type="text"] ::-moz-placeholder {
  color: #333;
}
.search-form input[type="text"] :-ms-input-placeholder {
  color: #333;
}
.search-form button[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  padding: 0;
  height: 45px;
  width: 45px;
  background-color: transparent;
  color: #333;
  font-size: 14px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.screen-reader-text {
  display: none;
}
/*-------------------------------------
CALENDAR
---------------------------------------*/
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: right;
  font-size: 12px;
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0;
  font-weight: 600;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
  text-align: center;
}
#wp-calendar tbody {
  font-size: 13px;
}
#wp-calendar tbody td {
  background: #e8e8e8;
  border: 1px solid #fff;
  text-align: center;
  padding: 4px;
}
#wp-calendar tbody td.pad:hover {
  background: transparent !important;
}
#wp-calendar tbody td:hover,
#wp-calendar tbody td#today {
  color: #fff;
  background-color: #fcac2f;
}
#wp-calendar tbody td:hover a {
  color: #fff;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}
/*-----------------------------------------------------------------------------
* Widget noo_widget_color_filter
*----------------------------------------------------------------------------*/
.noo_widget_color_filter .noo-filter-color {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #e0e0e0;
}
/* -----------------------------------------------------------------------------
 * Widget: price filter
 * -------------------------------------------------------------------------- */
.woocommerce .widget_price_filter h4.widget-title {
  font-size: 16px;
  letter-spacing: 0.025em;
  margin-bottom: 25px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #666666;
  border-radius: 0;
  margin: 0 4px 25px 4px;
}
.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 3px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  border-radius: 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 2px solid #fcac2f;
  border-radius: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
}
.woocommerce .widget_price_filter .price_slider_amount {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.woocommerce .widget_price_filter .price_slider_amount .price_label {
  text-align: left;
  line-height: 30px;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  float: right;
  min-width: 80px;
  font-weight: bold;
  font-size: 15px;
  padding: 5px 15px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #fcac2f;
  color: #fff !important;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover {
  color: #fff;
  background-color: #db8703 !important;
}
/*
* Widget Cart
*
*/
.woocommerce .widget.widget_shopping_cart_content {
  border-top: 1px solid #666666;
}
.woocommerce .widget.widget_shopping_cart_content .widget_shopping_cart_icon {
  display: none;
}
.woocommerce .widget.widget_shopping_cart_content .sub-total-text {
  display: none;
}
/*
*
*  Sidebar
*/
@media (max-width: 768px) {
  .sidebar {
    margin-top: 30px;
  }
}
.sidebar aside {
  background: #fff;
  padding: 33px 30px 27px;
  margin-bottom: 30px;
}
.sidebar aside.no-padding {
  padding: 0;
}
.sidebar aside.no-padding img {
  width: 100%;
}
@media (max-width: 991px) {
  .sidebar {
    float: none;
  }
}
@media (max-width: 991px) {
  .sidebar.sidebar-large {
    float: none;
  }
}
.sidebar h4.widget-title,
.wpb_widgetised_column h4.widget-title {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  position: relative;
  margin: 0 0 10px;
  color: #071645;
}
.sidebar .tagcloud,
.wpb_widgetised_column .tagcloud {
  font-size: 0;
}
.sidebar .tagcloud a,
.wpb_widgetised_column .tagcloud a {
  color: #737373 !important;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  margin-bottom: 10px;
  margin-right: 5px;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  background: #f0f0f0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sidebar .tagcloud a:last-child,
.wpb_widgetised_column .tagcloud a:last-child {
  margin-right: 0;
}
.sidebar .tagcloud a:hover,
.wpb_widgetised_column .tagcloud a:hover {
  color: #fff !important;
  text-decoration: none;
  background-color: #fcac2f !important;
  border-color: #fcac2f;
}
.sidebar select,
.wpb_widgetised_column select {
  width: 100%;
}
.sidebar .widget_archive > ul,
.wpb_widgetised_column .widget_archive > ul,
.sidebar .widget_categories > ul,
.wpb_widgetised_column .widget_categories > ul,
.sidebar .widget_pages > ul,
.wpb_widgetised_column .widget_pages > ul,
.sidebar .widget_meta > ul,
.wpb_widgetised_column .widget_meta > ul,
.sidebar .widget_recent_comments > ul,
.wpb_widgetised_column .widget_recent_comments > ul,
.sidebar .widget_recent_entries > ul,
.wpb_widgetised_column .widget_recent_entries > ul,
.sidebar .widget_rss > ul,
.wpb_widgetised_column .widget_rss > ul,
.sidebar .widget_nav_menu > div > ul,
.wpb_widgetised_column .widget_nav_menu > div > ul,
.sidebar .widget_product_categories > ul,
.wpb_widgetised_column .widget_product_categories > ul,
.sidebar .widget_layered_nav > ul,
.wpb_widgetised_column .widget_layered_nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  color: #333;
}
.sidebar .widget_archive > ul > li:first-child,
.wpb_widgetised_column .widget_archive > ul > li:first-child,
.sidebar .widget_categories > ul > li:first-child,
.wpb_widgetised_column .widget_categories > ul > li:first-child,
.sidebar .widget_pages > ul > li:first-child,
.wpb_widgetised_column .widget_pages > ul > li:first-child,
.sidebar .widget_meta > ul > li:first-child,
.wpb_widgetised_column .widget_meta > ul > li:first-child,
.sidebar .widget_recent_comments > ul > li:first-child,
.wpb_widgetised_column .widget_recent_comments > ul > li:first-child,
.sidebar .widget_recent_entries > ul > li:first-child,
.wpb_widgetised_column .widget_recent_entries > ul > li:first-child,
.sidebar .widget_rss > ul > li:first-child,
.wpb_widgetised_column .widget_rss > ul > li:first-child,
.sidebar .widget_nav_menu > div > ul > li:first-child,
.wpb_widgetised_column .widget_nav_menu > div > ul > li:first-child,
.sidebar .widget_product_categories > ul > li:first-child,
.wpb_widgetised_column .widget_product_categories > ul > li:first-child,
.sidebar .widget_layered_nav > ul > li:first-child,
.wpb_widgetised_column .widget_layered_nav > ul > li:first-child {
  padding-top: 0;
}
.sidebar .widget_archive li:last-child,
.wpb_widgetised_column .widget_archive li:last-child,
.sidebar .widget_categories li:last-child,
.wpb_widgetised_column .widget_categories li:last-child,
.sidebar .widget_pages li:last-child,
.wpb_widgetised_column .widget_pages li:last-child,
.sidebar .widget_meta li:last-child,
.wpb_widgetised_column .widget_meta li:last-child,
.sidebar .widget_recent_comments li:last-child,
.wpb_widgetised_column .widget_recent_comments li:last-child,
.sidebar .widget_recent_entries li:last-child,
.wpb_widgetised_column .widget_recent_entries li:last-child,
.sidebar .widget_rss li:last-child,
.wpb_widgetised_column .widget_rss li:last-child,
.sidebar .widget_nav_menu > div li:last-child,
.wpb_widgetised_column .widget_nav_menu > div li:last-child,
.sidebar .widget_product_categories li:last-child,
.wpb_widgetised_column .widget_product_categories li:last-child,
.sidebar .widget_layered_nav li:last-child,
.wpb_widgetised_column .widget_layered_nav li:last-child {
  margin-bottom: 0;
}
.sidebar .widget_archive li .show_count,
.wpb_widgetised_column .widget_archive li .show_count,
.sidebar .widget_categories li .show_count,
.wpb_widgetised_column .widget_categories li .show_count,
.sidebar .widget_pages li .show_count,
.wpb_widgetised_column .widget_pages li .show_count,
.sidebar .widget_meta li .show_count,
.wpb_widgetised_column .widget_meta li .show_count,
.sidebar .widget_recent_comments li .show_count,
.wpb_widgetised_column .widget_recent_comments li .show_count,
.sidebar .widget_recent_entries li .show_count,
.wpb_widgetised_column .widget_recent_entries li .show_count,
.sidebar .widget_rss li .show_count,
.wpb_widgetised_column .widget_rss li .show_count,
.sidebar .widget_nav_menu > div li .show_count,
.wpb_widgetised_column .widget_nav_menu > div li .show_count,
.sidebar .widget_product_categories li .show_count,
.wpb_widgetised_column .widget_product_categories li .show_count,
.sidebar .widget_layered_nav li .show_count,
.wpb_widgetised_column .widget_layered_nav li .show_count {
  float: right;
}
.sidebar .widget_archive a,
.wpb_widgetised_column .widget_archive a,
.sidebar .widget_categories a,
.wpb_widgetised_column .widget_categories a,
.sidebar .widget_pages a,
.wpb_widgetised_column .widget_pages a,
.sidebar .widget_meta a,
.wpb_widgetised_column .widget_meta a,
.sidebar .widget_recent_comments a,
.wpb_widgetised_column .widget_recent_comments a,
.sidebar .widget_recent_entries a,
.wpb_widgetised_column .widget_recent_entries a,
.sidebar .widget_rss a,
.wpb_widgetised_column .widget_rss a,
.sidebar .widget_nav_menu > div a,
.wpb_widgetised_column .widget_nav_menu > div a,
.sidebar .widget_product_categories a,
.wpb_widgetised_column .widget_product_categories a,
.sidebar .widget_layered_nav a,
.wpb_widgetised_column .widget_layered_nav a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar .widget_archive a:hover,
.wpb_widgetised_column .widget_archive a:hover,
.sidebar .widget_categories a:hover,
.wpb_widgetised_column .widget_categories a:hover,
.sidebar .widget_pages a:hover,
.wpb_widgetised_column .widget_pages a:hover,
.sidebar .widget_meta a:hover,
.wpb_widgetised_column .widget_meta a:hover,
.sidebar .widget_recent_comments a:hover,
.wpb_widgetised_column .widget_recent_comments a:hover,
.sidebar .widget_recent_entries a:hover,
.wpb_widgetised_column .widget_recent_entries a:hover,
.sidebar .widget_rss a:hover,
.wpb_widgetised_column .widget_rss a:hover,
.sidebar .widget_nav_menu > div a:hover,
.wpb_widgetised_column .widget_nav_menu > div a:hover,
.sidebar .widget_product_categories a:hover,
.wpb_widgetised_column .widget_product_categories a:hover,
.sidebar .widget_layered_nav a:hover,
.wpb_widgetised_column .widget_layered_nav a:hover {
  text-decoration: none;
}
.sidebar .widget_archive li > a:hover,
.wpb_widgetised_column .widget_archive li > a:hover,
.sidebar .widget_pages li > a:hover,
.wpb_widgetised_column .widget_pages li > a:hover,
.sidebar .widget_nav_menu > div li > a:hover,
.wpb_widgetised_column .widget_nav_menu > div li > a:hover,
.sidebar .widget_product_categories li > a:hover,
.wpb_widgetised_column .widget_product_categories li > a:hover,
.sidebar .widget_layered_nav li > a:hover,
.wpb_widgetised_column .widget_layered_nav li > a:hover {
  padding-left: 5px;
}
.sidebar .widget_categories ul ul,
.wpb_widgetised_column .widget_categories ul ul,
.sidebar .widget_pages ul ul,
.wpb_widgetised_column .widget_pages ul ul,
.sidebar .widget_nav_menu > div ul ul,
.wpb_widgetised_column .widget_nav_menu > div ul ul,
.sidebar .widget_product_categories ul ul,
.wpb_widgetised_column .widget_product_categories ul ul {
  padding-left: 0;
  list-style-type: none;
}
.sidebar .widget_categories ul ul > li > a,
.wpb_widgetised_column .widget_categories ul ul > li > a,
.sidebar .widget_pages ul ul > li > a,
.wpb_widgetised_column .widget_pages ul ul > li > a,
.sidebar .widget_nav_menu > div ul ul > li > a,
.wpb_widgetised_column .widget_nav_menu > div ul ul > li > a,
.sidebar .widget_product_categories ul ul > li > a,
.wpb_widgetised_column .widget_product_categories ul ul > li > a {
  padding-left: 25px;
}
.sidebar .widget_categories ul ul > li > a:hover,
.wpb_widgetised_column .widget_categories ul ul > li > a:hover,
.sidebar .widget_pages ul ul > li > a:hover,
.wpb_widgetised_column .widget_pages ul ul > li > a:hover,
.sidebar .widget_nav_menu > div ul ul > li > a:hover,
.wpb_widgetised_column .widget_nav_menu > div ul ul > li > a:hover,
.sidebar .widget_product_categories ul ul > li > a:hover,
.wpb_widgetised_column .widget_product_categories ul ul > li > a:hover {
  padding-left: 45px;
}
.sidebar .widget_categories ul ul ul > li > a,
.wpb_widgetised_column .widget_categories ul ul ul > li > a,
.sidebar .widget_pages ul ul ul > li > a,
.wpb_widgetised_column .widget_pages ul ul ul > li > a,
.sidebar .widget_nav_menu > div ul ul ul > li > a,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul > li > a,
.sidebar .widget_product_categories ul ul ul > li > a,
.wpb_widgetised_column .widget_product_categories ul ul ul > li > a {
  padding-left: 45px;
}
.sidebar .widget_categories ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_categories ul ul ul > li > a:hover,
.sidebar .widget_pages ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_pages ul ul ul > li > a:hover,
.sidebar .widget_nav_menu > div ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul > li > a:hover,
.sidebar .widget_product_categories ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_product_categories ul ul ul > li > a:hover {
  padding-left: 65px;
}
.sidebar .widget_categories ul ul ul ul > li > a,
.wpb_widgetised_column .widget_categories ul ul ul ul > li > a,
.sidebar .widget_pages ul ul ul ul > li > a,
.wpb_widgetised_column .widget_pages ul ul ul ul > li > a,
.sidebar .widget_nav_menu > div ul ul ul ul > li > a,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul ul > li > a,
.sidebar .widget_product_categories ul ul ul ul > li > a,
.wpb_widgetised_column .widget_product_categories ul ul ul ul > li > a {
  padding-left: 65px;
}
.sidebar .widget_categories ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_categories ul ul ul ul > li > a:hover,
.sidebar .widget_pages ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_pages ul ul ul ul > li > a:hover,
.sidebar .widget_nav_menu > div ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul ul > li > a:hover,
.sidebar .widget_product_categories ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_product_categories ul ul ul ul > li > a:hover {
  padding-left: 85px;
}
.sidebar .widget_categories ul ul ul ul ul > li > a,
.wpb_widgetised_column .widget_categories ul ul ul ul ul > li > a,
.sidebar .widget_pages ul ul ul ul ul > li > a,
.wpb_widgetised_column .widget_pages ul ul ul ul ul > li > a,
.sidebar .widget_nav_menu > div ul ul ul ul ul > li > a,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul ul ul > li > a,
.sidebar .widget_product_categories ul ul ul ul ul > li > a,
.wpb_widgetised_column .widget_product_categories ul ul ul ul ul > li > a {
  padding-left: 85px;
}
.sidebar .widget_categories ul ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_categories ul ul ul ul ul > li > a:hover,
.sidebar .widget_pages ul ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_pages ul ul ul ul ul > li > a:hover,
.sidebar .widget_nav_menu > div ul ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_nav_menu > div ul ul ul ul ul > li > a:hover,
.sidebar .widget_product_categories ul ul ul ul ul > li > a:hover,
.wpb_widgetised_column .widget_product_categories ul ul ul ul ul > li > a:hover {
  padding-left: 105px;
}
.sidebar .widget_meta ul li a,
.wpb_widgetised_column .widget_meta ul li a {
  padding: 7px 0px;
}
.sidebar .widget_recent_comments > ul,
.wpb_widgetised_column .widget_recent_comments > ul,
.sidebar .widget_rss > ul,
.wpb_widgetised_column .widget_rss > ul {
  color: #999;
  line-height: 1.6;
}
.sidebar .widget_recent_comments li,
.wpb_widgetised_column .widget_recent_comments li,
.sidebar .widget_rss li,
.wpb_widgetised_column .widget_rss li {
  padding-top: 10px;
  margin-bottom: 0px;
}
.sidebar .widget_layered_nav ul,
.wpb_widgetised_column .widget_layered_nav ul {
  padding-right: 15px;
}
.sidebar .widget_layered_nav ul li,
.wpb_widgetised_column .widget_layered_nav ul li {
  padding: 9px 0 0 0;
}
.sidebar .widget_layered_nav ul li a,
.wpb_widgetised_column .widget_layered_nav ul li a {
  padding: 0 0 0 5px;
}
.sidebar .widget_layered_nav ul li span.count,
.wpb_widgetised_column .widget_layered_nav ul li span.count {
  padding: 0;
  float: right;
}
.sidebar .widget-social-profile ul.social-profile,
.wpb_widgetised_column .widget-social-profile ul.social-profile {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}
.sidebar .widget-social-profile ul.social-profile li,
.wpb_widgetised_column .widget-social-profile ul.social-profile li {
  display: inline-block;
  vertical-align: middle;
}
.sidebar .widget-social-profile ul.social-profile li a,
.wpb_widgetised_column .widget-social-profile ul.social-profile li a {
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sidebar .widget-social-profile ul.social-profile li a i,
.wpb_widgetised_column .widget-social-profile ul.social-profile li a i {
  font-size: 16px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  text-align: center;
}
.sidebar .widget-social-profile ul.social-profile li + li,
.wpb_widgetised_column .widget-social-profile ul.social-profile li + li {
  margin-left: 5px;
}
.sidebar .widget-social-profile ul.social-profile.social-icon-bordered li a,
.wpb_widgetised_column .widget-social-profile ul.social-profile.social-icon-bordered li a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #F5F5F5;
  border-radius: 100%;
}
.sidebar .widget-social-profile ul.social-profile.social-icon-bordered li a i,
.wpb_widgetised_column .widget-social-profile ul.social-profile.social-icon-bordered li a i {
  color: #777777;
  font-size: 14px;
}
.sidebar .widget-social-profile ul.social-profile.social-icon-bordered li a:hover i,
.wpb_widgetised_column .widget-social-profile ul.social-profile.social-icon-bordered li a:hover i {
  color: #fff;
}
.sidebar .widget-social-profile.blog-widget,
.wpb_widgetised_column .widget-social-profile.blog-widget {
  border-width: 2px;
  border-style: solid;
  padding: 30px 15px 40px 15px;
  text-align: center;
}
.sidebar .widget-social-profile.blog-widget > span,
.wpb_widgetised_column .widget-social-profile.blog-widget > span {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.sidebar ul.product_list_widget li,
.wpb_widgetised_column ul.product_list_widget li {
  padding: 0;
  margin: 0;
}
.sidebar ul.product_list_widget li + li,
.wpb_widgetised_column ul.product_list_widget li + li {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #666666;
}
.sidebar ul.product_list_widget li img,
.wpb_widgetised_column ul.product_list_widget li img {
  width: 70px;
  float: left;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-left: 0;
  margin-right: 15px;
}
.sidebar ul.product_list_widget li a,
.wpb_widgetised_column ul.product_list_widget li a {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: normal;
}
.sidebar ul.product_list_widget span.amount,
.wpb_widgetised_column ul.product_list_widget span.amount {
  font-size: 15px;
}
.sidebar ul.product_list_widget ins,
.wpb_widgetised_column ul.product_list_widget ins {
  text-decoration: none;
  margin-right: 3px;
}
.sidebar ul.product_list_widget del span.amount,
.wpb_widgetised_column ul.product_list_widget del span.amount {
  font-size: 13px;
  color: #999999;
}
.sidebar ul.product_list_widget .star-rating,
.wpb_widgetised_column ul.product_list_widget .star-rating {
  margin: 0 0 5px 0;
}
.sidebar .widget-posts-wrap .widget_posts_item,
.wpb_widgetised_column .widget-posts-wrap .widget_posts_item {
  padding-bottom: 25px;
}
.sidebar .widget-posts-wrap .widget_posts_item:last-child,
.wpb_widgetised_column .widget-posts-wrap .widget_posts_item:last-child {
  padding-bottom: 0;
}
.sidebar .widget-posts-wrap .widget_posts_item + .widget_posts_item,
.wpb_widgetised_column .widget-posts-wrap .widget_posts_item + .widget_posts_item {
  padding-top: 20px;
  border-top: 1px solid #666666;
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail {
  width: 60px;
  float: left;
  margin-right: 10px;
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail {
  position: relative;
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail a.prettyPhoto,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail a.prettyPhoto {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  right: 0;
  line-height: 20px;
  font-size: 10px;
  text-align: center;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail:hover a.entry-thumbnail_overlay:before,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail:hover a.entry-thumbnail_overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail:hover a.prettyPhoto,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail:hover a.prettyPhoto {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.sidebar .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail_overlay img,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-thumbnail .entry-thumbnail_overlay img {
  width: 100%;
  display: block;
}
.sidebar .widget-posts-wrap .widget-posts-content-wrap,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-content-wrap {
  position: relative;
  overflow: hidden;
}
.sidebar .widget-posts-wrap .widget-posts-title,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-title {
  font-size: 15px;
  color: #3F3F3F;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}
.sidebar .widget-posts-wrap .widget-posts-title:hover,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-title:hover {
  text-decoration: none;
}
.sidebar .widget-posts-wrap .owl-theme .owl-controls,
.wpb_widgetised_column .widget-posts-wrap .owl-theme .owl-controls {
  display: none !important;
}
.sidebar .widget-posts-wrap .widget-posts-date,
.wpb_widgetised_column .widget-posts-wrap .widget-posts-date {
  font-size: 13px;
  color: #999999;
}
.sidebar .widget-twitter-wrap .widget-twitter-item + .widget-twitter-item,
.wpb_widgetised_column .widget-twitter-wrap .widget-twitter-item + .widget-twitter-item {
  margin-top: 20px;
}
.sidebar .widget-twitter-wrap i,
.wpb_widgetised_column .widget-twitter-wrap i {
  font-size: 14px;
}
.sidebar .widget-twitter-wrap span.twitter-time,
.wpb_widgetised_column .widget-twitter-wrap span.twitter-time {
  color: #b1b1b1;
  display: block;
}
.sidebar .widget-banner .widget-image-wrap a,
.wpb_widgetised_column .widget-banner .widget-image-wrap a {
  display: block;
  position: relative;
  overflow: hidden;
}
.sidebar .widget-banner .widget-image-wrap a:before,
.wpb_widgetised_column .widget-banner .widget-image-wrap a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.35s linear;
  -o-transition: opacity 0.35s linear;
  transition: opacity 0.35s linear;
}
.sidebar .widget-banner .widget-image-wrap a img,
.wpb_widgetised_column .widget-banner .widget-image-wrap a img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 100%;
  height: auto;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.sidebar .widget-banner .widget-image-wrap a:hover:before,
.wpb_widgetised_column .widget-banner .widget-image-wrap a:hover:before {
  opacity: 1;
}
.sidebar .widget-banner .widget-image-wrap a:hover img,
.wpb_widgetised_column .widget-banner .widget-image-wrap a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.sidebar .widget-contact-info,
.wpb_widgetised_column .widget-contact-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar .widget-contact-info > li > i.fa,
.wpb_widgetised_column .widget-contact-info > li > i.fa {
  width: 18px;
}
.sidebar .mail-chimp-wrapper > p,
.wpb_widgetised_column .mail-chimp-wrapper > p {
  line-height: 28px;
}
.sidebar .mail-chimp-wrapper .mail-chimp-button,
.wpb_widgetised_column .mail-chimp-wrapper .mail-chimp-button {
  position: relative;
}
.sidebar .mail-chimp-wrapper .mail-chimp-button > input,
.wpb_widgetised_column .mail-chimp-wrapper .mail-chimp-button > input {
  background-color: #fbfbfb;
  color: #222;
  border: none;
  line-height: 1;
  height: 30px;
  width: 100%;
}
.sidebar .mail-chimp-wrapper .mail-chimp-button > button,
.wpb_widgetised_column .mail-chimp-wrapper .mail-chimp-button > button {
  border: none;
  background: none;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sidebar .mail-chimp-wrapper .mail-chimp-button > button > span,
.wpb_widgetised_column .mail-chimp-wrapper .mail-chimp-button > button > span {
  display: none;
}
.sidebar .footer-logo .sub-description,
.wpb_widgetised_column .footer-logo .sub-description {
  padding-top: 28px;
  line-height: 28px;
}
.sidebar .widget-text-intro,
.wpb_widgetised_column .widget-text-intro {
  font-size: 24px;
  text-align: center;
  border: dashed 3px #c5c5c5;
  padding: 55px 10px;
  font-weight: 400;
}
.sidebar ul.instagram-pics,
.wpb_widgetised_column ul.instagram-pics {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
.sidebar ul.instagram-pics li,
.wpb_widgetised_column ul.instagram-pics li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.sidebar ul.instagram-pics a,
.wpb_widgetised_column ul.instagram-pics a {
  display: block;
  position: relative;
  overflow: hidden;
}
.sidebar ul.instagram-pics a:before,
.wpb_widgetised_column ul.instagram-pics a:before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.sidebar ul.instagram-pics a:hover:before,
.wpb_widgetised_column ul.instagram-pics a:hover:before {
  opacity: 1;
}
.sidebar .instagram-col-2 ul.instagram-pics li,
.wpb_widgetised_column .instagram-col-2 ul.instagram-pics li {
  width: 50%;
}
.sidebar .instagram-col-3 ul.instagram-pics li,
.wpb_widgetised_column .instagram-col-3 ul.instagram-pics li {
  width: 33.33333333%;
}
.sidebar .instagram-col-4 ul.instagram-pics li,
.wpb_widgetised_column .instagram-col-4 ul.instagram-pics li {
  width: 25%;
}
.sidebar .instagram-col-6 ul.instagram-pics li,
.wpb_widgetised_column .instagram-col-6 ul.instagram-pics li {
  width: 16.66666667%;
}
.sidebar .instagram-col-8 ul.instagram-pics li,
.wpb_widgetised_column .instagram-col-8 ul.instagram-pics li {
  width: 12.5%;
}
.sidebar .padding-2 ul.instagram-pics,
.wpb_widgetised_column .padding-2 ul.instagram-pics {
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -2px;
}
.sidebar .padding-2 ul.instagram-pics li,
.wpb_widgetised_column .padding-2 ul.instagram-pics li {
  padding: 2px;
}
.sidebar .padding-3 ul.instagram-pics,
.wpb_widgetised_column .padding-3 ul.instagram-pics {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
}
.sidebar .padding-3 ul.instagram-pics li,
.wpb_widgetised_column .padding-3 ul.instagram-pics li {
  padding: 3px;
}
.sidebar .padding-4 ul.instagram-pics,
.wpb_widgetised_column .padding-4 ul.instagram-pics {
  margin-left: -4px;
  margin-right: -4px;
  margin-top: -4px;
}
.sidebar .padding-4 ul.instagram-pics li,
.wpb_widgetised_column .padding-4 ul.instagram-pics li {
  padding: 4px;
}
.sidebar .title-center .widget-title,
.wpb_widgetised_column .title-center .widget-title {
  text-align: center;
}
.sidebar ul.instagram-pics + p,
.wpb_widgetised_column ul.instagram-pics + p {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.02em;
}
.sidebar .widget-text-center,
.wpb_widgetised_column .widget-text-center {
  text-align: center;
}
.widget-payment-gate {
  padding-top: 10px;
}
.widget-payment-gate .payment-gate {
  list-style: none;
  display: inline-block;
}
.widget-payment-gate li {
  float: left;
  display: inline-block;
  padding-right: 4px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.widget-payment-gate li:last-child {
  padding-right: 0px;
}
.widget-payment-gate li:hover {
  opacity: 0.6;
}
.widget-payment-gate image {
  max-width: 46px;
  max-height: 28px;
}
.widget-partner-carousel .owl-carousel .owl-item {
  height: 180px;
  display: table;
  text-align: center;
}
footer.main-footer-wrapper .sidebar aside.widget-map-scroll-up {
  margin-top: 0;
}
.sidebar.woocommerce-sidebar {
  background-color: #fff;
  padding: 0 15px;
}
.sidebar.woocommerce-sidebar .widget {
  padding-top: 2em;
}
.sidebar.woocommerce-sidebar .widget-title {
  position: relative;
  font-weight: 400;
}
.sidebar .widget_product_categories > ul > li {
  border: none;
}
.sidebar .widget_product_categories > ul > li a {
  color: #333;
  padding: 5px 0;
}
.sidebar .widget_product_categories > ul > li a:before {
  content: '';
  display: inline-block;
  position: relative;
  width: 10px;
  height: 2px;
  background-color: #666666;
  top: -4px;
  margin-right: 15px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar .widget_product_categories > ul > li a:hover:before {
  background-color: #fcac2f;
}
/*
*
*  Post Thumbnail
 */
.widget-post-thumbnail ul.posts-thumbnail-list {
  padding: 0px;
  margin: 0px;
}
.widget-post-thumbnail ul.posts-thumbnail-list > li {
  padding: 0 0 35px 0;
  margin: 0;
}
.widget-post-thumbnail ul.posts-thumbnail-list > li:last-child {
  padding: 0 0 10px 0 !important;
}
.widget-post-thumbnail ul.posts-thumbnail-list li {
  list-style: none;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image {
  position: relative;
  overflow: hidden;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image a:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0.6;
  z-index: 1;
  -webkit-transform: scale(0, 0) rotateZ(0deg);
  -ms-transform: scale(0, 0) rotateZ(0deg);
  transform: scale(0, 0) rotateZ(0deg);
  background-color: #fcac2f;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image a:after {
  content: "\f064";
  font-family: "fontawesome";
  font-size: 20px;
  position: absolute;
  color: #fff;
  filter: alpha(opacity=0);
  top: 40%;
  left: 50%;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image:hover a:before {
  -webkit-transform: scale(1, 1) rotateZ(180deg);
  -ms-transform: scale(1, 1) rotateZ(180deg);
  transform: scale(1, 1) rotateZ(180deg);
  filter: alpha(opacity=100);
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image:hover a:after {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content {
  width: 100%;
  float: left;
  padding-left: 15px;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content h4 {
  margin-top: 0px;
  margin-bottom: 7px;
  font-size: 14px;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content h4 a {
  color: #071645;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta {
  font-size: 14px;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta time,
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta span.author {
  margin-right: 10px;
  color: #071645;
  text-transform: capitalize;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta .comment-count {
  display: inline-block;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta .comment-count i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta .comment-count a {
  font-size: 14px;
  color: #000;
}
.widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta .comment-count a:hover {
  color: #fcac2f;
}
@media (max-width: 991px) {
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-image {
    width: 30%;
    float: left;
  }
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content {
    width: 70%;
    float: left;
    margin-top: -5px;
  }
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content h4 {
    margin-bottom: 7px;
  }
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta i {
    margin-right: 4px;
  }
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta time {
    margin-right: 10px;
  }
  .widget-post-thumbnail ul.posts-thumbnail-list li .posts-thumbnail-content .posts-thumbnail-meta .comment-count i {
    margin-right: 4px;
  }
}
.widget-post-thumbnail ul.posts-thumbnail-list.full_width li .posts-thumbnail-content {
  padding-left: 0;
  margin-top: 20px;
  text-align: center;
}
.widget-post-thumbnail ul.posts-thumbnail-list.full_width li .posts-thumbnail-content a:hover {
  color: #fcac2f;
}
@media (max-width: 991px) {
  .widget-post-thumbnail ul.posts-thumbnail-list.full_width li .posts-thumbnail-content {
    text-align: left;
    padding-left: 20px;
    margin-top: 6px;
  }
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail > li {
  padding: 0 0 25px 0;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li {
  list-style: none;
  margin: 0;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li:before {
  content: " ";
  display: table;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-image {
  width: calc(50% - 15px);
  float: left;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-image img {
  width: 100%;
  max-width: none;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content {
  width: calc(50% + 15px);
  float: left;
  padding-left: 15px;
  margin-top: 10px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content h4 {
  font-size: 14px;
  margin-bottom: 7px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content h4 a:hover {
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content .posts-thumbnail-meta {
  font-style: italic;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content .posts-thumbnail-meta i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content .posts-thumbnail-meta time {
  margin-right: 10px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content .posts-thumbnail-meta .comment-count i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date > li {
  padding: 0 0 35px 0;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li {
  list-style: none;
  margin: 0;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li:before {
  content: " ";
  display: table;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-date {
  width: 70px;
  float: left;
  height: 70px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: center;
  line-height: 30px;
  border: 1px solid #666666;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-date span {
  display: block;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-date span.day {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-date span.month {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  color: #aaabac;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content {
  width: 72%;
  float: left;
  margin-top: -2px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content h4 {
  margin-bottom: 7px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content h4 a:hover {
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content .posts-thumbnail-meta i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content .posts-thumbnail-meta time {
  margin-right: 10px;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li .posts-thumbnail-content .posts-thumbnail-meta .comment-count i {
  margin-right: 4px;
  color: #fcac2f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li:hover .posts-date {
  background-color: #3f3f3f;
  border-color: #3f3f3f;
}
.widget-post-thumbnail ul.posts-thumbnail-list.date li:hover .posts-date time span {
  color: #fff !important;
}
.col-md-3 .widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-image {
  width: 42%;
  float: left;
}
.col-md-3 .widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-image img {
  width: 100%;
  max-width: none;
}
.col-md-3 .widget-post-thumbnail ul.posts-thumbnail-list.size-thumbnail li .posts-thumbnail-content {
  width: 58%;
  margin-top: -5px;
  padding-left: 10px;
}
/*
*
*  Category Widget
 */
.widget_categories h4 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.widget_categories ul li {
  width: 100%;
  list-style: none;
  margin: 0;
  text-align: right;
  display: inline-block;
  padding: 0px 0;
}
.widget_categories ul li a {
  float: left;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  display: inline-block;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.widget_categories ul li a:hover {
  padding-left: 5px !important;
  color: #fcac2f;
}
.widget_categories ul li:last-child {
  padding-top: 10px;
  border-bottom: 0;
}
.widget_categories ul li span {
  float: right;
}
/** Widget RP - Property Taxonomies **/
.widget_categories ul,
.widget_rp_property_taxonomies ul {
  padding: 0;
  list-style: none;
}
.widget_categories ul li,
.widget_rp_property_taxonomies ul li {
  color: #6b6b6b;
  line-height: 36px;
  border-top: 1px solid #f0f0f0;
  padding: 0px 0;
}
.widget_categories ul li:first-child,
.widget_rp_property_taxonomies ul li:first-child {
  border-top: none;
  padding: 0 0 0px;
}
.widget_categories ul li:last-child,
.widget_rp_property_taxonomies ul li:last-child {
  padding: 0px 0 0;
  margin-bottom: -15px;
}
/** Widget: RP - Property listing **/
.widget_rp_property_listing .rp-property-listing-wrap {
  margin-top: 27px;
}
.widget_rp_property_listing .rp-content .item-title a {
  color: #071645;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.widget_rp_property_listing .rp-content .item-title a:hover {
  color: #fcac2f;
}
.widget_rp_property_listing .rp-content .amount {
  color: #fcac2f;
}
.widget_rp_property_listing .rp-content address {
  font-size: 14px;
  line-height: 26px;
  font-style: italic;
  color: #666;
  margin-top: 3px;
}
.widget_rp_property_listing .rp-content address i {
  color: #fcac2f;
  font-size: 18px;
  line-height: 26px;
  font-style: normal;
  padding-right: 6px;
}
.widget_rp_featured_property .rp-content .item-title {
  margin-top: 15px;
}
.widget_rp_featured_property .rp-content .item-title a {
  color: #071645;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}
.widget_rp_featured_property .rp-content .item-title a:hover {
  color: #fcac2f;
}
.widget_rp_featured_property .rp-content address {
  font-size: 14px;
  line-height: 26px;
  font-style: italic;
  color: #666;
  margin-top: 5px;
  margin-bottom: 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget_rp_featured_property .rp-content address i {
  color: #fcac2f;
  font-size: 18px;
  line-height: 26px;
  font-style: normal;
  padding-right: 6px;
}
.widget_rp_featured_property .rp-featured-property-wrap .rp-thumbnail-wrap img {
  width: 100%;
}
.widget_rp_featured_property .rp-featured-property-wrap .next,
.widget_rp_featured_property .rp-featured-property-wrap .prev {
  top: 30%;
}
.widget_rp_featured_property .rp-featured-property-wrap .next.rp-icon-ion-android-arrow-dropright-circle:before {
  content: "\f105";
  font-weight: bold;
}
.widget_rp_featured_property .rp-featured-property-wrap .prev.rp-icon-ion-android-arrow-dropleft-circle:before {
  content: "\f104";
  font-weight: bold;
}
/**
 * Style widget: Noo - Payment Calculator
 */
.noo-mortgage-paymant-calculator {
  margin-top: 25px;
}
.noo-mortgage-paymant-calculator form label {
  display: block;
  font-weight: 500;
}
.noo-mortgage-paymant-calculator form .noo-item-wrap,
.noo-mortgage-paymant-calculator form .rp-item-wrap {
  margin-bottom: 15px;
  position: relative;
}
.noo-mortgage-paymant-calculator form .noo-item-wrap input,
.noo-mortgage-paymant-calculator form .rp-item-wrap input {
  padding-left: 50px;
  font-style: italic;
  letter-spacing: 1px;
}
.noo-mortgage-paymant-calculator form .noo-item-wrap .field-icon,
.noo-mortgage-paymant-calculator form .rp-item-wrap .field-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 38px;
  width: 42px;
  text-align: center;
  background: #fcac2f;
  color: #fff;
}
.noo-mortgage-paymant-calculator form .noo-item-wrap .field-icon i,
.noo-mortgage-paymant-calculator form .rp-item-wrap .field-icon i {
  font-size: 16px;
}
.noo-mortgage-paymant-calculator form .noo-button {
  width: 100%;
  text-align: center;
}
.noo-mortgage-paymant-calculator .pament_result {
  display: none;
}
.noo-mortgage-paymant-calculator .pament_result h5 {
  font-size: 16px;
}
.noo-mortgage-paymant-calculator .ui-slider {
  height: 2px;
  background-color: #cecece;
  position: relative;
  margin-top: 10px;
  margin-left: 0.9em;
  border: none;
}
.noo-mortgage-paymant-calculator .ui-slider:hover {
  cursor: pointer;
}
.noo-mortgage-paymant-calculator .ui-slider .ui-widget-header {
  height: 100%;
  background-color: #071645;
  margin-left: -0.9em;
}
.noo-mortgage-paymant-calculator .ui-slider .ui-slider-handle {
  position: absolute;
  top: -0.4em;
  margin-left: -0.9em;
  z-index: 1;
  width: 0.9em;
  height: 0.9em;
  cursor: default;
  border-radius: 50%;
  background-color: #071645;
}
.noo-mortgage-paymant-calculator .ui-slider .ui-slider-handle:hover,
.noo-mortgage-paymant-calculator .ui-slider .ui-slider-handle:focus,
.noo-mortgage-paymant-calculator .ui-slider .ui-slider-handle:active {
  cursor: pointer;
  outline: none;
}
.noo-mortgage-paymant-calculator .spinner {
  margin: 0 auto;
  width: 40px;
  text-align: center;
  display: inline-block;
}
.noo-mortgage-paymant-calculator .spinner > div {
  width: 10px;
  height: 10px;
  background-color: #071645;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.noo-mortgage-paymant-calculator .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.noo-mortgage-paymant-calculator .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.blog-wrap.grid.layout-container-fluid,
.blog-wrap.masonry.layout-container-fluid {
  padding: 0 15px;
}
.hentry.sticky {
  position: relative;
}
.hentry.sticky:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 75px solid #fcac2f;
  border-left: 75px solid transparent;
  z-index: 3;
}
.hentry.sticky:after {
  width: 40px;
  height: 40px;
  font-family: 'FontAwesome';
  content: "\f08d";
  position: absolute;
  right: 0px;
  top: -6px;
  color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  line-height: 56px;
  font-size: 18px;
  z-index: 3;
}
.blog-wrap .blog-inner .entry-thumbnail {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.blog-wrap .blog-inner .entry-thumbnail a.prettyPhoto {
  position: absolute;
  top: 0;
  width: 56px;
  height: 55px;
  right: 0;
  line-height: 54px;
  font-size: 16px;
  text-align: center;
  color: #fcac2f;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  z-index: 2;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta {
  padding-left: 0;
  margin-bottom: 0;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta li,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta li,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta li {
  margin: 0 5px 0 0;
  display: inline-block;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta li:first-child,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta li:first-child,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta li:first-child {
  margin-left: 0;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta li.entry-meta-author a,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta li.entry-meta-author a,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta li.entry-meta-author a {
  color: #fcac2f;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta li:after,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta li:after,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta li:after {
  content: '/';
  margin-left: 5px;
}
.blog-wrap .blog-inner article.post .entry-post-meta-wrap ul.entry-meta li:last-child:after,
.blog-wrap .blog-inner article.page .entry-post-meta-wrap ul.entry-meta li:last-child:after,
.blog-wrap .blog-inner article.product .entry-post-meta-wrap ul.entry-meta li:last-child:after {
  content: none;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-thumbnail-wrap,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-thumbnail-wrap,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-thumbnail-wrap {
  margin: 0 !important;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-thumbnail-wrap .entry-thumbnail_overlay img,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-thumbnail-wrap .entry-thumbnail_overlay img,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-thumbnail-wrap .entry-thumbnail_overlay img {
  width: 100%;
  display: block;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-content-wrap h3.entry-title,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-content-wrap h3.entry-title,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-content-wrap h3.entry-title {
  margin: 0 0 0px 0;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-content-wrap h3.entry-title a,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-content-wrap h3.entry-title a,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-content-wrap h3.entry-title a {
  color: #071645;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-content-wrap h3.entry-title a:hover,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-content-wrap h3.entry-title a:hover,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-content-wrap h3.entry-title a:hover {
  color: #fcac2f;
}
.blog-wrap .blog-inner article.post .post-item .entry-wrap .entry-content-wrap .noo-content,
.blog-wrap .blog-inner article.page .post-item .entry-wrap .entry-content-wrap .noo-content,
.blog-wrap .blog-inner article.product .post-item .entry-wrap .entry-content-wrap .noo-content {
  color: #333;
  font-size: 14px;
  line-height: 24px;
  padding: 12px 0;
  margin: 0;
}
.blog-wrap .blog-inner article.post .entry-wrap:hover a.entry-thumbnail_overlay:before,
.blog-wrap .blog-inner article.page .entry-wrap:hover a.entry-thumbnail_overlay:before,
.blog-wrap .blog-inner article.product .entry-wrap:hover a.entry-thumbnail_overlay:before {
  opacity: 1;
}
.blog-wrap .blog-inner article.post .entry-wrap:hover a.prettyPhoto,
.blog-wrap .blog-inner article.page .entry-wrap:hover a.prettyPhoto,
.blog-wrap .blog-inner article.product .entry-wrap:hover a.prettyPhoto {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.blog-wrap .blog-inner article.format-video > .entry-thumbnail-wrap > .entry-thumbnail a.prettyPhoto {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  opacity: 0.8;
  width: 80px;
  height: 80px;
  font-size: 80px;
  line-height: 80px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.blog-wrap .blog-inner .jp-interface {
  background-color: transparent;
  height: 140px;
  border: 2px solid #666666;
}
.blog-wrap .blog-inner .jp-play-pause {
  padding: 0;
  text-align: center;
  background-color: transparent;
  height: 100%;
  width: auto;
  margin-left: 25px;
}
.blog-wrap .blog-inner .jp-play-pause i {
  font-size: 38px;
  line-height: 136px;
}
.blog-wrap .blog-inner .jp-progress {
  margin: 0 0 0 10px;
}
.blog-wrap .blog-inner .jp-seek-bar {
  height: 18px;
  border: 2px solid #666666;
  width: 100% !important;
}
.blog-wrap .blog-inner .jp-volume {
  height: 18px;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto auto auto 50px;
  padding: 0;
}
.blog-wrap .blog-inner .jp-volume > li {
  display: inline-block;
  vertical-align: middle;
}
.blog-wrap .blog-inner .jp-volume-bar {
  height: 18px;
  width: 100px;
  border: 2px solid #666666;
  margin-left: 10px;
}
.blog-wrap .blog-inner .jp-volume-bar-value {
  height: 14px;
}
.blog-wrap .blog-inner .readmore {
  color: #071645;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}
.blog-wrap .blog-inner .readmore:hover {
  color: #fcac2f;
}
.blog-wrap .blog-inner article.format-link .post-format-icon,
.blog-wrap .blog-inner article.format-quote .post-format-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 34px;
  float: left;
  margin-right: 30px;
  color: #fff;
}
.blog-wrap .blog-inner article.format-link .entry-content-wrap,
.blog-wrap .blog-inner article.format-quote .entry-content-wrap {
  position: relative;
  overflow: hidden;
}
.blog-wrap .blog-inner article.format-link .entry-content-link {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(7, 22, 69, 0.8);
}
.blog-wrap .blog-inner article.format-link .entry-content-link a {
  color: inherit;
}
.blog-wrap .blog-inner article.format-quote .entry-content-quote blockquote {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(7, 22, 69, 0.8);
}
.blog-wrap .blog-inner article.format-quote .entry-content-quote blockquote p:before {
  content: "“";
  margin-right: 5px;
}
.blog-wrap .blog-inner article.format-quote .entry-content-quote blockquote cite {
  text-transform: uppercase;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
  font-size: 14px;
}
.blog-wrap .blog-inner.blog-style-horizontal article {
  margin-bottom: 50px;
  padding-bottom: 0px;
  background: #fff;
}
.blog-wrap .blog-inner.blog-style-horizontal article .post-item {
  margin-bottom: 30px;
}
.blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n+1) .entry-wrap .entry-thumbnail-wrap {
  float: left;
  width: 50%;
  padding: 0 15px 0 0 !important;
}
.blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n+1) .entry-wrap .entry-content-wrap {
  float: right;
  width: 50% !important;
  padding: 15px 25px;
}
@media (max-width: 767px) {
  .blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n+1) .entry-wrap .entry-thumbnail-wrap {
    float: left;
    width: 100%;
    padding: 0 !important;
  }
  .blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n+1) .entry-wrap .entry-content-wrap {
    float: right;
    width: 100% !important;
    padding: 0 !important;
  }
}
.blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n) .entry-wrap .entry-thumbnail-wrap {
  float: right;
  width: 50%;
  padding: 0 0 0 15px !important;
}
.blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n) .entry-wrap .entry-content-wrap {
  float: left;
  width: 50% !important;
  padding: 15px 25px;
}
@media (max-width: 767px) {
  .blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n) .entry-wrap .entry-thumbnail-wrap {
    float: left;
    width: 100%;
    padding: 0 !important;
  }
  .blog-wrap .blog-inner.blog-style-horizontal article.has-post-thumbnail:nth-child(2n) .entry-wrap .entry-content-wrap {
    float: right;
    width: 100% !important;
    padding: 0 !important;
  }
}
.blog-wrap .blog-inner.blog-style-list article {
  margin-bottom: 30px;
  background: #fff;
}
.blog-wrap .blog-inner.blog-style-list article .post-item .entry-wrap .entry-thumbnail-wrap {
  width: 100%;
}
.blog-wrap .blog-inner.blog-style-list article .post-item .entry-wrap .entry-content-wrap {
  width: 100%;
  padding: 20px 30px 30px;
}
@media (max-width: 767px) {
  .blog-wrap .blog-inner.blog-style-list article .post-item .entry-wrap .entry-content-wrap {
    padding: 15px 20px;
    width: 100%;
    float: none;
  }
}
.blog-wrap .blog-inner.blog-style-list article .post-item .entry-wrap .entry-content-wrap .readmore {
  display: block;
}
.blog-wrap .blog-inner.blog-style-masonry article,
.blog-wrap .blog-inner.blog-style-grid article {
  float: left;
}
.blog-wrap .blog-inner.blog-style-grid.blog-col-4 article {
  width: 25%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-grid.blog-col-3 article {
  width: 33.3333%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-grid.blog-col-2 article {
  width: 50%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-grid article .post-item .entry-wrap .entry-content-wrap .entry-detail h3.entry-title a {
  font-size: 16px;
}
.blog-wrap .blog-inner.blog-style-grid article .post-item .entry-wrap .entry-content-wrap .entry-detail .entry-post-meta-wrap ul.entry-meta li.entry-meta-category {
  display: none;
}
.blog-wrap .blog-inner.blog-style-grid article .post-item .entry-wrap .entry-content-wrap .entry-detail .entry-excerpt {
  padding: 0 20px;
}
.blog-wrap .blog-inner.blog-style-grid article .post-item .entry-wrap .entry-content-wrap .entry-detail .entry-excerpt p {
  font-size: 14px;
}
.blog-wrap .blog-inner.blog-style-grid article .post-item .entry-wrap .entry-content-wrap .entry-detail a.btn-readmore span.span-text {
  padding: 10px 0px;
}
.blog-wrap .blog-inner.blog-style-masonry.blog-col-2 article {
  width: 50%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-masonry.blog-col-3 article {
  width: 33.33333333%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-masonry.blog-col-4 article {
  width: 25%;
  padding: 0 15px 30px;
}
.blog-wrap .blog-inner.blog-style-search h3.entry-title {
  font-size: 24px;
  margin: 0;
  line-height: 1.5;
}
.blog-wrap .blog-inner.blog-style-search h3.entry-title a {
  font-size: 16px;
}
.blog-wrap .blog-inner.blog-style-search .entry-post-meta-wrap {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
}
.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 66.66666667%;
}
.blog-wrap .entry-thumbnail-wrap,
.rubino-post .rubino-post-image {
  /*owl-carousel*/
}
.blog-wrap .entry-thumbnail-wrap .owl-carousel,
.rubino-post .rubino-post-image .owl-carousel {
  margin: 0;
}
.blog-wrap .entry-thumbnail-wrap .owl-carousel .owl-nav div,
.rubino-post .rubino-post-image .owl-carousel .owl-nav div {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
  cursor: pointer;
  text-align: center;
  background-color: rgba(252, 172, 47, 0.3);
  z-index: 200;
  padding: 0;
  opacity: 0;
  color: #fff;
  font-size: 15px;
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-wrap .entry-thumbnail-wrap .owl-carousel .owl-nav div:hover,
.rubino-post .rubino-post-image .owl-carousel .owl-nav div:hover {
  background-color: #fff;
  color: #fcac2f;
}
.blog-wrap .entry-thumbnail-wrap .owl-carousel .owl-nav div.owl-next,
.rubino-post .rubino-post-image .owl-carousel .owl-nav div.owl-next {
  right: 15px;
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.blog-wrap .entry-thumbnail-wrap .owl-carousel .owl-nav div.owl-prev,
.rubino-post .rubino-post-image .owl-carousel .owl-nav div.owl-prev {
  left: 15px;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.blog-wrap .entry-thumbnail-wrap:hover .owl-carousel .owl-nav div,
.rubino-post .rubino-post-image:hover .owl-carousel .owl-nav div {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}
.entry-content:after,
.comment-text:after {
  content: "";
  clear: both;
  display: block;
}
.entry-content table,
.comment-text table {
  border-collapse: collapse !important;
}
.entry-content table,
.comment-text table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.entry-content table > thead > tr > th,
.comment-text table > thead > tr > th,
.entry-content table > tbody > tr > th,
.comment-text table > tbody > tr > th,
.entry-content table > tfoot > tr > th,
.comment-text table > tfoot > tr > th,
.entry-content table > thead > tr > td,
.comment-text table > thead > tr > td,
.entry-content table > tbody > tr > td,
.comment-text table > tbody > tr > td,
.entry-content table > tfoot > tr > td,
.comment-text table > tfoot > tr > td {
  padding: 15px 0;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #666666;
  text-align: center;
}
.entry-content table > thead > tr > th,
.comment-text table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #666666;
}
.entry-content table > caption + thead > tr:first-child > th,
.comment-text table > caption + thead > tr:first-child > th,
.entry-content table > colgroup + thead > tr:first-child > th,
.comment-text table > colgroup + thead > tr:first-child > th,
.entry-content table > thead:first-child > tr:first-child > th,
.comment-text table > thead:first-child > tr:first-child > th,
.entry-content table > caption + thead > tr:first-child > td,
.comment-text table > caption + thead > tr:first-child > td,
.entry-content table > colgroup + thead > tr:first-child > td,
.comment-text table > colgroup + thead > tr:first-child > td,
.entry-content table > thead:first-child > tr:first-child > td,
.comment-text table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.entry-content table > tbody + tbody,
.comment-text table > tbody + tbody {
  border-top: 1px solid #666666;
  background-color: #fcfcfc;
}
.entry-content blockquote p,
.comment-text blockquote p {
  position: relative;
  overflow: hidden;
}
.entry-content blockquote cite,
.comment-text blockquote cite {
  display: block;
  font-size: 15px;
}
.entry-content input[type="submit"],
.comment-text input[type="submit"] {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  color: #fff;
  border: none;
  padding: 9px 25px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.entry-content dd,
.comment-text dd,
.entry-content dt,
.comment-text dt {
  line-height: 2.2;
}
.entry-meta-tag {
  font-size: 0;
}
.entry-meta-tag label {
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(7, 22, 69, 0.9);
  font-weight: normal;
  margin-right: 20px;
  text-transform: uppercase;
}
.entry-meta-tag a {
  display: inline-block;
  margin-right: 20px;
  line-height: 1;
  font-size: 16px;
  color: rgba(7, 22, 69, 0.9);
}
.entry-meta-tag a:before {
  content: "#";
  margin-right: 5px;
  display: inline-block;
}
/*
* Single Post
* 
 */
.single-post .site-content-single-post {
  overflow: hidden;
}
.single-post .site-content-single-post .blog-wrap {
  margin: 0 auto;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article {
  background-color: transparent;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(7, 22, 69, 0.2);
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap {
  margin-top: 0px;
  margin-bottom: 40px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info {
  position: relative;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info h1 {
  line-height: 1;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info h1 {
    font-size: 18px;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .entry-excerpt {
  font-style: italic;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap {
  padding: 0;
  margin-top: 30px;
  min-height: 40px;
  line-height: 45px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap ul.entry-meta {
  width: 50%;
  float: left;
  margin: 0;
  padding: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap ul.entry-meta li {
  float: left;
  display: inline-block;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap {
  width: auto;
  float: right;
  text-align: right;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap label {
  float: left;
  font-weight: 700;
  margin: 0 10px 0 0;
  display: inline-block;
  text-transform: uppercase;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap ul.social-share {
  display: inline-block;
  float: left;
  padding: 0;
  margin: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap ul.social-share li {
  list-style: none;
  display: inline-block;
  float: left;
  margin: 0 5px;
  width: 30px;
  height: 30px;
  line-height: 36px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background: #333;
  color: #fff;
  font-size: 0;
  border-radius: 5px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap ul.social-share li:hover {
  background: #fcac2f;
  color: #fff;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap ul.social-share li i {
  font-size: 12px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap ul.social-share li i:before {
  padding: 0;
}
@media (max-width: 480px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap {
    margin-top: 0;
  }
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap ul.entry-meta,
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .meta-wrap .social-share-wrap {
    width: 100%;
    float: none;
    clear: both;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap .entry-meta-info .entry-post-format {
  display: none;
}
@media (max-width: 479px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article .entry-post-meta-wrap {
    margin: 30px 0;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-thumbnail-wrap img {
  margin-bottom: 50px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-thumbnail-wrap .wp-post-image {
  width: 100%;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-thumbnail-wrap .entry-thumbnail:before {
  display: none;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article h3.entry-title {
  font-size: 32px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content {
  margin-bottom: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(7, 22, 69, 0.2);
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content .post-password-form input[type="password"] {
  border: 1px solid #fcac2f;
  background-color: transparent;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content .post-password-form input[type=submit] {
  background-color: #fcac2f;
  color: #fff;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content .post-password-form input[type=submit]:hover {
  background-color: #fdc061;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content .noo-full-width {
  padding: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .entry-content .noo-full-width .container {
  padding: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article blockquote {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  border-left-width: 5px;
  border-left-style: solid;
  border-color: #fcac2f;
  font-family: 'PT Serif', serif;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article blockquote img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article iframe {
  width: 100%;
}
@media (min-width: 992px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article iframe {
    min-height: 470px;
  }
}
@media (max-width: 991px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article iframe {
    min-height: 380px;
  }
}
@media (max-width: 767px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner article iframe {
    min-height: 300px;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info {
  margin-top: -1px;
  padding-top: 40px;
  position: relative;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-avatar {
  float: left;
  width: 70px;
  margin: 0 20px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-avatar .alignnone {
  margin: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-avatar img.avatar {
  border-radius: 100%;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-description {
  overflow: hidden;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-description:before {
  left: 0;
  bottom: 45px;
  width: 2px;
  content: '';
  z-index: 1;
  position: absolute;
  height: 80px;
  background: #fcac2f;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-description h3.author-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .author-info .author-description p {
  position: relative;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
  font-family: 'PT Serif', serif;
  color: #666666;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .comment-slogan {
  width: 100%;
  height: 60px;
  color: #fff;
  display: block;
  font-size: 18px;
  margin-top: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  font-family: 'Lato';
  text-transform: uppercase;
  background: rgba(252, 172, 47, 0.9);
  letter-spacing: 1px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article .comment-slogan i {
  margin-right: 10px;
  font-size: 30px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner article article.format-video > .entry-thumbnail-wrap > .entry-thumbnail a.prettyPhoto {
  width: 100px;
  height: 100px;
  font-size: 100px;
  line-height: 100px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation {
  margin-top: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #071645;
  font-family: 'Lato';
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-content {
  vertical-align: middle;
  padding: 0 15px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-content span {
  font-style: italic;
  color: #333;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-left:after,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-right:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-left i,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-right i,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-left:after,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .post-navigation-right:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous {
  width: 50%;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a {
  width: 100%;
  display: table;
  padding: 30px 0px;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-left {
  width: 20px;
  position: relative;
  display: table-cell;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-left .post-navigation-label {
  display: none;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-left .post-navigation-icon {
  left: calc(50% - 10px);
  color: #071645;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 2;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-left:after {
  left: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-content {
  display: table-cell;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-content .post-navigation-title {
  text-align: left;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 479px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous a .post-navigation-content {
    display: none;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous:hover a .post-navigation-left i,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous:hover a .post-navigation-left:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous:hover a .post-navigation-left .post-navigation-label {
  color: #fcac2f;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous:hover a .post-navigation-content .post-navigation-title {
  color: #fcac2f;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next {
  width: 50%;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a {
  padding: 30px 0px;
  display: table;
  width: 100%;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-right {
  width: 20px;
  position: relative;
  display: table-cell;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-right .post-navigation-label {
  display: none;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-right .post-navigation-icon {
  right: calc(50% - 10px);
  color: #071645;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  z-index: 2;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-right:after {
  right: 0;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-content {
  display: table-cell;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-content .post-navigation-title {
  text-align: right;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
@media (max-width: 479px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next a .post-navigation-content {
    display: none;
  }
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next:hover a .post-navigation-right i,
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next:hover a .post-navigation-right:after {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next:hover a .post-navigation-right .post-navigation-label {
  color: #fcac2f;
}
.single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next:hover a .post-navigation-content .post-navigation-title {
  color: #fcac2f;
}
@media (max-width: 767px) {
  .single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-previous,
  .single-post .site-content-single-post .blog-wrap .blog-inner .post-navigation .nav-links .nav-next {
    width: 50%;
    float: left;
    display: table;
  }
}
@media (max-width: 991px) {
  .single-post .site-content-single-post .site-content-archive-inner .blog-wrap .blog-inner article .entry-content-wrap {
    padding: 0px;
  }
  .single-post .site-content-single-post .site-content-archive-inner .blog-wrap .blog-inner article h1 {
    font-size: 25px;
  }
}
.entry-comments {
  padding: 20px 0px;
}
.entry-comments h3.comments-title {
  font-size: 18px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
.entry-comments .entry-comments-list {
  padding-bottom: 15px;
}
.entry-comments .entry-comments-list ol.commentlist {
  padding: 0;
  margin: 0;
  list-style: none;
}
.entry-comments .entry-comments-list ol.commentlist li .children {
  margin: 0px;
  padding-left: 45px;
}
@media (max-width: 767px) {
  .entry-comments .entry-comments-list ol.commentlist li .children {
    padding-left: 15px;
  }
}
.entry-comments .entry-comments-list ol.commentlist li .children li {
  list-style: none;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-body {
  padding: 15.5px 0px;
}
@media (max-width: 767px) {
  .entry-comments .entry-comments-list ol.commentlist li .comment-body {
    padding: 15px 0px;
  }
}
.entry-comments .entry-comments-list ol.commentlist li img.avatar {
  margin: 0 15px 0 0;
  width: 56px;
  display: block;
  border-radius: 100%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  float: left;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text {
  position: relative;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-reply-link,
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-edit-link {
  text-transform: uppercase;
  color: #333;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-reply-link:hover,
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-edit-link:hover {
  color: #fcac2f;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-reply-link {
  margin-right: 40px;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-reply-link:before {
  content: "\f21e";
  font-family: Ionicons;
  padding-right: 10px;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text .comment-meta .comment-edit-link:before {
  content: "\f044";
  font-family: FontAwesome;
  padding-right: 5px;
  font-size: 14px;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-text p {
  margin: auto;
}
.entry-comments .entry-comments-list ol.commentlist li .author {
  position: relative;
}
.entry-comments .entry-comments-list ol.commentlist li .author .author-name {
  font-size: 13px;
  color: #071645;
  text-transform: capitalize;
  font-weight: bold;
}
.entry-comments .entry-comments-list ol.commentlist li .author .author-name a {
  color: inherit;
}
.entry-comments .entry-comments-list ol.commentlist li .author .comment-meta-date {
  margin-left: 10px;
  position: relative;
  padding-left: 10px;
  display: inline-block;
}
.entry-comments .entry-comments-list ol.commentlist li .author .comment-meta-date:before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  background-color: #fcac2f;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 10px;
  left: 0px;
}
.entry-comments .entry-comments-list ol.commentlist li .comment-respond {
  margin-top: 20px;
}
.entry-comments .entry-comments-list ol.commentlist li:last-child .comment-text {
  border-bottom: none;
  padding-bottom: 0;
}
.entry-comments .entry-comments-list nav.comment-navigation {
  margin-bottom: 20px;
}
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers {
  display: inline-block;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #666666;
  color: #333;
  font-size: 14px;
  border-radius: 100%;
}
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers.next,
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers.prev {
  border: none;
  border-radius: 0;
  font-size: 18px;
}
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers:hover,
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers:focus {
  color: #202020;
}
.entry-comments .entry-comments-list nav.comment-navigation .page-numbers.current {
  color: #fcac2f;
}
.entry-comments .entry-comments-list nav.comment-navigation.comment-navigation-bottom {
  margin-bottom: 0;
  margin-top: 20px;
}
.comment-reply-title {
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
}
.comment-fields-wrap .comment-fields-inner .row {
  margin: 0;
}
#respond .comment-form input[type="text"],
#respond .comment-form input[type="search"],
#respond .comment-form input[type="email"],
#respond .comment-form input[type="url"],
#respond .comment-form input[type="password"],
#respond .comment-form textarea {
  padding: 0 20px;
  width: 100%;
  height: 45px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: 24px;
  border: 1px solid rgba(102, 102, 102, 0.2);
  border-radius: 0;
  background-color: #fff;
  font-style: italic;
  font-family: 'Lato';
}
#respond .comment-form input[type="text"] .placeholder,
#respond .comment-form input[type="search"] .placeholder,
#respond .comment-form input[type="email"] .placeholder,
#respond .comment-form input[type="url"] .placeholder,
#respond .comment-form input[type="password"] .placeholder,
#respond .comment-form textarea .placeholder {
  color: #666666;
}
#respond .comment-form input[type="text"]:focus,
#respond .comment-form input[type="search"]:focus,
#respond .comment-form input[type="email"]:focus,
#respond .comment-form input[type="url"]:focus,
#respond .comment-form input[type="password"]:focus,
#respond .comment-form textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#respond .comment-form textarea {
  padding: 15px 20px;
  height: 140px;
}
#respond .comment-form .form-group {
  margin-bottom: 10px;
}
#respond .comment-form .form-submit {
  margin: 5px 0 10px 0;
  text-transform: uppercase;
}
#respond .comment-form .form-submit input#submit {
  font-weight: bold;
  background: #333;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  border-radius: 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  text-transform: uppercase;
  border: none;
  background: #fcac2f;
}
#respond .comment-form .form-submit input#submit:hover {
  background: #071645;
}
#respond .comment-form .comment-notes,
#respond .comment-form .logged-in-as {
  display: none;
}
/* 
* General
*/
.blog-wrap {
  margin-bottom: 0;
  /* 
    *   Blog Masonry & Grid
    */
}
.blog-wrap .blog-inner article .post-item .entry-wrap {
  position: relative;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-thumbnail-wrap {
  position: relative;
  margin-bottom: 20px;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-thumbnail-wrap a.entry-thumbnail_overlay img {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-thumbnail-wrap a.entry-thumbnail_overlay:after {
  content: '\f045';
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 36px;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-thumbnail-wrap .date-overlay {
  display: none;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail h3 {
  font-weight: 700;
  margin-top: 0;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail .btn-readmore {
  position: relative;
  background-color: #e6e6e6;
  display: block;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail .btn-readmore span {
  padding: 10px 0px;
  display: block;
  text-align: center;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail .btn-readmore:hover {
  background-color: #1a1a1a;
  color: #fff;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail .btn-readmore:hover:before {
  left: 120%;
}
.blog-wrap .blog-inner article .post-item .entry-wrap .entry-content-wrap .entry-detail .entry-excerpt {
  margin-bottom: 30px;
}
.blog-wrap .blog-inner article .post-item:hover .entry-wrap .entry-thumbnail-wrap .entry-thumbnail a.entry-thumbnail_overlay img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-wrap .blog-inner article .post-item:hover .entry-wrap .entry-thumbnail-wrap .entry-thumbnail a.entry-thumbnail_overlay:after {
  top: 50%;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
@media (max-width: 767px) {
  .blog-wrap .blog-inner article .post-item {
    padding: 0 0 20px 0;
  }
}
.blog-wrap.large-image .blog-inner article {
  margin-bottom: 30px;
  background: #fff;
}
.blog-wrap.grid .blog-inner .entry-wrap,
.blog-wrap.masonry .blog-inner .entry-wrap {
  position: relative;
  overflow: hidden;
}
.blog-wrap.grid .blog-inner .entry-wrap .post-date,
.blog-wrap.masonry .blog-inner .entry-wrap .post-date {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  height: 80px;
  width: 80px;
  text-align: center;
  background: #fff;
  line-height: 35px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fcac2f;
  padding: 5px 0;
  font-size: 18px;
  z-index: 2;
}
.blog-wrap.grid .blog-inner .entry-wrap .post-date span,
.blog-wrap.masonry .blog-inner .entry-wrap .post-date span {
  font-weight: 700;
  font-size: 30px;
  display: table;
  width: 100%;
  padding: 3px 0 0;
}
.blog-wrap.grid .blog-inner .entry-wrap .entry-thumbnail-wrap:before,
.blog-wrap.masonry .blog-inner .entry-wrap .entry-thumbnail-wrap:before {
  background: rgba(7, 22, 69, 0.5);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.blog-wrap.grid .blog-inner .entry-wrap .entry-meta-date,
.blog-wrap.masonry .blog-inner .entry-wrap .entry-meta-date {
  display: none;
}
.blog-wrap.grid .blog-inner .entry-wrap .entry-post-meta-wrap,
.blog-wrap.masonry .blog-inner .entry-wrap .entry-post-meta-wrap {
  margin-bottom: 10px;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info {
  left: 0;
  z-index: 2;
  bottom: 20px;
  padding: 0 30px;
  position: absolute;
  -webkit-transform: translateY(120px);
  -ms-transform: translateY(120px);
  transform: translateY(120px);
  color: #fff;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .entry-title,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .entry-title {
  margin: 0;
  padding: 0;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .entry-title a,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .entry-title a {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .entry-title a:hover,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .entry-title a:hover {
  color: #fcac2f;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .entry-meta .entry-meta-date,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .entry-meta .entry-meta-date {
  display: none;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .entry-meta a,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .entry-meta a {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .readmore,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .readmore {
  height: 33px;
  color: #fff;
  padding: 0 15px;
  line-height: 33px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #fcac2f;
}
.blog-wrap.grid .blog-inner .entry-wrap .noo-info .readmore:hover,
.blog-wrap.masonry .blog-inner .entry-wrap .noo-info .readmore:hover {
  background: #071645;
}
.blog-wrap.grid .blog-inner .entry-wrap:hover .entry-thumbnail-wrap:before,
.blog-wrap.masonry .blog-inner .entry-wrap:hover .entry-thumbnail-wrap:before {
  background: rgba(7, 22, 69, 0.8);
}
.blog-wrap.grid .blog-inner .entry-wrap:hover .noo-info,
.blog-wrap.masonry .blog-inner .entry-wrap:hover .noo-info {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.hide_author .blog-inner .entry-post-meta-wrap ul.entry-meta .entry-meta-author {
  display: none;
}
.hide_comment .blog-inner .entry-post-meta-wrap ul.entry-meta .entry-meta-comment {
  display: none;
}
.hide_category .blog-inner .entry-post-meta-wrap ul.entry-meta .entry-meta-category {
  display: none;
}
.hide_date .blog-inner .entry-post-meta-wrap ul.entry-meta .entry-meta-date {
  display: none;
}
.hide_readmore .blog-inner article .entry-wrap .entry-content-wrap .entry-detail .btn-readmore {
  display: none;
}
@media (max-width: 991px) {
  .blog-inner.blog-style-grid article,
  .rubino-post.blog-style-grid article,
  .blog-inner.blog-style-masonry article,
  .rubino-post.blog-style-masonry article {
    width: 50% !important;
  }
}
@media (max-width: 767px) {
  .blog-inner .jp-interface,
  .rubino-post .jp-interface {
    height: 70px;
  }
  .blog-inner .jp-play-pause,
  .rubino-post .jp-play-pause {
    margin-left: 20px;
  }
  .blog-inner .jp-play-pause i,
  .rubino-post .jp-play-pause i {
    line-height: 68px;
  }
  .blog-inner .jp-volume,
  .rubino-post .jp-volume {
    margin: auto auto auto 30px;
  }
  .blog-inner .jp-volume-bar,
  .rubino-post .jp-volume-bar {
    display: none !important;
  }
  .blog-inner.blog-style-medium-image .entry-thumbnail-wrap,
  .rubino-post.blog-style-medium-image .entry-thumbnail-wrap {
    float: none;
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 100%;
  }
  .blog-inner.blog-style-grid,
  .rubino-post.blog-style-grid,
  .blog-inner.blog-style-masonry,
  .rubino-post.blog-style-masonry {
    margin: 0;
  }
  .blog-inner.blog-style-grid article,
  .rubino-post.blog-style-grid article,
  .blog-inner.blog-style-masonry article,
  .rubino-post.blog-style-masonry article {
    width: 100% !important;
    padding: 0px !important;
  }
  .blog-inner.blog-style-grid article + article,
  .rubino-post.blog-style-grid article + article,
  .blog-inner.blog-style-masonry article + article,
  .rubino-post.blog-style-masonry article + article {
    margin-top: 30px;
  }
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .blog-inner article.format-link .post-format-icon,
  .rubino-post article.format-link .post-format-icon,
  .blog-inner article.format-quote .post-format-icon,
  .rubino-post article.format-quote .post-format-icon {
    display: none;
  }
  .site-content-single-post .blog-inner .author-info .author-avatar {
    float: none;
    margin: 0 auto 20px auto;
  }
  .site-content-single-post .blog-inner .author-info .author-description {
    padding-left: 0;
  }
  .entry-comments .entry-comments-list ol.commentlist li img.avatar {
    width: 65px;
    margin-right: 10px;
  }
  .entry-comments .entry-comments-list ol.commentlist li .comment-text {
    padding-left: 0;
  }
  .entry-comments .entry-comments-list ol.commentlist li .author .comment-meta {
    position: relative;
  }
  .entry-comments-form-avatar {
    display: none;
  }
}
.noo-site-content-page .blog-inner article {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .noo-site-content-page .blog-inner article {
    padding: 0px;
  }
}
.relate-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  line-height: 26px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.noo-related-post {
  position: relative;
}
.noo-related-post .noo-related-post-item .noo-related-post-thumb {
  min-height: 145px;
  background-size: 100% 100%;
}
.noo-related-post .noo-related-post-item .noo-related-post-content {
  padding: 10px 15px;
}
.noo-related-post .noo-related-post-item .noo-related-post-content .noo-related-post-title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 0;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta {
  padding-left: 0;
  margin-bottom: 10px;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta li {
  margin: 0 5px 0 0;
  display: inline-block;
  font-size: 12px;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta li:first-child {
  margin-left: 0;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta li.entry-meta-author a {
  color: #fcac2f;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta li:after {
  content: '/';
  margin-left: 5px;
}
.noo-related-post .noo-related-post-item .noo-related-post-content ul.entry-meta li:last-child:after {
  content: none;
}
.noo-related-post .noo-related-post-item .noo-related-post-content .entry-excerpt {
  font-size: 13px;
  margin-bottom: 10px;
}
.noo-related-post .noo-related-post-item .noo-related-post-content .readmore {
  font-size: 14px;
}
.noo-related-post.noo-col-2 .noo-related-post-item {
  width: 50%;
  float: left;
}
.noo-related-post.noo-col-3 .noo-related-post-item {
  width: 33.33%;
  float: left;
}
.noo-related-post.noo-col-4 .noo-related-post-item {
  width: 25%;
  float: left;
}
.noo-related-post.noo-col-5 .noo-related-post-item {
  width: 20%;
  float: left;
}
@media (max-width: 991px) {
  .noo-related-post.noo-col-4 .noo-related-post-item,
  .noo-related-post.noo-col-5 .noo-related-post-item {
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .noo-related-post.noo-col-3 .noo-related-post-item,
  .noo-related-post.noo-col-4 .noo-related-post-item,
  .noo-related-post.noo-col-5 .noo-related-post-item {
    width: 50%;
  }
}
.noo-related-post.grid {
  display: inline-block;
  width: 100%;
}
.noo-related-post.grid .noo-related-post-item {
  padding: 0 15px;
  display: inline-block;
}
.noo-related-post.grid .noo-related-post-item .noo-related-post-thumb img {
  width: 100%;
}
.noo-related-post.list .noo-related-post-content {
  padding-top: 0;
}
.noo-related-post.list .noo-related-post-content .noo-related-post-title {
  margin-top: 0;
}
.noo-related-post.list .noo-related-post-item {
  width: 50%;
  float: left;
  padding: 10px 0;
}
.noo-related-post.list .noo-related-post-thumb.has-thumbnail {
  min-height: 100px;
  float: left;
  width: 25%;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .noo-related-post.list.noo-col-2 .noo-related-post-item {
    width: 100%;
    float: none;
    display: table;
  }
}
.noo-related-post.slider .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.noo-related-post.slider .owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #666666;
  margin-right: 10px;
}
.noo-related-post.slider .owl-dots .owl-dot.active {
  border-color: #fcac2f;
}
.comment-form-author,
.comment-form-email {
  width: calc(50% - 15px);
  display: inline-block;
  float: left;
  margin-bottom: 30px;
}
.comment-form-author {
  margin-right: 30px;
}
.comment-form-comment {
  margin-bottom: 30px;
}
.search-results .entry-content-wrap {
  width: 100%;
  padding: 20px 30px 30px;
}
@media (max-width: 767px) {
  .search-results .entry-content-wrap {
    padding: 15px 20px;
    width: 100%;
    float: none;
  }
}
.search-results .entry-content-wrap .readmore {
  display: block;
}
.search-results .entry-content-wrap .entry-excerpt p {
  margin-bottom: 0;
}
/**
 * 4.0 - Woccommerce
 * ----------------------------------------------------------------------------
 */
/*
* 1. Archive Product
* 
*/
.layout-container-fluid.archive-product-wrap {
  padding: 0 15px;
}
.tooltip-inner {
  white-space: nowrap;
}
.custom-select {
  position: relative;
}
.custom-select:before {
  content: "\f107";
  font-family: FontAwesome;
  padding: 8px 8px;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
  text-align: center;
  width: 15px;
  height: 100%;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.custom-select:after {
  content: "";
  display: block;
  clear: both;
}
.custom-select select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select select::-ms-expand {
  display: none;
}
.breadcrumb-archive-product-wrap .container {
  position: relative;
}
.breadcrumb-archive-product-wrap .catalog-filter {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 44px;
}
.catalog-filter {
  padding-left: 15px;
  padding-right: 15px;
}
.woocommerce .woocommerce-ordering {
  margin: 0;
  position: relative;
}
.woocommerce .woocommerce-ordering:after {
  content: "\f107";
  font-family: FontAwesome;
  padding: 8px 8px;
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
  text-align: center;
  width: 15px;
  height: 100%;
  pointer-events: none;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.woocommerce .woocommerce-ordering select::-ms-expand {
  display: none;
}
.woocommerce .woocommerce-ordering select {
  color: #071645;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.woocommerce .woocommerce-result-count {
  margin: 0;
  font-size: 13px;
  margin-right: 30px;
  line-height: 44px;
  text-transform: uppercase;
  color: #071645;
  font-weight: bold;
}
.catalog-filter-invisible .catalog-filter,
.result-count-invisible .woocommerce-result-count,
.catalog-ordering-invisible .woocommerce-ordering {
  display: none;
}
.woocommerce .star-rating {
  float: none;
  font-size: 12px;
  width: 90px;
  letter-spacing: 5px;
  margin-top: 20px;
  margin: 20px auto 0 auto;
}
.woocommerce .star-rating span {
  color: rgba(252, 172, 47, 0.5);
}
.woocommerce form .form-row {
  padding: 0;
  margin-bottom: 10px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  height: 44px;
  background-color: transparent;
  color: #333;
  font-size: 14px;
  border: 1px solid #fcac2f !important;
}
.woocommerce form .form-row textarea {
  height: 130px;
}
.woocommerce form .form-row label {
  font-weight: normal;
  font-size: 13px;
  color: #202020;
  text-transform: uppercase;
  margin-bottom: 0;
}
.woocommerce form .form-row label.inline input[type=checkbox],
.woocommerce form .form-row label.inline input[type=radio] {
  margin: auto;
  vertical-align: middle;
}
.site-content-archive-product .noo-filter-categories-mobile {
  display: none;
}
@media (max-width: 991px) {
  .site-content-archive-product .noo-filter-categories-mobile {
    display: block;
    cursor: pointer;
  }
  .site-content-archive-product .noo-filter-categories-mobile:after {
    content: "\f067";
    font-family: FontAwesome;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid #333;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    margin-left: 10px;
  }
  .site-content-archive-product .noo-filter-categories-mobile.active:after {
    content: "\f068";
  }
}
.site-content-archive-product .noo-filter-categories {
  width: 80%;
  padding-left: 15px;
  float: left;
}
.site-content-archive-product .noo-filter-categories li {
  display: inline-block;
  margin-right: 15px;
}
.site-content-archive-product .noo-filter-categories li.current-cat a {
  color: #fcac2f;
  font-weight: bold;
}
.site-content-archive-product .noo-filter-categories li span {
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .site-content-archive-product .noo-filter-categories {
    width: 100%;
    float: none;
    display: none;
  }
  .site-content-archive-product .noo-filter-categories li {
    display: block;
    margin-right: 0;
  }
  .site-content-archive-product .noo-filter-categories li span {
    display: none;
  }
}
.site-content-archive-product .noo-filter-search {
  text-align: right;
  width: 20%;
  float: right;
  padding-right: 15px;
  padding-left: 0;
  list-style-type: none;
}
.site-content-archive-product .noo-filter-search li {
  display: inline-block;
  cursor: pointer;
}
.site-content-archive-product .noo-filter-search li.active span#noo-shop-search-btn,
.site-content-archive-product .noo-filter-search li.active span.invert-color {
  color: #fcac2f;
}
.site-content-archive-product .noo-filter-search li span {
  margin: 0 20px;
  float: left;
}
@media (max-width: 991px) {
  .site-content-archive-product .noo-filter-search {
    text-align: left;
    width: 100%;
    float: left;
  }
}
.site-content-archive-product .noo-search-field {
  display: none;
}
.site-content-archive-product .archive-product-wrap {
  position: relative;
}
.site-content-archive-product .archive-product-wrap .noo-filter-widget.left .woocommerce-sidebar,
.site-content-archive-product .archive-product-wrap .noo-filter-widget.right .woocommerce-sidebar {
  display: block;
}
.site-content-archive-product .archive-product-wrap .noo-filter-widget.left .woocommerce-sidebar aside,
.site-content-archive-product .archive-product-wrap .noo-filter-widget.right .woocommerce-sidebar aside {
  width: 100%;
}
@media (max-width: 991px) {
  .site-content-archive-product .archive-product-wrap .noo-filter-widget.left,
  .site-content-archive-product .archive-product-wrap .noo-filter-widget.right {
    float: none;
  }
}
.site-content-archive-product .archive-product-wrap .noo-filter-widget.left {
  float: left;
}
.site-content-archive-product .archive-product-wrap .noo-filter-widget.right {
  float: right;
}
@media (max-width: 991px) {
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget {
    padding: 0;
    width: 100%;
  }
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget .widget-title {
    cursor: pointer;
    padding: 10px 0;
    margin: 0;
  }
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget .widget-title:before {
    content: "\f105";
    font-family: FontAwesome;
    width: auto;
    height: auto;
    top: auto;
    background: none;
    right: 0;
  }
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget .widget-title span {
    padding-left: 0;
  }
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget .widget-title.active:before {
    content: "\f107";
  }
  .site-content-archive-product .archive-product-wrap .noo-filter-widget .widget ul {
    display: none;
  }
}
.site-content-archive-product .archive-product-wrap.noo-loading-product .product-listing,
.site-content-archive-product .archive-product-wrap.noo-loaded-product .product-listing {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.site-content-archive-product .archive-product-wrap .noo-shop-results-bar {
  margin-top: 30px;
}
.site-content-archive-product .archive-product-wrap .noo-shop-results-bar a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #666666;
  margin: 0 5px;
}
.site-content-archive-product .archive-product-wrap .noo-shop-results-bar a:before {
  content: "\f00d";
  font-family: FontAwesome;
  padding-right: 10px;
}
.site-content-archive-product .archive-product-wrap .noo-shop-results-bar a:first-child {
  margin-left: 0;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar {
  display: none;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside {
  width: 25%;
  float: left;
  margin-top: 0;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside h4.widget-title {
  margin-bottom: 25px;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside .noo-filter-widgets,
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside .noo-price-filter {
  list-style-type: none;
  padding-left: 0;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside .noo-filter-color a {
  display: inline-block;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside .tagcloud .current-tag {
  background-color: #fcac2f;
  color: #ffffff;
}
.site-content-archive-product .archive-product-wrap .woocommerce-sidebar aside ul li.wc-layered-nav-term a {
  display: inline-block;
}
.site-content-archive-product .archive-product-wrap .noo-search-field {
  display: none;
}
.site-content-archive-product .archive-product-wrap .product-listing {
  margin: 0 -15px 30px;
  min-height: 450px;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.site-content-archive-product .archive-product-wrap .product-listing .product-item-wrap {
  float: left;
}
@media (max-width: 480px) {
  .site-content-archive-product .archive-product-wrap .product-listing {
    margin: 0 0 30px 0;
  }
}
.site-content-archive-product .archive-product-wrap .noo-spinner {
  text-align: center;
  position: relative;
  top: 50px;
}
.site-content-archive-product .archive-product-wrap .noo-spinner .fa-spinner {
  position: absolute;
}
.site-content-archive-product .archive-product-wrap .woocommerce-no-products {
  min-height: 450px;
  margin-top: 30px;
}
.site-content-archive-product .woocommerce-pagination {
  text-align: center;
}
.site-content-archive-product .woocommerce-pagination .noo-shop-loadmore,
.site-content-archive-product .woocommerce-pagination .noo-show-all {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #fcac2f;
  padding: 10px 60px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-content-archive-product .woocommerce-pagination .noo-shop-loadmore i,
.site-content-archive-product .woocommerce-pagination .noo-show-all i {
  line-height: 0;
}
.site-content-archive-product .woocommerce-pagination .noo-shop-loadmore:hover,
.site-content-archive-product .woocommerce-pagination .noo-show-all:hover {
  background-color: #fcac2f;
  color: #fff;
}
.site-content-archive-product .woocommerce-pagination .noo-shop-loadmore.noo-hide-loadmore,
.site-content-archive-product .woocommerce-pagination .noo-show-all.noo-hide-loadmore,
.site-content-archive-product .woocommerce-pagination .noo-shop-loadmore.noo-show-loadmore,
.site-content-archive-product .woocommerce-pagination .noo-show-all.noo-show-loadmore {
  opacity: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.site-content-archive-product .woocommerce-pagination .noo-show-all {
  background-color: #fcac2f;
  color: #fff;
}
.site-content-archive-product .container-fluid .noo-filter-categories,
.site-content-archive-product .container-fluid .noo-filter-search {
  padding-right: 30px;
}
.site-content-archive-product {
  padding: 80px 0 50px;
}
.noo-product-category > a {
  display: block;
}
.noo-product-category .product-category-inner {
  position: relative;
}
.noo-product-category .product-category-inner:hover .text-left h2 {
  color: #fcac2f;
}
.noo-product-category .product-category-inner:hover .text-left h2:before {
  width: 100%;
  left: 0;
}
.noo-product-category .product-category-inner .text-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.noo-product-category .product-category-inner .text-left h2 {
  font-size: 24px;
  margin: 0;
}
.noo-product-category .product-category-inner .text-left h2 mark {
  color: inherit;
  background-color: transparent;
  padding: 0;
}
.noo-product-category .product-category-inner .text-left h2:before {
  content: '';
  width: 0;
  height: 2px;
  bottom: -2px;
  background-color: #fcac2f;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
/* --------------------------------------------
	CHECKOUT
-------------------------------------------- */
h3.check-out-title {
  font-size: 25px;
  color: #25262C;
  text-align: center;
  max-width: 570px;
  margin: auto;
  border-bottom: 2px solid #fff;
  padding-bottom: 20px;
  margin-top: 20px;
}
.woocommerce-page .noo-site-content-page,
.woocommerce-checkout .noo-site-content-page {
  padding: 80px 0 50px;
}
.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.login {
  border: none;
  padding: 20px 0;
  border-radius: 0;
  max-width: 570px;
  margin: auto;
  border-bottom: 1px solid #666666;
  text-align: center;
}
.woocommerce-checkout form.checkout_coupon input.input-text,
.woocommerce-checkout form.login input.input-text {
  max-width: 370px;
  text-align: center !important;
}
.woocommerce-checkout form.checkout_coupon .form-row-first,
.woocommerce-checkout form.login .form-row-first,
.woocommerce-checkout form.checkout_coupon .form-row-last,
.woocommerce-checkout form.login .form-row-last {
  width: 100%;
  float: none;
}
.checkout_coupon + form.checkout.woocommerce-checkout,
.login + form.checkout.woocommerce-checkout {
  margin-top: 70px;
}
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding: 15px 0;
  background-color: #071645;
}
.woocommerce-checkout .checkout .col-2 #ship-to-different-address {
  float: none;
}
.woocommerce-checkout .checkout .col-2 #ship-to-different-address label {
  font-weight: bold !important;
  margin: 0;
  font-weight: normal;
  display: inline-block;
}
.woocommerce-checkout .checkout .col-2 #ship-to-different-address input[type=checkbox] {
  margin: 0;
  display: inline-block;
}
.select2-container .select2-choice {
  background-color: transparent;
  border: 1px solid #fcac2f;
  padding: 8px 20px;
  font-size: 14px;
  color: #858585;
  text-transform: none;
  border-radius: 0;
  height: 44px;
}
.select2-container .select2-choice:hover {
  text-decoration: none;
}
.select2-drop-active {
  border: none;
  background-color: #f5f5f5;
}
.create-account,
.create-account input.input-text {
  text-align: center !important;
}
#customer_details {
  padding-bottom: 30px;
  border-bottom: 1px solid #666666;
}
.woocommerce table.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table.order_details {
  border: none;
  margin: 0 0 50px 0;
  border-radius: 0;
}
.woocommerce table.woocommerce-checkout-review-order-table td,
.woocommerce table.shop_table.order_details td,
.woocommerce table.woocommerce-checkout-review-order-table th,
.woocommerce table.shop_table.order_details th {
  border-top: none;
  border-bottom: 1px solid #666666;
  padding: 7px 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.8;
  width: 50%;
}
.woocommerce table.woocommerce-checkout-review-order-table td a,
.woocommerce table.shop_table.order_details td a,
.woocommerce table.woocommerce-checkout-review-order-table th a,
.woocommerce table.shop_table.order_details th a {
  color: #777777;
}
.woocommerce table.woocommerce-checkout-review-order-table td strong,
.woocommerce table.shop_table.order_details td strong,
.woocommerce table.woocommerce-checkout-review-order-table th strong,
.woocommerce table.shop_table.order_details th strong {
  font-weight: normal;
}
.woocommerce table.woocommerce-checkout-review-order-table tbody td.product-total,
.woocommerce table.shop_table.order_details tbody td.product-total,
.woocommerce table.woocommerce-checkout-review-order-table thead th.product-total,
.woocommerce table.shop_table.order_details thead th.product-total {
  text-align: center;
}
.woocommerce table.woocommerce-checkout-review-order-table tbody tr:last-child td,
.woocommerce table.shop_table.order_details tbody tr:last-child td {
  border-bottom: 1px solid #fcac2f;
}
.woocommerce table.woocommerce-checkout-review-order-table thead th,
.woocommerce table.shop_table.order_details thead th {
  border-bottom: 1px solid #fcac2f;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom-width: 1px;
  color: #fcac2f;
  font-weight: bold;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce table.shop_table.order_details tfoot th {
  font-weight: normal;
  border-top: none;
  font-weight: bold !important;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot,
.woocommerce table.shop_table.order_details tfoot {
  border-top: 1px solid #fcac2f !important;
  text-transform: uppercase;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce table.shop_table.order_details tfoot td {
  text-align: center;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce table.shop_table.order_details tfoot td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce table.shop_table.order_details tfoot th {
  border-color: #fcac2f;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot .order-total td,
.woocommerce table.shop_table.order_details tfoot .order-total td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce table.shop_table.order_details tfoot .order-total th {
  border-color: transparent;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal th,
.woocommerce table.shop_table.order_details tfoot .cart-subtotal th,
.woocommerce table.woocommerce-checkout-review-order-table tfoot .cart-subtotal td,
.woocommerce table.shop_table.order_details tfoot .cart-subtotal td {
  border-top: 1px solid #fcac2f !important;
}
.woocommerce table.woocommerce-checkout-review-order-table td.product-name dl.variation,
.woocommerce table.shop_table.order_details td.product-name dl.variation {
  margin: 0;
}
.woocommerce table.woocommerce-checkout-review-order-table td.product-name dl.variation dd,
.woocommerce table.shop_table.order_details td.product-name dl.variation dd,
.woocommerce table.woocommerce-checkout-review-order-table td.product-name dl.variation dt,
.woocommerce table.shop_table.order_details td.product-name dl.variation dt {
  float: none;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.woocommerce table.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce table.shop_table.order_details .cart-subtotal td,
.woocommerce table.woocommerce-checkout-review-order-table .order-total td,
.woocommerce table.shop_table.order_details .order-total td,
.woocommerce table.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce table.shop_table.order_details .cart-subtotal th,
.woocommerce table.woocommerce-checkout-review-order-table .order-total th,
.woocommerce table.shop_table.order_details .order-total th {
  font-weight: bold;
}
.woocommerce table.woocommerce-checkout-review-order-table .cart-subtotal td strong,
.woocommerce table.shop_table.order_details .cart-subtotal td strong,
.woocommerce table.woocommerce-checkout-review-order-table .order-total td strong,
.woocommerce table.shop_table.order_details .order-total td strong,
.woocommerce table.woocommerce-checkout-review-order-table .cart-subtotal th strong,
.woocommerce table.shop_table.order_details .cart-subtotal th strong,
.woocommerce table.woocommerce-checkout-review-order-table .order-total th strong,
.woocommerce table.shop_table.order_details .order-total th strong {
  font-weight: bold;
}
.woocommerce-checkout #payment {
  background-color: transparent;
  border-radius: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 10px;
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}
.payment_box_title {
  background-color: #fafafa;
  padding: 5px 0;
}
.payment_box_title.active label {
  color: #fcac2f;
}
.payment_box_title label {
  color: #222222;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
  line-height: 2.4;
  vertical-align: middle;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 5px 0 0;
  vertical-align: middle;
}
.woocommerce-checkout #payment ul.payment_methods li img {
  margin: 0;
}
.woocommerce-checkout #payment div.payment_box {
  background-color: transparent;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 0;
  padding: 0;
  margin: 20px 0;
  color: #777;
}
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}
.woocommerce-checkout #payment div.form-row {
  padding: 0;
  margin: 30px 0 0 0;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: none;
}
.woocommerce-checkout .entry-content .woocommerce {
  background: #fff;
  padding: 30px;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #order_review_heading {
  text-transform: uppercase;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-billing-fields h3 {
  text-transform: uppercase;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-billing-fields p {
  margin-bottom: 25px;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-billing-fields p label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: capitalize;
  color: #333;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-billing-fields p label .required {
  color: #fcac2f;
}
@media (max-width: 479px) {
  .woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-billing-fields p {
    width: 100%;
  }
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-shipping-fields h3 {
  display: none;
  text-transform: uppercase;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-shipping-fields p {
  margin-bottom: 25px;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-shipping-fields p label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
  text-transform: capitalize;
}
.woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-shipping-fields p label .required {
  color: #fcac2f;
}
@media (max-width: 479px) {
  .woocommerce-checkout .entry-content .woocommerce .woocommerce-checkout #customer_details .woocommerce-shipping-fields p {
    width: 100%;
  }
}
/* --------------------------------------------
	MY-ACCOUNT
-------------------------------------------- */
.woocommerce table.my_account_orders {
  font-size: 14px;
  border: 2px solid #666666;
}
.woocommerce table.my_account_orders th {
  font-size: 13px;
  color: #222222;
  text-transform: uppercase;
  text-align: center;
  line-height: 2.4;
  padding: 14px 12px;
  font-weight: normal;
  border-bottom-width: 2px;
}
.woocommerce table.my_account_orders td {
  text-align: center;
}
.woocommerce table.my_account_orders .order-actions .button {
  margin: 0;
  min-width: 120px;
}
.woocommerce-account .customer_login_form_wrap .col2-set {
  margin-top: 5%;
  margin-bottom: 10%;
}
.woocommerce-account .customer_login_form_wrap .col2-set .col-1,
.woocommerce-account .customer_login_form_wrap .col2-set .col-2 {
  background: #fff;
  border: 2px solid #666666;
  padding: 50px 45px 30px 45px;
}
.woocommerce-account .customer_login_form_wrap .col2-set p {
  text-align: left;
}
.woocommerce-account .customer_login_form_wrap .col2-set h2 {
  position: relative;
  text-align: left;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 5px;
  line-height: 1;
}
.woocommerce-account .customer_login_form_wrap .col2-set h2:before {
  content: "";
  position: absolute;
  left: -10px;
  width: 2px;
  height: 100%;
  background: #fcac2f;
}
.woocommerce-account .customer_login_form_wrap .col2-set label {
  text-align: left;
  font-weight: 900;
}
.woocommerce-account .customer_login_form_wrap form.login,
.woocommerce-account .customer_login_form_wrap form.register {
  padding: 0;
  margin: 0;
  text-align: left;
  border: none;
  border-radius: 0;
}
.woocommerce-account .customer_login_form_wrap form.login .form-row,
.woocommerce-account .customer_login_form_wrap form.register .form-row {
  margin-bottom: 20px;
}
.woocommerce-account .customer_login_form_wrap form.login label,
.woocommerce-account .customer_login_form_wrap form.register label {
  margin-bottom: 5px;
}
.woocommerce-account .customer_login_form_wrap form.login .input-text,
.woocommerce-account .customer_login_form_wrap form.register .input-text {
  height: 40px;
  text-align: left;
  background: #fff;
  border: 2px solid #666666;
}
.woocommerce-account .customer_login_form_wrap form.login label[for="rememberme"],
.woocommerce-account .customer_login_form_wrap form.register label[for="rememberme"] {
  display: block;
  text-transform: none;
  margin-top: 12px;
  color: #333;
  font-weight: normal;
}
.woocommerce-account .customer_login_form_wrap form.login label[for="rememberme"] input,
.woocommerce-account .customer_login_form_wrap form.register label[for="rememberme"] input {
  margin-right: 5px;
}
.woocommerce-account .customer_login_form_wrap form.login .button,
.woocommerce-account .customer_login_form_wrap form.register .button {
  margin-top: 5px;
  min-width: 120px;
  text-transform: uppercase;
  font-weight: 900;
  float: left;
  margin-right: 30px;
}
/* --------------------------------------------
	MY WISHLIST
-------------------------------------------- */
.wishlist-title {
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 40px;
}
.wishlist-title h2 {
  margin-top: 0;
}
.woocommerce table.shop_table.cart.wishlist_table {
  font-size: 100%;
}
.woocommerce table.shop_table.cart.wishlist_table tr th span {
  font-weight: bold;
  color: #fcac2f;
  font-size: 16px;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-remove a {
  font-size: 0;
  height: 16px;
  width: 16px;
  margin: auto;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-remove a:before {
  font-size: 16px;
  font-family: 'Pe-icon-7-stroke';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e681";
}
.woocommerce table.shop_table.cart.wishlist_table tr td {
  text-align: left;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-name a {
  font-size: 16px;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-stock-status span.wishlist-in-stock,
.woocommerce table.shop_table.cart.wishlist_table td.product-stock-status span.wishlist-out-of-stock {
  font-size: 13px;
  text-transform: uppercase;
  color: #888888;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-stock-status span.wishlist-in-stock {
  color: #D90000;
}
.woocommerce table.shop_table.cart.wishlist_table .product-add-to-cart {
  text-align: right;
  padding-right: 30px;
}
.woocommerce table.shop_table.cart.wishlist_table .product-add-to-cart .add-to-cart-wrap {
  display: inline-block;
  position: relative;
  left: auto;
  bottom: auto;
  opacity: 1;
  z-index: 5;
}
.woocommerce table.shop_table.cart.wishlist_table tbody tr:last-child td {
  boder-bottom: none;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-add-to-cart a {
  font-size: 15px;
  min-width: 140px;
  padding: 10px 10px;
  background-color: #fcac2f !important;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  -webkit-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  line-height: 25px;
  border: none;
  float: left;
  opacity: 1;
  line-height: 40px;
}
.woocommerce table.shop_table.cart.wishlist_table td.product-add-to-cart a:hover {
  background-color: #fdc061 !important;
}
.woocommerce table.shop_table.cart.wishlist_table tfoot td {
  border-top: 2px solid #666666;
}
.wishlist_table tr th.product-thumbnail {
  width: 120px;
}
.wishlist_table tr th.product-remove {
  width: 70px;
}
.wishlist_table tr td.product-thumbnail a {
  max-width: 70px;
}
/* --------------------------------------------
	PRODUCT LISTING
	-------------------------------------------- */
.woocommerce .product-item-wrap,
.single-product .product-item-wrap {
  padding: 0 15px 0 15px;
  margin: 30px 0;
}
@media (max-width: 480px) {
  .woocommerce .product-item-wrap,
  .single-product .product-item-wrap {
    padding: 5px;
  }
}
.woocommerce .star-rating.rating-invisible,
.single-product .star-rating.rating-invisible {
  display: none;
}
.woocommerce .product-item-inner,
.single-product .product-item-inner {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #f7f7f7;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.woocommerce .product-thumb img,
.single-product .product-thumb img {
  width: 100%;
}
.woocommerce .product-flash-wrap,
.single-product .product-flash-wrap {
  position: absolute;
  top: 15px;
  left: 0;
}
.woocommerce .product-flash-wrap span,
.single-product .product-flash-wrap span {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 0;
  z-index: 1;
  padding-left: 20px;
  border-bottom: 1px solid #333;
  display: block;
}
.woocommerce .product-flash-wrap span:last-child,
.single-product .product-flash-wrap span:last-child {
  border: none;
}
.woocommerce .product-flash-wrap span:first-child,
.single-product .product-flash-wrap span:first-child {
  border-bottom: 1px solid #333;
}
.woocommerce .product-thumb,
.single-product .product-thumb {
  position: relative;
  background-color: #fff;
}
.woocommerce .product-thumb .product-thumb-primary,
.single-product .product-thumb .product-thumb-primary {
  overflow: hidden;
}
.woocommerce .product-thumb .product-thumb-primary img,
.single-product .product-thumb .product-thumb-primary img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.woocommerce .product-thumb .product-thumb-secondary img,
.single-product .product-thumb .product-thumb-secondary img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.woocommerce .product-thumb-secondary,
.single-product .product-thumb-secondary {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.woocommerce .product-link,
.single-product .product-link {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  visibility: visible;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce .add-to-cart-wrap,
.single-product .add-to-cart-wrap {
  display: inline-block;
  position: absolute;
  opacity: 0;
  left: -10px;
  bottom: 12px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce .add-to-cart-wrap a,
.single-product .add-to-cart-wrap a {
  text-align: center;
  color: #333;
  display: inline-block;
  padding: 0;
  opacity: 0;
  position: relative;
  border-radius: 0;
  font-size: 14px;
  min-width: 0;
  vertical-align: middle;
}
.woocommerce .add-to-cart-wrap a:before,
.single-product .add-to-cart-wrap a:before {
  font-family: FontAwesome;
  content: "\f217";
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  line-height: 1;
  vertical-align: middle;
  display: none;
}
.woocommerce .add-to-cart-wrap a:hover,
.single-product .add-to-cart-wrap a:hover {
  background-color: transparent;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a,
.single-product .yith-wcwl-wishlistaddedbrowse a,
.woocommerce .yith-wcwl-wishlistexistsbrowse a,
.single-product .yith-wcwl-wishlistexistsbrowse a,
.woocommerce .add_to_wishlist,
.single-product .add_to_wishlist,
.woocommerce .compare,
.single-product .compare,
.woocommerce .product-quick-view,
.single-product .product-quick-view,
.woocommerce .btn_add_to_cart,
.single-product .btn_add_to_cart,
.woocommerce .add-to-cart-wrap a,
.single-product .add-to-cart-wrap a {
  text-align: center;
  color: #333;
  background-color: transparent;
  display: inline-block;
  padding: 0;
  position: relative;
  border-radius: 0;
  font-size: 0px;
  min-width: 0;
  vertical-align: middle;
  opacity: 1;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a i,
.single-product .yith-wcwl-wishlistaddedbrowse a i,
.woocommerce .yith-wcwl-wishlistexistsbrowse a i,
.single-product .yith-wcwl-wishlistexistsbrowse a i,
.woocommerce .add_to_wishlist i,
.single-product .add_to_wishlist i,
.woocommerce .compare i,
.single-product .compare i,
.woocommerce .product-quick-view i,
.single-product .product-quick-view i,
.woocommerce .btn_add_to_cart i,
.single-product .btn_add_to_cart i,
.woocommerce .add-to-cart-wrap a i,
.single-product .add-to-cart-wrap a i {
  font-size: 16px;
  line-height: 28px;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a:hover,
.single-product .yith-wcwl-wishlistaddedbrowse a:hover,
.woocommerce .yith-wcwl-wishlistexistsbrowse a:hover,
.single-product .yith-wcwl-wishlistexistsbrowse a:hover,
.woocommerce .add_to_wishlist:hover,
.single-product .add_to_wishlist:hover,
.woocommerce .compare:hover,
.single-product .compare:hover,
.woocommerce .product-quick-view:hover,
.single-product .product-quick-view:hover,
.woocommerce .btn_add_to_cart:hover,
.single-product .btn_add_to_cart:hover,
.woocommerce .add-to-cart-wrap a:hover,
.single-product .add-to-cart-wrap a:hover,
.woocommerce .yith-wcwl-wishlistaddedbrowse a.active,
.single-product .yith-wcwl-wishlistaddedbrowse a.active,
.woocommerce .yith-wcwl-wishlistexistsbrowse a.active,
.single-product .yith-wcwl-wishlistexistsbrowse a.active,
.woocommerce .add_to_wishlist.active,
.single-product .add_to_wishlist.active,
.woocommerce .compare.active,
.single-product .compare.active,
.woocommerce .product-quick-view.active,
.single-product .product-quick-view.active,
.woocommerce .btn_add_to_cart.active,
.single-product .btn_add_to_cart.active,
.woocommerce .add-to-cart-wrap a.active,
.single-product .add-to-cart-wrap a.active {
  color: #fcac2f;
  background: transparent;
}
.woocommerce .add-to-cart-wrap a,
.single-product .add-to-cart-wrap a {
  font-weight: normal;
  font-size: 14px;
}
.woocommerce .add-to-cart-wrap a i,
.single-product .add-to-cart-wrap a i {
  margin-right: 5px;
}
.woocommerce .add-to-cart-wrap a:after,
.single-product .add-to-cart-wrap a:after {
  display: none;
}
.woocommerce .wishlist_table .add-to-cart-wrap a.loading,
.single-product .wishlist_table .add-to-cart-wrap a.loading {
  font-size: 0 !important;
  min-height: 38px;
}
.woocommerce .wishlist_table .add-to-cart-wrap a:after,
.single-product .wishlist_table .add-to-cart-wrap a:after {
  display: block;
  font-size: 14px;
  text-align: center;
  width: 100%;
  right: 0;
  line-height: 38px;
  top: 0;
}
.woocommerce .added_to_cart.wc-forward,
.single-product .added_to_cart.wc-forward {
  padding-right: 30px;
}
.woocommerce .added_to_cart.wc-forward i,
.single-product .added_to_cart.wc-forward i {
  color: #fcac2f;
}
.woocommerce .compare,
.single-product .compare {
  right: 30px;
}
.woocommerce .compare .blockUI.blockOverlay,
.single-product .compare .blockUI.blockOverlay {
  background: none !important;
}
.woocommerce .product-quick-view,
.single-product .product-quick-view {
  right: 20px;
  margin-right: 0;
}
.woocommerce .product-quick-view i,
.single-product .product-quick-view i {
  font-size: 20px;
}
.woocommerce .product-quick-view i.fa-spin,
.single-product .product-quick-view i.fa-spin {
  font-size: 16px;
}
.woocommerce .product-quick-view.active i.fa-spin:before,
.single-product .product-quick-view.active i.fa-spin:before {
  content: "\f110";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  font-family: FontAwesome;
}
.woocommerce .product-quick-view,
.single-product .product-quick-view,
.woocommerce .compare,
.single-product .compare {
  position: absolute;
  bottom: 10px;
  opacity: 0;
}
.woocommerce .product-quick-view i,
.single-product .product-quick-view i,
.woocommerce .compare i,
.single-product .compare i {
  font-size: 20px;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a,
.single-product .yith-wcwl-wishlistaddedbrowse a {
  color: #fcac2f;
}
.woocommerce .added-spinner,
.single-product .added-spinner {
  color: #fcac2f;
}
.woocommerce .yith-wcwl-add-to-wishlist,
.single-product .yith-wcwl-add-to-wishlist {
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 25px;
  right: 0px;
  opacity: 0;
  line-height: 1;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce .yith-wcwl-add-to-wishlist span.feedback,
.single-product .yith-wcwl-add-to-wishlist span.feedback {
  display: none;
}
.woocommerce .yith-wcwl-add-to-wishlist + div.clear,
.single-product .yith-wcwl-add-to-wishlist + div.clear {
  display: none;
}
.woocommerce .yith-wcwl-add-button,
.single-product .yith-wcwl-add-button {
  font-size: 0;
  position: relative;
}
.woocommerce .yith-wcwl-add-button a i,
.single-product .yith-wcwl-add-button a i {
  margin-right: 0px;
}
.woocommerce .yith-wcwl-add-button .ajax-loading,
.single-product .yith-wcwl-add-button .ajax-loading {
  display: none !important;
}
.woocommerce .add_to_wishlist:before,
.single-product .add_to_wishlist:before,
.woocommerce .yith-wcwl-wishlistaddedbrowse a:before,
.single-product .yith-wcwl-wishlistaddedbrowse a:before,
.woocommerce .yith-wcwl-wishlistexistsbrowse a:before,
.single-product .yith-wcwl-wishlistexistsbrowse a:before,
.woocommerce .compare.added:before,
.single-product .compare.added:before {
  font-family: FontAwesome;
  content: "\f08a";
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
}
.woocommerce .yith-wcwl-wishlistexistsbrowse a:before,
.single-product .yith-wcwl-wishlistexistsbrowse a:before {
  color: #fcac2f;
}
.woocommerce .add_to_wishlist i,
.single-product .add_to_wishlist i {
  font-size: 16px;
  line-height: 1;
}
.woocommerce .add_to_wishlist i:before,
.single-product .add_to_wishlist i:before {
  line-height: 1;
}
.woocommerce .compare i.fa-spinner,
.single-product .compare i.fa-spinner {
  font-size: 16px;
  line-height: 28px;
}
.woocommerce .compare.added:before,
.single-product .compare.added:before {
  content: "\f268" !important;
  font-family: Ionicons;
  font-size: 20px;
  line-height: 28px;
}
.woocommerce .add_to_wishlist.added-spinner:before,
.single-product .add_to_wishlist.added-spinner:before {
  content: "";
  display: none;
}
.woocommerce .added-spinner:before,
.single-product .added-spinner:before {
  content: "\f110";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.woocommerce .product-info,
.single-product .product-info {
  padding: 10px 20px;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 3;
  min-height: 92px;
}
.woocommerce .product-info h3,
.single-product .product-info h3 {
  position: relative;
  top: 0;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #071645;
  text-align: left;
  font-weight: 400;
  width: 100%;
  padding-right: 0px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce .product-info .star-rating,
.single-product .product-info .star-rating {
  position: absolute;
  right: 15px;
  bottom: 16px;
  margin-top: 0;
  font-size: 12px;
  width: 86px;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce .product-info span.price,
.single-product .product-info span.price {
  font-size: 16px!important;
  font-weight: 500;
  display: block;
  padding: 0px 0px;
  text-align: left;
  color: #333 !important;
}
.woocommerce .product-info span.price ins,
.single-product .product-info span.price ins {
  display: inline-block;
  text-decoration: none;
  font-weight: 500 !important;
  font-style: inherit;
  color: #333;
}
.woocommerce .product-info span.price del,
.single-product .product-info span.price del {
  color: #666666;
  display: inline-block;
  opacity: 1;
  margin-right: 0px;
  font-weight: inherit;
  font-style: inherit;
}
.woocommerce .product-item-wrap.active .product-thumb .product-thumb-secondary,
.single-product .product-item-wrap.active .product-thumb .product-thumb-secondary,
.woocommerce .product-item-wrap:hover .product-thumb .product-thumb-secondary,
.single-product .product-item-wrap:hover .product-thumb .product-thumb-secondary {
  opacity: 1;
}
.woocommerce .product-item-wrap.active .product-info h3,
.single-product .product-item-wrap.active .product-info h3,
.woocommerce .product-item-wrap:hover .product-info h3,
.single-product .product-item-wrap:hover .product-info h3 {
  color: #fcac2f;
}
.woocommerce .product-item-wrap.active .product-info span.price,
.single-product .product-item-wrap.active .product-info span.price,
.woocommerce .product-item-wrap:hover .product-info span.price,
.single-product .product-item-wrap:hover .product-info span.price,
.woocommerce .product-item-wrap.active .product-info .star-rating,
.single-product .product-item-wrap.active .product-info .star-rating,
.woocommerce .product-item-wrap:hover .product-info .star-rating,
.single-product .product-item-wrap:hover .product-info .star-rating {
  opacity: 0;
}
.woocommerce .product-item-wrap.active .product-info .add-to-cart-wrap,
.single-product .product-item-wrap.active .product-info .add-to-cart-wrap,
.woocommerce .product-item-wrap:hover .product-info .add-to-cart-wrap,
.single-product .product-item-wrap:hover .product-info .add-to-cart-wrap {
  left: 20px;
  opacity: 1;
}
.woocommerce .product-item-wrap.active .product-info .yith-wcwl-add-to-wishlist,
.single-product .product-item-wrap.active .product-info .yith-wcwl-add-to-wishlist,
.woocommerce .product-item-wrap:hover .product-info .yith-wcwl-add-to-wishlist,
.single-product .product-item-wrap:hover .product-info .yith-wcwl-add-to-wishlist {
  opacity: 1;
}
.woocommerce .product-item-wrap.active .product-info .product-quick-view,
.single-product .product-item-wrap.active .product-info .product-quick-view,
.woocommerce .product-item-wrap:hover .product-info .product-quick-view,
.single-product .product-item-wrap:hover .product-info .product-quick-view,
.woocommerce .product-item-wrap.active .product-info .compare,
.single-product .product-item-wrap.active .product-info .compare,
.woocommerce .product-item-wrap:hover .product-info .compare,
.single-product .product-item-wrap:hover .product-info .compare {
  opacity: 1;
}
@media (max-width: 479px) and (min-width: 321px) {
  .woocommerce .product-item-wrap .product-info .yith-wcwl-add-to-wishlist,
  .single-product .product-item-wrap .product-info .yith-wcwl-add-to-wishlist,
  .woocommerce .product-item-wrap .product-info .product-quick-view,
  .single-product .product-item-wrap .product-info .product-quick-view,
  .woocommerce .product-item-wrap .product-info .compare,
  .single-product .product-item-wrap .product-info .compare {
    opacity: 0 !important;
  }
}
.woocommerce.columns-2 .product-item-wrap,
.single-product.columns-2 .product-item-wrap {
  width: 50%;
  float: left;
}
.woocommerce.columns-3 .product-item-wrap,
.single-product.columns-3 .product-item-wrap {
  width: 33.33333333%;
  float: left;
}
.woocommerce.columns-4 .product-item-wrap,
.single-product.columns-4 .product-item-wrap {
  width: 25%;
  float: left;
}
.woocommerce.columns-5 .product-item-wrap,
.single-product.columns-5 .product-item-wrap {
  width: 20%;
  float: left;
}
.woocommerce.columns-6 .product-item-wrap,
.single-product.columns-6 .product-item-wrap {
  width: 16.6666666%;
  float: left;
}
.woocommerce.product-slider .product-item-wrap,
.single-product.product-slider .product-item-wrap {
  float: none;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .woocommerce.columns-6 .product-item-wrap,
  .single-product.columns-6 .product-item-wrap,
  .woocommerce.columns-5 .product-item-wrap,
  .single-product.columns-5 .product-item-wrap,
  .woocommerce.columns-4 .product-item-wrap,
  .single-product.columns-4 .product-item-wrap {
    width: 33.33%;
  }
}
@media (max-width: 768px) {
  .woocommerce.columns-6 .product-item-wrap,
  .single-product.columns-6 .product-item-wrap,
  .woocommerce.columns-5 .product-item-wrap,
  .single-product.columns-5 .product-item-wrap,
  .woocommerce.columns-4 .product-item-wrap,
  .single-product.columns-4 .product-item-wrap,
  .woocommerce.columns-3 .product-item-wrap,
  .single-product.columns-3 .product-item-wrap {
    width: 50%;
  }
}
@media (max-width: 414px) {
  .woocommerce.columns-6 .product-item-wrap,
  .single-product.columns-6 .product-item-wrap,
  .woocommerce.columns-5 .product-item-wrap,
  .single-product.columns-5 .product-item-wrap,
  .woocommerce.columns-4 .product-item-wrap,
  .single-product.columns-4 .product-item-wrap,
  .woocommerce.columns-3 .product-item-wrap,
  .single-product.columns-3 .product-item-wrap,
  .woocommerce.columns-2 .product-item-wrap,
  .single-product.columns-2 .product-item-wrap {
    width: 100%;
  }
}
.woocommerce .product-flash-wrap {
  z-index: 2;
}
.woocommerce > .woocommerce {
  margin: 0;
}
.woocommerce > .woocommerce .product-item-wrap {
  padding: 0;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner {
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-thumb {
  width: 33.33%;
  float: left;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-thumb .product-thumb-primary img {
  padding-top: 0;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-thumb .product-thumb-secondary img {
  padding-top: 0;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-thumb .product-flash-wrap span {
  margin-top: 0;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info {
  padding: 0 0 0 30px;
  width: 66.66%;
  float: left;
  text-align: left;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info .star-rating {
  position: relative;
  text-align: left;
  right: 0;
  margin: 20px 0 10px 0;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info .star-rating:before {
  left: 0;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info span.price {
  margin-top: 25px;
  padding-top: 10px;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info h3 {
  width: 100%;
  padding-right: 0;
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info {
    padding-left: 10px;
  }
  .woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info h3 {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-info span.price {
    margin-top: 0;
  }
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner .product-actions {
  display: none;
}
.woocommerce > .woocommerce .product-item-wrap .product-item-inner:hover {
  -webkit-transform: translate(0, -3px);
  -ms-transform: translate(0, -3px);
  transform: translate(0, -3px);
}
.woocommerce.columns-1 .woocommerce .product-item-wrap .product-info .star-rating {
  bottom: 0;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap .product-info span.price {
  margin-top: 10px !important;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap .product-info span.price,
.woocommerce.columns-1 .woocommerce .product-item-wrap .product-info .star-rating {
  opacity: 1;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap .product-info .add-to-cart-wrap {
  display: none;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap:hover .product-info span.price,
.woocommerce.columns-1 .woocommerce .product-item-wrap:hover .product-info .star-rating {
  opacity: 1;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap:hover .product-info .yith-wcwl-add-to-wishlist {
  opacity: 0;
}
.woocommerce.columns-1 .woocommerce .product-item-wrap:hover .product-info .product-quick-view,
.woocommerce.columns-1 .woocommerce .product-item-wrap:hover .product-info .compare {
  opacity: 0;
}
.woocommerce.columns-1 .product-item-wrap {
  width: 100%;
}
.woocommerce.columns-1 .product-item-wrap .product-info h3 {
  font-size: 14px;
  color: #333;
  text-align: left;
}
.woocommerce.columns-1 .product-item-wrap .product-info .star-rating:before {
  left: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.woocommerce.columns-1 .product-item-wrap .product-info span.price {
  text-align: left;
}
.woocommerce.columns-1 .product-item-wrap .product-info .woocommerce-product-details__short-description {
  text-align: left;
}
/* --------------------------------------------
ORDER RECEIVED
-------------------------------------------- */
.woocommerce-order-received .woocommerce h2,
.woocommerce-account .woocommerce h2,
.woocommerce-order-received .woocommerce header.title h3,
.woocommerce-account .woocommerce header.title h3 {
  font-size: 25px;
  color: #25262C;
  margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce address,
.woocommerce-account .woocommerce address {
  line-height: 1.8;
}
.woocommerce .order_details {
  padding: 0;
}
/* --------------------------------------------
ORDER TRACKING
-------------------------------------------- */
.track_order {
  text-align: left;
}
.track_order .form-row input.button {
  margin-top: 30px;
  height: 50px;
  min-width: 170px;
  text-transform: uppercase;
  font-size: 16px;
}
.track_order p:first-child {
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  display: none;
}
.woocommerce .track_order .form-row-first,
.woocommerce .track_order .form-row-last {
  float: none;
  margin: auto;
  margin-bottom: 20px;
  width: 100%;
}
.woocommerce .track_order .form-row-first label,
.woocommerce .track_order .form-row-last label {
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #fcac2f;
}
.woocommerce .track_order .form-row-first input,
.woocommerce .track_order .form-row-last input {
  text-align: left;
  color: #fcac2f;
}
.woocommerce .track_order .form-row-first input .placeholder,
.woocommerce .track_order .form-row-last input .placeholder {
  text-align: left;
  color: rgba(252, 172, 47, 0.5);
}
.woocommerce form.track_order .form-row input.input-text {
  height: 50px;
  border: 1px solid #eee !important;
}
.woocommerce form.track_order .form-row input.input-text:focus {
  border-color: #fcac2f !important;
}
/* --------------------------------------------
PRODUCT-LOADMORE - INFINITESCROLL
-------------------------------------------- */
.product-paging-wrapper {
  margin-top: 50px;
}
/* --------------------------------------------
	SHOPPING CART
-------------------------------------------- */
.cart-form {
  margin-bottom: 50px;
  margin-top: 80px;
}
.woocommerce table.shop_table.cart {
  border: none;
  border-radius: 0;
  margin: 0;
  min-width: 400px;
}
.woocommerce table.shop_table.cart thead th {
  color: #222222;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 2.4;
  font-weight: normal;
  padding: 18px 0px;
  border-bottom: 1px solid #fcac2f;
}
.woocommerce table.shop_table.cart tbody td {
  border-top: 1px solid #666666;
  padding: 20px 0px;
}
.woocommerce table.shop_table.cart .product-remove {
  text-align: center;
}
.woocommerce table.shop_table.cart .product-remove a {
  font-size: 16px;
  color: #aaa !important;
}
.woocommerce table.shop_table.cart .product-remove a:hover {
  background-color: transparent;
}
.woocommerce table.shop_table.cart .actions {
  border-top: 1px solid #666666;
}
.woocommerce table.shop_table.cart tbody tr.cart_item:first-child td {
  border-top: none;
}
.woocommerce table.shop_table.cart tbody tr td.actions {
  border-top: 1px solid #fcac2f;
  border-bottom: 1px solid #fcac2f;
}
.woocommerce table.shop_table.cart tbody td.product-name img {
  width: 170px;
  float: left;
  margin-right: 50px;
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart tbody td.product-name img {
    display: none;
  }
}
.woocommerce table.shop_table.cart tbody td.product-name .product-name-wrap {
  position: relative;
  overflow: hidden;
  height: 170px;
  display: table;
}
.woocommerce table.shop_table.cart tbody td.product-name .product-name-wrap .product-name-inner {
  display: table-cell;
  vertical-align: middle;
}
.woocommerce table.shop_table.cart tbody td.product-name .product-name-wrap .product-name-inner a {
  font-size: 16px;
  line-height: 1.4;
}
.woocommerce table.shop_table.cart tbody td.product-name .product-name-wrap .product-name-inner a:hover {
  text-decoration: none;
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart tbody td.product-name .product-name-wrap .product-name-inner a {
    font-size: 14px;
  }
}
.woocommerce table.shop_table.cart tbody td.product-name dl.variation {
  color: #777777;
  margin: 5px 0 0 0;
}
.woocommerce table.shop_table.cart tbody td.product-name dl.variation dt {
  font-weight: normal;
  padding: 0 0 5px;
}
.woocommerce table.shop_table.cart tbody td.product-name dl.variation dd {
  padding: 0 0 5px;
  margin: 0;
}
.woocommerce table.shop_table.cart td.product-price,
.woocommerce table.shop_table.cart td.product-subtotal {
  font-size: 14px;
  line-height: 1.2;
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.product-quantity label {
    display: none;
  }
  .woocommerce table.shop_table.cart td.product-quantity .quantity-inner {
    border: none;
  }
  .woocommerce table.shop_table.cart td.product-quantity .quantity-inner input {
    border: none;
    background-color: transparent;
    padding: 0 10px 0 15px;
  }
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.product-subtotal {
    display: none;
  }
}
.woocommerce table.shop_table.cart td.actions {
  border-bottom: 1px solid #666666;
  padding-bottom: 35px;
  padding-top: 35px;
}
.woocommerce table.shop_table.cart td.actions .coupon .input-text {
  min-width: 270px;
  padding: 0 15px;
  margin: 0;
  outline: 0;
  border: none;
  height: 44px;
  background-color: transparent;
  border: 1px solid #fcac2f;
}
@media (max-width: 767px) {
  .woocommerce table.shop_table.cart td.actions .coupon .input-text {
    min-width: auto;
  }
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.actions .coupon .input-text {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.actions .coupon {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .woocommerce table.shop_table.cart td.actions a {
    margin-top: 15px;
  }
}
.woocommerce table.shop_table.cart td.actions .button {
  padding: 13px 25px;
  min-width: 70px;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.actions .button {
    min-width: auto;
    width: 100%;
    margin-bottom: 5px;
  }
}
.woocommerce table.shop_table.cart td.actions input[name="update_cart"] {
  background-color: #071645;
  margin-right: 12px;
}
.woocommerce table.shop_table.cart td.actions input[name="update_cart"]:hover {
  background-color: #000000;
}
@media (max-width: 479px) {
  .woocommerce table.shop_table.cart td.actions input[name="update_cart"] {
    width: 100%;
  }
}
.cart-collaterals h4.widget-title,
.cart-collaterals h2 {
  font-size: 18px;
  color: #25262C;
  margin-bottom: 45px;
  text-align: left;
  text-transform: uppercase;
  border-left: 2px solid #fcac2f;
  padding-left: 15px;
  font-weight: bold;
}
.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  float: left;
  margin: 0 auto;
}
@media (max-width: 479px) {
  .woocommerce .cart-collaterals .cart_totals {
    margin: 0;
  }
}
.woocommerce .cart-collaterals .cart_totals_inner,
.woocommerce-page .cart-collaterals .cart_totals_inner,
.woocommerce-shipping-calculator {
  float: left;
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 479px) {
  .woocommerce .cart-collaterals .cart_totals_inner,
  .woocommerce-page .cart-collaterals .cart_totals_inner,
  .woocommerce-shipping-calculator {
    width: 100%;
  }
}
.shipping-calculator-form {
  display: block !important;
}
.shipping-calculator-form .button {
  padding: 13px 25px !important;
  display: block !important;
  width: 100%;
}
.shipping-calculator-form p {
  margin-bottom: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals table {
  margin: 0;
  background-color: #071645;
}
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.8;
  padding: 15px 0;
  border-top: 1px solid #666666;
}
.woocommerce-cart .cart-collaterals .cart_totals table .cart-subtotal td,
.woocommerce-cart .cart-collaterals .cart_totals table .order-total td,
.woocommerce-cart .cart-collaterals .cart_totals table .cart-subtotal strong,
.woocommerce-cart .cart-collaterals .cart_totals table .order-total strong {
  font-weight: normal;
}
.woocommerce ul#shipping_method {
  line-height: 2;
}
.woocommerce ul#shipping_method li {
  padding: 0;
  text-indent: 0;
}
.woocommerce ul#shipping_method li input[type=radio] {
  margin: 0;
  vertical-align: middle;
}
.woocommerce ul#shipping_method li label {
  font-weight: normal;
  margin: 0;
}
.woocommerce ul#shipping_method .amount {
  font-weight: normal;
}
p.return-to-shop {
  margin-bottom: 80px !important;
}
.woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce {
  padding-top: 0;
}
.woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table {
  border: 0;
}
.woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th {
  color: #fcac2f;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Lato';
  text-align: left;
}
@media (max-width: 479px) {
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
  }
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th.product-name {
    width: 40%;
  }
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th.product-price {
    width: 20%;
  }
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th.product-quantity {
    width: 30%;
  }
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th.product-subtotal {
    display: none;
  }
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table thead tr th.product-remove {
    width: 10%;
  }
}
@media (max-width: 479px) {
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce .cart-form .shop_table {
    table-layout: fixed;
    min-width: auto;
  }
}
@media (max-width: 479px) {
  .woocommerce-cart .noo-site-content-page .container .row .noo-site-content-page-inner .page-content .entry-content .woocommerce {
    padding: 40px 15px;
  }
}
/* --------------------------------------------
	SINGLE PRODUCT INFO
-------------------------------------------- */
.site-content-single-product .single-product-info {
  margin-bottom: 30px;
  position: relative;
  background-color: #fff;
  padding: 30px 15px 15px;
  overflow: hidden;
}
.site-content-single-product .single-product-info.custom-page-layout {
  padding: 0;
}
.site-content-single-product .single-product-info.custom-page-layout .single-product-image-wrap .product-flash-wrap {
  left: 15px;
}
.site-content-single-product .single-product-info .single-product-image-wrap {
  float: left;
  width: 50%;
  padding: 0 15px;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image {
  position: relative;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .product-flash-wrap {
  left: 0px;
  top: 30px;
  z-index: 5;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .single-product-image-inner .owl-buttons div {
  border-radius: 0;
  position: absolute;
  top: 50%;
  opacity: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .single-product-image-inner .owl-buttons div:hover {
  background-color: #fcac2f;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .single-product-image-inner .owl-buttons div.owl-prev {
  left: 0px;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .single-product-image-inner .owl-buttons div.owl-next {
  right: 0px;
}
.site-content-single-product .single-product-info .single-product-image-wrap .single-product-image .single-product-image-inner:hover .owl-buttons div {
  opacity: 1;
}
.site-content-single-product .single-product-info .single-product-image-wrap .woocommerce-main-image {
  display: block;
}
.site-content-single-product .single-product-info .single-product-image-wrap .woocommerce-main-image:before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background-color: rgba(0, 0, 0, 0.04);
  mix-blend-mode: darken;
}
.site-content-single-product .single-product-info .single-product-image-wrap .woocommerce-main-image:after {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.site-content-single-product .single-product-info .single-product-image-wrap .woocommerce-main-image img {
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.site-content-single-product .single-product-info .single-product-image-wrap .owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
  padding: 0;
}
.site-content-single-product .single-product-info .single-product-image-wrap .owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .attachment-shop_single {
  width: 100%;
}
.site-content-single-product .single-product-info .single-product-image-wrap .product-image-total-1,
.site-content-single-product .single-product-info .single-product-image-wrap .product-thumb-disable {
  display: none;
}
.site-content-single-product .single-product-info .single-product-image-wrap .product-thumb-wrap {
  width: 100%;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1:hover .owl-nav {
  opacity: 1;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1 .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1 .owl-nav > div {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  line-height: 1;
  font-size: 60px;
  color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1 .owl-nav > div:hover {
  color: #fcac2f;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1 .owl-nav > div.owl-next {
  right: 30px;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync1 .owl-nav > div.owl-prev {
  left: 30px;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2:hover .owl-nav {
  opacity: 1;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .owl-nav {
  opacity: 0;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .owl-nav > div {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  padding: 7px 10px;
  line-height: 1;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .owl-nav > div:hover {
  background-color: #fcac2f;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .owl-nav > div.owl-next {
  right: 0;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .owl-nav > div.owl-prev {
  left: 0;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .thumbnail-image {
  text-align: center;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .thumbnail-image a {
  margin: 30px 5px 15px;
  display: block;
  position: relative;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .thumbnail-image a:before {
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  -webkit-box-shadow: inset 0 0 0 0px #fff;
  box-shadow: inset 0 0 0 0px #fff;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .thumbnail-image a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .synced .thumbnail-image a {
  -webkit-box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.2);
}
.site-content-single-product .single-product-info .single-product-image-wrap #sync2 .synced .thumbnail-image a:before {
  -webkit-box-shadow: inset 0 0 0 5px #fff;
  box-shadow: inset 0 0 0px 5px #fff;
}
.site-content-single-product .single-product-info .summary-product-wrap {
  float: left;
  width: 50%;
  padding: 0 15px;
}
.site-content-single-product .single-product-info .summary-product-wrap h1.product_title {
  position: relative;
  color: #fcac2f;
  font-weight: normal;
  font-size: 40px;
  font-weight: 400;
  padding-bottom: 30px;
  line-height: 1.4;
}
.site-content-single-product .single-product-info .summary-product-wrap h1.product_title a {
  color: #1F1F1F;
}
.site-content-single-product .single-product-info .summary-product-wrap h1.product_title:before {
  content: '';
  width: 100px;
  height: 2px;
  background-color: #fcac2f;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .site-content-single-product .single-product-info .summary-product-wrap h1.product_title {
    font-size: 36px;
  }
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-product-rating {
  margin-top: 10px;
  margin-bottom: 20px;
  vertical-align: middle;
  line-height: 20px;
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-product-rating .woocommerce-review-link {
  font-size: 15px;
  line-height: 1.4;
  color: #878787;
  margin-left: 25px;
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-product-rating .star-rating {
  float: none;
  margin: 0;
  display: inline-block;
  font-size: 13px;
  height: 15px;
  vertical-align: middle;
}
.site-content-single-product .single-product-info .summary-product-wrap p.price {
  width: 60%;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  font-style: normal;
  letter-spacing: 0;
  margin-bottom: 30px;
  color: #333;
}
.site-content-single-product .single-product-info .summary-product-wrap p.price del {
  position: relative;
  font-size: 18px;
  color: #a8a8a8;
}
.site-content-single-product .single-product-info .summary-product-wrap p.price ins {
  text-decoration: none;
}
@media (max-width: 479px) {
  .site-content-single-product .single-product-info .summary-product-wrap p.price {
    font-size: 24px;
  }
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-product-details__short-description {
  margin-top: 30px;
  color: #333;
  margin-bottom: 30px;
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-product-details__short-description p {
  margin-bottom: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart {
  display: inline-block;
  margin-bottom: 30px;
  width: 100%;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart div.quantity {
  margin-right: 10px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart div.quantity label {
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart div.quantity .quantity-inner {
  height: 50px;
  border: 1px solid #666666;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart div.quantity .quantity-inner input {
  height: 46px;
  font-size: 16px;
  padding: 0 5px 0 15px;
  border: none;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .button,
.site-content-single-product .single-product-info .summary-product-wrap form.cart .added_to_cart {
  font-size: 18px;
  padding-top: 7px;
  text-transform: uppercase;
  padding-bottom: 7px;
  height: 50px;
  min-width: 215px;
  background-color: #4d4d4d;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .button:hover,
.site-content-single-product .single-product-info .summary-product-wrap form.cart .added_to_cart:hover {
  background-color: #fcac2f;
}
@media (max-width: 479px) {
  .site-content-single-product .single-product-info .summary-product-wrap form.cart .button,
  .site-content-single-product .single-product-info .summary-product-wrap form.cart .added_to_cart {
    min-width: 190px;
  }
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .button.added {
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table {
  border: none;
  margin-bottom: 20px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td {
  padding-bottom: 20px;
  line-height: 42px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td.label {
  padding: 0 10px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table label {
  font-weight: normal;
  font-size: 15px;
  color: #1f1f1f;
  margin: 0;
  line-height: 42px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td.price {
  font-weight: normal;
  line-height: 42px;
  font-size: 18px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td.price ins {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td.price del {
  display: inline-block;
  font-size: 16px;
  color: #a0a0a0;
  opacity: 1;
  margin-right: 15px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.cart .group_table td.price .out-of-stock {
  display: inline-block;
  margin-bottom: 0;
  color: #cacaca;
  font-size: 11px;
  margin-left: 3px;
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-variation {
  margin: 20px 0;
}
.site-content-single-product .single-product-info .summary-product-wrap .woocommerce-variation .woocommerce-variation-price .price ins {
  text-decoration: none;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations {
  width: 100%;
  margin: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations tr:nth-child(3) td {
  padding: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations td {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations td.label {
  padding: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations tr + tr td,
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations tr + tr td.label {
  padding: 10px 0 0 0;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations td.label label {
  font-weight: bold;
  line-height: 42px;
  margin-bottom: 0;
  padding-right: 10px;
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .single_variation_wrap:after,
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .variations_button:after {
  content: "";
  display: block;
  clear: both;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .single_variation span.price {
  font-size: 24px !important;
  color: #fcac2f;
  line-height: 1;
  margin-bottom: 20px;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .single_variation_wrap .single_add_to_cart_button {
  background-color: #fcac2f;
}
.site-content-single-product .single-product-info .summary-product-wrap form.variations_form .single_variation_wrap .single_add_to_cart_button:hover {
  background-color: #222;
  color: #fff;
}
.site-content-single-product .single-product-info .summary-product-wrap .yith-wcwl-add-to-wishlist {
  margin-left: 0px;
  display: inline-block;
  margin-top: 0;
  text-align: center;
  line-height: 48px;
  margin-bottom: 20px;
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
  font-size: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #666666;
}
.site-content-single-product .single-product-info .summary-product-wrap .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
  display: block;
}
.site-content-single-product .single-product-info .summary-product-wrap .yith-wcwl-add-to-wishlist .yith-wcwl-add-button img {
  display: none !important;
}
.site-content-single-product .single-product-info .summary-product-wrap .yith-wcwl-add-to-wishlist i {
  line-height: 48px;
  font-size: 18px;
  margin-right: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-add-to-wishlist {
  margin: 0 15px 0 0;
  display: inline-block;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistaddedbrowse a,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistexistsbrowse a,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-add-button a.add_to_wishlist {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistaddedbrowse a:hover:before,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistexistsbrowse a:hover:before,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-add-button a.add_to_wishlist:hover:before {
  color: #fff;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .compare.added:before,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistaddedbrowse a:before,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-wishlistexistsbrowse a:before,
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .yith-wcwl-add-button a.add_to_wishlist:before {
  font-family: FontAwesome;
  content: "\f004";
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 11px;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  background-color: #FAFAFA;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: #888888;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .compare.added:before {
  content: "\f012";
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function a.compare {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function a.compare i {
  font-size: 11px;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  background-color: #FAFAFA;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: #888888;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function a.compare:hover i {
  color: #fff;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .feedback {
  display: none !important;
}
.site-content-single-product .single-product-info .summary-product-wrap .single-product-function .fa-heart-o {
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta {
  font-size: 14px;
  color: #777;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta > span {
  display: block;
  padding-bottom: 15px;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta > span + span {
  margin-top: 5px;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta .yith-wcbr-brands-logo {
  padding: 0px;
  margin: 0px;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta .yith-wcbr-brands {
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap .product_meta label {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  font-weight: bold;
  color: #333;
  width: 135px;
}
.site-content-single-product .single-product-info .summary-product-wrap .stock {
  display: none;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap label {
  font-size: 14px;
  color: #fcac2f;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-content-single-product .single-product-info .summary-product-wrap .select_option {
  margin-right: 15px;
}
.site-content-single-product .single-product-info .summary-product-wrap .select_option span {
  font-weight: bold;
  color: rgba(51, 51, 51, 0.5);
}
.site-content-single-product .single-product-info .summary-product-wrap .select_option.selected span {
  color: #000;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap {
  width: 100%;
  text-align: left;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap .social-share {
  display: inline-block;
  padding: 0;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap .social-share li {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap .social-share li a {
  padding: 0 5px;
  display: block;
  border: 1px solid #fcac2f;
  color: #fcac2f;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap .social-share li a i:before {
  padding-right: 5px;
}
.site-content-single-product .single-product-info .summary-product-wrap .social-share-wrap .social-share li a:hover {
  background-color: #fcac2f;
  color: #fff;
  border-color: #fcac2f;
}
.site-content-single-product .single-product-info .yith-wcwl-add-to-wishlist {
  display: none;
}
.site-content-single-product .single-product-info .compare {
  display: none;
}
@media (max-width: 768px) {
  .site-content-single-product .single-product-info .single-product-image-wrap {
    width: 100%;
  }
  .site-content-single-product .single-product-info .summary-product-wrap {
    width: 100%;
  }
  .site-content-single-product .single-product-info .summary-product-wrap h1 {
    padding-top: 30px;
  }
}
.site-content-single-product .single-product-info.custom-page-layout .single-product-image-wrap {
  width: 100%;
}
.site-content-single-product .single-product-info.custom-page-layout .summary-product-wrap {
  width: 100%;
}
.site-content-single-product.modal .single-product-info {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.site-content-single-product.modal .single-product-info .single-product-image-wrap .single-product-image .product-flash-wrap {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.single-product-wrap {
  padding: 10px 0 50px;
}
.single-product-wrap .full {
  margin: 0 60px;
}
.single-product-wrap .full .woocommerce-tabs {
  margin-bottom: 30px;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info {
  padding: 0;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info.custom-page-layout .single-product-image-wrap {
  width: 100%;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info.custom-page-layout .summary-product-wrap {
  width: 100%;
  padding: 0 15px;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .single-product-image-wrap {
  width: 50%;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .single-product-image-wrap .owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item {
  padding: 0;
  text-align: center;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .single-product-image-wrap .owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .attachment-shop_single {
  width: 70%;
}
@media (max-width: 991px) {
  .single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .single-product-image-wrap {
    width: 100%;
  }
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .summary-product-wrap {
  width: 50%;
  padding: 75px 10% 75px 70px;
}
@media (max-width: 1440px) {
  .single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .summary-product-wrap {
    padding: 30px 15px;
  }
}
@media (max-width: 991px) {
  .single-product-wrap .full .site-content-single-product .single-product-inner .product .single-product-info .summary-product-wrap {
    width: 100%;
    float: none;
  }
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product.product-type-variable .single-product-info .single-product-image-wrap {
  width: 50%;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product.product-type-variable .single-product-info .single-product-image-wrap .owl-carousel .owl-wrapper-outer .owl-wrapper .owl-item .attachment-shop_single {
  width: 70% !important;
}
.single-product-wrap .full .site-content-single-product .single-product-inner .product.product-type-variable .single-product-info .summary-product-wrap {
  width: 50%;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs {
  margin-top: 0;
  padding: 50px 0;
  margin-bottom: 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container {
  width: 100%;
  border: none;
  background-color: transparent;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs {
  background-color: transparent;
  margin-bottom: 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li {
  border-radius: 0;
  background-color: #fff;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li a {
  padding: 7px 15px;
  border-radius: 0;
  color: rgba(51, 51, 51, 0.5);
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li:first-child a {
  padding-left: 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li:last-child a {
  padding-right: 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li:after {
  display: none;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container ul.tabs li.active a {
  color: #fcac2f;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container .panel {
  width: 100%;
  padding: 60px 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container .panel#tab-description p {
  position: relative;
  width: 50%;
  float: left;
  text-align: left;
  padding-left: 30px;
}
.single-product-wrap .full .site-content-single-product .woocommerce-tabs .container .panel#tab-description p:before {
  content: '';
  height: 100%;
  width: 2px;
  background-color: #666666;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1299px) {
  .single-product-wrap .full {
    margin: 0 15px;
  }
}
/* --------------------------------------------
	SINGLE PRODUCT TAB
-------------------------------------------- */
.woocommerce div.product .woocommerce-tabs {
  margin-bottom: 30px;
  background-color: #fff;
}
.woocommerce div.product .woocommerce-tabs.list .accessories ul.tabs li.active a {
  color: rgba(51, 51, 51, 0.5);
}
.woocommerce div.product .woocommerce-tabs.list .accessories ul.tabs .accessories_tab.active a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .accessories ul.tabs .accessories_tab a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .description ul.tabs li.active a {
  color: rgba(51, 51, 51, 0.5);
}
.woocommerce div.product .woocommerce-tabs.list .description ul.tabs .description_tab.active a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .description ul.tabs .description_tab a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .reviews ul.tabs li.active a {
  color: rgba(51, 51, 51, 0.5);
}
.woocommerce div.product .woocommerce-tabs.list .reviews ul.tabs .reviews_tab.active a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .reviews ul.tabs .reviews_tab a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .additional_information ul.tabs li.active a {
  color: rgba(51, 51, 51, 0.5);
}
.woocommerce div.product .woocommerce-tabs.list .additional_information ul.tabs .additional_information_tab.active a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs.list .additional_information ul.tabs .additional_information_tab a {
  color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs:after {
  content: "";
  display: block;
  clear: both;
}
.woocommerce div.product .woocommerce-tabs .container {
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  text-align: center;
  padding: 0px;
  background-color: #fff;
  margin: 30px 0px 0 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  border: none;
  background-color: rgba(51, 51, 51, 0.5);
  left: 30px;
  width: calc(100% - 60px);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: bold;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 24px;
  color: rgba(51, 51, 51, 0.5);
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child a {
  padding-left: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child a {
  padding-right: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a {
  color: #fcac2f;
}
@media (max-width: 599px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    overflow: visible;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs:before {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    top: -10px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 18px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li:first-child a {
    padding-left: 15px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li:last-child a {
    padding-right: 15px;
  }
}
.woocommerce div.product .woocommerce-tabs .panel {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  padding: 40px 30px;
  padding-top: 0;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  display: none;
  font-size: 25px;
  margin: 0px;
  padding: 0 30px 20px 30px;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs .panel #reviews h2 {
  font-weight: 300;
  display: block;
  font-size: 20px;
  color: #071645;
}
.woocommerce div.product .woocommerce-tabs .panel .commentlist {
  padding: 0 30px;
}
.woocommerce div.product .woocommerce-tabs .panel #review_form_wrapper {
  padding: 0 30px;
}
.woocommerce div.product .woocommerce-tabs .panel .shop_attributes th {
  padding: 8px 8px 8px 30px;
}
.woocommerce div.product .woocommerce-tabs .panel .shop_attributes .alt th,
.woocommerce div.product .woocommerce-tabs .panel .shop_attributes .alt td {
  background-color: #fff;
}
.woocommerce div.product .woocommerce-tabs #tab-description {
  color: #333;
  line-height: 1.8;
  text-align: left;
}
.woocommerce div.product .woocommerce-tabs #tab-description .wc-content > h2 {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories {
  margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap:hover .product-item-inner .product-info .add-to-cart-wrap,
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap:hover .product-item-inner .product-info .yith-wcwl-add-to-wishlist,
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap:hover .product-item-inner .product-info .compare {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap:hover .product-item-inner .product-info .price {
  opacity: 1;
}
.woocommerce div.product .woocommerce-tabs .accessories.grid .product-item-wrap {
  float: left;
}
.woocommerce div.product .woocommerce-tabs .accessories.grid .product-item-wrap:before {
  content: '+';
  position: absolute;
  top: 40%;
  font-size: 20px;
  left: -6px;
  z-index: 3;
  color: #999999;
}
.woocommerce div.product .woocommerce-tabs .accessories.grid.column-4 .product-item-wrap {
  width: 20%;
}
.woocommerce div.product .woocommerce-tabs .accessories.grid.column-3 .product-item-wrap {
  width: 25%;
}
.woocommerce div.product .woocommerce-tabs .accessories.grid.column-2 .product-item-wrap {
  width: 33.33%;
}
@media (max-width: 1024px) {
  .woocommerce div.product .woocommerce-tabs .accessories.grid.column-4 .product-item-wrap,
  .woocommerce div.product .woocommerce-tabs .accessories.grid.column-3 .product-item-wrap {
    width: 33.33%;
  }
}
@media (max-width: 480px) {
  .woocommerce div.product .woocommerce-tabs .accessories.grid.column-4 .product-item-wrap,
  .woocommerce div.product .woocommerce-tabs .accessories.grid.column-3 .product-item-wrap,
  .woocommerce div.product .woocommerce-tabs .accessories.grid.column-2 .product-item-wrap {
    width: 50%;
  }
}
.woocommerce div.product .woocommerce-tabs .accessories .product-view {
  float: none;
}
@media (max-width: 480px) {
  .woocommerce div.product .woocommerce-tabs .accessories .product-view .row {
    margin: 0;
  }
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-dots {
  position: absolute;
  right: 0;
  bottom: -10px;
  margin-right: 30px;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-dots > div {
  width: 10px;
  height: 10px;
  background: rgba(128, 128, 128, 0.5);
  border-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 0 2px;
  display: inline-block;
  float: right;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-dots > div.active,
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-dots > div:hover {
  background: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 0;
  height: 44px;
  width: 44px;
  padding: 0;
  background-color: rgba(128, 128, 128, 0.5);
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div i {
  font-size: 24px;
  color: #fff;
  line-height: 44px;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div:hover {
  background-color: #fcac2f;
}
@media (max-width: 500px) {
  .woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav .owl-prev {
    left: 10px !important;
  }
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav .owl-next {
  right: 10px;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .product-item-wrap:before {
  content: '+';
  position: absolute;
  top: 40%;
  font-size: 20px;
  left: -6px;
  z-index: 3;
  color: #999999;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .product-static {
  width: 20%;
  float: left;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .noo-slider {
  float: right;
  width: 80%;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .product-static {
  width: 25%;
  float: left;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .noo-slider {
  float: right;
  width: 75%;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .product-static {
  width: calc(100%/3);
  float: left;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .noo-slider {
  float: right;
  width: calc(2*100%/3);
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .product-static:before {
  content: '+' !important;
  position: absolute;
  top: 40%;
  font-size: 20px;
  right: -6px;
  left: auto;
  z-index: 3;
  color: #999999;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 0;
  height: 44px;
  width: 44px;
  padding: 0;
  background-color: rgba(128, 128, 128, 0.5);
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div i {
  font-size: 24px;
  color: #fff;
  line-height: 44px;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav div:hover {
  background-color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav .owl-prev {
  left: 10px;
}
.woocommerce div.product .woocommerce-tabs .accessories.slider .owl-nav .owl-next {
  right: 10px;
}
@media (max-width: 1024px) {
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .product-static {
    width: 33.33333333%;
  }
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .noo-slider,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .noo-slider {
    width: calc(2*100%/3);
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .noo-slider,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .noo-slider,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .noo-slider {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .product-static,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-4 .noo-slider,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-3 .noo-slider,
  .woocommerce div.product .woocommerce-tabs .accessories.slider.column-2 .noo-slider {
    width: 100%;
    float: none;
  }
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap .product-item-inner:before {
  content: '+';
  position: absolute;
  top: 40%;
  font-size: 20px;
  left: -15px;
  z-index: 3;
  color: #999999;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap.ac-first:before {
  content: '';
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap .product-thumb .product-link {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap .product-actions {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap .product-info .star-rating {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap.product-not-checked {
  cursor: not-allowed;
  opacity: 0.3;
}
.woocommerce div.product .woocommerce-tabs .accessories .product-item-wrap.product-not-checked:hover .product-item-inner {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs .accessories .check-products {
  margin-top: 30px;
  display: inline-block;
  width: 100%;
}
.woocommerce div.product .woocommerce-tabs .accessories .total-price h3 {
  margin-top: 0;
}
.woocommerce div.product .woocommerce-tabs .accessories .total-price h4 {
  margin-bottom: 20px;
}
.woocommerce div.product .woocommerce-tabs .accessories .accessories-add-to-cart .add-to-cart {
  font-size: 18px;
  color: #fff;
  padding-top: 7px;
  text-transform: uppercase;
  padding-bottom: 7px;
  height: 50px;
  min-width: 215px;
  border: none;
  background-color: #4d4d4d;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.woocommerce div.product .woocommerce-tabs .accessories .accessories-add-to-cart .add-to-cart:hover {
  background-color: #fcac2f;
}
.woocommerce div.product .woocommerce-tabs .accessories .accessories-add-to-cart .add-to-cart.ac-loading {
  cursor: no-drop;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    width: 100%;
  }
  .woocommerce div.product .woocommerce-tabs div.panel {
    width: 100%;
  }
}
/* --------------------------------------------
	SINGLE PRODUCT REVIEW
-------------------------------------------- */
.woocommerce #reviews .woocommerce-noreviews {
  padding-bottom: 20px;
  padding-left: 30px;
}
.woocommerce #reviews #review_form_wrapper .comment-form label {
  display: none;
}
@media (max-width: 767px) {
  .woocommerce #reviews #comments ol.commentlist {
    padding: 0;
  }
}
.woocommerce #reviews #comments ol.commentlist li {
  margin: 0;
  padding: 25px 0px;
}
.woocommerce #reviews #comments ol.commentlist li:last-child {
  border-color: transparent;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 70px;
  height: 70px;
  padding: 0;
  margin: 0;
  border: none;
  position: static;
  border-radius: 100%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 80px;
  padding: 0 25px 0px 10px;
  border: none;
  position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
  float: right;
  margin: 0px;
}
@media (max-width: 479px) {
  .woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
    float: none;
    margin-bottom: 10px;
  }
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 14px;
  margin-bottom: 10px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
  color: #071645;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__dash {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time {
  display: block;
  font-size: 12px;
  text-transform: capitalize;
}
.woocommerce #reviews #comments h2 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .woocommerce #reviews #comments h2 {
    font-size: 20px;
  }
}
.woocommerce #review_form #respond h3.comment-reply-title {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  font-weight: normal;
}
.woocommerce #review_form #respond p {
  margin: 0px;
  width: 100%;
  float: none;
  margin-top: 30px;
}
.woocommerce #review_form #respond p p.stars {
  display: inline-block;
  line-height: 1;
  padding: 0px;
}
.woocommerce #review_form #respond p.form-submit {
  clear: both;
  padding-top: 30px;
}
.woocommerce #review_form #respond .comment-fields-wrap .row {
  margin: 0;
}
.woocommerce #review_form #respond .comment-fields-wrap .row label {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
}
.woocommerce #review_form #respond .comment-fields-wrap .row .comment-form-rating:hover label,
.woocommerce #review_form #respond .comment-fields-wrap .row .comment-form-comment:hover label {
  color: #fcac2f;
}
.woocommerce #review_form #respond .comment-form-rating label,
.woocommerce #review_form #respond .comment-form-comment label {
  text-transform: uppercase;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
}
.upsells.products h4.widget-title,
.related.products h4.widget-title,
.cross-sells h4.widget-title {
  font-size: 32px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.upsells.products .slider,
.related.products .slider,
.cross-sells .slider {
  margin: 0 -15px;
}
.upsells.products .slider .product-item-wrap,
.related.products .slider .product-item-wrap,
.cross-sells .slider .product-item-wrap {
  padding: 0 15px;
}
.upsells.products .owl-theme .owl-controls,
.related.products .owl-theme .owl-controls,
.cross-sells .owl-theme .owl-controls {
  margin: 0;
  height: 0;
  position: absolute;
  top: -98px;
  right: 15px;
}
.upsells.products .owl-nav div,
.related.products .owl-nav div,
.cross-sells .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 0;
  height: 44px;
  width: 44px;
  padding: 0;
  background-color: rgba(128, 128, 128, 0.5);
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.upsells.products .owl-nav div i,
.related.products .owl-nav div i,
.cross-sells .owl-nav div i {
  font-size: 24px;
  color: #fff;
  line-height: 44px;
}
.upsells.products .owl-nav div:hover,
.related.products .owl-nav div:hover,
.cross-sells .owl-nav div:hover {
  background-color: #fcac2f;
}
.upsells.products .owl-nav .owl-prev,
.related.products .owl-nav .owl-prev,
.cross-sells .owl-nav .owl-prev {
  left: -10px;
}
.upsells.products .owl-nav .owl-next,
.related.products .owl-nav .owl-next,
.cross-sells .owl-nav .owl-next {
  right: -10px;
}
.site-content-single-product .related.products {
  background-color: #fff;
  padding: 30px;
}
.site-content-single-product .related.products h4.widget-title {
  font-size: 32px;
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 17px 0 5px;
}
@media (max-width: 767px) {
  .site-content-single-product .related.products h4.widget-title {
    padding: 0;
  }
}
.upsells,
.cross-sells {
  margin-top: 70px;
}
.related .widget-title {
  position: relative;
  border: none !important;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  z-index: 1;
}
.related .slider .owl-nav div {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-radius: 0;
  height: 44px;
  width: 44px;
  padding: 0;
  background-color: rgba(128, 128, 128, 0.5);
  text-align: center;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.related .slider .owl-nav div i {
  font-size: 24px;
  color: #fff;
  line-height: 44px;
}
.related .slider .owl-nav div:hover {
  background-color: #fcac2f;
}
.related .slider .owl-nav .owl-prev {
  left: -10px;
}
.related .slider .owl-nav .owl-next {
  right: -10px;
}
.related .slider .product-item-wrap {
  padding: 0px 10px;
}
.related .slider .product-item-wrap .product-info h3 {
  margin-bottom: 10px;
  width: 100%;
}
.woocommerce.slider .product {
  margin-bottom: 25px;
}
.variable-items-wrapper.color-variable-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  list-style: none;
  margin-bottom: 0 !important;
}
.variable-items-wrapper.color-variable-wrapper > li {
  width: 20px !important;
  height: 20px !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  margin-right: 10px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
.variable-items-wrapper.color-variable-wrapper > li.selected {
  cursor: pointer;
  border-color: #fcac2f;
}
.variable-items-wrapper.label-variable-wrapper {
  padding-left: 15px;
}
.variable-items-wrapper.label-variable-wrapper > li {
  cursor: pointer;
  position: relative;
  padding: 0px 10px;
  border: 1px solid #eee;
  margin-right: 5px;
}
.variable-items-wrapper.label-variable-wrapper > li.selected {
  cursor: pointer;
  border-color: #fcac2f;
}
.woocommerce-tabs > h4 {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
#review_form_wrapper {
  padding: 0 30px;
}
@media (max-width: 767px) {
  #review_form_wrapper {
    padding: 0;
  }
}
#noo-product-nav .product-navigation {
  display: table;
  width: 100%;
}
#noo-product-nav .product-navigation .noo-product-prev,
#noo-product-nav .product-navigation .noo-product-next {
  display: table-cell;
  width: 50%;
  text-transform: uppercase;
  font-weight: bold;
}
#noo-product-nav .product-navigation .noo-product-next {
  text-align: right;
}
#noo-product-nav .product-navigation .noo-product-next a:after {
  content: '\f101';
  font-family: FontAwesome;
  margin-left: 5px;
  display: inline-block;
}
#noo-product-nav .product-navigation .noo-product-prev a:before {
  content: '\f100';
  font-family: FontAwesome;
  margin-right: 5px;
  display: inline-block;
}
.single-product .product-flash-wrap {
  z-index: 5;
}
.single-product .pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul li a:hover {
  border-color: #fcac2f;
}
.single-product .pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul li.selected a {
  border-color: #fcac2f;
}
.pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery {
  margin-top: -60px;
}
.pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul {
  height: 50px;
}
.pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul li a {
  height: 50px;
}
.pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul li a:hover {
  border-color: #fcac2f;
}
.pp_pic_holder .pp_content_container .pp_left .pp_right .pp_content .pp_fade .pp_gallery ul li.selected a {
  border-color: #fcac2f;
}
.yl_page_builder.column-3 ul {
  margin: 0 -15px;
}
.yl_page_builder.column-3 ul li {
  padding: 15px;
  width: 33%;
  margin: 0 !important;
  float: left;
}
.yl_page_builder.column-2 ul {
  margin: 0 -15px;
}
.yl_page_builder.column-2 ul li {
  width: 50%;
  padding: 15px;
  margin: 0 !important;
  float: left;
}
.yl_page_builder.column-1 ul li {
  width: 100%;
  margin-bottom: 30px !important;
  float: left;
}
.yl_page_builder.column-1 ul li a img {
  width: 100%;
}
/**
 * 8.0 - ShortCode
 * ----------------------------------------------------------------------------
 */
/* Visual Composer */
/*
 *
 * Custom Heading
 *
 */
@media (max-width: 1299px) {
  .noo-full-width > .vc_row,
  footer .vc_row {
    margin: 0 -15px !important;
  }
}
@media (max-width: 768px) {
  .noo-full-width > .vc_row,
  footer .vc_row {
    margin: 0 !important;
  }
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent;
  border-color: #f0f0f0;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 14px;
  font-weight: bold;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #fcac2f;
  padding: 18px 30px;
  line-height: 1.5;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fcac2f;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: #fcac2f;
  border-color: #fcac2f;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a {
  color: #fff;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a i:before,
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a i:after {
  border-color: #fff;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: #fcac2f;
  border-color: #fcac2f;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #fff;
}
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion1 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fff;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent;
  border-color: #f0f0f0;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 14px;
  font-weight: bold;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #fcac2f;
  padding: 18px 30px;
  line-height: 1.5;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fcac2f;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: #fcac2f;
  border-color: #fcac2f;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a {
  color: #fff;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a i:before,
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover .vc_tta-panel-title a i:after {
  border-color: #fff;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: #fcac2f;
  border-color: #fcac2f;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
  color: #fff;
  line-height: 1.5;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fff;
}
.vc_general.accordion2 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-body {
  background-color: #fafafa;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fcac2f;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 14px;
  font-weight: bold;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  text-transform: uppercase;
  color: #fcac2f;
  padding: 28px 0px;
  padding-right: 30px;
  line-height: 1.5;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fcac2f;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: transparent;
  border-color: #fcac2f;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: transparent;
  border-color: #fcac2f;
}
.vc_general.accordion3 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
  font-weight: 900;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fcac2f;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
  font-size: 14px;
  font-weight: bold;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
  text-transform: uppercase;
  color: #fcac2f;
  padding: 28px 0px;
  padding-right: 30px;
  line-height: 1.5;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before,
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:after {
  border-color: #fcac2f;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading:hover {
  background-color: transparent;
  border-color: #fcac2f;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
  background-color: transparent;
  border-color: #fcac2f;
}
.vc_general.accordion4 .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
  font-weight: 900;
}
.vc_general.tab-style-1 .vc_tta-tabs-container {
  border-bottom: 1px solid #fcac2f;
}
.vc_general.tab-style-1 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin: 0 8px;
  margin-bottom: -1px;
}
.vc_general.tab-style-1 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #fcac2f;
}
.vc_general.tab-style-1 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  border-color: transparent;
  background-color: #fcac2f;
  color: #fff;
}
.vc_general.tab-style-2 .vc_tta-tabs-container {
  border-bottom: 1px solid #eeeeee;
}
.vc_general.tab-style-2 .vc_tta-tabs-container .vc_tta-tabs-list {
  margin-bottom: -1px;
}
.vc_general.tab-style-2 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin: 0 8px;
}
.vc_general.tab-style-2 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  font-size: 18px;
  background-color: #eeeeee;
  border: 1px solid #eeeeee;
}
.vc_general.tab-style-2 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  background-color: #fcac2f;
  color: #fff;
  border-color: transparent;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list {
  margin-bottom: -1px;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin: 0;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab:before {
  content: '';
  background-color: #eee;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  position: relative;
  z-index: 1;
  background-color: #fff;
  font-size: 24px;
  border: none;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
  color: #fcac2f;
  background-color: #fff;
}
.vc_general.tab-style-3 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  font-weight: bold;
  color: #fcac2f;
  background-color: #fff;
}
.vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list {
  margin-bottom: -1px;
}
.vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab {
  margin: 0;
}
.vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a {
  background-color: transparent;
  position: relative;
  z-index: 1;
  background-color: #fff;
  font-size: 24px;
  border: none;
}
.vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab a:hover {
  background-color: transparent;
  color: #fcac2f;
}
.vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
  background-color: transparent;
  font-size: 48px;
  color: #fcac2f;
  font-weight: normal;
}
@media (max-width: 991px) {
  .vc_general.tab-style-4 .vc_tta-tabs-container .vc_tta-tabs-list .vc_tta-tab.vc_active a {
    font-size: 24px;
    font-weight: bold;
  }
}
.skill_process .vc_general {
  height: 4px;
  margin: 60px 0;
  background-color: rgba(252, 172, 47, 0.4);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.skill_process .vc_general small.vc_label {
  position: absolute;
  top: -35px;
  width: 100%;
  font-size: 14px;
  padding: 0;
  text-transform: uppercase;
  color: #fcac2f !important;
}
.skill_process .vc_general small.vc_label span {
  font-size: 14px;
  line-height: 30px;
  right: 0;
  position: absolute;
}
.skill_process .vc_general span {
  border-radius: 0 !important;
}
.skill_process2 .vc_general {
  height: 4px;
  margin: 60px 0;
  background-color: rgba(252, 172, 47, 0.4);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
.skill_process2 .vc_general small.vc_label {
  position: absolute;
  top: -35px;
  width: 100%;
  font-size: 14px;
  padding: 0;
  font-style: italic;
  text-transform: uppercase;
  color: #fcac2f !important;
}
.skill_process2 .vc_general small.vc_label span {
  margin-left: 30px;
  font-size: 14px;
  line-height: 30px;
}
.skill_process2 .vc_general span {
  border-radius: 0 !important;
}
.gallery_class_3 h2 {
  margin-top: 0;
  font-size: 30px;
  position: relative;
  padding-bottom: 25px;
}
.gallery_class_3 h2:after {
  content: "";
  position: absolute;
  width: 75px;
  left: 0;
  top: 42px;
  height: 5px;
  background-color: #fcac2f;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
.gallery_class_3 ul {
  margin: 0 -15px !important;
}
.gallery_class_3 ul li {
  width: 33.33%;
  padding: 15px !important;
  max-width: none!important;
  float: left;
  display: inline-block;
  position: relative!important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
}
.gallery_class_3 ul li a img {
  width: 100%;
}
@media (max-width: 480px) {
  .gallery_class_3 ul {
    margin: 0 -5px;
  }
  .gallery_class_3 ul li {
    padding: 5px !important;
  }
}
.gallery_class_2 h2 {
  margin-top: 0;
  font-size: 30px;
  position: relative;
  padding-bottom: 25px;
}
.gallery_class_2 h2:after {
  content: "";
  position: absolute;
  width: 75px;
  left: 0;
  top: 42px;
  height: 5px;
  background-color: #fcac2f;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
.gallery_class_2 ul {
  margin: 0 -15px !important;
}
.gallery_class_2 ul li {
  width: 50%;
  padding: 15px !important;
  max-width: none!important;
  float: left;
  display: inline-block;
  position: relative!important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
}
.gallery_class_2 ul li a img {
  width: 100%;
}
@media (max-width: 480px) {
  .gallery_class_2 ul {
    margin: 0 -5px;
  }
  .gallery_class_2 ul li {
    padding: 5px !important;
  }
}
.gallery_class_2x h2 {
  margin-top: 0;
  font-size: 30px;
  position: relative;
  padding-bottom: 25px;
}
.gallery_class_2x h2:after {
  content: "";
  position: absolute;
  width: 75px;
  left: 0;
  top: 42px;
  height: 5px;
  background-color: #fcac2f;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.2);
}
.gallery_class_2x ul li {
  width: 50%;
  max-width: none!important;
  float: left;
  display: inline-block;
  position: relative!important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
}
.gallery_class_2x ul li a img {
  width: 100%;
}
@media (max-width: 480px) {
  .gallery_class_2x ul {
    margin: 0 -5px;
  }
  .gallery_class_2x ul li {
    padding: 5px !important;
  }
}
/*# sourceMappingURL=noo.css.map */