/*
Theme Name:Marketica
Theme URI:http://www.toko.press
Author:TokoPress
Author URI:http://www.toko.press
Description:The Best Marketplace Themes For WordPress and WooCommerce.
Version:2.0.1
License:GPL License
License URI:license.txt
Tags:one-column, two-columns, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Vendor
	2.1 Slidebars
	2.2 OwlCarousel
3.0 Global
4.0 Header
5.0 Content
6.0 Comments
7.0 Widgets
8.0 Footer
9.0 WooCommerce
10.0 Plugins
	10.1 Visual Composer
	10.2 Mailchimp For WordPress
	10.3 YITH Wishlist
	10.4 WC Vendors
	10.5 Socio Multi Vendors
11.0 Visual Composer Elements
	11.1 Heading
	11.2 Features
	11.3 Divider
	11.4 Call To Action
	11.5 Image Carousel
	11.6 Plan Pricing
	11.7 Team Member
	11.8 Testimonial
	11.9 WC Featured Products
	11.10 WC Mini Products
	11.11 WC Products
	11.12 WC Search
12.0 Responsive
--------------------------------------------------------------*/
/* 1.0 NORMALIZE
-------------------------------------------------------------- */
body,
figure {
  margin: 0;
}

article, aside, details, figcaption, figure, footer,
header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: -moz-inline-stack;
  -moz-box-orient: vertical;
  display: inline-block;
  *display: inline;
  vertical-align: top;
  *zoom: 1;
}

audio:not([controls]),
[hidden] {
  display: none;
  height: 0;
}

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

img {
  border: 0;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
}

a img {
  border: none;
}

svg:not(:root) {
  overflow: hidden;
}

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

button[disabled],
input[disabled] {
  cursor: default;
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: text-bottom;
}

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

ul, ol {
  padding-left: 1.5em;
}

textarea, select, input[type="email"], input[type="password"], input[type="search"], input[type="text"], input[type="url"], input[class*="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* 2.1 SLIDEBARS
-------------------------------------------------------------- */
/* -----------------------------------
 * Slidebars
 * Version 0.10.2
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */
html, body, #sb-site, .sb-site-container, .sb-slidebar {
  /* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  /* Stops horizontal scrolling. */
}

html {
  height: 100%;
  /* Site is as tall as device. */
}

body {
  min-height: 100%;
  height: auto;
  position: relative;
  /* Required for static Slidebars to function properly. */
}

/* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
html.sb-scroll-lock.sb-active:not(.sb-static) {
  overflow: hidden;
}

/* ----------
 * 002 - Site
 */
#sb-site, .sb-site-container {
  /* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
  width: 100%;
  position: relative;
  z-index: 1;
  /* Site sits above Slidebars */
}

/* ---------------
 * 003 - Slidebars
 */
.sb-slidebar {
  height: 100%;
  overflow-y: auto;
  /* Enable vertical scrolling on Slidebars when needed. */
  position: fixed;
  top: 0;
  z-index: 0;
  /* Slidebars sit behind sb-site. */
  display: none;
  /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
  background-color: #222222;
  /* Default Slidebars background colour, overwrite this with your own css. */
  -webkit-transform: translate(0px);
  /* Fixes issues with translated and z-indexed elements on iOS 7. */
}

.sb-left {
  left: 0;
  /* Set Slidebar to the left. */
}

.sb-right {
  right: 0;
  /* Set Slidebar to the right. */
}

html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
  position: absolute;
  /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}

.sb-slidebar.sb-active {
  display: block;
  /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}

.sb-style-overlay {
  z-index: 9999;
  /* Set z-index high to ensure it overlays any other site elements. */
}

.sb-momentum-scrolling {
  -webkit-overflow-scrolling: touch;
  /* Adds native momentum scrolling for iOS & Android devices. */
}

/* Slidebar widths for browsers/devices that don't support media queries. */
.sb-slidebar {
  width: 30%;
}

.sb-width-thin {
  width: 15%;
}

.sb-width-wide {
  width: 45%;
}

@media (max-width: 480px) {
  /* Slidebar widths on extra small screens. */
  .sb-slidebar {
    width: 70%;
  }

  .sb-width-thin {
    width: 55%;
  }

  .sb-width-wide {
    width: 85%;
  }
}
@media (min-width: 481px) {
  /* Slidebar widths on small screens. */
  .sb-slidebar {
    width: 55%;
  }

  .sb-width-thin {
    width: 40%;
  }

  .sb-width-wide {
    width: 70%;
  }
}
@media (min-width: 768px) {
  /* Slidebar widths on medium screens. */
  .sb-slidebar {
    width: 40%;
  }

  .sb-width-thin {
    width: 25%;
  }

  .sb-width-wide {
    width: 55%;
  }
}
@media (min-width: 992px) {
  /* Slidebar widths on large screens. */
  .sb-slidebar {
    width: 30%;
  }

  .sb-width-thin {
    width: 15%;
  }

  .sb-width-wide {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  /* Slidebar widths on extra large screens. */
  .sb-slidebar {
    width: 20%;
  }

  .sb-width-thin {
    width: 5%;
  }

  .sb-width-wide {
    width: 35%;
  }
}
/* ---------------
 * 004 - Animation
 */
.sb-slide, #sb-site, .sb-site-container, .sb-slidebar {
  -webkit-transition: -webkit-transform 400ms ease;
  -moz-transition: -moz-transform 400ms ease;
  -o-transition: -o-transform 400ms ease;
  transition: transform 400ms ease;
  -webkit-transition-property: -webkit-transform, left, right;
  /* Add left/right for Android < 4.4. */
  -webkit-backface-visibility: hidden;
  /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}

/* --------------------
 * 005 - Helper Classes
 */
.sb-hide {
  display: none;
  /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}

/* 2.2 OWLCAROUSEL
-------------------------------------------------------------- */
/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(img/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* 3. GLOBAL
-------------------------------------------------------------- */
body {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 12px;
  line-height: 2;
  background: #f2f0f0;
}
body .site-container {
  background: #f2f0f0;
}
body p {
  color: #898989;
  font-size: 12px;
  line-height: 2;
  line-height: 1.8;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: normal;
}
body h6 {
  font-size: 10px;
  line-height: 2.4;
}
body h5 {
  font-size: 12px;
  line-height: 2;
}
body h4 {
  font-size: 14px;
  line-height: 1.71429;
}
body h3 {
  font-size: 16px;
  line-height: 1.5;
}
body h2 {
  font-size: 18px;
  line-height: 1.33333;
}
body h1 {
  font-size: 20px;
  line-height: 1.2;
}
body .container-wrap {
  width: 1170px;
  margin: 0 auto;
  display: block;
  *zoom: 1;
}
body .container-wrap:before, body .container-wrap:after {
  content: "";
  display: table;
}
body .container-wrap:after {
  clear: both;
}

iframe {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #77635f;
}

hr {
  margin: 24px 0;
  border-bottom: 1px solid #d1d1d1;
}

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

ins {
  text-decoration: none;
}

textarea:focus, input:focus {
  outline: 0;
}

select {
  padding: 5px 20px;
  border: 2px solid #d1d1d1;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #898989;
  font-size: 11px;
  background: url(img/arrow-select-bw.png) no-repeat 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-transform: uppercase;
  max-width: 100%;
}

[placeholder]:focus::-webkit-input-placeholder {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transform: translate(60px, 0);
  -ms-transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transform: translate(60px, 0);
  opacity: 0;
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  padding: 8px 20px 6px;
  border: 2px solid #d1d1d1;
  display: block;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 2;
  line-height: 1;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  width: 100%;
}

input[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

textarea {
  min-height: 200px;
}

.button,
#submit {
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 2.18182;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
}
.button:hover,
#submit:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
}

.button-white {
  box-shadow: white 0 0px 0px 2px inset;
  color: white;
}
.button-white:hover {
  box-shadow: white 0 0px 0px 40px inset;
  color: #372926;
}

.cl {
  *zoom: 1;
}
.cl:before, .cl:after {
  content: "";
  display: table;
}
.cl:after {
  clear: both;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.accessible-text {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.truncate {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.hide-text {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
}

.center-block {
  display: block;
  margin: 0 auto;
}

.cubic, .button,
#submit, .woocommerce ul.products li.product-hover-caption figure figcaption,
.woocommerce-page ul.products li.product-hover-caption figure figcaption {
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}

.hide {
  display: none !important;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.text-large {
  font-size: 1.5em !important;
  margin: 0 !important;
}
.text-large p {
  font-size: 1.5em !important;
  margin: 0;
}

.text-small {
  font-size: 1.1em !important;
  margin: 0 !important;
}
.text-small p {
  font-size: 1.1em !important;
  margin: 0;
}

.text-light {
  color: #ffffff !important;
}
.text-light p {
  color: #ffffff !important;
}

.text-dark {
  color: #000000 !important;
}
.text-dark p {
  color: #000000 !important;
}

.desc {
  text-align: left;
}

.head-section {
  display: block;
  width: 100%;
  *zoom: 1;
}
.head-section:before, .head-section:after {
  content: "";
  display: table;
}
.head-section:after {
  clear: both;
}

.as-background {
  position: absolute;
  width: 100%;
}

.framebox iframe {
  max-width: 100%;
}

.fa-facebook {
  color: #3360ba;
}

.fa-twitter {
  color: #35b9df;
}

.fa-rss {
  color: #dfa535;
}

.fa-envelope-o {
  color: #372926;
}

.fa-deviantart {
  color: #4C615C;
}

.fa-behance {
  color: #532C61;
}

.fa-soundcloud {
  color: #FF5800;
}

.fa-instagram {
  color: #3F729B;
}

.fa-tumblr-square {
  color: #00225F;
}

.fa-vimeo-square {
  color: #162221;
}

.fa-github {
  color: #171516;
}

.fa-dribbble {
  color: #F46899;
}

.fa-pinterest {
  color: #c8232c;
}

.fa-linkedin-square {
  color: #4875B4;
}

.fa-flickr {
  color: #0062DD;
}

.fa-youtube {
  color: #CF1F21;
}

.fa-google-plus {
  color: #DA2713;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  width: auto;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: 100%;
}

.alignnone {
  display: block;
  max-width: 100%;
  height: auto;
}
.alignnone img {
  height: auto;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
  width: auto;
}

.wp-caption {
  position: relative;
}
.wp-caption img {
  max-width: 100%;
  margin: 0;
}

.wp-caption-text {
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: block;
  margin: 0;
  font-style: italic;
}

.gallery-caption {
  text-align: center;
}

.bypostauthor {
  line-height: normal;
}

.sticky {
  line-height: normal;
}

.container {
  padding: 36px 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *zoom: 1;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}

.row {
  *zoom: 1;
  display: block;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

/* 4.0 HEADER
-------------------------------------------------------------- */
.site-header {
  min-height: 60px;
  width: 100%;
  background: #372926;
}
.site-header .header-left {
  width: 25%;
  width: calc( 200px );
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
}
.site-header .header-right, .site-header .header-right-search {
  float: right;
  width: 75%;
  width: calc(100% - 200px);
  text-align: right;
  position: relative;
  height: 60px;
}
.site-header .header-right-wrap {
  display: inline-block;
}
.site-header .site-logo {
  background: white;
  line-height: 60px;
  text-align: center;
  padding: 0 30px;
}
.site-header .site-logo a {
  display: block;
}
.site-header .site-logo img {
  vertical-align: middle;
}
.site-header .header-menu {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
}
.site-header .header-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
}
.site-header .header-menu li {
  display: -moz-inline-stack;
  -moz-box-orient: vertical;
  display: inline-block;
  *display: inline;
  vertical-align: top;
  *zoom: 1;
  position: relative;
}
.site-header .header-menu li a {
  padding: 0 15px;
  display: block;
  color: #9c847f;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 2.18182;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  line-height: 60px;
}
.site-header .header-menu li a:hover {
  color: #FDFDFD;
}
.site-header .header-menu li .sub-menu {
  position: absolute;
  z-index: 100;
  left: 0;
  background: #372926;
  display: none;
  min-width: 200px;
}
.site-header .header-menu li .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  display: block;
  height: auto;
  text-align: left;
}
.site-header .header-menu li .sub-menu li a {
  line-height: 45px;
}
.site-header .header-menu li .sub-menu li ul {
  left: 100%;
  top: 0;
  display: none;
}
.site-header .header-menu li .sub-menu li :hover > .sub-menu {
  display: block;
}
.site-header .header-menu li:hover > .sub-menu {
  display: block;
}
.site-header .quicknav-menu {
  display: none;
  float: left;
}
.site-header .quicknav-search {
  display: block;
  float: left;
}
.site-header .quicknav-icon {
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  padding: 0 15px;
  display: block;
}
.site-header .quicknav-icon:hover {
  color: white;
}
.site-header .quicknav-account {
  display: block;
  float: left;
  position: relative;
}
.site-header .quicknav-account .account-menu {
  display: none;
  background: #372926;
  position: absolute;
  top: 100%;
  z-index: 9999;
  line-height: 0;
  min-width: 200px;
  right: 0;
  margin: 0;
  padding: 0 0 10px;
}
.site-header .quicknav-account .account-menu li {
  display: block;
  line-height: normal;
  height: auto;
}
.site-header .quicknav-account .account-menu li a {
  padding: 10px 15px;
  text-align: left;
  display: block;
}
.site-header .quicknav-account .account-menu li a i {
  float: right;
}
.site-header .quicknav-account .account-menu li a:hover {
  color: #FDFDFD;
}
.site-header .quicknav-cart {
  display: block;
  float: left;
  padding: 0 10px;
  margin-left: 15px;
  height: 60px;
  background: #cb3818;
  cursor: pointer;
}
.site-header .quicknav-cart .quicknav-icon {
  color: #fcc2b6;
}
.site-header .quicknav-cart .cart-subtotal {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 20px;
  color: white;
  margin-left: 10px;
}
.site-header .header-right-search {
  display: none;
}
.site-header .search-form {
  *zoom: 1;
  position: relative;
}
.site-header .search-form:before, .site-header .search-form:after {
  content: "";
  display: table;
}
.site-header .search-form:after {
  clear: both;
}
.site-header .search-form .search-field {
  font-family: inherit;
  font-size: 18px;
  font-style: italic;
  background: transparent !important;
  margin: 0;
  padding: 0 20px;
  line-height: 60px;
  height: 60px;
  width: 100%;
  color: #77635f;
  border: none;
}
.site-header .search-form .search-field::-webkit-input-placeholder, .site-header .search-form .search-field::-moz-placeholder, .site-header .search-form .search-field:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-header .search-form .search-field:-webkit-autofill {
  background: transparent !important;
}
.site-header .search-form .quicknav-close {
  position: absolute;
  top: 0;
  right: 0;
}

.site-navigation-wrap,
.site-navigation-megamenu-wrap {
  background: white;
  background-color: #ffffff;
}

.site-navigation {
  display: block;
  *zoom: 1;
  width: 100%;
  background: white;
  position: relative;
}
.site-navigation:before, .site-navigation:after {
  content: "";
  display: table;
}
.site-navigation:after {
  clear: both;
}
.site-navigation h3 {
  color: #a29896;
  font-family: 'Maven Pro', sans-serif;
  font-size: 12px;
  line-height: 2;
  text-transform: uppercase;
  line-height: 50px;
  font-weight: bold;
  margin: 0;
  padding: 0 40px;
  border-bottom: 2px solid #cb3818;
  float: left;
}
.site-navigation .site-navigation-menu {
  height: 52px;
  overflow: hidden;
}
.site-navigation .site-navigation-menu.horizontal-responsive-menu {
  overflow: visible;
}
.site-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.site-navigation ul li {
  float: left;
  position: relative;
}
.site-navigation ul li a {
  font-family: 'Maven Pro', sans-serif;
  font-size: 12px;
  line-height: 2;
  -moz-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  font-weight: bold;
  text-transform: uppercase;
  color: #372926;
  display: block;
  padding: 14px 20px 12px;
}
.site-navigation ul li .sub-menu {
  height: auto !important;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  border-top: 2px solid #cb3818;
}
.site-navigation ul li .sub-menu li {
  display: block;
  float: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
.site-navigation ul li .sub-menu li a {
  background: white;
  padding: 14px 30px;
  padding-bottom: 12px;
}
.site-navigation ul li .sub-menu li ul {
  border-top: 2px solid #cb3818;
  position: absolute;
  left: 100%;
  display: none;
  top: 0;
}
.site-navigation ul li .sub-menu li:hover {
  border-bottom: none;
}
.site-navigation ul li .sub-menu li:hover a {
  background: #cb3818;
  color: white;
}
.site-navigation ul li .sub-menu li:hover > ul {
  display: block;
}
.site-navigation ul li:hover > .sub-menu {
  display: block;
}
.site-navigation .site-navigation-menu > li {
  border-bottom: 2px solid #fff;
}
.site-navigation .site-navigation-menu > li:hover, .site-navigation .site-navigation-menu > li.current-menu-item {
  border-bottom: 2px solid #cb3818;
}

.hideshow {
  position: absolute !important;
  right: 0;
  float: none !important;
  display: block;
  margin: 0 !important;
}
.hideshow > ul {
  -webkit-box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.75);
  -moz-box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.75);
  box-shadow: -2px 1px 8px 0px rgba(50, 50, 50, 0.75);
}
.hideshow ul {
  border-top: 2px solid #cb3818;
  display: none;
  position: absolute !important;
  background: white;
  right: 0;
  z-index: 9999;
  min-width: 200px;
}
.hideshow ul li {
  white-space: nowrap;
  display: block;
  float: none !important;
}
.hideshow ul li > .sub-menu {
  position: absolute !important;
  width: 200px !important;
  top: -2px !important;
  left: -200px !important;
}
.hideshow ul li > .sub-menu li > .sub-menu {
  left: -100% !important;
}
.hideshow ul li:hover {
  border-bottom: none !important;
}
.hideshow ul li:hover > a {
  background: #cb3818;
  color: white;
}
.hideshow ul li:hover > .sub-menu li:hover a {
  background: #cb3818;
  color: white;
}
.hideshow ul li:hover > .sub-menu li > .sub-menu li:hover a {
  background: #cb3818;
  color: white;
}

.menu-slidebar,
.menu-slidebar li,
.menu-slidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-slidebar li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-slidebar li li:last-of-type {
  border-bottom: none;
}

.menu-slidebar li ul {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-slidebar a {
  padding: 10px 20px;
  display: block;
  color: #ddd;
}

.menu-slidebar a:hover {
  color: #fff;
}

.menu-slidebar li li a {
  padding-left: 40px;
}

.menu-slidebar li li li a {
  padding-left: 60px;
}

/* 5.0 CONTENT
-------------------------------------------------------------- */
/* Page Header */
.page-header {
  min-height: 160px;
  width: 100%;
  display: block;
  background: #f2f0f0;
  *zoom: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.page-header:before, .page-header:after {
  content: "";
  display: table;
}
.page-header:after {
  clear: both;
}
.page-header .page-title {
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: normal;
  color: #372926;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumbs {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 12px;
  line-height: 2;
  color: #9f9491;
  display: block;
  text-align: center;
  margin-bottom: 55px;
}
.breadcrumbs a {
  color: #9f9491;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 12px;
  line-height: 2;
}

/* Layout */
.layout-2c-l .content-area {
  width: 75%;
  float: left;
}
.layout-2c-l .sidebar {
  width: 25%;
  float: right;
}

#content {
  *zoom: 1;
  background: white;
}
#content:before, #content:after {
  content: "";
  display: table;
}
#content:after {
  clear: both;
}

.sidebar {
  padding: 0 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 1px 0px 0px 0px #f2f0f0;
  -moz-box-shadow: inset 1px 0px 0px 0px #f2f0f0;
  box-shadow: inset 1px 0px 0px 0px #f2f0f0;
}
.sidebar .widget:last-child {
  margin-bottom: 50px;
}

.layout-1c-full .content-area {
  width: 100%;
  float: none;
}
.layout-1c-full .sidebar {
  display: none;
}

/* Section Title and Pagination */
.section-title, .blog-single #respond #reply-title, #respond #reply-title {
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  text-transform: uppercase;
  text-indent: 40px;
  float: left;
  margin: 0;
}

