/******************************************************************

Stylesheet: Woocommerce Styles

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
@each $color-name, $color-bg, $color-text in $color-array {
}
*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
ANIMATION
*********************/
/*********************
CIRCLE & TRIANGLE
*********************/
/*********************
MEDIA QUERIES
*********************/
.slideshow-family-programs {
  background: transparent;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.slideshow-family-programs, .slideshow-family-programs .slides {
  overflow: hidden;
  position: relative;
}
.slideshow-family-programs .flex-control-nav {
  z-index: 1;
  width: calc(100% - 29px - 29px);
  bottom: 3px;
  left: 29px;
  right: 29px;
}
.slideshow-family-programs .flex-control-nav li {
  margin: 0 3px;
}
.slideshow-family-programs .flex-direction-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.slideshow-family-programs .flex-direction-nav a {
  width: 29px;
  height: auto;
  opacity: 1;
  border: 0;
}
.slideshow-family-programs .flex-direction-nav a:before {
  position: absolute;
  font-size: 1em;
}
.slideshow-family-programs .flex-direction-nav a.flex-prev {
  left: 0;
  right: auto;
  padding-left: 1em;
}
.slideshow-family-programs .flex-direction-nav a.flex-prev:before {
  left: 0;
  right: auto;
}
.slideshow-family-programs .flex-direction-nav a.flex-next {
  left: auto;
  right: 0;
  padding-right: 1em;
}
.slideshow-family-programs .flex-direction-nav a.flex-next:before {
  left: auto;
  right: 0;
}
.slideshow-family-programs .flex-control-paging li a {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  background: #fff;
}
.slideshow-family-programs .flex-control-paging li a.flex-active {
  background: rgba(0, 0, 0, 0.9);
}

p {
  margin: 0 0 10px;
}

@-webkit-keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Text meant only for screen readers. */
.screen-reader-text, .woocommerce .stars a span, .woocommerce .star-rating span {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus, .woocommerce .stars a span:focus, .woocommerce .star-rating span:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: 1px solid #E6E6E6;
  border-left-width: 5px;
  padding: 1em 1em 1em 1.5em;
  margin: 1.25rem 0;
  font-size: 14px;
}
.woocommerce-message:before,
.woocommerce-error:before,
.woocommerce-info:before {
  content: "";
  position: absolute;
  top: 50%;
  top: calc(50% - 0.5em);
  left: 0;
  border-top: 0.5em solid transparent;
  border-left: 0.5em solid #E6E6E6;
  border-bottom: 0.5em solid transparent;
}
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  min-width: 150px;
  width: 100%;
  max-width: 30%;
  margin-left: 1em;
  text-align: center;
}

.woocommerce-message {
  border-color: #95cf7d;
}
.woocommerce-message:before {
  border-left-color: #95cf7d;
}

.woocommerce-error {
  border-color: #e0909c;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-error:before {
  border-left-color: #e0909c;
}
.woocommerce-error li {
  display: block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0.25em 0;
  width: 100%;
}

