/*

Theme Specific CSS File

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Layout
# Header
# Footer
# Sidebar
# Typography
# Forms & Buttons
# Elements
# Navigation
# Rev Slider & Homepage Splash
# Search
# Product Index
# Product Page
# Product Box Icons
# Product Filter
# Checkout Page
# Image Flipper
# Add to Cart Popup
# Slide Out Cart
# Quick View
# Tooltips
# Visual Composer Animations
# Widgets
# Responsive Specific
# Demo Related - This can be removed
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
body{
    background:#ededed; ?>;
    overflow-y: scroll;
    overflow-x: hidden;
}
#container{
	max-width:100%;
  padding:0;
  margin-left:0;
  margin-right:0;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

#container.slide-left{
  margin-left:300px;
  margin-right:-300px;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

#container.slide-right{
  margin-right:300px;
  margin-left:-300px;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.container-overlay{
  position:fixed;
  width:100%;
  height:100%;
  opacity:0.7;
  visibility:visible;
  background:black;
  cursor:pointer;
  z-index:101;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.container-overlay.hidden{
  position:fixed;
  width:100%;
  height:100%;
  opacity:0;
  visibility:hidden;
  background:black;
  cursor:pointer;
  z-index:0;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}


.woocommerce .container-overlay{
  position:fixed;
  top:-70px;
  width:100%;
  height: calc(100% + 70px);
  opacity:0.7;
  visibility:visible;
  background:black;
  cursor:pointer;
  z-index:100001;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.woocommerce .container-overlay.hidden{
  position:fixed;
  top:-70px;
  width:100%;
  height: calc(100% + 70px);
  opacity:0;
  visibility:hidden;
  background:black;
  cursor:pointer;
  z-index:101;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.woocommerce #container{
  padding-top:60px;
}

.woocommerce-wishlist #container{
  padding-top:160px;
}

.woocommerce-wishlist #sidebar-area{
  display:none;
}

.loader-fullscreen{
    position:fixed;
    height:100%!important;
    width:100%!important;
    padding-top:200px;
    background:white;
    text-align: center
}

.height500{
  height:496px;
}

.height500 > div{
  height:100%;
}

.height535{
  height:535px;
}

.height535 > div{
  height:100%;
}

.front{
  position:relative;
  z-index:99999;
}

.fullscreen {
    height: 100%;
    margin-top: -70px;
    position: fixed;
    width: 100%;
    z-index: 200;
    background:white;
}

.preloader {
    height: 100%;
    background:white;
    position: fixed;
    width: 100%;
    z-index: 300;
}

.flipit {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

*:focus {
    outline: none;
}

.rev_slider_wrapper {
    width: 100%;
    z-index: 8888888888888;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header{
    background: white;
    border-bottom: 1px solid #E0E0E0;
    position: fixed;
    width: 100%;
    margin: auto;
    height: 70px;
    top: 0;
    z-index: 10;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.header-left-block{
    left:0;
    height: 70px;
    width:75px;
    position:absolute;
    border-right: 1px solid #ebebeb;
    cursor:pointer;
}

.header-center-block {
    display:inline-block;
    height: 70px;
    width:100%;
    text-align:center;
}

.header-right-block {
    right:0;
    top:0;
    height: 70px;
    width:140px;
    position:absolute;
    border-left: 1px solid #ebebeb;
    cursor: pointer;
}

.header-cart-icon{
  display:inline-block;
  position: relative;
  top: 17px;
  margin: 0 13px;
  width:25px;
  height:25px;
  background-image: url('images/cart.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.header-search-icon{

  display:inline-block;
  position: relative;
  margin-left: 12px;
  top: 17px;
  width:25px;
  height:25px;
  background-image: url('images/magnify-thick.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.mobile-menu-icon{
  cursor:pointer;
  display:none;
  position: absolute;
  top: 37px;
  right: 54px;
  width:25px;
  height:25px;
  background-image: url('images/mobile-menu-icon.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.cart-counter {
  position: absolute;
  top: 17px;
  right: 31px;
  background: #9D8980;
  border-radius: 50%;
  padding: 10px 14px;
  font-size: 13px;
  color: #4c4b4b;
  line-height: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  opacity:1;
  background: white;
  border-top: 1px solid #E0E0E0;
  position:fixed;
  bottom:0;
  width:100%;
  height:70px;
}

.woo-footer {
  opacity:1;
  background: white;
  border-top: 1px solid #E0E0E0;
  position:fixed;
  bottom:0;
  width:100%;
  height:70px;
}

.woo-footer.hidden {
  opacity:0;
  background: white;
  border-top: 1px solid #E0E0E0;
  position:fixed;
  bottom:0;
  width:100%;
  height:70px;
}

.footer-row{
    width:100%;
    padding:0!important;
    margin:auto;
}

.site-footer .footer-block {
    float:left;
}


.woo-footer .footer-block {
    line-height: 70px;
    padding: 0 2em;
    display: inline-block;
    /* min-width: 200px; */
    border-right: 1px solid #ebebeb;
    cursor: pointer;
}