.pagination {
  display: block;
  text-align: center;
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid #f2f0f0;
  *zoom: 1;
}
.pagination:before, .pagination:after {
  content: "";
  display: table;
}
.pagination:after {
  clear: both;
}
.pagination .page-numbers {
  border-radius: 20px;
  padding: 8px 12px;
}
.pagination a.page-numbers {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  text-shadow: none;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
}
.pagination a.page-numbers:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.pagination .current {
  color: #898989;
  box-shadow: #898989 0 0px 0px 2px inset;
}

/* Blogs */
.blogs .container {
  padding: 0 50px;
}
.blogs .blog-list {
  border-bottom: 1px solid #f2f0f0;
}
.blogs .blog-list:last-child, .blogs .blog-list:last-of-type {
  border-bottom: none;
}
.blogs .entry-content img {
  width: auto;
  max-width: 100%;
  margin-bottom: 25px;
}

/* Blog List */
.blog-list {
  display: block;
  *zoom: 1;
  padding: 50px 0;
}
.blog-list:before, .blog-list:after {
  content: "";
  display: table;
}
.blog-list:after {
  clear: both;
}
.blog-list .thumbnail-blog {
  margin-bottom: 0;
  width: 100%;
  height: auto;
}
.blog-list .entry-meta {
  float: left;
  width: 30%;
  padding-right: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.blog-list .entry-meta .published {
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 2;
  font-weight: bold;
  display: block;
}
.blog-list .entry-meta .entry-detail {
  display: block;
  padding: 20px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  *zoom: 1;
  margin: 16px 0;
}
.blog-list .entry-meta .entry-detail:before, .blog-list .entry-meta .entry-detail:after {
  content: "";
  display: table;
}
.blog-list .entry-meta .entry-detail:after {
  clear: both;
}
.blog-list .entry-meta .entry-detail .ava {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px;
}
.blog-list .entry-meta .entry-detail .ava img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.blog-list .entry-meta .entry-detail .author-detail {
  width: calc(100% - 50px);
  float: left;
}
.blog-list .entry-meta .entry-detail .author-detail .tags,
.blog-list .entry-meta .entry-detail .author-detail .author {
  display: block;
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.6;
}
.blog-list .entry-meta .entry-detail .author-detail .tags {
  color: #898989;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
}
.blog-list .entry-meta .entry-detail .author-detail .author a {
  font-weight: bold;
  color: #77635f;
}
.blog-list .entry-meta .category {
  color: #898989;
}
.blog-list .entry-meta .category .before {
  display: block;
  font-size: 12px;
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  line-height: 1.2;
}
.blog-list .entry-meta .category a {
  font-weight: bold;
  color: #77635f;
  line-height: 1.2;
}
.blog-list .entry-content {
  float: right;
  width: 70%;
  color: #898989;
  font-size: 14px;
}
.blog-list .entry-content .blog-title {
  margin-top: 0;
}
.blog-list .entry-content .blog-title a {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #77635f;
  text-transform: capitalize;
}
.blog-list .entry-content p {
  font-size: 14px;
}
.blog-list .entry-content input[type="submit"] {
  margin: 10px 0;
  background: transparent !important;
  text-shadow: none;
  border: none;
  display: inline-block;
  text-align: center;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.blog-list .entry-content input[type="submit"]:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.blog-list .entry-content blockquote {
  padding-left: 33px;
  padding-top: 1px;
  padding-bottom: 1px;
  margin: 0;
  border-left: 5px double #f2f0f0;
  display: block;
}
.blog-list .entry-content blockquote cite {
  font-size: 12px;
  font-style: italic;
}

/* Sticky */
.sticky {
  background: #F2F0F0;
  margin: 10px;
}
.sticky .entry-content {
  padding: 0;
  box-sizing: border-box;
  background: #F2F0F0;
  font-size: 14px;
  line-height: 2;
}
.sticky .blog-title:before {
  content: "\f0c6" !important;
}

/* Blog Single */
.blog-single {
  display: block;
  *zoom: 1;
}
.blog-single:before, .blog-single:after {
  content: "";
  display: table;
}
.blog-single:after {
  clear: both;
}
.blog-single .entry-meta {
  float: left;
  width: 30%;
}
.blog-single .entry-meta .container {
  padding: 50px;
}
.blog-single .entry-meta .published {
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 2;
  font-weight: bold;
  display: block;
}
.blog-single .entry-meta .entry-detail {
  display: block;
  padding: 20px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  *zoom: 1;
  margin: 16px 0;
}
.blog-single .entry-meta .entry-detail:before, .blog-single .entry-meta .entry-detail:after {
  content: "";
  display: table;
}
.blog-single .entry-meta .entry-detail:after {
  clear: both;
}
.blog-single .entry-meta .entry-detail .ava {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 10px;
}
.blog-single .entry-meta .entry-detail .ava img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.blog-single .entry-meta .entry-detail .author-detail {
  width: calc(100% - 50px);
  float: left;
}
.blog-single .entry-meta .entry-detail .author-detail .tags,
.blog-single .entry-meta .entry-detail .author-detail .author {
  display: block;
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.6;
}
.blog-single .entry-meta .entry-detail .author-detail .tags {
  color: #898989;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
}
.blog-single .entry-meta .entry-detail .author-detail .author a {
  font-weight: bold;
  color: #77635f;
}
.blog-single .entry-meta .category,
.blog-single .entry-meta .tag {
  display: block;
  color: #898989;
}
.blog-single .entry-meta .category .before,
.blog-single .entry-meta .tag .before {
  display: block;
  font-size: 12px;
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  line-height: 1.2;
}
.blog-single .entry-meta .category a,
.blog-single .entry-meta .tag a {
  font-weight: bold;
  color: #77635f;
  line-height: 1.2;
}
.blog-single .entry-meta .tag {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
}
.blog-single .entry-meta .comment {
  color: #77635f;
  font-size: 11px;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: bold;
  text-transform: capitalize;
}
.blog-single .entry-meta .comment span {
  margin-right: 4px;
}
.blog-single .entry-meta .comment a.button {
  margin: 10px 0;
  background: transparent !important;
  text-shadow: none;
  border: none;
  display: block;
  text-align: center;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.blog-single .entry-meta .comment a.button:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.blog-single .entry-content {
  float: left;
  width: 70%;
  font-size: 14px;
  color: #898989;
}
.blog-single .entry-content .container {
  padding-left: 0;
}
.blog-single .entry-content .blog-title a {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #77635f;
  text-transform: capitalize;
}
.blog-single .entry-content pre {
  max-width: 100%;
  white-space: pre-wrap !important;
}
.blog-single .entry-content table {
  border: 1px solid #898989;
  width: 100%;
}
.blog-single .entry-content table tr td,
.blog-single .entry-content table tr th {
  border: 1px solid #898989;
}
.blog-single .entry-content table tr th {
  color: #77635f;
}
.blog-single .entry-content h1, .blog-single .entry-content h2, .blog-single .entry-content h3, .blog-single .entry-content h4, .blog-single .entry-content h5, .blog-single .entry-content h6 {
  color: #77635f;
}
.blog-single .entry-content blockquote {
  padding-left: 33px;
  padding-top: 1px;
  padding-bottom: 1px;
  margin: 0;
  font-size: 16px;
  border-left: 5px double #f2f0f0;
  display: block;
}
.blog-single .entry-content blockquote p {
  font-size: 16px;
}
.blog-single .entry-content blockquote p cite {
  font-size: 14px;
}
.blog-single .entry-content input[type="submit"] {
  margin: 10px 0;
  background: transparent !important;
  text-shadow: none;
  border: none;
  display: inline-block;
  text-align: center;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.blog-single .entry-content input[type="submit"]:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.blog-single .entry-content p {
  *zoom: 1;
}
.blog-single .entry-content p:before, .blog-single .entry-content p:after {
  content: "";
  display: table;
}
.blog-single .entry-content p:after {
  clear: both;
}
.blog-single .commentlist .head-section {
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
}
.blog-single .commentlist .head-section .container {
  padding: 36px 0;
}
.blog-single .commentlist .entry-meta {
  display: block;
  float: none;
  width: auto;
  padding-right: 0;
  margin-right: 0;
}
.blog-single .commentlist .entry-meta .published {
  line-height: 1.4;
  font-weight: normal;
  display: inline;
}
.blog-single .commentlist .entry-meta .author {
  line-height: 2;
}
.blog-single .commentlist .entry-meta .comment-reply-link {
  font-size: 11px;
  display: inline;
}
.blog-single .commentlist .comment:last-child {
  border-bottom: none;
}
.blog-single #respond {
  margin-top: 25px;
  margin-bottom: 25px;
}
.blog-single #respond .head-section,
.blog-single #respond #reply-title {
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
  margin-bottom: 40px;
}
.blog-single #respond .head-section .container,
.blog-single #respond #reply-title .container {
  padding: 36px 0;
}
.blog-single #respond #reply-title {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 36px 0;
  width: 100%;
  display: block;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 16px;
  padding-left: 20px;
}

/* Post Formats */
.format-audio .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-audio .blog-title:before {
  content: "\f001";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-standard .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-standard .blog-title:before {
  content: "\f016";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-aside .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-aside .blog-title:before {
  content: "\f040";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-image .blog-title,
.format-gallery .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-image .blog-title:before,
.format-gallery .blog-title:before {
  content: "\f03e";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}
.format-image ul,
.format-gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.format-image .owl-prev,
.format-gallery .owl-prev {
  display: inline;
  position: absolute;
  right: 20px;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  line-height: 1;
}
.format-image .owl-next,
.format-gallery .owl-next {
  display: inline;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  line-height: 1;
}

.format-link .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-link .blog-title:before {
  content: "\f0c1";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-quote .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-quote .blog-title:before {
  content: "\f10d";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-chat .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-chat .blog-title:before {
  content: "\e04a";
  font-family: "Simple-Line-Icons";
  line-height: 1;
  position: absolute;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-video .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-video .blog-title:before {
  content: "\f03d";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

.format-status .blog-title {
  padding-left: 30px;
  position: relative;
}
.format-status .blog-title:before {
  content: "\f040";
  position: absolute;
  font-family: FontAwesome;
  font-size: 18px;
  color: #77635f;
  left: 0;
  top: 0;
}

/* Page */
.page .page-content {
  box-sizing: border-box;
  padding: 50px;
}
.page.page-template-page-visualcomposer .page-content, .page.page-template-page-visualcomposer-notitle .page-content, .page.page-template-content-contact-form .page-content, .page.page-template-page-contact-form .page-content {
  padding: 0;
}
.page .entry-content {
  width: 100%;
}
.page .entry-content .blog-title a {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: #77635f;
  text-transform: capitalize;
}
.page .entry-content p {
  *zoom: 1;
}
.page .entry-content p:before, .page .entry-content p:after {
  content: "";
  display: table;
}
.page .entry-content p:after {
  clear: both;
}

/* Attachment Page */
.entry-attachment {
  padding: 50px 0;
  text-align: center;
}
.entry-attachment .attachment {
  margin: 0;
  text-align: center;
}
.entry-attachment .attachment a {
  display: block;
}
.entry-attachment .attachment a img {
  max-width: 100%;
  height: auto;
}

/* Author Page */
.section-user-biography {
  *zoom: 1;
  padding: 50px;
}
.section-user-biography:before, .section-user-biography:after {
  content: "";
  display: table;
}
.section-user-biography:after {
  clear: both;
}
.section-user-biography .user-biography {
  padding-bottom: 30px;
}

.section-user-detail {
  padding-top: 50px;
}
.section-user-detail .user-detail {
  *zoom: 1;
}
.section-user-detail .user-detail:before, .section-user-detail .user-detail:after {
  content: "";
  display: table;
}
.section-user-detail .user-detail:after {
  clear: both;
}
.section-user-detail .user-detail .avatar {
  border-radius: 50%;
}
.section-user-detail .user-social {
  font-size: 16px;
}
.section-user-detail .user-social i {
  display: inline-block;
  padding-right: 20px;
}

/* Not Found Page */
.notfound {
  margin: 50px 0;
}
.notfound h2 {
  font-size: 34px;
  margin: 0;
}

/* Contact Page Template */
.map-section {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 50px 50px 0;
}

.contact-form {
  border-top: 1px solid #f2f0f0;
}
.contact-form .page-area,
.contact-form .contact-form {
  padding: 50px;
}
.contact-form h1, .contact-form h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  text-transform: uppercase;
}
.contact-form h1:before, .contact-form h2:before {
  content: "\e04a";
  font-family: "Simple-Line-Icons";
  line-height: 1;
  margin-right: 20px;
  font-size: 24px;
  color: #f4d0c8;
  font-weight: normal;
}
.contact-form form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.contact-form form fieldset .screen-reader-text {
  display: none;
}

/* 6.0 COMMENTS
-------------------------------------------------------------- */
.entry-comment {
  border-top: 1px solid #f2f0f0;
  min-height: 400px;
  *zoom: 1;
}
.entry-comment:before, .entry-comment:after {
  content: "";
  display: table;
}
.entry-comment:after {
  clear: both;
}
.entry-comment .container {
  padding-left: 25px;
  padding-right: 25px;
}
.entry-comment .head-section {
  border-bottom: 1px solid #f2f0f0;
  margin-bottom: 35px;
}
.entry-comment .head-section .container {
  padding: 0;
  padding-bottom: 36px;
}
.entry-comment .section-title, .entry-comment #respond #reply-title, #respond .entry-comment #reply-title {
  text-indent: 0;
}
.entry-comment .section-title:before, .entry-comment #respond #reply-title:before, #respond .entry-comment #reply-title:before {
  content: "\e04a";
  font-family: "Simple-Line-Icons";
  line-height: 1;
  margin-right: 45px;
  font-size: 24px;
  color: #f4d0c8;
  font-weight: normal;
}
.entry-comment .comments .container {
  padding-left: 50px;
}
.entry-comment .respond .container {
  padding-right: 50px;
}

.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 70%;
  float: right;
}
.commentlist .head-section {
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
}
.commentlist .head-section .container {
  padding: 36px 0;
}
.commentlist .section-title, .commentlist #respond #reply-title, #respond .commentlist #reply-title {
  text-indent: 0;
}
.commentlist .section-title:before, .commentlist #respond #reply-title:before, #respond .commentlist #reply-title:before {
  content: "\e04a";
  font-family: "Simple-Line-Icons";
  line-height: 1;
  margin-right: 45px;
  font-size: 24px;
  color: #f4d0c8;
  font-weight: normal;
}
.commentlist .children {
  padding-left: 50px;
}
.commentlist .children li {
  background: #f8f8f8;
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid white;
}
.commentlist .children li:last-child {
  border-bottom: none;
}
.commentlist .sublist {
  margin-left: 70px;
  background: #f8f8f8;
  margin-top: 10px;
}
.commentlist .sublist .comment {
  padding: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid white;
}
.commentlist .comment {
  display: block;
  width: 100%;
  *zoom: 1;
  float: none;
  padding: 30px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #f2f0f0;
  margin-top: 20px;
}
.commentlist .comment:before, .commentlist .comment:after {
  content: "";
  display: table;
}
.commentlist .comment:after {
  clear: both;
}
.commentlist .comment:last-child {
  border-bottom: none;
}
.commentlist .comment img.avatar {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  float: left;
  margin-right: 30px;
}
.commentlist .comment .comment_container {
  *zoom: 1;
}
.commentlist .comment .comment_container:before, .commentlist .comment .comment_container:after {
  content: "";
  display: table;
}
.commentlist .comment .comment_container:after {
  clear: both;
}
.commentlist .comment-text {
  float: left;
  width: calc(100% - 70px);
}
.commentlist .comment-text .star-rating {
  float: right;
}
.commentlist .comment-text .meta {
  margin-top: 0;
}
.commentlist .comment-text .entry-meta {
  display: block;
  float: none;
  width: auto;
  padding-right: 0;
  margin-right: 0;
}
.commentlist .comment-text .entry-meta .author {
  display: block;
  text-transform: capitalize;
  line-height: 2;
}
.commentlist .comment-text .entry-meta .author a {
  font-size: 12px;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: bold;
  color: #77635f;
}
.commentlist .comment-text .entry-meta .published {
  color: #d1d1d1;
  font-size: 11px;
  line-height: 1.4;
  font-weight: normal;
  display: inline;
}
.commentlist .comment-text .entry-meta .comment-reply-link {
  font-size: 11px;
  display: inline;
}

#respond {
  width: 70%;
  float: right;
  margin-bottom: 60px;
  *zoom: 1;
}
#respond:before, #respond:after {
  content: "";
  display: table;
}
#respond:after {
  clear: both;
}
#respond .head-section,
#respond #reply-title {
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
  margin-bottom: 40px;
}
#respond .head-section .container,
#respond #reply-title .container {
  padding: 36px 0;
}
#respond #reply-title {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 36px 0;
  width: 100%;
  display: block;
}
#respond .section-title, .blog-single #respond #reply-title, #respond #reply-title {
  text-indent: 0;
}
#respond .section-title:before, .blog-single #respond #reply-title:before, #respond #reply-title:before {
  content: "\e04a";
  font-family: "Simple-Line-Icons";
  line-height: 1;
  margin-right: 45px;
  font-size: 24px;
  color: #f4d0c8;
  font-weight: normal;
}
#respond form .form-submit #submit {
  float: right;
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
#respond form .form-submit #submit:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
#respond form p {
  position: relative;
  margin-bottom: 20px;
}
#respond form p input:focus {
  border: 2px solid #eb8e7a;
  outline: #eb8e7a;
}
#respond form p:last-child {
  width: 100%;
  *zoom: 1;
}
#respond form p:last-child:before, #respond form p:last-child:after {
  content: "";
  display: table;
}
#respond form p:last-child:after {
  clear: both;
}
#respond form textarea {
  overflow: hidden;
}
#respond form textarea:focus, #respond form textarea.filled {
  border: 2px solid #eb8e7a;
  outline: #eb8e7a;
}
#respond .comment-notes,
#respond #input_name,
#respond #input_email,
#respond #input_url {
  width: 100%;
}
#respond .button {
  background: none;
  border: none;
  float: right;
}