.woocommerce-checkout .woocommerce-error {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-checkout .woocommerce-error li {
  display: block;
  margin: 0;
  padding: 0.25em 0;
}
.woocommerce-checkout .woocommerce-info {
  display: block;
}
.js .woocommerce-checkout.check-scroll-element {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.js .woocommerce-checkout.check-scroll-element #customer_details > *,
.js .woocommerce-checkout.check-scroll-element #order_review > * {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.js .woocommerce-checkout.check-scroll-element.viewed {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *,
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > * {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(n+16),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(n+16) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(15),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(15) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(14),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(14) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(13),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(13) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(12),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(12) {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(11),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(11) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(10),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(10) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(9),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(8),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(8) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(7),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(6),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(5),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(4),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(3),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(2),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.js .woocommerce-checkout.check-scroll-element.viewed #customer_details > *:nth-child(1),
.js .woocommerce-checkout.check-scroll-element.viewed #order_review > *:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.woocommerce-cart .woocommerce-message {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.js .woocommerce-cart .check-scroll-element {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.js .woocommerce-cart .check-scroll-element.viewed {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form table tbody tr {
  opacity: 0;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(n+16) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(15) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(14) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(13) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(12) {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(11) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(10) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(8) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.js .woocommerce-cart .check-scroll-element.woocommerce-cart-form.viewed table tbody tr:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.woocommerce .onsale {
  position: absolute;
  z-index: 10;
  padding: 0.25em 0.5em;
  border: 2px solid #333;
  background: transparent;
  color: #333;
}
.woocommerce .woocommerce-ordering {
  width: initial;
}
.woocommerce .woocommerce-ordering select {
  width: initial;
}
.woocommerce .woocommerce-breadcrumb {
  display: none;
  font-size: 1.2rem;
  margin: 1em 0;
}
.woocommerce .cart:not(table) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .cart:not(table) .quantity {
  float: left;
}
.woocommerce .cart:not(table) .quantity input {
  margin: 0;
}
.woocommerce table.cart .actions-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce table.cart .actions-flex label {
  width: 100%;
  font-size: 1.2rem;
  padding: 0 0 0.25em;
}
.woocommerce table.cart .actions {
  clear: both;
}
.woocommerce table.cart img {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
}
.woocommerce table.cart .product-remove {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .woocommerce table.cart .product-remove {
    text-align: right;
  }
}
.woocommerce table.cart .product-remove .remove {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  border-radius: 5em;
  padding: 0.125em 0.25em 0.1em 0.3em;
  background-color: #fff;
  color: #333;
  border: 0.125em solid #333;
  font-size: 1.25em;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce table.cart .product-remove .remove:hover, .woocommerce table.cart .product-remove .remove:focus {
  background-color: #333;
  color: #fff;
}
.woocommerce table.cart .quantity input {
  width: 100%;
  max-width: none;
  min-height: 34px;
  border-radius: 0;
  padding: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.woocommerce #content .images {
  overflow: hidden;
  padding-bottom: 2em;
}
.woocommerce .coupon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce .coupon > * {
  height: auto;
  margin: 0 1em 0 0;
}
.woocommerce .coupon > *:last-child {
  margin: 0;
}
.woocommerce .coupon button[name=apply_coupon] {
  white-space: nowrap;
  text-transform: capitalize;
}
.woocommerce .coupon label {
  line-height: 30px;
}
.woocommerce .coupon .input-text {
  width: 100%;
  max-width: 100%;
}
.woocommerce button[name=update_cart] {
  min-height: 34px;
  color: #fff;
  text-transform: capitalize;
}
@media only screen and (min-width: 481px) {
  .woocommerce button[name=update_cart] {
    float: right;
    margin-left: 0.5em;
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce button[name=update_cart] {
    margin-top: 0.5em;
    width: 100%;
  }
}
.woocommerce .product_meta {
  font-size: 0.75rem;
  margin: 1em 0;
}
.woocommerce .product_meta .sku_wrapper {
  display: none;
}
.woocommerce .woocommerce-tabs {
  display: block;
  width: 100%;
  clear: both;
  float: none;
}
.woocommerce .woocommerce-tabs .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.woocommerce .woocommerce-tabs .tabs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 0;
}
@media only screen and (max-width: 480px) {
  .woocommerce .woocommerce-tabs .tabs li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.woocommerce .woocommerce-tabs .tabs li a {
  display: block;
  padding: 0.75em 1em;
  background-color: #F2F2F2;
  border: 1px solid #E6E6E6;
  color: #333;
  text-decoration: none;
  margin-bottom: -2px;
}
@media only screen and (max-width: 480px) {
  .woocommerce .woocommerce-tabs .tabs li a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.woocommerce .woocommerce-tabs .tabs li.active {
  cursor: default;
}
.woocommerce .woocommerce-tabs .tabs li.active a {
  background-color: #fff;
  border-bottom-color: #fff;
  color: #333;
  cursor: default;
}
.woocommerce .woocommerce-tabs .wc-tab {
  background: #fff;
  border: 1px solid #E6E6E6;
  border-bottom-width: 2px;
  padding: 1em;
}
.woocommerce .woocommerce-tabs .wc-tab > h2:first-child {
  font-size: 18px;
}
.woocommerce .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch-around;
      -ms-flex-align: stretch-around;
          align-items: stretch-around;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 0;
  width: 100%;
  clear: both;
  float: none;
}
@media \0 screen\,screen\9  {
  .woocommerce .products {
    overflow: hidden;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .woocommerce .products {
    overflow: hidden;
  }
}
.woocommerce .products a {
  text-decoration: none;
}
.woocommerce .products:before, .woocommerce .products:after {
  display: none;
}
.woocommerce .products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  list-style-position: inside;
  list-style-image: none;
  margin: 1em 1% 2em;
  width: 100%;
  max-width: 300px;
}
@media \0 screen\,screen\9  {
  .woocommerce .products .product {
    display: block;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .woocommerce .products .product {
    display: block;
  }
}
.woocommerce .products .product > * {
  width: 100%;
}
.woocommerce .products .product a:not(.button):not(.added_to_cart) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: calc(100% - 30px);
  padding-bottom: 0.5em;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media \0 screen\,screen\9  {
  .woocommerce .products .product a:not(.button):not(.added_to_cart) {
    display: block;
    height: auto;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .woocommerce .products .product a:not(.button):not(.added_to_cart) {
    display: block;
    height: auto;
  }
}
.woocommerce .products .product a:not(.button):not(.added_to_cart):hover {
  opacity: 0.75;
}
.woocommerce .products .product .added_to_cart {
  background: #333;
  color: #fff;
  border-bottom: 0.5em solid #fff;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media \0 screen\,screen\9  {
  .woocommerce .products .product .added_to_cart {
    border-bottom: none;
    border-top: 0.5em solid #fff;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .woocommerce .products .product .added_to_cart {
    border-bottom: none;
    border-top: 0.5em solid #fff;
  }
}
.woocommerce .products .product .added_to_cart:hover {
  opacity: 0.75;
}
.woocommerce .products .product .product-image-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.woocommerce .products .product .product-image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce .products .product .product-loop-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media \0 screen\,screen\9  {
  .woocommerce .products .product .product-loop-title {
    display: block;
  }
}
@media screen and (min-width: 0\0 ) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0 ) and (min-resolution: 72dpi) {
  .woocommerce .products .product .product-loop-title {
    display: block;
  }
}
.woocommerce .products .product .product-loop-title h2 {
  font-size: 16px;
  margin: 0;
  line-height: 1.25;
}
.woocommerce .products .product .price {
  display: block;
  margin: 0.5em 0;
  color: #333;
}
.woocommerce .products .product .added_to_cart {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0.25em 0;
  display: block;
  text-align: center;
}
.woocommerce .products .product .button {
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  background: #fff;
  color: #333;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #333;
  text-align: center;
  text-transform: capitalize;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
}
.woocommerce .products .product .button:hover {
  background: #F2F2F2;
}
.woocommerce .products .product .button.loading {
  position: relative;
  cursor: no-drop;
  cursor: not-allowed;
  cursor: wait;
}
.woocommerce .products .product .button.loading:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.5em - 0.25em);
  left: calc(50% - 0.5em - 0.25em);
  z-index: 5;
  margin: 0;
  border: 0.25em solid #fff;
  border-radius: 2em;
  border-top-color: #333333;
  width: 1em;
  height: 1em;
  -webkit-animation: rotate-spin 2s linear infinite;
  animation: rotate-spin 2s linear infinite;
}
.woocommerce .products .product .button.loading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ebe16f;
  z-index: 4;
}
.page-template-page-home .woocommerce .products .product .button, .single-exhibition .woocommerce .products .product .button, .home .woocommerce .products .product .button {
  display: none;
}
.woocommerce .products .product .image-wrapper {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.woocommerce .products .product .image-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
}
.js .woocommerce .products .product.check-scroll-element {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.js .woocommerce .products .product.check-scroll-element.viewed {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(n+16) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(15) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(14) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(13) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(12) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(11) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(10) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(9) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(8) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(7) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(6) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(5) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(4) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(3) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(2) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.js .woocommerce .products .product.check-scroll-element.viewed ~ .check-scroll-element:nth-child(1) {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.woocommerce .products > *:not(.product) {
  width: 100%;
}
.woocommerce .products.related {
  clear: both;
  float: none;
}
@media only screen and (min-width: 300px) {
  .woocommerce .products.related .product {
    width: 48%;
  }
}
.woocommerce .blockOverlay {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
}
.woocommerce #payment .payment_methods {
  margin: 1em 0;
}
.woocommerce #payment .payment_methods li {
  list-style-image: none;
  list-style-position: inside;
  list-style-type: none;
  margin: 1em 0;
  padding: 1.5em;
  border: 1px solid #E6E6E6;
}
.woocommerce #payment .payment_methods li p {
  margin: 0.5em 0 0;
}
.woocommerce #payment img {
  margin: 0 0.75em;
  max-height: 50px;
}
.woocommerce #payment .place-order {
  text-align: center;
}
.woocommerce .go-to-shop-btn {
  margin-bottom: 1.5em;
}
.woocommerce .star-rating span {
  height: 1px !important;
  width: 1px !important;
}
.woocommerce .star-rating .line-star,
.woocommerce .star-rating .full-star {
  color: #fbe27b;
  margin: 0 0.125em;
}
.woocommerce .stars a {
  position: relative;
  visibility: hidden;
  width: 1em;
  height: 1em;
  font-size: 1.25em;
  color: #fbe27b;
}
.woocommerce .stars a .line-star {
  display: none;
  visibility: hidden;
}
.woocommerce .stars a .full-star {
  display: inline-block;
  visibility: visible;
}
.woocommerce .stars a span {
  height: 1px !important;
  width: 1px !important;
}
.woocommerce .stars a.active ~ a .line-star, .woocommerce .stars a:hover ~ a .line-star, .woocommerce .stars a:focus ~ a .line-star, .woocommerce .stars a:active ~ a .line-star {
  display: inline-block !important;
  visibility: visible !important;
}
.woocommerce .stars a.active ~ a .full-star, .woocommerce .stars a:hover ~ a .full-star, .woocommerce .stars a:focus ~ a .full-star, .woocommerce .stars a:active ~ a .full-star {
  display: none !important;
  visibility: hidden !important;
}
.woocommerce .stars:not(.selected) .line-star {
  display: inline-block;
  visibility: visible;
}
.woocommerce .stars:not(.selected) .full-star {
  display: none;
  visibility: hidden;
}
.woocommerce .stars:not(.selected).active .line-star, .woocommerce .stars:not(.selected):hover .line-star, .woocommerce .stars:not(.selected):focus .line-star, .woocommerce .stars:not(.selected):active .line-star {
  display: none;
  visibility: hidden;
}
.woocommerce .stars:not(.selected).active .full-star, .woocommerce .stars:not(.selected):hover .full-star, .woocommerce .stars:not(.selected):focus .full-star, .woocommerce .stars:not(.selected):active .full-star {
  display: inline-block;
  visibility: visible;
}
.woocommerce #reviews form {
  margin: 0;
}
.woocommerce #reviews form input[type=submit] {
  margin-bottom: 0;
}
.woocommerce #reviews .commentlist {
  display: block;
  margin-left: 0;
}
.woocommerce #reviews .commentlist .review {
  display: block;
  margin: 0;
  padding: 1.5em 0 1.25em;
  border-bottom: 1px solid #e6e6e6;
}
.woocommerce #reviews #reply-title {
  display: block;
  font-size: 23px;
  line-height: 1.1em;
  margin: 1.25em 0 0.5em;
}
.woocommerce .woocommerce-product-attributes {
  border: 1px solid #e6e6e6;
}
.woocommerce .woocommerce-product-attributes > *:first-child tr:first-child {
  border-top: none;
}
.woocommerce .woocommerce-product-attributes tr {
  border-top: 1px solid #e6e6e6;
}
.woocommerce .woocommerce-product-attributes tr:nth-of-type(odd) {
  background: #ffffff;
}
.woocommerce .woocommerce-product-attributes tr:nth-of-type(even) {
  background: #fafafa;
}
.woocommerce .woocommerce-product-attributes tr th, .woocommerce .woocommerce-product-attributes tr td {
  border-right: 1px solid #e6e6e6;
  padding: 0.5em 1em;
}
.woocommerce .woocommerce-product-attributes tr th:last-child, .woocommerce .woocommerce-product-attributes tr td:last-child {
  border-right: none;
}