.footer-filter{
    cursor: pointer;
}

.site-footer .footer-block{
    line-height:70px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 33.33%;
    height:70px;
    padding:0 40px;
}

.site-footer .footer-block .cols1{
    text-align:left;
    font-size: 0.8em;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-footer .footer-block .cols2{
   text-align:center;
}

.site-footer .footer-block .cols3{
    text-align: right;
    font-size: 0.8em;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-footer .footer-block i{
  padding:0 15px;
  opacity:0.5;
}

.site-footer .footer-block i:hover{

  opacity:1;
}

.woo-footer .footer-block .cols1{
    display: inline-block;
    position: relative;
    top: 9px;
    margin: 0 7px;
    width: 20px;
    height: 25px;
    background-image: url('images/mobile-menu-icon.svg');
    background-repeat: no-repeat;
    background-size: 16px 23px;
    opacity: 0.6;
}

.woo-footer .footer-block .cols2{
    display: inline-block;
    position: relative;
    top: 9px;
    margin: 0 7px;
    width: 20px;
    height: 25px;
    background-image: url('images/cols2.svg');
    background-repeat: no-repeat;
    background-size: 16px 23px;
    opacity: 0.6;
}

.woo-footer .footer-block .cols3{
    display: inline-block;
    position: relative;
    top: 8px;
    margin: 0 7px;
    width: 20px;
    height: 25px;
    background-image: url('images/cols3.svg');
    background-repeat: no-repeat;
    background-size: 16px 23px;
    opacity: 0.6;
}

.woo-footer .footer-block .cols4{
    display: inline-block;
    position: relative;
    top: 8px;
    margin: 0 7px;
    width: 20px;
    height: 25px;
    background-image: url('images/cols3.svg');
    background-repeat: no-repeat;
    background-size: 16px 23px;
    opacity: 0.6;
}

.top-footer {
    position: relative;
    width: 100%;
    height: 600px;
}

.footer-top {
    width: 100%;
    height: 600px;
    text-align: center;
    background: #e8e8e8;
    padding-top: 69px;
    border-top: 2px solid white;
}

.footer-top h2 {
    text-align: center;
    margin: 0 35%;
    padding-top: 60px;
}


/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

#sidebar-area .widget, #sidebar-area aside .widget {
    margin: 0 0 60px;
    background:white;
    padding: 5px 20px 20px 20px;
    overflow: visible;
}

#sidebar-area .widget li, #sidebar-area aside li {
    list-style:none;
    padding-bottom: 10px;
}

#sidebar-area{
  min-width:200px!important;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body {
    font-family: 'Questrial', sans-serif;
    line-height: 30px;
    letter-spacing: 0.2px;
    font-weight: 400;
    font-style: normal;
    color: #898989;
    font-size: 13px;
}

h1 {
    font-family: "Lato";
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: normal;
    font-style: normal;
    color: #303030;
    font-size: 18px;
}

h2 {
    font-family: "Lato";
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: normal;
    font-style: normal;
    color: #303030;
    font-size: 15px;
    position: relative;
    text-align: left;
}

h3 {
    font-family: "Lato";
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: normal;
    font-style: normal;
    color: #303030;
    font-size: 16px;
    position: relative;
    text-align: left;
}

.product h3 {
    line-height: 20px;
    letter-spacing: 0.2px;
    font-style: normal;
    font-size: 1em;
}

.related.products > h2 {
  text-align: center;
    padding: 150px 0;
    background: #383838;
    margin: 0 -150px;
    color: white;
    letter-spacing: 2px;
}

hr {
    background-color: #E3E3E3;
    border: 0;
    height: 1px;
    margin: 20px 0;
}

.vc_separator {
    margin: 80px 0 70px;
    padding-bottom: 20px;
}

.product_meta {
  font-size:11px;
}

.vc_separator h4 {
    line-height: 1em;
    font-family: 'Questrial', sans-serif;
    font-size: 100%;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font: playfair;
    margin: 0;
    word-wrap: break-word;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.vc_separator.vc_sep_color_grey .vc_sep_line {
    border-color: #CFCFCF!important;
}

.header-cart-text{
    line-height: 71px;
    text-align: right;
    padding-right: 71px;
    font-size: 11px;
    letter-spacing: 1px;
}

.entry-title{
    padding: 30px 0 20px 0;
}

.closeicon.small {
  -ms-transform: scale(0.6); /* IE 9 */
  -webkit-transform: scale(0.6); /* Safari */
  transform: scale(0.6);
}
.closeicon:hover {
  opacity: 1;
}
.closeicon:before, .closeicon:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 1px;
  background-color: white;
}
.closeicon:before {
  transform: rotate(45deg);
}
.closeicon:after {
  transform: rotate(-45deg);
}