/* 7.0 WIDGET
-------------------------------------------------------------- */
.widget {
  color: #898989;
  margin-top: 50px;
  *zoom: 1;
}
.widget:before, .widget:after {
  content: "";
  display: table;
}
.widget:after {
  clear: both;
}
.widget .widget-title {
  font-size: 13px;
  line-height: 1.84615;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: bold;
  color: #77635f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px;
}
.widget ul {
  margin: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  border-bottom: 1px solid #f2f0f0;
  padding: 10px 0;
  *zoom: 1;
}
.widget ul li:before, .widget ul li:after {
  content: "";
  display: table;
}
.widget ul li:after {
  clear: both;
}
.widget ul li:first-child {
  margin-top: 0;
}
.widget .children,
.widget .sub-menu {
  margin-top: 10px;
}
.widget .children li,
.widget .sub-menu li {
  padding: 10px 10px 10px 15px;
  border-bottom: none;
  border-top: 1px solid #f2f0f0;
}
.widget .children li:last-child,
.widget .sub-menu li:last-child {
  padding-bottom: 0;
}
.widget .post-title,
.widget .post-title a {
  font-family: 'Maven Pro', sans-serif;
  font-size: 13px;
  line-height: 1.84615;
  text-transform: uppercase;
  font-weight: 600;
  color: #372926;
  margin: 0;
  margin-top: 10px;
}
.widget .wp-caption img {
  max-width: 100%;
}
.widget .wp-caption .wp-caption-text {
  padding: 10px;
}

.post_tag-cloud a,
.widget_tag_cloud a,
.widget_product_tag_cloud a {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  margin-right: 5px;
  margin-top: 5px;
  padding: 8px 20px !important;
  font-size: 11px !important;
  line-height: 13px !important;
  color: #eb8e7a;
  display: -moz-inline-stack;
  -moz-box-orient: vertical;
  display: inline-block;
  *display: inline;
  vertical-align: top;
  *zoom: 1;
}
.post_tag-cloud a:hover,
.widget_tag_cloud a:hover,
.widget_product_tag_cloud a:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}

#wp-calendar {
  width: 100%;
}
#wp-calendar th {
  text-align: left;
}

.widget_archive ul li,
.widget_categories ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_recent_comments ul li,
.widget_nav_menu ul li {
  padding-left: 15px;
  position: relative;
}
.widget_archive ul li:before,
.widget_categories ul li:before,
.widget_pages ul li:before,
.widget_meta ul li:before,
.widget_recent_comments ul li:before,
.widget_nav_menu ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  background: #eb8e7a;
}

.widget_rss img {
  width: auto;
}
.widget_rss a {
  display: inline;
  float: left;
  margin-right: 10px;
}

#primary .searchform,
#primary #searchform,
.widget_search .searchform,
.widget_search #searchform,
.widget_product_search .searchform,
.widget_product_search #searchform {
  padding: 0;
  width: 100%;
  position: relative;
}
#primary .searchform input[type=submit],
#primary #searchform input[type=submit],
.widget_search .searchform input[type=submit],
.widget_search #searchform input[type=submit],
.widget_product_search .searchform input[type=submit],
.widget_product_search #searchform input[type=submit] {
  position: absolute;
  padding-left: 0;
  width: 15px;
  height: 15px;
  border: none !important;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  top: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#primary .searchform:before,
#primary #searchform:before,
.widget_search .searchform:before,
.widget_search #searchform:before,
.widget_product_search .searchform:before,
.widget_product_search #searchform:before {
  content: "\e090";
  font-family: "Simple-Line-Icons";
  position: absolute;
  top: 0;
  right: 10px;
  line-height: 32px;
  font-size: 15px;
}
#primary .screen-reader-text,
.widget_search .screen-reader-text,
.widget_product_search .screen-reader-text {
  display: none !important;
}

/* Social Network widget */
.social-network ul.social-buttons li {
  border-bottom: none;
}
.social-network ul.social-buttons li i {
  font-size: 16px;
  display: inline-block;
  width: 25px;
}

/* Statistic Widgets */
.widget_widget_statistic .widget-statistic .market-members .statistic,
.widget_widget_statistic .widget-statistic .market-items .statistic,
.widget_tokopress_widget_statistics .widget-statistic .market-members .statistic,
.widget_tokopress_widget_statistics .widget-statistic .market-items .statistic {
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #eb8e7a;
}
.widget_widget_statistic .widget-statistic .market-members p,
.widget_widget_statistic .widget-statistic .market-items p,
.widget_tokopress_widget_statistics .widget-statistic .market-members p,
.widget_tokopress_widget_statistics .widget-statistic .market-items p {
  margin: 0;
}
.widget_widget_statistic .widget-statistic .market-items,
.widget_tokopress_widget_statistics .widget-statistic .market-items {
  margin-top: 15px;
}

/* Mailchimp custom form widget */
.widget_mc4wp_widget_custom form label[for="mc4wp_email"],
.widget_tokopress_widget_subscribe form label[for="mc4wp_email"] {
  display: none;
}
.widget_mc4wp_widget_custom form input[type="submit"],
.widget_tokopress_widget_subscribe form input[type="submit"] {
  float: right;
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.widget_mc4wp_widget_custom form input[type="submit"]:hover,
.widget_tokopress_widget_subscribe form input[type="submit"]:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}

/* WooCommerce Widgets */
.widget_shopping_cart li,
.widget_best_sellers li,
.widget_featured_products li,
.widget_onsale li,
.widget_random_products li,
.widget_recent_products li,
.widget_recent_products li,
.widget_recently_viewed_products li,
.widget_top_rated_products li,
.widget_recent_reviews li {
  min-height: 70px;
  position: relative;
  padding: 0;
}
.widget_shopping_cart a,
.widget_best_sellers a,
.widget_featured_products a,
.widget_onsale a,
.widget_random_products a,
.widget_recent_products a,
.widget_recent_products a,
.widget_recently_viewed_products a,
.widget_top_rated_products a,
.widget_recent_reviews a {
  display: block;
  padding-right: 50px;
}
.widget_shopping_cart a img,
.widget_best_sellers a img,
.widget_featured_products a img,
.widget_onsale a img,
.widget_random_products a img,
.widget_recent_products a img,
.widget_recent_products a img,
.widget_recently_viewed_products a img,
.widget_top_rated_products a img,
.widget_recent_reviews a img {
  float: left;
  margin-right: 10px;
  padding-bottom: 20px;
  max-width: 60px;
}
.widget_shopping_cart .total,
.widget_best_sellers .total,
.widget_featured_products .total,
.widget_onsale .total,
.widget_random_products .total,
.widget_recent_products .total,
.widget_recent_products .total,
.widget_recently_viewed_products .total,
.widget_top_rated_products .total,
.widget_recent_reviews .total {
  display: block;
  *zoom: 1;
  clear: both;
  padding: 20px;
  background: #f2f0f0;
}
.widget_shopping_cart .total:before, .widget_shopping_cart .total:after,
.widget_best_sellers .total:before,
.widget_best_sellers .total:after,
.widget_featured_products .total:before,
.widget_featured_products .total:after,
.widget_onsale .total:before,
.widget_onsale .total:after,
.widget_random_products .total:before,
.widget_random_products .total:after,
.widget_recent_products .total:before,
.widget_recent_products .total:after,
.widget_recent_products .total:before,
.widget_recent_products .total:after,
.widget_recently_viewed_products .total:before,
.widget_recently_viewed_products .total:after,
.widget_top_rated_products .total:before,
.widget_top_rated_products .total:after,
.widget_recent_reviews .total:before,
.widget_recent_reviews .total:after {
  content: "";
  display: table;
}
.widget_shopping_cart .total:after,
.widget_best_sellers .total:after,
.widget_featured_products .total:after,
.widget_onsale .total:after,
.widget_random_products .total:after,
.widget_recent_products .total:after,
.widget_recent_products .total:after,
.widget_recently_viewed_products .total:after,
.widget_top_rated_products .total:after,
.widget_recent_reviews .total:after {
  clear: both;
}
.widget_shopping_cart .total .amount,
.widget_best_sellers .total .amount,
.widget_featured_products .total .amount,
.widget_onsale .total .amount,
.widget_random_products .total .amount,
.widget_recent_products .total .amount,
.widget_recent_products .total .amount,
.widget_recently_viewed_products .total .amount,
.widget_top_rated_products .total .amount,
.widget_recent_reviews .total .amount {
  float: right;
}
.widget_shopping_cart .buttons a,
.widget_best_sellers .buttons a,
.widget_featured_products .buttons a,
.widget_onsale .buttons a,
.widget_random_products .buttons a,
.widget_recent_products .buttons a,
.widget_recent_products .buttons a,
.widget_recently_viewed_products .buttons a,
.widget_top_rated_products .buttons a,
.widget_recent_reviews .buttons a {
  display: block;
  padding: 10px;
  text-align: center;
}
.widget_shopping_cart .buttons .checkout,
.widget_best_sellers .buttons .checkout,
.widget_featured_products .buttons .checkout,
.widget_onsale .buttons .checkout,
.widget_random_products .buttons .checkout,
.widget_recent_products .buttons .checkout,
.widget_recent_products .buttons .checkout,
.widget_recently_viewed_products .buttons .checkout,
.widget_top_rated_products .buttons .checkout,
.widget_recent_reviews .buttons .checkout {
  margin: 0;
  margin-top: 10px;
}
.widget_shopping_cart .star-rating,
.widget_best_sellers .star-rating,
.widget_featured_products .star-rating,
.widget_onsale .star-rating,
.widget_random_products .star-rating,
.widget_recent_products .star-rating,
.widget_recent_products .star-rating,
.widget_recently_viewed_products .star-rating,
.widget_top_rated_products .star-rating,
.widget_recent_reviews .star-rating {
  position: absolute;
  right: 0;
  top: 10px;
}

.widget_shopping_cart li a img {
  max-width: 80px;
}
.widget_shopping_cart .quantity {
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* 8.0 FOOTER
-------------------------------------------------------------- */
#footer {
  *zoom: 1;
  background: white;
  margin-top: 30px;
}
#footer:before, #footer:after {
  content: "";
  display: table;
}
#footer:after {
  clear: both;
}

/* Footer Widgets */
.footer-widgets-row {
  *zoom: 1;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 -50px;
}
.footer-widgets-row:before, .footer-widgets-row:after {
  content: "";
  display: table;
}
.footer-widgets-row:after {
  clear: both;
}

.footer-widgets {
  padding: 50px;
  width: 25%;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #f2f0f0;
}
.footer-widgets:nth-child(4n) {
  border-right: none;
}
.footer-widgets .widget {
  margin-top: 0;
  margin-bottom: 50px;
}
.footer-widgets .widget:last-child {
  margin-bottom: 0;
}

/* Footer Credits */
.footer-credits {
  display: block;
  width: 100%;
  min-height: 70px;
  background: #f2f0f0;
  text-align: center;
  overflow: hidden;
}
.footer-credits .copyright {
  margin-top: 30px;
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
}
.footer-credits .copyright a {
  color: #898989;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
}
.footer-credits .copyright span {
  margin-left: 10px;
}

/* Back To Top */
#back-top {
  border-radius: 4px;
  bottom: 80px;
  background: #cb3818;
  color: #FFFFFF;
  cursor: pointer;
  display: none;
  font-size: 24px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  position: fixed;
  right: 20px;
  z-index: 1;
  opacity: 0.6;
}
#back-top:hover {
  background: #cb3818;
  opacity: 1;
}

/* User Switcher */
#user_switching_switch_on {
  background: #fff;
  margin: 0;
  padding: 20px 0;
  text-align: center;
}

/* 9.0 WOOCOMMERCE
-------------------------------------------------------------- */
/* Top Content in Shop page */
.shop-content-top {
  border-bottom: 1px solid #f2f0f0;
}
.shop-content-top .catalog-order-wrap {
  *zoom: 1;
  float: left;
}
.shop-content-top .catalog-order-wrap:before, .shop-content-top .catalog-order-wrap:after {
  content: "";
  display: table;
}
.shop-content-top .catalog-order-wrap:after {
  clear: both;
}
.shop-content-top .catalog-order-wrap .section-title, .shop-content-top .catalog-order-wrap #respond #reply-title, #respond .shop-content-top .catalog-order-wrap #reply-title {
  float: left;
  text-indent: 0;
  padding-right: 20px;
}
.shop-content-top .catalog-order-wrap .woocommerce-ordering {
  float: left;
  margin: 0;
}
.shop-content-top .catalog-order-wrap .woocommerce-ordering select {
  border-color: #eb8e7a;
  color: #eb8e7a;
  background-image: url(img/arrow-select.png);
}
.shop-content-top .pagination {
  float: right;
  border-top: none;
  text-align: right !important;
  padding: 0;
}

.woocommerce,
.woocommerce-page {
  /* woocommerce buttons */
  /* Product Loop (Shop Page) */
  /* Single Product Page */
  /* Comments */
  /* Upsells & Related Products */
  /* Cross Sells */
  /* WooCommerce Widgets */
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce #content input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page #content input.button {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #898989;
  box-shadow: #898989 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce #content input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page #content input.button:hover {
  box-shadow: #898989 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce #content input.button.alt,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woocommerce-page input.button.alt,
.woocommerce-page #respond input#submit.alt,
.woocommerce-page #content input.button.alt {
  text-shadow: none;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce #content input.button.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page input.button.alt:hover,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce-page #content input.button.alt:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-message {
  text-shadow: none;
  box-shadow: none;
  background: white;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
  border-top: 3px solid #eb8e7a;
}
.woocommerce .woocommerce-message:before,
.woocommerce-page .woocommerce-message:before {
  background-color: #eb8e7a;
}
.woocommerce .price,
.woocommerce-page .price {
  color: #cb3818;
}
.woocommerce .rating,
.woocommerce-page .rating {
  display: block;
  font-size: 12px;
  line-height: 2;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  color: #898989;
  line-height: 1.45;
}
.woocommerce .quantity, .woocommerce #content .quantity,
.woocommerce-page .quantity,
.woocommerce-page #content .quantity {
  border: 2px solid #d1d1d1;
  padding: 5px 10px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  margin: 0 0 15px 0;
  padding: 0;
}
.woocommerce .quantity .minus, .woocommerce #content .quantity .minus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .minus {
  left: 0;
  top: 15%;
  font-size: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.woocommerce .quantity .minus:hover, .woocommerce #content .quantity .minus:hover,
.woocommerce-page .quantity .minus:hover,
.woocommerce-page #content .quantity .minus:hover {
  background: transparent;
}
.woocommerce .quantity .plus, .woocommerce #content .quantity .plus,
.woocommerce-page .quantity .plus,
.woocommerce-page #content .quantity .plus {
  right: 0;
  top: 20%;
  font-size: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.woocommerce .quantity .plus:hover, .woocommerce #content .quantity .plus:hover,
