/*
Theme Name:         Zorka
Theme URI:          http://themes.g5plus.net/zorka/
Description:        Zorka theme framework is a WordPress starter theme based on HTML5 Boilerplate & Bootstrap. <a href="http://www.g5plus.net">Visit site</a>
Version:            1.5.8
Author:             g5plus
Author URI:         http://g5plus.net/

License:            GNU General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html

Tags: 				two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: 		zorka
Domain Path: 		/languages/
*/

/**
 * Table of Contents:
 *
 * 1.0 - Image Filter
 * 2.0 - Animsitionheader
 * 3.0 - Template
 * 4.0 - Header
 * 5.0 - Footer
 * 6.0 - Widget Default
 * 7.0 - Blog
 * 8.0 - Woocommerce
 * 9.0 - Panel Selector
 * 10.0 - ShortCode
 *   10.1 - Our Team
 *   10.2 - Testimonial
 *   10.3 - MailChimp
 *   10.4 - Banner
 *   10.5 - Button
 *   10.6 - Call To Action
 *   10.7 - Icon Box
 *   10.8 - Counter
 *   10.9 - Heading
 *   10.10 -Vc Extend
 *   10.11 - Portfolio
 *   10.12 - Product
 *   10.13 - Latest post
 *   10.14 - Parallax Sections
 * 11.0 - Core Menu
 * 12.0 - Blocks
 * ----------------------------------------------------------------------------
 */
/**
 * 1.0 - Image Filter
 * ----------------------------------------------------------------------------
 */
.filter-blur {
  -webkit-filter: url('assets/css/filter.svg#gray-scale');
  -moz-filter: url('assets/css/filter.svg#gray-scale');
  -o-filter: url('assets/css/filter.svg#gray-scale');
  -ms-filter: url('assets/css/filter.svg#gray-scale');
  filter: url('assets/css/filter.svg#gray-scale');
}
.filter-brightness-dark {
  -webkit-filter: url('assets/css/filter.svg#brightness-dark');
  -moz-filter: url('assets/css/filter.svg#brightness-dark');
  -o-filter: url('assets/css/filter.svg#brightness-dark');
  -ms-filter: url('assets/css/filter.svg#brightness-dark');
  filter: url('assets/css/filter.svg#brightness-dark');
}
.filter-brightness-light {
  -webkit-filter: url('assets/css/filter.svg#brightness-light');
  -moz-filter: url('assets/css/filter.svg#brightness-light');
  -o-filter: url('assets/css/filter.svg#brightness-light');
  -ms-filter: url('assets/css/filter.svg#brightness-light');
  filter: url('assets/css/filter.svg#brightness-light');
}
.filter-blur-overlay {
  -webkit-filter: url('assets/css/filter.svg#blur-overlay');
  -moz-filter: url('assets/css/filter.svg#blur-overlay');
  -o-filter: url('assets/css/filter.svg#blur-overlay');
  -ms-filter: url('assets/css/filter.svg#blur-overlay');
  filter: url('assets/css/filter.svg#blur-overlay');
}
.filter-gray-scale {
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  filter: url('assets/css/filter.svg#gray-scale');
}
.filter-gray-scale:hover {
  -webkit-filter: none;
  -moz-filter: none;
  filter: none;
}
/**
 * 2.0 - Animsition
 * ----------------------------------------------------------------------------
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animsition-overlay {
  background: #FFFFFF;
}
.animsition-loading {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  background-color: #fff;
}
.loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}
.loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: loading-center-absolute 1.5s infinite;
  animation: loading-center-absolute 1.5s infinite;
}
.object {
  width: 25px;
  height: 25px;
  background-color: #e5b219;
  float: left;
}
#object_one {
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}
#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
}
#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
}
#object_four {
  -webkit-animation: object_four 1.5s infinite;
  animation: object_four 1.5s infinite;
}
@-webkit-keyframes loading-center-absolute {
  100% {
    -webkit-transform: rotate(-45deg);
  }
}
@keyframes loading-center-absolute {
  100% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}
@-webkit-keyframes object_one {
  25% {
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_one {
  25% {
    transform: translate(0, -50px) rotate(-180deg);
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_two {
  25% {
    -webkit-transform: translate(50px, 0) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_two {
  25% {
    transform: translate(50px, 0) rotate(-180deg);
    -webkit-transform: translate(50px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_three {
  25% {
    -webkit-transform: translate(-50px, 0) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_three {
  25% {
    transform: translate(-50px, 0) rotate(-180deg);
    -webkit-transform: translate(-50px, 0) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: rtranslate(0, 0) rotate(-180deg);
  }
}
@-webkit-keyframes object_four {
  25% {
    -webkit-transform: translate(0, 50px) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
@keyframes object_four {
  25% {
    transform: translate(0, 50px) rotate(-180deg);
    -webkit-transform: translate(0, 50px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation-name: fade-out;
  -o-animation-name: fade-out;
  animation-name: fade-out;
}
@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-up {
  0% {
    opacity: 0;
    -o-transform: translateY(500px);
    transform: translateY(500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(500px);
    -o-transform: translateY(500px);
    transform: translateY(500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  -o-animation-name: fade-in-up;
  animation-name: fade-in-up;
}
@-webkit-keyframes fade-out-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
  }
}
@-o-keyframes fade-out-up {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
  }
}
@keyframes fade-out-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
  }
}
.fade-out-up {
  -webkit-animation-name: fade-out-up;
  -o-animation-name: fade-out-up;
  animation-name: fade-out-up;
}
@-webkit-keyframes fade-in-up-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-up-sm {
  0% {
    opacity: 0;
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
  -o-animation-name: fade-in-up-sm;
  animation-name: fade-in-up-sm;
}
@-webkit-keyframes fade-out-up-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@-o-keyframes fade-out-up-sm {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@keyframes fade-out-up-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
  -o-animation-name: fade-out-up-sm;
  animation-name: fade-out-up-sm;
}
@-webkit-keyframes fade-in-up-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-up-lg {
  0% {
    opacity: 0;
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
  -o-animation-name: fade-in-up-lg;
  animation-name: fade-in-up-lg;
}
@-webkit-keyframes fade-out-up-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
@-o-keyframes fade-out-up-lg {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
@keyframes fade-out-up-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
  -o-animation-name: fade-out-up-lg;
  animation-name: fade-out-up-lg;
}
@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-down {
  0% {
    opacity: 0;
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  -o-animation-name: fade-in-down;
  animation-name: fade-in-down;
}
@-webkit-keyframes fade-out-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
  }
}
@-o-keyframes fade-out-down {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(500px);
    transform: translateY(500px);
  }
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(500px);
    -o-transform: translateY(500px);
    transform: translateY(500px);
  }
}
.fade-out-down {
  -webkit-animation-name: fade-out-down;
  -o-animation-name: fade-out-down;
  animation-name: fade-out-down;
}
@-webkit-keyframes fade-in-down-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-down-sm {
  0% {
    opacity: 0;
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
  -o-animation-name: fade-in-down-sm;
  animation-name: fade-in-down-sm;
}
@-webkit-keyframes fade-out-down-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}
@-o-keyframes fade-out-down-sm {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
}
@keyframes fade-out-down-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
  }
}
.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
  -o-animation-name: fade-out-down-sm;
  animation-name: fade-out-down-sm;
}
@-webkit-keyframes fade-in-down-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-down-lg {
  0% {
    opacity: 0;
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
  -o-animation-name: fade-in-down;
  animation-name: fade-in-down;
}
@-webkit-keyframes fade-out-down-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
@-o-keyframes fade-out-down-lg {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
@keyframes fade-out-down-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
  -o-animation-name: fade-out-down-lg;
  animation-name: fade-out-down-lg;
}
@-webkit-keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-left {
  0% {
    opacity: 0;
    -o-transform: translateX(-500px);
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    -o-transform: translateX(-500px);
    transform: translateX(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  -o-animation-name: fade-in-left;
  animation-name: fade-in-left;
}
@-webkit-keyframes fade-out-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
  }
}
@-o-keyframes fade-out-left {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-500px);
    transform: translateX(-500px);
  }
}
@keyframes fade-out-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-500px);
    -o-transform: translateX(-500px);
    transform: translateX(-500px);
  }
}
.fade-out-left {
  -webkit-animation-name: fade-out-left;
  -o-animation-name: fade-out-left;
  animation-name: fade-out-left;
}
@-webkit-keyframes fade-in-left-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-left-sm {
  0% {
    opacity: 0;
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-left-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
  -o-animation-name: fade-in-left-sm;
  animation-name: fade-in-left-sm;
}
@-webkit-keyframes fade-out-left-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@-o-keyframes fade-out-left-sm {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes fade-out-left-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
  -o-animation-name: fade-out-left-sm;
  animation-name: fade-out-left-sm;
}
@-webkit-keyframes fade-in-left-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-left-lg {
  0% {
    opacity: 0;
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-left-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
  -o-animation-name: fade-in-left-lg;
  animation-name: fade-in-left-lg;
}
@-webkit-keyframes fade-out-left-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
@-o-keyframes fade-out-left-lg {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
@keyframes fade-out-left-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
  -o-animation-name: fade-out-left-lg;
  animation-name: fade-out-left-lg;
}
@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-right {
  0% {
    opacity: 0;
    -o-transform: translateX(500px);
    transform: translateX(500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    -o-transform: translateX(500px);
    transform: translateX(500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  -o-animation-name: fade-in-right;
  animation-name: fade-in-right;
}
@-webkit-keyframes fade-out-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
  }
}
@-o-keyframes fade-out-right {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(500px);
    transform: translateX(500px);
  }
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(500px);
    -o-transform: translateX(500px);
    transform: translateX(500px);
  }
}
.fade-out-right {
  -webkit-animation-name: fade-out-right;
  -o-animation-name: fade-out-right;
  animation-name: fade-out-right;
}
@-webkit-keyframes fade-in-right-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-right-sm {
  0% {
    opacity: 0;
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-right-sm {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
  -o-animation-name: fade-in-right-sm;
  animation-name: fade-in-right-sm;
}
@-webkit-keyframes fade-out-right-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@-o-keyframes fade-out-right-sm {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@keyframes fade-out-right-sm {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
}
.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
  -o-animation-name: fade-out-right-sm;
  animation-name: fade-out-right-sm;
}
@-webkit-keyframes fade-in-right-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-right-lg {
  0% {
    opacity: 0;
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-right-lg {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
  -o-animation-name: fade-in-right-lg;
  animation-name: fade-in-right-lg;
}
@-webkit-keyframes fade-out-right-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
@-o-keyframes fade-out-right-lg {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
@keyframes fade-out-right-lg {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
  -o-animation-name: fade-out-right-lg;
  animation-name: fade-out-right-lg;
}
@-webkit-keyframes rotate-in {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-in {
  0% {
    opacity: 0;
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-in {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-in {
  -webkit-animation-name: rotate-in;
  -o-animation-name: rotate-in;
  animation-name: rotate-in;
}
@-webkit-keyframes rotate-out {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-out {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-out {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-out {
  -webkit-animation-name: rotate-out;
  -o-animation-name: rotate-out;
  animation-name: rotate-out;
}
@-webkit-keyframes rotate-in-sm {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-in-sm {
  0% {
    opacity: 0;
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-in-sm {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
  -o-animation-name: rotate-in-sm;
  animation-name: rotate-in-sm;
}
@-webkit-keyframes rotate-out-sm {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-out-sm {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-out-sm {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
  -o-animation-name: rotate-out-sm;
  animation-name: rotate-out-sm;
}
@-webkit-keyframes rotate-in-lg {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-in-lg {
  0% {
    opacity: 0;
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-in-lg {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
  -o-animation-name: rotate-in-lg;
  animation-name: rotate-in-lg;
}
@-webkit-keyframes rotate-out-lg {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-out-lg {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-out-lg {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
  -o-animation-name: rotate-out-lg;
  animation-name: rotate-out-lg;
}
@-webkit-keyframes flip-in-x {
  0% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
  }
}
@-o-keyframes flip-in-x {
  0% {
    opacity: 0;
    transform: perspective(550px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(550px) rotateX(0deg);
  }
}
@keyframes flip-in-x {
  0% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
  }
}
.flip-in-x {
  -webkit-animation-name: flip-in-x;
  -o-animation-name: flip-in-x;
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-x {
  0% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
  }
}
@-o-keyframes flip-out-x {
  0% {
    opacity: 1;
    transform: perspective(550px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(550px) rotateX(90deg);
  }
}
@keyframes flip-out-x {
  0% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
  }
}
.flip-out-x {
  -webkit-animation-name: flip-out-x;
  -o-animation-name: flip-out-x;
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-x-nr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
  }
}
@-o-keyframes flip-in-x-nr {
  0% {
    opacity: 0;
    transform: perspective(100px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(100px) rotateX(0deg);
  }
}
@keyframes flip-in-x-nr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
  }
}
.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
  -o-animation-name: flip-in-x-nr;
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-x-nr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
  }
}
@-o-keyframes flip-out-x-nr {
  0% {
    opacity: 1;
    transform: perspective(100px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(100px) rotateX(90deg);
  }
}
@keyframes flip-out-x-nr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
  }
}
.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
  -o-animation-name: flip-out-x-nr;
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-x-fr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
}
@-o-keyframes flip-in-x-fr {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
  }
}
@keyframes flip-in-x-fr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
}
.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
  -o-animation-name: flip-in-x-fr;
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-x-fr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
  }
}
@-o-keyframes flip-out-x-fr {
  0% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(1000px) rotateX(90deg);
  }
}
@keyframes flip-out-x-fr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
  }
}
.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
  -o-animation-name: flip-out-x-fr;
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y {
  0% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
  }
}
@-o-keyframes flip-in-y {
  0% {
    opacity: 0;
    transform: perspective(550px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(550px) rotateY(0deg);
  }
}
@keyframes flip-in-y {
  0% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
  }
}
.flip-in-y {
  -webkit-animation-name: flip-in-y;
  -o-animation-name: flip-in-y;
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-y {
  0% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
  }
}
@-o-keyframes flip-out-y {
  0% {
    opacity: 1;
    transform: perspective(550px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(550px) rotateY(90deg);
  }
}
@keyframes flip-out-y {
  0% {
    opacity: 1;
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
  }
}
.flip-out-y {
  -webkit-animation-name: flip-out-y;
  -o-animation-name: flip-out-y;
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y-nr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
  }
}
@-o-keyframes flip-in-y-nr {
  0% {
    opacity: 0;
    transform: perspective(100px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(100px) rotateY(0deg);
  }
}
@keyframes flip-in-y-nr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
  }
}
.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
  -o-animation-name: flip-in-y-nr;
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-y-nr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
  }
}
@-o-keyframes flip-out-y-nr {
  0% {
    opacity: 1;
    transform: perspective(100px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(100px) rotateY(90deg);
  }
}
@keyframes flip-out-y-nr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
  }
}
.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
  -o-animation-name: flip-out-y-nr;
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y-fr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
  }
}
@-o-keyframes flip-in-y-fr {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}
@keyframes flip-in-y-fr {
  0% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
  }
}
.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
  -o-animation-name: flip-in-y-fr;
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flip-out-y-fr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
  }
}
@-o-keyframes flip-out-y-fr {
  0% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
  }
}
@keyframes flip-out-y-fr {
  0% {
    opacity: 1;
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
  }
}
.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
  -o-animation-name: flip-out-y-fr;
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes zoom-in {
  0% {
    opacity: 0;
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
  }
}
.zoom-in {
  -webkit-animation-name: zoom-in;
  -o-animation-name: zoom-in;
  animation-name: zoom-in;
}
@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoom-out {
  0% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
  }
}
.zoom-out {
  -webkit-animation-name: zoom-out;
  -o-animation-name: zoom-out;
  animation-name: zoom-out;
}
@-webkit-keyframes zoom-in-sm {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes zoom-in-sm {
  0% {
    opacity: 0;
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in-sm {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
  }
}
.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
  -o-animation-name: zoom-in-sm;
  animation-name: zoom-in-sm;
}
@-webkit-keyframes zoom-out-sm {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoom-out-sm {
  0% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-out-sm {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
  }
}
.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
  -o-animation-name: zoom-out-sm;
  animation-name: zoom-out-sm;
}
@-webkit-keyframes zoom-in-lg {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes zoom-in-lg {
  0% {
    opacity: 0;
    -o-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in-lg {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
  }
}
.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
  -o-animation-name: zoom-in-lg;
  animation-name: zoom-in-lg;
}
@-webkit-keyframes zoom-out-lg {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoom-out-lg {
  0% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -o-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-out-lg {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
  }
}
.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
  -o-animation-name: zoom-out-lg;
  animation-name: zoom-out-lg;
}
.blink-slow {
  -webkit-animation-name: blink-slow;
  -o-animation-name: blink-slow;
  animation-name: blink-slow;
  -webkit-animation-duration: .3s;
  -o-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -o-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes blink-slow {
  0% {
    opacity: .4;
  }
  50% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes blink-slow {
  0% {
    opacity: .4;
  }
  50% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink-slow {
  0% {
    opacity: .4;
  }
  50% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@-o-keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
  -o-animation-name: overlay-slide-in-top;
  animation-name: overlay-slide-in-top;
}
@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-o-keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
  -o-animation-name: overlay-slide-out-top;
  animation-name: overlay-slide-out-top;
}
@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@-o-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
  -o-animation-name: overlay-slide-in-bottom;
  animation-name: overlay-slide-in-bottom;
}
@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-o-keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
  -o-animation-name: overlay-slide-out-bottom;
  animation-name: overlay-slide-out-bottom;
}
@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-o-keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
  -o-animation-name: overlay-slide-in-left;
  animation-name: overlay-slide-in-left;
}
@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
  -o-animation-name: overlay-slide-out-left;
  animation-name: overlay-slide-out-left;
}
@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-o-keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
  -o-animation-name: overlay-slide-in-right;
  animation-name: overlay-slide-in-right;
}
@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
  -o-animation-name: overlay-slide-out-right;
  animation-name: overlay-slide-out-right;
}
/*------------------------------------------
FADE IN
-------------------------------------------*/
@-webkit-keyframes zoom-in-circle {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes zoom-in-circle {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes zoom-in-circle {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/**
 * 3.0 - Template
 * ----------------------------------------------------------------------------
 */
img {
  max-width: 100%;
  height: auto;
}
a,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}
body {
  line-height: 1.6;
  color: #868686;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  color: #25282c;
  font-weight: 400;
}
.container .container {
  width: 100%;
}
.container {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}
div,
iframe,
img {
  margin: 0;
  padding: 0;
}
p {
  font-weight: 400;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
::selection {
  background: #e5b219;
  color: #ffffff;
}
a,
a:hover,
a:focus,
a:active,
a.active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a:hover,
a:focus,
a:active,
a.active {
  color: #e5b219;
}
input,
textarea,
button,
select {
  outline: none;
}
select {
  max-width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 0 15px;
  font-size: 14px;
  color: #878787;
  height: 42px;
  line-height: 1;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("assets/images/arrow_down.png");
  background-repeat: no-repeat;
  background-position: 98%;
  background-position: calc(100% - 10px);
}
input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
textarea {
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: #878787;
  height: 42px;
  line-height: 1;
  background-color: #f5f5f5;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #e5b219;
}
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 {
  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 {
  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 {
  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 {
  color: #878787;
}
textarea {
  height: auto;
  line-height: 25px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
body.boxed {
  background-image: url('assets/images/patterns/bg0.png');
  background-repeat: repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: auto;
}
.boxed #wrapper {
  max-width: 1200px;
  margin: auto;
}
#wrapper-content {
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.content-middle {
  display: table;
}
.content-middle-inner {
  display: table-cell;
  vertical-align: middle;
}
/***************owl-controls****************/
.owl-theme .owl-controls .owl-page span {
  background: #ffffff;
  border: 1px solid #222222;
}
.owl-theme .owl-controls .owl-page.active span {
  background: #222222;
}
/***************end owl-controls****************/
.entry-thumbnail {
  position: relative;
}
.entry-thumbnail .entry-thumbnail-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  background-color: rgba(229, 178, 25, 0.9);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.entry-thumbnail ul.entry-thumbnail-controls {
  list-style-type: none;
  height: 100%;
  display: table;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.entry-thumbnail ul.entry-thumbnail-controls li {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  padding: 0 5px;
}
.entry-thumbnail .entry-thumbnail-hover a {
  width: 42px;
  height: 42px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #fff;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}
.entry-thumbnail .entry-thumbnail-hover a i {
  font-size: 22px;
  line-height: 38px;
  height: auto;
  width: auto;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
.entry-thumbnail .entry-thumbnail-hover a:hover {
  background-color: #e5b219;
}
.entry-thumbnail:hover .entry-thumbnail-hover {
  opacity: 1;
}
.wpb_map_wraper iframe {
  display: block;
  pointer-events: none;
}
.wpb_gmaps_widget .wpb_wrapper {
  padding: 0;
}
.entry-thumbnail.icon .entry-thumbnail-hover {
  background-color: transparent;
  border: solid 10px #dedede;
}
.entry-thumbnail.icon .entry-thumbnail-hover .entry-hover-wrapper {
  background-color: rgba(255, 255, 255, 0.8);
}
.entry-thumbnail.icon .entry-thumbnail-hover .entry-hover-inner i {
  width: 36px;
  height: 36px;
  background-color: #e5b219;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  font-size: 20px;
  line-height: 36px;
}
.entry-thumbnail.title .entry-thumbnail-hover .entry-hover-inner a {
  height: auto;
}
.entry-thumbnail.title .entry-thumbnail-hover .entry-hover-inner a h5 {
  margin-bottom: 10px;
  font-size: 13px;
}
.entry-thumbnail.title .entry-thumbnail-hover .entry-hover-inner span {
  color: #fff;
  font-style: italic;
}
.entry-thumbnail-zoom-out {
  overflow: hidden;
}
.entry-thumbnail-zoom-out img {
  max-width: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.entry-thumbnail-zoom-out:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.fixed {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.post-navigation {
  padding: 0;
  display: table;
  width: 100%;
  position: relative;
}
.post-navigation .nav-links {
  width: 100%;
  margin: 0 auto;
  display: table;
  border-top: solid 1px #eeeeee;
  border-bottom: solid 1px #eeeeee;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  position: relative;
  vertical-align: middle;
  padding: 30px 0;
  width: 50%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.post-navigation .nav-links .nav-previous:hover div.post-navigation-title,
.post-navigation .nav-links .nav-next:hover div.post-navigation-title,
.post-navigation .nav-links .nav-previous:hover .post-navigation-icon,
.post-navigation .nav-links .nav-next:hover .post-navigation-icon {
  color: #e5b219;
}
.post-navigation .nav-links .nav-previous {
  float: left;
}
.post-navigation .nav-links .nav-next {
  text-align: right;
  border-left: 1px dashed #fefefe;
  float: right;
}
.post-navigation .post-navigation-icon {
  font-size: 14px;
  line-height: 1em;
  width: 60px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  color: #868686;
}
.post-navigation .nav-links .nav-next .post-navigation-icon {
  right: 0;
}
.post-navigation .post-navigation-content {
  display: block;
}
.post-navigation .post-navigation-content div.post-navigation-title {
  margin-bottom: 0px;
}
.post-navigation .nav-links .nav-previous .post-navigation-content {
  margin-left: 20px;
  margin-right: 2em;
}
.post-navigation .nav-links .nav-next .post-navigation-content {
  margin-right: 20px;
  margin-left: 2em;
}
.post-navigation-label {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #868686;
}
.post-navigation-title {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  color: #25282c;
}
.gotop {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  text-align: center;
  padding: 6px;
  z-index: 2;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.gotop:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dashed #e5b219;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.gotop i {
  width: 100%;
  height: 100%;
  display: block;
  line-height: 32px;
  color: #fff;
  background-color: #e5b219;
  font-size: 22px;
  position: relative;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.gotop i:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-box-shadow: 0 0 0 2px #e5b219;
  -moz-box-shadow: 0 0 0 2px #e5b219;
  box-shadow: 0 0 0 2px #e5b219;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.gotop:hover {
  text-decoration: none;
}
.gotop:hover:before {
  -webkit-animation: fa-spin 5s infinite linear;
  animation: fa-spin 5s infinite linear;
  opacity: 1;
}
.gotop.in {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
/*page-title*/
.page-title-wrapper {
  position: relative;
  height: 300px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.page-title-wrapper.page-title-image {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-title-wrapper.page-title-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}
.page-title-wrapper .page-title-inner {
  position: absolute;
  top: 0;
  padding: 0;
  display: table;
  width: 100%;
  text-align: center;
  height: 300px;
}
.page-title-wrapper .page-title-inner .container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.page-title-wrapper .page-title-inner h1 {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 0.3em;
  margin: 0;
}
.page-title-wrapper .page-title-inner span {
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  font-size: 13px;
  color: #666666;
  display: block;
  margin-top: 20px;
}
.border-bottom {
  border-bottom: 1px solid #dddddd;
}
.dark * {
  color: #FFFFFF !important;
}
@media (max-width: 480px) {
  .page-title-wrapper {
    height: 200px;
  }
  .page-title-wrapper .page-title-inner {
    height: 200px;
  }
  .page-title-wrapper .page-title-inner h1 {
    font-size: 24px;
  }
}
/*---------page-title-archive-----------*/
/*.page-title-archive-wrapper{
  height: 200px;
  background-color: #f5f5f5;
}
.page-title-archive-wrapper .page-title-image{
  height: 200px;
}

.page-title-archive-wrapper .page-title-inner{
  height: 200px;
}*/
.search-no-results .blog-inner,
.search-no-results .blog-inner input[type="text"] {
  text-align: center;
}
/* ---- page-title - menu transparent -- */
.dark .post-type-archive-product .page-title-wrapper,
.dark .single .page-title-wrapper {
  min-height: 200px;
  height: auto;
}
.dark .post-type-archive-product .page-title-wrapper:before,
.dark .single .page-title-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
}
/*----------------breadcrumb------------------*/
.breadcrumb-wrapper {
  background-color: #F5F5F5;
}
.breadcrumb-wrapper ul.breadcrumbs {
  padding: 20px 0;
  margin: 0;
  list-style-type: none;
}
.breadcrumb-wrapper ul.breadcrumbs li {
  display: inline-block;
}
.breadcrumb-wrapper ul.breadcrumbs li + li:before {
  content: "\00bb";
  display: inline-block;
  font-family: times, serif;
  font-size: 20px;
  padding: 0 10px;
}
.breadcrumb-wrapper ul.breadcrumbs li a,
.breadcrumb-wrapper ul.breadcrumbs li span {
  color: #25282c;
  text-transform: uppercase;
  font-weight: bold;
}
.breadcrumb-wrapper ul.breadcrumbs li a:hover {
  color: #e5b219;
}
.breadcrumb-wrapper br {
  display: none;
}
/*-------------------------
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;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@-moz-keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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;
  -moz-animation: spinner 1.2s linear infinite;
  -ms-animation: spinner 1.2s linear infinite;
  -o-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-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.modal-backdrop.in {
  opacity: 1;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #FFFFFF;
  font-size: 48px;
  display: block;
  line-height: 1;
}
.zorka-padding-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.zorka-padding-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.zorka-padding-20 {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (max-width: 1169px) {
  .post-navigation .nav-links {
    width: 100%;
  }
}
.page-404.content-middle {
  height: 352px;
  width: 100%;
  text-align: center;
}
.page-404.content-middle h1 {
  border: 5px solid #EEEEEE;
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
  padding: 21px 34px;
}
.page-404.content-middle p {
  font-size: 20px;
  color: #666666;
  line-height: 32px;
  max-width: 442px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
}
.page-404.content-middle p a {
  color: #e5b219;
}
/**
style for navigation revolution slider
*/
.tp-bullets.simplebullets.round .bullet {
  background: none repeat scroll 0 0 transparent !important;
  border: 1px solid #fff !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
  height: 14px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
  width: 14px !important;
}
.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected {
  background: none repeat scroll 0 0 #fff !important;
}
/*---------------------------------------
Popup Login/Register
----------------------------------------*/
.zorka-popup-login-content label {
  font-weight: 600;
  font-size: 15px;
}
#zorka-popup-login-wrapper input[type="text"],
#zorka-popup-login-wrapper input[type="email"],
#zorka-popup-login-wrapper input[type="password"] {
  background: #fff;
  border: solid 1px #dddddd;
  padding: 10px;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  text-transform: none;
  min-height: 44px;
}
#zorka-popup-login-wrapper input[type="text"]:focus,
#zorka-popup-login-wrapper input[type="email"]:focus,
#zorka-popup-login-wrapper input[type="password"]:focus {
  border: solid 1px #e5b219;
}
#zorka-popup-login-wrapper .modal-body {
  background: #FAFAFA;
}
.input-icon {
  position: relative;
}
.input-icon > i.fa {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  height: 14px;
}
#zorka-popup-login-wrapper .input-icon > input[type="text"],
#zorka-popup-login-wrapper .input-icon > input[type="email"],
#zorka-popup-login-wrapper .input-icon > input[type="password"] {
  padding-left: 40px;
}
#zorka-popup-login-wrapper .input-icon > input[type="text"]:focus + i,
#zorka-popup-login-wrapper .input-icon > input[type="email"]:focus + i,
#zorka-popup-login-wrapper .input-icon > input[type="password"]:focus + i {
  color: #e5b219;
}
#zorka-popup-login-wrapper .modal-footer .modal-footer-left {
  float: left;
  padding: 5px 0;
}
#zorka-popup-login-wrapper .modal-footer .modal-footer-right {
  float: right;
}
#zorka-popup-login-wrapper input[type="checkbox"] {
  display: none;
}
#zorka-popup-login-wrapper input[type="checkbox"] + label {
  display: inline-block;
  padding-left: 10px;
  position: relative;
  width: 58px;
  height: 25px;
  background: #D7D7D7;
  vertical-align: top;
  margin: 0;
  cursor: pointer;
}
#zorka-popup-login-wrapper input[type="checkbox"] + label:before {
  content: attr(no-value);
  display: block;
  position: absolute;
  left: 8px;
  top: 0;
  right: 8px;
  bottom: 0;
  z-index: 1;
  text-align: right;
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  line-height: 27px;
}
#zorka-popup-login-wrapper input[type="checkbox"] + label:after {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 19px;
  height: 19px;
  z-index: 2;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
#zorka-popup-login-wrapper input[type="checkbox"]:checked + label {
  background: #e5b219;
}
#zorka-popup-login-wrapper input[type="checkbox"]:checked + label:before {
  content: attr(yes-value);
  text-align: left;
}
#zorka-popup-login-wrapper input[type="checkbox"]:checked + label:after {
  left: 36px;
  top: 3px;
}
#zorka-popup-login-wrapper .modal-footer-right button.button {
  background: #e5b219;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
}
#zorka-popup-login-wrapper .modal-dialog {
  max-width: 500px;
}
/*
END Popup Login/Register
----------------------------------------*/
/**
 * 4.0 - Header
 * ----------------------------------------------------------------------------
 */
/*-------------------------*/
/* MODAL SEARCH
/*-------------------------*/
#zorka-modal-search {
  z-index: 999999;
}
#zorka-modal-search.modal.in .modal-backdrop.in {
  opacity: 0.8;
  height: 100%;
  position: fixed;
  background: #000;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#zorka-modal-search.modal.in .zorka-modal-dialog {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