.checkout.woocommerce-checkout.processing {
  background-image: url("../images/ajax-loader.gif") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: auto;
  opacity: 0.5;
}

.woocommerce form label,
.woocommerce-checkout label,
.woocommerce-shipping-calculator label {
  cursor: default;
}
.woocommerce form label[for=billing_address_1], .woocommerce form label[for=shipping_address_1],
.woocommerce-checkout label[for=billing_address_1],
.woocommerce-checkout label[for=shipping_address_1],
.woocommerce-shipping-calculator label[for=billing_address_1],
.woocommerce-shipping-calculator label[for=shipping_address_1] {
  margin-top: 23px;
}
.woocommerce form input:not([type=checkbox]):not([type=radio]),
.woocommerce form textarea,
.woocommerce form .uneditable-input,
.woocommerce form .select2-container--default .select2-selection--single,
.woocommerce form select,
.woocommerce-checkout input:not([type=checkbox]):not([type=radio]),
.woocommerce-checkout textarea,
.woocommerce-checkout .uneditable-input,
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout select,
.woocommerce-shipping-calculator input:not([type=checkbox]):not([type=radio]),
.woocommerce-shipping-calculator textarea,
.woocommerce-shipping-calculator .uneditable-input,
.woocommerce-shipping-calculator .select2-container--default .select2-selection--single,
.woocommerce-shipping-calculator select {
  width: 100%;
  max-width: 100%;
  min-height: 34px;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.woocommerce form input:not([type=checkbox]):not([type=radio]),
.woocommerce form textarea,
.woocommerce-checkout input:not([type=checkbox]):not([type=radio]),
.woocommerce-checkout textarea,
.woocommerce-shipping-calculator input:not([type=checkbox]):not([type=radio]),
.woocommerce-shipping-calculator textarea {
  padding: 0.5em;
}
.woocommerce form textarea,
.woocommerce-checkout textarea,
.woocommerce-shipping-calculator textarea {
  min-height: 80px;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
}

.woocommerce-shipping-calculator {
  margin: 0;
}
.woocommerce-shipping-calculator p {
  margin: 0;
}

#calc_shipping_country_field {
  margin-bottom: 13px;
}