.woocommerce-page .quantity .plus:hover,
.woocommerce-page #content .quantity .plus:hover {
  background: transparent;
}
.woocommerce .quantity .input-text.qty.text, .woocommerce #content .quantity .input-text.qty.text,
.woocommerce-page .quantity .input-text.qty.text,
.woocommerce-page #content .quantity .input-text.qty.text {
  float: none;
  height: auto;
  border: none;
  width: 100%;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
  /* Product Catalog - Default Style */
  /* Product Catalog - Alternate Style */
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  line-height: normal;
  overflow: hidden;
}
.woocommerce ul.products li.product small,
.woocommerce-page ul.products li.product small {
  position: absolute;
  top: 50%;
  left: 0;
  background: #eb8e7a;
  color: white;
  padding: 10px;
}
.woocommerce ul.products li.product small a,
.woocommerce-page ul.products li.product small a {
  color: white !important;
}
.woocommerce ul.products li.product > a,
.woocommerce-page ul.products li.product > a {
  display: block;
}
.woocommerce ul.products li.product > a img,
.woocommerce-page ul.products li.product > a img {
  max-width: 100%;
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
}
.woocommerce ul.products li.product span.onsale,
.woocommerce-page ul.products li.product span.onsale {
  min-height: 32px;
  min-width: 32px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  line-height: 32px;
  top: 0 !important;
  right: 0 !important;
  margin: 0;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #eb8e7a;
  text-shadow: none;
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  z-index: 999;
}
.woocommerce ul.products li.product h3,
.woocommerce-page ul.products li.product h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-top: 0;
}
.woocommerce ul.products li.product .thumbnail-loop-wrap,
.woocommerce-page ul.products li.product .thumbnail-loop-wrap {
  position: relative;
}
.woocommerce ul.products li.product .thumbnail-loop-wrap img,
.woocommerce-page ul.products li.product .thumbnail-loop-wrap img {
  margin: 0;
}
.woocommerce ul.products li.product .title-rating-loop-wrap,
.woocommerce-page ul.products li.product .title-rating-loop-wrap {
  min-height: 60px;
  padding: 20px 0 20px 20px;
  border-left: 1px solid #f2f0f0;
}
.woocommerce ul.products li.product .title-rating-loop-wrap .product-seller-name,
.woocommerce-page ul.products li.product .title-rating-loop-wrap .product-seller-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 0 7px;
}
.woocommerce ul.products li.product .title-rating-loop-wrap .product-seller-name span,
.woocommerce-page ul.products li.product .title-rating-loop-wrap .product-seller-name span {
  text-transform: capitalize;
}
.woocommerce ul.products li.product .price-loop-wrap,
.woocommerce-page ul.products li.product .price-loop-wrap {
  float: right;
  max-width: 40%;
  padding: 20px 20px 20px 5px;
  min-height: 47px;
}
.woocommerce ul.products li.product .price-loop-wrap .price,
.woocommerce-page ul.products li.product .price-loop-wrap .price {
  padding: 15px 0;
  border-top: 1px solid #cb3818;
  border-bottom: 1px solid #cb3818;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 0;
  color: #cb3818;
  text-align: center;
}
.woocommerce ul.products li.product .price-loop-wrap .price del,
.woocommerce-page ul.products li.product .price-loop-wrap .price del {
  font-size: 12px;
}
.woocommerce ul.products li.product .price-loop-wrap .price ins,
.woocommerce-page ul.products li.product .price-loop-wrap .price ins {
  text-decoration: none;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: white;
  text-align: center;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .button,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .button {
  background: transparent;
  border: none;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .detail_button_loop,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .detail_button_loop,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward {
  padding: 8px 20px;
  margin: 0 3px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .detail_button_loop:hover,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button:hover,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward:hover,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .detail_button_loop:hover,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button:hover,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .detail_button_loop.added,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button.added,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward.added,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .detail_button_loop.added,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button.added,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward.added {
  opacity: 0 !important;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .detail_button_loop,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .detail_button_loop {
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
  -o-transform: translateY(300px);
  transform: translateY(300px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward {
  -webkit-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  -o-transform: translateY(-300px);
  transform: translateY(-300px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.woocommerce ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .add-to-cart-loop-wrap .added_to_cart.wc-forward {
  left: 45%;
  position: absolute;
}
.woocommerce ul.products li.product:hover .add-to-cart-loop-wrap,
.woocommerce-page ul.products li.product:hover .add-to-cart-loop-wrap {
  opacity: 0.9;
}
.woocommerce ul.products li.product:hover .add-to-cart-loop-wrap .detail_button_loop,
.woocommerce-page ul.products li.product:hover .add-to-cart-loop-wrap .detail_button_loop {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 1;
}
.woocommerce ul.products li.product:hover .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce ul.products li.product:hover .add-to-cart-loop-wrap .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product:hover .add-to-cart-loop-wrap .button.add_to_cart_button,
.woocommerce-page ul.products li.product:hover .add-to-cart-loop-wrap .added_to_cart.wc-forward {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 1;
}
.woocommerce ul.products li.product > a .thumbnail-style-2-wrap img,
.woocommerce-page ul.products li.product > a .thumbnail-style-2-wrap img {
  margin: 0;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  display: none;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper {
  text-align: center;
  margin-bottom: 15px;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price {
  padding: 15px 0;
  border-top: 1px solid #cb3818;
  border-bottom: 1px solid #cb3818;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 0;
  color: #cb3818 !important;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price del,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price del {
  font-size: 12px;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price ins,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .price-style-2-wrapper .price ins {
  text-decoration: none;
  color: #cb3818;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .title-style-2-wrapper,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .title-style-2-wrapper {
  text-align: center;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .title-style-2-wrapper h3,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .title-style-2-wrapper h3 {
  color: #372926;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .author-style-2-wrapper,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .author-style-2-wrapper {
  text-align: center;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .author-style-2-wrapper p,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .author-style-2-wrapper p {
  margin: 0;
  color: #9f9491;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper {
  margin-top: 20px;
  text-align: center;
  position: absolute;
  margin-left: 0;
  width: 100%;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added {
  display: none;
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added_to_cart.wc-forward {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added_to_cart.wc-forward:hover,
.woocommerce-page ul.products li.product .add-to-cart-style-2-loop-wrap .button-style-2-wrapper .added_to_cart.wc-forward:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce ul.products li.product:hover .add-to-cart-style-2-loop-wrap,
.woocommerce-page ul.products li.product:hover .add-to-cart-style-2-loop-wrap {
  display: block;
}
.woocommerce ul.products li.product .detail-action .button.add_to_cart_button.added,
.woocommerce-page ul.products li.product .detail-action .button.add_to_cart_button.added {
  display: none !important;
}
.woocommerce ul.products li.product .detail-action .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .detail-action .added_to_cart.wc-forward {
  padding: 8px 20px;
  margin: 0 3px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  top: 50%;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce ul.products li.product .detail-action .added_to_cart.wc-forward:hover,
.woocommerce-page ul.products li.product .detail-action .added_to_cart.wc-forward:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce ul.products li.product-hover-caption,
.woocommerce-page ul.products li.product-hover-caption {
  float: left;
}
.woocommerce ul.products li.product-hover-caption img,
.woocommerce-page ul.products li.product-hover-caption img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}
.woocommerce ul.products li.product-hover-caption figure,
.woocommerce-page ul.products li.product-hover-caption figure {
  position: relative;
  text-align: center;
}
.woocommerce ul.products li.product-hover-caption figure figcaption,
.woocommerce-page ul.products li.product-hover-caption figure figcaption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: white 0 0px 0px 0px inset;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.woocommerce ul.products li.product-hover-caption .product-caption,
.woocommerce-page ul.products li.product-hover-caption .product-caption {
  width: 260px;
  height: 240px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -130px;
  margin-top: -120px;
}
.woocommerce ul.products li.product-hover-caption span.price,
.woocommerce-page ul.products li.product-hover-caption span.price {
  padding: 15px 0;
  border-top: 1px solid #cb3818;
  border-bottom: 1px solid #cb3818;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 50px;
  display: inline-block !important;
  padding: 10px 0;
  -moz-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
  -moz-transition: ease-out 0.3s 0.5s;
  -o-transition: ease-out 0.3s 0.5s;
  -webkit-transition: ease-out 0.3s;
  -webkit-transition-delay: 0.5s;
  transition: ease-out 0.3s 0.5s;
  color: #cb3818 !important;
}
.woocommerce ul.products li.product-hover-caption .product-detail,
.woocommerce-page ul.products li.product-hover-caption .product-detail {
  margin-top: 20px;
  text-align: center;
  -moz-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
  -moz-transition: ease-out 0.3s 0.4s;
  -o-transition: ease-out 0.3s 0.4s;
  -webkit-transition: ease-out 0.3s;
  -webkit-transition-delay: 0.4s;
  transition: ease-out 0.3s 0.4s;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.woocommerce ul.products li.product-hover-caption .product-title,
.woocommerce-page ul.products li.product-hover-caption .product-title {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  line-height: 1.71429;
  color: #372926;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.4;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.woocommerce ul.products li.product-hover-caption .product-action,
.woocommerce-page ul.products li.product-hover-caption .product-action {
  display: inline-block;
  text-align: center;
  *zoom: 1;
  margin-top: 20px;
  -moz-transform: translateY(-300px);
  -ms-transform: translateY(-300px);
  -webkit-transform: translateY(-300px);
  transform: translateY(-300px);
  -moz-transition: ease-out 0.3s 0.3s;
  -o-transition: ease-out 0.3s 0.3s;
  -webkit-transition: ease-out 0.3s;
  -webkit-transition-delay: 0.3s;
  transition: ease-out 0.3s 0.3s;
}
.woocommerce ul.products li.product-hover-caption .product-action:before, .woocommerce ul.products li.product-hover-caption .product-action:after,
.woocommerce-page ul.products li.product-hover-caption .product-action:before,
.woocommerce-page ul.products li.product-hover-caption .product-action:after {
  content: "";
  display: table;
}
.woocommerce ul.products li.product-hover-caption .product-action:after,
.woocommerce-page ul.products li.product-hover-caption .product-action:after {
  clear: both;
}
.woocommerce ul.products li.product-hover-caption .product-action .button,
.woocommerce-page ul.products li.product-hover-caption .product-action .button {
  display: block;
  float: left;
  margin: 0 3px;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  text-shadow: none;
}
.woocommerce ul.products li.product-hover-caption .product-action .button:hover,
.woocommerce-page ul.products li.product-hover-caption .product-action .button:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce ul.products li.product-hover-caption .product-action .button.added,
.woocommerce-page ul.products li.product-hover-caption .product-action .button.added {
  display: none;
}
.woocommerce ul.products li.product-hover-caption .product-action .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product-hover-caption .product-action .added_to_cart.wc-forward {
  display: block;
  float: left;
  margin: 13px 3px 0;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce ul.products li.product-hover-caption .product-action .added_to_cart.wc-forward:hover,
.woocommerce-page ul.products li.product-hover-caption .product-action .added_to_cart.wc-forward:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce ul.products li.product-hover-caption:hover figure figcaption, .woocommerce ul.products li.product-hover-caption:focus figure figcaption,
.woocommerce-page ul.products li.product-hover-caption:hover figure figcaption,
.woocommerce-page ul.products li.product-hover-caption:focus figure figcaption {
  visibility: visible;
  opacity: 1;
  box-shadow: white 0 0px 0px 260px inset;
}
.woocommerce ul.products li.product-hover-caption:hover .price, .woocommerce ul.products li.product-hover-caption:focus .price,
.woocommerce-page ul.products li.product-hover-caption:hover .price,
.woocommerce-page ul.products li.product-hover-caption:focus .price {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.woocommerce ul.products li.product-hover-caption:hover .product-detail, .woocommerce ul.products li.product-hover-caption:focus .product-detail,
.woocommerce-page ul.products li.product-hover-caption:hover .product-detail,
.woocommerce-page ul.products li.product-hover-caption:focus .product-detail {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.woocommerce ul.products li.product-hover-caption:hover .product-action, .woocommerce ul.products li.product-hover-caption:focus .product-action,
.woocommerce-page ul.products li.product-hover-caption:hover .product-action,
.woocommerce-page ul.products li.product-hover-caption:focus .product-action {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.woocommerce div.product, .woocommerce #content div.product,
.woocommerce-page div.product,
.woocommerce-page #content div.product {
  *zoom: 1;
}
.woocommerce div.product:before, .woocommerce div.product:after, .woocommerce #content div.product:before, .woocommerce #content div.product:after,
.woocommerce-page div.product:before,
.woocommerce-page div.product:after,
.woocommerce-page #content div.product:before,
.woocommerce-page #content div.product:after {
  content: "";
  display: table;
}
.woocommerce div.product:after, .woocommerce #content div.product:after,
.woocommerce-page div.product:after,
.woocommerce-page #content div.product:after {
  clear: both;
}
.woocommerce div.product span.onsale, .woocommerce #content div.product span.onsale,
.woocommerce-page div.product span.onsale,
.woocommerce-page #content div.product span.onsale {
  min-height: 32px;
  min-width: 32px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  line-height: 32px;
  top: 0 !important;
  left: 0 !important;
  margin: 0;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #eb8e7a;
  text-shadow: none;
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  z-index: 999;
}
.woocommerce div.product div.images, .woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
  float: none;
  width: 100%;
  margin-bottom: 0;
}
.woocommerce div.product div.images img, .woocommerce #content div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce-page #content div.product div.images img {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.woocommerce div.product div.images div.thumbnails, .woocommerce #content div.product div.images div.thumbnails,
.woocommerce-page div.product div.images div.thumbnails,
.woocommerce-page #content div.product div.images div.thumbnails {
  *zoom: 1;
  width: 100%;
  margin: 0;
  padding: 30px 0 0;
  text-align: center;
  text-align: center;
}
.woocommerce div.product div.images div.thumbnails:before, .woocommerce div.product div.images div.thumbnails:after, .woocommerce #content div.product div.images div.thumbnails:before, .woocommerce #content div.product div.images div.thumbnails:after,
.woocommerce-page div.product div.images div.thumbnails:before,
.woocommerce-page div.product div.images div.thumbnails:after,
.woocommerce-page #content div.product div.images div.thumbnails:before,
.woocommerce-page #content div.product div.images div.thumbnails:after {
  content: "";
  display: table;
}
.woocommerce div.product div.images div.thumbnails:after, .woocommerce #content div.product div.images div.thumbnails:after,
.woocommerce-page div.product div.images div.thumbnails:after,
.woocommerce-page #content div.product div.images div.thumbnails:after {
  clear: both;
}
.woocommerce div.product div.images div.thumbnails a, .woocommerce div.product div.images div.thumbnails a.first, .woocommerce div.product div.images div.thumbnails a.last, .woocommerce #content div.product div.images div.thumbnails a, .woocommerce #content div.product div.images div.thumbnails a.first, .woocommerce #content div.product div.images div.thumbnails a.last,
.woocommerce-page div.product div.images div.thumbnails a,
.woocommerce-page div.product div.images div.thumbnails a.first,
.woocommerce-page div.product div.images div.thumbnails a.last,
.woocommerce-page #content div.product div.images div.thumbnails a,
.woocommerce-page #content div.product div.images div.thumbnails a.first,
.woocommerce-page #content div.product div.images div.thumbnails a.last {
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20%;
  clear: none;
  float: none;
  padding: 0;
  margin: 0;
}
.woocommerce div.product div.images div.thumbnails img, .woocommerce #content div.product div.images div.thumbnails img,
.woocommerce-page div.product div.images div.thumbnails img,
.woocommerce-page #content div.product div.images div.thumbnails img {
  width: 100%;
}
.woocommerce div.product .product-thumbnail.product-images, .woocommerce #content div.product .product-thumbnail.product-images,
.woocommerce-page div.product .product-thumbnail.product-images,
.woocommerce-page #content div.product .product-thumbnail.product-images {
  position: relative;
  margin-bottom: 40px;
}
.woocommerce div.product .product-thumbnail.product-images a, .woocommerce #content div.product .product-thumbnail.product-images a,
.woocommerce-page div.product .product-thumbnail.product-images a,
.woocommerce-page #content div.product .product-thumbnail.product-images a {
  width: 100%;
}
.woocommerce div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-prev, .woocommerce #content div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-prev,
.woocommerce-page div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-prev,
.woocommerce-page #content div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-prev {
  position: absolute;
  bottom: 10%;
  left: 20px;
  background: white;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  padding: 10px;
  width: 25px;
  line-height: 25px;
  text-align: center;
}
.woocommerce div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-next, .woocommerce #content div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-next,
.woocommerce-page div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-next,
.woocommerce-page #content div.product .product-thumbnail.product-images .owl-controls .owl-buttons .owl-next {
  position: absolute;
  bottom: 10%;
  right: 20px;
  background: white;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  padding: 10px;
  width: 25px;
  line-height: 25px;
  text-align: center;
}
.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce #content div.product p.price, .woocommerce #content div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce-page #content div.product p.price,
.woocommerce-page #content div.product span.price {
  color: #cb3818;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins, .woocommerce #content div.product p.price ins, .woocommerce #content div.product span.price ins,
.woocommerce-page div.product p.price ins,
.woocommerce-page div.product span.price ins,
.woocommerce-page #content div.product p.price ins,
.woocommerce-page #content div.product span.price ins {
  text-decoration: none;
}
.woocommerce div.product form.cart, .woocommerce #content div.product form.cart,
.woocommerce-page div.product form.cart,
.woocommerce-page #content div.product form.cart {
  padding: 10px 0;
  margin: 0;
}
.woocommerce div.product form.cart div.quantity, .woocommerce #content div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity,
.woocommerce-page #content div.product form.cart div.quantity {
  margin: 0 10px 15px 0;
}
.woocommerce div.product form.cart div.quantity input, .woocommerce #content div.product form.cart div.quantity input,
.woocommerce-page div.product form.cart div.quantity input,
.woocommerce-page #content div.product form.cart div.quantity input {
  height: 36px !important;
  font-size: 14px;
}
.woocommerce div.product form.cart div.quantity input.minus, .woocommerce div.product form.cart div.quantity input.plus, .woocommerce #content div.product form.cart div.quantity input.minus, .woocommerce #content div.product form.cart div.quantity input.plus,
.woocommerce-page div.product form.cart div.quantity input.minus,
.woocommerce-page div.product form.cart div.quantity input.plus,
.woocommerce-page #content div.product form.cart div.quantity input.minus,
.woocommerce-page #content div.product form.cart div.quantity input.plus {
  top: 0 !important;
}
.woocommerce div.product form.cart .variations select, .woocommerce #content div.product form.cart .variations select,
.woocommerce-page div.product form.cart .variations select,
.woocommerce-page #content div.product form.cart .variations select {
  border-color: #919191;
  color: #919191;
}
.woocommerce div.product form.cart .single_variation, .woocommerce #content div.product form.cart .single_variation,
.woocommerce-page div.product form.cart .single_variation,
.woocommerce-page #content div.product form.cart .single_variation {
  padding-bottom: 20px;
  margin: 0;
  *zoom: 1;
}
.woocommerce div.product form.cart .single_variation:before, .woocommerce div.product form.cart .single_variation:after, .woocommerce #content div.product form.cart .single_variation:before, .woocommerce #content div.product form.cart .single_variation:after,
.woocommerce-page div.product form.cart .single_variation:before,
.woocommerce-page div.product form.cart .single_variation:after,
.woocommerce-page #content div.product form.cart .single_variation:before,
.woocommerce-page #content div.product form.cart .single_variation:after {
  content: "";
  display: table;
}
.woocommerce div.product form.cart .single_variation:after, .woocommerce #content div.product form.cart .single_variation:after,
.woocommerce-page div.product form.cart .single_variation:after,
.woocommerce-page #content div.product form.cart .single_variation:after {
  clear: both;
}
.woocommerce div.product div.summary, .woocommerce #content div.product div.summary,
.woocommerce-page div.product div.summary,
.woocommerce-page #content div.product div.summary {
  float: none;
  width: 100%;
  overflow: hidden;
  border-bottom: none;
  margin-bottom: 0;
  padding: 0 0 30px 50px;
  box-sizing: border-box;
}
.woocommerce div.product div.summary .single-left-wrap, .woocommerce #content div.product div.summary .single-left-wrap,
.woocommerce-page div.product div.summary .single-left-wrap,
.woocommerce-page #content div.product div.summary .single-left-wrap {
  float: left;
  width: 40%;
  padding: 50px;
}
.woocommerce div.product div.summary .single-right-wrap, .woocommerce #content div.product div.summary .single-right-wrap,
.woocommerce-page div.product div.summary .single-right-wrap,
.woocommerce-page #content div.product div.summary .single-right-wrap {
  float: right;
  width: 40%;
  padding: 50px;
}
.woocommerce div.product div.summary .single-right-wrap .price-rating-wrap, .woocommerce #content div.product div.summary .single-right-wrap .price-rating-wrap,
.woocommerce-page div.product div.summary .single-right-wrap .price-rating-wrap,
.woocommerce-page #content div.product div.summary .single-right-wrap .price-rating-wrap {
  overflow: hidden;
  border-bottom: 1px solid #f2f0f0;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.woocommerce div.product div.summary .single-right-wrap .price-rating-wrap .woocommerce-product-rating, .woocommerce #content div.product div.summary .single-right-wrap .price-rating-wrap .woocommerce-product-rating,