#zorka-modal-search .zorka-modal-dialog {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: auto;
}
#zorka-modal-search .zorka-dismiss-modal {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 48px;
  color: #fff;
  z-index: 1040;
  cursor: pointer;
}
#zorka-modal-search .zorka-dismiss-modal:hover {
  color: #e5b219;
}
#zorka-modal-search .zorka-modal-search {
  padding: 80px 30px 60px;
}
#zorka-modal-search .zorka-modal-search .zorka-search-wrapper {
  position: relative;
  width: 100%;
  font-size: 24px;
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  max-width: 1140px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
#zorka-modal-search .zorka-modal-search .zorka-search-wrapper:before,
#zorka-modal-search .zorka-modal-search .zorka-search-wrapper:after {
  content: " ";
  display: table;
}
#zorka-modal-search .zorka-modal-search .zorka-search-wrapper:after {
  clear: both;
}
#zorka-modal-search .zorka-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;
}
#zorka-modal-search .zorka-modal-search button {
  position: absolute;
  display: block;
  color: #000;
  bottom: 10px;
  right: 0;
  line-height: 30px;
  border: none;
  outline: none;
  font-size: 30px;
  background-color: transparent;
}
#zorka-modal-search .ajax-search-result {
  margin: auto;
  max-width: 1140px;
  background: rgba(22, 22, 22, 0.4);
  max-height: 320px;
  overflow-y: auto;
  position: relative;
}
#zorka-modal-search .ajax-search-result > ul {
  list-style: none;
  padding: 15px;
  position: relative;
}
#zorka-modal-search .ajax-search-result li {
  padding: 5px 5px;
  color: #fff;
  font-size: 16px;
}
#zorka-modal-search .ajax-search-result li span {
  display: inline-block;
  padding-left: 15px;
  color: #777;
  font-style: italic;
}
#zorka-modal-search .ajax-search-result li.selected a,
#zorka-modal-search .ajax-search-result li a:hover {
  color: #e5b219;
}
#zorka-modal-search i.ajax-search-icon {
  color: #fff;
}
#zorka-modal-search i.ajax-search-icon.icon-search:before {
  font-family: 'FontAwesome';
  content: '\f002';
  display: inline-block;
  font-style: normal;
  font-size: 22px;
}
/*-------------------------*/
/* HEADER
/*-------------------------*/
body.boxed header.main-header {
  max-width: 1200px;
  left: auto;
  right: auto;
}
header.main-header {
  position: fixed;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: #fff;
  z-index: 999;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  margin: auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
header.main-header.sticky-disable {
  position: relative;
  top: auto !important;
}
header.main-header .site-top {
  color: #888;
  border-bottom: solid 1px #eee;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  word-spacing: 1px;
  position: relative;
  z-index: 9999;
}
header.main-header .site-top:after {
  content: "";
  display: block;
  clear: both;
}
header.main-header .site-top .site-top-left {
  float: left;
}
header.main-header .site-top .site-top-left .zorka-login-link {
  padding: 10px 0;
}
header.main-header .site-top .site-top-left .zorka-login-link a {
  color: #e5b219;
}
header.main-header .site-top .site-top-left .zorka-login-link a:hover {
  text-decoration: underline;
}
header.main-header .site-top .site-top-right {
  float: right;
}
header.main-header .site-top .site-top-right ul.my-setting {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
}
header.main-header .site-top .site-top-right ul.my-setting li {
  padding: 10px 0;
  cursor: pointer;
}
header.main-header .site-top .site-top-right ul.my-setting ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0px 3px 10px -2px #777777;
  -moz-box-shadow: 0px 3px 10px -2px #777777;
  box-shadow: 0px 3px 10px -2px #777777;
  background: #fff;
  min-width: 180px;
}
header.main-header .site-top .site-top-right ul.my-setting ul li {
  padding: 10px 10px;
  white-space: nowrap;
}
header.main-header .site-top .site-top-right ul.my-setting ul li:hover {
  background: #f5f5f5;
}
header.main-header .site-top .site-top-right ul.my-setting ul li a {
  color: #888;
  text-transform: uppercase;
  font-size: 12px;
}
header.main-header .site-top .site-top-right ul.my-setting ul li + li {
  border-top: solid 1px #f5f5f5;
}
header.main-header .site-top .site-top-right ul.my-setting li:hover ul {
  display: block;
}
header.main-header .site-top .site-top-right .language-selector {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  display: none;
  -webkit-box-shadow: 0px 3px 10px -2px #777777;
  -moz-box-shadow: 0px 3px 10px -2px #777777;
  box-shadow: 0px 3px 10px -2px #777777;
  background: #fff;
  height: auto;
  font-family: inherit;
  color: #888;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list > ul {
  height: auto;
  min-width: 180px;
  border-top: none;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list > ul > li {
  float: none;
  padding: 0;
  display: block;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list > ul > li:hover {
  background: #f5f5f5;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list > ul > li > a {
  background: transparent;
  padding: 10px;
  border-bottom: none;
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
}
header.main-header .site-top .site-top-right .language-selector div#lang_sel_list > ul > li + li > a {
  border-top: solid 1px #f5f5f5;
}
header.main-header .site-top .site-top-right .language-selector li {
  padding: 10px 0;
}
header.main-header .site-top .site-top-right .language-selector li:hover div#lang_sel_list {
  display: block;
}
header.main-header .site-top .site-top-right ul.my-setting + .language-selector {
  margin-left: 15px;
}
header.main-header .header-mobile {
  text-align: center;
  padding: 15px;
  display: none;
}
header.main-header .header .zorka-navbar-header {
  position: relative;
  padding: 50px 0 40px;
  font-size: 0;
}
header.main-header .header .zorka-navbar-header .social-link {
  width: 30%;
}
header.main-header .header .zorka-navbar-header .header-logo {
  width: 40%;
}
header.main-header .header .zorka-navbar-header .shopping-cart-wrapper {
  width: 30%;
}
header.main-header .header .social-link {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}
header.main-header .header .social-link > li {
  display: inline-block;
  padding: 5px 0;
}
header.main-header .header .social-link > li + li {
  padding-left: 15px;
}
header.main-header .header .social-link a {
  font-size: 17px;
  color: #ccc;
}
header.main-header .header .social-link a:hover {
  color: #25292C;
}
header.main-header .header .header-logo {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
}
header.main-header .header .shopping-cart-wrapper {
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  text-align: right;
  position: relative;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content {
  display: inline-block;
  text-align: left;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon {
  position: relative;
  display: inline-block;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > span.pe-7s-cart {
  font-size: 36px;
  cursor: pointer;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > span.pe-7s-cart + span {
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #e5b219;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  top: 0;
  right: -10px;
  text-align: center;
  line-height: 20px;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 9998;
  width: 370px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 10px -2px #777777;
  -moz-box-shadow: 0px 3px 10px -2px #777777;
  box-shadow: 0px 3px 10px -2px #777777;
  padding: 0 20px;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper.has-cart {
  border-top: solid 1px #dddddd;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty {
  padding: 45px 0;
  text-align: center;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty h4 {
  text-transform: uppercase;
  color: #25282c;
  padding: 0 0 15px;
  margin: 0;
  font-size: 16px;
  word-spacing: 0.2em;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li.empty p {
  color: #868686;
  padding: 0;
  margin: 0;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li {
  padding: 10px 0;
  margin: 0;
  position: relative;
  border-bottom: solid 1px #dddddd;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > a > img {
  height: auto;
  width: 70px;
  float: left;
  padding-right: 10px;
  margin: 0;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > a {
  text-transform: uppercase;
  word-spacing: 0.2em;
  color: #25282c;
  font-size: 12px;
  padding-right: 20px;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > a:hover {
  color: #e5b219;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > span.quantity {
  font-size: 12px;
  color: #868686;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > a.remove_from_cart_button {
  position: absolute;
  right: 0;
  top: 20px;
  padding-right: 0;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper li > a.remove_from_cart_button:before {
  font-size: 20px;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.total {
  border-bottom: solid 1px #dddddd;
  padding: 10px 0;
  font-size: 16px;
  color: #868686;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.total strong {
  text-transform: uppercase;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons {
  text-align: center;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  font-size: 12px;
  padding: 11px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  color: #25282c;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button:hover {
  background-color: #e5b219;
  border: 1px solid #e5b219;
  color: #ffffff;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper p.buttons .button + .button {
  margin-left: 10px;
}
header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content:hover .cart_list_wrapper {
  display: block;
}
header.main-header .header .header-left-wrapper,
header.main-header .header .header-right-wrapper {
  position: absolute;
  left: 15px;
  top: 10px;
  z-index: 1;
  bottom: 0;
  display: block;
  width: 150px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header .header .header-right-wrapper {
  left: auto;
  right: 15px;
  text-align: right;
  vertical-align: middle;
  height: 51px;
  bottom: 0;
  margin: auto;
}
header.main-header .menu-wrapper {
  position: relative;
  background: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header .menu-wrapper > .container {
  position: relative;
}
header.main-header .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text {
  position: relative;
  font-family: Montserrat;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
header.main-header .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after {
  content: "";
  width: 0%;
  position: absolute;
  margin: auto;
  border-bottom: solid 1px #e5b219 !important;
  height: 1px;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin-top: 3px;
}
header.main-header .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover {
  color: #e5b219 !important;
}
header.main-header .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text span.x-menu-text:after,
header.main-header .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text span.x-menu-text:after,
header.main-header .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover span.x-menu-text:after {
  width: 100%;
}
header.main-header .menu-wrapper .x-nav-menu > li a.icon-search-menu > span {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  top: 2px;
}
header.main-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo {
  display: none;
}
header.main-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo > a {
  padding-top: 0;
  padding-bottom: 0;
}
header.main-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo > a img {
  max-height: 36px;
  width: auto;
}
header.main-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo + li {
  margin-left: 0;
}
header.main-header .menu-wrapper .x-nav-menu ul.x-sub-menu li.current-menu-ancestor > a.x-menu-a-text,
header.main-header .menu-wrapper .x-nav-menu ul.x-sub-menu li.current-menu-item > a.x-menu-a-text,
header.main-header .menu-wrapper .x-nav-menu ul.x-sub-menu li > a.x-menu-a-text:hover {
  color: #e5b219;
}
header.main-header .menu-wrapper .x-nav-menu ul.x-sub-menu li > a.x-menu-a-text {
  font-size: 12px;
  font-weight: 600;
}
header.main-header .menu-wrapper .x-nav-menu ul.x-sub-menu-multi-column > li.x-tabs ul.x-sub-menu-tab > li.x-menu-active > a.x-menu-a-text {
  color: #e5b219;
}
header.main-header .toggle-inner-search {
  display: block;
  float: right;
  padding-top: 0px;
  font-size: 22px;
}
header.main-header .mobile-mini-cart {
  display: block;
  float: right;
  padding-top: 0px;
  font-size: 22px;
}
header.main-header .mobile-mini-cart + .toggle-inner-search {
  margin-right: 20px;
}
header.main-header.header-2 .menu-wrapper,
header.main-header.header-4 .menu-wrapper,
header.main-header.header-5 .menu-wrapper,
header.main-header.header-10 .menu-wrapper {
  background: #25292c;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text {
  color: #fff;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before {
  color: #fff;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li a.icon-search-menu > span,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li a.icon-search-menu > span,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li a.icon-search-menu > span,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li a.icon-search-menu > span {
  color: #fff;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after {
  border-bottom-color: #fff;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-2 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover {
  color: #fff;
}
header.main-header.header-4 {
  background: transparent;
}
header.main-header.header-4 .menu-wrapper {
  background: transparent;
}
header.main-header.header-4 .widget_shopping_cart_icon > span.pe-7s-cart,
header.main-header.header-4 .header .social-link a,
header.main-header.header-4 .site-top {
  color: #fff;
}
header.main-header.header-4 .header .social-link a:hover {
  color: #e5b219;
}
header.main-header.header-4 .site-top {
  border-bottom: none;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu {
  text-align: left;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category {
  background: #e5b219;
  color: #fff;
  padding: 20px;
  font-size: 0;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 9999;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category > span.pe-7s-menu {
  font-size: 28px;
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  position: relative;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category > span.product-category-text {
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 14px;
  padding-left: 15px;
  line-height: 20px;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category + li {
  padding-left: 40px;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category:hover > ul.product-category-dropdown {
  display: block;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  list-style: none;
  border: solid 5px #e5b219;
  background: #fff;
  top: 100%;
  left: 0;
  right: 0;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li {
  padding: 0 15px;
  position: relative;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li > a {
  display: block;
  padding: 10px 0;
  color: #666;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li + li > a {
  border-top: solid 1px #dddddd;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li:hover > a {
  color: #e5b219;
  padding-left: 10px;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li.has-children:after {
  content: "\203A";
  font-family: monospace, tahoma;
  display: table;
  color: #666;
  font-size: 13px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown ul.children {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  list-style: none;
  border: solid 5px #e5b219;
  background: #fff;
  padding: 0;
  margin: 0;
  min-width: 240px;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown ul.children:before {
  content: '';
  border-top: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-right: solid 6px #e5b219;
  position: absolute;
  top: 12px;
  right: 100%;
  margin-right: 5px;
}
header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category ul.product-category-dropdown li:hover > ul.children {
  display: block;
}
header.main-header.header-10 .menu-wrapper {
  background: #e5b219;
}
header.main-header.header-6 .zorka-navbar-header .shopping-cart-wrapper,
header.main-header.header-7 .zorka-navbar-header .shopping-cart-wrapper,
header.main-header.header-8 .zorka-navbar-header .shopping-cart-wrapper {
  width: 20%;
}
header.main-header.header-6 .zorka-navbar-header .header-logo,
header.main-header.header-7 .zorka-navbar-header .header-logo,
header.main-header.header-8 .zorka-navbar-header .header-logo {
  width: 20%;
  text-align: left;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper {
  width: 60%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner {
  position: relative;
  margin: 0;
  display: inline-block;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner > i.fa,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner > i.fa,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner > i.fa {
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  height: 18px;
  line-height: 18px;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result {
  font-size: 14px;
  color: #222;
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  z-index: 9998;
  padding: 0;
  margin: 0;
  background: #fff;
  -webkit-box-shadow: 0px 3px 10px -2px #777777;
  -moz-box-shadow: 0px 3px 10px -2px #777777;
  box-shadow: 0px 3px 10px -2px #777777;
  overflow: auto;
  max-height: 425px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li {
  display: block;
  padding: 10px 20px;
  text-align: left;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li:after,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li:after,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li:after {
  content: "";
  display: block;
  clear: both;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li.selected,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li.selected,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li.selected {
  background: #f0f0f0;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li + li,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li + li,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li + li {
  border-top: solid 1px #dddddd;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li a,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li a,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li a {
  display: block;
  text-transform: uppercase;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li img,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li img,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li img {
  float: left;
  margin-right: 15px;
  width: 50px;
  height: auto;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price {
  padding-top: 4px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price ins,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price ins,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .search-header-result ul li > div.price ins {
  display: inline-block;
  margin-right: 15px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 100%;
  margin-bottom: 5px;
  left: 0;
  right: 0;
  text-align: center;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li {
  display: inline-block;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li > i.fa,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li > i.fa,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li > i.fa {
  width: 20px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li + li,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li + li,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header ul li + li {
  margin-left: 40px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category {
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  width: 200px;
  line-height: 44px;
  position: absolute;
  left: 0;
  text-align: left;
  padding: 3px 0px;
  z-index: 9999;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span {
  display: block;
  padding-left: 25px;
  border-right: solid 1px #eee;
  cursor: pointer;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span:after,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span:after,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span:after {
  content: "\f107";
  font-family: FontAwesome;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  line-height: 1px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul {
  display: none;
  position: absolute;
  left: 25px;
  min-width: 175px;
  top: 100%;
  background: #fafafa;
  right: 0;
  border-top: solid 2px #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: auto;
  max-height: 360px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul ul,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul ul,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li {
  line-height: 28px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul span:hover,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul span:hover,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul span:hover {
  background: #f0f0f0;
  color: #e5b219;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li > span,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li > span,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li > span {
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  cursor: pointer;
  white-space: nowrap;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li > span,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li > span,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li > span {
  padding-left: 30px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li > span,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li > span,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li > span {
  padding-left: 50px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li li > span,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li li > span,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul li li li li > span {
  padding-left: 70px;
}
header.main-header.header-6 .zorka-navbar-header .search-header-wrapper input.seach-header-input,
header.main-header.header-7 .zorka-navbar-header .search-header-wrapper input.seach-header-input,
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input {
  width: 600px;
  max-width: 100%;
  padding: 13px 34px 13px 15px;
  height: auto;
  line-height: 20px;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  border: solid 2px #ddd;
  background: transparent;
  padding-left: 205px;
}
header.main-header.header-6 .menu-wrapper,
header.main-header.header-7 .menu-wrapper,
header.main-header.header-8 .menu-wrapper {
  border-top: solid 1px #eee;
}
header.main-header.header-6 .menu-wrapper ul.x-nav-menu,
header.main-header.header-7 .menu-wrapper ul.x-nav-menu,
header.main-header.header-8 .menu-wrapper ul.x-nav-menu {
  text-align: left;
}
header.main-header.header-6 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
header.main-header.header-7 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header.header-6 .menu-wrapper ul.social-link,
header.main-header.header-7 .menu-wrapper ul.social-link,
header.main-header.header-8 .menu-wrapper ul.social-link {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  height: 37px;
  margin: auto;
  right: 15px;
}
header.main-header.header-7 .menu-wrapper,
header.main-header.header-8 .menu-wrapper {
  background: #25292c;
  border-top: none;
}
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text {
  color: #fff;
}
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text > b.x-caret:before {
  color: #fff;
}
header.main-header.header-7 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after {
  border-bottom-color: #fff;
}
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover {
  color: #fff;
}
header.main-header.header-7 .menu-wrapper ul.social-link > li > a,
header.main-header.header-8 .menu-wrapper ul.social-link > li > a {
  color: #AEAEAE;
}
header.main-header.header-7 .menu-wrapper ul.social-link > li > a:hover,
header.main-header.header-8 .menu-wrapper ul.social-link > li > a:hover {
  color: #fff;
}
header.main-header.header-8 {
  background: rgba(0, 0, 0, 0.3);
}
header.main-header.header-8 .menu-wrapper {
  background: transparent;
}
header.main-header.header-8 .site-top {
  border-bottom: none;
  color: #fff;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input {
  background: transparent;
  color: #fff;
  border: solid 2px rgba(111, 111, 111, 0.8);
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input::-webkit-input-placeholder {
  color: #ddd;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input:-moz-placeholder {
  color: #ddd;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input::-moz-placeholder {
  color: #ddd;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper input.seach-header-input:-ms-input-placeholder {
  color: #ddd;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > label > span,
header.main-header.header-8 .shopping-cart-wrapper .widget_shopping_cart_content .widget_shopping_cart_icon > span.pe-7s-cart {
  color: #fff;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner > i.fa {
  color: #fff;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .custom-content-header {
  color: #fff;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category {
  color: #fff;
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > span {
  border-right: solid 1px rgba(111, 111, 111, 0.8);
}
header.main-header.header-8 .zorka-navbar-header .search-header-wrapper > .search-header-inner .product-category > ul {
  color: #868686;
}
header.main-header.header-3 .menu-wrapper ul.x-nav-menu > li,
header.main-header.header-9 .menu-wrapper ul.x-nav-menu > li {
  padding-top: 36px;
  padding-bottom: 26px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header.header-3 .menu-wrapper .header-logo,
header.main-header.header-9 .menu-wrapper .header-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0, 50%);
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -o-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
header.main-header.header-3 .menu-wrapper .header-logo img,
header.main-header.header-9 .menu-wrapper .header-logo img {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  max-height: 80px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header.main-header.header-3 .menu-wrapper .search-button-wrapper,
header.main-header.header-9 .menu-wrapper .search-button-wrapper {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
header.main-header.header-3 .menu-wrapper .search-button-wrapper > a,
header.main-header.header-9 .menu-wrapper .search-button-wrapper > a {
  font-size: 32px;
}
header.main-header.header-9 {
  background: #FAFAFA;
}
header.main-header.header-9 .menu-wrapper {
  background: #FAFAFA;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text > span.x-menu-text:after {
  border-bottom: solid 1px #fff!important;
}
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.current-menu-ancestor > a.x-menu-a-text,
header.main-header.header-2 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li.current-menu-item > a.x-menu-a-text,
header.main-header.header-2 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-4 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-5 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-7 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-8 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover,
header.main-header.header-10 .menu-wrapper .x-nav-menu > li > a.x-menu-a-text:hover {
  color: #fff !important;
}
header.main-header.affix-header .menu-wrapper {
  -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.4);
}
header.main-header.affix-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo {
  display: inline-block;
}
header.main-header.affix-header .menu-wrapper .x-nav-menu > li.x-menu-item-logo + li {
  margin-left: 40px;
}
header.main-header.affix-header .menu-wrapper .x-nav-menu > li.x-menu-item > a.x-menu-a-text {
  padding-top: 20px;
  padding-bottom: 20px;
}
header.main-header.affix-header.header-3 .menu-wrapper ul.x-nav-menu > li,
header.main-header.affix-header.header-9 .menu-wrapper ul.x-nav-menu > li {
  padding-top: 0;
  padding-bottom: 0;
}
header.main-header.affix-header.header-3 .menu-wrapper .header-logo img,
header.main-header.affix-header.header-9 .menu-wrapper .header-logo img {
  max-height: 36px;
}
header.main-header.affix-header.header-3 .header-left-wrapper,
header.main-header.affix-header.header-9 .header-left-wrapper,
header.main-header.affix-header.header-3 .header-right-wrapper,
header.main-header.affix-header.header-9 .header-right-wrapper {
  top: 0;
}
header.main-header.affix-header.header-4,
header.main-header.affix-header.header-8 {
  background: #25292c;
}
.float-header-background {
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 992px) {
  body.header-11 #wrapper-content {
    padding-left: 270px;
  }
  header.main-header.header-11 {
    position: absolute;
    left: 0;
    width: 270px;
    right: auto;
    height: 100%;
  }
  header.main-header.header-11 .header > .container {
    width: auto;
    padding: 0;
  }
  header.main-header.header-11 .header-logo {
    display: block;
    height: 170px;
    border-bottom: solid 1px #EEEEEE;
    text-align: center;
  }
  header.main-header.header-11 .header-logo:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  header.main-header.header-11 .header-logo img {
    vertical-align: middle;
    display: inline-block;
  }
  header.main-header.header-11 .zorka-navbar-header {
    display: table;
    width: 100%;
    vertical-align: middle;
    padding: 0;
    height: 59px;
    border-bottom: solid 1px #eee;
  }
  header.main-header.header-11 .zorka-navbar-header .search-button-wrapper,
  header.main-header.header-11 .zorka-navbar-header .shopping-cart-wrapper {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    text-align: center;
  }
  header.main-header.header-11 .zorka-navbar-header .shopping-cart-wrapper + .search-button-wrapper {
    border-left: solid 1px #eee;
  }
  header.main-header.header-11 .zorka-navbar-header .search-button-wrapper {
    vertical-align: middle;
    font-size: 36px;
  }
  header.main-header.header-11 .zorka-navbar-header .search-button-wrapper .icon-search-menu {
    display: inline-block;
    vertical-align: middle;
  }
  header.main-header.header-11 .zorka-navbar-header .shopping-cart-wrapper .widget_shopping_cart_content {
    position: relative;
    padding: 12px 0;
  }
  header.main-header.header-11 .zorka-navbar-header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    left: 0;
    right: auto;
  }
  header.main-header.header-11 .zorka-navbar-header .shopping-cart-wrapper span.pe-7s-cart {
    vertical-align: middle;
  }
  header.main-header.header-11 ul.left-menu {
    margin: 0;
    padding: 40px 0;
    list-style: none;
  }
  header.main-header.header-11 ul.left-menu li {
    padding: 0 24px;
    min-width: 240px;
    position: relative;
  }
  header.main-header.header-11 ul.left-menu li.menu-item-has-children:after {
    content: "+";
    display: block;
    position: absolute;
    right: 24px;
    top: 10px;
  }
  header.main-header.header-11 ul.left-menu li > a {
    display: block;
    line-height: 40px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    font-family: Montserrat;
  }
  header.main-header.header-11 ul.left-menu li + li > a {
    border-top: solid 1px #eee;
    display: block;
  }
  header.main-header.header-11 ul.left-menu ul.sub-menu {
    display: block;
    position: absolute;
    left: 100%;
    right: auto;
    top: 0;
    bottom: auto;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: solid 3px #e5b219;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
  }
  header.main-header.header-11 ul.left-menu ul.sub-menu:before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 10px;
    border-right: solid 8px #e5b219;
    border-top: solid 8px transparent;
    border-bottom: solid 8px transparent;
  }
  header.main-header.header-11 ul.left-menu li:hover > ul.sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  header.main-header.header-11 .social-link {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 0 !important;
  }
  header.main-header {
    position: relative;
    margin-bottom: 15px;
    background: #fff !important;
    top: auto !important;
  }
  header.main-header .menu-wrapper {
    background: #fff !important;
    border: none !important;
  }
  header.main-header .menu-wrapper .x-nav-menu > li.search-menu,
  header.main-header .menu-wrapper .x-nav-menu > li.x-menu-item-product-category {
    display: none !important;
  }
  header.main-header .menu-wrapper .x-nav-menu > li > a.x-menu-a-text span.x-menu-text:after {
    display: none;
  }
  header.main-header .header-mobile {
    display: block !important;
  }
  header.main-header .zorka-navbar-header,
  header.main-header .header-left-wrapper,
  header.main-header .header-right-wrapper {
    display: none !important;
  }
  header.main-header .menu-wrapper ul.social-link {
    display: none !important;
  }
  header.main-header.header-4 .site-top,
  header.main-header.header-8 .site-top {
    color: #888;
    border-bottom: solid 1px #dddddd;
  }
  header.main-header.header-1 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-2 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-3 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-4 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-6 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-7 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-8 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-9 .menu-wrapper ul.x-nav-menu > li,
  header.main-header.header-10 .menu-wrapper ul.x-nav-menu > li {
    padding-top: 0;
    padding-bottom: 0;
  }
  header.main-header.header-1 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-2 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-3 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-4 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-6 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-7 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-8 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-9 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text,
  header.main-header.header-10 .menu-wrapper ul.x-nav-menu > li > a.x-menu-a-text {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header.main-header.header-1 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-2 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-3 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-4 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-5 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-6 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-7 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-8 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-9 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text,
  header.main-header.header-10 .menu-wrapper ul.x-sub-menu li > a.x-menu-a-text {
    font-size: 13px;
  }
  .float-header-background {
    display: none;
  }
  header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    right: -15px;
  }
  header.main-header.header-11 .header .header-logo,
  header.main-header.header-11 .header .social-link {
    display: none;
  }
  header.main-header.header-11 #wrapper-content {
    padding-left: 0;
  }
  header.main-header.header-5 .menu-wrapper ul.x-nav-menu > li.x-menu-item-product-category + li {
    padding-left: 0;
  }
}
@media screen and (max-width: 492px) {
  header.main-header .site-top .site-top-left,
  header.main-header .site-top .site-top-right {
    float: none;
    text-align: center;
  }
  header.main-header .site-top .site-top-right .my-setting ul {
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 430px) {
  header.main-header .header .shopping-cart-wrapper .widget_shopping_cart_content .cart_list_wrapper {
    width: 280px;
  }
}
/**
 * 5.0 - Footer
 * ----------------------------------------------------------------------------
 */
footer.main-footer .footer_top_holder {
  padding-top: 70px;
  padding-bottom: 30px;
}
footer.main-footer.light {
  background-color: #f5f5f5;
}
footer.main-footer.light .textwidget .social a > i {
  color: #868686;
}
footer.main-footer.light .textwidget .social a:hover > i {
  color: #e5b219;
}
footer.main-footer.dark {
  background-color: #222222;
  color: #888888;
}
footer.main-footer.dark .wp-block-group__inner-container > h2,
footer.main-footer.dark .widget-title {
  color: #fff;
}
footer.main-footer.dark .wp-block-group__inner-container > h2 span,
footer.main-footer.dark .widget-title span {
  border-bottom: 1px solid #fff;
}
footer.main-footer.dark .textwidget .address h6 {
  color: #fff;
}
footer.main-footer.dark .textwidget .social a:hover > i {
  color: #fff;
}
footer.main-footer.dark .footer_bottom_holder {
  background-color: #111111;
}
footer.main-footer.dark .footer-top-col-1 .widget_nav_menu {
  color: #fff;
}
footer.main-footer .wp-block-group__inner-container > h2,
footer.main-footer .widget-title {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 30px;
}
footer.main-footer .wp-block-group__inner-container > h2 span,
footer.main-footer .widget-title span {
  border-bottom: 1px solid #666;
  padding-bottom: 6px;
}
footer.main-footer .textwidget span {
  display: block;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
  color: #777777;
}
footer.main-footer .textwidget .address h6 {
  text-transform: none;
  font-size: 14px;
  margin-bottom: 0px;
  word-spacing: 4px;
  line-height: 2;
}
footer.main-footer .textwidget .social a {
  font-size: 22px;
  padding-right: 10px;
  padding-left: 10px;
  display: inline-block;
}
footer.main-footer .textwidget .social a:first-child {
  padding-left: 0px;
}
footer.main-footer .widget_nav_menu ul.menu {
  list-style: none;
  padding-left: 0px;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 600;
  display: inline-block;
  margin-top: -10px;
}
footer.main-footer .widget_nav_menu ul.menu li {
  min-width: 50%;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: #777777;
}
footer.main-footer .widget_nav_menu ul.menu a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
footer.main-footer .widget_nav_menu ul.menu a:hover {
  padding-left: 10px;
  color: #e5b219 !important;
}
footer.main-footer .col-sm-12 .widget_nav_menu ul a:hover {
  padding-left: 0px;
}
footer.main-footer .footer_bottom_holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
footer.main-footer .footer_bottom_holder .copyright-text {
  text-transform: none;
  padding-top: 16px;
}
footer.main-footer .footer_bottom_holder .payment {
  text-align: right;
  margin-top: 10px;
}
footer.main-footer .footer_bottom_holder .payment a {
  margin-left: 2px;
  margin-right: 2px;
  display: inline-block;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: solid 1px transparent;
  opacity: 0.7;
}
footer.main-footer .footer_bottom_holder .payment a img {
  width: 51px;
  height: 32px;
}
footer.main-footer .footer_bottom_holder .payment a:hover {
  opacity: 1;
}
footer.main-footer .footer_bottom_holder.col-1 {
  background-color: transparent;
  padding-top: 25px;
}
footer.main-footer .footer-logo img {
  padding-bottom: 18px;
}
footer.main-footer .footer-logo .sub-description {
  padding-bottom: 28px;
  color: #777777;
}
footer.main-footer .footer_top_holder.col-1 {
  padding-bottom: 20px;
}
footer.main-footer .footer_top_holder.col-1 .widget_nav_menu ul {
  padding-left: 0;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu {
  text-align: center;
  padding-top: 30px;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu .menu-footer-menu-container {
  display: inline-block;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu {
  overflow: unset;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu > .menu-item {
  display: inline;
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  min-width: 0;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu > .menu-item.menu-item-has-children > a:after {
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f107';
  margin-left: 5px;
  font-size: 12px;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu li:hover > ul.sub-menu {
  display: block;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu {
  overflow: unset;
  padding: 5px 0;
  list-style: none;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #151515;
  color: #a1a1a1;
  z-index: 999;
  -webkit-box-shadow: 0 9px 24px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 9px 24px rgba(0, 0, 0, 0.15);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.15);
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item {
  position: relative;
  min-width: 180px;
  margin: 0;
  padding: 0;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item.menu-item-has-children > a:after {
  display: block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f105';
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 12px;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item > a {
  padding: 5px 12px;
  line-height: 20px;
  display: block;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item > a:hover,
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item > a:focus,
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item > a:active {
  text-decoration: none;
  color: #fff;
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu .menu-item + .menu-item {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}
footer.main-footer .footer-top-col-1 .widget_nav_menu ul.menu ul.sub-menu ul.sub-menu {
  left: 100%;
  top: 0;
  bottom: auto;
  margin-left: 1px;
}
footer.main-footer .footer-top-col-1 .textwidget {
  text-align: center;
}
footer.main-footer .footer-top-col-3 .widget_nav_menu ul li {
  float: left;
}
@media only screen and (min-width: 992px) {
  footer.enable-parallax-footer {
    visibility: hidden;
    position: fixed;
    width: 100%;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-backface-visibility: visible;
    -moz-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
  }
  .boxed footer.enable-parallax-footer {
    max-width: 1200px;
  }
  body.header-11 footer.main-footer:not(.enable-parallax-footer) {
    padding-left: 270px;
  }
}
body.footer-static {
  padding-bottom: 0px !important;
}
body.footer-static footer.enable-parallax-footer {
  position: static;
}
@media only screen and (max-width: 399px) {
  footer .footer-top-col-4 {
    text-align: left;
  }
}
@media only screen and (min-width: 400px) and (max-width: 600px) {
  footer .footer-top-col-4,
  footer .footer-top-col-3 {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 990px) {
  footer .footer_top_holder {
    padding-top: 30px;
  }
  footer .footer_top_holder.col-1 {
    padding-bottom: 0px;
  }
  footer .widget_nav_menu {
    padding-top: 0px;
  }
  footer .widget_nav_menu li {
    float: none;
  }
  footer .footer_bottom_holder {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  footer .footer_bottom_holder .copyright-text,
  footer .footer_bottom_holder .payment {
    text-align: center;
  }
  footer .footer_bottom_holder .copyright-text {
    padding-bottom: 16px;
  }
  footer .footer_bottom_holder .payment {
    text-align: center;
  }
  footer .footer_bottom_holder .payment a {
    margin-bottom: 6px;
  }
  footer .footer_bottom_holder.col-1 {
    padding-top: 0px;
  }
  footer .footer-top-col-1 .widget_nav_menu {
    padding-top: 0px;
  }
  footer .footer-top-col-3 .widget_nav_menu ul li {
    float: none;
  }
}
/**
 * 6.0 - Widget Default
 * ----------------------------------------------------------------------------
 */
.zorka-search-form {
  position: relative;
}
.zorka-search-form input[type="text"] {
  width: 100%;
}
.zorka-search-form input[type="text"]:focus + button i {
  color: #e5b219;
}
.zorka-search-form button[type="submit"] {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  padding: 0;
}
.zorka-search-form i {
  font-size: 20px;
}
/*------------------------------------------
* widget : product
*------------------------------------------- */
.widget-product-wapper {
  padding: 30px;
}
.widget-product-category h6 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: solid 1px #000;
  display: inline-block;
  color: #25282c !important;
}
.widget-product-category .sub-description {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.widget-product-category .cate-info {
  padding-top: 24px;
}
.widget-product-category .cate-img {
  width: 70px;
  float: left;
}
.widget-product-category .sub-cate {
  padding-left: 70px;
}
.widget-product-category .sub-cate ul {
  padding-left: 20px;
  list-style: none;
}
.widget-product-category .sub-cate ul li a {
  padding: 0 0 10px 0 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
.widget-product-category .sub-cate ul li a:hover {
  background-color: transparent !important;
  color: #e5b219 !important;
}
.widget-product-featured-items .yith-wcwl-add-to-wishlist .yith-wcwl-add-button img.ajax-loading {
  visibility: hidden;
}
.widget-product-featured-items .product-listing.woocommerce .product-item-wrapper {
  padding-bottom: 20px;
}
.widget-product-featured-items .product-function a.button,
.widget-product-featured-items .product-function a.button:hover {
  padding: 0 !important;
  border: none !important;
}
.col-md-3 .widget-product-featured-items .owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-prev,
.col-md-3 .widget-product-featured-items .owl-carousel.owl-theme .owl-controls .owl-buttons div.owl-next {
  display: none;
}
.col-md-3 .widget-product-featured-items .product-button {
  display: none;
}
/* -----------------------------------------------------------------------------
 * Widget: Calendar
 * -------------------------------------------------------------------------- */
.wp-block-calendar table,
.widget_calendar table {
  width: 100%;
}
.wp-block-calendar caption,
.widget_calendar caption {
  caption-side: top;
  padding: 0.5rem 1rem;
  background-color: #f2f2f2;
  border: solid 1px #dddddd;
  text-transform: uppercase;
  font-size: 14px;
  color: #25282c;
  font-weight: 600;
  text-align: center;
}
.wp-block-calendar td,
.widget_calendar td,
.wp-block-calendar th,
.widget_calendar th {
  padding: 0.3rem;
}
.wp-block-calendar thead td,
.widget_calendar thead td,
.wp-block-calendar tbody td,
.widget_calendar tbody td,
.wp-block-calendar thead th,
.widget_calendar thead th,
.wp-block-calendar tbody th,
.widget_calendar tbody th {
  text-align: center;
  border-width: 1px;
}
.wp-block-calendar tfoot td,
.widget_calendar tfoot td,
.wp-block-calendar tfoot th,
.widget_calendar tfoot th {
  border: none;
}
.wp-block-calendar tfoot #next,
.widget_calendar tfoot #next {
  text-align: right;
}
.site-content > .widget .widgettitle {
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #25282c;
  padding-bottom: 10px;
}
.site-content,
.primary-sidebar,
.shop-sidebar,
.footer_inner {
  color: #878787;
}
.site-content select,
.primary-sidebar select,
.shop-sidebar select,
.footer_inner select {
  width: 100%;
}
.site-content .wp-block-group__inner-container > h2,
.primary-sidebar .wp-block-group__inner-container > h2,
.shop-sidebar .wp-block-group__inner-container > h2,
.footer_inner .wp-block-group__inner-container > h2,
.site-content h4.widget-title,
.primary-sidebar h4.widget-title,
.shop-sidebar h4.widget-title,
.footer_inner h4.widget-title {
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #25282c;
  padding-bottom: 10px;
}
.site-content aside + aside,
.primary-sidebar aside + aside,
.shop-sidebar aside + aside,
.footer_inner aside + aside {
  margin-top: 40px;
}
.site-content .tagcloud a,
.primary-sidebar .tagcloud a,
.shop-sidebar .tagcloud a,
.footer_inner .tagcloud a {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: inline-block;
  text-transform: uppercase;
  padding: 8px 10px;
  margin-bottom: 5px;
  color: #777777;
  background-color: #f5f5f5;
  font-size: 11px !important;
  line-height: 1.2;
  font-family: Montserrat;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.site-content .tagcloud a + a,
.primary-sidebar .tagcloud a + a,
.shop-sidebar .tagcloud a + a,
.footer_inner .tagcloud a + a {
  margin-left: 1px;
}
.site-content .tagcloud a:hover,
.primary-sidebar .tagcloud a:hover,
.shop-sidebar .tagcloud a:hover,
.footer_inner .tagcloud a:hover {
  background: #e5b219;
  color: #FFFFFF;
  text-decoration: none;
}
.site-content .wp-block-page-list,
.primary-sidebar .wp-block-page-list,
.shop-sidebar .wp-block-page-list,
.footer_inner .wp-block-page-list,
.site-content .wp-block-archives,
.primary-sidebar .wp-block-archives,
.shop-sidebar .wp-block-archives,
.footer_inner .wp-block-archives,
.site-content .wp-block-categories,
.primary-sidebar .wp-block-categories,
.shop-sidebar .wp-block-categories,
.footer_inner .wp-block-categories,
.site-content .widget_archive > ul,
.primary-sidebar .widget_archive > ul,
.shop-sidebar .widget_archive > ul,
.footer_inner .widget_archive > ul,
.site-content .widget_archive > ol,
.primary-sidebar .widget_archive > ol,
.shop-sidebar .widget_archive > ol,
.footer_inner .widget_archive > ol,
.site-content .widget_categories > ul,
.primary-sidebar .widget_categories > ul,
.shop-sidebar .widget_categories > ul,
.footer_inner .widget_categories > ul,
.site-content .widget_categories > ol,
.primary-sidebar .widget_categories > ol,
.shop-sidebar .widget_categories > ol,
.footer_inner .widget_categories > ol,
.site-content .widget_product_categories > ul,
.primary-sidebar .widget_product_categories > ul,
.shop-sidebar .widget_product_categories > ul,
.footer_inner .widget_product_categories > ul,
.site-content .widget_product_categories > ol,
.primary-sidebar .widget_product_categories > ol,
.shop-sidebar .widget_product_categories > ol,
.footer_inner .widget_product_categories > ol,
.site-content .wc-block-product-categories > ul,
.primary-sidebar .wc-block-product-categories > ul,
.shop-sidebar .wc-block-product-categories > ul,
.footer_inner .wc-block-product-categories > ul,
.site-content .yith-woocompare-widget > ul,
.primary-sidebar .yith-woocompare-widget > ul,
.shop-sidebar .yith-woocompare-widget > ul,
.footer_inner .yith-woocompare-widget > ul,
.site-content .yith-woocompare-widget > ol,
.primary-sidebar .yith-woocompare-widget > ol,
.shop-sidebar .yith-woocompare-widget > ol,
.footer_inner .yith-woocompare-widget > ol,
.site-content .widget_nav_menu > div > ul,
.primary-sidebar .widget_nav_menu > div > ul,
.shop-sidebar .widget_nav_menu > div > ul,
.footer_inner .widget_nav_menu > div > ul,
.site-content .widget_nav_menu > div > ol,
.primary-sidebar .widget_nav_menu > div > ol,
.shop-sidebar .widget_nav_menu > div > ol,
.footer_inner .widget_nav_menu > div > ol,
.site-content .widget_meta > ul,
.primary-sidebar .widget_meta > ul,
.shop-sidebar .widget_meta > ul,
.footer_inner .widget_meta > ul,
.site-content .widget_meta > ol,
.primary-sidebar .widget_meta > ol,
.shop-sidebar .widget_meta > ol,
.footer_inner .widget_meta > ol,
.site-content .widget_pages > ul,
.primary-sidebar .widget_pages > ul,
.shop-sidebar .widget_pages > ul,
.footer_inner .widget_pages > ul,
.site-content .widget_pages > ol,
.primary-sidebar .widget_pages > ol,
.shop-sidebar .widget_pages > ol,
.footer_inner .widget_pages > ol,
.site-content .widget_recent_comments > ul,
.primary-sidebar .widget_recent_comments > ul,
.shop-sidebar .widget_recent_comments > ul,
.footer_inner .widget_recent_comments > ul,
.site-content .widget_recent_comments > ol,
.primary-sidebar .widget_recent_comments > ol,
.shop-sidebar .widget_recent_comments > ol,
.footer_inner .widget_recent_comments > ol,
.site-content .widget_recent_entries > ul,
.primary-sidebar .widget_recent_entries > ul,
.shop-sidebar .widget_recent_entries > ul,
.footer_inner .widget_recent_entries > ul,
.site-content .widget_recent_entries > ol,
.primary-sidebar .widget_recent_entries > ol,
.shop-sidebar .widget_recent_entries > ol,
.footer_inner .widget_recent_entries > ol,
.site-content .widget_rss > ul,
.primary-sidebar .widget_rss > ul,
.shop-sidebar .widget_rss > ul,
.footer_inner .widget_rss > ul,
.site-content .widget_rss > ol,
.primary-sidebar .widget_rss > ol,
.shop-sidebar .widget_rss > ol,
.footer_inner .widget_rss > ol {
  list-style: none;
  padding-left: 0;
  overflow: auto;
  margin: 0;
}
.site-content .wp-block-page-list li,
.primary-sidebar .wp-block-page-list li,
.shop-sidebar .wp-block-page-list li,
.footer_inner .wp-block-page-list li,
.site-content .wp-block-archives li,
.primary-sidebar .wp-block-archives li,
.shop-sidebar .wp-block-archives li,
.footer_inner .wp-block-archives li,
.site-content .wp-block-categories li,
.primary-sidebar .wp-block-categories li,
.shop-sidebar .wp-block-categories li,
.footer_inner .wp-block-categories li,
.site-content .widget_archive li,
.primary-sidebar .widget_archive li,
.shop-sidebar .widget_archive li,
.footer_inner .widget_archive li,
.site-content .widget_categories li,
.primary-sidebar .widget_categories li,
.shop-sidebar .widget_categories li,
.footer_inner .widget_categories li,
.site-content .widget_product_categories li,
.primary-sidebar .widget_product_categories li,
.shop-sidebar .widget_product_categories li,
.footer_inner .widget_product_categories li,
.site-content .wc-block-product-categories li,
.primary-sidebar .wc-block-product-categories li,
.shop-sidebar .wc-block-product-categories li,
.footer_inner .wc-block-product-categories li,
.site-content .yith-woocompare-widget li,
.primary-sidebar .yith-woocompare-widget li,
.shop-sidebar .yith-woocompare-widget li,
.footer_inner .yith-woocompare-widget li,
.site-content .widget_nav_menu > div li,
.primary-sidebar .widget_nav_menu > div li,
.shop-sidebar .widget_nav_menu > div li,
.footer_inner .widget_nav_menu > div li,
.site-content .widget_meta li,
.primary-sidebar .widget_meta li,
.shop-sidebar .widget_meta li,
.footer_inner .widget_meta li,
.site-content .widget_pages li,
.primary-sidebar .widget_pages li,
.shop-sidebar .widget_pages li,
.footer_inner .widget_pages li,
.site-content .widget_recent_comments li,
.primary-sidebar .widget_recent_comments li,
.shop-sidebar .widget_recent_comments li,
.footer_inner .widget_recent_comments li,
.site-content .widget_recent_entries li,
.primary-sidebar .widget_recent_entries li,
.shop-sidebar .widget_recent_entries li,
.footer_inner .widget_recent_entries li,
.site-content .widget_rss li,
.primary-sidebar .widget_rss li,
.shop-sidebar .widget_rss li,
.footer_inner .widget_rss li {
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #666666;
  font-size: 13px;
  font-weight: 600;
}
.site-content .wp-block-page-list li:hover,
.primary-sidebar .wp-block-page-list li:hover,
.shop-sidebar .wp-block-page-list li:hover,
.footer_inner .wp-block-page-list li:hover,
.site-content .wp-block-archives li:hover,
.primary-sidebar .wp-block-archives li:hover,
.shop-sidebar .wp-block-archives li:hover,
.footer_inner .wp-block-archives li:hover,
.site-content .wp-block-categories li:hover,
.primary-sidebar .wp-block-categories li:hover,
.shop-sidebar .wp-block-categories li:hover,
.footer_inner .wp-block-categories li:hover,
.site-content .widget_archive li:hover,
.primary-sidebar .widget_archive li:hover,
.shop-sidebar .widget_archive li:hover,
.footer_inner .widget_archive li:hover,
.site-content .widget_categories li:hover,
.primary-sidebar .widget_categories li:hover,
.shop-sidebar .widget_categories li:hover,
.footer_inner .widget_categories li:hover,
.site-content .widget_product_categories li:hover,
.primary-sidebar .widget_product_categories li:hover,
.shop-sidebar .widget_product_categories li:hover,
.footer_inner .widget_product_categories li:hover,
.site-content .wc-block-product-categories li:hover,
.primary-sidebar .wc-block-product-categories li:hover,
.shop-sidebar .wc-block-product-categories li:hover,
.footer_inner .wc-block-product-categories li:hover,
.site-content .yith-woocompare-widget li:hover,
.primary-sidebar .yith-woocompare-widget li:hover,
.shop-sidebar .yith-woocompare-widget li:hover,
.footer_inner .yith-woocompare-widget li:hover,
.site-content .widget_nav_menu > div li:hover,
.primary-sidebar .widget_nav_menu > div li:hover,
.shop-sidebar .widget_nav_menu > div li:hover,
.footer_inner .widget_nav_menu > div li:hover,
.site-content .widget_meta li:hover,
.primary-sidebar .widget_meta li:hover,
.shop-sidebar .widget_meta li:hover,
.footer_inner .widget_meta li:hover,
.site-content .widget_pages li:hover,
.primary-sidebar .widget_pages li:hover,
.shop-sidebar .widget_pages li:hover,
.footer_inner .widget_pages li:hover,
.site-content .widget_recent_comments li:hover,
.primary-sidebar .widget_recent_comments li:hover,
.shop-sidebar .widget_recent_comments li:hover,
.footer_inner .widget_recent_comments li:hover,
.site-content .widget_recent_entries li:hover,
.primary-sidebar .widget_recent_entries li:hover,
.shop-sidebar .widget_recent_entries li:hover,
.footer_inner .widget_recent_entries li:hover,
.site-content .widget_rss li:hover,
.primary-sidebar .widget_rss li:hover,
.shop-sidebar .widget_rss li:hover,
.footer_inner .widget_rss li:hover {
  color: #e5b219;
}
.site-content .wp-block-page-list li:hover > ul,
.primary-sidebar .wp-block-page-list li:hover > ul,
.shop-sidebar .wp-block-page-list li:hover > ul,
.footer_inner .wp-block-page-list li:hover > ul,
.site-content .wp-block-archives li:hover > ul,
.primary-sidebar .wp-block-archives li:hover > ul,
.shop-sidebar .wp-block-archives li:hover > ul,
.footer_inner .wp-block-archives li:hover > ul,
.site-content .wp-block-categories li:hover > ul,
.primary-sidebar .wp-block-categories li:hover > ul,
.shop-sidebar .wp-block-categories li:hover > ul,
.footer_inner .wp-block-categories li:hover > ul,
.site-content .widget_archive li:hover > ul,
.primary-sidebar .widget_archive li:hover > ul,
.shop-sidebar .widget_archive li:hover > ul,
.footer_inner .widget_archive li:hover > ul,
.site-content .widget_categories li:hover > ul,
.primary-sidebar .widget_categories li:hover > ul,
.shop-sidebar .widget_categories li:hover > ul,
.footer_inner .widget_categories li:hover > ul,
.site-content .widget_product_categories li:hover > ul,
.primary-sidebar .widget_product_categories li:hover > ul,
.shop-sidebar .widget_product_categories li:hover > ul,
.footer_inner .widget_product_categories li:hover > ul,
.site-content .wc-block-product-categories li:hover > ul,
.primary-sidebar .wc-block-product-categories li:hover > ul,
.shop-sidebar .wc-block-product-categories li:hover > ul,
.footer_inner .wc-block-product-categories li:hover > ul,
.site-content .yith-woocompare-widget li:hover > ul,
.primary-sidebar .yith-woocompare-widget li:hover > ul,
.shop-sidebar .yith-woocompare-widget li:hover > ul,
.footer_inner .yith-woocompare-widget li:hover > ul,
.site-content .widget_nav_menu > div li:hover > ul,
.primary-sidebar .widget_nav_menu > div li:hover > ul,
.shop-sidebar .widget_nav_menu > div li:hover > ul,
.footer_inner .widget_nav_menu > div li:hover > ul,
.site-content .widget_meta li:hover > ul,
.primary-sidebar .widget_meta li:hover > ul,
.shop-sidebar .widget_meta li:hover > ul,
.footer_inner .widget_meta li:hover > ul,
.site-content .widget_pages li:hover > ul,
.primary-sidebar .widget_pages li:hover > ul,
.shop-sidebar .widget_pages li:hover > ul,
.footer_inner .widget_pages li:hover > ul,
.site-content .widget_recent_comments li:hover > ul,
.primary-sidebar .widget_recent_comments li:hover > ul,
.shop-sidebar .widget_recent_comments li:hover > ul,
.footer_inner .widget_recent_comments li:hover > ul,
.site-content .widget_recent_entries li:hover > ul,
.primary-sidebar .widget_recent_entries li:hover > ul,
.shop-sidebar .widget_recent_entries li:hover > ul,
.footer_inner .widget_recent_entries li:hover > ul,
.site-content .widget_rss li:hover > ul,
.primary-sidebar .widget_rss li:hover > ul,
.shop-sidebar .widget_rss li:hover > ul,
.footer_inner .widget_rss li:hover > ul {
  color: #666666;
}
.site-content .wp-block-page-list li .show_count,
.primary-sidebar .wp-block-page-list li .show_count,
.shop-sidebar .wp-block-page-list li .show_count,
.footer_inner .wp-block-page-list li .show_count,
.site-content .wp-block-archives li .show_count,
.primary-sidebar .wp-block-archives li .show_count,
.shop-sidebar .wp-block-archives li .show_count,
.footer_inner .wp-block-archives li .show_count,
.site-content .wp-block-categories li .show_count,
.primary-sidebar .wp-block-categories li .show_count,
.shop-sidebar .wp-block-categories li .show_count,
.footer_inner .wp-block-categories li .show_count,
.site-content .widget_archive li .show_count,
.primary-sidebar .widget_archive li .show_count,
.shop-sidebar .widget_archive li .show_count,
.footer_inner .widget_archive li .show_count,
.site-content .widget_categories li .show_count,
.primary-sidebar .widget_categories li .show_count,
.shop-sidebar .widget_categories li .show_count,
.footer_inner .widget_categories li .show_count,
.site-content .widget_product_categories li .show_count,
.primary-sidebar .widget_product_categories li .show_count,
.shop-sidebar .widget_product_categories li .show_count,
.footer_inner .widget_product_categories li .show_count,
.site-content .wc-block-product-categories li .show_count,
.primary-sidebar .wc-block-product-categories li .show_count,
.shop-sidebar .wc-block-product-categories li .show_count,
.footer_inner .wc-block-product-categories li .show_count,
.site-content .yith-woocompare-widget li .show_count,
.primary-sidebar .yith-woocompare-widget li .show_count,
.shop-sidebar .yith-woocompare-widget li .show_count,
.footer_inner .yith-woocompare-widget li .show_count,
.site-content .widget_nav_menu > div li .show_count,
.primary-sidebar .widget_nav_menu > div li .show_count,
.shop-sidebar .widget_nav_menu > div li .show_count,
.footer_inner .widget_nav_menu > div li .show_count,
.site-content .widget_meta li .show_count,
.primary-sidebar .widget_meta li .show_count,
.shop-sidebar .widget_meta li .show_count,
.footer_inner .widget_meta li .show_count,
.site-content .widget_pages li .show_count,
.primary-sidebar .widget_pages li .show_count,
.shop-sidebar .widget_pages li .show_count,
.footer_inner .widget_pages li .show_count,
.site-content .widget_recent_comments li .show_count,
.primary-sidebar .widget_recent_comments li .show_count,
.shop-sidebar .widget_recent_comments li .show_count,
.footer_inner .widget_recent_comments li .show_count,
.site-content .widget_recent_entries li .show_count,
.primary-sidebar .widget_recent_entries li .show_count,
.shop-sidebar .widget_recent_entries li .show_count,
.footer_inner .widget_recent_entries li .show_count,
.site-content .widget_rss li .show_count,
.primary-sidebar .widget_rss li .show_count,
.shop-sidebar .widget_rss li .show_count,
.footer_inner .widget_rss li .show_count {
  float: right;
}
.site-content .wp-block-page-list li:first-child,
.primary-sidebar .wp-block-page-list li:first-child,
.shop-sidebar .wp-block-page-list li:first-child,
.footer_inner .wp-block-page-list li:first-child,
.site-content .wp-block-archives > li:first-child,
.primary-sidebar .wp-block-archives > li:first-child,
.shop-sidebar .wp-block-archives > li:first-child,
.footer_inner .wp-block-archives > li:first-child,
.site-content .wp-block-categories > li:first-child,
.primary-sidebar .wp-block-categories > li:first-child,
.shop-sidebar .wp-block-categories > li:first-child,
.footer_inner .wp-block-categories > li:first-child,
.site-content .widget_archive > ul > li:first-child,
.primary-sidebar .widget_archive > ul > li:first-child,
.shop-sidebar .widget_archive > ul > li:first-child,
.footer_inner .widget_archive > ul > li:first-child,
.site-content .widget_categories > ul > li:first-child,
.primary-sidebar .widget_categories > ul > li:first-child,
.shop-sidebar .widget_categories > ul > li:first-child,
.footer_inner .widget_categories > ul > li:first-child,
.site-content .widget_product_categories > ul > li:first-child,
.primary-sidebar .widget_product_categories > ul > li:first-child,
.shop-sidebar .widget_product_categories > ul > li:first-child,
.footer_inner .widget_product_categories > ul > li:first-child,
.site-content .wc-block-product-categories > ul > li:first-child,
.primary-sidebar .wc-block-product-categories > ul > li:first-child,
.shop-sidebar .wc-block-product-categories > ul > li:first-child,
.footer_inner .wc-block-product-categories > ul > li:first-child,
.site-content .yith-woocompare-widget > ul > li:first-child,
.primary-sidebar .yith-woocompare-widget > ul > li:first-child,
.shop-sidebar .yith-woocompare-widget > ul > li:first-child,
.footer_inner .yith-woocompare-widget > ul > li:first-child,
.site-content .widget_nav_menu > div > ul > li:first-child,
.primary-sidebar .widget_nav_menu > div > ul > li:first-child,
.shop-sidebar .widget_nav_menu > div > ul > li:first-child,
.footer_inner .widget_nav_menu > div > ul > li:first-child,
.site-content .widget_meta > ul > li:first-child,
.primary-sidebar .widget_meta > ul > li:first-child,
.shop-sidebar .widget_meta > ul > li:first-child,
.footer_inner .widget_meta > ul > li:first-child,
.site-content .widget_pages > ul > li:first-child,
.primary-sidebar .widget_pages > ul > li:first-child,
.shop-sidebar .widget_pages > ul > li:first-child,
.footer_inner .widget_pages > ul > li:first-child,
.site-content .widget_recent_comments > ul > li:first-child,
.primary-sidebar .widget_recent_comments > ul > li:first-child,
.shop-sidebar .widget_recent_comments > ul > li:first-child,
.footer_inner .widget_recent_comments > ul > li:first-child,
.site-content .widget_recent_entries > ul > li:first-child,
.primary-sidebar .widget_recent_entries > ul > li:first-child,
.shop-sidebar .widget_recent_entries > ul > li:first-child,
.footer_inner .widget_recent_entries > ul > li:first-child,
.site-content .widget_rss > ul > li:first-child,
.primary-sidebar .widget_rss > ul > li:first-child,
.shop-sidebar .widget_rss > ul > li:first-child,
.footer_inner .widget_rss > ul > li:first-child {
  padding-top: 0;
}
.site-content .wp-block-page-list li + li,
.primary-sidebar .wp-block-page-list li + li,
.shop-sidebar .wp-block-page-list li + li,
.footer_inner .wp-block-page-list li + li,
.site-content .wp-block-archives li + li,
.primary-sidebar .wp-block-archives li + li,
.shop-sidebar .wp-block-archives li + li,
.footer_inner .wp-block-archives li + li,
.site-content .wp-block-categories li + li,
.primary-sidebar .wp-block-categories li + li,
.shop-sidebar .wp-block-categories li + li,
.footer_inner .wp-block-categories li + li,
.site-content .widget_archive li + li,
.primary-sidebar .widget_archive li + li,
.shop-sidebar .widget_archive li + li,
.footer_inner .widget_archive li + li,
.site-content .widget_categories li + li,
.primary-sidebar .widget_categories li + li,
.shop-sidebar .widget_categories li + li,
.footer_inner .widget_categories li + li,
.site-content .widget_product_categories li + li,
.primary-sidebar .widget_product_categories li + li,
.shop-sidebar .widget_product_categories li + li,
.footer_inner .widget_product_categories li + li,
.site-content .wc-block-product-categories li + li,
.primary-sidebar .wc-block-product-categories li + li,
.shop-sidebar .wc-block-product-categories li + li,
.footer_inner .wc-block-product-categories li + li,
.site-content .yith-woocompare-widget li + li,
.primary-sidebar .yith-woocompare-widget li + li,
.shop-sidebar .yith-woocompare-widget li + li,
.footer_inner .yith-woocompare-widget li + li,
.site-content .widget_nav_menu > div li + li,
.primary-sidebar .widget_nav_menu > div li + li,
.shop-sidebar .widget_nav_menu > div li + li,
.footer_inner .widget_nav_menu > div li + li,
.site-content .widget_meta li + li,
.primary-sidebar .widget_meta li + li,
.shop-sidebar .widget_meta li + li,
.footer_inner .widget_meta li + li,
.site-content .widget_pages li + li,
.primary-sidebar .widget_pages li + li,
.shop-sidebar .widget_pages li + li,
.footer_inner .widget_pages li + li,
.site-content .widget_recent_comments li + li,
.primary-sidebar .widget_recent_comments li + li,
.shop-sidebar .widget_recent_comments li + li,
.footer_inner .widget_recent_comments li + li,
.site-content .widget_recent_entries li + li,
.primary-sidebar .widget_recent_entries li + li,
.shop-sidebar .widget_recent_entries li + li,
.footer_inner .widget_recent_entries li + li,
.site-content .widget_rss li + li,
.primary-sidebar .widget_rss li + li,
.shop-sidebar .widget_rss li + li,
.footer_inner .widget_rss li + li {
  margin-top: 10px;
  border-top: 1px solid #dddddd;
}
.site-content .wp-block-page-list a,
.primary-sidebar .wp-block-page-list a,
.shop-sidebar .wp-block-page-list a,
.footer_inner .wp-block-page-list a,
.site-content .wp-block-archives a,
.primary-sidebar .wp-block-archives a,
.shop-sidebar .wp-block-archives a,
.footer_inner .wp-block-archives a,
.site-content .wp-block-categories a,
.primary-sidebar .wp-block-categories a,
.shop-sidebar .wp-block-categories a,
.footer_inner .wp-block-categories a,
.site-content .widget_archive a,
.primary-sidebar .widget_archive a,
.shop-sidebar .widget_archive a,
.footer_inner .widget_archive a,
.site-content .widget_categories a,
.primary-sidebar .widget_categories a,
.shop-sidebar .widget_categories a,
.footer_inner .widget_categories a,
.site-content .widget_product_categories a,
.primary-sidebar .widget_product_categories a,
.shop-sidebar .widget_product_categories a,
.footer_inner .widget_product_categories a,
.site-content .wc-block-product-categories a,
.primary-sidebar .wc-block-product-categories a,
.shop-sidebar .wc-block-product-categories a,
.footer_inner .wc-block-product-categories a,
.site-content .yith-woocompare-widget a,
.primary-sidebar .yith-woocompare-widget a,
.shop-sidebar .yith-woocompare-widget a,
.footer_inner .yith-woocompare-widget a,
.site-content .widget_nav_menu > div a,
.primary-sidebar .widget_nav_menu > div a,
.shop-sidebar .widget_nav_menu > div a,
.footer_inner .widget_nav_menu > div a,
.site-content .widget_meta a,
.primary-sidebar .widget_meta a,
.shop-sidebar .widget_meta a,
.footer_inner .widget_meta a,
.site-content .widget_pages a,
.primary-sidebar .widget_pages a,
.shop-sidebar .widget_pages a,
.footer_inner .widget_pages a,
.site-content .widget_recent_comments a,
.primary-sidebar .widget_recent_comments a,
.shop-sidebar .widget_recent_comments a,
.footer_inner .widget_recent_comments a,
.site-content .widget_recent_entries a,
.primary-sidebar .widget_recent_entries a,
.shop-sidebar .widget_recent_entries a,
.footer_inner .widget_recent_entries a,
.site-content .widget_rss a,
.primary-sidebar .widget_rss a,
.shop-sidebar .widget_rss a,
.footer_inner .widget_rss a {
  color: inherit;
}
.site-content .wp-block-page-list a:hover,
.primary-sidebar .wp-block-page-list a:hover,
.shop-sidebar .wp-block-page-list a:hover,
.footer_inner .wp-block-page-list a:hover,
.site-content .wp-block-archives a:hover,
.primary-sidebar .wp-block-archives a:hover,
.shop-sidebar .wp-block-archives a:hover,
.footer_inner .wp-block-archives a:hover,
.site-content .wp-block-categories a:hover,
.primary-sidebar .wp-block-categories a:hover,
.shop-sidebar .wp-block-categories a:hover,
.footer_inner .wp-block-categories a:hover,
.site-content .widget_archive a:hover,
.primary-sidebar .widget_archive a:hover,
.shop-sidebar .widget_archive a:hover,
.footer_inner .widget_archive a:hover,
.site-content .widget_categories a:hover,
.primary-sidebar .widget_categories a:hover,
.shop-sidebar .widget_categories a:hover,
.footer_inner .widget_categories a:hover,
.site-content .widget_product_categories a:hover,
.primary-sidebar .widget_product_categories a:hover,
.shop-sidebar .widget_product_categories a:hover,
.footer_inner .widget_product_categories a:hover,
.site-content .wc-block-product-categories a:hover,
.primary-sidebar .wc-block-product-categories a:hover,
.shop-sidebar .wc-block-product-categories a:hover,
.footer_inner .wc-block-product-categories a:hover,
.site-content .yith-woocompare-widget a:hover,
.primary-sidebar .yith-woocompare-widget a:hover,
.shop-sidebar .yith-woocompare-widget a:hover,
.footer_inner .yith-woocompare-widget a:hover,
.site-content .widget_nav_menu > div a:hover,
.primary-sidebar .widget_nav_menu > div a:hover,
.shop-sidebar .widget_nav_menu > div a:hover,
.footer_inner .widget_nav_menu > div a:hover,
.site-content .widget_meta a:hover,
.primary-sidebar .widget_meta a:hover,
.shop-sidebar .widget_meta a:hover,
.footer_inner .widget_meta a:hover,
.site-content .widget_pages a:hover,
.primary-sidebar .widget_pages a:hover,
.shop-sidebar .widget_pages a:hover,
.footer_inner .widget_pages a:hover,
.site-content .widget_recent_comments a:hover,
.primary-sidebar .widget_recent_comments a:hover,
.shop-sidebar .widget_recent_comments a:hover,
.footer_inner .widget_recent_comments a:hover,
.site-content .widget_recent_entries a:hover,
.primary-sidebar .widget_recent_entries a:hover,
.shop-sidebar .widget_recent_entries a:hover,
.footer_inner .widget_recent_entries a:hover,
.site-content .widget_rss a:hover,
.primary-sidebar .widget_rss a:hover,
.shop-sidebar .widget_rss a:hover,
.footer_inner .widget_rss a:hover {
  text-decoration: none;
}
.site-content .wp-block-page-list li > ul,
.primary-sidebar .wp-block-page-list li > ul,
.shop-sidebar .wp-block-page-list li > ul,
.footer_inner .wp-block-page-list li > ul,
.site-content .wp-block-archives li > ul,
.primary-sidebar .wp-block-archives li > ul,
.shop-sidebar .wp-block-archives li > ul,
.footer_inner .wp-block-archives li > ul,
.site-content .wp-block-categories li > ul,
.primary-sidebar .wp-block-categories li > ul,
.shop-sidebar .wp-block-categories li > ul,
.footer_inner .wp-block-categories li > ul,
.site-content .widget_archive ul ul,
.primary-sidebar .widget_archive ul ul,
.shop-sidebar .widget_archive ul ul,
.footer_inner .widget_archive ul ul,
.site-content .widget_categories ul ul,
.primary-sidebar .widget_categories ul ul,
.shop-sidebar .widget_categories ul ul,
.footer_inner .widget_categories ul ul,
.site-content .widget_product_categories ul ul,
.primary-sidebar .widget_product_categories ul ul,
.shop-sidebar .widget_product_categories ul ul,
.footer_inner .widget_product_categories ul ul,
.site-content .wc-block-product-categories ul ul,
.primary-sidebar .wc-block-product-categories ul ul,
.shop-sidebar .wc-block-product-categories ul ul,
.footer_inner .wc-block-product-categories ul ul,
.site-content .yith-woocompare-widget ul ul,
.primary-sidebar .yith-woocompare-widget ul ul,
.shop-sidebar .yith-woocompare-widget ul ul,
.footer_inner .yith-woocompare-widget ul ul,
.site-content .widget_nav_menu ul ul,
.primary-sidebar .widget_nav_menu ul ul,
.shop-sidebar .widget_nav_menu ul ul,
.footer_inner .widget_nav_menu ul ul,
.site-content .widget_meta ul ul,
.primary-sidebar .widget_meta ul ul,
.shop-sidebar .widget_meta ul ul,
.footer_inner .widget_meta ul ul,
.site-content .widget_pages ul ul,
.primary-sidebar .widget_pages ul ul,
.shop-sidebar .widget_pages ul ul,
.footer_inner .widget_pages ul ul,
.site-content .widget_recent_comments ul ul,
.primary-sidebar .widget_recent_comments ul ul,
.shop-sidebar .widget_recent_comments ul ul,
.footer_inner .widget_recent_comments ul ul,
.site-content .widget_recent_entries ul ul,
.primary-sidebar .widget_recent_entries ul ul,
.shop-sidebar .widget_recent_entries ul ul,
.footer_inner .widget_recent_entries ul ul,
.site-content .widget_rss ul ul,
.primary-sidebar .widget_rss ul ul,
.shop-sidebar .widget_rss ul ul,
.footer_inner .widget_rss ul ul {
  padding-left: 20px;
  list-style-type: none;
  text-transform: none;
}
.site-content .widget_recent_comments > ul,
.primary-sidebar .widget_recent_comments > ul,
.shop-sidebar .widget_recent_comments > ul,
.footer_inner .widget_recent_comments > ul,
.site-content .widget_recent_comments > ol,
.primary-sidebar .widget_recent_comments > ol,
.shop-sidebar .widget_recent_comments > ol,
.footer_inner .widget_recent_comments > ol {
  color: #868686;
  text-transform: none;
}
.site-content .widget_recent_comments li,
.primary-sidebar .widget_recent_comments li,
.shop-sidebar .widget_recent_comments li,
.footer_inner .widget_recent_comments li {
  padding-top: 10px;
  margin-bottom: 10px;
  line-height: 1.8;
  position: relative;
  padding-left: 50px;
  color: #212121;
}
.site-content .widget_recent_comments li:before,
.primary-sidebar .widget_recent_comments li:before,
.shop-sidebar .widget_recent_comments li:before,
.footer_inner .widget_recent_comments li:before {
  content: "\e668";
  font-family: "Pe-icon-7-stroke";
  position: absolute;
  left: 5px;
  top: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 27px;
  -webkit-font-smoothing: antialiased;
}
.site-content .widget_recent_comments > ul > li:first-child,
.primary-sidebar .widget_recent_comments > ul > li:first-child,
.shop-sidebar .widget_recent_comments > ul > li:first-child,
.footer_inner .widget_recent_comments > ul > li:first-child {
  padding-top: 0;
}
.site-content .widget_recent_comments > ul > li:first-child:before,
.primary-sidebar .widget_recent_comments > ul > li:first-child:before,
.shop-sidebar .widget_recent_comments > ul > li:first-child:before,
.footer_inner .widget_recent_comments > ul > li:first-child:before {
  top: 0;
}
.site-content .widget_recent_comments li + li,
.primary-sidebar .widget_recent_comments li + li,
.shop-sidebar .widget_recent_comments li + li,
.footer_inner .widget_recent_comments li + li {
  margin-top: 10px;
  border-top: 1px solid #eeeeee;
}
.site-content #recentcomments,
.primary-sidebar #recentcomments,
.shop-sidebar #recentcomments,
.footer_inner #recentcomments {
  overflow: hidden;
}
.site-content .wc-block-product-categories li,
.shop-sidebar .wc-block-product-categories li,
.site-content .widget_product_categories li,
.shop-sidebar .widget_product_categories li {
  padding-top: 2px;
  margin-bottom: 2px;
  color: #666666;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
}
.site-content .wc-block-product-categories li + li,
.shop-sidebar .wc-block-product-categories li + li,
.site-content .widget_product_categories li + li,
.shop-sidebar .widget_product_categories li + li {
  margin-top: 2px;
  border: none;
}
.site-content .wc-block-product-categories > ul > li,
.shop-sidebar .wc-block-product-categories > ul > li,
.site-content .widget_product_categories > ul > li,
.shop-sidebar .widget_product_categories > ul > li {
  text-transform: uppercase;
}
.site-content .wc-block-product-categories li > ul > li,
.shop-sidebar .wc-block-product-categories li > ul > li,
.site-content .widget_product_categories ul.children > li,
.shop-sidebar .widget_product_categories ul.children > li {
  font-weight: normal;
}
.site-content .c-caret,
.shop-sidebar .c-caret {
  display: none;
}
.site-content ul.product_list_widget li,
.shop-sidebar ul.product_list_widget li {
  padding: 0px;
  margin-bottom: 15px;
}
.site-content ul.product_list_widget li a,
.shop-sidebar ul.product_list_widget li a {
  color: #868686;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 22px;
}
.site-content ul.product_list_widget li a:hover,
.shop-sidebar ul.product_list_widget li a:hover {
  text-decoration: none;
  color: #e5b219;
}
.site-content ul.product_list_widget li img,
.shop-sidebar ul.product_list_widget li img {
  float: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 90px;
  margin-left: 0px;
  margin-right: 10px;
}
.site-content ul.product_list_widget li .star-rating,
.shop-sidebar ul.product_list_widget li .star-rating {
  font-size: 10px;
  height: 12px;
  letter-spacing: 3px;
  width: 66px;
  margin-bottom: 5px;
}
.site-content ul.product_list_widget li .star-rating:before,
.shop-sidebar ul.product_list_widget li .star-rating:before {
  color: #dddddd;
}
.site-content ul.product_list_widget li .star-rating span:before,
.shop-sidebar ul.product_list_widget li .star-rating span:before {
  color: #ffd24d;
}
.site-content ul.product_list_widget li .reviewer,
.shop-sidebar ul.product_list_widget li .reviewer,
.site-content ul.product_list_widget li .amount,
.shop-sidebar ul.product_list_widget li .amount {
  color: #868686;
}
.site-content ul.product_list_widget li:last-child,
.shop-sidebar ul.product_list_widget li:last-child {
  margin-bottom: 0px;
}
.site-content .compare.button,
.shop-sidebar .compare.button {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #333333;
  border: 1px solid #333333;
  font-size: 12px;
  padding: 11px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}
.site-content .compare.button:hover,
.shop-sidebar .compare.button:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
}
.site-content .yith-woocompare-widget ul.products-list a.remove,
.shop-sidebar .yith-woocompare-widget ul.products-list a.remove {
  color: #e5b219;
}
.wpb_widgetised_column .wc-block-product-categories li,
.wpb_widgetised_column .widget_product_categories li {
  padding-top: 10px;
  margin-bottom: 10px;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: normal;
}
.wpb_widgetised_column .wc-block-product-categories li:hover,
.wpb_widgetised_column .widget_product_categories li:hover {
  color: #e5b219;
}
.wpb_widgetised_column .wc-block-product-categories li:hover > ul,
.wpb_widgetised_column .widget_product_categories li:hover > ul {
  color: #666666;
}
.wpb_widgetised_column .wc-block-product-categories > ul > li:first-child,
.wpb_widgetised_column .widget_product_categories > ul > li:first-child {
  padding-top: 0;
}
.wpb_widgetised_column .wc-block-product-categories li + li,
.wpb_widgetised_column .widget_product_categories li + li {
  margin-top: 10px;
  border-top: 1px solid #EEEEEE;
}
.wpb_widgetised_column .wc-block-product-categories a,
.wpb_widgetised_column .widget_product_categories a {
  color: inherit;
}
.wpb_widgetised_column .wc-block-product-categories a:hover,
.wpb_widgetised_column .widget_product_categories a:hover {
  text-decoration: none;
}
.wpb_widgetised_column .wc-block-product-categories ul ul,
.wpb_widgetised_column .widget_product_categories ul ul {
  padding-left: 20px;
  list-style-type: none;
  text-transform: none;
}
.wpb_widgetised_column .wc-block-product-categories > ul,
.wpb_widgetised_column .widget_product_categories > ul,
.wpb_widgetised_column .widget_product_categories > ol {
  text-transform: uppercase;
  list-style: none;
  padding-left: 0px;
  margin: 0;
}
.wpb_widgetised_column .wc-block-product-categories > ul span.count,
.wpb_widgetised_column .widget_product_categories > ul span.count,
.wpb_widgetised_column .widget_product_categories > ol span.count {
  float: none;
}
.wpb_widgetised_column .wc-block-product-categories > ul .current-cat > a,
.wpb_widgetised_column .widget_product_categories > ul .current-cat > a,
.wpb_widgetised_column .widget_product_categories > ol .current-cat > a,
.wpb_widgetised_column .wc-block-product-categories > ul .current-cat > span.count,
.wpb_widgetised_column .widget_product_categories > ul .current-cat > span.count,
.wpb_widgetised_column .widget_product_categories > ol .current-cat > span.count {
  color: #e5b219;
}
.wpb_widgetised_column .wc-block-product-categories,
.wpb_widgetised_column .widget_product_categories {
  border: 5px solid #e5b219;
  padding: 15px;
}
.wpb_widgetised_column .wc-block-product-categories h4.widget-title,
.wpb_widgetised_column .widget_product_categories h4.widget-title {
  font-size: 14px;
  border-bottom: 2px solid #e5b219;
  padding-bottom: 15px;
}
.wpb_widgetised_column .wc-block-product-categories ul.product-categories ul.children,
.wpb_widgetised_column .widget_product_categories ul.product-categories ul.children {
  display: none;
}
.wpb_widgetised_column .wc-block-product-categories .c-caret,
.wpb_widgetised_column .widget_product_categories .c-caret {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
  font-size: 16px;
}
.wpb_widgetised_column .wc-block-product-categories li,
.wpb_widgetised_column .widget_product_categories li {
  position: relative;
  font-family: Montserrat;
  font-size: 12px;
}
.wpb_widgetised_column .wc-block-product-categories li:first-child .c-caret,
.wpb_widgetised_column .widget_product_categories li:first-child .c-caret {
  top: 0;
}
.wpb_widgetised_column .wc-block-product-categories li.current-cat ul.children,
.wpb_widgetised_column .widget_product_categories li.current-cat ul.children,
.wpb_widgetised_column .wc-block-product-categories li.current-cat-parent ul.children,
.wpb_widgetised_column .widget_product_categories li.current-cat-parent ul.children {
  display: block;
}
.footer_inner .wp-block-group__inner-container > h2,
.footer_inner h4.widget-title {
  border-bottom: none;
  padding-bottom: 0;
}
.footer_inner .wp-block-group__inner-container > h2 span,
.footer_inner h4.widget-title span {
  font-size: 16px;
  color: #666666;
  font-weight: bold;
  letter-spacing: 1px;
}
.footer_inner .widget_archive li,
.footer_inner .widget_categories li,
.footer_inner .wc-block-product-categories li,
.footer_inner .widget_product_categories li,
.footer_inner .yith-woocompare-widget li,
.footer_inner .widget_nav_menu > div li,
.footer_inner .widget_meta li,
.footer_inner .widget_pages li,
.footer_inner .widget_recent_comments li,
.footer_inner .widget_recent_entries li,
.footer_inner .widget_rss li {
  padding-top: 5px;
  margin-bottom: 5px;
}
.footer_inner .widget_archive li + li,
.footer_inner .widget_categories li + li,
.footer_inner .wc-block-product-categories li + li,
.footer_inner .widget_product_categories li + li,
.footer_inner .yith-woocompare-widget li + li,
.footer_inner .widget_nav_menu > div li + li,
.footer_inner .widget_meta li + li,
.footer_inner .widget_pages li + li,
.footer_inner .widget_recent_comments li + li,
.footer_inner .widget_recent_entries li + li,
.footer_inner .widget_rss li + li {
  margin-top: 5px;
  border-top: none;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  float: right;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  font-size: 12px;
  padding: 11px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  color: #ffffff;
  background-color: #333333;
  border: 1px solid #333333;
}
.woocommerce .widget_price_filter .price_slider_amount .button:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
}
.woocommerce .widget_price_filter .price_slider_amount {
  text-align: left;
  text-transform: uppercase;
  color: #888888;
  font-size: 12px;
  line-height: 36px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background-color: #e5b219;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #222222;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #EEEEEE;
  margin-bottom: 20px;
}
/* -----------------------------------------------------------------------------
 * 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 0 15px;
}
.alignleft {
  float: left;
  margin: 15px 15px 0 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 {
  background: #fff;
  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: -webkit-calc(21%);
  max-width: calc(21%);
}
.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(16%);
  max-width: calc(16%);
}
.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(12.7%);
  max-width: calc(12.7%);
}
.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(10.28%);
  max-width: calc(10.28%);
}
.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(8.5%);
  max-width: calc(8.5%);
}
.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(7.1%);
  max-width: calc(7.1%);
}
.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);
  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: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  width: 100%;
}
.gallery-caption:before {
  box-shadow: 0 -10px 15px #000000 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;
}
.footer_inner aside + aside {
  margin-top: 0;
}
.footer_inner .widget_nav_menu ul.menu li:first-child {
  margin-top: 5px;
  padding-top: 5px;
}
.screen-reader-text {
  display: none;
}
/**
 * 7.0 - Blog
 * ----------------------------------------------------------------------------
 */
.site-content-archive {
  padding: 50px 0;
}
.blog-wrapper .entry-wrapper {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #dddddd;
}
.blog-wrapper h3.entry-title {
  font-size: 36px;
  font-weight: normal;
  letter-spacing: -0.5px;
}
.blog-wrapper .entry-meta {
  padding: 6px 15px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  font-size: 14px;
  color: #878787;
  margin-bottom: 30px;
  line-height: 1.4;
  background: #f5f5f5;
}
.blog-wrapper .entry-meta i {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 5px;
}
.blog-wrapper .entry-meta span + span {
  margin-left: 30px;
}
.blog-wrapper .entry-meta > span:hover i {
  color: #e5b219;
}
.blog-wrapper .entry-image-wrapper {
  margin-bottom: 30px;
}
.blog-wrapper .entry-excerpt {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #777777;
}
.blog-wrapper .entry-excerpt p {
  margin: 0;
}
.blog-wrapper .blog-paging-default {
  text-align: center;
}
.blog-wrapper .jp-audio,
.blog-wrapper .jp-audio a,
.blog-wrapper .jp-seek-bar,
.blog-wrapper .jp-volume-bar {
  color: #FFFFFF;
}
.blog-wrapper .jp-audio a:hover,
.blog-wrapper .jp-play-bar,
.blog-wrapper .jp-play-bar,
.blog-wrapper .jp-volume-bar-value {
  color: #e5b219;
}
.blog-wrapper .jp-play-bar,
.blog-wrapper .jp-volume-bar-value {
  background-color: #e5b219;
}
.blog-wrapper,
.zorka-latest-post {
  /*owl-carousel*/
  /*owl-carousel end*/
}
.blog-wrapper .owl-theme,
.zorka-latest-post .owl-theme {
  overflow: hidden;
}
.blog-wrapper .owl-theme .owl-controls,
.zorka-latest-post .owl-theme .owl-controls {
  margin: 0;
}
.blog-wrapper .owl-theme .owl-controls .owl-buttons div,
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #FFFFFF;
  z-index: 200;
  border: 3px solid #dddddd;
  padding: 0;
  opacity: 1;
  color: #2e2e2e;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.blog-wrapper .owl-theme .owl-controls .owl-buttons div i,
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div i {
  font-size: 18px;
  line-height: 34px;
}
.blog-wrapper .owl-theme .owl-controls .owl-buttons div.owl-prev,
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -40px;
}
.blog-wrapper .owl-theme .owl-controls .owl-buttons div.owl-next,
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -40px;
}
.blog-wrapper .owl-theme:hover .owl-controls .owl-buttons div.owl-prev,
.zorka-latest-post .owl-theme:hover .owl-controls .owl-buttons div.owl-prev {
  left: 30px;
}
.blog-wrapper .owl-theme:hover .owl-controls .owl-buttons div.owl-next,
.zorka-latest-post .owl-theme:hover .owl-controls .owl-buttons div.owl-next {
  right: 30px;
}
.blog-wrapper .owl-theme .owl-controls .owl-buttons div:hover,
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div:hover {
  background: #e5b219;
  color: #FFFFFF;
}
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div {
  width: 30px;
  height: 30px;
  border: 2px solid #dddddd;
}
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div i {
  font-size: 14px;
  line-height: 26px;
}
.zorka-latest-post .owl-theme:hover .owl-controls .owl-buttons div.owl-prev {
  left: 5px;
}
.zorka-latest-post .owl-theme:hover .owl-controls .owl-buttons div.owl-next {
  right: 5px;
}
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -30px;
}
.zorka-latest-post .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -30px;
}
.blog-wrapper ul.pagination,
nav[role="woocommerce-pagination"] ul.pagination {
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.blog-wrapper .pagination > li > a,
nav[role="woocommerce-pagination"] .pagination > li > a,
.blog-wrapper .pagination > li > span,
nav[role="woocommerce-pagination"] .pagination > li > span {
  padding: 0;
  height: 42px;
  width: 42px;
  text-align: center;
  line-height: 42px;
  border: none;
  background: #f5f5f5;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-size: 14px;
  color: #1F1F1F;
  font-family: Montserrat;
}
.blog-wrapper .pagination > li:first-child > a,
nav[role="woocommerce-pagination"] .pagination > li:first-child > a,
.blog-wrapper .pagination > li:first-child > span,
nav[role="woocommerce-pagination"] .pagination > li:first-child > span,
.blog-wrapper .pagination > li:last-child > a,
nav[role="woocommerce-pagination"] .pagination > li:last-child > a,
.blog-wrapper .pagination > li:last-child > span,
nav[role="woocommerce-pagination"] .pagination > li:last-child > span {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: none;
}
.blog-wrapper .pagination li + li > a,
nav[role="woocommerce-pagination"] .pagination li + li > a,
.blog-wrapper .pagination li + li > span,
nav[role="woocommerce-pagination"] .pagination li + li > span {
  margin-left: 3px;
}
.blog-wrapper .pagination > li > a:focus,
nav[role="woocommerce-pagination"] .pagination > li > a:focus,
.blog-wrapper .pagination > li > a:hover,
nav[role="woocommerce-pagination"] .pagination > li > a:hover,
.blog-wrapper .pagination > li > span:focus,
nav[role="woocommerce-pagination"] .pagination > li > span:focus,
.blog-wrapper .pagination > li > span:hover,
nav[role="woocommerce-pagination"] .pagination > li > span:hover,
.blog-wrapper .pagination > li > span.current,
nav[role="woocommerce-pagination"] .pagination > li > span.current {
  background: #e5b219;
  color: #FFFFFF;
}
.blog-wrapper .pagination + .blog-load-more-wrapper,
nav[role="woocommerce-pagination"] .pagination + .blog-load-more-wrapper {
  display: none;
}
.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: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.entry-content table > thead > tr > th,
.comment-text table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.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: 2px solid #dddddd;
}
.entry-content blockquote,
.comment-text blockquote {
  border-color: #e5b219;
}
.entry-content a,
.comment-text a {
  color: #e5b219;
}
.entry-content a:hover,
.comment-text a:hover {
  text-decoration: underline;
}
.entry-content input[type="submit"],
.comment-text input[type="submit"] {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
  font-size: 12px;
  padding: 11px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}
.entry-content input[type="submit"]:hover,
.comment-text input[type="submit"]:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
}
.single-post .blog-wrapper .entry-wrapper {
  padding: 0;
  margin: 0;
  border: none;
}
.entry-author {
  padding-top: 25px;
}
.entry-author-image {
  float: left;
  width: 200px;
  text-align: center;
}
.entry-author-image img {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-bottom: 20px;
}
.entry-author-image a {
  font-size: 11px;
  text-transform: uppercase;
  color: #25282c;
  display: block;
}
.entry-author-image a:hover {
  color: #e5b219;
}
.entry-author-description {
  position: relative;
  overflow: hidden;
  border: 1px solid #dddddd;
  padding: 20px 25px;
  line-height: 2.4;
}
.entry-comments {
  padding-top: 50px;
}
.entry-comments .comments-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #25282c;
  padding-bottom: 10px;
  border-bottom: 1px solid #25282c;
  margin-bottom: 30px;
  display: inline-block;
}
.entry-comments .comment-list-wrapper {
  border-bottom: 1px solid #dddddd;
}
.entry-comments .commentlist,
.entry-comments .commentlist .children {
  list-style: none;
}
.entry-comments .commentlist {
  padding-left: 0;
}
.entry-comments .commentlist > li + li {
  margin-top: 30px;
}
.entry-comments .comment .avatar {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 70px;
  float: left;
  margin-right: 10px;
}
.entry-comments .comment-text {
  position: relative;
  overflow: hidden;
  padding-left: 10px;
}
.entry-comments .comment-text:after {
  content: "";
  padding-top: 25px;
  border-bottom: 1px solid #dddddd;
}
.entry-comments .commentlist > li:last-child .comment-text:after {
  border: none;
}
.entry-comments .comment-text .text {
  border: 1px solid #EDEDED;
  padding: 15px 25px;
  line-height: 2.4;
  background-color: #EDEDED;
  color: #666666;
  position: relative;
  margin-bottom: 10px;
}
.entry-comments .comment-text .text:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #EDEDED;
  position: absolute;
  right: 100%;
  top: 15px;
}
.entry-comments .comment-text .author:before {
  clear: both;
}
.entry-comments .comment-text .author-name {
  float: left;
  font-size: 11px;
  color: #666666;
  text-transform: uppercase;
}
.entry-comments .author-name a {
  font-size: 11px;
  color: #666666;
  text-transform: uppercase;
}
.entry-comments .author-name a:hover {
  color: #e5b219;
}
.entry-comments .comment-text .author .comment-meta {
  float: right;
  font-size: 11px;
  text-transform: uppercase;
  color: #666666;
}
.entry-comments .comment-text .author .comment-meta i {
  font-size: 14px;
  vertical-align: middle;
  margin-right: 5px;
}
.entry-comments .comment-text .author .comment-meta span {
  margin-right: 10px;
}
.entry-comments .comment-text .author .comment-meta .comment-meta-edit a {
  color: #666666;
}
.entry-comments .commentlist .children .comment-text .text {
  background: #FFFFFF;
}
.entry-comments .commentlist .children {
  padding-left: 90px;
}
.entry-comments .commentlist .children li {
  margin-top: 30px;
}
.entry-comments .commentlist .children .comment-text:after {
  border: none;
}
.entry-comments .commentlist .children .comment-text .text:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid #FFFFFF;
  position: absolute;
  right: 100%;
  top: 16px;
}
.entry-comments .comment-navigation {
  margin-bottom: 20px;
}
.entry-comments .comment-navigation .page-numbers {
  height: 35px;
  width: 35px;
  display: inline-block;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 35px;
  text-align: center;
  border: 1px solid #dddddd;
}
.entry-comments .comment-navigation .page-numbers.next,
.entry-comments .comment-navigation .page-numbers.prev {
  border: none;
}
.entry-comments .comment-navigation .page-numbers.current,
.entry-comments .comment-navigation .page-numbers:hover {
  color: #FFFFFF;
  background: #e5b219;
}
.entry-comments-form,
.comment-respond {
  margin-top: 30px;
}
.comment-reply-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #25282c;
  padding-bottom: 10px;
  border-bottom: 1px solid #25282c;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: 1px;
}
.comment-form div {
  padding-bottom: 15px;
}
.comment-form input[type="text"],
.comment-form input[type="search"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="password"],
.comment-form textarea {
  width: 100%;
}
.comment-form .form-submit {
  padding-top: 5px;
  margin: 0;
}
.comment-notes,
.logged-in-as {
  font-size: 13px;
  margin-bottom: 15px;
}
.format-quote .entry-content blockquote {
  font-size: 20px;
  color: #25282c;
  line-height: 1.6;
  font-weight: 600;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}
.format-quote blockquote:before {
  content: '\f10d';
  font-family: fontawesome;
  font-size: 14px;
  font-weight: 400;
  line-height: .8;
  position: absolute;
  left: 0px;
  top: 12px;
  font-style: normal;
  color: #25282c;
}
.format-quote blockquote cite {
  display: block;
  margin-top: 10px;
  letter-spacing: 0.4px;
}
.format-quote blockquote cite a {
  color: #858585;
  font-size: 16px;
}
.format-quote blockquote cite a:hover {
  color: #e5b219;
}
.format-quote .entry-meta {
  margin-bottom: 0;
}
.single-post .format-quote blockquote {
  margin-bottom: 20px;
}
.single-post .entry-content {
  margin-bottom: 20px;
}
.single-post .entry-content p:last-child {
  margin-bottom: 0;
}
.zorka-page-links {
  margin-bottom: 20px;
  margin-top: 20px;
}
.zorka-page-links .zorka-page-link {
  padding: 6px 14px;
  margin-left: -1px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dddddd;
}
.zorka-page-links .zorka-page-link:hover,
.zorka-page-links > .zorka-page-link {
  color: #FFFFFF;
  background-color: #e5b219;
}
.zorka-page-links .zorka-page-links-title {
  font-weight: 600;
  color: #25282c;
}
.blog-wrapper .entry-thumbnail {
  overflow: hidden;
}
.blog-wrapper .entry-thumbnail img {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.blog-wrapper .entry-thumbnail img:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0.8;
}
@media (max-width: 767px) {
  .post-navigation .nav-links .nav-previous,
  .post-navigation .nav-links .nav-next {
    float: none;
    width: 100%;
  }
  .post-navigation .nav-links .nav-next {
    text-align: left;
  }
  .commentlist .children {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  .entry-author-image {
    float: none;
    margin-bottom: 20px;
    width: 100%;
  }
  .comment .avatar,
  .comment-text .text:before {
    display: none;
  }
}
@media (max-width: 320px) {
  .blog-wrapper .blog-paging-default .pagination {
    display: none;
  }
  .blog-wrapper .blog-paging-default .pagination + .blog-load-more-wrapper {
    display: block;
  }
}
/**
 * 8.0 - Woocommerce
 * ----------------------------------------------------------------------------
 */
.site-content-product-archive {
  padding: 70px 0 50px 0;
}
.site-content-product-archive .page-title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.category-filter {
  line-height: 36px;
  margin-bottom: 30px;
}
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
  margin: 0;
}
.woocommerce .woocommerce-result-count {
  text-transform: uppercase;
  font-size: 13px;
  font-family: Montserrat;
}
.product-listing.woocommerce .first {
  clear: both;
}
.product-listing.woocommerce .product-item-wrapper {
  padding-bottom: 50px;
  overflow: hidden;
}
.product-listing.woocommerce .product-thumb img {
  width: 100%;
}
.product-listing.woocommerce .product-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.product-listing.woocommerce .product-thumb-primary {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .product-thumb-secondary {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .product-images-hover.flip-back {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .product-images-hover.flip-back .product-thumb-primary {
  display: block;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  position: relative;
}
.product-listing.woocommerce .product-images-hover.flip-back .product-thumb-secondary {
  display: block;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
  opacity: 1;
}
.product-listing.woocommerce .product-images-hover.translate-top-to-bottom .product-thumb-primary {
  -webkit-transform: translatey(0%);
  -moz-transform: translatey(0%);
  -ms-transform: translatey(0%);
  -o-transform: translatey(0%);
  transform: translatey(0%);
}
.product-listing.woocommerce .product-images-hover.translate-top-to-bottom .product-thumb-secondary {
  -webkit-transform: translatey(-100%);
  -moz-transform: translatey(-100%);
  -ms-transform: translatey(-100%);
  -o-transform: translatey(-100%);
  transform: translatey(-100%);
  z-index: 1;
  opacity: 1;
}
.product-listing.woocommerce .product-images-hover.translate-bottom-to-top .product-thumb-primary {
  -webkit-transform: translatey(0%);
  -moz-transform: translatey(0%);
  -ms-transform: translatey(0%);
  -o-transform: translatey(0%);
  transform: translatey(0%);
}
.product-listing.woocommerce .product-images-hover.translate-bottom-to-top .product-thumb-secondary {
  -webkit-transform: translatey(100%);
  -moz-transform: translatey(100%);
  -ms-transform: translatey(100%);
  -o-transform: translatey(100%);
  transform: translatey(100%);
  z-index: 1;
  opacity: 1;
}
.product-listing.woocommerce .product-images-hover.translate-left-to-right .product-thumb-primary {
  -webkit-transform: translatex(0%);
  -moz-transform: translatex(0%);
  -ms-transform: translatex(0%);
  -o-transform: translatex(0%);
  transform: translatex(0%);
}
.product-listing.woocommerce .product-images-hover.translate-left-to-right .product-thumb-secondary {
  -webkit-transform: translatex(-100%);
  -moz-transform: translatex(-100%);
  -ms-transform: translatex(-100%);
  -o-transform: translatex(-100%);
  transform: translatex(-100%);
  z-index: 1;
  opacity: 1;
}
.product-listing.woocommerce .product-images-hover.translate-right-to-left .product-thumb-primary {
  -webkit-transform: translatex(0%);
  -moz-transform: translatex(0%);
  -ms-transform: translatex(0%);
  -o-transform: translatex(0%);
  transform: translatex(0%);
}
.product-listing.woocommerce .product-images-hover.translate-right-to-left .product-thumb-secondary {
  -webkit-transform: translatex(100%);
  -moz-transform: translatex(100%);
  -ms-transform: translatex(100%);
  -o-transform: translatex(100%);
  transform: translatex(100%);
  z-index: 1;
  opacity: 1;
}
.product-listing.woocommerce .product-quick-view {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 36px;
  width: 36px;
  line-height: 36px;
  background: #e5b219;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: 4;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .product-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.product-listing.woocommerce .wp-post-image {
  margin: 0;
}
.product-listing.woocommerce .product-cat {
  text-align: center;
}
.product-listing.woocommerce .product-cat a {
  font-family: Montserrat;
  font-size: 12px;
  text-transform: uppercase;
  color: #868686;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  display: inline-block;
}
.product-listing.woocommerce .product-cat a:hover {
  text-decoration: none;
  color: #e5b219;
}
.product-listing.woocommerce .product-name {
  text-align: center;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 400;
  display: block;
  color: #212121;
  letter-spacing: 0.25px;
}
.product-listing.woocommerce .product-name:hover {
  color: #e5b219;
  text-decoration: none;
}
.product-listing.woocommerce div.product p.price,
.product-listing.woocommerce div.product span.price {
  text-align: center;
  color: #e5b219;
  font-size: 14px;
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
  font-family: Montserrat;
}
.product-listing.woocommerce div.product p.price del,
.product-listing.woocommerce div.product span.price del {
  display: inline-block;
  font-size: 13px;
  color: #AAAAAA;
  opacity: 1;
  font-weight: normal;
}
.product-listing.woocommerce div.product p.price ins,
.product-listing.woocommerce div.product span.price ins {
  font-weight: normal;
  margin-right: 15px;
}
.product-listing.woocommerce .product-button {
  text-align: center;
  position: relative;
}
.product-listing.woocommerce .product-button-inner {
  display: inline-block;
  position: relative;
}
.product-listing.woocommerce .product_type_variable,
.product-listing.woocommerce .add_to_cart_button,
.product-listing.woocommerce .added_to_cart.wc-forward,
.product-listing.woocommerce .product_type_external,
.product-listing.woocommerce .product_type_grouped,
.product-listing.woocommerce .product_type_simple {
  font-family: Montserrat;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-align: center;
  font-size: 13px;
  padding: 10.5px 25px;
  -webkit-border-radius: 38px;
  -moz-border-radius: 38px;
  border-radius: 38px;
  color: #999999;
  background-color: #eee;
  border: 1px solid #eee;
  font-weight: bold;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.product-listing.woocommerce .product_type_variable:hover,
.product-listing.woocommerce .add_to_cart_button:hover,
.product-listing.woocommerce .added_to_cart.wc-forward:hover,
.product-listing.woocommerce .product_type_external:hover,
.product-listing.woocommerce .product_type_grouped:hover,
.product-listing.woocommerce .product_type_simple:hover {
  background-color: #e5b219;
  border: 1px solid #e5b219;
  color: #ffffff;
}
.product-listing.woocommerce .add_to_cart_button.loading {
  padding: 10.5px 25px;
  opacity: 1;
}
.product-listing.woocommerce .add_to_cart_button.loading:after {
  display: none;
}
.product-listing.woocommerce .add_to_cart_button.loading:before,
.product-listing.woocommerce .added_to_cart.wc-forward:before {
  font-family: "fontawesome";
  content: "\f021";
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  display: inline-block;
  margin-right: 5px;
}
.product-listing.woocommerce .add_to_cart_button.loading:before {
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.product-listing.woocommerce .added_to_cart.wc-forward:before {
  content: "\f07a";
}
.product-listing.woocommerce .add_to_cart_button.added {
  display: none;
}
.product-listing.woocommerce .compare.button {
  font-size: 0;
  background: none;
  display: inline-flex;
  position: absolute;
  bottom: 0;
  left: 100%;
  padding: 0;
  border: none;
  margin-left: 3px;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .compare.button:hover {
  border: none;
}
.product-listing.woocommerce .compare.button:before,
.product-listing.woocommerce .add_to_wishlist:before,
.product-listing.woocommerce .yith-wcwl-add-button .delete_item:before,
.product-listing.woocommerce .yith-add-to-wishlist-button-block > a:before,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a:before,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a:before {
  content: "\f0ec";
  display: inline-block;
  font-family: "fontawesome";
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 12px;
  text-align: center;
  color: #999999;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #eee;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.product-listing.woocommerce .compare.button:hover:before,
.product-listing.woocommerce .add_to_wishlist:hover:before,
.product-listing.woocommerce .yith-wcwl-add-button .delete_item:hover:before,
.product-listing.woocommerce .yith-add-to-wishlist-button-block > a:hover:before,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a:hover:before,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a:hover:before,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a:before,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a:before,
.product-listing.woocommerce .compare.button.added:before {
  background: #e5b219;
  color: #FFFFFF;
}
.product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-listing.woocommerce .yith-wcwl-add-to-wishlist {
  margin: 0;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 100%;
  margin-right: 3px;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.product-listing.woocommerce .add_to_wishlist,
.product-listing.woocommerce .yith-wcwl-add-button .delete_item,
.product-listing.woocommerce .yith-add-to-wishlist-button-block > a,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a {
  font-size: 0;
}
.product-listing.woocommerce .add_to_wishlist i,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse .feedback,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse .feedback {
  display: none;
}
.product-listing.woocommerce .add_to_wishlist:before,
.product-listing.woocommerce .yith-wcwl-add-button .delete_item:before,
.product-listing.woocommerce .yith-add-to-wishlist-button-block > a:before,
.product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a:before,
.product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a:before {
  content: "\f004";
}
.product-listing.woocommerce .yith-wcwl-add-to-wishlist .ajax-loading {
  position: absolute;
  top: 0;
  visibility: visible;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.product-listing.woocommerce .star-rating {
  float: none;
  margin: 0 auto 10px auto;
  font-size: 10px;
  width: 66px;
  height: 11px;
  letter-spacing: 3px;
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.flip-back,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.flip-back {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.change-images .product-thumb-secondary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.change-images .product-thumb-secondary {
  opacity: 1;
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-top-to-bottom .product-thumb-secondary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-top-to-bottom .product-thumb-secondary {
  -webkit-transform: translatey(0);
  -moz-transform: translatey(0);
  -ms-transform: translatey(0);
  -o-transform: translatey(0);
  transform: translatey(0);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-top-to-bottom .product-thumb-primary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-top-to-bottom .product-thumb-primary {
  -webkit-transform: translatey(100%);
  -moz-transform: translatey(100%);
  -ms-transform: translatey(100%);
  -o-transform: translatey(100%);
  transform: translatey(100%);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-bottom-to-top .product-thumb-secondary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-bottom-to-top .product-thumb-secondary {
  -webkit-transform: translatey(0);
  -moz-transform: translatey(0);
  -ms-transform: translatey(0);
  -o-transform: translatey(0);
  transform: translatey(0);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-bottom-to-top .product-thumb-primary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-bottom-to-top .product-thumb-primary {
  -webkit-transform: translatey(-100%);
  -moz-transform: translatey(-100%);
  -ms-transform: translatey(-100%);
  -o-transform: translatey(-100%);
  transform: translatey(-100%);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-left-to-right .product-thumb-secondary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-left-to-right .product-thumb-secondary {
  -webkit-transform: translatex(0%);
  -moz-transform: translatex(0%);
  -ms-transform: translatex(0%);
  -o-transform: translatex(0%);
  transform: translatex(0%);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-left-to-right .product-thumb-primary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-left-to-right .product-thumb-primary {
  -webkit-transform: translatex(100%);
  -moz-transform: translatex(100%);
  -ms-transform: translatex(100%);
  -o-transform: translatex(100%);
  transform: translatex(100%);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-right-to-left .product-thumb-secondary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-right-to-left .product-thumb-secondary {
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-images-hover.translate-right-to-left .product-thumb-primary,
.product-listing.woocommerce .product-item-wrapper.active .product-images-hover.translate-right-to-left .product-thumb-primary {
  -webkit-transform: translatex(-100%);
  -moz-transform: translatex(-100%);
  -ms-transform: translatex(-100%);
  -o-transform: translatex(-100%);
  transform: translatex(-100%);
}
.product-listing.woocommerce .product-item-wrapper:hover .product-quick-view,
.product-listing.woocommerce .product-item-wrapper.active .product-quick-view {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.product-listing.woocommerce .product-item-wrapper:hover .compare.button,
.product-listing.woocommerce .product-item-wrapper.active .compare.button,
.product-listing.woocommerce .product-item-wrapper:hover .yith-add-to-wishlist-button-block,
.product-listing.woocommerce .product-item-wrapper.active .yith-add-to-wishlist-button-block,
.product-listing.woocommerce .product-item-wrapper:hover .yith-wcwl-add-to-wishlist,
.product-listing.woocommerce .product-item-wrapper.active .yith-wcwl-add-to-wishlist {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}
.product-listing.woocommerce .product-item-wrapper:hover .product_type_variable,
.product-listing.woocommerce .product-item-wrapper.active .product_type_variable,
.product-listing.woocommerce .product-item-wrapper:hover .add_to_cart_button,
.product-listing.woocommerce .product-item-wrapper.active .add_to_cart_button,
.product-listing.woocommerce .product-item-wrapper:hover .added_to_cart.wc-forward,
.product-listing.woocommerce .product-item-wrapper.active .added_to_cart.wc-forward,
.product-listing.woocommerce .product-item-wrapper:hover .product_type_external,
.product-listing.woocommerce .product-item-wrapper.active .product_type_external,
.product-listing.woocommerce .product-item-wrapper:hover .product_type_grouped,
.product-listing.woocommerce .product-item-wrapper.active .product_type_grouped,
.product-listing.woocommerce .product-item-wrapper:hover .product_type_simple,
.product-listing.woocommerce .product-item-wrapper.active .product_type_simple {
  background-color: #e5b219;
  border: 1px solid #e5b219;
  color: #ffffff;
}
.product-listing.woocommerce .product-item-wrapper:hover .compare.button:before,
.product-listing.woocommerce .product-item-wrapper.active .compare.button:before,
.product-listing.woocommerce .product-item-wrapper:hover .add_to_wishlist:before,
.product-listing.woocommerce .product-item-wrapper.active .add_to_wishlist:before,
.product-listing.woocommerce .product-item-wrapper:hover .yith-wcwl-add-button .delete_item:before,
.product-listing.woocommerce .product-item-wrapper.active .yith-wcwl-add-button .delete_item:before,
.product-listing.woocommerce .product-item-wrapper:hover .yith-add-to-wishlist-button-block > a:before,
.product-listing.woocommerce .product-item-wrapper.active .yith-add-to-wishlist-button-block > a:before,
.product-listing.woocommerce .product-item-wrapper:hover .yith-wcwl-wishlistaddedbrowse > a:before,
.product-listing.woocommerce .product-item-wrapper.active .yith-wcwl-wishlistaddedbrowse > a:before,
.product-listing.woocommerce .product-item-wrapper:hover .yith-wcwl-wishlistexistsbrowse > a:before,
.product-listing.woocommerce .product-item-wrapper.active .yith-wcwl-wishlistexistsbrowse > a:before {
  background: #e5b219;
  color: #FFFFFF;
}
.product-cat-wrap .first {
  clear: both;
}
.product-cat-item {
  padding-bottom: 50px;
  text-align: center;
}
.product-cat-item a {
  display: block;
}
.product-cat-item img {
  margin-bottom: 20px;
  width: 100%;
}
.product-cat-item h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 14px;
}
.product-cat-item span.count {
  display: block;
  color: #aaa;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-family: Montserrat;
}
.product-listing.woocommerce .second-style .product-item-feature {
  display: none;
}
/*-------Product Animated-----------*/
.product_animated .product-item-wrapper {
  opacity: 0;
}
@-webkit-keyframes umScaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes umScaleIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@-o-keyframes umScaleIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}
@keyframes umScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animated.umScaleIn {
  -webkit-animation-name: umScaleIn;
  -moz-animation-name: umScaleIn;
  -o-animation-name: umScaleIn;
  animation-name: umScaleIn;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.animated.umScaleIn {
  -webkit-animation-duration: .4s;
  -moz-animation-duration: .4s;
  -o-animation-duration: .4s;
  animation-duration: .4s;
}
.product-item-wrapper .umScaleIn {
  opacity: 1;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.product-listing.woocommerce .product-item-feature,
.single-product-left-wrapper .product-item-feature {
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 4;
}
.product-listing.woocommerce .product-item-feature div + div,
.single-product-left-wrapper .product-item-feature div + div {
  margin-top: 5px;
}
.product-listing.woocommerce .on-sale,
.single-product-left-wrapper .on-sale,
.product-listing.woocommerce .on-new,
.single-product-left-wrapper .on-new {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #e5b219;
  color: #FFFFFF;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.product-listing.woocommerce .on-new,
.single-product-left-wrapper .on-new {
  background: #7F8FA0;
}
.product-listing.woocommerce .product-deal-countdown,
.single-product-left-wrapper .product-deal-countdown {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
  height: 120px;
  display: table;
  text-align: center;
}
.product-listing.woocommerce .product-deal-countdown-inner,
.single-product-left-wrapper .product-deal-countdown-inner {
  display: table-cell;
  vertical-align: middle;
}
.product-listing.woocommerce .countdown-section,
.single-product-left-wrapper .countdown-section {
  display: inline-block;
  text-align: center;
}
.product-listing.woocommerce .countdown-section + .countdown-section,
.single-product-left-wrapper .countdown-section + .countdown-section {
  margin-left: 4px;
}
.product-listing.woocommerce .countdown-amount,
.single-product-left-wrapper .countdown-amount {
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: #212121;
  color: #FFFFFF;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.product-listing.woocommerce .countdown-period,
.single-product-left-wrapper .countdown-period {
  color: #202020;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
}
.product-listing.woocommerce.product-slider .product-item-wrapper {
  padding-left: 15px;
  padding-right: 15px;
}
.site-content-product-single {
  padding: 50px 0 70px 0;
}
.upsells.products,
.related.products,
.cross-sells {
  /*owl-carousel*/
  /*owl-carousel end*/
}
.upsells.products h2,
.related.products h2,
.cross-sells h2 {
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 25px;
  display: inline-block;
}
.upsells.products .owl-theme .owl-controls,
.related.products .owl-theme .owl-controls,
.cross-sells .owl-theme .owl-controls {
  margin: 0;
  position: absolute;
  top: -85px;
  right: 10px;
}
.upsells.products .owl-theme .owl-controls .owl-buttons div,
.related.products .owl-theme .owl-controls .owl-buttons div,
.cross-sells .owl-theme .owl-controls .owl-buttons div {
  width: 34px;
  height: 34px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  z-index: 200;
  padding: 0;
  opacity: 1;
  color: #2e2e2e;
}
.upsells.products .owl-theme .owl-controls .owl-buttons div i,
.related.products .owl-theme .owl-controls .owl-buttons div i,
.cross-sells .owl-theme .owl-controls .owl-buttons div i {
  font-size: 18px;
  line-height: 34px;
}
.upsells.products .owl-theme .owl-controls .owl-buttons div:hover,
.related.products .owl-theme .owl-controls .owl-buttons div:hover,
.cross-sells .owl-theme .owl-controls .owl-buttons div:hover {
  background: #e5b219;
  color: #FFFFFF;
}
.single-product-image-wrapper .single-product-thumb-wrap {
  margin: 10px -5px 0 -5px;
}
.single-product-image-wrapper .single-product-thumb-wrap.product-image-total-1 {
  display: none;
}
.single-product-image-wrapper #sync2 .thumbnail-image {
  padding: 0 5px;
  text-align: center;
}
.single-product-image-wrapper #sync2 .thumbnail-image a {
  display: block;
  position: relative;
}
.single-product-image-wrapper #sync2 .thumbnail-image a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0);
}
.single-product-image-wrapper #sync2 .synced .thumbnail-image a:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.single-product #popup-product-quick-view-wrapper .single-product-info {
  padding: 0;
  margin: 0;
  border: none;
}
.woocommerce div.product .product_title {
  font-size: 36px;
  margin-bottom: 40px;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 40px;
}
.woocommerce .woocommerce-product-rating .star-rating {
  font-size: 15px;
  height: 15px;
  letter-spacing: 4px;
  width: 100px;
  margin: 5px 15px 0 0;
}
.woocommerce .woocommerce-product-rating .star-rating:before {
  color: #dddddd;
}
.woocommerce .woocommerce-product-rating .star-rating span:before {
  color: #ffd24d;
}
.woocommerce-review-link {
  text-transform: uppercase;
  font-weight: 600;
}
.price ins {
  text-decoration: none;
}
.woocommerce div.product .entry-summary p.price,
.woocommerce div.product .entry-summary p.price ins,
.woocommerce div.product .entry-summary p.price del,
.woocommerce div.product .entry-summary span.price,
.woocommerce div.product .entry-summary span.price ins,
.woocommerce div.product .entry-summary span.price del {
  font-size: 36px;
  letter-spacing: 5px;
  color: #e5b219;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
}
.woocommerce div.product .entry-summary p.price ins,
.woocommerce div.product .entry-summary p.price del,
.woocommerce div.product .entry-summary span.price ins,
.woocommerce div.product .entry-summary span.price del {
  margin: 0;
}
.product-single-short-description p {
  line-height: 1.8;
  margin-bottom: 35px;
}
.woocommerce .quantity .qty {
  width: 120px;
  height: 42px;
  padding: 0 15px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  background-color: #fafafa;
  border: none;
  color: #202020;
  font-size: 14px;
}
div.quantity {
  position: relative;
  width: 120px;
  display: inline-block;
}
div.quantity .btn-number {
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 12px;
  padding: 0;
  font-size: 10px;
  background: #ffffff;
  border: 1px solid #666666;
  border-radius: 100%;
  color: #666666;
  top: 15px;
}
div.quantity button[data-type="minus"] {
  left: 10px;
}
div.quantity button[data-type="plus"] {
  right: 10px;
}
.woocommerce button.button.alt.single_add_to_cart_button {
  font-family: Montserrat;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-align: center;
  font-size: 13px;
  padding: 12.5px 25px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  font-weight: normal;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
}
.woocommerce button.button.alt.single_add_to_cart_button:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
}
.woocommerce div.product form.cart {
  margin-bottom: 25px;
}
.summary-product .product_meta {
  margin: 0 0 15px 0;
  color: #868686;
}
.summary-product .product_meta label {
  font-weight: 400;
  margin-bottom: 0;
}
.summary-product .product_meta > span {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}
.summary-product .product_meta > span > a {
  color: #25282c;
  font-weight: 600;
}
.summary-product .product_meta > span > a:hover {
  color: #e5b219;
}
.single-product-share > label {
  font-weight: 400;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 15px;
}
.single-product-share > a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: none;
  background-color: #fafafa;
  color: #999999;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin-right: 5px;
}
.single-product-share > a:hover {
  background: #e5b219;
  border-color: #e5b219;
  color: #FFFFFF;
}
.single-product-info .summary-product .compare.button {
  background: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  line-height: 36px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #868686;
  font-weight: 400;
}
.single-product-info .summary-product .compare.button .label {
  font-size: inherit;
  color: inherit;
}
.single-product-info .summary-product .compare.button:hover {
  color: #e5b219;
}
.single-product-info .summary-product .compare.button:before,
.single-product-info .summary-product .add_to_wishlist:before,
.single-product-info .summary-product .yith-wcwl-add-button .delete_item:before,
.single-product-info .summary-product .yith-add-to-wishlist-button-block > a:before,
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse > a:before,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse > a:before {
  content: "\e61b";
  display: inline-block;
  font-family: "Pe-icon-7-stroke";
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 17px;
  text-align: center;
  color: #25282c;
  border: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #fafafa;
  vertical-align: middle;
  margin-right: 5px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}
.single-product-info .summary-product .compare.button:hover:before,
.single-product-info .summary-product .add_to_wishlist:hover:before,
.single-product-info .summary-product .yith-wcwl-add-button .delete_item:hover:before,
.single-product-info .summary-product .yith-add-to-wishlist-button-block > a:hover:before,
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse > a:hover:before,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse > a:hover:before,
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse > a:before,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse > a:before,
.single-product-info .summary-product .compare.button.added:before {
  background: #e5b219;
  color: #FFFFFF;
}
.single-product-info .summary-product .yith-add-to-wishlist-button-block,
.single-product-info .summary-product .yith-wcwl-add-to-wishlist {
  margin: 0 15px 30px 0;
  display: inline-block;
  position: relative;
}
.single-product-info .summary-product .yith-wcwl-add-to-wishlist + div.clear {
  display: none;
}
.single-product-info .summary-product .add_to_wishlist i {
  display: none;
}
.single-product-info .summary-product .add_to_wishlist,
.single-product-info .summary-product .yith-wcwl-add-button .delete_item,
.single-product-info .summary-product .yith-add-to-wishlist-button-block > a,
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse > a,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse > a {
  text-transform: uppercase;
  line-height: 36px;
  font-size: 12px;
  letter-spacing: 1px;
}
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse .feedback,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse .feedback {
  display: none;
}
.single-product-info .summary-product .add_to_wishlist:before,
.single-product-info .summary-product .yith-wcwl-add-button .delete_item:before,
.single-product-info .summary-product .yith-add-to-wishlist-button-block > a:before,
.single-product-info .summary-product .yith-wcwl-wishlistaddedbrowse > a:before,
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse > a:before {
  content: "\e642";
}
.single-product-info .summary-product .yith-wcwl-wishlistexistsbrowse + div {
  display: none;
}
.single-product-info .summary-product .yith-wcwl-add-to-wishlist .ajax-loading {
  position: absolute;
  top: 0;
  visibility: visible;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.single-product .single-product-info {
  padding-bottom: 55px;
  margin-bottom: 50px;
  border-bottom: 1px solid #dddddd;
}
.woocommerce div.product form.cart .group_table,
#popup-product-quick-view-wrapper form.cart .group_table {
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .group_table td.label,
#popup-product-quick-view-wrapper form.cart .group_table td.label {
  vertical-align: middle;
}
.woocommerce div.product form.cart .group_table td.label label,
#popup-product-quick-view-wrapper form.cart .group_table td.label label {
  color: #25282c;
  margin: 0;
  font-size: 14px;
  line-height: 36px;
}
.woocommerce div.product form.cart .group_table td.price,
#popup-product-quick-view-wrapper form.cart .group_table td.price {
  padding: 0;
  margin: 0;
  line-height: 36px;
}
.woocommerce div.product form.cart .group_table td.price .amount,
#popup-product-quick-view-wrapper form.cart .group_table td.price .amount {
  color: #e5b219;
}
#popup-product-quick-view-wrapper form.cart .group_table td {
  vertical-align: top;
  padding-bottom: .5em;
  border: 0;
}
/*---------tab----------*/
.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
  padding-bottom: 55px;
  margin-bottom: 50px;
  border-bottom: 1px solid #dddddd;
}
@media (min-width: 600px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    float: left;
    width: 25%;
    margin: 0 30px 0 0;
    padding: 0;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: block;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #dddddd;
    margin: 0;
    padding: 0;
    border-radius: 0;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 400;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-color: #25282c;
    color: #25282c;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    text-transform: uppercase;
    color: #25282c;
    padding-bottom: 10px;
    padding-top: 0;
    letter-spacing: 1px;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li + li a {
    padding-top: 20px;
  }
}
.woocommerce div.product .woocommerce-tabs .panel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 12px;
  text-transform: uppercase;
  color: #25282c;
  padding-bottom: 10px;
  border-bottom: 1px solid #25282c;
  margin-bottom: 30px;
  display: inline-block;
  letter-spacing: 1px;
  line-height: 1.6;
  font-weight: 400;
  font-family: Montserrat;
}
.woocommerce div.product .woocommerce-tabs .panel p {
  line-height: 1.8;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 60px;
  height: 60px;
  position: relative;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 80px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  position: relative;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #e4e1e3;
  position: absolute;
  right: 100%;
  top: 15px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid #FFFFFF;
  position: absolute;
  right: 100%;
  top: 16px;
}
.woocommerce #reviews #comments ol.commentlist {
  padding: 0;
  margin-bottom: 45px;
}
.woocommerce #reviews h3 {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}
.woocommerce #review_form #respond .form-submit input {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  font-size: 12px;
  padding: 11px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
}
.woocommerce #review_form #respond .form-submit input:hover {
  text-decoration: none !important;
}
.woocommerce #review_form #respond .form-submit input:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
  text-decoration: none;
}
.woocommerce div.product form.cart .variations label {
  color: #868686;
  font-weight: normal;
  line-height: 42px;
  font-size: 14px;
  margin: 0;
}
.woocommerce div.product .entry-summary .single_variation p.price,
.woocommerce div.product .entry-summary .single_variation span.price {
  font-size: 24px;
}
.single-product-left-wrapper {
  position: relative;
}
.single-product-left-wrapper .product-deal-countdown {
  bottom: 100px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/*--------------Cart------------------*/
.woocommerce-account .page-title-wrapper,
.woocommerce-account .page-title-wrapper .page-title-inner,
.woocommerce-account .page-title-wrapper .page-title-image {
  height: 200px;
}
.woocommerce table.shop_table {
  border: none;
  border-bottom: 1px solid #EEEEEE;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce .cart-form {
  margin-bottom: 60px;
}
.woocommerce table.shop_table thead th {
  color: #212121;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
  padding: 10px 15px;
  letter-spacing: 0.4px;
}
.woocommerce table.shop_table td {
  border-color: #EEEEEE;
  position: relative;
  padding: 10px 15px;
}
.woocommerce a.remove {
  font-size: 0 !important;
}
.woocommerce a.remove:before {
  font-family: 'Pe-icon-7-stroke';
  content: "\e681";
  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;
  font-size: 14px;
  color: #c4c4c4;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 14px;
}
.woocommerce a.remove:hover:before {
  color: #e5b219;
}
.woocommerce-cart table.cart .product-thumbnail {
  width: 100px;
}
.woocommerce table.shop_table td.product-thumbnail img {
  width: 70px;
}
.woocommerce table.shop_table td.product-name > a {
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  font-size: 13px;
}
.woocommerce table.shop_table td.product-name > a:hover {
  text-decoration: none;
  color: #e5b219;
}
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
  color: #e5b219;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.woocommerce table.shop_table td.actions {
  padding: 20px 15px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  width: 270px;
  padding: 0 15px;
  height: 42px;
  line-height: 1;
  text-align: center;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  border: none;
}
.woocommerce .cart input.button {
  padding: 12.5px 25px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  letter-spacing: -0.4px;
  font-weight: normal;
  font-size: 13px;
  line-height: 1.2;
  font-family: Montserrat;
}
.woocommerce .cart input.button:disabled,
.woocommerce .cart input.button:disabled[disabled] {
  padding: 12.5px 25px;
}
.woocommerce .cart [name="update_cart"] {
  background: #212121;
  border-color: #212121;
}
.woocommerce .cart input[name="update_cart"]:hover {
  background: #FFFFFF;
  border: 1px solid #dddddd;
}
.woocommerce a.button.alt {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1.5px;
  line-height: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
  font-size: 12px;
  padding: 14px 24px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}
.woocommerce a.button.alt:hover {
  text-decoration: none !important;
}
.woocommerce a.button.alt:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
  text-decoration: none;
}
.woocommerce .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  margin-top: 30px;
}
.shipping-calculator-form {
  display: block !important;
}
#shipping_method + .woocommerce-shipping-calculator {
  display: none;
}
.woocommerce-shipping-calculator,
.cart_totals_inner {
  float: left;
  width: 50%;
  margin-top: 30px;
}
.woocommerce-shipping-calculator {
  padding-right: 15px;
}
.cart_totals_inner {
  padding-left: 15px;
}
.woocommerce-page .cart-collaterals .cart_totals_inner h2,
a.shipping-calculator-button {
  color: #25282c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 24px;
  display: block !important;
  margin-bottom: 50px;
  text-align: center;
  cursor: default;
  font-family: Montserrat;
}
a.shipping-calculator-button:hover {
  text-decoration: none;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button {
  margin-top: 0;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button:after {
  display: none;
}
.woocommerce form .form-row select,
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  height: 42px;
  line-height: 1;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}
.woocommerce form .form-row {
  padding: 0;
  margin: 0 0 10px 0;
}
.woocommerce button.button {
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
  padding: 12.5px 25px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}
.woocommerce button.button:hover {
  text-decoration: none !important;
}
.woocommerce button.button:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
  text-decoration: none;
}
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  padding: 12.5px 25px;
  color: #ffffff;
}
.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover,
.woocommerce a.button.disabled:hover,
.woocommerce a.button:disabled:hover,
.woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
}
.woocommerce-cart .cart-collaterals .cart_totals_inner table td,
.woocommerce-cart .cart-collaterals .cart_totals_inner table th {
  padding: 10px 0;
  line-height: 1;
}
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr:first-child th {
  border-top: 1px solid #EEEEEE;
}
.woocommerce-cart .cart-collaterals .cart_totals_inner tr td,
.woocommerce-cart .cart-collaterals .cart_totals_inner tr th {
  border-top: 1px solid #EEEEEE;
}
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr:last-child td,
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr:last-child th {
  border-bottom: 1px solid #EEEEEE;
}
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr td .amount,
.woocommerce-cart .cart-collaterals .cart_totals_inner table tr th .amount {
  color: #e5b219;
  font-weight: bold;
}
/*-------------Check out--------------*/
.woocommerce-page .select2-container .select2-selection--single {
  height: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  border: none;
  background: #f5f5f5;
}
.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  color: #888888;
  padding-left: 15px;
}
.woocommerce-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}
.woocommerce form.checkout_coupon {
  margin: 0;
  border: 5px solid #EEEEEE;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce-checkout h3 {
  font-size: 16px;
  color: #25282c;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
}
.woocommerce-checkout .woocommerce input.input-text {
  text-align: center;
}
.woocommerce-checkout .woocommerce input#submit,
.woocommerce-checkout .woocommerce a.button,
.woocommerce-checkout .woocommerce button.button,
.woocommerce-checkout .woocommerce input.button {
  font-family: Montserrat;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
  font-size: 13px;
  padding: 12.5px 25px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  font-weight: normal;
}
.woocommerce-checkout .woocommerce input#submit:hover,
.woocommerce-checkout .woocommerce a.button:hover,
.woocommerce-checkout .woocommerce button.button:hover,
.woocommerce-checkout .woocommerce input.button:hover {
  text-decoration: none !important;
}
.woocommerce-checkout .woocommerce input#submit:hover,
.woocommerce-checkout .woocommerce a.button:hover,
.woocommerce-checkout .woocommerce button.button:hover,
.woocommerce-checkout .woocommerce input.button:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
  text-decoration: none;
}
.woocommerce-cart .page-title-wrapper .woocommerce-checkout .checkout_coupon h3 {
  text-align: center;
}
.woocommerce-checkout .checkout_coupon input {
  width: 100%;
}
.woocommerce-checkout .panel-default > .panel-heading {
  background: none;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0;
}
.woocommerce-checkout .panel-default > .panel-heading a {
  color: #25282c;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: bold;
  padding: 10px 15px;
  display: block;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
  font-size: 16px;
}
.woocommerce-checkout .panel-default > .panel-heading a:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  content: "\f107";
  position: absolute;
  right: 15px;
}
.woocommerce-checkout .panel-default > .panel-heading a[aria-expanded="true"]:before {
  content: "\f106";
}
.woocommerce-checkout .panel-default > .panel-heading a[aria-expanded="true"] {
  border-bottom: none;
}
.woocommerce-checkout .panel-default > .panel-heading a:hover {
  color: #e5b219;
  text-decoration: none;
}
.woocommerce-checkout .panel-group .panel {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.woocommerce-checkout .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: 1px solid #EEEEEE;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-align: center;
}
.checkout-account-type {
  text-align: center;
  padding: 20px;
}
.checkout-account-type label {
  color: #202020;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
}
.checkout-account-login {
  border: 5px solid #EEEEEE;
  padding: 20px;
  text-align: center;
}
.checkout-account-login form.login {
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-align: center;
  border: none;
}
.checkout-account-login form.login input.button {
  display: block;
  margin: auto;
  margin-bottom: 10px;
  width: 120px;
}
.checkout-account-login form.login .form-row-first,
.checkout-account-login form.login .form-row-last {
  float: none;
  width: 100%;
}
.woocommerce-checkout h3#ship-to-different-address label {
  margin: 0;
  display: inline-block;
}
.woocommerce form .form-row textarea.input-text,
.woocommerce-page form .form-row textarea.input-text {
  height: 100px;
  line-height: 1.2;
  border-radius: 15px;
  padding: 6px 12px;
}
.woocommerce table.order_details td.product-name .wc-item-meta {
  padding: 0;
}
.woocommerce table.order_details td.product-name .wc-item-meta > li .wc-item-meta-label {
  float: none;
}
.woocommerce table.order_details td.product-name .wc-item-meta > li p {
  display: inline-block;
}
.woocommerce table.woocommerce-checkout-review-order-table {
  margin-bottom: 40px;
}
.woocommerce table.woocommerce-checkout-review-order-table td.product-name dl.variation dt {
  float: none;
}
.woocommerce table.woocommerce-checkout-review-order-table td.product-name dl.variation dd {
  display: inline-block;
}
.woocommerce table.woocommerce-checkout-review-order-table thead th,
.woocommerce table.woocommerce-checkout-review-order-table td,
.woocommerce table.woocommerce-checkout-review-order-table tfoot th {
  text-align: center;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce table.woocommerce-checkout-review-order-table tfoot td {
  font-weight: 400;
}
.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total {
  color: #e5b219;
}
.woocommerce-checkout #payment {
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-align: center;
}
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border: none;
}
.woocommerce-checkout #payment ul.payment_methods li {
  text-align: center;
  margin-bottom: 10px;
}
.woocommerce-checkout #payment ul.payment_methods li input {
  vertical-align: middle;
}
.payment_method-inner {
  border: 1px solid #EEEEEE;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  height: 40px;
  line-height: 40px;
}
.payment_method-inner label {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: #212121;
  letter-spacing: 0.4px;
}
.woocommerce-checkout #payment div.payment_box {
  background: none;
  padding: 0;
  width: 100%;
  margin: 5px 0;
  font-size: 13px;
  color: #868686;
}
.woocommerce-checkout #payment div.payment_box:after,
.woocommerce-checkout #payment div.payment_box:before {
  display: none;
}
.woocommerce-checkout #payment ul.payment_methods li img,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
  display: none;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: none;
}
/*------------Order Recevied -------------*/
.woocommerce table.order_details,
.woocommerce table.customer_details {
  margin-bottom: 30px;
  text-align: center;
}
.woocommerce table.order_details thead th,
.woocommerce table.customer_details thead th,
.woocommerce table.order_details tfoot th,
.woocommerce table.customer_details tfoot th {
  text-align: center;
}
.woocommerce table.order_details tfoot th,
.woocommerce table.customer_details tfoot th,
.woocommerce table.order_details tfoot td,
.woocommerce table.customer_details tfoot td {
  border-color: #EEEEEE;
  font-weight: 400;
}
.woocommerce table.customer_details tbody th,
.woocommerce table.customer_details tbody td {
  border-color: #EEEEEE;
}
.woocommerce table.order_details td.product-name > a {
  font-weight: 400;
}
/*------------My Account------------*/
.woocommerce-account .entry-content {
  padding-bottom: 50px;
}
.woocommerce table.my_account_orders {
  margin-bottom: 30px;
}
.woocommerce-account #customer_login .col-1 {
  border: 5px solid #EEEEEE;
  padding: 50px 40px;
}
.woocommerce-account #customer_login h2 {
  letter-spacing: 3px;
  font-size: 30px;
  text-transform: uppercase;
  color: #25282c;
  font-weight: bold;
  text-align: center;
}
.woocommerce-account #customer_login form.login,
.woocommerce-account #customer_login form.register {
  border: none;
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce-account #customer_login form.login .form-row input.input-text,
.woocommerce-account #customer_login form.register .form-row input.input-text,
.woocommerce-account .lost_reset_password .form-row input.input-text {
  text-align: center;
}
.woocommerce-account #customer_login form.login .form-row label,
.woocommerce-account #customer_login form.register .form-row label,
.woocommerce-account .lost_reset_password .form-row label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1F1F1F;
  font-size: 13px;
}
.woocommerce-account #customer_login form.login .form-row label[for="rememberme"] {
  font-size: 11px;
}
.woocommerce-account #customer_login form.login .form-row input[type="submit"] {
  display: block;
  margin: auto;
  margin-bottom: 10px;
  width: 120px;
}
.woocommerce-account #customer_login form.login .lost_password {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
}
.woocommerce-account #customer_login .col-2 {
  padding: 45px;
}
.woocommerce-account .lost_reset_password {
  text-align: center;
}
.woocommerce-account .lost_reset_password .form-row-first {
  width: 100%;
  float: none;
}
/*-------------WishList---------------*/
.woocommerce table.wishlist_table thead th {
  text-align: center;
}
.woocommerce table.wishlist_table thead th.product-name {
  text-align: left;
}
.woocommerce-wishlist .wishlist-title {
  display: none;
}
/*--------------Compare--------------------*/
.woocommerce-compare-page h1 {
  color: #FFFFFF;
}
/*---------QuickView------------------------*/
#popup-product-quick-view-wrapper .product_title {
  font-size: 36px;
  margin-bottom: 30px;
}
#popup-product-quick-view-wrapper .woocommerce-product-rating {
  margin-bottom: 30px;
}
#popup-product-quick-view-wrapper .entry-summary p.price {
  font-size: 36px;
  letter-spacing: 5px;
  color: #e5b219;
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}
#popup-product-quick-view-wrapper form.cart {
  margin-bottom: 25px;
}
#popup-product-quick-view-wrapper .product_meta {
  margin: 0 0 15px 0;
  color: #868686;
}
#popup-product-quick-view-wrapper .product_meta > span {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeeee;
}
#popup-product-quick-view-wrapper .product_meta label {
  font-weight: 400;
  margin-bottom: 0;
}
#popup-product-quick-view-wrapper .single-product-left-wrapper .product-deal-countdown {
  bottom: 77px;
}
#popup-product-quick-view-wrapper form.cart .variations label {
  color: #868686;
  font-weight: normal;
  line-height: 36px;
  font-size: 14px;
  margin: 0;
}
#popup-product-quick-view-wrapper .variations {
  margin-bottom: 10px;
}
#popup-product-quick-view-wrapper .variations select {
  width: 100%;
}
#popup-product-quick-view-wrapper .variations td {
  padding-bottom: 10px;
}
/*--------------Order Tracking---------------*/
.track_order {
  text-align: center;
  padding-bottom: 50px;
}
.track_order p:first-child {
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  font-size: 13px;
  color: #666666;
  display: block;
}
.woocommerce .track_order .form-row-first,
.woocommerce .track_order .form-row-last {
  float: none;
  margin: auto;
  margin-bottom: 30px;
}
.woocommerce .track_order .form-row-first label,
.woocommerce .track_order .form-row-last label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #25282c;
  font-size: 12px;
}
.woocommerce form.track_order .form-row input.input-text {
  text-align: center;
}
/*------mini-cart------*/
.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: none;
}
.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  padding: 0;
  margin: 0;
}
.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
  padding: 0;
}
.woocommerce div.product form.cart .variations td {
  padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-listing.woocommerce .product_type_variable {
    padding: 11px 11px;
  }
}
@media (min-width: 769px) {
  .woocommerce table.cart td.actions.zorka-actions .checkout-button {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .woocommerce-account #customer_login .col-1,
  .woocommerce-account #customer_login .col-2 {
    float: left;
    width: 48%;
  }
  .woocommerce-account #customer_login .col-2 {
    float: right;
    width: 48%;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .product_title {
    margin-bottom: 20px;
  }
  .woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .woocommerce table.cart tbody tr:first-child td:first-child {
    border-top: 1px solid #eee;
  }
  .woocommerce table.cart tr.cart_item {
    border: 1px solid #eee;
    border-top: none;
    margin-bottom: 20px;
  }
  .woocommerce table.cart .product-remove {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .woocommerce-cart table.cart td.actions {
    border: none;
    padding: 0;
  }
  .woocommerce-cart table.cart {
    border-bottom: none;
  }
  .woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 48%;
  }
  .woocommerce-cart table.cart td.actions > .button {
    float: left;
    width: 48%;
  }
  .woocommerce-cart table.cart td.actions > .button.checkout-button {
    float: right;
  }
}
@media (max-width: 767px) {
  .product-listing.woocommerce .product-item-wrapper:nth-child(2n+1),
  .product-cat-wrap .product-cat-item:nth-child(2n+1) {
    clear: both;
  }
  .product-listing.woocommerce .first,
  .product-cat-wrap .first {
    clear: none;
  }
  .single-product-image-wrapper {
    margin-bottom: 20px;
  }
  .single-product-thumb-wrap {
    display: none;
  }
}
@media (max-width: 599px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 480px) {
  .product-listing.woocommerce .product-item-wrapper,
  .product-cat-wrap .product-cat-item {
    width: 100%;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text:before,
  .woocommerce #reviews #comments ol.commentlist li .comment-text:after {
    display: none;
  }
  .upsells.products .owl-theme .owl-controls .owl-buttons div,
  .related.products .owl-theme .owl-controls .owl-buttons div .cross-sells .owl-theme .owl-controls .owl-buttons div {
    display: none;
  }
  .woocommerce-shipping-calculator,
  .woocommerce .cart-collaterals .cart_totals_inner {
    float: none;
    width: 100%;
    padding: 0;
  }
  .woocommerce .cart-collaterals .cart_totals_inner h2,
  .woocommerce-page .cart-collaterals .cart_totals_inner h2,
  a.shipping-calculator-button {
    margin-bottom: 35px;
  }
  .woocommerce-cart table.cart td.actions > .button {
    width: 100%;
    margin-bottom: .5em;
  }
}
@media (max-width: 440px) {
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    float: none;
  }
}
@media (max-width: 320px) {
  .site-content-product-archive {
    padding: 50px 0 30px 0;
  }
  .upsells.products h2,
  .related.products h2,
  .cross-sells.prducts h2 {
    font-size: 18px;
  }
  .woocommerce #content div.product .woocommerce-tabs,
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce-page #content div.product .woocommerce-tabs,
  .woocommerce-page div.product .woocommerce-tabs {
    padding-bottom: 35px;
    margin-bottom: 30px;
  }
  .upsells.products .owl-theme .owl-controls,
  .related.products .owl-theme .owl-controls,
  .cross-sells .owl-theme .owl-controls {
    display: none !important;
  }
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation li {
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.woocommerce-MyAccount-navigation li a {
  color: #666666;
}
.woocommerce-MyAccount-navigation li a:hover {
  color: #e5b219;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li:hover a {
  color: #e5b219;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation li + li {
  margin-top: 10px;
  border-top: 1px solid #ddd;
}
.input-group-addon {
  background-color: transparent !important;
  border: none !important;
}
.wcmp_table_holder table tbody tr:first-child td {
  background: #6c6b6b !important;
}
.wcmp_media_block input[type="text"] {
  -webkit-border-radius: 0 36px 36px 0;
  -moz-border-radius: 0 36px 36px 0;
  border-radius: 0 36px 36px 0;
}
.by-vendor-name-link {
  text-align: center;
  margin-bottom: 8px;
}
.woocommerce div.product div.images.woocommerce-product-gallery {
  float: none;
  width: 100%;
  margin-bottom: 0;
}
.woocommerce div.product div.images .flex-control-thumbs {
  margin: 10px -5px 0 -5px;
}
.woocommerce div.product div.images .flex-control-thumbs .owl-item li {
  width: 100%;
  padding: 0 5px;
}
.woocommerce-cart .site-content-page,
.woocommerce-checkout .site-content-page {
  margin-bottom: 50px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: none;
  margin: 0;
}
.yith-wcwl-add-to-wishlist svg.yith-wcwl-icon-svg {
  display: none;
}
.tooltip {
  white-space: nowrap;
}
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
  flex-direction: row;
  gap: 15px;
}
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon {
  display: none;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor {
  gap: 0;
}
/**
 * 9.0 - Panel Selector
 * ----------------------------------------------------------------------------
 */
#panel-style-selector .panel-wrapper {
  position: fixed;
  top: 200px;
  left: 0;
  z-index: 99998;
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 195px;
  padding: 0;
  background: #2D454E;
  color: #FFF;
  font-size: 12px;
  border-left: none;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#panel-style-selector .panel-wrapper.in {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
#panel-style-selector .panel-selector-open {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50px;
  height: 50px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  background: #2D454E;
  text-align: center;
  cursor: pointer;
  opacity: 1;
}
#panel-style-selector .panel-selector-open i {
  font-size: 30px;
  line-height: 50px;
}
#panel-style-selector .panel-selector-open:hover {
  color: #F8AF1C;
}
#panel-style-selector .panel-selector-header {
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: #2D454E;
  text-transform: uppercase;
  color: #F8AF1C;
  font-weight: bold;
  font-size: 16px;
}
#panel-style-selector .panel-selector-body {
  padding: 15px;
}
#panel-style-selector .panel-selector-section {
  margin-bottom: 15px;
}
#panel-style-selector h3.panel-selector-title {
  border-bottom: solid 1px #F8AF1C;
  padding-bottom: 5px;
  color: #F8AF1C;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  margin-bottom: 10px;
}
#panel-style-selector h3.panel-selector-title:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #f8af1c;
  margin-right: 5px;
}
#panel-style-selector .panel-selector-row {
  margin-bottom: 5px;
}
#panel-style-selector .panel-selector-btn {
  display: inline-block;
  background-color: #e5b219;
  color: #FFFFFF;
  padding: 6px 12px;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
  border: 1px solid #e5b219;
}
#panel-style-selector .panel-selector-btn:hover,
#panel-style-selector .panel-selector-btn.active {
  background: #FFFFFF;
  border: 1px solid #dddddd;
  color: #25282c;
}
#panel-style-selector ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#panel-style-selector ul li {
  width: 25px;
  height: 25px;
  float: left;
  display: block;
  border: 1px solid #FFFFFF;
  cursor: pointer;
}
#panel-style-selector ul li.active {
  border-color: #f8af1c;
}
#panel-style-selector ul li + li {
  margin-left: 15px;
}
#panel-style-selector ul li:nth-child(4n+1) {
  clear: both;
  margin-left: 0;
}
#panel-style-selector ul li:nth-child(n + 5) {
  margin-top: 15px;
}
#panel-style-selector ul.panel-primary-background li {
  background-image: url('assets/images/style-selector-bg.png');
  background-repeat: no-repeat;
}
/**
 * 10.0 - ShortCode
 * ----------------------------------------------------------------------------
 */
/**
 * 10.1 - Our Team
 * ----------------------------------------------------------------------------
 */
.zorka-our-team .our-team-name {
  font-weight: 400;
  font-size: 14px;
  font-family: Montserrat;
  color: #212121;
  line-height: 1.2;
  margin: 0;
  display: block;
  text-transform: uppercase;
}
.zorka-our-team .our-team-name:hover {
  text-decoration: none;
  color: #e5b219;
}
.zorka-our-team p {
  font-style: italic;
  font-size: 13px;
  color: #202020;
  letter-spacing: 3px;
  line-height: 1.2;
  margin: 0;
  padding: 8px 0 28px;
}
.zorka-our-team ul {
  list-style-type: none;
  padding: 0;
}
.zorka-our-team ul li {
  padding: 0 7px;
  display: inline-block;
}
.zorka-our-team ul li a {
  transition: all 0.5s ease 0s;
  color: #CCCCCC;
}
.zorka-our-team ul li a i {
  font-size: 15px;
}
.zorka-our-team ul li a.facebook:hover i {
  color: #4B6EA8;
}
.zorka-our-team ul li a.twitter:hover i {
  color: #4FD5F8;
}
.zorka-our-team ul li a.google:hover i {
  color: #F63E28;
}
.zorka-our-team ul li a.dribbble:hover i {
  color: #EF528E;
}
.zorka-our-team ul li a.linkedin:hover i {
  color: #0189C3;
}
.zorka-our-team.style1 {
  text-align: center;
}
.zorka-our-team.style1 .our-team-name {
  padding-top: 20px;
}
.zorka-our-team.style1 ul {
  margin-bottom: 70px;
}
.zorka-our-team.style2 {
  text-align: center;
}
.zorka-our-team.style2 .our-team-item {
  margin-bottom: 70px;
}
.zorka-our-team.style2 .our-team-name {
  padding-top: 52px;
}
.zorka-our-team.style2 .our-team-description {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2px;
}
.zorka-our-team.style2 ul {
  margin-bottom: 25px;
}
.page-single-our-team {
  padding-bottom: 70px;
}
.page-single-our-team .our-team-image {
  float: left;
  max-width: 270px;
}
.page-single-our-team .our-team-contact {
  float: left;
  padding-left: 30px;
}
.page-single-our-team .our-team-info:after {
  content: '';
  display: block;
  clear: both;
}
.page-single-our-team .our-team-name {
  margin: 15px 0 0;
}
.page-single-our-team .our-team-job {
  text-align: center;
  font-style: italic;
}
.page-single-our-team .our-team-phone p,
.page-single-our-team .our-team-email p {
  display: inline-block;
  margin: 0;
}
.page-single-our-team .our-team-phone p {
  padding: 0 20px 0 0;
}
.page-single-our-team .our-team-email p {
  padding: 0 27px 0 0;
}
.page-single-our-team .our-team-social {
  padding-top: 30px;
  text-align: center;
}
.page-single-our-team .our-team-social ul {
  list-style-type: none;
  padding: 0;
}
.page-single-our-team .our-team-social ul li {
  padding: 0 7px;
  display: inline-block;
}
.page-single-our-team .our-team-social ul li a {
  transition: all 0.5s ease 0s;
  color: #CCCCCC;
}
.page-single-our-team .our-team-social ul li a i {
  font-size: 15px;
}
.page-single-our-team .our-team-social ul li a.facebook:hover i {
  color: #4B6EA8;
}
.page-single-our-team .our-team-social ul li a.twitter:hover i {
  color: #4FD5F8;
}
.page-single-our-team .our-team-social ul li a.google:hover i {
  color: #F63E28;
}
.page-single-our-team .our-team-social ul li a.dribbble:hover i {
  color: #EF528E;
}
.page-single-our-team .our-team-social ul li a.linkedin:hover i {
  color: #0189C3;
}
/**
 * 10.2 - Testimonial
 * ----------------------------------------------------------------------------
 */
.zorka-testimonial img {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.zorka-testimonial h6 {
  font-family: Montserrat;
  font-size: 26px;
  font-weight: 400;
}
.zorka-testimonial p {
  margin: 0;
}
.zorka-testimonial .testimonial-content {
  background: url("shortcode/assets/images/quote.png") 0 15px no-repeat;
  padding-top: 19px;
  color: #868686;
  line-height: 2;
  letter-spacing: 0.2px;
}
.zorka-testimonial .testimonial-name {
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 400;
  color: #25282c;
  text-transform: uppercase;
  line-height: 1.6;
  padding-bottom: 8px;
}
.zorka-testimonial .testimonial-job {
  font-size: 13px;
  font-style: italic;
  color: #202020;
  letter-spacing: 3px;
  line-height: 1.2;
}
.zorka-testimonial.style1 {
  background-color: #F9F9F9;
  padding: 30px;
}
.zorka-testimonial.style1 h6 {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 4px;
  line-height: 2;
  border-bottom: 1px solid;
  color: #25282c;
}
.zorka-testimonial.style1 .testimonial-item {
  text-align: center;
}
.zorka-testimonial.style1 .testimonial-content {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 24px;
}
.zorka-testimonial.style1 .testimonial-name {
  padding-top: 18px;
}
.zorka-testimonial.style1 .testimonial-job {
  padding-bottom: 9px;
}
.zorka-testimonial.style2 {
  border: 5px solid #EEEEEE;
}
.zorka-testimonial.style2 h6,
.zorka-testimonial.style4 h6 {
  color: #25282c;
}
.zorka-testimonial.style2 > p,
.zorka-testimonial.style4 > p {
  color: #25282c;
}
.zorka-testimonial.style3 .testimonial-name,
.zorka-testimonial.style3 .testimonial-job,
.zorka-testimonial.style3 h6,
.zorka-testimonial.style3 p {
  color: #ffffff;
}
.zorka-testimonial.style3 .testimonial-content {
  color: #CCCCCC;
  background: url('shortcode/assets/images/quote-dark.png') 0 15px no-repeat;
}
.zorka-testimonial.style3 .owl-theme .owl-controls .owl-page span {
  background: #000000;
  border: 1px solid #ffffff;
}
.zorka-testimonial.style3 .owl-theme .owl-controls .owl-page.active span {
  background: #ffffff;
}
.zorka-testimonial.style2 h6,
.zorka-testimonial.style3 h6,
.zorka-testimonial.style4 h6 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 13px;
}
.zorka-testimonial.style2 > p,
.zorka-testimonial.style3 > p,
.zorka-testimonial.style4 > p {
  text-align: center;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 3px;
}
.zorka-testimonial.style2 img,
.zorka-testimonial.style3 img,
.zorka-testimonial.style4 img {
  float: left;
}
.zorka-testimonial.style2 .testimonial-item p,
.zorka-testimonial.style3 .testimonial-item p,
.zorka-testimonial.style4 .testimonial-item p {
  padding-left: 10px;
  text-align: left;
}
.zorka-testimonial.style2 .testimonial-content,
.zorka-testimonial.style3 .testimonial-content,
.zorka-testimonial.style4 .testimonial-content {
  max-width: 830px;
  font-size: 14px;
}
@media screen and (max-width: 991px) {
  .zorka-testimonial.style2,
  .zorka-testimonial.style3,
  .zorka-testimonial.style4 {
    padding-bottom: 15px;
  }
  .zorka-testimonial.style2 h6,
  .zorka-testimonial.style3 h6,
  .zorka-testimonial.style4 h6 {
    padding-top: 35px;
  }
  .zorka-testimonial.style2 .testimonial-item,
  .zorka-testimonial.style3 .testimonial-item,
  .zorka-testimonial.style4 .testimonial-item {
    padding: 15px;
  }
  .zorka-testimonial.style2 .testimonial-item p,
  .zorka-testimonial.style3 .testimonial-item p,
  .zorka-testimonial.style4 .testimonial-item p {
    margin-left: 120px;
  }
}
@media screen and (min-width: 992px) {
  .zorka-testimonial.style2,
  .zorka-testimonial.style3,
  .zorka-testimonial.style4 {
    padding-bottom: 45px;
  }
  .zorka-testimonial.style2 h6,
  .zorka-testimonial.style3 h6,
  .zorka-testimonial.style4 h6 {
    padding-top: 65px;
  }
  .zorka-testimonial.style2 .testimonial-item,
  .zorka-testimonial.style3 .testimonial-item,
  .zorka-testimonial.style4 .testimonial-item {
    padding: 59px 95px 33px;
  }
  .zorka-testimonial.style2 .testimonial-item p,
  .zorka-testimonial.style3 .testimonial-item p,
  .zorka-testimonial.style4 .testimonial-item p {
    margin-left: 130px;
  }
}
@media screen and (max-width: 320px) {
  .zorka-testimonial.style2,
  .zorka-testimonial.style3,
  .zorka-testimonial.style4 {
    text-align: center;
  }
  .zorka-testimonial.style2 img,
  .zorka-testimonial.style3 img,
  .zorka-testimonial.style4 img {
    float: none;
  }
  .zorka-testimonial.style2 P,
  .zorka-testimonial.style3 P,
  .zorka-testimonial.style4 P {
    text-align: center !important;
  }
  .zorka-testimonial.style2 .testimonial-item .testimonial-name,
  .zorka-testimonial.style3 .testimonial-item .testimonial-name,
  .zorka-testimonial.style4 .testimonial-item .testimonial-name {
    margin-top: 15px;
  }
  .zorka-testimonial.style2 .testimonial-item p,
  .zorka-testimonial.style3 .testimonial-item p,
  .zorka-testimonial.style4 .testimonial-item p {
    margin-left: 0px;
    padding-left: 0px;
  }
}
/**
 * 10.3 - MailChimp
 * ----------------------------------------------------------------------------
 */
.zorka-mailchimp {
  display: table;
  width: 100%;
  height: 340px;
  text-align: center;
}
.zorka-mailchimp input[type="email"] {
  background-color: #FFFFFF;
  color: #878787;
  width: 250px;
  height: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  display: inline-block;
  margin-top: 24px;
  line-height: 1;
}
.zorka-mailchimp input[type="submit"] {
  display: inline-block;
  background-color: #e5b219;
  color: #ffffff;
  border: 1px solid #e5b219;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  font-size: 12px;
  height: 42px;
  line-height: 42px;
  padding: 0 26px;
  text-transform: uppercase;
  margin: 24px 0 0 5px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.zorka-mailchimp input[type="submit"]:hover {
  background-color: #FFFFFF;
  border-color: #dddddd;
  color: #25282c;
}
.zorka-mailchimp i {
  font-size: 36px;
}
.zorka-mailchimp h5 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding-top: 15px;
  font-family: Montserrat;
}
.zorka-mailchimp p {
  font-style: italic;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 3px;
  margin: 0;
  padding: 13px 10px 0;
}
.zorka-mailchimp.style1 i,
.zorka-mailchimp.style1 h5 {
  color: #ffffff;
}
.zorka-mailchimp.style1 p {
  color: #CCCCCC;
}
.zorka-mailchimp.style2 {
  border: 5px solid #EEEEEE;
}
.zorka-mailchimp.style2 i,
.zorka-mailchimp.style2 h5 {
  color: #25282c;
}
.zorka-mailchimp.style2 p {
  color: #878787;
}
.zorka-mailchimp.style2 input[type="email"] {
  background-color: #F9F9F9;
}
@media screen and (max-width: 600px) {
  .zorka-mailchimp input[type="email"] {
    width: 220px;
  }
}
/**
 * 10.4 - Banner
 * ----------------------------------------------------------------------------
 */
.zorka-banner {
  font-family: Montserrat;
}
.zorka-banner .banner-content {
  padding: 160px 0;
  color: #666;
  text-align: left;
}
.zorka-banner .banner-content-title {
  display: block;
  margin-bottom: 0px;
  font-size: 40px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.zorka-banner .banner-content-description {
  letter-spacing: 2px;
  font-size: 14px;
  margin: 10px 0 0 0;
}
.zorka-banner .banner-content-sub-title {
  border-bottom: 3px solid #666;
}
/**
 * 10.5 - Button
 * ----------------------------------------------------------------------------
 */
.wp-block-button__link,
.zorka-button {
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-weight: 400;
  font-family: Montserrat;
  font-size: 13px;
}
.wp-block-button__link:hover,
.zorka-button:hover {
  text-decoration: none !important;
}
.wp-block-button__link:not(.has-background):not(.has-text-color),
.zorka-button.style1 {
  color: #ffffff;
  background-color: #e5b219;
  border: 1px solid #e5b219;
}
.wp-block-button__link:not(.has-background):not(.has-text-color):hover,
.zorka-button.style1:hover {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #25282c;
  text-decoration: none;
}
.zorka-button.style2 {
  color: #25282c;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
.zorka-button.style2:hover {
  background-color: #e5b219;
  border: 1px solid #e5b219;
  color: #ffffff;
  text-decoration: none;
}
.zorka-button.style3 {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.zorka-button.style3:hover {
  background-color: #ffffff;
  color: #25282c;
  text-decoration: none;
}
.zorka-button.style4 {
  color: #25282c;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.zorka-button.style4:hover {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
}
.zorka-button.button-sm {
  padding: 9.5px 22px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  border-radius: 36px;
}
.zorka-button.button-md {
  padding: 12.5px 24px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}
.zorka-button.button-lg {
  padding: 15.5px 30px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  border-radius: 48px;
}
.wp-block-button__link {
  padding: 12.5px 24px;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:focus,
.wp-block-button:not(.is-style-outline) .wp-block-button__link:active {
  background-color: #ffffff;
  border-color: #dddddd;
  color: #25282c;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-background,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-text-color {
  border-color: transparent;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-background:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-text-color:hover,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-background:focus,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-text-color:focus,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-background:active,
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-text-color:active {
  background-color: #e5b219;
  color: #fff;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1px solid currentcolor;
  color: #e5b219;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:active {
  color: #e5b219;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):focus,
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color):active {
  color: #333;
}
.wp-block-button:not(.is-style-squared) .wp-block-button__link {
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
}
/**
 * 10.6 - Call To Action
 * ----------------------------------------------------------------------------
 */
.zorka-call-action {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.zorka-call-action.style1 {
  padding: 129px 0 115px;
}
.zorka-call-action.style1 h2 {
  font-size: 60px;
  font-style: italic;
  font-weight: 400;
  color: #728091;
  margin-bottom: 15px;
}
.zorka-call-action.style1 p {
  margin-bottom: 17px;
}
.zorka-call-action.style2 {
  height: 480px;
  text-align: center;
}
.zorka-call-action.style2 i {
  font-size: 36px;
  color: #ffffff;
  padding-top: 188px;
}
.zorka-call-action.style2 h2 {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  padding: 11px 37px 2px;
}
.zorka-call-action.style3 {
  text-align: left;
}
.zorka-call-action.style3 h2 {
  font-size: 26px;
  font-weight: 400;
  color: #25282c;
  font-family: Montserrat;
}
.zorka-call-action.style3 p {
  color: #777777;
}
.zorka-call-action.style4 {
  background-color: #F9F9F9;
}
.zorka-call-action.style4 h2 {
  color: #25282c;
}
.zorka-call-action.style5 {
  background-color: #e5b219;
}
.zorka-call-action.style5 h2 {
  color: #ffffff;
}
.zorka-call-action.style5 a {
  color: #e5b219;
  background-color: #ffffff;
}
.zorka-call-action.style5 a:hover {
  background-color: #e5b219;
  color: #ffffff;
}
.zorka-call-action.style4 .content-middle,
.zorka-call-action.style5 .content-middle {
  height: 140px;
  width: 100%;
}
.zorka-call-action.style4 h2,
.zorka-call-action.style5 h2 {
  float: left;
  font-size: 14px;
  margin-top: 20px;
  font-family: Montserrat;
}
.zorka-call-action.style4 a,
.zorka-call-action.style5 a {
  float: right;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .zorka-call-action.style4,
  .zorka-call-action.style5 {
    text-align: center;
  }
  .zorka-call-action.style4 h2,
  .zorka-call-action.style5 h2 {
    float: none !important;
    margin-top: 0 !important;
  }
  .zorka-call-action.style4 a,
  .zorka-call-action.style5 a {
    float: none !important;
    margin-top: 0 !important;
  }
}
/**
 * 10.7 - Icon Box
 * ----------------------------------------------------------------------------
 */
.zorka-icon-box {
  position: relative;
}
.zorka-icon-box .zbox-title {
  text-transform: uppercase;
  line-height: 14px;
  color: #25282c;
  font-weight: bold;
  font-family: Montserrat;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.zorka-icon-box .zbox-title:hover {
  color: #e5b219;
}
.zorka-icon-box a:hover {
  text-decoration: none;
}
.zorka-icon-box p {
  line-height: 1.8;
  padding-top: 10px;
  color: #777777;
}
.zorka-icon-box .zbox-icon {
  position: absolute;
  display: block;
}
.zorka-icon-box.style1 i {
  font-size: 48px;
  color: #e5b219;
  padding-top: 5px;
}
.zorka-icon-box.style2 i {
  background-color: #e5b219;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
  font-size: 32px;
}
.zorka-icon-box.style3,
.zorka-icon-box.style4 {
  padding: 30px 0 30px 100px;
}
.zorka-icon-box.style3 .zbox-title,
.zorka-icon-box.style4 .zbox-title {
  margin-bottom: 5px;
}
.zorka-icon-box.style3 p,
.zorka-icon-box.style4 p {
  font-size: 13px;
  font-style: italic;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
}
.zorka-icon-box.style3 .zbox-icon,
.zorka-icon-box.style4 .zbox-icon {
  width: 100px;
  left: 0;
  top: 0;
  text-align: right;
  padding: 30px 20px 0 0;
}
.zorka-icon-box.style3 .zbox-icon i,
.zorka-icon-box.style4 .zbox-icon i {
  font-size: 48px;
}
.zorka-icon-box.style3 {
  background-color: #F5F5F5;
}
.zorka-icon-box.style3 .zbox-icon i {
  color: #e5b219;
}
.zorka-icon-box.style4 {
  background-color: #212121;
}
.zorka-icon-box.style4 .zbox-title,
.zorka-icon-box.style4 p,
.zorka-icon-box.style4 i {
  color: #ffffff;
}
.zorka-icon-box.style5 {
  height: 70px;
}
.zorka-icon-box.style5 .zbox-title {
  background-color: #e5b219;
  padding-right: 70px;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  display: block;
  height: 100%;
  padding-top: 28px;
}
.zorka-icon-box.style5 .zbox-icon {
  background-color: #B4666C;
  width: 70px;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
}
.zorka-icon-box.style5 .zbox-icon i {
  color: #ffffff;
  font-size: 32px;
  line-height: 70px;
}
.zorka-icon-box.left {
  text-align: left;
  padding-left: 84px;
}
.zorka-icon-box.left .zbox-icon {
  left: 0;
  top: 0;
}
.zorka-icon-box.right {
  text-align: right;
  padding-right: 84px;
}
.zorka-icon-box.right .zbox-icon {
  right: 0;
  top: 0;
}
.zorka-icon-box.center {
  text-align: center;
  padding-top: 84px;
}
.zorka-icon-box.center .zbox-icon {
  right: 0;
  left: 0;
  top: 0;
}
.zorka-icon-box.style3,
.zorka-icon-box.style4,
.zorka-icon-box.style5 {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.zorka-icon-box.style3:before,
.zorka-icon-box.style4:before,
.zorka-icon-box.style5:before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.zorka-icon-box.style3:hover,
.zorka-icon-box.style4:hover,
.zorka-icon-box.style5:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.zorka-icon-box.style3:hover:before,
.zorka-icon-box.style4:hover:before,
.zorka-icon-box.style5:hover:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
@media screen and (max-width: 480px) {
  .zorka-icon-box.left {
    padding-left: 64px !important;
  }
  .zorka-icon-box.right {
    padding-right: 64px !important;
  }
  .zorka-icon-box.center {
    padding-top: 64px !important;
  }
}
/**
 * 10.8 - Counter
 * ----------------------------------------------------------------------------
 */
.zorka-counter {
  text-align: center;
  font-family: Montserrat;
}
.zorka-counter span {
  font-size: 38px;
  color: #25282c;
  line-height: 1.2;
}
.zorka-counter p {
  font-size: 13px;
  color: #1F1F1F;
  line-height: 1.4;
  margin-top: 12px;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .zorka-counter {
    padding: 172px 0;
  }
}
@media screen and (max-width: 991px) {
  .zorka-counter {
    padding: 20px 0;
  }
}
/**
 * 10.9 - Heading
 * ----------------------------------------------------------------------------
 */
.zorka-heading {
  text-align: center;
  display: table;
  width: 100%;
}
.zorka-heading h2 {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-family: Montserrat;
}
.zorka-heading p {
  margin: 0;
  padding: 0;
}
.zorka-heading.style1 {
  height: 180px;
}
.zorka-heading.style1 h2 {
  font-size: 26px;
  font-weight: 400;
  margin-top: 20px;
  color: #25292C;
  letter-spacing: 1px;
}
.zorka-heading.style1 p {
  font-size: 13px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 3px;
  padding-top: 14px;
  color: #878787;
}
.zorka-heading.style2 {
  height: 150px;
}
.zorka-heading.style2 h2 {
  font-size: 26px;
  font-weight: 400;
}
.zorka-heading.style3 {
  height: 285px;
  position: relative;
}
.zorka-heading.style3 h2 {
  letter-spacing: 3px;
  font-size: 40px;
}
.zorka-heading.style3 p {
  max-width: 549px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  line-height: 1.2;
  font-size: 13px;
  color: #666666;
  padding-top: 35px;
}
.zorka-heading.style3:after {
  content: '';
  border-bottom: 1px solid #EEEEEE;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.zorka-heading.style4 h2 {
  font-size: 18px;
  letter-spacing: 2px;
  text-align: left;
  color: #25282c;
  border-bottom: 1px solid #222222;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .zorka-heading.style1,
  .zorka-heading.style2 {
    height: 120px !important;
  }
  .zorka-heading.style3 {
    height: 200px !important;
  }
}
/**
 * 10.10 - Vc Extend
 * ----------------------------------------------------------------------------
 */
.vc_col-xs-1,
.vc_col-sm-1,
.vc_col-md-1,
.vc_col-lg-1,
.vc_col-xs-2,
.vc_col-sm-2,
.vc_col-md-2,
.vc_col-lg-2,
.vc_col-xs-3,
.vc_col-sm-3,
.vc_col-md-3,
.vc_col-lg-3,
.vc_col-xs-4,
.vc_col-sm-4,
.vc_col-md-4,
.vc_col-lg-4,
.vc_col-xs-5,
.vc_col-sm-5,
.vc_col-md-5,
.vc_col-lg-5,
.vc_col-xs-6,
.vc_col-sm-6,
.vc_col-md-6,
.vc_col-lg-6,
.vc_col-xs-7,
.vc_col-sm-7,
.vc_col-md-7,
.vc_col-lg-7,
.vc_col-xs-8,
.vc_col-sm-8,
.vc_col-md-8,
.vc_col-lg-8,
.vc_col-xs-9,
.vc_col-sm-9,
.vc_col-md-9,
.vc_col-lg-9,
.vc_col-xs-10,
.vc_col-sm-10,
.vc_col-md-10,
.vc_col-lg-10,
.vc_col-xs-11,
.vc_col-sm-11,
.vc_col-md-11,
.vc_col-lg-11,
.vc_col-xs-12,
.vc_col-sm-12,
.vc_col-md-12,
.vc_col-lg-12 {
  min-height: 0;
}
#wrapper-content .wpb_row,
#wrapper-content .wpb_content_element,
#wrapper-content ul.wpb_thumbnails-fluid > li,
#wrapper-content .last_toggle_el_margin,
#wrapper-content .wpb_button {
  margin-bottom: 0;
}
.vc_separator .vc_sep_holder {
  padding-bottom: 1px;
}
.no-border {
  border: 0 !important;
}
.zorka-pie-chart {
  max-width: 190px;
  margin-left: auto;
  margin-right: auto;
}
.zorka-pie-chart .vc_pie_chart_back {
  border-color: transparent;
}
.zorka-pie-chart .vc_pie_chart_value {
  font-size: 26px;
  color: #666666;
  line-height: 34px;
}
.zorka-pie-chart h6 {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.5px;
  margin-top: 24px;
  color: #25282c;
  font-weight: 600;
}
.vc_progress_bar {
  margin-top: 20px;
}
.vc_progress_bar .vc_single_bar {
  height: 5px;
  margin-bottom: 52px;
}
.vc_progress_bar .vc_single_bar .vc_label {
  left: 0;
  top: -20px;
  padding: 0 3px;
  font-size: 11px;
  color: #1F1F1F;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 15px;
  letter-spacing: 0.5px;
}
.vc_label_units {
  color: #e5b219;
  padding-left: 15px;
}
.vc_progress_bar .vc_single_bar .vc_bar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.vc_progress_bar .vc_single_bar {
  box-shadow: none !important;
}
.zorka-partner-carousel .owl-item {
  display: table;
  text-align: center;
}
.zorka-partner-carousel .owl-item img {
  opacity: 0.8;
}
.zorka-partner-carousel .owl-item img:hover {
  opacity: 1;
}
.vc_single_image-wrapper {
  overflow: hidden;
}
.vc_single_image-img {
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.vc_single_image-img:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
.contact-form {
  text-align: center;
}
.contact-form .wpcf7-text {
  width: 100%;
  height: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  border-radius: 42px;
  text-transform: none;
  margin-bottom: 13px;
}
.contact-form textarea {
  width: 100%;
  height: 150px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  text-transform: none;
  margin-bottom: 20px;
}
.contact-form p {
  color: #25282c;
  font-size: 12px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.wpb_accordion_content {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  border: 1px solid #EEEEEE;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
  background-color: transparent;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #25282c;
  line-height: 1.2;
  letter-spacing: 1.5px;
  margin: 20px 0;
  outline: none;
}
.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a:hover {
  text-decoration: none;
}
.wpb_accordion_wrapper .ui-state-default:after {
  content: '';
  display: block;
  border-bottom: 1px solid #EEEEEE;
}
.wpb_accordion_wrapper .ui-state-default.ui-state-active:after {
  border-bottom: 0;
}
.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon {
  background: none;
  cursor: pointer;
  top: 0;
  right: 7px;
}
.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon:before {
  content: '\f078';
  font-family: fontawesome;
  font-size: 8px;
  font-weight: 100;
}
.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
  background: none;
  cursor: pointer;
  top: 0;
  right: 7px;
}
.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon:before {
  content: '\f077';
  font-family: fontawesome;
  font-size: 8px;
  font-weight: 100;
}
.wpb_tour .wpb_tabs_nav {
  width: 23%;
}
.wpb_tour .wpb_tour_tabs_wrapper .wpb_tab {
  width: 77%;
}
.wpb_content_element .wpb_tabs_nav li.ui-state-default {
  background: none;
  border-bottom: 1px solid #EEEEEE;
}
.wpb_content_element .wpb_tabs_nav li.ui-tabs-active,
.wpb_content_element .wpb_tabs_nav li:hover {
  background: none;
  border-bottom: 1px solid #25282c;
}
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a {
  color: #25282c;
  font-weight: 600;
  padding: 18px 0 4px 0;
}
.wpb_tour .wpb_tour_tabs_wrapper .wpb_tab {
  padding-top: 20px;
}
.wpb_tour_next_prev_nav {
  display: none;
}
.vc_tta-style-tour_style1.vc_tta.vc_general .vc_tta-tab > a {
  padding: 8px 20px 8px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
  border-left: 0;
  font-size: 14px;
  font-weight: 600;
  color: #25282c;
  line-height: 1.2;
  letter-spacing: 1.5px;
}
.vc_tta-style-tour_style1.vc_tta.vc_general .vc_tta-tab.vc_active > a,
.vc_tta-style-tour_style1.vc_tta.vc_general .vc_tta-tab:hover > a {
  border-bottom: 1px solid #25282c;
}
.vc_tta-style-accordion_style1.vc_tta.vc_general .vc_tta-panel-body {
  -webkit-border-radius: 20px !important;
  -moz-border-radius: 20px !important;
  border-radius: 20px !important;
  border: 1px solid #EEEEEE;
}
.vc_tta-style-accordion_style1.vc_tta.vc_general .vc_tta-panel-title > a,
.vc_tta-style-tour_style1.vc_tta.vc_general .vc_tta-panel-title > a {
  font-size: 12px;
  color: #25282c;
  line-height: 1.2;
  letter-spacing: 1.5px;
  padding: 25px 20px;
}
.vc_tta-style-accordion_style1.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon,
.vc_tta-style-tour_style1.vc_tta.vc_tta-accordion .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
  right: 10px;
}
.vc_tta-style-accordion_style1 .vc_tta-controls-icon-triangle:before,
.vc_tta-style-tour_style1 .vc_tta-controls-icon-triangle:before {
  content: '\f077' !important;
  font-family: fontawesome;
  font-size: 8px;
  font-weight: 100;
  display: block;
  border: 0 !important;
  font-style: normal;
}
.vc_tta-style-accordion_style1.vc_tta.vc_general .vc_tta-panel-heading,
.vc_tta-style-tour_style1.vc_tta.vc_general .vc_tta-panel-heading {
  border-bottom: 1px solid #EEEEEE;
}
.vc_tta-style-accordion_style1 .vc_tta-panel.vc_active .vc_tta-panel-heading,
.vc_tta-style-tour_style1 .vc_tta-panel.vc_active .vc_tta-panel-heading {
  border-bottom: 0;
}
.slider-text-border {
  display: inline-block;
  border: 5px solid #728091;
}
.height-auto {
  height: auto !important;
}
.font-style-normal * {
  font-style: normal !important;
}
.bg-content-box {
  background-clip: content-box;
}
.bg-column {
  background-clip: content-box;
  background-size: contain;
  background-position: center;
}
.hiring-box .wpb_text_column {
  padding: 50px 35px 30px;
  text-align: left;
}
.hiring-box .wpb_text_column ul {
  list-style-type: none;
  padding-left: 0;
  margin: 20px 0;
}
.hiring-box .wpb_text_column ul li:before {
  font-family: 'FontAwesome';
  content: "\f105";
  margin: 0 10px 0 0;
  color: #868686;
}
.hiring-box .vc_inner .wpb_column {
  text-align: center;
  background-clip: content-box;
  background-color: #f9f9f9;
  margin-bottom: 30px;
}
.hiring-box .wpb_wrapper .zorka-button {
  margin-bottom: 60px;
}
.border-5px {
  border: 5px solid #EEEEEE;
}
.wpb_text_column h1,
.wpb_text_column h2,
.wpb_text_column h3,
.wpb_text_column h4,
.wpb_text_column h5,
.wpb_text_column h6 {
  letter-spacing: 1px;
}
.margin-bottom-5 {
  margin-bottom: 5px !important;
}
.margin-bottom-10 {
  margin-bottom: 10px !important;
}
.margin-bottom-15 {
  margin-bottom: 15px !important;
}
.margin-top-5 {
  margin-top: 5px !important;
}
.margin-top-10 {
  margin-top: 10px !important;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-bottom-nag-30 {
  margin-bottom: -30px !important;
}
.height-100 {
  height: 100px !important;
}
.vc-max-width-270 {
  max-width: 270px;
  margin: auto;
}
@media (min-width: 768px) {
  .vc-padding-right-0,
  .vc-padding-right-0 > .vc_column-inner {
    padding-right: 0;
  }
  .vc-padding-left-0,
  .vc-padding-left-0 > .vc_column-inner {
    padding-left: 0;
  }
  .vc_col-sm-4-no-padding {
    float: left;
    width: 33.33333333%;
  }
  .sm-margin-top-30 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .xs-margin-bottom-30 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .zorka-pie-chart {
    padding: 20px 0;
  }
  .margin-bottom-30,
  .margin-bottom-35 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-40 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-45 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-50 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-55 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-60 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-65 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-70 {
    margin-bottom: 50px !important;
  }
  .zorka-padding-bottom-70 {
    padding-bottom: 50px !important;
  }
  .margin-bottom-75 {
    margin-bottom: 55px !important;
  }
  .margin-bottom-80 {
    margin-bottom: 60px !important;
  }
  .margin-bottom-85 {
    margin-bottom: 65px !important;
  }
  .margin-bottom-90 {
    margin-bottom: 70px !important;
  }
  .margin-bottom-95 {
    margin-bottom: 75px !important;
  }
  .margin-bottom-100 {
    margin-bottom: 80px !important;
  }
  .margin-top-30,
  .margin-top-35 {
    margin-top: 15px !important;
  }
  .margin-top-40 {
    margin-top: 20px !important;
  }
  .margin-top-45 {
    margin-top: 25px !important;
  }
  .margin-top-50 {
    margin-top: 30px !important;
  }
  .margin-top-55 {
    margin-top: 35px !important;
  }
  .margin-top-60 {
    margin-top: 40px !important;
  }
  .margin-top-65 {
    margin-top: 45px !important;
  }
  .margin-top-70 {
    margin-top: 50px !important;
  }
  .margin-top-75 {
    margin-top: 55px !important;
  }
  .margin-top-80 {
    margin-top: 60px !important;
  }
  .margin-top-85 {
    margin-top: 65px !important;
  }
  .margin-top-90 {
    margin-top: 70px !important;
  }
  .margin-top-95 {
    margin-top: 75px !important;
  }
  .margin-top-100 {
    margin-top: 80px !important;
  }
}
@media screen and (min-width: 992px) {
  .zorka-pie-chart {
    padding: 74px 0;
  }
  .margin-bottom-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-50 {
    margin-bottom: 50px !important;
  }
  .margin-bottom-55 {
    margin-bottom: 55px !important;
  }
  .margin-bottom-60 {
    margin-bottom: 60px !important;
  }
  .margin-bottom-65 {
    margin-bottom: 65px !important;
  }
  .margin-bottom-70 {
    margin-bottom: 70px !important;
  }
  .zorka-padding-bottom-70 {
    padding-bottom: 70px !important;
  }
  .margin-bottom-75 {
    margin-bottom: 75px !important;
  }
  .margin-bottom-80 {
    margin-bottom: 80px !important;
  }
  .margin-bottom-85 {
    margin-bottom: 85px !important;
  }
  .margin-bottom-90 {
    margin-bottom: 90px !important;
  }
  .margin-bottom-95 {
    margin-bottom: 95px !important;
  }
  .margin-bottom-100 {
    margin-bottom: 100px !important;
  }
  .margin-top-20 {
    margin-top: 20px !important;
  }
  .margin-top-25 {
    margin-top: 25px !important;
  }
  .margin-top-30 {
    margin-top: 30px !important;
  }
  .margin-top-35 {
    margin-top: 35px !important;
  }
  .margin-top-40 {
    margin-top: 40px !important;
  }
  .margin-top-45 {
    margin-top: 45px !important;
  }
  .margin-top-50 {
    margin-top: 50px !important;
  }
  .margin-top-55 {
    margin-top: 55px !important;
  }
  .margin-top-60 {
    margin-top: 60px !important;
  }
  .margin-top-65 {
    margin-top: 65px !important;
  }
  .margin-top-70 {
    margin-top: 70px !important;
  }
  .margin-top-75 {
    margin-top: 75px !important;
  }
  .margin-top-80 {
    margin-top: 80px !important;
  }
  .margin-top-85 {
    margin-top: 85px !important;
  }
  .margin-top-90 {
    margin-top: 90px !important;
  }
  .margin-top-95 {
    margin-top: 95px !important;
  }
  .margin-top-100 {
    margin-top: 100px !important;
  }
}
@media screen and (max-width: 480px) {
  .vc_responsive .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav,
  .vc_responsive .wpb_tour .wpb_tab,
  .vc_responsive .wpb_tour_next_prev_nav {
    width: 100% !important;
  }
}
.vertical-parallax {
  position: static;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: transparent;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position-x: 50%;
  overflow: hidden;
}
.horizontal-parallax {
  position: static;
  background-repeat: no-repeat;
  background-color: transparent;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: 0px;
}
.overlay-wapper {
  overflow: hidden;
}
.overlay-wapper .overlay {
  position: relative;
  width: 100%;
}
.overlay-wapper .overlay:before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 1000%;
}
.video-background-wapper {
  overflow: hidden;
  position: relative;
}
.video-background-wapper video {
  left: 0;
  min-height: 100%;
  min-width: 100%;
  top: 0;
  position: absolute;
}
.fullwidth {
  overflow: hidden;
}
.fullwidth:before,
.fullwidth:after {
  content: " ";
  display: table;
}
.fullwidth:after {
  clear: both;
}
.overlay-bg-vc-wapper {
  position: relative;
}
.overlay-bg-vc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/**
 * 10.11 - Portfolio
 * ----------------------------------------------------------------------------
 */
.portfolio .portfolio-tabs {
  display: table;
  width: 100%;
}
.portfolio .portfolio-tabs ul {
  list-style: none;
  padding-right: 34px;
  margin-bottom: 30px;
}
.portfolio .portfolio-tabs ul li {
  float: left;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 2;
  position: relative;
}
.portfolio .portfolio-tabs ul li > a {
  font-size: 15px;
  font-weight: 400;
  font-family: Montserrat;
  color: #25282c;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-left: 10px;
  padding-right: 6px;
}
.portfolio .portfolio-tabs ul li > a.active,
.portfolio .portfolio-tabs ul li > a:hover {
  color: #e5b219;
}
.portfolio .portfolio-tabs ul li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  height: 1px;
  background: #e5b219;
  width: 0%;
  display: inline-block;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.portfolio .portfolio-tabs ul li.active,
.portfolio .portfolio-tabs ul li:hover {
  /*border-bottom: solid 1px @primary_color;*/
}
.portfolio .portfolio-tabs ul li.active a:before,
.portfolio .portfolio-tabs ul li:hover a:before {
  width: 100%;
}
.portfolio .portfolio-tabs.center {
  text-align: center;
}
.portfolio .portfolio-tabs.center ul {
  text-align: center;
  display: inline-block;
}
.portfolio .portfolio-tabs.right > ul {
  float: right;
  margin-right: -14px;
}
.portfolio .portfolio-tabs.left > ul {
  float: left;
  margin-left: -14px;
}
.container .portfolio .portfolio-tabs > ul {
  padding: 0;
}
/* pretty Photo */
div.light_rounded .pp_description,
div.light_square .pp_description {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
div.light_rounded .pp_description a,
div.light_square .pp_description a {
  text-decoration: none;
  color: #868686;
}
div.light_rounded .pp_description a:hover,
div.light_square .pp_description a:hover {
  text-decoration: none;
  color: #e5b219;
}
/* end pretty Photo */
.portfolio-wrapper.zorka-col-md-2 .portfolio-item {
  width: 50%;
  float: left;
}
.portfolio-wrapper.zorka-col-md-2 .portfolio-item .post-title a {
  font-size: 18px;
}
.portfolio-wrapper.zorka-col-md-3 .portfolio-item {
  width: 33.3%;
  float: left;
}
.portfolio-wrapper.zorka-col-md-3 .portfolio-item .post-title a {
  font-size: 16px;
}
.portfolio-wrapper.zorka-col-md-4 .portfolio-item {
  width: 25%;
  float: left;
}
.portfolio-wrapper.zorka-col-md-4 .portfolio-item .post-title a {
  font-size: 15px;
}
.portfolio-wrapper.col-padding-10 {
  margin: 0 -10px -20px;
}
.portfolio-wrapper.col-padding-10 .portfolio-item {
  padding: 0px 10px 20px 10px;
}
.portfolio-wrapper.col-padding-15 {
  margin: 0 -15px -30px;
}
.portfolio-wrapper.col-padding-15 .portfolio-item {
  padding: 0px 15px 30px 15px;
}
.portfolio-wrapper.col-padding-20 {
  margin: 0 -20px -40px;
}
.portfolio-wrapper.col-padding-20 .portfolio-item {
  padding: 0px 20px 0px 20px;
}
.portfolio-wrapper.col-padding-40 {
  margin: 0 -40px -80px;
}
.portfolio-wrapper.col-padding-40 .portfolio-item {
  padding: 0px 40px 80px 40px;
}
.portfolio-wrapper .portfolio-item {
  padding: 0px;
  position: relative;
}
.portfolio-wrapper .portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail {
  overflow: hidden;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover a {
  border-radius: 0px;
  border: none;
  width: 100%;
  text-decoration: none;
  display: inline;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover a:hover {
  background-color: transparent;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper {
  display: table;
  height: 100%;
  text-align: center;
  width: 100%;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner {
  display: table-cell;
  vertical-align: middle;
  padding-left: 28px;
  padding-right: 28px;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner div {
  text-transform: none;
  text-align: center;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  margin-top: 15px;
  font-size: 16px;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner span.category a {
  font-size: 12px;
  text-transform: uppercase;
  font-family: Montserrat;
  font-style: normal;
}
.portfolio-wrapper .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner img {
  max-width: 100%;
  display: inline-block;
}
.portfolio-wrapper .portfolio-item div.post-title {
  text-transform: none;
  text-align: center;
  font-weight: 400;
  margin-top: 20px;
}
.portfolio-wrapper .portfolio-item div.post-title a {
  color: #25282c;
  font-size: 18px;
  font-weight: 400;
}
.portfolio-wrapper .portfolio-item div.post-title a:hover {
  text-decoration: none;
  color: #e5b219;
}
.portfolio-wrapper .portfolio-item div.category {
  text-align: center;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 40px;
  overflow: hidden;
  text-transform: uppercase;
}
.portfolio-wrapper .portfolio-item div.category a {
  color: #878787;
  font-size: 12px;
  font-weight: 400;
  font-family: Montserrat;
}
.portfolio-item.col-padding-10 div.category {
  margin-bottom: 20px;
}
.portfolio-item.col-padding-15 div.category {
  margin-bottom: 10px;
}
.portfolio-item.col-padding-20 div.category {
  margin-bottom: 0px;
}
.portfolio-item .entry-thumbnail.title .entry-hover-wrapper .entry-hover-inner h5 {
  margin-bottom: 0px;
}
.portfolio-item .entry-thumbnail .entry-hover-wrapper .entry-hover-inner .excerpt {
  color: #868686;
  height: 75px;
  overflow: hidden;
}
body.boxed .portfolio-item .entry-thumbnail .entry-hover-wrapper .entry-hover-inner .icon.full {
  display: none;
}
.portfolio-load-more-wrapper {
  text-align: center;
  margin-top: 88px;
  position: relative;
}
.portfolio .paging {
  margin-top: 20px;
  margin-bottom: 70px;
  height: 56px;
  text-align: center;
}
.portfolio .paging a {
  padding-left: 96px;
  padding-right: 96px;
}
.portfolio-item .entry-thumbnail .entry-thumbnail-hover {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.archive-portfolio {
  margin-top: 40px;
}
@media only screen and (min-width: 1920px) {
  .portfolio-wrapper .portfolio-item .entry-thumbnail > img {
    width: 100%;
  }
}
@media only screen and (max-width: 1000px) {
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item .post-title,
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item .category {
    font-size: 12px;
  }
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner h5,
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner span {
    font-size: 12px;
  }
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item .entry-thumbnail .entry-thumbnail-hover .entry-hover-wrapper .entry-hover-inner i {
    font-size: 22px;
  }
}
@media only screen and (max-width: 600px) {
  .portfolio-item .entry-thumbnail .entry-hover-wrapper .entry-hover-inner h5 {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 990px) {
  .portfolio-wrapper.zorka-col-md-3 .portfolio-item,
  .portfolio-wrapper.zorka-col-md-4 .portfolio-item {
    width: 50%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 590px) {
  .portfolio-wrapper.zorka-col-md-2 .portfolio-item,
  .portfolio-wrapper.zorka-col-md-3 .portfolio-item,
  .portfolio-wrapper.zorka-col-md-4 .portfolio-item {
    width: 100%;
  }
}
.single-portfolio .post-navigation-label {
  display: none;
}
.single-portfolio .page-title-wrapper {
  margin-bottom: 40px;
}
.single-portfolio .portfolio-full .fullwidth .portfolio-description,
.single-portfolio .portfolio-full .small-slider > .col-md-8,
.single-portfolio .portfolio-full .siderbar > .col-md-8,
.single-portfolio .portfolio-full .vertical-slider > .col-md-8 {
  padding-left: 0px;
}
.portfolio-full {
  margin-bottom: 60px;
}
.portfolio-full .post-slideshow .owl-buttons .owl-prev,
.portfolio-full .post-slideshow .owl-buttons .owl-next {
  position: absolute;
  height: 100%;
  border-radius: 0px;
  background-color: transparent;
  display: table;
}
.portfolio-full .post-slideshow .owl-buttons .owl-prev span.arrow-wrapper,
.portfolio-full .post-slideshow .owl-buttons .owl-next span.arrow-wrapper {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}
.portfolio-full .post-slideshow .owl-buttons .owl-prev {
  left: 0px;
  margin: 0px;
}
.portfolio-full .post-slideshow .owl-buttons .owl-next {
  right: 0px;
  margin: 0px;
}
.portfolio-full.siderbar .widget_categories {
  margin-bottom: 60px;
}
.portfolio-full.siderbar h4.widget-title:after {
  border: none;
}
.portfolio-full.siderbar .wp-block-page-list,
.portfolio-full.siderbar .wp-block-archives,
.portfolio-full.siderbar .wp-block-categories,
.portfolio-full.siderbar .widget_categories ul {
  list-style: none;
  padding-left: 0px;
}
.portfolio-full.siderbar .widget-grant-related_post {
  margin-bottom: 80px;
}
.portfolio-full.siderbar .wp-block-page-list li.cat-item a,
.portfolio-full.siderbar .wp-block-archives li.cat-item a,
.portfolio-full.siderbar .wp-block-categories li.cat-item a,
.portfolio-full.siderbar .widget_categories ul li.cat-item a {
  padding-left: 16px;
  color: #e5b219;
}
.portfolio-full .post-slideshow.owl-theme .owl-controls {
  margin-top: 0px;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
.portfolio-full .post-slideshow.owl-theme .owl-controls .owl-buttons {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.portfolio-full.fullwidth .post-slideshow {
  max-height: 640px;
  overflow: hidden;
}
.portfolio-full.small-slider .post-slideshow {
  max-height: 507px;
  overflow: hidden;
}
.portfolio-full.big-slider .post-slideshow {
  max-height: 774px;
  overflow: hidden;
}
.portfolio-full.fullwidth .post-slideshow div.item img {
  width: 100%;
}
.portfolio-full.vertical-slider .post-slideshow {
  margin-bottom: 30px;
}
.portfolio-full.vertical-slider .post-slideshow div.item {
  margin-bottom: 30px;
}
.portfolio-full .post-slideshow div.item img {
  max-width: 100%;
}
.portfolio-full .portfolio-content div.title {
  text-transform: none;
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 36px;
  color: #25282c;
}
.portfolio-full .portfolio-content h5.clear-top {
  margin-top: 0px;
}
.portfolio-full .portfolio-content .portfolio-info .portfolio-info-box {
  padding-bottom: 10px;
  padding-top: 10px;
  border-top: solid 1px #dddddd;
}
.portfolio-full .portfolio-content .portfolio-info .portfolio-info-box:last-child {
  border-bottom: solid 1px #dddddd;
}
.portfolio-full .portfolio-content .portfolio-info .portfolio-info-box h6 {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0px;
}
.portfolio-full .portfolio-content .portfolio-info .portfolio-info-box .portfolio-term {
  display: inline-block;
  padding-left: 10px;
}
.portfolio-full .portfolio-content .portfolio-info .portfolio-info-box .text-underline {
  text-decoration: underline;
}
.portfolio-full .portfolio-content {
  margin-bottom: 60px;
}
.portfolio-related.portfolio-wrapper {
  margin-top: 30px;
}
.portfolio-info .social-link {
  list-style: none;
  display: inline-block;
  padding-left: 0px;
  margin-bottom: 0px;
}
.portfolio-info .social-link li {
  float: left;
  padding-left: 8px;
  padding-right: 8px;
}
.portfolio-info .social-link li:first-child {
  padding-left: 0px;
}
/**
 * 10.12 - Product
 * ----------------------------------------------------------------------------
 */
.shortcode-product .owl-theme .owl-controls,
.trending-product .owl-theme .owl-controls,
.shortcode-product-categories .owl-theme .owl-controls,
.product-featured-widget .owl-theme .owl-controls {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
}
.shortcode-product .owl-theme .owl-controls .owl-buttons div,
.trending-product .owl-theme .owl-controls .owl-buttons div,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div {
  background-color: transparent;
  border: solid 1px #4f4f4f;
  color: #4f4f4f;
}
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-prev {
  float: left;
  left: -50px;
}
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-next {
  float: right;
  right: -50px;
}
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-prev,
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-next {
  border: none;
  background-color: #f5f5f5;
  height: 36px;
  width: 36px;
  line-height: 34px;
  position: absolute;
  top: 28%;
}
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev i,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev i,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev i,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-prev i,
.shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next i,
.trending-product .owl-theme .owl-controls .owl-buttons div.owl-next i,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next i,
.product-featured-widget .owl-theme .owl-controls .owl-buttons div.owl-next i {
  font-size: 20px;
}
.shortcode-product .product-info .star-rating,
.trending-product .product-info .star-rating,
.shortcode-product-categories .product-info .star-rating,
.product-featured-widget .product-info .star-rating {
  display: none;
}
.shortcode-product .product-info .rating-wrap .star-rating,
.trending-product .product-info .rating-wrap .star-rating,
.shortcode-product-categories .product-info .rating-wrap .star-rating,
.product-featured-widget .product-info .rating-wrap .star-rating {
  display: block;
}
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev,
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next {
  top: 33%;
}
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: -55px;
}
.shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: -55px;
}
.trending-product .columns-3 .owl-theme .owl-controls .owl-buttons div.owl-prev,
.fullwidth .columns-5 .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: 22px;
}
.trending-product .columns-3 .owl-theme .owl-controls .owl-buttons div.owl-next,
.fullwidth .columns-5 .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: 22px;
}
.shortcode-product.top-right .owl-theme .owl-controls,
.trending-product.top-right .owl-theme .owl-controls {
  right: 0px;
  width: auto;
  padding-right: 15px;
  margin-top: 0px;
}
.shortcode-product.top-right .owl-theme .owl-controls .owl-buttons div.owl-prev,
.trending-product.top-right .owl-theme .owl-controls .owl-buttons div.owl-prev {
  margin-left: 0px;
  top: -85px;
  left: auto;
  right: 56px;
}
.shortcode-product.top-right .owl-theme .owl-controls .owl-buttons div.owl-next,
.trending-product.top-right .owl-theme .owl-controls .owl-buttons div.owl-next {
  margin-right: 0px;
  top: -85px;
  right: 15px;
}
.boxed .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.boxed .trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
.boxed .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev {
  left: 24px;
}
.boxed .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.boxed .trending-product .owl-theme .owl-controls .owl-buttons div.owl-next,
.boxed .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next {
  right: 24px;
}
.product-style-two .owl-theme .owl-controls,
.product-style-three .owl-theme .owl-controls {
  top: 23%;
  padding-left: 30px;
  padding-right: 30px;
}
.product-style-two .product-listing.woocommerce .product-thumb-secondary::before,
.product-style-three .product-listing.woocommerce .product-thumb-secondary::before {
  margin: 5px;
}
.product-listing.woocommerce .product-item-inner.second-style {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
.product-listing.woocommerce .product-item-inner.second-style .product-thumb {
  max-width: 110px;
  height: auto;
  float: left;
  margin-bottom: 0px;
  margin-right: 20px;
}
.product-listing.woocommerce .product-item-inner.second-style .product-name,
.product-listing.woocommerce .product-item-inner.second-style span.price {
  text-align: left;
}
.product-listing.woocommerce .product-item-inner.second-style .product-button {
  padding-bottom: 14px;
}
.product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
.product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
.product-style-two .product-listing.woocommerce .compare.button,
.product-style-three .product-listing.woocommerce .compare.button {
  position: absolute;
  bottom: 25px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  line-height: 34px;
}
.product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
.product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist {
  left: 208px;
  width: 34px;
}
.product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
.product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block {
  bottom: 28px;
}
.product-style-two .product-listing.woocommerce .compare.button,
.product-style-three .product-listing.woocommerce .compare.button {
  display: block;
  left: 166px;
}
.product-style-two .product-listing.woocommerce .yith-wcwl-add-button .delete_item:before,
.product-style-three .product-listing.woocommerce .yith-wcwl-add-button .delete_item:before,
.product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block > a:before,
.product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block > a:before,
.product-style-two .product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a::before,
.product-style-three .product-listing.woocommerce .yith-wcwl-wishlistaddedbrowse > a::before,
.product-style-two .product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a::before,
.product-style-three .product-listing.woocommerce .yith-wcwl-wishlistexistsbrowse > a::before {
  width: 34px;
  height: 34px;
  line-height: 34px;
}
.product-style-two .product-listing.woocommerce .compare.button:before,
.product-style-three .product-listing.woocommerce .compare.button:before,
.product-style-two .product-listing.woocommerce .add_to_cart_button,
.product-style-three .product-listing.woocommerce .add_to_cart_button,
.product-style-two .product-listing.woocommerce .product_type_simple,
.product-style-three .product-listing.woocommerce .product_type_simple,
.product-style-two .product-listing.woocommerce .product_type_external,
.product-style-three .product-listing.woocommerce .product_type_external,
.product-style-two .product-listing.woocommerce .product_type_grouped,
.product-style-three .product-listing.woocommerce .product_type_grouped,
.product-style-two .product-listing.woocommerce .product_type_variable,
.product-style-three .product-listing.woocommerce .product_type_variable,
.product-style-two .product-listing.woocommerce .add_to_wishlist:before,
.product-style-three .product-listing.woocommerce .add_to_wishlist:before {
  background-color: #f5f5f5;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: none;
}
.product-style-two .product-listing.woocommerce .add_to_wishlist:hover:before,
.product-style-three .product-listing.woocommerce .add_to_wishlist:hover:before,
.product-style-two .product-listing.woocommerce .compare.button:hover:before,
.product-style-three .product-listing.woocommerce .compare.button:hover:before,
.product-style-two .product-listing.woocommerce .add_to_cart_button:hover,
.product-style-three .product-listing.woocommerce .add_to_cart_button:hover,
.product-style-two .product-listing.woocommerce .product_type_simple:hover,
.product-style-three .product-listing.woocommerce .product_type_simple:hover,
.product-style-two .product-listing.woocommerce .product_type_external:hover,
.product-style-three .product-listing.woocommerce .product_type_external:hover,
.product-style-two .product-listing.woocommerce .product_type_grouped:hover,
.product-style-three .product-listing.woocommerce .product_type_grouped:hover,
.product-style-two .product-listing.woocommerce .product_type_variable:hover,
.product-style-three .product-listing.woocommerce .product_type_variable:hover {
  background-color: #e5b219;
}
.product-style-two .product-listing.woocommerce .add_cart_button_wrap,
.product-style-three .product-listing.woocommerce .add_cart_button_wrap {
  display: inline-block;
}
.product-style-two .product-listing.woocommerce .product_type_variable,
.product-style-three .product-listing.woocommerce .product_type_variable,
.product-style-two .product-listing.woocommerce .add_to_cart_button,
.product-style-three .product-listing.woocommerce .add_to_cart_button,
.product-style-two .product-listing.woocommerce .product_type_simple,
.product-style-three .product-listing.woocommerce .product_type_simple,
.product-style-two .product-listing.woocommerce .product_type_external,
.product-style-three .product-listing.woocommerce .product_type_external,
.product-style-two .product-listing.woocommerce .product_type_grouped,
.product-style-three .product-listing.woocommerce .product_type_grouped,
.product-style-two .product-listing.woocommerce .added_to_cart.wc-forward,
.product-style-three .product-listing.woocommerce .added_to_cart.wc-forward {
  left: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.product-style-two .product-listing.woocommerce .added_to_cart.wc-forward,
.product-style-three .product-listing.woocommerce .added_to_cart.wc-forward {
  font-size: 0;
  width: 34px;
  height: 34px;
  line-height: 12px;
}
.product-style-two .product-listing.woocommerce .add_cart_button_wrap,
.product-style-three .product-listing.woocommerce .add_cart_button_wrap {
  font-size: 0px;
  width: 34px;
  height: 34px;
  padding: 0px;
  line-height: 34px;
  position: absolute;
  bottom: 30px;
  left: 130px;
}
.product-style-two .product-listing.woocommerce .product_type_variable:before,
.product-style-three .product-listing.woocommerce .product_type_variable:before,
.product-style-two .product-listing.woocommerce .add_to_cart_button:before,
.product-style-three .product-listing.woocommerce .add_to_cart_button:before,
.product-style-two .product-listing.woocommerce .product_type_simple:before,
.product-style-three .product-listing.woocommerce .product_type_simple:before,
.product-style-two .product-listing.woocommerce .product_type_external:before,
.product-style-three .product-listing.woocommerce .product_type_external:before,
.product-style-two .product-listing.woocommerce .product_type_grouped:before,
.product-style-three .product-listing.woocommerce .product_type_grouped:before {
  content: '\e66e';
  font-size: 17px;
  font-family: 'Pe-icon-7-stroke';
  display: block;
  text-align: center;
}
.product-style-two .product-listing.woocommerce .add_to_cart_button.product_type_variable:before,
.product-style-three .product-listing.woocommerce .add_to_cart_button.product_type_variable:before {
  content: '\e636';
  font-size: 17px;
  font-family: 'Pe-icon-7-stroke';
}
.product-style-two .product-listing.woocommerce .added_to_cart.wc-forward:before,
.product-style-three .product-listing.woocommerce .added_to_cart.wc-forward:before {
  content: '\f07a';
  font-size: 17px;
  font-family: 'fontawesome';
}
.product-style-two .product-listing.woocommerce .on-new,
.product-style-three .product-listing.woocommerce .on-new,
.product-style-two .product-listing.woocommerce .on-sale,
.product-style-three .product-listing.woocommerce .on-sale {
  line-height: 38px;
  font-size: 11px;
  width: 38px;
  height: 38px;
}
.product-style-two .product-listing.woocommerce .product-deal-countdown,
.product-style-three .product-listing.woocommerce .product-deal-countdown {
  display: none;
}
.product-style-two .product-item-wrapper:hover .product_type_variable,
.product-style-three .product-item-wrapper:hover .product_type_variable,
.product-style-two .product-item-wrapper:hover .add_to_cart_button,
.product-style-three .product-item-wrapper:hover .add_to_cart_button,
.product-style-two .product-item-wrapper:hover .product_type_simple,
.product-style-three .product-item-wrapper:hover .product_type_simple,
.product-style-two .product-item-wrapper:hover .product_type_external,
.product-style-three .product-item-wrapper:hover .product_type_external,
.product-style-two .product-item-wrapper:hover .product_type_grouped,
.product-style-three .product-item-wrapper:hover .product_type_grouped,
.product-style-two .product-item-wrapper:hover .added_to_cart.wc-forward,
.product-style-three .product-item-wrapper:hover .added_to_cart.wc-forward {
  border: none !important;
}
.product-style-two .product-item-wrapper:hover .product_type_variable,
.product-style-three .product-item-wrapper:hover .product_type_variable,
.product-style-two .product-item-wrapper:hover .add_to_cart_button,
.product-style-three .product-item-wrapper:hover .add_to_cart_button,
.product-style-two .product-item-wrapper:hover .product_type_simple,
.product-style-three .product-item-wrapper:hover .product_type_simple,
.product-style-two .product-item-wrapper:hover .product_type_external,
.product-style-three .product-item-wrapper:hover .product_type_external,
.product-style-two .product-item-wrapper:hover .product_type_grouped,
.product-style-three .product-item-wrapper:hover .product_type_grouped,
.product-style-two .product-item-wrapper:hover .added_to_cart.wc-forward,
.product-style-three .product-item-wrapper:hover .added_to_cart.wc-forward {
  background-color: #eee;
}
.product-style-two .product-listing.woocommerce .product-item-wrapper {
  padding-bottom: 30px;
}
.product-style-three .product-listing.woocommerce .product-item-wrapper {
  padding-bottom: 20px;
}
.woocommerce .item-not-found {
  text-transform: uppercase;
  text-align: center;
}
.title-shortcode {
  padding-left: 15px;
  padding-bottom: 20px;
  padding-top: 30px;
}
.title-shortcode h2 {
  font-size: 16px;
  font-family: Montserrat;
  text-transform: uppercase;
  display: inline-block;
  line-height: 2;
  border-bottom: solid 1px #666666;
  font-weight: bold;
  letter-spacing: 1px;
  color: #666666;
}
.product-style-three .title-shortcode {
  padding-bottom: 0px;
  padding-top: 0px;
}
.product-style-one .title-shortcode h2 {
  font-size: 24px;
}
.border-title-full .title-shortcode {
  padding-top: 0px;
  padding-bottom: 0px;
}
.border-title-full .title-shortcode h2 {
  font-size: 20px;
  display: block;
  margin-bottom: 30px;
}
.shortcode-product.border-title-full .owl-theme .owl-controls .owl-buttons div.owl-prev,
.shortcode-product.border-title-full .owl-theme .owl-controls .owl-buttons div.owl-next {
  height: 26px;
  width: 26px;
  line-height: 22px;
  padding: 3px 6px;
  top: -70px;
}
.shortcode-product.border-title-full .owl-theme .owl-controls .owl-buttons div.owl-prev i,
.shortcode-product.border-title-full .owl-theme .owl-controls .owl-buttons div.owl-next i {
  font-size: 16px;
}
.shortcode-product.border-title-full .owl-theme .owl-controls .owl-buttons div.owl-prev {
  right: 42px;
}
.woocommerce.product-style-three {
  margin-left: -15px;
}
.woocommerce.product-style-three .star-rating {
  height: 16px;
  width: 100%;
}
.woocommerce.product-style-three .star-rating span:before {
  color: #ffd24d;
}
.woocommerce.product-style-three .product-listing.woocommerce div.product span.price {
  margin-bottom: 10px;
}
.woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-name {
  margin-bottom: 4px;
}
.woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-thumb {
  max-width: 80px;
}
.woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info {
  padding-left: 104px;
}
.product-style-one .title-shortcode,
.trending-product.top-right .title-shortcode {
  padding-left: 0px;
}
.product-listing.woocommerce.product-slider .product-name a:hover,
.product-style-two .product-listing.woocommerce .product-name a:hover,
.product-style-three .product-listing.woocommerce .product-name a:hover {
  text-decoration: none;
  color: #e5b219;
}
.product-listing.woocommerce.product-slider .price .amount,
.product-style-two .product-listing.woocommerce .price .amount,
.product-style-three .product-listing.woocommerce .price .amount {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}
/*
  Shortcode product categories
*/
.shortcode-product-categories .product-listing {
  margin-left: -10px;
  margin-right: -10px;
}
.shortcode-product-categories li.product-category {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}
.shortcode-product-categories h6 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}
.shortcode-product-categories h6.category-title {
  font-weight: 400;
  margin-bottom: 14px;
  padding-top: 20px;
}
.shortcode-product-categories h6.category-items {
  color: #AAAAAA;
}
.shortcode-product-categories a:hover {
  text-decoration: none;
  color: #e5b219;
}
.shortcode-product-categories a:hover h6.category-title {
  color: #e5b219;
}
.shortcode-product-categories .entry-hover-wrapper,
.shortcode-product-categories .entry-hover-inner {
  height: 100%;
}
.shortcode-product-categories .entry-hover-wrapper .entry-hover-inner i {
  position: absolute;
  top: 46%;
  left: 46%;
  font-size: 22px;
  font-weight: 600;
}
.shortcode-product-categories .entry-thumbnail .entry-thumbnail-hover {
  background-color: rgba(255, 255, 255, 0.8);
  border: solid 10px #dedede;
}
.shortcode-product-categories .col-5,
.shortcode-product-categories .product-slider .product-category {
  padding-left: 15px;
  padding-right: 15px;
}
/*
trending product
*/
.trending-product {
  position: relative;
  min-height: 637px;
}
.trending-product .tabs {
  text-align: center;
}
.trending-product .tabs ul {
  list-style: none;
  display: inline-block;
  margin-bottom: 30px;
}
.trending-product .tabs ul li {
  float: left;
  margin-left: 25px;
  margin-right: 25px;
  position: relative;
}
.trending-product .tabs ul li a {
  font-weight: bold;
  text-transform: uppercase;
  line-height: 2;
  color: #666666;
  text-decoration: none;
  font-family: Montserrat;
  font-size: 14px;
  letter-spacing: 1px;
}
.trending-product .tabs ul li a.active,
.trending-product .tabs ul li a:hover {
  color: #e5b219;
}
.trending-product .tabs ul li a:before {
  position: absolute;
  content: "";
  height: 1px;
  display: inline-block;
  background-color: #e5b219;
  width: 0%;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.trending-product .tabs ul li.active a:before,
.trending-product .tabs ul li:hover a:before {
  width: 100%;
}
.trending-product .trending-group {
  display: none;
}
.trending-product .trending-group.active {
  display: block;
}
.col-5 {
  width: 20%;
  float: left;
}
.product-style-four img {
  width: 100%;
}
.product-style-four .product-listing {
  margin-left: 0;
  margin-right: 0;
}
.product-style-four .product-listing.woocommerce .product-link {
  z-index: -1;
}
.product-style-four.hide-countdown .product-listing.woocommerce .product-deal-countdown {
  display: none;
}
.product-style-four.hide-button .compare.button {
  display: none;
}
.product-style-four .woocommerce .star-rating span::before {
  color: #ffd24d;
}
.product-style-four .product-listing.woocommerce .product-item-inner {
  max-width: 100%;
  position: relative;
}
.product-style-four .product-deal-countdown {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.product-style-four .product-listing.woocommerce .product-item-wrapper {
  padding-bottom: 0;
}
.product-style-four .product-listing.woocommerce .product-thumb {
  margin-bottom: 0;
}
.product-style-four .product-listing.woocommerce .product-thumb:hover .product-entry {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.product-style-four .product-listing.woocommerce .product-thumb:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.product-style-four .product-listing.woocommerce .product-thumb:hover .button.add_to_cart_button,
.product-style-four .product-listing.woocommerce .product-thumb:hover .button.product_type_simple,
.product-style-four .product-listing.woocommerce .product-thumb:hover .button.product_type_external,
.product-style-four .product-listing.woocommerce .product-thumb:hover .button.product_type_grouped {
  background-color: #e5b219;
  border-color: #e5b219;
  color: #fff;
}
.product-style-four .product-listing.woocommerce .product-thumb:hover .product-deal-countdown {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.product-style-four img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.product-style-four .product-entry {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  height: 100%;
  padding-top: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.product-style-four .product-entry .entry-wrap {
  position: absolute;
  width: 100%;
  height: 55%;
  bottom: 0;
}
.product-style-four .product-entry .entry-inner {
  position: relative;
  height: 100%;
}
.product-style-four .product-entry .product-button {
  position: absolute;
  bottom: 50px;
  width: 100%;
}
.product-style-four .product-entry .product-name {
  color: #fff;
  text-transform: uppercase;
}
.product-style-four .product-listing.woocommerce .product-item-wrapper:nth-child(2n+1),
.product-style-four .product-listing.woocommerce .first {
  clear: none;
}
@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .col-5 {
    width: 25%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1365px) {
  .col-5 {
    width: 33.33334%;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1024px) {
  .col-5 {
    width: 33.333334%;
  }
}
@media only screen and (max-width: 992px) {
  .col-5 {
    width: 33.333334%;
  }
  .product-style-four .product-entry .product-button {
    bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .product-listing.woocommerce .product-item-inner.second-style span.price {
    text-align: center;
  }
  .product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-two .product-listing.woocommerce .compare.button,
  .product-style-three .product-listing.woocommerce .compare.button {
    bottom: -15px;
  }
  .product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist {
    left: 76px;
    bottom: -54px;
  }
  .product-style-two .product-listing.woocommerce .compare.button,
  .product-style-three .product-listing.woocommerce .compare.button {
    left: 114px;
  }
  .product-style-two .product-listing.woocommerce .product_type_variable,
  .product-style-three .product-listing.woocommerce .product_type_variable,
  .product-style-two .product-listing.woocommerce .add_to_cart_button,
  .product-style-three .product-listing.woocommerce .add_to_cart_button,
  .product-style-two .product-listing.woocommerce .product_type_simple,
  .product-style-three .product-listing.woocommerce .product_type_simple,
  .product-style-two .product-listing.woocommerce .product_type_external,
  .product-style-three .product-listing.woocommerce .product_type_external,
  .product-style-two .product-listing.woocommerce .product_type_grouped,
  .product-style-three .product-listing.woocommerce .product_type_grouped,
  .product-style-two .product-listing.woocommerce .added_to_cart.wc-forward,
  .product-style-three .product-listing.woocommerce .added_to_cart.wc-forward {
    bottom: -10px;
    left: 36px;
  }
  .product-listing.woocommerce .product-item-inner.second-style {
    padding-left: 0px;
    padding-right: 15px;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-thumb {
    max-width: 200px;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-thumb img {
    width: 200px;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-info {
    float: left;
    padding-top: 10px;
    text-align: center;
    width: 100%;
    padding-left: 10px;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-info .product-name {
    text-align: center;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-info .price {
    padding-top: 10px;
  }
  .product-listing.woocommerce .product-item-inner.second-style .product-info .price del {
    display: none;
  }
  .zorka-padding-10 .product-listing.woocommerce .product-item-inner.second-style,
  .zorka-padding-15 .product-listing.woocommerce .product-item-inner.second-style,
  .zorka-padding-20 .product-listing.woocommerce .product-item-inner.second-style {
    padding-left: 10px;
    padding-right: 5px;
  }
  .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
  .trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
  .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: -5px;
  }
  .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next,
  .trending-product .owl-theme .owl-controls .owl-buttons div.owl-next,
  .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next {
    right: -5px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner {
    padding-left: 30px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-thumb {
    max-width: 158px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info {
    float: left;
    width: 158px;
    margin-top: 10px;
    padding-left: 0px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info .product-name,
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info .price {
    text-align: center;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info .star-rating {
    left: 25%;
  }
}
@media only screen and (max-width: 768px) {
  .trending-product .tabs ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .col-5 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  /*  .product-style-two, .product-style-three{
    .product-listing.woocommerce{
      .yith-wcwl-add-to-wishlist{
        right: 80px;
      }
      .compare.button{
        right: 46px;
      }
      .add_to_cart_button,
      .added_to_cart.wc-forward
      {
        right: 120px;
      }
    }
  }*/
  .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
  .trending-product .owl-theme .owl-controls .owl-buttons div.owl-prev,
  .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-prev {
    left: 22px;
  }
  .shortcode-product .owl-theme .owl-controls .owl-buttons div.owl-next,
  .trending-product .owl-theme .owl-controls .owl-buttons div.owl-next,
  .shortcode-product-categories .owl-theme .owl-controls .owl-buttons div.owl-next {
    right: 22px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner {
    padding-left: 30px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-thumb {
    max-width: 150px;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-info {
    float: left;
    width: 158px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 400px) {
  .trending-product .tabs ul {
    padding-left: 0px;
  }
  .trending-product .tabs ul li {
    float: none;
  }
  .woocommerce.product-style-three .product-listing.woocommerce .product-item-inner .product-thumb {
    max-width: 80px;
  }
  .product-style-two .product-listing.woocommerce .product-item-inner.second-style .product-thumb {
    float: none;
    max-width: 100%;
    width: 100%;
  }
  .product-style-two .product-listing.woocommerce .product-item-inner.second-style .product-info {
    padding-top: 20px;
  }
  .product-style-two .product-listing.woocommerce .product-item-inner.second-style .product-name,
  .product-style-two .product-listing.woocommerce .product-item-inner.second-style span.price {
    text-align: center;
  }
  .product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-two .product-listing.woocommerce .compare.button,
  .product-style-three .product-listing.woocommerce .compare.button {
    position: relative;
    left: 0;
    bottom: 0;
    top: 0;
    display: inline-block;
  }
  .product-style-two .product-listing.woocommerce .add_cart_button_wrap,
  .product-style-three .product-listing.woocommerce .add_cart_button_wrap {
    position: relative;
    top: 4px;
    bottom: 0;
    left: 0;
    display: inline-block;
  }
  .product-style-two .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-three .product-listing.woocommerce .yith-add-to-wishlist-button-block,
  .product-style-two .product-listing.woocommerce .yith-wcwl-add-to-wishlist,
  .product-style-three .product-listing.woocommerce .yith-wcwl-add-to-wishlist {
    bottom: 0;
    left: 0;
    display: inline-block;
  }
}
/**
 * 10.13 - Latest Post
 * ----------------------------------------------------------------------------
 */
.zorka-latest-post.style1 .zorka-latest-post-image {
  float: left;
  width: 230px;
  height: 170px;
  overflow: hidden;
  margin-right: 20px;
}
.zorka-latest-post.style1 .zorka-latest-post-content {
  overflow: hidden;
  position: relative;
}
.zorka-latest-post.style1 .zorka-latest-post-content span.zorka-latest-post-meta {
  background-color: #F5F5F5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  padding: 2px 10px;
  margin: 3px 0 9px;
}
.zorka-latest-post.style1 .zorka-latest-post-content span.zorka-latest-post-meta a {
  color: #AAAAAA;
}
.zorka-latest-post.style1 .zorka-latest-post-content span.zorka-latest-post-meta:hover {
  background-color: #e5b219;
}
.zorka-latest-post.style1 .zorka-latest-post-content span.zorka-latest-post-meta:hover a {
  color: #ffffff;
  text-decoration: none;
}
.zorka-latest-post.style1 .zorka-latest-post-content .zorka-latest-post-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0.25px;
  color: #202020;
}
.zorka-latest-post.style1 .zorka-latest-post-content .zorka-latest-post-title:hover {
  color: #e5b219;
  text-decoration: none;
}
.zorka-latest-post.style1 .zorka-latest-post-content p {
  margin-bottom: 10px;
  height: 4.6em;
  overflow: hidden;
}
.zorka-latest-post.style1 .zorka-latest-post-content > a.zorka-latest-post-read-more {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #e5b219;
  letter-spacing: 1px;
  font-family: Montserrat;
}
.zorka-latest-post.style1 .latest-post-item {
  margin-bottom: 60px;
}
.zorka-latest-post.style2 > h2 {
  font-size: 20px;
  font-family: Montserrat;
  font-weight: 400;
  text-align: left;
  color: #25282c;
  border-bottom: 1px solid #222222;
  margin-bottom: 30px;
  padding-bottom: 5px;
}
.zorka-latest-post.style2 .zorka-latest-post-image {
  float: left;
  width: 100px;
  margin-right: 20px;
}
.zorka-latest-post.style2 .zorka-latest-post-content {
  overflow: hidden;
  position: relative;
}
.zorka-latest-post.style2 .zorka-latest-post-content .zorka-latest-post-title {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 4px;
  color: #25282c;
  text-transform: none;
}
.zorka-latest-post.style2 .zorka-latest-post-content .zorka-latest-post-title:hover {
  color: #e5b219;
  text-decoration: none;
}
.zorka-latest-post.style2 .zorka-latest-post-content > a.zorka-latest-post-read-more {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: #e5b219;
  font-family: Montserrat;
}
.zorka-latest-post.style2 .latest-post-item {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .zorka-latest-post.style1 .latest-post-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .zorka-latest-post.style1 {
    text-align: center;
  }
  .zorka-latest-post.style1 .zorka-latest-post-image {
    float: none !important;
    margin-right: auto !important;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .zorka-latest-post.style2 {
    text-align: center;
  }
  .zorka-latest-post.style2 .zorka-latest-post-image {
    float: none !important;
    margin-right: auto !important;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
/**
 * 10.14 - Parallax Sections
 * ----------------------------------------------------------------------------
 */
.zorka-parallax_sections {
  height: 800px;
  width: 100%;
  text-align: center;
}
.zorka-parallax_sections a {
  margin: 0 4px;
}
.zorka-parallax_sections h2,
.zorka-parallax_sections p {
  color: #ffffff;
}
.zorka-parallax_sections.style1 h2 {
  font-size: 100px;
  font-weight: bold;
  font-family: Montserrat;
}
.zorka-parallax_sections.style1 p {
  font-size: 22px;
  font-style: italic;
  padding-bottom: 20px;
}
.zorka-parallax_sections.style2 h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: Montserrat;
  letter-spacing: 6px;
}
.zorka-parallax_sections.style2 p {
  font-size: 22px;
  font-style: italic;
  padding-bottom: 20px;
  padding-top: 12px;
}
.zorka-parallax_sections.style2 i {
  color: #ffffff;
  font-size: 100px;
  margin-bottom: 35px;
}
.zorka-parallax_sections.style3 h2 {
  font-size: 60px;
  font-family: Montserrat;
  font-weight: bold;
  padding-bottom: 16px;
  letter-spacing: 3px;
}
.zorka-parallax_sections.style3 p {
  font-size: 20px;
  font-style: italic;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .zorka-parallax_sections.style1 {
    height: 600px;
  }
  .zorka-parallax_sections.style1 h2 {
    font-size: 55px !important;
  }
  .zorka-parallax_sections.style1 p {
    font-size: 18px !important;
  }
  .zorka-parallax_sections.style2 {
    height: 600px;
  }
  .zorka-parallax_sections.style2 h2 {
    font-size: 28px !important;
  }
  .zorka-parallax_sections.style2 p {
    font-size: 16px !important;
  }
  .zorka-parallax_sections.style3 {
    height: 600px;
  }
  .zorka-parallax_sections.style3 h2 {
    font-size: 36px !important;
  }
  .zorka-parallax_sections.style3 p {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 480px) {
  .zorka-parallax_sections.style1 {
    height: 550px;
  }
  .zorka-parallax_sections.style1 h2 {
    font-size: 40px !important;
  }
  .zorka-parallax_sections.style1 p {
    font-size: 16px !important;
  }
  .zorka-parallax_sections.style2 {
    height: 550px;
  }
  .zorka-parallax_sections.style2 h2 {
    font-size: 22px !important;
  }
  .zorka-parallax_sections.style2 p {
    font-size: 14px !important;
  }
  .zorka-parallax_sections.style3 {
    height: 550px;
  }
  .zorka-parallax_sections.style3 h2 {
    font-size: 32px !important;
  }
  .zorka-parallax_sections.style3 p {
    font-size: 16px !important;
  }
}
/**
 * 11.0 - Core Menu
 * ----------------------------------------------------------------------------
 */
@media screen and (min-width: 992px) {
  ul.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    color: #25292c;
  }
  ul.main-menu li {
    position: relative;
    min-width: 180px;
  }
  ul.main-menu li > a {
    display: inline-block;
    vertical-align: middle;
  }
  ul.main-menu ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    right: auto;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    border-top: solid 1px #eee;
    visibility: hidden;
    height: 0;
    opacity: 0;
    -webkit-box-shadow: 0px 4px 5px -2px #777777;
    -moz-box-shadow: 0px 4px 5px -2px #777777;
    box-shadow: 0px 4px 5px -2px #777777;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  ul.main-menu ul.sub-menu li.menu-item {
    padding: 0;
    margin: 0;
    display: block;
  }
  ul.main-menu ul.sub-menu li.menu-item.menu-item-has-children:after {
    content: "\203A";
    font-family: monospace, tahoma;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 1.3em;
    position: absolute;
    right: 10px;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 15px;
    line-height: 15px;
  }
  ul.main-menu ul.sub-menu li.menu-item > a {
    padding: 8px 15px;
    white-space: nowrap;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.main-menu ul.sub-menu li.menu-item > a:hover {
    margin-left: 10px;
  }
  ul.main-menu > li.menu-item {
    display: inline-block;
    vertical-align: middle;
    min-width: 0;
  }
  ul.main-menu > li.menu-item + li.menu-item {
    margin-left: 30px;
  }
  ul.main-menu > li.menu-item > a {
    padding: 15px 0;
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
  }
  ul.main-menu > li.menu-item > a:before {
    content: "";
    display: block;
    width: 0%;
    border-top: solid 1px #222;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    bottom: 12px;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
  ul.main-menu > li.menu-item.current-page-ancestor > a,
  ul.main-menu > li.menu-item.current_page_parent > a,
  ul.main-menu > li.menu-item.current-menu-item > a,
  ul.main-menu > li.menu-item.menu-item:hover > a {
    color: #25292c;
  }
  ul.main-menu > li.menu-item.current-page-ancestor > a:before,
  ul.main-menu > li.menu-item.current_page_parent > a:before,
  ul.main-menu > li.menu-item.current-menu-item > a:before,
  ul.main-menu > li.menu-item.menu-item:hover > a:before {
    width: 100%;
  }
  ul.main-menu > li.menu-item > ul.sub-menu {
    top: 100%;
    left: 0;
  }
  ul.main-menu > li.menu-item.menu-item-has-children:after {
    content: "\203A";
    font-family: monospace, tahoma;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 1.3em;
  }
  ul.main-menu li.menu-item:hover > ul.sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
  }
  ul.main-menu li.current-page-ancestor > a,
  ul.main-menu li.current_page_parent > a,
  ul.main-menu li.current-menu-item > a,
  ul.main-menu li.menu-item > a:hover {
    color: #e5b219;
  }
  .nav-menu-toggle-wrapper {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .nav-menu-toggle-wrapper {
    background: #000;
    color: #fff;
    display: block;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon {
    background: none repeat scroll 0 0 #000;
    display: inline-block;
    height: 30px;
    position: relative;
    vertical-align: middle;
    width: 30px;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon > span {
    background: none repeat scroll 0 0 #fff;
    bottom: 0;
    display: block;
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 70%;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon > span:after,
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon > span:before {
    background: none repeat scroll 0 0 #fff;
    bottom: auto;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon > span:before {
    top: 7px;
    transform-origin: 0px 1px;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner .nav-menu-toggle-icon > span:after {
    top: -7px;
    transform-origin: 1px 0;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner + span {
    vertical-align: middle;
    text-transform: uppercase;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner.in .nav-menu-toggle-icon > span {
    background: transparent;
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner.in .nav-menu-toggle-icon > span:before {
    transform: rotate(-45deg);
  }
  .nav-menu-toggle-wrapper .nav-menu-toggle-inner.in .nav-menu-toggle-icon > span:after {
    transform: rotate(45deg);
  }
  ul.main-menu,
  ul.left-menu {
    display: none;
    padding: 0 15px;
    margin: 0;
    background: #222;
    list-style: none;
  }
  ul.main-menu ul.sub-menu,
  ul.left-menu ul.sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    padding-left: 20px;
    margin: 0;
    background: transparent;
  }
  ul.main-menu li.menu-item,
  ul.left-menu li.menu-item {
    padding: 0;
  }
  ul.main-menu li.menu-item > a,
  ul.left-menu li.menu-item > a {
    display: block;
    padding: 10px 0;
    outline: none;
    border-bottom: solid 1px #333;
    color: #fff;
    position: relative;
  }
  ul.main-menu li.menu-item > a:hover,
  ul.left-menu li.menu-item > a:hover {
    color: #e5b219;
  }
  ul.main-menu li.menu-item.menu-item-has-children > a > b.g-caret,
  ul.left-menu li.menu-item.menu-item-has-children > a > b.g-caret {
    display: inline-block;
    color: #666;
    height: 24px;
    width: 24px;
    line-height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-align: right;
    z-index: 1;
  }
  ul.main-menu li.menu-item.menu-item-has-children > a > b.g-caret:after,
  ul.left-menu li.menu-item.menu-item-has-children > a > b.g-caret:after {
    content: "\203A";
    font-family: monospace, tahoma;
    font-size: 17px;
    line-height: 24px;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.main-menu li.menu-item.menu-item-has-children.in > a > b.g-caret:after,
  ul.left-menu li.menu-item.menu-item-has-children.in > a > b.g-caret:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
/**
 * 12.0 - Blocks
 * ----------------------------------------------------------------------------
 */
ul.wp-block-gallery {
  padding: 0;
}
.wp-block-quote:not(.is-large):not(.is-style-large) {
  border-color: #e5b219;
}
.wp-block-pullquote blockquote:not(.is-large):not(.is-style-large) {
  padding: 0;
  border-left: none;
}
.wp-block-quote.is-style-large,
.wp-block-quote.is-large {
  font-size: 20px;
  border-left: solid 5px #e5b219;
}
.wp-block-cover-image,
.wp-block-cover {
  margin-bottom: 20px;
  color: #f8f9f9;
}
.wp-block-cover-image p,
.wp-block-cover p {
  margin-bottom: 0;
  line-height: 1.25;
}
.wp-block-cover-image a,
.wp-block-cover a {
  color: inherit;
}
.wp-block-embed {
  margin: 0 0 20px;
}
.wp-block-button {
  margin-bottom: 20px;
}
.wp-block-gallery {
  margin-bottom: 20px;
}
.blocks-gallery-caption {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.blocks-gallery-grid {
  margin-bottom: -16px;
}
.wp-block-columns {
  margin-bottom: 20px;
}
.wp-block-categories select,
.wp-block-archives select {
  width: 100%;
  max-width: 100%;
}
.wp-block-page-list,
.wp-block-archives,
.wp-block-categories {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.wp-block-page-list li,
.wp-block-archives li,
.wp-block-categories li {
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #666666;
  font-size: 13px;
  font-weight: 600;
}
.wp-block-page-list li:hover,
.wp-block-archives li:hover,
.wp-block-categories li:hover {
  color: #e5b219;
}
.wp-block-page-list li:hover > ul,
.wp-block-archives li:hover > ul,
.wp-block-categories li:hover > ul {
  color: #666666;
}
.wp-block-page-list li .show_count,
.wp-block-archives li .show_count,
.wp-block-categories li .show_count {
  float: right;
}
.wp-block-page-list li a,
.wp-block-archives li a,
.wp-block-categories li a {
  color: inherit;
}
.wp-block-page-list li a:hover,
.wp-block-archives li a:hover,
.wp-block-categories li a:hover {
  text-decoration: none;
}
.wp-block-latest-comments {
  list-style: none;
  padding-left: 0;
  overflow: auto;
  margin-bottom: 20px;
}
.wp-block-latest-comments li + li {
  margin-top: 10px;
  border-top: 1px solid #dddddd;
}
.wp-block-latest-comments a {
  color: inherit;
}
.wp-block-latest-comments a:hover {
  text-decoration: none;
}
.wp-block-latest-comments li {
  padding-top: 10px;
  margin-bottom: 10px;
  line-height: 1.8;
  position: relative;
  padding-left: 50px;
  color: #212121;
}
.wp-block-latest-comments li:before {
  content: "\e668";
  font-family: "Pe-icon-7-stroke";
  position: absolute;
  left: 5px;
  top: 15px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 27px;
  -webkit-font-smoothing: antialiased;
}
.wp-block-latest-posts {
  list-style: none;
  padding-left: 0;
  overflow: auto;
  margin-bottom: 20px;
}
.wp-block-latest-posts li a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}
.wp-block-latest-posts li a:hover {
  color: #e5b219;
}
.wp-block-latest-posts.has-dates li + li {
  margin-top: 15px;
}
.wc-block-product-search form,
.wp-block-search {
  margin-bottom: 20px;
  position: relative;
}
.wc-block-product-search form label,
.wp-block-search label {
  display: none;
}
.wc-block-product-search form input[type="search"],
.wp-block-search input[type="search"] {
  width: 100%;
  padding: 0 15px;
}
.wc-block-product-search form button[type="submit"],
.wp-block-search button[type="submit"] {
  position: absolute;
  right: 15px;
  top: 5px;
  background: none;
  border: none;
  padding: 0;
  font-size: 0;
  margin: 0;
  display: block;
}
.wc-block-product-search form button[type="submit"]:after,
.wp-block-search button[type="submit"]:after {
  font-family: 'Pe-icon-7-stroke';
  content: "\e618";
  font-size: 20px;
}
.wc-block-product-search form button[type="submit"] svg,
.wp-block-search button[type="submit"] svg {
  display: none;
}
.wc-block-product-search form .wp-block-search__input,
.wp-block-search .wp-block-search__input {
  border: none;
}
.wp-block-tag-cloud a {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: inline-block;
  text-transform: uppercase;
  padding: 8px 10px;
  margin-bottom: 5px;
  color: #777777;
  background-color: #f5f5f5;
  font-size: 11px !important;
  line-height: 1.2;
  font-family: Montserrat;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.wp-block-tag-cloud a:hover {
  background: #e5b219;
  color: #FFFFFF;
  text-decoration: none;
}
.wp-block-tag-cloud a + a {
  margin-left: 1px;
}
.wp-block-rss {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.wp-block-rss a {
  color: inherit;
}
.wp-block-rss li + li {
  margin-top: 15px;
}
.wp-block-media-text,
.wp-block-group.has-background,
.wp-block-group {
  margin-bottom: 20px;
}
.wp-block-table th,
.wp-block-table td {
  border-color: #dddddd;
}
body {
  font-family: Lato;
  font-size: 14px;
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Montserrat;
}
h1 {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
h5 {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
h6 {
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}
.main-footer .zorka-search-form input {
  background-color: #ffffff;
}
.zorka-mailchimp input[type="submit"] {
  margin: 24px 0 0 0;
}
.zorka-call-action.style3 p {
  font-size: 20px !important;
}