.checkout_coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.checkout_coupon > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.checkout_coupon > *:first-child {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1em;
}
.checkout_coupon > *:nth-child(2) {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.checkout_coupon > * input {
  margin: 0;
}
.checkout_coupon > * button {
  width: 100%;
}

.woocommerce-page .content > .main,
.single-product .content > .main {
  width: 100%;
}
.woocommerce-page .content > .sidebar,
.single-product .content > .sidebar {
  display: none;
}
.woocommerce-page .out-of-stock,
.single-product .out-of-stock {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0.25em 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0.9;
}

.single-product .product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image {
  padding: 0.5em;
}
.single-product .product-gallery .woocommerce-product-gallery__image, .single-product .product-gallery .woocommerce-product-gallery__image * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .product-gallery .woocommerce-product-gallery__image a {
  height: 75px;
  width: 75px;
  border: 1px solid #E6E6E6;
}
.single-product .product-gallery .woocommerce-product-gallery__image a.active {
  border-color: #e0909c;
}
.single-product .product-gallery .woocommerce-product-gallery__image img {
  margin: 0;
  width: auto;
  height: auto;
}
.single-product .product-gallery .woocommerce-product-gallery__image.portrait img {
  max-width: none;
  height: 100%;
  max-height: 150px;
}
.single-product .product-gallery .woocommerce-product-gallery__image.landscape img {
  width: 100%;
  max-width: 150px;
  max-height: none;
}
.single-product .image-wrapper {
  padding-bottom: 1em;
  width: 100%;
}
.single-product .image-wrapper, .single-product .image-wrapper * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .image-wrapper img {
  margin: 0 auto;
}
.single-product .flex-wrapper {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .single-product .flex-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .single-product .flex-wrapper > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .single-product .flex-wrapper .gallery {
    padding-right: 1em;
  }
  .single-product .flex-wrapper .gallery ~ .entry-content {
    padding-left: 1em;
  }
}
.single-product .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.single-product .owl-item *:not(img) {
  height: 100%;
}
.js .single-product .check-scroll-element {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.js .single-product .check-scroll-element > .woocommerce-tabs, .js .single-product .check-scroll-element > .gallery, .js .single-product .check-scroll-element > .entry-summary,
.js .single-product .check-scroll-element .products,
.js .single-product .check-scroll-element .products > .product {
  opacity: 0;
}
.js .single-product .check-scroll-element.viewed {
  opacity: 1;
}
.js .single-product .check-scroll-element.viewed > .woocommerce-tabs, .js .single-product .check-scroll-element.viewed > .gallery, .js .single-product .check-scroll-element.viewed > .entry-summary {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .single-product .check-scroll-element.viewed > .woocommerce-tabs, .js .single-product .check-scroll-element.viewed > .gallery {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.js .single-product .check-scroll-element.viewed > .entry-summary {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .single-product .check-scroll-element.viewed .products {
  opacity: 1;
}
.js .single-product .check-scroll-element.viewed .products > .product {
  opacity: 1;
  -webkit-animation: fade_up 1s linear;
          animation: fade_up 1s linear;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(n+16) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(15) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(14) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(13) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(12) {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(11) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(10) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(8) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(7) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(6) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.js .single-product .check-scroll-element.viewed .products > .product:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.single-exhibition .programs-exhibitions-relationship-wrapper .flex-direction-nav a {
  width: 60px;
}
.single-exhibition .programs-exhibitions-relationship-wrapper .flex-direction-nav a.flex-prev, .single-exhibition .programs-exhibitions-relationship-wrapper .flex-direction-nav a.flex-next {
  padding: 0;
}
.single-exhibition .product-exhibitions-relationship-wrapper {
  position: relative;
}
.single-exhibition .product-exhibitions-relationship-wrapper .product-exhibitions-relationship .slides .product {
  margin: 0;
  max-width: 100%;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions {
  background: transparent;
  padding-bottom: 2em;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .slides {
  overflow: hidden;
  position: relative;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-control-nav {
  z-index: 1;
  width: calc(100% - 29px - 29px);
  bottom: -6px;
  left: 29px;
  right: 29px;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-control-nav li {
  margin: 0 3px;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a {
  width: 29px;
  height: auto;
  opacity: 1;
  border: 0;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a:before {
  position: absolute;
  font-size: 1em;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a.flex-prev {
  left: 0;
  right: auto;
  padding-left: 1em;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a.flex-prev:before {
  left: 0;
  right: auto;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a.flex-next {
  left: auto;
  right: 0;
  padding-right: 1em;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-direction-nav a.flex-next:before {
  left: auto;
  right: 0;
}
.single-exhibition .product-exhibitions-relationship-wrapper .slideshow-products-exhibitions .flex-control-paging li a {
  width: 8px;
  height: 8px;
}

@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  80% {
    opacity: 1;
  }
  99% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  display: block;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  float: right;
  width: 100%;
  background-color: #F2F2F2;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  padding: 1rem 1.5rem;
  margin: 0;
  display: block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  display: block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  padding: 0.25em;
  font-size: 1.125em;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: left;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.woocommerce-account article {
  position: relative;
}
.woocommerce-account .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  min-height: 300px;
  position: relative;
}

#yith-wacp-popup .yith-wacp-wrapper .yith-wacp-close {
  color: #fff;
  background-color: #333333;
  text-decoration: none;
}

.woocommerce-pagination {
  text-align: center;
}
.woocommerce-pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.woocommerce-pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #E6E6E6;
}
.woocommerce-pagination li:last-of-type {
  border: none;
}
.woocommerce-pagination a, .woocommerce-pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #333;
}
.woocommerce-pagination a:hover, .woocommerce-pagination a:focus, .woocommerce-pagination span:hover, .woocommerce-pagination span:focus {
  background-color: #F2F2F2;
  color: #333;
}
.woocommerce-pagination .current {
  cursor: default;
  background-color: var(--esker-accent-color, #E6E6E6);
  color: var(--esker-accent-text-color, #333);
}
.woocommerce-pagination .current:hover, .woocommerce-pagination .current:focus {
  background-color: #E6E6E6;
  color: #333;
}

.shop_table {
  width: 100%;
  border: 1px solid #E6E6E6;
  margin-bottom: 1.5em;
}
.shop_table label {
  cursor: default;
}
.shop_table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.shop_table tr {
  border-bottom: 1px solid #E6E6E6;
}
.shop_table td {
  padding: 7px;
  border-right: 1px solid #E6E6E6;
}
.shop_table td:last-child {
  border-right: 0;
}
.shop_table td[data-title=Actions] {
  padding: 0;
  text-align: center;
}
.shop_table td[data-title=Actions] > * {
  margin: 7px;
}
.shop_table th {
  background-color: #F2F2F2;
  border-bottom: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
}
.shop_table th:last-child {
  border-right: 0;
}
.shop_table #shipping_method {
  display: block;
  list-style-type: none;
  margin: 0;
}
.shop_table #shipping_method li {
  display: block;
}
.shop_table #shipping_method li input {
  margin-right: 0.25em;
}
.shop_table #shipping_method li input + label {
  display: inline-block;
}

#shipping_method {
  display: block;
  list-style-type: none;
  margin: 0;
}
#shipping_method li {
  display: block;
}
#shipping_method li input[type=radio] {
  margin: 0 0.5em 0 0;
}
#shipping_method li label {
  display: inline-block;
}

.wc-proceed-to-checkout {
  text-align: center;
}

.checkout-button,
#place_order {
  font-size: 1.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5em 1em;
  text-transform: capitalize;
}

div.shops-cat-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 1em;
}
div.shops-cat-listing .shop-cat-term {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
div.shops-cat-listing .shop-cat-term > * {
  display: block;
  padding: 0.25em 1em;
  margin: 0.25em;
  border: 1px solid #333;
  background: #fff;
  color: #333;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
div.shops-cat-listing .shop-cat-term a:hover {
  background: #F2F2F2;
}
div.shops-cat-listing .shop-cat-term span,
div.shops-cat-listing .shop-cat-term strong {
  background: #333;
  color: #fff;
}

@media only screen and (min-width: 481px) {
  .woocommerce .products .product {
    width: 48%;
  }
  .woocommerce .products.related .product {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 31%;
    max-width: 31%;
  }
}
@media only screen and (min-width: 769px) {
  .woocommerce .col2-set {
    width: 100%;
  }
  .woocommerce .col2-set:after {
    content: "";
    display: block;
    clear: both;
    float: none;
  }
  .woocommerce .col2-set .col-1 {
    float: left;
    width: 48%;
  }
  .woocommerce .col2-set .col-2 {
    float: right;
    width: 48%;
  }
  .woocommerce #content {
    width: 100%;
  }
  .woocommerce #content .images {
    float: left;
    width: 48%;
    padding-bottom: 0;
  }
  .woocommerce #content .summary {
    float: right;
    width: 48%;
  }
  .woocommerce .products.related .product {
    width: 23%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: absolute;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: 0;
    left: 0;
    width: 33.3333333333%;
    width: 33.33%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 0 0 0 1.5em;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 33.3333333333%;
    padding-left: 33.33%;
    padding-left: calc(33.3333333333% + 3em);
    padding-left: calc(33.33% + 3em);
  }
}
@media only screen and (min-width: 1030px) {
  .woocommerce .products .product {
    width: 31%;
  }
  .woocommerce .products.related .product {
    width: 18%;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 28.5714285714%;
    width: 28.5714286%;
  }
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account article > header {
    padding-left: 28.5714285714%;
    padding-left: 28.5714286%;
    padding-left: calc(28.5714285714% + 3em);
    padding-left: calc(28.5714286% + 3em);
  }
}
@media only screen and (min-width: 1240px) {
  .woocommerce .products .product {
    width: 23%;
  }
}
@media only screen and (max-width: 480px) {
  .woocommerce-thankyou-order-details {
    margin: 0;
    list-style-type: none;
    list-style-position: inside;
  }
  .woocommerce-thankyou-order-details li {
    margin: 0;
    padding: 0.5em;
    list-style-type: none;
    list-style-position: inside;
    border: 1px solid #E6E6E6;
    border-top: none;
  }
  .woocommerce-thankyou-order-details li:first-of-type {
    border-top: 1px solid #E6E6E6;
  }
  .woocommerce-thankyou-order-details li:nth-of-type(even) {
    background-color: #F2F2F2;
  }
  .shop_table {
    width: 100%;
    border-top: none;
    border-right: 1px solid #E6E6E6;
    border-bottom: none;
    border-left: 1px solid #E6E6E6;
    margin-bottom: 1.5em;
  }
  .shop_table thead {
    display: none;
  }
  .shop_table tbody,
  .shop_table tr,
  .shop_table td,
  .shop_table th,
  .shop_table tfoot {
    display: block;
    border: none;
  }
  .shop_table tr {
    border-bottom: 1px solid #E6E6E6;
  }
  .shop_table tr:first-of-type, .shop_table tr:first-child {
    border-top: 1px solid #E6E6E6;
  }
  .shop_table tr:nth-of-type(even), .shop_table tr:nth-child(even) {
    background-color: #F2F2F2;
  }
  .shop_table td {
    padding: 0.5em;
    border-bottom: 1px solid #E6E6E6;
  }
  .shop_table td:last-of-type, .shop_table td:last-child {
    border-right: 0;
  }
  .shop_table th {
    background-color: #F2F2F2;
    border-bottom: 1px solid #E6E6E6;
  }
  .shop_table th:last-of-type, .shop_table th:last-child {
    border-right: 0;
  }
  .shop_table .product-thumbnail {
    text-align: center;
  }
  .shop_table .product-thumbnail img {
    margin: 0 auto;
  }
  .shop_table .product-name,
  .shop_table .product-price,
  .shop_table .product-quantity,
  .shop_table .product-subtotal,
  .shop_table .product-total {
    position: relative;
    padding-left: 40%;
    border-top: 1px solid #E6E6E6;
  }
  .shop_table .product-name:before,
  .shop_table .product-price:before,
  .shop_table .product-quantity:before,
  .shop_table .product-subtotal:before,
  .shop_table .product-total:before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 35%;
    width: calc(40% - 0.5em);
    max-width: 35%;
    max-width: calc(40% - 0.5em);
    height: 100%;
    padding: 0 0.5em;
    border-right: 1px solid #E6E6E6;
    font-weight: 700;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .shop_table .product-name .product-name,
  .shop_table .product-name .product-price,
  .shop_table .product-name .product-quantity,
  .shop_table .product-name .product-subtotal,
  .shop_table .product-name .product-total,
  .shop_table .product-price .product-name,
  .shop_table .product-price .product-price,
  .shop_table .product-price .product-quantity,
  .shop_table .product-price .product-subtotal,
  .shop_table .product-price .product-total,
  .shop_table .product-quantity .product-name,
  .shop_table .product-quantity .product-price,
  .shop_table .product-quantity .product-quantity,
  .shop_table .product-quantity .product-subtotal,
  .shop_table .product-quantity .product-total,
  .shop_table .product-subtotal .product-name,
  .shop_table .product-subtotal .product-price,
  .shop_table .product-subtotal .product-quantity,
  .shop_table .product-subtotal .product-subtotal,
  .shop_table .product-subtotal .product-total,
  .shop_table .product-total .product-name,
  .shop_table .product-total .product-price,
  .shop_table .product-total .product-quantity,
  .shop_table .product-total .product-subtotal,
  .shop_table .product-total .product-total {
    padding: 0;
    border: none;
  }
  .shop_table .product-name .product-name:before,
  .shop_table .product-name .product-price:before,
  .shop_table .product-name .product-quantity:before,
  .shop_table .product-name .product-subtotal:before,
  .shop_table .product-name .product-total:before,
  .shop_table .product-price .product-name:before,
  .shop_table .product-price .product-price:before,
  .shop_table .product-price .product-quantity:before,
  .shop_table .product-price .product-subtotal:before,
  .shop_table .product-price .product-total:before,
  .shop_table .product-quantity .product-name:before,
  .shop_table .product-quantity .product-price:before,
  .shop_table .product-quantity .product-quantity:before,
  .shop_table .product-quantity .product-subtotal:before,
  .shop_table .product-quantity .product-total:before,
  .shop_table .product-subtotal .product-name:before,
  .shop_table .product-subtotal .product-price:before,
  .shop_table .product-subtotal .product-quantity:before,
  .shop_table .product-subtotal .product-subtotal:before,
  .shop_table .product-subtotal .product-total:before,
  .shop_table .product-total .product-name:before,
  .shop_table .product-total .product-price:before,
  .shop_table .product-total .product-quantity:before,
  .shop_table .product-total .product-subtotal:before,
  .shop_table .product-total .product-total:before {
    content: "";
    padding: 0;
    border: none;
  }
  .shop_table .product-name:before {
    content: "Product: ";
  }
  .shop_table .product-price:before {
    content: "Price: ";
  }
  .shop_table .product-quantity:before {
    content: "Quantity: ";
  }
  .shop_table .product-subtotal:before {
    content: "Subtotal: ";
  }
  .shop_table .product-total:before {
    content: "Total: ";
  }
}
.product-loop-title {
  background: #fff !important;
  margin-top: 25px;
  padding: 0 !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.product-loop-title h2 {
  font-size: 1.75em !important;
  font-weight: lighter;
}

.product-loop-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}
.product-loop-price p, .product-loop-price span {
  margin: 0;
}
.product-loop-price span {
  font-weight: 600;
}

.woo-product-link {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  color: black;
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}
.woo-product-link:hover {
  text-decoration: underline !important;
  color: var(--subtitle_font_color);
}

.woocommerce .products .product a:not(.button):not(.added_to_cart) {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.woocommerce .btn, .woocommerce .button, .woocommerce input[type=submit], .woocommerce button[name=update_cart], .woocommerce .products .product .button {
  color: #000000 !important;
  background-color: transparent !important;
  border: 1px solid #000000 !important;
}
.woocommerce .btn:hover, .woocommerce .button:hover, .woocommerce input[type=submit]:hover, .woocommerce button[name=update_cart]:hover, .woocommerce .products .product .button:hover {
  color: var(--subtitle_font_color) !important;
  border: 1px solid var(--subtitle_font_color) !important;
}

.shops-cat-listing {
  margin: 0;
}
.shops-cat-listing .shop-cat-term {
  list-style: none;
  margin-bottom: 14px;
}
.shops-cat-listing .shop-cat-term strong {
  color: var(--subtitle_font_color);
}

.single-exhibition .woocommerce .products {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
  row-gap: 1.8em;
}
.single-exhibition .woocommerce .products .product {
  width: 100%;
}
@media (min-width: 768px) {
  .single-exhibition .woocommerce .products .product {
    width: 48%;
  }
}