.woocommerce-page div.product div.summary .single-right-wrap .price-rating-wrap .woocommerce-product-rating,
.woocommerce-page #content div.product div.summary .single-right-wrap .price-rating-wrap .woocommerce-product-rating {
  float: right;
  width: 50%;
  margin-top: 10px;
}
.woocommerce div.product div.summary .single-right-wrap .price-rating-wrap .price, .woocommerce #content div.product div.summary .single-right-wrap .price-rating-wrap .price,
.woocommerce-page div.product div.summary .single-right-wrap .price-rating-wrap .price,
.woocommerce-page #content div.product div.summary .single-right-wrap .price-rating-wrap .price {
  padding: 15px 0;
  border-top: 1px solid #cb3818;
  border-bottom: 1px solid #cb3818;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  float: left;
  width: 50%;
  border-top: none;
  border-bottom: none;
  padding: 0;
  margin: 0;
  font-size: 30px;
  color: #77635f;
}
.woocommerce div.product div.summary .single-right-wrap .variations, .woocommerce #content div.product div.summary .single-right-wrap .variations,
.woocommerce-page div.product div.summary .single-right-wrap .variations,
.woocommerce-page #content div.product div.summary .single-right-wrap .variations {
  overflow: hidden;
  margin-bottom: 25px;
}
.woocommerce div.product div.summary .single-right-wrap .variations td.label, .woocommerce #content div.product div.summary .single-right-wrap .variations td.label,
.woocommerce-page div.product div.summary .single-right-wrap .variations td.label,
.woocommerce-page #content div.product div.summary .single-right-wrap .variations td.label {
  width: 50%;
}
.woocommerce div.product div.summary .single-right-wrap .variations td.value, .woocommerce #content div.product div.summary .single-right-wrap .variations td.value,
.woocommerce-page div.product div.summary .single-right-wrap .variations td.value,
.woocommerce-page #content div.product div.summary .single-right-wrap .variations td.value {
  width: 50%;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap {
  overflow: hidden;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .single_variation, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .single_variation,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .single_variation,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .single_variation {
  float: left;
  width: 50%;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .single_variation .price, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .single_variation .price,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .single_variation .price,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .single_variation .price {
  color: #77635f;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .variations_button, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .variations_button,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .variations_button,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .variations_button {
  float: right;
  width: 50%;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity {
  margin: 0 0 15px 0;
  padding: 0;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus {
  left: 0;
  top: 15%;
  font-size: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus:hover, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus:hover,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus:hover,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .minus:hover {
  background: transparent;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus {
  right: 0;
  top: 20%;
  font-size: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus:hover, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus:hover,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus:hover,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .plus:hover {
  background: transparent;
}
.woocommerce div.product div.summary .single-right-wrap .single_variation_wrap .quantity .input-text.qty.text, .woocommerce #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .input-text.qty.text,
.woocommerce-page div.product div.summary .single-right-wrap .single_variation_wrap .quantity .input-text.qty.text,
.woocommerce-page #content div.product div.summary .single-right-wrap .single_variation_wrap .quantity .input-text.qty.text {
  float: none;
  height: auto;
  border: none;
  width: 100%;
}
.woocommerce div.product .button.alt.single_add_to_cart_button, .woocommerce #content div.product .button.alt.single_add_to_cart_button,
.woocommerce-page div.product .button.alt.single_add_to_cart_button,
.woocommerce-page #content div.product .button.alt.single_add_to_cart_button {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 35px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  height: 40px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce div.product .button.alt.single_add_to_cart_button:hover, .woocommerce #content div.product .button.alt.single_add_to_cart_button:hover,
.woocommerce-page div.product .button.alt.single_add_to_cart_button:hover,
.woocommerce-page #content div.product .button.alt.single_add_to_cart_button:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce div.product .wc-main-content-right, .woocommerce #content div.product .wc-main-content-right,
.woocommerce-page div.product .wc-main-content-right,
.woocommerce-page #content div.product .wc-main-content-right {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  padding-top: 50px;
}
.woocommerce div.product .wc-main-content-right p.price, .woocommerce div.product .wc-main-content-right span.price, .woocommerce #content div.product .wc-main-content-right p.price, .woocommerce #content div.product .wc-main-content-right span.price,
.woocommerce-page div.product .wc-main-content-right p.price,
.woocommerce-page div.product .wc-main-content-right span.price,
.woocommerce-page #content div.product .wc-main-content-right p.price,
.woocommerce-page #content div.product .wc-main-content-right span.price {
  margin: 0;
  padding: 0;
  border-top: 0;
  border-bottom: 0;
  text-align: center;
  font-size: 20px;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap {
  text-align: center;
  *zoom: 1;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap:before, .woocommerce div.product .wc-main-content-right .single_variation_wrap:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap:before, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap:before,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap:before,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap:after {
  content: "";
  display: table;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap:after {
  clear: both;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .single_variation, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .single_variation,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .single_variation,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .single_variation {
  padding-bottom: 20px;
  margin: 0;
  *zoom: 1;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .single_variation:before, .woocommerce div.product .wc-main-content-right .single_variation_wrap .single_variation:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .single_variation:before, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .single_variation:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .single_variation:before,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .single_variation:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .single_variation:before,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .single_variation:after {
  content: "";
  display: table;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .single_variation:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .single_variation:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .single_variation:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .single_variation:after {
  clear: both;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .single_variation .price, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .single_variation .price,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .single_variation .price,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .single_variation .price {
  padding: 10px 0;
  text-align: center;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .variations_button, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .variations_button,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .variations_button,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .variations_button {
  padding-bottom: 20px;
  margin: 0;
  *zoom: 1;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .variations_button:before, .woocommerce div.product .wc-main-content-right .single_variation_wrap .variations_button:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .variations_button:before, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .variations_button:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .variations_button:before,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .variations_button:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .variations_button:before,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .variations_button:after {
  content: "";
  display: table;
}
.woocommerce div.product .wc-main-content-right .single_variation_wrap .variations_button:after, .woocommerce #content div.product .wc-main-content-right .single_variation_wrap .variations_button:after,
.woocommerce-page div.product .wc-main-content-right .single_variation_wrap .variations_button:after,
.woocommerce-page #content div.product .wc-main-content-right .single_variation_wrap .variations_button:after {
  clear: both;
}
.woocommerce div.product .wc-main-content-right form.cart, .woocommerce #content div.product .wc-main-content-right form.cart,
.woocommerce-page div.product .wc-main-content-right form.cart,
.woocommerce-page #content div.product .wc-main-content-right form.cart {
  margin: 30px 0 0 !important;
}
.woocommerce div.product .wc-main-content-right form.cart .quantity, .woocommerce #content div.product .wc-main-content-right form.cart .quantity,
.woocommerce-page div.product .wc-main-content-right form.cart .quantity,
.woocommerce-page #content div.product .wc-main-content-right form.cart .quantity {
  display: block;
  width: 100%;
}
.woocommerce div.product .wc-main-content-right form.cart .quantity input, .woocommerce #content div.product .wc-main-content-right form.cart .quantity input,
.woocommerce-page div.product .wc-main-content-right form.cart .quantity input,
.woocommerce-page #content div.product .wc-main-content-right form.cart .quantity input {
  height: 24px !important;
}
.woocommerce div.product .wc-main-content-right form.cart .variations td.label, .woocommerce div.product .wc-main-content-right form.cart .variations td.value, .woocommerce #content div.product .wc-main-content-right form.cart .variations td.label, .woocommerce #content div.product .wc-main-content-right form.cart .variations td.value,
.woocommerce-page div.product .wc-main-content-right form.cart .variations td.label,
.woocommerce-page div.product .wc-main-content-right form.cart .variations td.value,
.woocommerce-page #content div.product .wc-main-content-right form.cart .variations td.label,
.woocommerce-page #content div.product .wc-main-content-right form.cart .variations td.value {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.woocommerce div.product .wc-main-content-right form.cart .single_add_to_cart_button.button.alt, .woocommerce #content div.product .wc-main-content-right form.cart .single_add_to_cart_button.button.alt,
.woocommerce-page div.product .wc-main-content-right form.cart .single_add_to_cart_button.button.alt,
.woocommerce-page #content div.product .wc-main-content-right form.cart .single_add_to_cart_button.button.alt {
  display: block;
  width: 100%;
}
.woocommerce div.product .wc-main-content-right .legal-info, .woocommerce #content div.product .wc-main-content-right .legal-info,
.woocommerce-page div.product .wc-main-content-right .legal-info,
.woocommerce-page #content div.product .wc-main-content-right .legal-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f2f0f0;
  text-align: justify;
}
.woocommerce div.product .wc-main-content-right .legal-info p, .woocommerce #content div.product .wc-main-content-right .legal-info p,
.woocommerce-page div.product .wc-main-content-right .legal-info p,
.woocommerce-page #content div.product .wc-main-content-right .legal-info p {
  margin: 0 0 10px;
}
.woocommerce div.product .wc-main-content-right .legal-link, .woocommerce #content div.product .wc-main-content-right .legal-link,
.woocommerce-page div.product .wc-main-content-right .legal-link,
.woocommerce-page #content div.product .wc-main-content-right .legal-link {
  display: inline-block;
  font-size: 11px;
  padding: 0 5px;
  line-height: normal;
  color: #9f9491;
}
.woocommerce div.product .wc-main-content-right .legal-link.license, .woocommerce #content div.product .wc-main-content-right .legal-link.license,
.woocommerce-page div.product .wc-main-content-right .legal-link.license,
.woocommerce-page #content div.product .wc-main-content-right .legal-link.license {
  border-right: 1px solid;
}
.woocommerce div.product .wc-main-content-right .woocommerce-product-rating, .woocommerce #content div.product .wc-main-content-right .woocommerce-product-rating,
.woocommerce-page div.product .wc-main-content-right .woocommerce-product-rating,
.woocommerce-page #content div.product .wc-main-content-right .woocommerce-product-rating {
  padding: 10px 0;
}
.woocommerce div.product .wc-main-content-right h3.title-item-details, .woocommerce #content div.product .wc-main-content-right h3.title-item-details,
.woocommerce-page div.product .wc-main-content-right h3.title-item-details,
.woocommerce-page #content div.product .wc-main-content-right h3.title-item-details {
  font-family: 'Maven Pro', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #999999;
  margin: 30px 0 20px;
  display: block;
  padding: 30px 0 0;
  border-top: 1px solid #f2f0f0;
}
.woocommerce div.product .wc-main-content-right ul.list-item-details, .woocommerce #content div.product .wc-main-content-right ul.list-item-details,
.woocommerce-page div.product .wc-main-content-right ul.list-item-details,
.woocommerce-page #content div.product .wc-main-content-right ul.list-item-details {
  font-family: 'Maven Pro', sans-serif;
  margin: 0;
  padding: 0;
}
.woocommerce div.product .wc-main-content-right ul.list-item-details li, .woocommerce #content div.product .wc-main-content-right ul.list-item-details li,
.woocommerce-page div.product .wc-main-content-right ul.list-item-details li,
.woocommerce-page #content div.product .wc-main-content-right ul.list-item-details li {
  list-style: none;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #f2f0f0;
  color: #372926;
}
.woocommerce div.product .wc-main-content-right ul.list-item-details li .data-type, .woocommerce #content div.product .wc-main-content-right ul.list-item-details li .data-type,
.woocommerce-page div.product .wc-main-content-right ul.list-item-details li .data-type,
.woocommerce-page #content div.product .wc-main-content-right ul.list-item-details li .data-type {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
}
.woocommerce div.product .wc-main-content-right ul.list-item-details li .value, .woocommerce #content div.product .wc-main-content-right ul.list-item-details li .value,
.woocommerce-page div.product .wc-main-content-right ul.list-item-details li .value,
.woocommerce-page #content div.product .wc-main-content-right ul.list-item-details li .value {
  color: #999999;
  display: block;
}
.woocommerce div.product .wc-main-content-right ul.list-item-details li .no-detail, .woocommerce #content div.product .wc-main-content-right ul.list-item-details li .no-detail,
.woocommerce-page div.product .wc-main-content-right ul.list-item-details li .no-detail,
.woocommerce-page #content div.product .wc-main-content-right ul.list-item-details li .no-detail {
  font-style: italic;
  color: #999999;
  border-top: 1px solid #f2f0f0;
  padding-top: 10px;
  display: block;
}
.woocommerce div.product .wc-main-content-right .product_meta, .woocommerce #content div.product .wc-main-content-right .product_meta,
.woocommerce-page div.product .wc-main-content-right .product_meta,
.woocommerce-page #content div.product .wc-main-content-right .product_meta {
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.woocommerce div.product .wc-main-content-right .product_meta .sku_wrapper, .woocommerce #content div.product .wc-main-content-right .product_meta .sku_wrapper,
.woocommerce-page div.product .wc-main-content-right .product_meta .sku_wrapper,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .sku_wrapper {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #f2f0f0;
  font-weight: bold;
  color: #372926;
  text-transform: uppercase;
}
.woocommerce div.product .wc-main-content-right .product_meta .sku_wrapper span.sku, .woocommerce #content div.product .wc-main-content-right .product_meta .sku_wrapper span.sku,
.woocommerce-page div.product .wc-main-content-right .product_meta .sku_wrapper span.sku,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .sku_wrapper span.sku {
  font-weight: normal;
  color: #999999;
}
.woocommerce div.product .wc-main-content-right .product_meta .soldby_wrapper,
.woocommerce div.product .wc-main-content-right .product_meta .posted_in,
.woocommerce div.product .wc-main-content-right .product_meta .tagged_as, .woocommerce #content div.product .wc-main-content-right .product_meta .soldby_wrapper,
.woocommerce #content div.product .wc-main-content-right .product_meta .posted_in,
.woocommerce #content div.product .wc-main-content-right .product_meta .tagged_as,
.woocommerce-page div.product .wc-main-content-right .product_meta .soldby_wrapper,
.woocommerce-page div.product .wc-main-content-right .product_meta .posted_in,
.woocommerce-page div.product .wc-main-content-right .product_meta .tagged_as,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .soldby_wrapper,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .posted_in,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .tagged_as {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #f2f0f0;
  font-weight: bold;
  color: #372926;
  text-transform: uppercase;
}
.woocommerce div.product .wc-main-content-right .product_meta .soldby_wrapper a,
.woocommerce div.product .wc-main-content-right .product_meta .posted_in a,
.woocommerce div.product .wc-main-content-right .product_meta .tagged_as a, .woocommerce #content div.product .wc-main-content-right .product_meta .soldby_wrapper a,
.woocommerce #content div.product .wc-main-content-right .product_meta .posted_in a,
.woocommerce #content div.product .wc-main-content-right .product_meta .tagged_as a,
.woocommerce-page div.product .wc-main-content-right .product_meta .soldby_wrapper a,
.woocommerce-page div.product .wc-main-content-right .product_meta .posted_in a,
.woocommerce-page div.product .wc-main-content-right .product_meta .tagged_as a,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .soldby_wrapper a,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .posted_in a,
.woocommerce-page #content div.product .wc-main-content-right .product_meta .tagged_as a {
  text-transform: capitalize;
  font-weight: normal;
  color: #999999;
}
.woocommerce div.product div.woocommerce-tabs, .woocommerce #content div.product div.woocommerce-tabs,
.woocommerce-page div.product div.woocommerce-tabs,
.woocommerce-page #content div.product div.woocommerce-tabs {
  padding: 0px 0 0 50px;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs, .woocommerce #content div.product div.woocommerce-tabs ul.tabs,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs {
  padding-left: 0;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li {
  border: none;
  background: transparent;
  display: inline-block;
  position: relative;
  z-index: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  margin: 0 3px 10px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #919191;
  box-shadow: #919191 0 0px 0px 2px inset;
  top: 50%;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li:after, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li:after,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li:after,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li:after {
  right: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  -moz-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-width: 0 !important;
  box-shadow: none !important;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li:before, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li:before,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li:before,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li:before {
  left: -6px;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border-width: 0;
  box-shadow: none;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li a, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li a,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li a {
  color: #919191;
  padding: 8px 20px;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li:hover, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li:hover,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li:hover,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li:hover {
  box-shadow: #919191 0 0px 0px 40px inset;
  color: white;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li:hover a, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li:hover a {
  text-shadow: none;
  color: white;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li.active, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li.active,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li.active,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li.active {
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li.active:after, .woocommerce div.product div.woocommerce-tabs ul.tabs li.active:before, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li.active:after, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li.active:before,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li.active:after,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li.active:before,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li.active:after,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li.active:before {
  box-shadow: none;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs li.active a, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs li.active a,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li.active a {
  color: #eb8e7a;
}
.woocommerce div.product div.woocommerce-tabs ul.tabs:before, .woocommerce #content div.product div.woocommerce-tabs ul.tabs:before,
.woocommerce-page div.product div.woocommerce-tabs ul.tabs:before,
.woocommerce-page #content div.product div.woocommerce-tabs ul.tabs:before {
  border-bottom: none;
}
.woocommerce div.product div.woocommerce-tabs .panel h2, .woocommerce div.product div.woocommerce-tabs .panel h3, .woocommerce #content div.product div.woocommerce-tabs .panel h2, .woocommerce #content div.product div.woocommerce-tabs .panel h3,
.woocommerce-page div.product div.woocommerce-tabs .panel h2,
.woocommerce-page div.product div.woocommerce-tabs .panel h3,
.woocommerce-page #content div.product div.woocommerce-tabs .panel h2,
.woocommerce-page #content div.product div.woocommerce-tabs .panel h3 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #77635f;
}
.woocommerce div.product div.woocommerce-tabs .panel #reviews #respond form p, .woocommerce #content div.product div.woocommerce-tabs .panel #reviews #respond form p,
.woocommerce-page div.product div.woocommerce-tabs .panel #reviews #respond form p,
.woocommerce-page #content div.product div.woocommerce-tabs .panel #reviews #respond form p {
  width: 100%;
}
.woocommerce div.product div.woocommerce-tabs .panel #reviews #respond form p label, .woocommerce #content div.product div.woocommerce-tabs .panel #reviews #respond form p label,
.woocommerce-page div.product div.woocommerce-tabs .panel #reviews #respond form p label,
.woocommerce-page #content div.product div.woocommerce-tabs .panel #reviews #respond form p label {
  position: relative;
  left: 0;
  line-height: 35px;
}
.woocommerce div.product div.woocommerce-tabs .panel #reviews #respond form #submit, .woocommerce #content div.product div.woocommerce-tabs .panel #reviews #respond form #submit,
.woocommerce-page div.product div.woocommerce-tabs .panel #reviews #respond form #submit,
.woocommerce-page #content div.product div.woocommerce-tabs .panel #reviews #respond form #submit {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.woocommerce div.product div.woocommerce-tabs .panel #reviews #respond form #submit:hover, .woocommerce #content div.product div.woocommerce-tabs .panel #reviews #respond form #submit:hover,
.woocommerce-page div.product div.woocommerce-tabs .panel #reviews #respond form #submit:hover,
.woocommerce-page #content div.product div.woocommerce-tabs .panel #reviews #respond form #submit:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.woocommerce #reviews h3,
.woocommerce-page #reviews h3 {
  padding: 36px 0 36px 40px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
}
.woocommerce #commentform,
.woocommerce-page #commentform {
  *zoom: 1;
}
.woocommerce #commentform:before, .woocommerce #commentform:after,
.woocommerce-page #commentform:before,
.woocommerce-page #commentform:after {
  content: "";
  display: table;
}
.woocommerce #commentform:after,
.woocommerce-page #commentform:after {
  clear: both;
}
.woocommerce #review_form #respond,
.woocommerce-page #review_form #respond {
  margin-top: 50px !important;
  width: 100% !important;
}
.woocommerce .upsells.products h2,
.woocommerce .related.products h2,
.woocommerce-page .upsells.products h2,
.woocommerce-page .related.products h2 {
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  margin: 0;
  padding: 30px 0;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #9f9491;
}
.woocommerce .upsells.products ul.products,
.woocommerce .related.products ul.products,
.woocommerce-page .upsells.products ul.products,
.woocommerce-page .related.products ul.products {
  width: 100%;
  margin: 0;
}
.woocommerce .upsells.products ul.products li.product,
.woocommerce .related.products ul.products li.product,
.woocommerce-page .upsells.products ul.products li.product,
.woocommerce-page .related.products ul.products li.product {
  width: 25% !important;
}
.woocommerce .upsells.products ul.products li.product.first,
.woocommerce .related.products ul.products li.product.first,
.woocommerce-page .upsells.products ul.products li.product.first,
.woocommerce-page .related.products ul.products li.product.first {
  clear: none;
}
.woocommerce .cross-sells h2,
.woocommerce-page .cross-sells h2 {
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  margin: 0;
  padding: 30px 0;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #9f9491;
}
.woocommerce .cross-sells ul.products,
.woocommerce-page .cross-sells ul.products {
  border-right: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  width: 100%;
  margin: 0;
}
.woocommerce .cross-sells ul.products li.product,
.woocommerce-page .cross-sells ul.products li.product {
  width: 50% !important;
}
.woocommerce table.cart .product-thumbnail, .woocommerce #content table.cart .product-thumbnail,
.woocommerce-page table.cart .product-thumbnail,
.woocommerce-page #content table.cart .product-thumbnail {
  width: 100px;
  max-width: 100px;
}
.woocommerce table.cart img, .woocommerce #content table.cart img,
.woocommerce-page table.cart img,
.woocommerce-page #content table.cart img {
  width: 100%;
  max-width: 100%;
}
.woocommerce table.cart td.actions .input-text, .woocommerce #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text {
  min-width: 150px;
  text-align: center;
}
.woocommerce table.cart tr td.product-name, .woocommerce #content table.cart tr td.product-name,
.woocommerce-page table.cart tr td.product-name,
.woocommerce-page #content table.cart tr td.product-name {
  line-height: normal;
}
.woocommerce table.cart tr td.product-name dl.variation, .woocommerce #content table.cart tr td.product-name dl.variation,
.woocommerce-page table.cart tr td.product-name dl.variation,
.woocommerce-page #content table.cart tr td.product-name dl.variation {
  line-height: 15px;
}
.woocommerce table.cart tr td.product-name dl.variation dd, .woocommerce #content table.cart tr td.product-name dl.variation dd,
.woocommerce-page table.cart tr td.product-name dl.variation dd,
.woocommerce-page #content table.cart tr td.product-name dl.variation dd {
  margin: 0;
  padding: 0;
}
.woocommerce table.cart tr td.product-name dl.variation dd p, .woocommerce #content table.cart tr td.product-name dl.variation dd p,
.woocommerce-page table.cart tr td.product-name dl.variation dd p,
.woocommerce-page #content table.cart tr td.product-name dl.variation dd p {
  line-height: 15px;
}
.woocommerce table.cart.shop_table .quantity, .woocommerce #content table.cart.shop_table .quantity,
.woocommerce-page table.cart.shop_table .quantity,
.woocommerce-page #content table.cart.shop_table .quantity {
  width: 80px;
}
.woocommerce .shop_table,
.woocommerce-page .shop_table {
  width: 100%;
  border: none !important;
}
.woocommerce .shop_table thead,
.woocommerce-page .shop_table thead {
  background: #cb3818;
}
.woocommerce .shop_table thead tr th,
.woocommerce-page .shop_table thead tr th {
  padding: 10px;
  font-family: 'Merriweather Sans', sans-serif;
  color: white;
  text-transform: uppercase;
  text-align: left;
}
.woocommerce .shop_table tbody,
.woocommerce-page .shop_table tbody {
  color: #898989;
  font-size: 12px;
  line-height: 2;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: normal;
}
.woocommerce .shop_table tbody .cart_table_item,
.woocommerce-page .shop_table tbody .cart_table_item {
  padding: 10px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.woocommerce .shop_table tbody .cart_table_item td,
.woocommerce-page .shop_table tbody .cart_table_item td {
  padding: 10px;
  border-bottom: 1px solid #f2f0f0;
  margin: 0 5px;
}
.woocommerce .shop_table tbody img,
.woocommerce-page .shop_table tbody img {
  width: 70px;
}
.woocommerce .shop_table tbody tr td dl.variation dd,
.woocommerce-page .shop_table tbody tr td dl.variation dd {
  margin: 0;
}
.woocommerce .shop_table tbody tr td dl.variation dd p,
.woocommerce-page .shop_table tbody tr td dl.variation dd p {
  margin: 1px;
}
.woocommerce .shop_table .quantity,
.woocommerce-page .shop_table .quantity {
  width: 120px;
  margin: 0 !important;
}
.woocommerce .shop_table .button,
.woocommerce-page .shop_table .button {
  background: none;
  border: none;
  padding: 10px 5%;
}
.woocommerce .shop_table .actions,
.woocommerce-page .shop_table .actions {
  padding-top: 20px;
}
.woocommerce .shop_table .coupon,
.woocommerce-page .shop_table .coupon {
  position: relative;
  text-align: left;
}
.woocommerce .shop_table .coupon label,
.woocommerce-page .shop_table .coupon label {
  position: absolute;
  top: 7px;
  left: 20px;
  -moz-transition: ease-out 0.3s;
  -o-transition: ease-out 0.3s;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
}
.woocommerce .shop_table .coupon .input-text,
.woocommerce-page .shop_table .coupon .input-text {
  padding: 8px 20px;
  border: 2px solid #d1d1d1;
  display: block;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 2;
  line-height: 1;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  width: 100%;
  float: left;
}
.woocommerce .shop_table .coupon .input-text:focus, .woocommerce .shop_table .coupon .input-text.filled,
.woocommerce-page .shop_table .coupon .input-text:focus,
.woocommerce-page .shop_table .coupon .input-text.filled {
  border: 2px solid #eb8e7a;
  outline: #eb8e7a;
}
.woocommerce .shop_table .coupon .input-text:focus + label, .woocommerce .shop_table .coupon .input-text.filled + label,
.woocommerce-page .shop_table .coupon .input-text:focus + label,
.woocommerce-page .shop_table .coupon .input-text.filled + label {
  left: calc(100% - 261px);
  top: 6px;
  padding-right: 10px;
  padding-left: 10px;
  background: #eb8e7a;
  color: white;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-style: normal;
}
.woocommerce .shop_table .coupon .button,
.woocommerce-page .shop_table .coupon .button {
  margin-left: 10px;
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  margin-top: 50px;
  *zoom: 1;
}
.woocommerce .cart-collaterals:before, .woocommerce .cart-collaterals:after,
.woocommerce-page .cart-collaterals:before,
.woocommerce-page .cart-collaterals:after {
  content: "";
  display: table;
}
.woocommerce .cart-collaterals:after,
.woocommerce-page .cart-collaterals:after {
  clear: both;
}
.woocommerce .cart-collaterals h2,
.woocommerce-page .cart-collaterals h2 {
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  margin: 0;
  padding: 30px 0;
  text-align: center;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #9f9491;
}
.woocommerce .cart-collaterals .cart_totals table,
.woocommerce-page .cart-collaterals .cart_totals table {
  color: #898989;
  width: 100%;
}
.woocommerce .cart-collaterals .cart_totals table td, .woocommerce .cart-collaterals .cart_totals table th,
.woocommerce-page .cart-collaterals .cart_totals table td,
.woocommerce-page .cart-collaterals .cart_totals table th {
  padding: 20px 0;
  text-align: left;
  font-weight: normal;
}
.woocommerce .cart-collaterals .cart_totals table td,
.woocommerce-page .cart-collaterals .cart_totals table td {
  color: #000000;
  font-weight: bold;
  font-size: 12px;
  line-height: 2;
}
.woocommerce .cart-collaterals .cart_totals table tr,
.woocommerce-page .cart-collaterals .cart_totals table tr {
  border-bottom: 1px solid #f2f0f0;
}
.woocommerce .cart-collaterals .note,
.woocommerce-page .cart-collaterals .note {
  color: #898989;
  font-size: 12px;
  font-style: italic;
}
.woocommerce .cart-collaterals .shipping-calculator-form,
.woocommerce-page .cart-collaterals .shipping-calculator-form {
  padding-top: 20px;
}
.woocommerce .checkout,
.woocommerce-page .checkout {
  margin: 38px 0;
  position: relative;
}
.woocommerce .checkout .woocommerce-billing-fields h3,
.woocommerce-page .checkout .woocommerce-billing-fields h3 {
  padding: 30px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
}
.woocommerce .checkout .woocommerce-billing-fields h3:before,
.woocommerce-page .checkout .woocommerce-billing-fields h3:before {
  font-family: "Simple-Line-Icons";
  content: "\e034";
  font-size: 25px;
  line-height: 1;
  color: #f4d0c8;
  position: absolute;
  top: 30px;
  left: 0;
}
.woocommerce .checkout .woocommerce-billing-fields p,
.woocommerce-page .checkout .woocommerce-billing-fields p {
  width: 50%;
  padding-right: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.woocommerce .checkout .woocommerce-shipping-fields h3,
.woocommerce-page .checkout .woocommerce-shipping-fields h3 {
  padding: 30px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
  width: 100%;
}
.woocommerce .checkout .woocommerce-shipping-fields h3:before,
.woocommerce-page .checkout .woocommerce-shipping-fields h3:before {
  font-family: "Simple-Line-Icons";
  content: "\e034";
  font-size: 25px;
  line-height: 1;
  color: #f4d0c8;
  position: absolute;
  top: 30px;
  left: 0;
}
.woocommerce .checkout #customer_details,
.woocommerce-page .checkout #customer_details {
  margin-bottom: 50px;
}
.woocommerce .checkout #order_review_heading,
.woocommerce-page .checkout #order_review_heading {
  padding: 30px 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #f2f0f0;
  border-bottom: 1px solid #f2f0f0;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
}
.woocommerce .checkout #order_review_heading:before,
.woocommerce-page .checkout #order_review_heading:before {
  font-family: "Simple-Line-Icons";
  content: "\e034";
  font-size: 25px;
  line-height: 1;
  color: #f4d0c8;
  position: absolute;
  top: 30px;
  left: 0;
}
.woocommerce .checkout #order_review,
.woocommerce-page .checkout #order_review {
  margin-top: 40px;
}
.woocommerce .checkout #order_review .shop_table th,
.woocommerce-page .checkout #order_review .shop_table th {
  text-align: left;
  padding: 10px;
}
.woocommerce .checkout #order_review .shop_table .order-total,
.woocommerce-page .checkout #order_review .shop_table .order-total {
  background: #cb3818;
  color: white;
}
.woocommerce .checkout #order_review tbody th, .woocommerce .checkout #order_review tbody td,
.woocommerce-page .checkout #order_review tbody th,
.woocommerce-page .checkout #order_review tbody td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #f2f0f0;
}
.woocommerce .checkout #order_review .payment_methods,
.woocommerce-page .checkout #order_review .payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 50px 0 0;
  padding: 20px;
}
.woocommerce .checkout #order_review .payment_methods label,
.woocommerce-page .checkout #order_review .payment_methods label {
  color: #77635f;
  font-size: 12px;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: bold;
  font-size: 12px;
}
.woocommerce .checkout #order_review .payment_methods li,
.woocommerce-page .checkout #order_review .payment_methods li {
  padding: 10px 0;
}
.woocommerce .checkout #order_review .button,
.woocommerce-page .checkout #order_review .button {
  border: none;
  background: none;
}
.woocommerce #payment .place-order,
.woocommerce-page #payment .place-order {
  padding: 20px;
  margin: 0;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  height: 40px;
  border-radius: 20px;
  font-size: 15px;
  padding: 0 35px;
}
.woocommerce .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li,
.woocommerce-page .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li {
  border: none;
}
.woocommerce .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li a,
.woocommerce-page .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li a {
  line-height: 1.4;
}
.woocommerce .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li img,
.woocommerce-page .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 0;
  margin: 0 0 0 10px;
}
.woocommerce .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li .quantity,
.woocommerce-page .widget_shopping_cart .widget_shopping_cart_content ul.product_list_widget li .quantity {
  border: none !important;
}
.woocommerce .widget_shopping_cart .widget_shopping_cart_content .total,
.woocommerce-page .widget_shopping_cart .widget_shopping_cart_content .total {
  border: none;
  padding: 5px;
}
.woocommerce .widget_product_categories ul.product-categories li,
.woocommerce-page .widget_product_categories ul.product-categories li {
  padding-left: 15px;
  position: relative;
}
.woocommerce .widget_product_categories ul.product-categories li:before,
.woocommerce-page .widget_product_categories ul.product-categories li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 5px;
  height: 5px;
  background: #eb8e7a;
}
.woocommerce ul.product_list_widget li,
.woocommerce-page ul.product_list_widget li {
  border-bottom: 1px solid #f2f0f0;
  padding: 10px 0;
}
.woocommerce ul.product_list_widget li:first-child,
.woocommerce-page ul.product_list_widget li:first-child {
  border-top: 1px solid #f2f0f0;
}
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.product_list_widget li img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 0;
  margin: 0 0 0 10px;
}
.woocommerce ul.product_list_widget li .star-rating,
.woocommerce-page ul.product_list_widget li .star-rating {
  position: relative;
  margin-bottom: 10px;
}