.closeicon {
    visibility:visible;
    position: fixed;
    opacity:1;
    right: 3%;
    top: 16px;
    width: 32px;
    height: 32px;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all .3s 1s ease;
    -moz-transition: all .3s 1s ease;
    -ms-transition: all .3s 1s ease;
    -o-transition: all .3s 1s ease;
    transition: all .3s 1s ease;
}

.closeicon.hidden {
  visibility:hidden;
  opacity:0;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.filter-main-container .closeicon {
  top:100px;
}

.side-menu .closeicon {
  top:20px;
  left:20px;
}

.side-cart .closeicon {
  top:20px;
  right:20px;
}

/*--------------------------------------------------------------
# Forms & Buttons
--------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 16px;
}

.wpb_wrapper input[type="text"],
.wpb_wrapper input[type="email"],
.wpb_wrapper input[type="url"],
.wpb_wrapper input[type="password"],
.wpb_wrapper input[type="search"],
.wpb_wrapper textarea {
  width:100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#sidebar-area .searchsubmit {
    position: relative;
    left: -4px;
    padding: 16px;
    top: -1px;
    border: 1px solid #cac6c6;
    background: #f7f7f7;
}


.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    font-size: 1em;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="tel"],
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.side-cart a.button,
.side-cart button.button,
.woocommerce input.button,
.theme-button,
.btn .btn-flat,
.entry-footer a,
.page-navigation li a,
.affliction-button a,
.vc_btn3,
#coupon_code {
    color: #626161;
    border: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    /* height: 45px; */
    border-radius: 0;
    font-weight: 300;
    background: white;
    padding: 16px!important;
    cursor:pointer;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}


button,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="tel"]:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.side-cart a.button:hover,
.side-cart button.button:hover,
.woocommerce input.button:hover,
.theme-button:hover,
.btn .btn-flat:hover,
.entry-footer a:hover,
.page-navigation li a:hover,
.affliction-button a:hover,
.vc_btn3:hover,
#coupon_code:hover {
    color: #626161;
    border: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border-radius: 0;
    font-weight: 300;
    background: #f4f4f4;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

#coupon_code {
  width:150px!important;
}

.side-cart .buttons {
  margin-bottom:50px;
  }

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: #fff;
    color: grey;
}

.page-navigation li a, .page-navigation li a:hover, .page-navigation li.active a, .page-navigation li.disabled {
    padding: 10px 15px;
    font-weight: 500;
    text-transform: none;
    font-size: inherit;
    letter-spacing: inherit;
    margin: 0 4px 0 0;
}

.entry-footer a {
    padding:8px 10px;
    margin:0 2px;
    border: 1px solid #DEDEDE;
}

.comments-section .third {
    display: inline-block;
    width: 28%;
    margin-right: 38px;
}

select {
    max-width: 100%;
    min-width: 165px;
    border: 1px solid #CFCFCF;
    border-radius: 0;
    background-color: #fff;
    padding: 0 25px;
    font-size: 13px;
    color: #5f5f5f;
    height: 35px;
    line-height: 2;
    margin-bottom: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("images/arrow_down.png")!important;
    background-repeat: no-repeat;
    background-position: 98%;
    background-position: calc(100% - 10px);
    outline: none;
}

.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count {
    margin: 0 0 2em 2em;
}