/* product columns */
.woocommerce-product-col-4.woocommerce ul.products li.product, .woocommerce-product-col-4.woocommerce-page ul.products li.product {
  width: 25%;
}

.woocommerce-product-col-3.woocommerce ul.products li.product, .woocommerce-product-col-3.woocommerce-page ul.products li.product {
  width: 33.33333333333333%;
}

.woocommerce-product-col-2.woocommerce ul.products li.product, .woocommerce-product-col-2.woocommerce-page ul.products li.product {
  width: 50%;
}

.woocommerce-product-col-1.woocommerce ul.products li.product, .woocommerce-product-col-1.woocommerce-page ul.products li.product {
  width: 100%;
}

/* 10.1 PLUGIN - VISUAL COMPOSER
-------------------------------------------------------------- */
.tpvc_row_full.wpb_row {
  margin: 0 auto;
}
.tpvc_row_full.wpb_row .vc_col-xs-1, .tpvc_row_full.wpb_row .vc_col-sm-1, .tpvc_row_full.wpb_row .vc_col-md-1, .tpvc_row_full.wpb_row .vc_col-lg-1,
.tpvc_row_full.wpb_row .vc_col-xs-2, .tpvc_row_full.wpb_row .vc_col-sm-2, .tpvc_row_full.wpb_row .vc_col-md-2, .tpvc_row_full.wpb_row .vc_col-lg-2,
.tpvc_row_full.wpb_row .vc_col-xs-3, .tpvc_row_full.wpb_row .vc_col-sm-3, .tpvc_row_full.wpb_row .vc_col-md-3, .tpvc_row_full.wpb_row .vc_col-lg-3,
.tpvc_row_full.wpb_row .vc_col-xs-4, .tpvc_row_full.wpb_row .vc_col-sm-4, .tpvc_row_full.wpb_row .vc_col-md-4, .tpvc_row_full.wpb_row .vc_col-lg-4,
.tpvc_row_full.wpb_row .vc_col-xs-5, .tpvc_row_full.wpb_row .vc_col-sm-5, .tpvc_row_full.wpb_row .vc_col-md-5, .tpvc_row_full.wpb_row .vc_col-lg-5,
.tpvc_row_full.wpb_row .vc_col-xs-6, .tpvc_row_full.wpb_row .vc_col-sm-6, .tpvc_row_full.wpb_row .vc_col-md-6, .tpvc_row_full.wpb_row .vc_col-lg-6,
.tpvc_row_full.wpb_row .vc_col-xs-7, .tpvc_row_full.wpb_row .vc_col-sm-7, .tpvc_row_full.wpb_row .vc_col-md-7, .tpvc_row_full.wpb_row .vc_col-lg-7,
.tpvc_row_full.wpb_row .vc_col-xs-8, .tpvc_row_full.wpb_row .vc_col-sm-8, .tpvc_row_full.wpb_row .vc_col-md-8, .tpvc_row_full.wpb_row .vc_col-lg-8,
.tpvc_row_full.wpb_row .vc_col-xs-9, .tpvc_row_full.wpb_row .vc_col-sm-9, .tpvc_row_full.wpb_row .vc_col-md-9, .tpvc_row_full.wpb_row .vc_col-lg-9,
.tpvc_row_full.wpb_row .vc_col-xs-10, .tpvc_row_full.wpb_row .vc_col-sm-10, .tpvc_row_full.wpb_row .vc_col-md-10, .tpvc_row_full.wpb_row .vc_col-lg-10,
.tpvc_row_full.wpb_row .vc_col-xs-11, .tpvc_row_full.wpb_row .vc_col-sm-11, .tpvc_row_full.wpb_row .vc_col-md-11, .tpvc_row_full.wpb_row .vc_col-lg-11,
.tpvc_row_full.wpb_row .vc_col-xs-12, .tpvc_row_full.wpb_row .vc_col-sm-12, .tpvc_row_full.wpb_row .vc_col-md-12, .tpvc_row_full.wpb_row .vc_col-lg-12 {
  padding-left: 0;
  padding-right: 0;
}

/* 10.2 PLUGIN - MAILCHIMP FOR WORDPRESS
-------------------------------------------------------------- */
/* MailChimp for WP - Checkbox Styles */
p#mc4wp-checkbox {
  clear: both;
  display: block;
  position: static;
  width: auto;
}

p#mc4wp-checkbox input {
  position: static;
  margin: 0 6px 0 0;
  padding: 0;
  vertical-align: middle;
  display: inline-block !important;
  max-width: 21px;
  -webkit-appearance: checkbox;
}

p#mc4wp-checkbox label {
  display: block;
  cursor: pointer;
  width: auto;
  position: static;
}

#registerform #mc4wp-checkbox {
  margin-bottom: 10px;
}

/* MailChimp for WP - Default Form Styles */
.mc4wp-form {
  margin: 1em 0;
}

form.mc4wp-form,
.mc4wp-form form {
  width: auto;
}

.mc4wp-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.mc4wp-form ul,
.mc4wp-form li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc4wp-form label > span,
.mc4wp-form li > label {
  font-weight: normal;
}

.mc4wp-form p > label:nth-child(2) {
  margin-top: 10px;
}

.mc4wp-form input {
  vertical-align: baseline;
}

.mc4wp-form input.placeholdersjs {
  color: #aaa !important;
}

.mc4wp-form input[type="text"],
.mc4wp-form input[type="email"],
.mc4wp-form input[type="tel"],
.mc4wp-form input[type="url"],
.mc4wp-form input[type="date"],
.mc4wp-form textarea,
.mc4wp-form select {
  cursor: auto;
  display: block;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.mc4wp-form input[type="checkbox"],
.mc4wp-form input[type="radio"] {
  position: relative;
  margin: 0 6px 0 0;
  padding: 0;
  height: 13px;
  width: 13px;
  display: inline-block;
  border: 0;
}

.mc4wp-form input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

.mc4wp-form input[type="radio"] {
  -webkit-appearance: radio;
}

.mc4wp-form input[type="submit"],
.mc4wp-form button,
.mc4wp-form input[type="button"] {
  cursor: pointer;
  display: inline-block;
}

.mc4wp-alert {
  margin: 1em 0;
  padding: 10px 15px;
  color: #c09853;
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  display: block;
  position: relative;
}

.mc4wp-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.mc4wp-notice {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.mc4wp-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* 10.3 PLUGIN - YITH WISHLIST
-------------------------------------------------------------- */
/* Popup message */
#yith-wcwl-popup-message {
  background: white;
  border: 1px solid #CCC;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  line-height: 50px;
  padding: 15px;
  position: fixed;
  text-align: center;
  top: 50%;
  left: 50%;
  z-index: 10000;
  /* Thanks WP -.- */
}

/* Wishlist table template */
.wishlist_table tr td {
  text-align: center;
}

.wishlist_table tr td.product-thumbnail, .wishlist_table tr td.product-name {
  text-align: left;
}

.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
  color: #297E29;
}

.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
  color: #F00;
}

/* Wishlist buttons */
.summary .single_add_to_wishlist.button, div.product .woocommerce-price-and-add .single_add_to_wishlist.button {
  margin: 0px;
}

.yith-wcwl-add-to-wishlist {
  margin-top: 10px;
}

.yith-wcwl-add-button > a i, .wishlist_table .add_to_cart.button i {
  margin-right: 10px;
}

.wishlist_table .add_to_cart.button {
  margin: 0px;
}

/* Share buttons */
.yith-wcwl-share ul {
  margin-bottom: 10px;
  margin-left: 0px;
}

.yith-wcwl-share ul, .yith-wcwl-share li {
  height: 21px;
}

.yith-wcwl-share li, .entry-content .yith-wcwl-share li {
  margin-left: 0px;
  margin-right: 3px;
}

.yith-wcwl-share li a {
  background-position: left bottom;
  display: inline-block;
  width: 21px;
  height: 21px;
}

.yith-wcwl-share li a:hover {
  background-position: left top;
}

.yith-wcwl-share li a.facebook {
  background-image: url(https://buycheapsocialfollower.com/wp-content/themes/images/facebook.png);
}

.yith-wcwl-share li a.twitter {
  background-image: url(https://buycheapsocialfollower.com/wp-content/themes/images/twitter.png);
}

.yith-wcwl-share li a.pinterest {
  background-image: url(https://buycheapsocialfollower.com/wp-content/themes/images/pinterest.jpg);
}

.yith-wcwl-share li a.googleplus {
  background-image: url(https://buycheapsocialfollower.com/wp-content/themes/images/googleplus.jpg);
}

.yith-wcwl-share li a.email {
  background-image: url(https://buycheapsocialfollower.com/wp-content/themes/images/email.jpg);
}

/* AJAX loading gif */
.yith-wcwl-add-to-wishlist .ajax-loading {
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  display: inline !important;
  margin-left: 5px;
  vertical-align: middle;
  visibility: hidden;
  width: 16px !important;
  height: 16px !important;
}

.yith-wcwl-add-to-wishlist {
  margin: 0 0 10px;
  text-align: center;
}
.yith-wcwl-add-to-wishlist a {
  color: #EB8E7C;
}

.yith-wcwl-share ul {
  padding: 0;
}

/* 10.4 PLUGIN - WC VENDORS
-------------------------------------------------------------- */
.shortcut-vendor {
  padding-bottom: 40px;
}

.date-pick {
  padding: 4px 20px;
}

input[type="submit"].btn {
  padding: 8px 20px;
  margin: 0 3px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
input[type="submit"].btn:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  border: none;
  text-shadow: none;
}

table.table-condensed.table-vendor-sales-report {
  padding: 10px 0 30px 0;
}
table.table-condensed.table-vendor-sales-report thead tr {
  background: #cb3818;
  color: white;
}

.pv_paypal_container,
.pv_shop_name_container {
  margin-bottom: 20px;
}
.pv_paypal_container b,
.pv_shop_name_container b {
  font-size: 12px;
  text-transform: uppercase;
}

#pv_seller_info_container,
#pv_shop_description_container {
  margin-bottom: 20px;
}
#pv_seller_info_container > p b,
#pv_shop_description_container > p b {
  font-size: 12px;
  text-transform: uppercase;
}
#pv_seller_info_container div.mce-panel,
#pv_shop_description_container div.mce-panel {
  border: 1px solid #e5e5e5;
}

.btn.btn-inverse.btn-small {
  background: none;
  padding: 8px 20px;
  margin: 0 3px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  -ms-text-shadow: none;
  -o-text-shadow: none;
  text-shadow: none;
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.btn.btn-inverse.btn-small:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  border: none;
  text-shadow: none;
}

.woocommerce .wp-media-buttons a.button.insert-media,
.woocommerce-page .wp-media-buttons a.button.insert-media {
  margin-right: 5px !important;
  margin-bottom: 4px !important;
  padding-left: 7px !important;
  padding-right: 7px !important;
  color: #555 !important;
  border-color: #ccc !important;
  background: #f7f7f7 !important;
  -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08) !important;
  box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0, 0, 0, 0.08) !important;
  vertical-align: top !important;
  border-radius: 3px !important;
}
.woocommerce .wp-media-buttons a.button.insert-media:hover,
.woocommerce-page .wp-media-buttons a.button.insert-media:hover {
  background: #fafafa !important;
  border-color: #999 !important;
  color: #222 !important;
}

.pv_shop_description {
  padding: 50px;
}
.pv_shop_description p {
  margin: 0;
}

/* 10.5 PLUGIN - WC VENDORS
-------------------------------------------------------------- */
.mv_success_message {
  border: 2px solid #eb8e7a;
  color: #eb8e7a;
  border-radius: 20px;
  padding: 8px 0;
  font-weight: bold;
}

.mv_submit_vendor_form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.mv_create_form_vendor {
  width: 100%;
  margin-bottom: 20px;
}
.mv_create_form_vendor th, .mv_create_form_vendor td {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid #d1d1d1;
  vertical-align: top;
}
.mv_create_form_vendor th {
  width: 35%;
}
.mv_create_form_vendor th label {
  font-size: 14px;
  font-weight: normal;
}
.mv_create_form_vendor td {
  width: 65%;
}
.mv_create_form_vendor input, .mv_create_form_vendor textarea {
  border-radius: 5px;
}
.mv_create_form_vendor select {
  width: auto !important;
}

.mv_submit {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.mv_submit:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}

#multivendor_track_filters, #multivendor_track_change-page-sizes, #multivendor_filters, #multivendor_change-page-sizes, #multivendor_total_filters, #multivendor_total_change-page-sizes {
  display: inline-block;
  width: auto !important;
  margin: 0 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.mv_track_application_status th {
  text-align: left;
  padding: 20px 10px;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  min-width: 100px;
}
.mv_track_application_status td {
  text-align: left;
  vertical-align: top;
  padding: 20px 10px;
  border-bottom: 1px solid #d1d1d1;
}
.mv_track_application_status .footable-row-detail-row {
  padding: 0;
}
.mv_track_application_status .footable-row-detail-name, .mv_track_application_status .footable-row-detail-value {
  min-width: 150px;
  padding: 10px 20px 10px 0;
}