.searchform{
    margin-left: 20px;
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

.entry-meta {
    display:none;
}

.comments-section {
    padding: 5%;
    margin-top: 60px;
    border: none;
    background: #FBFBFB;
}

.commentlist {
  list-style-type:none;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{
    background-color: #666666;
}

.vc_tta.vc_general .vc_tta-panel.vc_active,
.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-body {
    background: #FEFEFE;
}

.woocommerce .woocommerce-breadcrumb:before{
    content: "";
    display: block;
    background: url("images/breadcrumb.png") no-repeat;
    width: 16px;
    height: 16px;
    float: left;
    margin: 0 6px 0 0;
    position: relative;
    top: 7px;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0px 0 -2em -20px!important;
}

.strip-flex-nav .flex-next,
.strip-flex-nav .flex-prev,
.strip-flex-nav .flex-control-nav,
.strip-flex-nav .flex-control-paging {
  display:none!important;
}


.strip-flex-nav .flexslider {
    border: 0!important;
    border-radius:0!important;
    box-shadow: none!important;
    margin:0!important;
}

.ct-wooSearch-greyOut .ct-wooSearch-imgWrap {
    height: 32px;
}

.absolute {
    position:absolute;
}

.zoom div {
  background-size:100%!important;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.zoom div:hover {
  background-size:110%!important;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -ms-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

.sticky {
    background: #f6f6f6;
    padding: 50px!important;
    border: 1px solid #191919;
}

.sticky h2 span {
    background: #F8F8F8;
}

.article-img-wrapper{
  overflow:hidden;
}

.blog article img {
  -webkit-transform: scale(1);  /* Saf3.1+, Chrome */
     -moz-transform: scale(1);  /* FF3.5+ */
      -ms-transform: scale(1);  /* IE9 */
       -o-transform: scale(1);  /* Opera 10.5+ */
          transform: scale(1);
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition: all 1.4s ease;
}
.blog article img:hover {
  -webkit-transform: scale(1.07);  /* Saf3.1+, Chrome */
     -moz-transform: scale(1.07);  /* FF3.5+ */
      -ms-transform: scale(1.07);  /* IE9 */
       -o-transform: scale(1.07);  /* Opera 10.5+ */
          transform: scale(1.07);
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition: all 1.4s ease;
}

.rev_slider {

    cursor: url(http://elusivethemes.com/assets/down.svg), auto;

}
.fullheight{
  height:100%;
}
.wpb_map_wraper {
  height: 100%;
}
.wpb_map_wraper iframe {
  height: 100%;
  width: 100%;
  border: 0;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(99%);
  /* Chrome 19+ & Safari 6+ */
  -webkit-backface-visibility: hidden;
  /* Fix for transition flickering */
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    text-align: center;
}

.control-hint {
    width: 235px;
    height: 100px;
    background: white;
    position: fixed;
    bottom: 100px;
    left: 100px;
    padding: 0 20px;
    cursor:pointer;
}

.control-hint p{
  color:#414040;
  cursor:pointer;
}

.control-hint:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-top-color: white;
	border-width: 18px;
	margin-left: -18px;
}

.control-hint .close {
  position: absolute;
  top: 2px;
  right: 9px;
  font-weight: bold;
  cursor:pointer;
  color: #d3d3d3;
}

.control-hint .close:hover {
  position: absolute;
  top: 2px;
  right: 9px;
  font-weight: bold;
  cursor:pointer;
  color: black;
}

.theme-button:hover,
.btn .btn-flat:hover,
.entry-footer a:hover,
.cart-counter,
.custom .tp-bullet:hover,
.custom .tp-bullet.selected,
.page-navigation li a:hover,
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.affliction-button a:hover {
  background: #ededed;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.header-menu-icon {
    cursor: pointer;
    display: inline;
    position: absolute;
    z-index:99;
    margin-left: 24px;
    top: 24px;
    width: 25px;
    height: 25px;
    background-image: url('images/mobile-menu-icon.svg');
    background-repeat: no-repeat;
    background-size: 30px 23px;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.side-menu{
  position:fixed;
  overflow:auto;
  width:300px;
  height:100%;
  background:#141414;
  z-index:10000;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.side-menu.hidden{
  position:fixed;
  margin-left:-300px;
  width:300px;
  height:100%;
  background:black;
  z-index:100;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.side-menu-inner{
  padding:40% 3% 0 6%;
  position:relative;
  left:0;
  -webkit-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
}

.side-menu-inner.hidden{
  position:relative;
  left:-100px;
  -webkit-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
}

.side-menu h3 {
    margin-left: 20px;
    margin-bottom: 35px;
    letter-spacing:3px;
    color: white;
    font-weight: bold;
}

.side-menu a {
    color: #999999;
    font-weight: 400;
    font-family:'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-left:0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.side-menu a:hover,
.side-menu a:active {
    color: white;
    font-weight: 400;
    font-family:'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-left:3px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.side-menu ul {
  list-style:none;
}

.side-menu ul > li {
  padding-bottom:2em;
}

.side-menu .menu-footer.hidden{
    background: black;
    border-top: 1px solid #2B2B2B;
    height: 80px;
    width: 100%;
    position: fixed;
    width:300px;
    bottom: 0;
    left: -300px;
    -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
    transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.side-menu .menu-footer{
    background: black;
    border-top: 1px solid #2B2B2B;
    height: 80px;
    width: 100%;
    position: fixed;
    width:300px;
    bottom: 0;
    left: 0;
    -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
    transition: all .5s cubic-bezier(.645,.045,.355,1);
}

/*--------------------------------------------------------------
# Rev Slider & Homepage Splash
--------------------------------------------------------------*/

.custom.tp-bullets{
      left: -45px!important;
      top: 20%!important;
}

.custom.tp-bullets:before {
    content: '';
    width: 1px;
    padding: 0;
    height: 74px;
    background: #CFCFCF;
    bottom: 130%;
    margin-left: 6px;
}

.custom.tp-bullets:after {
    content: '';
    width: 1px;
    padding: 0;
    height: 175px;
    background: #CFCFCF;
    top: 130%;
    margin-left: 6px;
    position: absolute;
}

.custom .tp-bullet:hover, .custom .tp-bullet.selected {
    background: rgb(157, 137, 128);
}

.custom .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #aaa;
    background: rgba(125, 125, 125, 0.26);
    cursor: pointer;
    box-sizing: content-box;
}

.home-splash {

    z-index: 500;
}

.home-splash.hidden {
    display:none;
}

/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/

.side-menu .searchform .s {
    background: none;
    border: none;
    border-bottom: 1px solid #2C2C2C;
    position: relative;
    top: 5px;
    padding-bottom: 4px;
}

.side-menu .searchform .searchsubmit {
    float: right;
    font-family: montserrat;
    text-transform: uppercase;
    color: #504F4F;
    font-size: 12px;
    background: none!important;
    border: 0;
    position: relative;
    top: 9px;
    left: -30px;
}

.side-menu .searchform .searchsubmit:hover {
    float: right;
    font-family: montserrat;
    text-transform: uppercase;
    color: white;
    font-size: 12px;
    background: none!important;
    border: 0;
    position: relative;
    top: 9px;
    left: -30px;
    cursor:pointer;
}


/*--------------------------------------------------------------
# Product Index
--------------------------------------------------------------*/

.woocommerce .woocommerce-breadcrumb,
.archive.woocommerce .page-title,
.archive.woocommerce .woocommerce-result-count {
    display:none;
}

.woocommerce ul.products li.product .price {
    font-size: 0.9em;
    margin-top: -10px;
    color: #000;
    z-index: 100;
}

.woocommerce ul.products li.product .price del {
    display: inline;
    margin-right:6px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products,
.woocommerce ul.products li{
  margin:0;
  padding:5%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display:inline-block!important;
  float:none!important;
  padding: 2em!important;
  position: relative;
  width: 33%;
}

.woocommerce ul.products li.first {
    clear: none!important;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .onsale {
    display:none!important;
}

.woocommerce .woocommerce-ordering select {
    vertical-align: bottom;
    position: fixed;
    bottom: 0;
    right: 1%;
    font-family: 'Questrial', sans-serif;
    line-height: 30px;
    letter-spacing: 0.2px;
    font-weight: 400;
    font-style: normal;
    color: #898989;
    font-size: 11px;
    text-transform: uppercase;
    border: 1px solid white;
}

.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
    padding: 50px 0;
    margin: 0;
    list-style: none;
}


/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/

.wc-tabs-wrapper{
    max-width:1400px;
    margin:auto;
    margin-top: 100px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.618em;
    overflow: hidden;
    position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #DADADA;
    display: inline-block;
    position: relative;
    z-index: 0;
    margin: 0 -5px;
    padding: 8px 39px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: .5em 0;
    color: #515151;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.6px;
    font-weight:300;
}

.woocommerce div.product .woocommerce-tabs .panel {
    margin: 0 0 2em;
    padding: 30px 0;
}

.woocommerce div.product div.summary{
    padding:0 20px;
}

.qty,
.input-number,
.input-number-decrement,
.input-number-increment {
    border: 1px solid white;
    background: none;
    height: 35px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.woocommerce .quantity .qty {
      width: 3.631em;
    text-align: center;
    vertical-align: top;
    height: 46px;
    background: #ededed;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}
.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 50px;
    background: none;
    border: 2px solid white;
    height: 46px!important;
    line-height: 44px;
    color: #444;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}



input[type='number'] {
  -moz-appearance:textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.woocommerce div.product form.cart .variations {
    margin-bottom: 1em;
    border: 0;
    width: 100%;
}

.single-product .onsale{
  display:none;
}

.woocommerce div.product div.images div.thumbnails {
    max-width: 100%;
}

.yith_magnifier_gallery li {
    position: relative;
    float: left;
    display: block;
    margin-right: 8px;
}

.woocommerce div.product form.cart, .woocommerce div.product p.cart {
    margin-bottom: 3em;
    margin-top: 3em;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    float: right;
    width: 60%;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    padding:7%;
    float: right;
    width: 30%;
}

.product-main{
  width:100%;
}

.woocommerce #content div.product div.thumbnails a {
  width:100%;
}

.related.products {
  margin-top:20px;
}

.woocommerce div.product form.cart div.quantity {
    float: left;
    margin: 0px 20px 0 0;
}

.post-navigation {
    width: 100%;
    display: inline-block;
    margin-top: 50px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.post-navigation a {
  color:#9d9d9d;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.post-navigation a:hover {
  color:#434343;
}


.post-navigation .prev {
    display: inline-block;
    width: 40%;
    float: left;
    text-align: left;
    background: #fbfbfb;
    padding: 20px;
}

.post-navigation .next {
    display: inline-block;
    width: 40%;
    float: right;
    text-align: right;
    background: #fbfbfb;
    padding: 20px;
}

.woocommerce-message {
    border-top-color: #8fae1b;
    border: 0;
    width: 45%;
    margin-left: auto!important;
    margin-right: auto!important;
}

/*--------------------------------------------------------------
# Product Box Icons
--------------------------------------------------------------*/
.woocommerce ul.products li.product a img {
    margin: 0;
}

.product-wrapper{
    height:100%;
    position:relative;
}

.product-icons-container{
    width: 100%;
    position: absolute;
    bottom:0;
    z-index: 5;
    height:0;
    opacity:0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.product-icons-container .col1{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position:relative;
    bottom:0;
    height:100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 33.33%;
    width: calc(100% / 3);
    background: white;
    display: inline-block;
    background-image: url('../assets/eye.svg');
    background-size: 24px 33px;
    background-position: center;
    background-repeat: no-repeat;
}

.product-icons-container .col2{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position:relative;
    bottom:0;
    height:100%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 33.33%;
    width: calc(100% / 3);
    background: white;
    display: inline-block;
    background-image: url('../assets/bag.svg');
    background-size: 20px 30px;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 1px solid #E9E9E9;
    border-right: 1px solid #E9E9E9;
}

.product-icons-container .col3{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position:relative;
    bottom:0;
    height:100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 33.33%;
    width: calc(100% / 3);
    background: white;
    display: inline-block;
    background-image: url('../assets/heart.svg');
    background-size: 17px 32px;
    background-position: center;
    background-repeat: no-repeat;
}

.woocommerce ul.products li.product:hover .product-icons-container{
    height:50px;
    opacity:1;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.woocommerce span.onsale {
    min-height: 3.236em;
    min-width: 3.236em;
    padding: .202em;
    z-index:10;
    top: 0;
    right: 0;
    left: auto;
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 3.236;
    /* top: -.5em; */
    /* left: -.5em; */
    margin: 5px!important;
    border-radius: 0;
    background-color: #FFFFFF;
    color: #636363;
    font-size: 1em;
    -webkit-font-smoothing: antialiased;
}

.add_to_wishlist,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse,
.yith-wcwl-add-button,
.yith-wcqv-button,
.woocommerce ul.products li.product .add_to_cart_button,
.added_to_cart {
  display:none!important;
}

.woocommerce ul.products li.product h3 {
    padding: .5em 0;
    margin: 0;
    font-size: 1.2em;
    text-transform: uppercase;
    text-align:center;
    margin-top:20px;
    opacity:0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce ul.products li.product:hover h3 {
    opacity:1;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce ul.products li.product h4 {
    margin: 0;
    color: #acabab;
    font-weight: 400;
    font-size: 0.9em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce ul.products li.product:hover h4 {
    opacity:1;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce ul.products li.product {
    position:relative;
    top:0;
    opacity:1;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.woocommerce ul.products li.product:hover {
    position:relative;
    top:-20px;
    opacity:1;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -ms-transition: all .9s ease;
    -o-transition: all .9s ease;
    transition: all .9s ease;
}

/*--------------------------------------------------------------
# Product Filter
--------------------------------------------------------------*/

.filter-main-container{
    position: fixed;
    overflow:hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: calc( 100% - 140px );
    margin-top: 70px;
    margin-bottom: 70px;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
    transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.filter-main-container.hidden{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc( 100% - 140px );
    margin-top: 70px;
    margin-bottom: 70px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
    -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
    transition: all .5s cubic-bezier(.645,.045,.355,1);
 }

 .woof_sid_auto_shortcode {
  background:rgba(20, 20, 20, 0.85);
  height: 100%;
  border:0!important;
  border-radius:0;
  padding:10%!important;
 }

 .woof_edit_view{
  display:none;
 }

 button .woof_submit_search_form{
  float:right!important;
 }

 .woof_sid_auto_shortcode .woof_container_inner_color {
   background:none!important;
 }

 .woof_sid_auto_shortcode h4 {
    color: #fff!important;
    margin: 0 0 5px 20px !important;
}

 /*--------------------------------------------------------------
 # Checkout Page
 --------------------------------------------------------------*/
 .woocommerce form .form-row .select2-container {
     width: 100%;
     line-height: 50px;
 }

/*--------------------------------------------------------------
# Image Flipper
--------------------------------------------------------------*/

.pif-has-gallery {
    position: relative;
}
.pif-has-gallery .onsale {
    z-index: 999999;
}

.pif-has-gallery .secondary-image {
    position: absolute;
    top:0;
    left:0;
    opacity:0;
}


 /**
 * Animation
 */
.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;-moz-animation-duration:.5s;-ms-animation-duration:.5s;-o-animation-duration:.5s;animation-duration:.5s;}.animated.hinge{-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0);
    }   100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(0);
    }
}
@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }

    100% {
        opacity: 0;
        -o-transform: translateY(0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

/*--------------------------------------------------------------
# Add to Cart Popup
--------------------------------------------------------------*/

div.festi-cart-pop-up-body div.festi-cart-pop-up-header span.festi-cart-added-to-cart-msg {
    color: #000000!important;
}

div#festi-cart-pop-up-content div.festi-cart-pop-up-body {
    border: 2px solid;
    border-color: #7B7B7B!important;
}

div#festi-cart-pop-up-content span.festi-cart-closed.b-close span.festi-cart-closed-button {
    color: #C3C3C3!important;
}

div.festi-cart-pop-up-footer span.festi-cart-continue.b-close span.festi-cart-continue-shopping {
    color: #BABABA!important;
}

div.festi-cart-pop-up-footer span.festi-cart-continue.b-close span.festi-cart-continue-shopping:hover {
    color: #000!important;
}

div#festi-cart-pop-up-content span.b-close span.festi-cart-closed-button:hover {
    color: #000!important;
}

body div.festi-cart-pop-up-products-content table.festi-cart-list tr.festi-cart-item td.festi-cart-product-title a.festi-cart-title, body div.festi-cart-pop-up-products-content table.festi-cart-list tr.festi-cart-item td.festi-cart-product-title span.festi-cart-title {
    color: #8E8E8E!important;
}

body div.festi-cart-pop-up-products-content table.festi-cart-list tr.festi-cart-item td.festi-cart-product-title a.festi-cart-title:hover {
    color: #000!important;
}

body div.festi-cart-pop-up-products-content p.festi-cart-buttons a.festi-cart-view-cart:hover,
body div.festi-cart-pop-up-products-content p.festi-cart-buttons a.festi-cart-checkout:hover {
    background-color: #D4D4D4!important;
    color: #000000!important;
}

/*--------------------------------------------------------------
# Slide Out Cart
--------------------------------------------------------------*/

.side-cart{
  overflow: auto;
  position:fixed;
  width:300px;
  height:100%;
  right:0;
  background:#141414;
  z-index:10000;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.side-cart.hidden{
  position:fixed;
  right:-300px;
  width:300px;
  height:100%;
  background:black;
  z-index:100;
  -webkit-transition: all .5s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .5s cubic-bezier(.645,.045,.355,1);
  transition: all .5s cubic-bezier(.645,.045,.355,1);
}

.side-cart-inner{
  padding:40% 3% 0 6%;
  position:relative;
  left:0;
  -webkit-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
}

.side-cart-inner.hidden{
  position:relative;
  right:-100px;
  -webkit-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  -moz-transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
  transition: all .7s 0.1s cubic-bezier(.645,.045,.355,1);
}

.side-cart h3 {
    margin-bottom: 35px;
    letter-spacing:3px;
    color: white;
    font-weight: bold;
}

.side-cart a {
    color: #999999;
    font-weight: 400;
    font-family:'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    margin-left:0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.side-cart a:hover,
.side-cart a:active {
    color: white;
    font-weight: 400;
    font-family:'Montserrat';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.side-cart ul {
  list-style:none;
}

.side-cart ul > li {
  padding-bottom:2em;
}

.side-cart .menu-footer{
    background: black;
    border-top: 1px solid #2B2B2B;
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

a.remove,
a.remove:hover {
    color: #f00!important;
    background:none!important;
    font-size: 13px!important;
    display:block;
}

ul.cart_list li img,
ul.product_list_widget li img {
    width: 100px!important;
}
ul.cart_list li img,
ul.product_list_widget li img {
    float: right;
    margin-left: 4px;
    width: 32px;
    height: auto;
    box-shadow: none;
}

ul.cart_list,
ul.product_list_widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.cart_list li dl,
ul.product_list_widget li dl {
    margin: 0;
    padding-left: 0;
    border-left: 0;
}

ul.cart_list li,
ul.product_list_widget li {
    padding: 10px 0 50px 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #4d4b4b;
}
ul.cart_list li,
ul.product_list_widget li {
    padding: 4px 0;
    margin: 0;
    list-style: none;
}

/*--------------------------------------------------------------
# Quick View
--------------------------------------------------------------*/

#yith-quick-view-modal .yith-wcqv-wrapper {
    padding: 0;
}

.woocommerce div.product div.images {
    margin: -20px;
}

.woocommerce div.product div.summary {
    padding: 20px 30px 20px 0!important;
}

#yith-quick-view-close {
    border: none;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 16px;
    width: 28px;
    height: 25px;
    text-align: center;
    line-height: 31px;
    z-index: 2;
    opacity: 1;
}

#yith-quick-view-modal.open .yith-wcqv-main {
    height: auto;
    overflow-y: hidden;
}

#yith-quick-view-modal .yith-wcqv-main {
    box-shadow: none;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #000;
}

.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
    text-decoration: none;
}


/*--------------------------------------------------------------
# Tooltips
--------------------------------------------------------------*/

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition:
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}


/*--------------------------------------------------------------
# Visual Composer Animations
--------------------------------------------------------------*/

/* Bottom to top */
.wpb_start_animation.wpb_bottom-to-top {
  -webkit-animation: elusive_wpb_btt 2.0s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  /* Safari 4+ */
  -moz-animation: elusive_wpb_btt 2.0s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  /* Fx 5+ */
  -o-animation: elusive_wpb_btt 2.0s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  /* Opera 12+ */
  animation: elusive_wpb_btt 2.0s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  /* IE 10+ */
  opacity: 1!important;
}

/* Bottom to top keyframes */
@-webkit-keyframes elusive_wpb_btt {
    0% {
        -webkit-transform: translate(0, 20%);
        opacity: 1;
        filter: alpha(opacity=1)
    }
    100% {
        -webkit-transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes elusive_wpb_btt {
    0% {
        -moz-transform: translate(0, 20%);
        opacity: 1;
        filter: alpha(opacity=1)
    }
    100% {
        -moz-transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes elusive_wpb_btt {
    0% {
        -o-transform: translate(0, 20%);
        opacity: 1;
        filter: alpha(opacity=1)
    }
    100% {
        -o-transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes elusive_wpb_btt {
    0% {
        -webkit-transform: translate(0, 20%);
        -ms-transform: translate(0, 20%);
        -o-transform: translate(0, 20%);
        transform: translate(0, 20%);
        opacity: 1;
        filter: alpha(opacity=1)
    }
    100% {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    width: 100px;
}

.woocommerce .widget_layered_nav ul li:after, .woocommerce .widget_layered_nav ul li:before {
    content: " ";
    display: inline;
    margin-left: 16px;
}

.product_list_widget li:before,
.product_list_widget li:before {
    content: '';
    border-top: 0px solid #dfdfdf!important;
    padding: 4px;
    position: relative;
    top: 55px;
    left: -8px;
}

ul.cart_list li,
ul.product_list_widget li {
    padding: 10px 0 50px 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #4d4b4b;
}

#sidebar-area a {
    text-decoration: none;
    color: #434343;
}

#sidebar-area a:hover {
  color:black;
}

.widget-title {
    margin-left: 20px;
    margin-right: 20px;
    padding-top:16px;
    padding-bottom: 7px;
    border-bottom: 1px solid #CDCDCD;
}

/*--------------------------------------------------------------
# Responsive Specific
--------------------------------------------------------------*/

@media screen and (max-width: 1300px) {

  .mobile-menu-icon{
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 37px;
    right: 54px;
    width: 25px;
    height: 25px;
    background-image: url('images/mobile-menu-icon.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
  }

  .site-header {
    width:100%;
  }

  .site-logo {
    position: relative;
    left: 10px;
  }

  .site-logo img{
    max-width:inherit;
  }

  .custom.tp-bullets {
    left: 30px!important;
    top: 20%!important;
  }

  .custom.tp-bullets:before,
  .custom.tp-bullets:after {
    content: '';
    width: 0;
  }


}

@media screen and (max-width: 760px) {

  .footer-row.bottom{
    margin:0;
  }

  .footer-col {
    display:block;
    width:100%;
    text-align:center!important;
    min-height:30px;
    padding:0;
  }

  #menu-footer{
    padding:0;
  }

  .woocommerce div.product div.images,
  .woocommerce .woocommerce-breadcrumb {
    margin: 0 0 10px 0!important;
  }

  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary,
  .woocommerce-tabs li {
    float: none;
    width: 100%;
  }

  .nomargins div{
    margin-left:0!important;
    margin-right:0!important;
  }

  .vc_column-inner {
    margin: 20px 0;
  }

  .hide-mobile {
    background-size: 0 0!important;
  }

}

@media screen and (max-width: 900px) {

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: inline-block!important;
    float: none!important;
    padding: 2em!important;
    position: relative;
    width: 100%!important;
  }

  .woo-footer .footer-block {
    display:none!important;
  }

  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
        width: 100%;
  }

  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    padding: 10px!important;
    width: 90%;
  }

  .home-splash {
    display:none!important;
  }


}

.stopscroll {overflow:hidden;}