.mv_delete_app {
  background: transparent !important;
  text-shadow: none;
  border: none;
  padding: 8px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  color: #898989;
  box-shadow: #898989 0 0px 0px 2px inset;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.mv_delete_app:hover {
  box-shadow: #898989 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}

.multivendor_total_myaccount, .multivendor_myaccount {
  width: 100%;
  max-width: 100% !important;
}

.vendorinfo > a {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
}

/* 11.1 VISUAL COMPOSER ELEMENT - HEADING
-------------------------------------------------------------- */
.tpvc-heading {
  padding: 30px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  color: #9f9491;
  text-transform: uppercase;
}
.tpvc-heading .heading-title {
  margin: 0;
}
.tpvc-heading .heading-title i {
  color: #f4d0c8;
  margin: 0 10px;
  line-height: 1;
  font-weight: normal;
}

/* 11.2 VISUAL COMPOSER ELEMENT - FEATURES
-------------------------------------------------------------- */
.tpvc-feature {
  *zoom: 1;
}
.tpvc-feature:before, .tpvc-feature:after {
  content: "";
  display: table;
}
.tpvc-feature:after {
  clear: both;
}
.tpvc-feature .feature-inner {
  *zoom: 1;
}
.tpvc-feature .feature-inner:before, .tpvc-feature .feature-inner:after {
  content: "";
  display: table;
}
.tpvc-feature .feature-inner:after {
  clear: both;
}
.tpvc-feature .feature-icon {
  position: absolute;
  top: 25px;
  left: 13px;
}
.tpvc-feature .feature-icon i {
  font-size: 48px;
  line-height: 1;
  color: #cb3818;
  font-weight: normal;
}
.tpvc-feature .feature-title {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #77635f;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tpvc-feature .feature-content {
  padding-left: 70px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.tpvc-feature .feature-content p {
  margin-top: 0;
}
.tpvc-feature .top-icon .feature-icon {
  position: static;
}
.tpvc-feature .top-icon .feature-content {
  text-align: center;
  padding-left: 0;
  padding: 25px;
}

/* 11.3 VISUAL COMPOSER ELEMENT - DIVIDER
-------------------------------------------------------------- */
.tpvc-divider .divider-box {
  position: relative;
  text-align: center;
}
.tpvc-divider .break-line {
  top: 50%;
  left: 0;
  position: absolute;
  border-top: 1px solid #F2F0F1;
  width: 100%;
  display: inline-block;
  z-index: 0;
}
.tpvc-divider .divider-text {
  display: inline-block;
  background: #fff;
  padding: 10px 25px;
  color: #EB8E7C;
  position: relative;
  line-height: 1;
}
.tpvc-divider .divider-text .divider-heading {
  margin: 0;
  font-weight: normal;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  font-weight: normal;
}
.tpvc-divider .divider-text h6 {
  font-size: 12px;
  line-height: 2;
}
.tpvc-divider .divider-text h5 {
  font-size: 14px;
  line-height: 1.71429;
}
.tpvc-divider .divider-text h4 {
  font-size: 16px;
  line-height: 1.5;
}
.tpvc-divider .divider-text h3 {
  font-size: 18px;
  line-height: 1.33333;
}
.tpvc-divider .divider-text h2 {
  font-size: 20px;
  line-height: 1.2;
}
.tpvc-divider .divider-text h1 {
  font-size: 22px;
  line-height: 1.09091;
}
.tpvc-divider .divider-text i {
  font-size: 26px;
  margin: 0 10px;
  font-weight: normal;
}

/* 11.4 VISUAL COMPOSER ELEMENT - CALL TO ACTION
-------------------------------------------------------------- */
.tpvc-call-to-action .call-wrapper {
  padding: 50px;
}
.tpvc-call-to-action .call-wrapper .call-paragraf .call-title {
  font-size: 18px;
  line-height: 1.33333;
  font-family: 'Merriweather Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: block;
  line-height: 100%;
}
.tpvc-call-to-action .call-wrapper .call-paragraf .call-text {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  color: #efedec;
  margin: 0;
  line-height: 1.6;
}
.tpvc-call-to-action .call-wrapper .call-button {
  padding: 25px 0;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-white {
  box-shadow: white 0 0px 0px 2px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-white:hover {
  box-shadow: white 0 0px 0px 40px inset;
  color: #372926;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-yellow {
  box-shadow: #ffda3a 0 0px 0px 2px inset;
  color: #ffda3a;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-yellow:hover {
  box-shadow: #ffda3a 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-orange {
  box-shadow: #ff6b24 0 0px 0px 2px inset;
  color: #ff6b24;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-orange:hover {
  box-shadow: #ff6b24 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-red {
  box-shadow: #ff0000 0 0px 0px 2px inset;
  color: #ff0000;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-red:hover {
  box-shadow: #ff0000 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-green {
  box-shadow: #83c129 0 0px 0px 2px inset;
  color: #83c129;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-green:hover {
  box-shadow: #83c129 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-purple {
  box-shadow: #a085c6 0 0px 0px 2px inset;
  color: #a085c6;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-purple:hover {
  box-shadow: #a085c6 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-blue {
  box-shadow: #4cc3e9 0 0px 0px 2px inset;
  color: #4cc3e9;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-blue:hover {
  box-shadow: #4cc3e9 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-black {
  box-shadow: #000000 0 0px 0px 2px inset;
  color: #000000;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-black:hover {
  box-shadow: #000000 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-grey {
  box-shadow: #cccccc 0 0px 0px 2px inset;
  color: #cccccc;
}
.tpvc-call-to-action .call-wrapper .call-button .button.button-grey:hover {
  box-shadow: #cccccc 0 0px 0px 40px inset;
  color: white;
}
.tpvc-call-to-action .call-wrapper .text-left {
  text-align: left;
}
.tpvc-call-to-action .call-wrapper .text-right {
  text-align: right;
}
.tpvc-call-to-action .call-wrapper .text-center {
  text-align: center;
}

/* 11.5 VISUAL COMPOSER ELEMENT - IMAGE CAROUSEL
-------------------------------------------------------------- */
.tpvc-image-carousel .image-carousel {
  text-align: center;
}
.tpvc-image-carousel .image-carousel a {
  display: inline-block;
}
.tpvc-image-carousel .image-carousel a img {
  max-width: 100%;
}
.tpvc-image-carousel .image-carousel:hover a img {
  border-color: #4cc3e9;
}
.tpvc-image-carousel .owl-controls .owl-buttons .owl-prev,
.tpvc-image-carousel .owl-controls .owl-buttons .owl-next {
  position: absolute;
  display: block;
  top: 50%;
  font-size: 24px;
  line-height: 1;
  margin-top: -12px;
  color: #cecece;
}
.tpvc-image-carousel .owl-controls .owl-buttons .owl-prev {
  left: 15px;
}
.tpvc-image-carousel .owl-controls .owl-buttons .owl-next {
  right: 15px;
}

/* 11.6 VISUAL COMPOSER ELEMENT - PLAN PRICING
-------------------------------------------------------------- */
.tpvc-plan-pricing {
  display: block;
  min-height: 300px;
  *zoom: 1;
}
.tpvc-plan-pricing:before, .tpvc-plan-pricing:after {
  content: "";
  display: table;
}
.tpvc-plan-pricing:after {
  clear: both;
}
.tpvc-plan-pricing .plan-head {
  padding: 50px;
  border-bottom: 1px solid #ededed;
  color: #77635f;
  text-align: center;
}
.tpvc-plan-pricing .plan-head .plan-type {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}
.tpvc-plan-pricing .plan-head .plan-price {
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  display: block;
}
.tpvc-plan-pricing .plan-head .plan-time {
  font-size: 11px;
  line-height: 2.18182;
  line-height: 100%;
  display: block;
}
.tpvc-plan-pricing .plan-content {
  padding: 50px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tpvc-plan-pricing .plan-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tpvc-plan-pricing .plan-content ul li {
  padding: 20px 0;
  border-bottom: 1px solid #ededed;
  display: block;
  text-align: center;
  text-transform: capitalize;
  padding: 10px 0;
  color: #3e3e3e;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 12px;
  line-height: 2;
}
.tpvc-plan-pricing a.button {
  display: block !important;
  width: auto;
  text-align: center;
  margin: 30px auto !important;
}
.tpvc-plan-pricing.featured {
  background: #cb3818;
  color: white;
}
.tpvc-plan-pricing.featured .plan-head {
  color: white;
}
.tpvc-plan-pricing.featured .plan-content ul li {
  color: white;
}
.tpvc-plan-pricing.featured a.button.alt {
  box-shadow: white 0 0px 0px 2px inset;
  color: white;
}
.tpvc-plan-pricing.featured a.button.alt:hover {
  box-shadow: white 0 0px 0px 40px inset;
  color: #cb3818;
}

/* 11.7 VISUAL COMPOSER ELEMENT - TEAM MEMBER
-------------------------------------------------------------- */
.tpvc-team-members .team-member .member-image img {
  max-width: 100%;
}
.tpvc-team-members .team-member .member-info {
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tpvc-team-members .team-member .member-info .member-title {
  margin: 0;
  color: #372926;
  font-family: 'Maven Pro', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.71429;
  font-weight: 800;
}
.tpvc-team-members .team-member .member-info .member-skills {
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 10px;
  line-height: 2.4;
  color: #9f9491;
  line-height: 1.6;
  display: block;
}
.tpvc-team-members .team-member .member-info p {
  margin: 10px 0;
}

/* 11.8 VISUAL COMPOSER ELEMENT - TESTIMONIAL
-------------------------------------------------------------- */
.tpvc-testimonial {
  padding: 20px 20px 20px 70px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.tpvc-testimonial:before {
  font-family: "FontAwesome";
  content: "\f10d";
  font-size: 30px;
  color: #cecece;
  position: absolute;
  top: 30px;
  left: 20px;
}
.tpvc-testimonial .testimonial-box p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.71429;
  display: block;
  margin: 10px 0 !important;
}
.tpvc-testimonial .testimonial-body .testimonial-left {
  width: 30px;
  height: 30px;
  float: left;
}
.tpvc-testimonial .testimonial-body .testimonial-left img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.tpvc-testimonial .testimonial-body .testimonial-right {
  float: left;
  margin-left: 10px;
}
.tpvc-testimonial .testimonial-body .testimonial-right .testimonial-heading {
  margin: 0;
  display: block;
  font-size: 11px;
  line-height: 2.18182;
  font-weight: 800;
  color: #372926;
  line-height: 1.6;
  text-transform: capitalize;
}
.tpvc-testimonial .testimonial-body .testimonial-right p {
  margin: 0;
  font-size: 11px;
  line-height: 2.18182;
  line-height: 1.6;
  font-weight: 400;
  display: block;
  color: #9f9491;
  text-transform: capitalize;
}
.tpvc-testimonial.border-all {
  border: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-right {
  border-right: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-left {
  border-left: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-bottom {
  border-bottom: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-top {
  border-top: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-right-top {
  border-top: 1px solid #f2f0f0;
  border-right: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-right-bottom {
  border-bottom: 1px solid #f2f0f0;
  border-right: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-left-top {
  border-top: 1px solid #f2f0f0;
  border-left: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-left-bottom {
  border-bottom: 1px solid #f2f0f0;
  border-left: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-top-bottom {
  border-bottom: 1px solid #f2f0f0;
  border-top: 1px solid #f2f0f0;
}
.tpvc-testimonial.border-left-right {
  border-left: 1px solid #f2f0f0;
  border-right: 1px solid #f2f0f0;
}

/* 11.9 VISUAL COMPOSER ELEMENT - WC FEATURED PRODUCTS
-------------------------------------------------------------- */
.tpvc-featured-product.woocommerce .tpvc-title {
  padding: 36px 50px;
  position: relative;
}
.tpvc-featured-product.woocommerce .tpvc-title h1, .tpvc-featured-product.woocommerce .tpvc-title h2 {
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  text-transform: uppercase;
  margin: 0;
}
.tpvc-featured-product.woocommerce .tpvc-title h1 i, .tpvc-featured-product.woocommerce .tpvc-title h2 i {
  font-size: 20px;
  margin-right: 15px;
  color: #EB8E7C;
  line-height: 1;
  font-weight: normal;
}
.tpvc-featured-product.woocommerce .tpvc-title .button {
  position: absolute;
  top: 35%;
  right: 50px;
}
.tpvc-featured-product.woocommerce ul.products {
  position: relative;
}
.tpvc-featured-product.woocommerce ul.products li.product {
  width: 100%;
}
.tpvc-featured-product.woocommerce ul.products li.product img {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tpvc-featured-product.woocommerce ul.products li.product a:hover img {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-top img {
  width: 100%;
  max-width: 100%;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-bottom {
  padding: 20px;
  *zoom: 1;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-bottom:before, .tpvc-featured-product.woocommerce ul.products li.product .featured-bottom:after {
  content: "";
  display: table;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-bottom:after {
  clear: both;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-price {
  float: left;
  margin-right: 15px;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-price .price {
  padding: 15px 0;
  border-top: 1px solid #cb3818;
  border-bottom: 1px solid #cb3818;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #cb3818;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-price .price ins {
  text-decoration: none;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action {
  float: right;
  width: 130px;
  margin-left: 15px;
  text-align: center;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .button {
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  text-shadow: none;
  display: block;
  margin-bottom: 5px;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .button:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .button:last-child {
  margin-bottom: 0;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .button.added {
  display: none;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .added_to_cart.wc-forward {
  display: block;
  padding: 8px 20px;
  margin: 20px 0 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #eb8e7a;
  box-shadow: #eb8e7a 0 0px 0px 2px inset;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -moz-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -ms-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  -o-transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
  transition: all 300ms cubic-bezier(0.39, 0.5, 0.15, 1.36);
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-action .added_to_cart.wc-forward:hover {
  box-shadow: #eb8e7a 0 0px 0px 40px inset;
  color: white;
  text-shadow: none;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-title h3 {
  color: #77635f;
  margin: 0;
  padding: 5px 0;
  overflow: visible;
  white-space: normal;
  font-size: 16px;
  font-weight: normal;
}
.tpvc-featured-product.woocommerce ul.products li.product .featured-title p {
  margin: 0;
}
.tpvc-featured-product.woocommerce ul.products .owl-controls .owl-buttons .owl-prev span,
.tpvc-featured-product.woocommerce ul.products .owl-controls .owl-buttons .owl-next span {
  position: absolute;
  bottom: 40%;
  background: white;
  display: inline-block;
  line-height: 40px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  color: #eb8e7a;
}
.tpvc-featured-product.woocommerce ul.products .owl-controls .owl-buttons .owl-prev span {
  left: 20px;
}
.tpvc-featured-product.woocommerce ul.products .owl-controls .owl-buttons .owl-next span {
  right: 20px;
}

/* 11.10 VISUAL COMPOSER ELEMENT - WC MINI PRODUCTS
-------------------------------------------------------------- */
.tpvc-mini-product.woocommerce .tpvc-title {
  padding: 35px;
}
.tpvc-mini-product.woocommerce .tpvc-title h1, .tpvc-mini-product.woocommerce .tpvc-title h2 {
  font-size: 18px;
  margin: 0;
  color: #9f9491;
}
.tpvc-mini-product.woocommerce .tpvc-title h1 i, .tpvc-mini-product.woocommerce .tpvc-title h2 i {
  margin: 0 14px;
  font-size: 28px;
  line-height: 1;
  color: #f4d0c8;
  font-weight: normal;
}
.tpvc-mini-product.woocommerce ul.products li.product {
  width: 8.333333333333333%;
  margin: 0;
  float: left;
  clear: none !important;
  position: relative;
}
.tpvc-mini-product.woocommerce ul.products li.product img {
  display: block;
  margin: 0;
  width: 100%;
}
.tpvc-mini-product.woocommerce ul.products li.product .mini-icon-view {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(244, 208, 200, 0.9);
}
.tpvc-mini-product.woocommerce ul.products li.product .mini-icon-view a {
  display: block;
  width: 100%;
  height: 100%;
}
.tpvc-mini-product.woocommerce ul.products li.product .mini-icon-view i {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 22px;
  width: 22px;
  margin: auto;
  font-size: 22px;
}
.tpvc-mini-product.woocommerce ul.products li.product:hover .mini-icon-view {
  opacity: 1;
}

/* 11.11 VISUAL COMPOSER ELEMENT - WC PRODUCTS
-------------------------------------------------------------- */
.tpvc-product.woocommerce .tpvc-title {
  background: #372926;
  padding: 36px 50px;
  position: relative;
}
.tpvc-product.woocommerce .tpvc-title h1, .tpvc-product.woocommerce .tpvc-title h2 {
  margin: 0;
  font-family: 'Maven Pro', sans-serif;
  font-weight: bold;
  color: #9f9491;
  font-size: 14px;
  line-height: 1.71429;
  text-transform: uppercase;
}
.tpvc-product.woocommerce .tpvc-title h1 i, .tpvc-product.woocommerce .tpvc-title h2 i {
  font-size: 20px;
  line-height: 1;
  margin-right: 15px;
  font-weight: normal;
}
.tpvc-product.woocommerce .tpvc-title .button {
  position: absolute;
  top: 35%;
  right: 50px;
}

/* 11.12 VISUAL COMPOSER ELEMENT - WC PRODUCT SEARCH
-------------------------------------------------------------- */
.tpvc-product-search {
  background: #f8f2f0;
}
.tpvc-product-search .container {
  padding: 18px 50px;
}
.tpvc-product-search form {
  position: relative;
}
.tpvc-product-search form input[type="text"],
.tpvc-product-search form input[type="search"] {
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Merriweather Sans', sans-serif;
  font-style: italic;
  color: #77635f;
  border: none;
  background: none;
  width: calc(100% - 45px);
  padding-left: 0;
}
.tpvc-product-search form input::-webkit-input-placeholder,
.tpvc-product-search form input::-moz-placeholder,
.tpvc-product-search form input:-moz-placeholder,
.tpvc-product-search form input:-ms-input-placeholder {
  color: #77635f !important;
}
.tpvc-product-search form .search-submit {
  border: none;
  background: none;
  padding: 0 2px;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 40px;
  font-size: 30px;
  color: #cb3818;
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

/* 12.0 RESPONSIVE
-------------------------------------------------------------- */
/* Sticky Header */
@media (min-width: 992px) {
  .header-small .site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .header-small .site-navigation ul li a {
    padding-top: 8px;
    padding-bottom: 6px;
  }
  .header-small .site-navigation .site-navigation-menu, .header-small .site-header .header-left, .header-small .site-header .header-right, .header-small .site-header .header-right-search, .header-small .site-header .quicknav-icon, .header-small .site-header .search-form .search-field, .header-small .site-header .quicknav-cart {
    height: 40px;
  }
  .header-small .site-header .site-logo, .header-small .site-header .quicknav-icon, .header-small .site-header .header-menu li a, .header-small .site-header .search-form .search-field {
    line-height: 40px;
  }
  .header-small .site-header .quicknav-icon, .header-small .site-header .quicknav-cart .cart-subtotal {
    font-size: 16px;
  }
}
/* only when Javascript is available */
.js .woocommerce div.product div.summary p.price, .js .woocommerce div.product div.summary form.cart, .js .woocommerce #content div.product div.summary p.price, .js .woocommerce #content div.product div.summary form.cart,
.js .woocommerce-page div.product div.summary p.price,
.js .woocommerce-page div.product div.summary form.cart,
.js .woocommerce-page #content div.product div.summary p.price,
.js .woocommerce-page #content div.product div.summary form.cart {
  display: none;
}

@media only screen and (max-width: 1186px) {
  /* 1170 + 16px scrollbar = 1186 */
  body .container-wrap {
    width: 100%;
  }

  .footer-widgets-row {
    margin: 0;
  }
}
@media only screen and (max-width: 992px) {
  .layout-2c-l .content-area,
  .layout-2c-l .sidebar,
  .footer-widgets {
    float: none;
    width: 100%;
    border: none;
    min-height: 0 !important;
  }

  .footer-widgets {
    padding-bottom: 0 !important;
  }

  .footer-widgets:last-child {
    padding-bottom: 50px !important;
  }

  .site-header .quicknav-menu {
    display: block;
  }
  .site-header .header-menu {
    display: none;
  }

  .menu-slidebar-sitenav {
    display: none;
  }

  .section-user-detail {
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid #f2f2f2;
  }
  .section-user-detail .user-social i {
    padding: 0 10px;
  }

  .woocommerce div.product div.summary, .woocommerce div.product div.woocommerce-tabs, .woocommerce #content div.product div.summary, .woocommerce #content div.product div.woocommerce-tabs,
  .woocommerce-page div.product div.summary,
  .woocommerce-page div.product div.woocommerce-tabs,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page #content div.product div.woocommerce-tabs {
    padding-right: 50px;
  }

  /* only when Javascript is available */
  .js .woocommerce div.product div.summary p.price, .js .woocommerce div.product div.summary form.cart, .js .woocommerce #content div.product div.summary p.price, .js .woocommerce #content div.product div.summary form.cart,
  .js .woocommerce-page div.product div.summary p.price,
  .js .woocommerce-page div.product div.summary form.cart,
  .js .woocommerce-page #content div.product div.summary p.price,
  .js .woocommerce-page #content div.product div.summary form.cart {
    display: block;
  }
  .js .woocommerce div.product .wc-main-content-right p.price, .js .woocommerce div.product .wc-main-content-right form.cart, .js .woocommerce #content div.product .wc-main-content-right p.price, .js .woocommerce #content div.product .wc-main-content-right form.cart,
  .js .woocommerce-page div.product .wc-main-content-right p.price,
  .js .woocommerce-page div.product .wc-main-content-right form.cart,
  .js .woocommerce-page #content div.product .wc-main-content-right p.price,
  .js .woocommerce-page #content div.product .wc-main-content-right form.cart {
    display: none;
  }

  .tpvc-mini-product.woocommerce ul.products li.product {
    width: 11.11111111111111% !important;
  }
}
@media only screen and (max-width: 768px) {
  .quicknav-cart .cart-subtotal {
    display: none;
  }

  .site-navigation-wrap {
    display: none;
  }

  .menu-slidebar-sitenav {
    display: block;
  }

  .site-header .header-right {
    display: block !important;
  }
  .site-header .header-right-search {
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .blog-list .entry-content, .blog-list .entry-meta {
    width: 100% !important;
  }
  .blog-list .entry-meta {
    padding: 30px 0 0;
  }

  .commentlist, #respond {
    width: 100% !important;
  }

  .woocommerce.woocommerce-product-col-1 ul.products li.product,
  .woocommerce-page.woocommerce-product-col-1 ul.products li.product {
    width: 100% !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 50% !important;
  }
  .woocommerce .upsells.products ul.products li.product,
  .woocommerce .related.products ul.products li.product,
  .woocommerce .cross-sells ul.products li.product,
  .woocommerce-page .upsells.products ul.products li.product,
  .woocommerce-page .related.products ul.products li.product,
  .woocommerce-page .cross-sells ul.products li.product {
    width: 50% !important;
  }

  .tpvc-mini-product.woocommerce ul.products li.product {
    width: 16.66666667% !important;
  }
}
@media only screen and (max-width: 480px) {
  .site-header .header-left, .site-header .header-right {
    width: 100% !important;
    position: relative;
  }
  .site-header .quicknav-menu {
    position: absolute;
    top: 0;
    left: 10px;
  }

  .page .page-content,
  .blogs .container,
  .sidebar,
  .footer-widgets,
  .section-user-detail,
  .section-user-biography {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .page.page-template-page-visualcomposer .page-content,
  .page.page-template-page-visualcomposer-notitle .page-content,
  .page.page-template-content-contact-form .page-content,
  .page.page-template-page-contact-form .page-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .woocommerce .shop-content-top .catalog-order-wrap,
  .woocommerce .shop-content-top .pagination,
  .woocommerce-page .shop-content-top .catalog-order-wrap,
  .woocommerce-page .shop-content-top .pagination {
    clear: both;
    display: block !important;
    width: 99% !important;
    float: none !important;
    margin-bottom: 10px !important;
  }
  .woocommerce .shop-content-top .catalog-order-wrap .woocommerce-ordering,
  .woocommerce-page .shop-content-top .catalog-order-wrap .woocommerce-ordering {
    float: right;
  }
  .woocommerce .shop-content-top .pagination,
  .woocommerce-page .shop-content-top .pagination {
    text-align: center !important;
    padding-top: 20px;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
  }
  .woocommerce .upsells.products ul.products li.product,
  .woocommerce .related.products ul.products li.product,
  .woocommerce .cross-sells ul.products li.product,
  .woocommerce-page .upsells.products ul.products li.product,
  .woocommerce-page .related.products ul.products li.product,
  .woocommerce-page .cross-sells ul.products li.product {
    width: 100% !important;
  }
  .woocommerce div.product div.summary, .woocommerce div.product div.woocommerce-tabs, .woocommerce #content div.product div.summary, .woocommerce #content div.product div.woocommerce-tabs,
  .woocommerce-page div.product div.summary,
  .woocommerce-page div.product div.woocommerce-tabs,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page #content div.product div.woocommerce-tabs {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .woocommerce div.product div.woocommerce-tabs ul.tabs li, .woocommerce #content div.product div.woocommerce-tabs ul.tabs li,
  .woocommerce-page div.product div.woocommerce-tabs ul.tabs li,
  .woocommerce-page #content div.product div.woocommerce-tabs ul.tabs li {
    clear: both;
    display: block !important;
    width: 99% !important;
    float: none !important;
    margin-bottom: 10px !important;
  }
  .woocommerce table.cart td.actions, .woocommerce #content table.cart td.actions,
  .woocommerce-page table.cart td.actions,
  .woocommerce-page #content table.cart td.actions {
    padding: 20px 0 !important;
  }
  .woocommerce table.cart td.actions input, .woocommerce #content table.cart td.actions input,
  .woocommerce-page table.cart td.actions input,
  .woocommerce-page #content table.cart td.actions input {
    clear: both;
    display: block !important;
    width: 99% !important;
    float: none !important;
    margin-bottom: 10px !important;
  }
  .woocommerce table.cart td.actions .coupon, .woocommerce #content table.cart td.actions .coupon,
  .woocommerce-page table.cart td.actions .coupon,
  .woocommerce-page #content table.cart td.actions .coupon {
    margin-bottom: 10px !important;
  }
  .woocommerce .form-row-first, .woocommerce .form-row-last,
  .woocommerce-page .form-row-first,
  .woocommerce-page .form-row-last {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }
  .woocommerce .checkout .woocommerce-billing-fields p,
  .woocommerce-page .checkout .woocommerce-billing-fields p {
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .tpvc-plan-pricing .plan-head, .tpvc-plan-pricing .plan-content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .tpvc-featured-product.woocommerce ul.products li.product .featured-price,
  .tpvc-featured-product.woocommerce ul.products li.product .featured-action {
    width: 48%;
    margin: 0;
  }
  .tpvc-featured-product.woocommerce ul.products li.product .featured-title {
    clear: both;
    width: 100%;
  }

  .tpvc-mini-product.woocommerce ul.products li.product {
    width: 33.33333333% !important;
  }
}