@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: WooCommerce Stylesheet

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

Stylesheet: Variables

******************************************************************/
/**************
 * Fonts
 **************/
/**************
 * Colors
 **************/
/* Social Media - http://www.paulund.co.uk/social-media-colours */
/**************
 * Forms
 **************/
/**************
 * Grid Stuff
 **************/
/**************
 * Sizes
 **************/
/**************
 * Other
 **************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. 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 like gradients.

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

******************************************************************/
/*************************
 * CLEARFIX
 * http://nicolasgallagher.com/micro-clearfix-hack/
 ************************/
.clearfix {
  zoom: 1;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*************************
 * WRAP
 ************************/
/*********************
TYPOGRAPHY
*********************/
/*
responsive typography
http://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps/
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Arial, serif !important;
  font-style: italic;
}

.mobile-only,
li.mobile-only,
tr.mobile-only,
th.mobile-only,
td.mobile-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }

  li.mobile-only {
    display: inline-block !important;
  }

  tr.mobile-only {
    display: table-row !important;
  }

  th.mobile-only,
  td.mobile-only {
    display: table-cell !important;
  }
}
.mobile-hide {
  display: block !important;
}

li.mobile-hide {
  display: inline-block !important;
}

tr.mobile-hide {
  display: table-row !important;
}

th.mobile-hide,
td.mobile-hide {
  display: table-cell !important;
}

@media only screen and (max-width: 767px) {
  .mobile-hide,
  li.mobile-hide,
  tr.mobile-hide,
  th.mobile-hide,
  td.mobile-hide {
    display: none !important;
  }
}
.tablet-only,
li.tablet-only,
tr.tablet-only,
th.tablet-only,
td.tablet-only {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tablet-only {
    display: block !important;
  }

  li.tablet-only {
    display: inline-block !important;
  }

  tr.tablet-only {
    display: table-row !important;
  }

  th.tablet-only,
  td.tablet-only {
    display: table-cell !important;
  }
}
.tablet-hide {
  display: block !important;
}

li.tablet-hide {
  display: inline-block !important;
}

tr.tablet-hide {
  display: table-row !important;
}

th.tablet-hide,
td.tablet-hide {
  display: table-cell !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tablet-hide,
  li.tablet-hide,
  tr.tablet-hide,
  th.tablet-hide,
  td.tablet-hide {
    display: none !important;
  }
}
.desktop-only,
li.desktop-only,
tr.desktop-only,
th.desktop-only,
td.desktop-only {
  display: none !important;
}

@media only screen and (min-width: 992px) {
  .desktop-only {
    display: block !important;
  }

  li.desktop-only {
    display: inline-block !important;
  }

  tr.desktop-only {
    display: table-row !important;
  }

  th.desktop-only,
  td.desktop-only {
    display: table-cell !important;
  }
}
.desktop-hide {
  display: block !important;
}

li.desktop-hide {
  display: inline-block !important;
}

tr.desktop-hide {
  display: table-row !important;
}

th.desktop-hide,
td.desktop-hide {
  display: table-cell !important;
}

@media only screen and (min-width: 992px) {
  .desktop-hide,
  li.desktop-hide,
  tr.desktop-hide,
  th.desktop-hide,
  td.desktop-hide {
    display: none !important;
  }
}
/*************************
 * UTILITY STYLES
 ************************/
.float-left {
  float: left;
}

.float-none {
  float: none;
}

.float-right {
  float: right;
}

.clear-left {
  clear: left;
}

.clear-both,
.clear {
  clear: both;
}

.clear-right {
  clear: right;
}

/* Image replacement */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  height: 150%;
  width: 0;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.anatomytrains-hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.anatomytrains-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.anatomytrains-visuallyhidden.focusable:active,
.anatomytrains-visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.anatomytrains-invisible {
  visibility: hidden;
}

/*************************
 * 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);
 ************************/
/*************************
 * ANIMATION
 * Compass CSS3 mixins don't yet handle vendor prefixes 
 * for CSS animations, so this is a very simple mixin to 
 * simulate that functionality.
 ************************/
/*************************
 * VERTICAL ALIGN DYNAMIC HEIGHT
 * http://css-tricks.com/centering-in-the-unknown/
 ************************/
/*************************
 * TEXT TRUNCATION
 ************************/
/*************************
 * GRAYSCALE
 ************************/
/*************************
 * TRANSPARENT BG-COLOR
 ************************/
/*************************
 * GRADIENTS
 * Be careful with these since they can really slow 
 * down your CSS. Don't overdue it.
 * USAGE: @include css-gradient(#dfdfdf,#f8f8f8);
 ************************/
/*************************
 * FLEXBOX
 * Values: flex | inline-flex
 * Default: flex
 * USAGE: @include flexbox(flex);
 ************************/
/*************************
 * FLEXBOX WRAP
 * Values: nowrap | wrap | wrap-reverse
 * Default: nowrap
 * USAGE: @include flex-wrap(nowrap)
 ************************/
/*************************
 * FLEXBOX DIRECTION
 * Values: row | row-reverse | column | column-reverse
 * Default: row
 * USAGE: @include flex-direction(row)
 ************************/
/*************************
 * FLEXBOX JUSTIFY CONTENT
 * Values: flex-start | flex-end | center | space-between | space-around
 * Default: flexstart
 * USAGE: @include justify-content(flex-start)
 ************************/
/*************************
 * FLEXBOX ALIGN ITEMS
 * Values: flex-start | flex-end | center | baseline | stretch
 * Default: stretch
 * USAGE: @include align-items(stretch)
 ************************/
/*************************
 * FLEXBOX ALIGN SELF
 * Values: auto | flex-start | flex-end | center | baseline | stretch
 * Default: auto
 * USAGE: @include align-self(auto)
 ************************/
/*************************
 * FLEXBOX FLEX (shorthand)
 * Values: Values: none | <flex-grow> <flex-shrink> || <flex-basis>
 * Default: See individual properties (1 1 0).
 * USAGE: @include flex(1, 1, auto)
 ************************/
/*************************
 * FLEXBOX GROW
 * Values: positive integer
 * Default: 0
 * USAGE: @include flex-grow(0)
 ************************/
/*************************
 * FLEXBOX ORDER
 * Values: integer
 * Default: 0
 * USAGE: @include order(0)
 ************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Woocommerce Stylesheet

******************************************************************/
/* =Custom Font
-------------------------------------------------------------- */
@font-face {
  font-family: 'star';
  src: url("/wp-content/plugins/woocommerce/assets/fonts/star.eot");
  src: url("/wp-content/plugins/woocommerce/assets/fonts/star.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/woocommerce/assets/fonts/star.woff") format("woff"), url("/wp-content/plugins/woocommerce/assets/fonts/star.ttf") format("truetype"), url("/wp-content/plugins/woocommerce/assets/fonts/star.svg#star") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'WooCommerce';
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot");
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff") format("woff"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf") format("truetype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* =Global styles/layout
-------------------------------------------------------------- */
body.woocommerce-demo-store {
  margin-top: 25px;
}

p.demo_store {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 0.75em;
  padding: .35em 0;
  text-align: center;
  color: #8f2525;
  z-index: 99998;
  background: #F1F1F1;
}

.admin-bar p.demo_store {
  top: 28px;
}

/* =Password strength meter
-------------------------------------------------------------- */
.woocommerce-password-strength {
  text-align: center;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 3px 0px;
}
.woocommerce-password-strength.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
}
.woocommerce-password-strength.short {
  background-color: #f1adad;
  border-color: #e35b5b;
}
.woocommerce-password-strength.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
}
.woocommerce-password-strength.good {
  background-color: #ffe399;
  border-color: #ffc733;
}

/* =Utilities
-------------------------------------------------------------- */
.wc-forward:after,
.wc-forward a:after {
  font-family: "WooCommerce";
  margin-left: 5px;
  content: "\e029";
  font-size: .75em;
}

.wc-backward:before,
.wc-backward a:before {
  font-family: "WooCommerce";
  margin-right: 5px;
  content: "\e02f";
  font-size: .75em;
}

/* Alert Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  margin: 1.6em 0 0;
  padding: 1em;
}
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  float: right;
  margin: 0 0 10px 15px;
  position: relative;
  top: -5px;
}
.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.woocommerce-message li:last-child,
.woocommerce-error li:last-child,
.woocommerce-info li:last-child {
  margin-bottom: 0;
}

.woocommerce-message {
  color: #444;
  background: #EEE;
  border-left: 4px solid #DDD;
}
.woocommerce-message .button {
  color: #FFF;
  background: #444;
}
.woocommerce-message .button:hover, .woocommerce-message .button:focus {
  background: #2b2b2b;
}

.woocommerce-info {
  color: #1e85be;
  background: #d5edf8;
  border-left: 4px solid #239adc;
}
.woocommerce-info .button {
  color: #FFF;
  background: #1e85be;
}
.woocommerce-info .button:hover, .woocommerce-info .button:focus {
  background: #176692;
}

.woocommerce-checkout .woocommerce-info {
  margin: 0;
  padding: 0;
  background: none;
  border-left: 0;
  color: #444;
}
.woocommerce-checkout .woocommerce-info a {
  font-weight: normal;
  color: #999;
}

.woocommerce-error {
  color: #AF3124;
  background: #FFDFE0;
  border-left: 4px solid #c0392b;
}
.woocommerce-error .button {
  color: #FFF;
  background: #AF3124;
}
.woocommerce-error .button:hover, .woocommerce-error .button:focus {
  background: #85251b;
}

small.note {
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
  margin-top: 10px;
}

.woocommerce-breadcrumb {
  zoom: 1;
  margin: 1em 0 1em;
  padding: 0;
  font-size: 0.92em;
}
.woocommerce-breadcrumb:after, .woocommerce-breadcrumb:before {
  content: " ";
  display: table;
}
.woocommerce-breadcrumb:after {
  clear: both;
}

.tax-product_cat.term-courses .woocommerce-ordering {
  display: none !important;
}

.single-product .woocommerce-breadcrumb {
  padding-bottom: 1em;
  border-bottom: 1px solid #DDD;
}
.single-product.woocommerce div.product, .single-product.woocommerce-page div.product {
  margin-top: 2.5em;
}

.woocommerce-account .woocommerce {
  zoom: 1;
  margin-top: 1em;
}
.woocommerce-account .woocommerce:after, .woocommerce-account .woocommerce:before {
  content: " ";
  display: table;
}
.woocommerce-account .woocommerce:after {
  clear: both;
}
.woocommerce-account .woocommerce form .button {
  margin-top: 1em !important;
}
.woocommerce-account .woocommerce form fieldset {
  margin-top: 1em;
}
.woocommerce-account .woocommerce form fieldset legend {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 0 0.3em;
}
.woocommerce-account #account-subscriptions h4 {
  margin-bottom: 0.875em;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 1.33em 0;
}
.woocommerce-MyAccount-navigation li {
  margin-left: 0;
  margin-bottom: 1.25em;
}
.woocommerce-MyAccount-navigation li.is-active a {
  color: #444;
}
.woocommerce-MyAccount-navigation a:hover, .woocommerce-MyAccount-navigation a:focus {
  text-decoration: underline;
}

.woocommerce-Pagination {
  zoom: 1;
}
.woocommerce-Pagination:after, .woocommerce-Pagination:before {
  content: " ";
  display: table;
}
.woocommerce-Pagination:after {
  clear: both;
}
.woocommerce-Pagination .woocommerce-Button--previous {
  float: left;
}
.woocommerce-Pagination .woocommerce-Button--next {
  float: right;
}

.woocommerce-cart .woocommerce {
  margin-top: 2em;
}

.woocommerce-checkout .woocommerce {
  margin-top: 1em;
}
.woocommerce-checkout .woocommerce-error {
  margin-top: 1em !important;
}
.woocommerce-checkout #customer_details {
  margin-top: 1em;
}
.woocommerce-checkout table.shop_table {
  margin-top: 1em !important;
}
.woocommerce-checkout form h3 {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}

.woocommerce #order_review table.shop_table tbody .product-name,
.woocommerce #order_review table.shop_table tbody .product-total,
.woocommerce-page #order_review table.shop_table tbody .product-name,
.woocommerce-page #order_review table.shop_table tbody .product-total {
  width: 50%;
}

.woocommerce,
.woocommerce-page {
  	/* =Product Page
      -------------------------------------------------------------- */
  /* Sale labels */
  /* Search Form */
  	/* =Product Loops
      -------------------------------------------------------------- */
    /* replaced default woocommerce pagination with scaffolding pagination in woocommerce-overrides.php
	nav.woocommerce-pagination, #content nav.woocommerce-pagination {}*/
  	/* =Buttons
      -------------------------------------------------------------- */
  	/* =Quantity inputs
      -------------------------------------------------------------- */
  /* =Reviews/comments
  -------------------------------------------------------------- */
  /* Star rating */
  	/* =Tables
      -------------------------------------------------------------- */
  	/* =Cart & Review
      -------------------------------------------------------------- */
  	/* =Cart Page
      -------------------------------------------------------------- */
  	/* =Forms
      -------------------------------------------------------------- */
  	/* =Checkout
      -------------------------------------------------------------- */
  /* Payment box - appears on checkout and page page */
  /* =Order Page
  -------------------------------------------------------------- */
  /* =Account Page
  -------------------------------------------------------------- */
}
.woocommerce .page-title,
.woocommerce-page .page-title {
  margin-bottom: 0;
}
.woocommerce div.related.products,
.woocommerce div.upsells.products,
.woocommerce-page div.related.products,
.woocommerce-page div.upsells.products {
  zoom: 1;
  margin-top: 2em;
}
.woocommerce div.related.products:after, .woocommerce div.related.products:before,
.woocommerce div.upsells.products:after,
.woocommerce div.upsells.products:before,
.woocommerce-page div.related.products:after,
.woocommerce-page div.related.products:before,
.woocommerce-page div.upsells.products:after,
.woocommerce-page div.upsells.products:before {
  content: " ";
  display: table;
}
.woocommerce div.related.products:after,
.woocommerce div.upsells.products:after,
.woocommerce-page div.related.products:after,
.woocommerce-page div.upsells.products:after {
  clear: both;
}
.woocommerce div.related.products .woocommerce-loop-product__title,
.woocommerce div.upsells.products .woocommerce-loop-product__title,
.woocommerce-page div.related.products .woocommerce-loop-product__title,
.woocommerce-page div.upsells.products .woocommerce-loop-product__title {
  font-size: 1.125em;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 0.3em 0 0.5em 0 !important;
  margin: 0;
}
.woocommerce div.related.products ul.products li.product .product-wrapper,
.woocommerce div.upsells.products ul.products li.product .product-wrapper,
.woocommerce-page div.related.products ul.products li.product .product-wrapper,
.woocommerce-page div.upsells.products ul.products li.product .product-wrapper {
  padding: 1em;
  border: 0;
  overflow: visible;
}
.woocommerce div.related.products ul.products li.product img,
.woocommerce div.upsells.products ul.products li.product img,
.woocommerce-page div.related.products ul.products li.product img,
.woocommerce-page div.upsells.products ul.products li.product img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-height: 150px;
  width: auto;
}
.woocommerce div.related.products ul.products li.product span.price,
.woocommerce div.related.products ul.products li.product p.price,
.woocommerce div.upsells.products ul.products li.product span.price,
.woocommerce div.upsells.products ul.products li.product p.price,
.woocommerce-page div.related.products ul.products li.product span.price,
.woocommerce-page div.related.products ul.products li.product p.price,
.woocommerce-page div.upsells.products ul.products li.product span.price,
.woocommerce-page div.upsells.products ul.products li.product p.price {
  margin-bottom: 0 !important;
}
.woocommerce div.related.products ul.products li.product .star-rating,
.woocommerce div.upsells.products ul.products li.product .star-rating,
.woocommerce-page div.related.products ul.products li.product .star-rating,
.woocommerce-page div.upsells.products ul.products li.product .star-rating {
  font-size: 0.875em;
  height: 0.875em;
  line-height: 0.875em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce div.product,
.woocommerce #content div.product,
.woocommerce-page div.product,
.woocommerce-page #content div.product {
  margin-bottom: 0;
  position: relative;
  /* Main product title */
  /* Price */
  /* Stock & Status */
  /* Product image and thumbnail */
  /* Summary div (contains title, price etc) */
  /* Social networking */
  /* Tabs on the product page ===USING TABS TO ACCORDION FUNCTIONALITY=== */
  /* Cart button */
  /* add to cart forms */
}
.woocommerce div.product .product_title,
.woocommerce #content div.product .product_title,
.woocommerce-page div.product .product_title,
.woocommerce-page #content div.product .product_title {
  clear: none;
  margin-top: 0;
  margin-bottom: 0.3em;
  padding: 0;
  color: #444;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce div.product span.price,
.woocommerce div.product p.price,
.woocommerce #content div.product span.price,
.woocommerce #content div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page #content div.product span.price,
.woocommerce-page #content div.product p.price {
  font-size: 1.4em;
  margin-bottom: 0.25em;
  color: #444;
}
.woocommerce div.product span.price .amount,
.woocommerce div.product p.price .amount,
.woocommerce #content div.product span.price .amount,
.woocommerce #content div.product p.price .amount,
.woocommerce-page div.product span.price .amount,
.woocommerce-page div.product p.price .amount,
.woocommerce-page #content div.product span.price .amount,
.woocommerce-page #content div.product p.price .amount {
  color: #444;
}
.woocommerce div.product span.price ins,
.woocommerce div.product p.price ins,
.woocommerce #content div.product span.price ins,
.woocommerce #content div.product p.price ins,
.woocommerce-page div.product span.price ins,
.woocommerce-page div.product p.price ins,
.woocommerce-page #content div.product span.price ins,
.woocommerce-page #content div.product p.price ins {
  background: inherit;
  text-decoration: none !important;
}
.woocommerce div.product span.price del .amount,
.woocommerce div.product p.price del .amount,
.woocommerce #content div.product span.price del .amount,
.woocommerce #content div.product p.price del .amount,
.woocommerce-page div.product span.price del .amount,
.woocommerce-page div.product p.price del .amount,
.woocommerce-page #content div.product span.price del .amount,
.woocommerce-page #content div.product p.price del .amount {
  color: #444;
}
.woocommerce div.product span.price ins,
.woocommerce div.product span.price del,
.woocommerce div.product p.price ins,
.woocommerce div.product p.price del,
.woocommerce #content div.product span.price ins,
.woocommerce #content div.product span.price del,
.woocommerce #content div.product p.price ins,
.woocommerce #content div.product p.price del,
.woocommerce-page div.product span.price ins,
.woocommerce-page div.product span.price del,
.woocommerce-page div.product p.price ins,
.woocommerce-page div.product p.price del,
.woocommerce-page #content div.product span.price ins,
.woocommerce-page #content div.product span.price del,
.woocommerce-page #content div.product p.price ins,
.woocommerce-page #content div.product p.price del {
  display: inline-block;
}
.woocommerce div.product .out-of-stock,
.woocommerce div.product .status,
.woocommerce #content div.product .out-of-stock,
.woocommerce #content div.product .status,
.woocommerce-page div.product .out-of-stock,
.woocommerce-page div.product .status,
.woocommerce-page #content div.product .out-of-stock,
.woocommerce-page #content div.product .status {
  font-size: 1.125em;
  color: #BC2026;
  margin-top: 0;
  margin-bottom: 0;
}
.woocommerce div.product .course-stock-message,
.woocommerce #content div.product .course-stock-message,
.woocommerce-page div.product .course-stock-message,
.woocommerce-page #content div.product .course-stock-message {
  border: 1px solid #8f2525;
  background: #fae1e2;
  padding: 1em;
  font-size: 1.25em;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  margin: 1em 0 0.25em;
}
.woocommerce div.product div.images,
.woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
  margin-bottom: 2em;
}
.woocommerce div.product div.images img,
.woocommerce #content div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce-page #content div.product div.images img {
  padding: 1em;
  background: #F6F9FA;
  display: block;
  margin: 0 auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce div.product div.images div.thumbnails,
.woocommerce #content div.product div.images div.thumbnails,
.woocommerce-page div.product div.images div.thumbnails,
.woocommerce-page #content div.product div.images div.thumbnails {
  padding-top: 1em;
}
.woocommerce div.product div.summary,
.woocommerce #content div.product div.summary,
.woocommerce-page div.product div.summary,
.woocommerce-page #content div.product div.summary {
  margin-bottom: 2em;
}
.woocommerce div.product div.social,
.woocommerce #content div.product div.social,
.woocommerce-page div.product div.social,
.woocommerce-page #content div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}
.woocommerce div.product div.social span,
.woocommerce #content div.product div.social span,
.woocommerce-page div.product div.social span,
.woocommerce-page #content div.product div.social span {
  margin: 0 0 0 2px;
}
.woocommerce div.product div.social span span,
.woocommerce #content div.product div.social span span,
.woocommerce-page div.product div.social span span,
.woocommerce-page #content div.product div.social span span {
  margin: 0;
}
.woocommerce div.product div.social span .stButton .chicklets,
.woocommerce #content div.product div.social span .stButton .chicklets,
.woocommerce-page div.product div.social span .stButton .chicklets,
.woocommerce-page #content div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}
.woocommerce div.product div.social iframe,
.woocommerce #content div.product div.social iframe,
.woocommerce-page div.product div.social iframe,
.woocommerce-page #content div.product div.social iframe {
  float: left;
  margin-top: 3px;
}
.woocommerce div.product p.cart,
.woocommerce #content div.product p.cart,
.woocommerce-page div.product p.cart,
.woocommerce-page #content div.product p.cart {
  margin-bottom: 1em;
  zoom: 1;
}
.woocommerce div.product p.cart:after, .woocommerce div.product p.cart:before,
.woocommerce #content div.product p.cart:after,
.woocommerce #content div.product p.cart:before,
.woocommerce-page div.product p.cart:after,
.woocommerce-page div.product p.cart:before,
.woocommerce-page #content div.product p.cart:after,
.woocommerce-page #content div.product p.cart:before {
  content: " ";
  display: table;
}
.woocommerce div.product p.cart:after,
.woocommerce #content div.product p.cart:after,
.woocommerce-page div.product p.cart:after,
.woocommerce-page #content div.product p.cart:after {
  clear: both;
}
.woocommerce div.product p.cart .single_add_to_cart_button,
.woocommerce #content div.product p.cart .single_add_to_cart_button,
.woocommerce-page div.product p.cart .single_add_to_cart_button,
.woocommerce-page #content div.product p.cart .single_add_to_cart_button {
  padding: 0 2.5em;
}
.woocommerce div.product p.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #content div.product p.cart .single_add_to_cart_button,
.woocommerce #content div.product form.cart .single_add_to_cart_button,
.woocommerce-page div.product p.cart .single_add_to_cart_button,
.woocommerce-page div.product form.cart .single_add_to_cart_button,
.woocommerce-page #content div.product p.cart .single_add_to_cart_button,
.woocommerce-page #content div.product form.cart .single_add_to_cart_button {
  line-height: 38px;
  border: 1px solid #2373AB;
}
.woocommerce div.product.product-type-external p.cart .single_add_to_cart_button,
.woocommerce div.product.product-type-external form.cart .single_add_to_cart_button,
.woocommerce #content div.product.product-type-external p.cart .single_add_to_cart_button,
.woocommerce #content div.product.product-type-external form.cart .single_add_to_cart_button,
.woocommerce-page div.product.product-type-external p.cart .single_add_to_cart_button,
.woocommerce-page div.product.product-type-external form.cart .single_add_to_cart_button,
.woocommerce-page #content div.product.product-type-external p.cart .single_add_to_cart_button,
.woocommerce-page #content div.product.product-type-external form.cart .single_add_to_cart_button {
  line-height: 1.65;
  white-space: normal;
  text-align: center;
  padding: 0.675em 1.5em;
}
.woocommerce div.product.sold-individually p.cart div.quantity,
.woocommerce div.product.sold-individually form.cart div.quantity,
.woocommerce #content div.product.sold-individually p.cart div.quantity,
.woocommerce #content div.product.sold-individually form.cart div.quantity,
.woocommerce-page div.product.sold-individually p.cart div.quantity,
.woocommerce-page div.product.sold-individually form.cart div.quantity,
.woocommerce-page #content div.product.sold-individually p.cart div.quantity,
.woocommerce-page #content div.product.sold-individually form.cart div.quantity {
  line-height: 38px;
}
.woocommerce div.product form.cart,
.woocommerce #content div.product form.cart,
.woocommerce-page div.product form.cart,
.woocommerce-page #content div.product form.cart {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em;
  background: #F6F9FA;
  border: 1px solid #DDD;
  zoom: 1;
}
.woocommerce div.product form.cart:after, .woocommerce div.product form.cart:before,
.woocommerce #content div.product form.cart:after,
.woocommerce #content div.product form.cart:before,
.woocommerce-page div.product form.cart:after,
.woocommerce-page div.product form.cart:before,
.woocommerce-page #content div.product form.cart:after,
.woocommerce-page #content div.product form.cart:before {
  content: " ";
  display: table;
}
.woocommerce div.product form.cart:after,
.woocommerce #content div.product form.cart:after,
.woocommerce-page div.product form.cart:after,
.woocommerce-page #content div.product form.cart:after {
  clear: both;
}
.woocommerce div.product form.cart div.quantity,
.woocommerce #content div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity,
.woocommerce-page #content div.product form.cart div.quantity {
  float: left;
  margin: 0 0 0 1%;
  width: 49%;
}
.woocommerce div.product form.cart div.quantity:before,
.woocommerce #content div.product form.cart div.quantity:before,
.woocommerce-page div.product form.cart div.quantity:before,
.woocommerce-page #content div.product form.cart div.quantity:before {
  content: "Quantity";
  margin-right: 0.5em;
  font-size: 0.875em;
}
.woocommerce div.product form.cart table,
.woocommerce #content div.product form.cart table,
.woocommerce-page div.product form.cart table,
.woocommerce-page #content div.product form.cart table {
  border-width: 0 0 1px 0;
}
.woocommerce div.product form.cart table td,
.woocommerce #content div.product form.cart table td,
.woocommerce-page div.product form.cart table td,
.woocommerce-page #content div.product form.cart table td {
  padding-left: 0;
}
.woocommerce div.product form.cart table div.quantity,
.woocommerce #content div.product form.cart table div.quantity,
.woocommerce-page div.product form.cart table div.quantity,
.woocommerce-page #content div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}
.woocommerce div.product form.cart table small.stock,
.woocommerce #content div.product form.cart table small.stock,
.woocommerce-page div.product form.cart table small.stock,
.woocommerce-page #content div.product form.cart table small.stock {
  display: block;
  float: none;
}
.woocommerce div.product form.cart .variations,
.woocommerce #content div.product form.cart .variations,
.woocommerce-page div.product form.cart .variations,
.woocommerce-page #content div.product form.cart .variations {
  margin-bottom: 1em;
}
.woocommerce div.product form.cart .variations label,
.woocommerce #content div.product form.cart .variations label,
.woocommerce-page div.product form.cart .variations label,
.woocommerce-page #content div.product form.cart .variations label {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce div.product form.cart .variations select,
.woocommerce #content div.product form.cart .variations select,
.woocommerce-page div.product form.cart .variations select,
.woocommerce-page #content div.product form.cart .variations select {
  width: 100%;
  float: left;
}
.woocommerce div.product form.cart .variations td.label,
.woocommerce #content div.product form.cart .variations td.label,
.woocommerce-page div.product form.cart .variations td.label,
.woocommerce-page #content div.product form.cart .variations td.label {
  padding-right: 1em;
}
.woocommerce div.product form.cart .variations td,
.woocommerce #content div.product form.cart .variations td,
.woocommerce-page div.product form.cart .variations td,
.woocommerce-page #content div.product form.cart .variations td {
  vertical-align: top;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #content div.product form.cart .single_add_to_cart_button,
.woocommerce-page div.product form.cart .single_add_to_cart_button,
.woocommerce-page #content div.product form.cart .single_add_to_cart_button {
  vertical-align: middle;
  float: right;
  padding: 0;
  width: 47%;
  margin-right: 1%;
}
.woocommerce div.product form.cart .group_table td.label,
.woocommerce #content div.product form.cart .group_table td.label,
.woocommerce-page div.product form.cart .group_table td.label,
.woocommerce-page #content div.product form.cart .group_table td.label {
  padding-right: 1em;
  padding-left: 1em;
}
.woocommerce div.product form.cart .group_table td,
.woocommerce #content div.product form.cart .group_table td,
.woocommerce-page div.product form.cart .group_table td,
.woocommerce-page #content div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: .5em;
}
.woocommerce span.onsale,
.woocommerce-page span.onsale {
  line-height: 1.4;
  text-transform: uppercase;
  margin-right: 5px;
}
.woocommerce #searchform,
.woocommerce-page #searchform {
  margin-top: 1em;
  margin-bottom: 2em;
}
.woocommerce .shop-filter-header,
.woocommerce-page .shop-filter-header {
  margin-bottom: 2em;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  border-bottom: 1px solid #DDD;
}
.woocommerce .products ul,
.woocommerce ul.products,
.woocommerce-page .products ul,
.woocommerce-page ul.products {
  padding: 0;
  list-style: none outside;
  clear: both;
}
.woocommerce .products ul li,
.woocommerce ul.products li,
.woocommerce-page .products ul li,
.woocommerce-page ul.products li {
  list-style: none outside;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce ul.products li.product .product-wrapper,
.woocommerce-page ul.products li.product .product-wrapper {
  text-align: center;
}
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  margin-right: 5px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title {
  padding: 0;
  margin: 10px 0 8px;
  font-size: 1.125em;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  color: #8f2525;
  line-height: 1.4;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title mark,
.woocommerce-page ul.products li.product .woocommerce-loop-category__title mark {
  background: none !important;
  color: #444;
}
.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
  text-decoration: none;
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  display: block;
  margin: 0 auto 8px auto;
}
.woocommerce ul.products li.product strong,
.woocommerce-page ul.products li.product strong {
  display: block;
}
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: block;
  margin-bottom: 0.75em;
  font-size: 1.25em;
  text-align: center;
  color: #444;
}
.woocommerce ul.products li.product .price .amount,
.woocommerce-page ul.products li.product .price .amount {
  color: #444;
}
.woocommerce ul.products li.product .price del, .woocommerce ul.products li.product .price del .amount,
.woocommerce-page ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del .amount {
  color: #444;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce ul.products li.product .price ins, .woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price del {
  display: inline-block;
}
.woocommerce ul.products li.product .price ins,
.woocommerce-page ul.products li.product .price ins {
  background: none;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .price .from,
.woocommerce-page ul.products li.product .price .from {
  font-size: 0.67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  margin: 15px 0;
  font-size: 0.875em;
  color: #666;
}
.woocommerce .woocommerce-ordering,
.woocommerce #entries-select,
.woocommerce-page .woocommerce-ordering,
.woocommerce-page #entries-select {
  margin: 0 0 1em;
}
.woocommerce #entries-select,
.woocommerce-page #entries-select {
  zoom: 1;
}
.woocommerce #entries-select:after, .woocommerce #entries-select:before,
.woocommerce-page #entries-select:after,
.woocommerce-page #entries-select:before {
  content: " ";
  display: table;
}
.woocommerce #entries-select:after,
.woocommerce-page #entries-select:after {
  clear: both;
}
.woocommerce #entries-select label,
.woocommerce-page #entries-select label {
  font-size: 0.875em;
  margin-right: 15px;
  float: left;
  display: inline;
  line-height: 39px;
}
.woocommerce #entries-select select,
.woocommerce #entries-select .select2-container,
.woocommerce-page #entries-select select,
.woocommerce-page #entries-select .select2-container {
  float: left;
  display: inline;
  width: 90px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page #content input.button {
  font-size: 100%;
  margin: 0;
  line-height: 1em;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: visible;
  padding: 10px 10px;
  text-decoration: none;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
  left: auto;
  white-space: nowrap;
  display: inline-block;
  border: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce a.button.loading:before,
.woocommerce button.button.loading:before,
.woocommerce input.button.loading:before,
.woocommerce #respond input#submit.loading:before,
.woocommerce #content input.button.loading:before,
.woocommerce-page a.button.loading:before,
.woocommerce-page button.button.loading:before,
.woocommerce-page input.button.loading:before,
.woocommerce-page #respond input#submit.loading:before,
.woocommerce-page #content input.button.loading:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url("/wp-content/plugins/woocommerce/assets/images/ajax-loader.gif") center no-repeat rgba(255, 255, 255, 0.65);
}
.woocommerce a.button.added:before,
.woocommerce button.button.added:before,
.woocommerce input.button.added:before,
.woocommerce #respond input#submit.added:before,
.woocommerce #content input.button.added:before,
.woocommerce-page a.button.added:before,
.woocommerce-page button.button.added:before,
.woocommerce-page input.button.added:before,
.woocommerce-page #respond input#submit.added:before,
.woocommerce-page #content input.button.added:before {
  position: absolute;
  height: 16px;
  width: 16px;
  top: 0.35em;
  right: -26px;
  text-indent: 0;
  font-family: 'WooCommerce';
  content: "\e017";
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #content input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page #content input.button:hover {
  text-decoration: none;
}
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.woocommerce #respond input#submit:active,
.woocommerce #content input.button:active,
.woocommerce-page a.button:active,
.woocommerce-page button.button:active,
.woocommerce-page input.button:active,
.woocommerce-page #respond input#submit:active,
.woocommerce-page #content input.button:active {
  top: 1px;
}
.woocommerce a.button:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce #content input.button:disabled,
.woocommerce #content input.button.disabled,
.woocommerce #content input.button:disabled[disabled],
.woocommerce-page a.button:disabled,
.woocommerce-page a.button.disabled,
.woocommerce-page a.button:disabled[disabled],
.woocommerce-page button.button:disabled,
.woocommerce-page button.button.disabled,
.woocommerce-page button.button:disabled[disabled],
.woocommerce-page input.button:disabled,
.woocommerce-page input.button.disabled,
.woocommerce-page input.button:disabled[disabled],
.woocommerce-page #respond input#submit:disabled,
.woocommerce-page #respond input#submit.disabled,
.woocommerce-page #respond input#submit:disabled[disabled],
.woocommerce-page #content input.button:disabled,
.woocommerce-page #content input.button.disabled,
.woocommerce-page #content input.button:disabled[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.woocommerce a.button:disabled:active, .woocommerce a.button.disabled:active, .woocommerce a.button:disabled[disabled]:active,
.woocommerce button.button:disabled:active,
.woocommerce button.button.disabled:active,
.woocommerce button.button:disabled[disabled]:active,
.woocommerce input.button:disabled:active,
.woocommerce input.button.disabled:active,
.woocommerce input.button:disabled[disabled]:active,
.woocommerce #respond input#submit:disabled:active,
.woocommerce #respond input#submit.disabled:active,
.woocommerce #respond input#submit:disabled[disabled]:active,
.woocommerce #content input.button:disabled:active,
.woocommerce #content input.button.disabled:active,
.woocommerce #content input.button:disabled[disabled]:active,
.woocommerce-page a.button:disabled:active,
.woocommerce-page a.button.disabled:active,
.woocommerce-page a.button:disabled[disabled]:active,
.woocommerce-page button.button:disabled:active,
.woocommerce-page button.button.disabled:active,
.woocommerce-page button.button:disabled[disabled]:active,
.woocommerce-page input.button:disabled:active,
.woocommerce-page input.button.disabled:active,
.woocommerce-page input.button:disabled[disabled]:active,
.woocommerce-page #respond input#submit:disabled:active,
.woocommerce-page #respond input#submit.disabled:active,
.woocommerce-page #respond input#submit:disabled[disabled]:active,
.woocommerce-page #content input.button:disabled:active,
.woocommerce-page #content input.button.disabled:active,
.woocommerce-page #content input.button:disabled[disabled]:active {
  top: 0;
}
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.woocommerce #respond input#submit:focus,
.woocommerce #content input.button:focus,
.woocommerce-page a.button:focus,
.woocommerce-page button.button:focus,
.woocommerce-page input.button:focus,
.woocommerce-page #respond input#submit:focus,
.woocommerce-page #content input.button:focus {
  outline: 0;
}
.woocommerce .add_to_cart_button,
.woocommerce .single_add_to_cart_button,
.woocommerce .checkout-button,
.woocommerce .place-order .button.alt,
.woocommerce-page .add_to_cart_button,
.woocommerce-page .single_add_to_cart_button,
.woocommerce-page .checkout-button,
.woocommerce-page .place-order .button.alt {
  background: #2373AB !important;
  color: #FFF;
  font-size: 1.125em;
  text-transform: uppercase;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .add_to_cart_button:hover, .woocommerce .add_to_cart_button:focus, .woocommerce .add_to_cart_button:active, .woocommerce .add_to_cart_button:disabled, .woocommerce .add_to_cart_button.disabled, .woocommerce .add_to_cart_button:disabled[disabled],
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:focus,
.woocommerce .single_add_to_cart_button:active,
.woocommerce .single_add_to_cart_button:disabled,
.woocommerce .single_add_to_cart_button.disabled,
.woocommerce .single_add_to_cart_button:disabled[disabled],
.woocommerce .checkout-button:hover,
.woocommerce .checkout-button:focus,
.woocommerce .checkout-button:active,
.woocommerce .checkout-button:disabled,
.woocommerce .checkout-button.disabled,
.woocommerce .checkout-button:disabled[disabled],
.woocommerce .place-order .button.alt:hover,
.woocommerce .place-order .button.alt:focus,
.woocommerce .place-order .button.alt:active,
.woocommerce .place-order .button.alt:disabled,
.woocommerce .place-order .button.alt.disabled,
.woocommerce .place-order .button.alt:disabled[disabled],
.woocommerce-page .add_to_cart_button:hover,
.woocommerce-page .add_to_cart_button:focus,
.woocommerce-page .add_to_cart_button:active,
.woocommerce-page .add_to_cart_button:disabled,
.woocommerce-page .add_to_cart_button.disabled,
.woocommerce-page .add_to_cart_button:disabled[disabled],
.woocommerce-page .single_add_to_cart_button:hover,
.woocommerce-page .single_add_to_cart_button:focus,
.woocommerce-page .single_add_to_cart_button:active,
.woocommerce-page .single_add_to_cart_button:disabled,
.woocommerce-page .single_add_to_cart_button.disabled,
.woocommerce-page .single_add_to_cart_button:disabled[disabled],
.woocommerce-page .checkout-button:hover,
.woocommerce-page .checkout-button:focus,
.woocommerce-page .checkout-button:active,
.woocommerce-page .checkout-button:disabled,
.woocommerce-page .checkout-button.disabled,
.woocommerce-page .checkout-button:disabled[disabled],
.woocommerce-page .place-order .button.alt:hover,
.woocommerce-page .place-order .button.alt:focus,
.woocommerce-page .place-order .button.alt:active,
.woocommerce-page .place-order .button.alt:disabled,
.woocommerce-page .place-order .button.alt.disabled,
.woocommerce-page .place-order .button.alt:disabled[disabled] {
  color: #FFF;
  background: #1f6596 !important;
}
.woocommerce .checkout-button,
.woocommerce-page .checkout-button {
  margin-top: 1em !important;
  display: block !important;
  text-align: center;
  font-size: 1.125em !important;
  padding: 1em !important;
}
.woocommerce .wc-backward.button,
.woocommerce .wc-forward.button,
.woocommerce .woocommerce-Button--next,
.woocommerce .woocommerce-Button--previous,
.woocommerce-page .wc-backward.button,
.woocommerce-page .wc-forward.button,
.woocommerce-page .woocommerce-Button--next,
.woocommerce-page .woocommerce-Button--previous {
  background: #444;
  color: #FFF;
}
.woocommerce .wc-backward.button:hover, .woocommerce .wc-backward.button:focus, .woocommerce .wc-backward.button:disabled, .woocommerce .wc-backward.button.disabled, .woocommerce .wc-backward.button:disabled[disabled],
.woocommerce .wc-forward.button:hover,
.woocommerce .wc-forward.button:focus,
.woocommerce .wc-forward.button:disabled,
.woocommerce .wc-forward.button.disabled,
.woocommerce .wc-forward.button:disabled[disabled],
.woocommerce .woocommerce-Button--next:hover,
.woocommerce .woocommerce-Button--next:focus,
.woocommerce .woocommerce-Button--next:disabled,
.woocommerce .woocommerce-Button--next.disabled,
.woocommerce .woocommerce-Button--next:disabled[disabled],
.woocommerce .woocommerce-Button--previous:hover,
.woocommerce .woocommerce-Button--previous:focus,
.woocommerce .woocommerce-Button--previous:disabled,
.woocommerce .woocommerce-Button--previous.disabled,
.woocommerce .woocommerce-Button--previous:disabled[disabled],
.woocommerce-page .wc-backward.button:hover,
.woocommerce-page .wc-backward.button:focus,
.woocommerce-page .wc-backward.button:disabled,
.woocommerce-page .wc-backward.button.disabled,
.woocommerce-page .wc-backward.button:disabled[disabled],
.woocommerce-page .wc-forward.button:hover,
.woocommerce-page .wc-forward.button:focus,
.woocommerce-page .wc-forward.button:disabled,
.woocommerce-page .wc-forward.button.disabled,
.woocommerce-page .wc-forward.button:disabled[disabled],
.woocommerce-page .woocommerce-Button--next:hover,
.woocommerce-page .woocommerce-Button--next:focus,
.woocommerce-page .woocommerce-Button--next:disabled,
.woocommerce-page .woocommerce-Button--next.disabled,
.woocommerce-page .woocommerce-Button--next:disabled[disabled],
.woocommerce-page .woocommerce-Button--previous:hover,
.woocommerce-page .woocommerce-Button--previous:focus,
.woocommerce-page .woocommerce-Button--previous:disabled,
.woocommerce-page .woocommerce-Button--previous.disabled,
.woocommerce-page .woocommerce-Button--previous:disabled[disabled] {
  background: #373737;
}
.woocommerce #place_order,
.woocommerce-page #place_order {
  font-size: 1.25em !important;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 1em 2em !important;
}
.woocommerce .cart .button, .woocommerce .cart input.button,
.woocommerce-page .cart .button,
.woocommerce-page .cart input.button {
  float: none;
}
.woocommerce a.added_to_cart,
.woocommerce-page a.added_to_cart {
  padding-top: .5em;
  white-space: nowrap;
  display: inline-block;
}
.woocommerce .quantity,
.woocommerce #content .quantity,
.woocommerce-page .quantity,
.woocommerce-page #content .quantity {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
  /* Hide buttons for opera */
}
.woocommerce .quantity input.qty,
.woocommerce #content .quantity input.qty,
.woocommerce-page .quantity input.qty,
.woocommerce-page #content .quantity input.qty {
  width: 50px;
  height: 40px;
  line-height: 20px;
  vertical-align: middle;
  padding: 10px;
  text-align: center;
  border: 1px solid #D9D9D9;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  -moz-appearance: textfield;
  /* Hide buttons for Firefox 29 and later */
}
.woocommerce .quantity noindex:-o-prefocus,
.woocommerce .quantity input[type=number],
.woocommerce #content .quantity noindex:-o-prefocus,
.woocommerce #content .quantity input[type=number],
.woocommerce-page .quantity noindex:-o-prefocus,
.woocommerce-page .quantity input[type=number],
.woocommerce-page #content .quantity noindex:-o-prefocus,
.woocommerce-page #content .quantity input[type=number] {
  padding-right: 1.2em;
}
.woocommerce .quantity input[type='number']::-webkit-outer-spin-button,
.woocommerce .quantity input[type='number']::-webkit-inner-spin-button,
.woocommerce #content .quantity input[type='number']::-webkit-outer-spin-button,
.woocommerce #content .quantity input[type='number']::-webkit-inner-spin-button,
.woocommerce-page .quantity input[type='number']::-webkit-outer-spin-button,
.woocommerce-page .quantity input[type='number']::-webkit-inner-spin-button,
.woocommerce-page #content .quantity input[type='number']::-webkit-outer-spin-button,
.woocommerce-page #content .quantity input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce #content .quantity .plus,
.woocommerce #content .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .plus,
.woocommerce-page #content .quantity .minus {
  display: none;
  padding: 0;
  margin: 0;
  position: absolute;
  text-align: center;
  vertical-align: middle;
  width: 40px;
  height: 20px;
  text-decoration: none;
  overflow: visible;
  text-decoration: none;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
  line-height: 20px;
  font-size: 18px;
  color: #FFF;
  border: 1px solid #D9D9D9;
}
.woocommerce .quantity .plus,
.woocommerce #content .quantity .plus,
.woocommerce-page .quantity .plus,
.woocommerce-page #content .quantity .plus {
  top: 0;
  right: 0;
  border-bottom: 0;
}
.woocommerce .quantity .minus,
.woocommerce #content .quantity .minus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .minus {
  bottom: 0;
  right: 0;
}
.woocommerce #rating,
.woocommerce #rating_chosen,
.woocommerce-page #rating,
.woocommerce-page #rating_chosen {
  display: none !important;
}
.woocommerce #reviews,
.woocommerce-page #reviews {
  clear: both;
}
.woocommerce #reviews h2,
.woocommerce-page #reviews h2 {
  font-size: 1.875em;
}
.woocommerce #reviews h2 small,
.woocommerce-page #reviews h2 small {
  float: right;
  font-size: 15px;
  line-height: 21px;
  margin: 10px 0 0 0;
}
.woocommerce #reviews h2 small a,
.woocommerce-page #reviews h2 small a {
  text-decoration: none;
  color: #444;
}
.woocommerce #reviews h3,
.woocommerce-page #reviews h3 {
  margin: 0;
  font-size: 1.25em;
}
.woocommerce #reviews #respond,
.woocommerce-page #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}
.woocommerce #reviews #comment,
.woocommerce-page #reviews #comment {
  height: 75px;
}
.woocommerce #reviews #comments .add_review,
.woocommerce-page #reviews #comments .add_review {
  zoom: 1;
}
.woocommerce #reviews #comments .add_review:after, .woocommerce #reviews #comments .add_review:before,
.woocommerce-page #reviews #comments .add_review:after,
.woocommerce-page #reviews #comments .add_review:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments .add_review:after,
.woocommerce-page #reviews #comments .add_review:after {
  clear: both;
}
.woocommerce #reviews #comments h2,
.woocommerce-page #reviews #comments h2 {
  display: none !important;
  clear: none;
  font-size: 150%;
  padding: 0 1em 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #DDD;
}
.woocommerce #reviews #comments ol.commentlist,
.woocommerce-page #reviews #comments ol.commentlist {
  zoom: 1;
  margin: 1.5em 0 0;
  width: 100%;
  background: none;
  list-style: none;
}
.woocommerce #reviews #comments ol.commentlist:after, .woocommerce #reviews #comments ol.commentlist:before,
.woocommerce-page #reviews #comments ol.commentlist:after,
.woocommerce-page #reviews #comments ol.commentlist:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments ol.commentlist:after,
.woocommerce-page #reviews #comments ol.commentlist:after {
  clear: both;
}
.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-page #reviews #comments ol.commentlist li {
  padding: 0 0 0.5em;
  margin: 0 0 1.5em;
  border: 0;
  position: relative;
  background: 0;
  border-bottom: 1px solid #DDD;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar,
.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 20px;
  padding: 3px;
  width: 32px;
  height: auto;
  margin: 0;
  line-height: 1;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
  zoom: 1;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:after, .woocommerce #reviews #comments ol.commentlist li .comment-text:before,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text:before {
  content: " ";
  display: table;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text:after,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text:after {
  clear: both;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 1em;
}
.woocommerce #reviews #comments ol.commentlist ul.children,
.woocommerce-page #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}
.woocommerce #reviews #comments ol.commentlist ul.children .star-rating,
.woocommerce-page #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist #respond,
.woocommerce-page #reviews #comments ol.commentlist #respond {
  border: 1px solid #DFDFDF;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}
.woocommerce #reviews #comments .commentlist > li:before,
.woocommerce-page #reviews #comments .commentlist > li:before {
  content: "";
}
.woocommerce .star-rating,
.woocommerce-page .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
  width: 5.6em;
  margin-top: 3px;
  font-family: 'star';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce .star-rating:before,
.woocommerce-page .star-rating:before {
  content: "\73\73\73\73\73";
  color: #E8C142;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.woocommerce .star-rating span,
.woocommerce-page .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.woocommerce .star-rating span:before,
.woocommerce-page .star-rating span:before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
  color: #E8C142;
}
.woocommerce .woocommerce-product-rating,
.woocommerce-page .woocommerce-product-rating {
  line-height: 2em;
  display: block;
  margin-bottom: -1em;
}
.woocommerce .woocommerce-product-rating .star-rating,
.woocommerce-page .woocommerce-product-rating .star-rating {
  margin: .5em 4px 0 0;
  float: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce .products .star-rating,
.woocommerce-page .products .star-rating {
  display: block;
  margin: 0 auto 1em;
  float: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce .hreview-aggregate .star-rating,
.woocommerce-page .hreview-aggregate .star-rating {
  margin: 10px 0 0 0;
}
.woocommerce #review_form #respond,
.woocommerce-page #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0 0 0;
  background: transparent none;
  border: 0;
}
.woocommerce #review_form #respond p,
.woocommerce-page #review_form #respond p {
  margin: 0 0 10px;
}
.woocommerce #review_form #respond .form-submit input,
.woocommerce-page #review_form #respond .form-submit input {
  left: auto;
}
.woocommerce #review_form #respond textarea,
.woocommerce-page #review_form #respond textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.woocommerce p.stars,
.woocommerce-page p.stars {
  position: relative;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.woocommerce p.stars a,
.woocommerce-page p.stars a {
  display: inline-block;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  margin-right: 1em;
  text-indent: -9999px;
  position: relative;
  line-height: 1;
}
.woocommerce p.stars a:last-child,
.woocommerce-page p.stars a:last-child {
  border-right: 0;
}
.woocommerce p.stars a.star-1, .woocommerce p.stars a.star-2, .woocommerce p.stars a.star-3, .woocommerce p.stars a.star-4, .woocommerce p.stars a.star-5,
.woocommerce-page p.stars a.star-1,
.woocommerce-page p.stars a.star-2,
.woocommerce-page p.stars a.star-3,
.woocommerce-page p.stars a.star-4,
.woocommerce-page p.stars a.star-5 {
  border-right: 1px solid #ccc;
}
.woocommerce p.stars a.star-1:after, .woocommerce p.stars a.star-2:after, .woocommerce p.stars a.star-3:after, .woocommerce p.stars a.star-4:after, .woocommerce p.stars a.star-5:after,
.woocommerce-page p.stars a.star-1:after,
.woocommerce-page p.stars a.star-2:after,
.woocommerce-page p.stars a.star-3:after,
.woocommerce-page p.stars a.star-4:after,
.woocommerce-page p.stars a.star-5:after {
  font-family: "WooCommerce";
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: #E8C142;
}
.woocommerce p.stars a.star-1:focus, .woocommerce p.stars a.star-2:focus, .woocommerce p.stars a.star-3:focus, .woocommerce p.stars a.star-4:focus, .woocommerce p.stars a.star-5:focus,
.woocommerce-page p.stars a.star-1:focus,
.woocommerce-page p.stars a.star-2:focus,
.woocommerce-page p.stars a.star-3:focus,
.woocommerce-page p.stars a.star-4:focus,
.woocommerce-page p.stars a.star-5:focus {
  outline: none;
}
.woocommerce p.stars a.star-1,
.woocommerce-page p.stars a.star-1 {
  width: 2em;
}
.woocommerce p.stars a.star-1:after,
.woocommerce-page p.stars a.star-1:after {
  content: "\e021";
}
.woocommerce p.stars a.star-1:hover:after, .woocommerce p.stars a.star-1.active:after,
.woocommerce-page p.stars a.star-1:hover:after,
.woocommerce-page p.stars a.star-1.active:after {
  content: "";
}
.woocommerce p.stars a.star-2,
.woocommerce-page p.stars a.star-2 {
  width: 3em;
}
.woocommerce p.stars a.star-2:after,
.woocommerce-page p.stars a.star-2:after {
  content: "\e021\e021";
}
.woocommerce p.stars a.star-2:hover:after, .woocommerce p.stars a.star-2.active:after,
.woocommerce-page p.stars a.star-2:hover:after,
.woocommerce-page p.stars a.star-2.active:after {
  content: "";
}
.woocommerce p.stars a.star-3,
.woocommerce-page p.stars a.star-3 {
  width: 4em;
}
.woocommerce p.stars a.star-3:after,
.woocommerce-page p.stars a.star-3:after {
  content: "\e021\e021\e021";
}
.woocommerce p.stars a.star-3:hover:after, .woocommerce p.stars a.star-3.active:after,
.woocommerce-page p.stars a.star-3:hover:after,
.woocommerce-page p.stars a.star-3.active:after {
  content: "";
}
.woocommerce p.stars a.star-4,
.woocommerce-page p.stars a.star-4 {
  width: 5em;
}
.woocommerce p.stars a.star-4:after,
.woocommerce-page p.stars a.star-4:after {
  content: "\e021\e021\e021\e021";
}
.woocommerce p.stars a.star-4:hover:after, .woocommerce p.stars a.star-4.active:after,
.woocommerce-page p.stars a.star-4:hover:after,
.woocommerce-page p.stars a.star-4.active:after {
  content: "";
}
.woocommerce p.stars a.star-5,
.woocommerce-page p.stars a.star-5 {
  width: 6em;
  border: 0;
}
.woocommerce p.stars a.star-5:after,
.woocommerce-page p.stars a.star-5:after {
  content: "\e021\e021\e021\e021\e021";
}
.woocommerce p.stars a.star-5:hover:after, .woocommerce p.stars a.star-5.active:after,
.woocommerce-page p.stars a.star-5:hover:after,
.woocommerce-page p.stars a.star-5.active:after {
  content: "";
}
.woocommerce table.shop_attributes,
.woocommerce-page table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
}
.woocommerce table.shop_attributes th,
.woocommerce-page table.shop_attributes th {
  width: 150px;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 8px;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5em;
}
.woocommerce table.shop_attributes td,
.woocommerce-page table.shop_attributes td {
  font-family: MuseoSans-300Italic;
  font-weight: normal;
  font-style: normal;
  padding: 0;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5em;
}
.woocommerce table.shop_attributes td p,
.woocommerce-page table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}
.woocommerce table.shop_attributes .alt td,
.woocommerce table.shop_attributes .alt th,
.woocommerce-page table.shop_attributes .alt td,
.woocommerce-page table.shop_attributes .alt th {
  background: rgba(0, 0, 0, 0.025);
}
.woocommerce table.my_account_orders,
.woocommerce-page table.my_account_orders {
  font-size: 0.85em;
}
.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td,
.woocommerce-page table.my_account_orders th,
.woocommerce-page table.my_account_orders td {
  padding: 4px 8px;
  vertical-align: middle;
}
.woocommerce table.my_account_orders .button,
.woocommerce-page table.my_account_orders .button {
  white-space: nowrap;
}
.woocommerce table.my_account_orders .order-actions,
.woocommerce-page table.my_account_orders .order-actions {
  text-align: right;
}
.woocommerce table.my_account_orders .order-actions .button,
.woocommerce-page table.my_account_orders .order-actions .button {
  margin: .125em 0 .125em .25em;
}
.woocommerce td.product-name dl.variation,
.woocommerce-page td.product-name dl.variation {
  margin: .25em 0;
  zoom: 1;
}
.woocommerce td.product-name dl.variation:after, .woocommerce td.product-name dl.variation:before,
.woocommerce-page td.product-name dl.variation:after,
.woocommerce-page td.product-name dl.variation:before {
  content: " ";
  display: table;
}
.woocommerce td.product-name dl.variation:after,
.woocommerce-page td.product-name dl.variation:after {
  clear: both;
}
.woocommerce td.product-name dl.variation dt,
.woocommerce td.product-name dl.variation dd,
.woocommerce-page td.product-name dl.variation dt,
.woocommerce-page td.product-name dl.variation dd {
  display: inline-block;
  margin-bottom: 1em;
}
.woocommerce td.product-name dl.variation dt,
.woocommerce-page td.product-name dl.variation dt {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 0 0 .25em 0;
  margin: 0 4px 0 0;
  clear: left;
}
.woocommerce td.product-name dl.variation dd,
.woocommerce-page td.product-name dl.variation dd {
  padding: 0 0 .25em 0;
}
.woocommerce td.product-name dl.variation dd p,
.woocommerce-page td.product-name dl.variation dd p {
  margin: 0;
}
.woocommerce td.product-name dl.variation .variation-Warranty,
.woocommerce-page td.product-name dl.variation .variation-Warranty {
  display: none;
}
.woocommerce td.product-name p.backorder_notification,
.woocommerce-page td.product-name p.backorder_notification {
  font-size: 0.83em;
}
.woocommerce td.product-name p,
.woocommerce-page td.product-name p {
  white-space: pre-line;
}
.woocommerce td.product-quantity,
.woocommerce-page td.product-quantity {
  min-width: 80px;
  text-align: center;
}
.woocommerce #content table.review,
.woocommerce-page #content table.review {
  margin-bottom: 1em !important;
}
.woocommerce #order_review table.shop_table,
.woocommerce-page #order_review table.shop_table {
  display: table;
}
.woocommerce #order_review table.shop_table tfoot,
.woocommerce-page #order_review table.shop_table tfoot {
  display: table-footer-group;
}
.woocommerce #order_review table.shop_table thead,
.woocommerce-page #order_review table.shop_table thead {
  display: table-header-group;
}
.woocommerce #order_review table.shop_table thead tr,
.woocommerce-page #order_review table.shop_table thead tr {
  position: relative;
  top: 0;
  left: 0;
}
.woocommerce #order_review table.shop_table tbody,
.woocommerce-page #order_review table.shop_table tbody {
  display: table-row-group;
}
.woocommerce #order_review table.shop_table tbody td,
.woocommerce-page #order_review table.shop_table tbody td {
  padding-left: 6px;
}
.woocommerce #order_review table.shop_table tbody td:before,
.woocommerce-page #order_review table.shop_table tbody td:before {
  display: none;
}
.woocommerce #order_review table.shop_table tfoot tr,
.woocommerce #order_review table.shop_table thead tr,
.woocommerce #order_review table.shop_table tbody tr,
.woocommerce-page #order_review table.shop_table tfoot tr,
.woocommerce-page #order_review table.shop_table thead tr,
.woocommerce-page #order_review table.shop_table tbody tr {
  display: table-row;
  background: #F6F9FA !important;
  border: 0 !important;
}
.woocommerce #order_review table.shop_table tfoot tr th,
.woocommerce #order_review table.shop_table tfoot tr td,
.woocommerce #order_review table.shop_table thead tr th,
.woocommerce #order_review table.shop_table thead tr td,
.woocommerce #order_review table.shop_table tbody tr th,
.woocommerce #order_review table.shop_table tbody tr td,
.woocommerce-page #order_review table.shop_table tfoot tr th,
.woocommerce-page #order_review table.shop_table tfoot tr td,
.woocommerce-page #order_review table.shop_table thead tr th,
.woocommerce-page #order_review table.shop_table thead tr td,
.woocommerce-page #order_review table.shop_table tbody tr th,
.woocommerce-page #order_review table.shop_table tbody tr td {
  display: table-cell;
  text-align: left !important;
  background: #F6F9FA !important;
  border: 0 !important;
}
.woocommerce #order_review table.shop_table tfoot tr.order-total th, .woocommerce #order_review table.shop_table tfoot tr.order-total td,
.woocommerce #order_review table.shop_table thead tr.order-total th,
.woocommerce #order_review table.shop_table thead tr.order-total td,
.woocommerce #order_review table.shop_table tbody tr.order-total th,
.woocommerce #order_review table.shop_table tbody tr.order-total td,
.woocommerce-page #order_review table.shop_table tfoot tr.order-total th,
.woocommerce-page #order_review table.shop_table tfoot tr.order-total td,
.woocommerce-page #order_review table.shop_table thead tr.order-total th,
.woocommerce-page #order_review table.shop_table thead tr.order-total td,
.woocommerce-page #order_review table.shop_table tbody tr.order-total th,
.woocommerce-page #order_review table.shop_table tbody tr.order-total td {
  font-size: 1.5em;
}
.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  margin-top: 2em;
}
.woocommerce table.shop_table,
.woocommerce #content table.cart,
.woocommerce #content table.review,
.woocommerce-page table.shop_table,
.woocommerce-page #content table.cart,
.woocommerce-page #content table.review {
  display: block;
  margin-bottom: 24px;
  border: 0;
}
.woocommerce table.shop_table thead tr,
.woocommerce #content table.cart thead tr,
.woocommerce #content table.review thead tr,
.woocommerce-page table.shop_table thead tr,
.woocommerce-page #content table.cart thead tr,
.woocommerce-page #content table.review thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.woocommerce table.shop_table tbody,
.woocommerce #content table.cart tbody,
.woocommerce #content table.review tbody,
.woocommerce-page table.shop_table tbody,
.woocommerce-page #content table.cart tbody,
.woocommerce-page #content table.review tbody {
  display: block;
}
.woocommerce table.shop_table tbody tr,
.woocommerce #content table.cart tbody tr,
.woocommerce #content table.review tbody tr,
.woocommerce-page table.shop_table tbody tr,
.woocommerce-page #content table.cart tbody tr,
.woocommerce-page #content table.review tbody tr {
  display: block;
  margin-bottom: 1.5em;
  background: none !important;
}
.woocommerce table.shop_table tbody tr.cart_item,
.woocommerce #content table.cart tbody tr.cart_item,
.woocommerce #content table.review tbody tr.cart_item,
.woocommerce-page table.shop_table tbody tr.cart_item,
.woocommerce-page #content table.cart tbody tr.cart_item,
.woocommerce-page #content table.review tbody tr.cart_item {
  background: #F6F9FA !important;
}
.woocommerce table.shop_table tbody td,
.woocommerce #content table.cart tbody td,
.woocommerce #content table.review tbody td,
.woocommerce-page table.shop_table tbody td,
.woocommerce-page #content table.cart tbody td,
.woocommerce-page #content table.review tbody td {
  position: relative;
  padding-left: 40%;
  white-space: normal;
  text-align: left;
  display: block;
  border-bottom: 0;
}
.woocommerce table.shop_table tbody td:last-child,
.woocommerce #content table.cart tbody td:last-child,
.woocommerce #content table.review tbody td:last-child,
.woocommerce-page table.shop_table tbody td:last-child,
.woocommerce-page #content table.cart tbody td:last-child,
.woocommerce-page #content table.review tbody td:last-child {
  border-bottom: 1px solid #E1E1E1 !important;
}
.woocommerce table.shop_table tbody td:before,
.woocommerce #content table.cart tbody td:before,
.woocommerce #content table.review tbody td:before,
.woocommerce-page table.shop_table tbody td:before,
.woocommerce-page #content table.cart tbody td:before,
.woocommerce-page #content table.review tbody td:before {
  position: absolute;
  left: 12px;
  width: 35%;
  padding-right: 10px;
  white-space: nowrap;
  text-align: left;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce table.shop_table tbody td.product-remove,
.woocommerce #content table.cart tbody td.product-remove,
.woocommerce #content table.review tbody td.product-remove,
.woocommerce-page table.shop_table tbody td.product-remove,
.woocommerce-page #content table.cart tbody td.product-remove,
.woocommerce-page #content table.review tbody td.product-remove {
  padding-left: 12px;
  padding-top: 0;
  padding-bottom: 0;
}
.woocommerce table.shop_table tbody td.product-remove:before,
.woocommerce #content table.cart tbody td.product-remove:before,
.woocommerce #content table.review tbody td.product-remove:before,
.woocommerce-page table.shop_table tbody td.product-remove:before,
.woocommerce-page #content table.cart tbody td.product-remove:before,
.woocommerce-page #content table.review tbody td.product-remove:before {
  display: none;
}
.woocommerce table.shop_table tbody td.product-remove a,
.woocommerce #content table.cart tbody td.product-remove a,
.woocommerce #content table.review tbody td.product-remove a,
.woocommerce-page table.shop_table tbody td.product-remove a,
.woocommerce-page #content table.cart tbody td.product-remove a,
.woocommerce-page #content table.review tbody td.product-remove a {
  color: #8f2525 !important;
}
.woocommerce table.shop_table tbody td.product-thumbnail img,
.woocommerce #content table.cart tbody td.product-thumbnail img,
.woocommerce #content table.review tbody td.product-thumbnail img,
.woocommerce-page table.shop_table tbody td.product-thumbnail img,
.woocommerce-page #content table.cart tbody td.product-thumbnail img,
.woocommerce-page #content table.review tbody td.product-thumbnail img {
  width: 60%;
  max-width: 100px;
}
.woocommerce table.shop_table tbody td.product-price .advantage-price img,
.woocommerce #content table.cart tbody td.product-price .advantage-price img,
.woocommerce #content table.review tbody td.product-price .advantage-price img,
.woocommerce-page table.shop_table tbody td.product-price .advantage-price img,
.woocommerce-page #content table.cart tbody td.product-price .advantage-price img,
.woocommerce-page #content table.review tbody td.product-price .advantage-price img {
  display: inline-block;
}
.woocommerce table.shop_table tbody td.product-price .advantage-price span,
.woocommerce #content table.cart tbody td.product-price .advantage-price span,
.woocommerce #content table.review tbody td.product-price .advantage-price span,
.woocommerce-page table.shop_table tbody td.product-price .advantage-price span,
.woocommerce-page #content table.cart tbody td.product-price .advantage-price span,
.woocommerce-page #content table.review tbody td.product-price .advantage-price span {
  display: block;
}
.woocommerce table.shop_table tbody td.product-thumbnail:before,
.woocommerce #content table.cart tbody td.product-thumbnail:before,
.woocommerce #content table.review tbody td.product-thumbnail:before,
.woocommerce-page table.shop_table tbody td.product-thumbnail:before,
.woocommerce-page #content table.cart tbody td.product-thumbnail:before,
.woocommerce-page #content table.review tbody td.product-thumbnail:before {
  font-family: "FontAwesome";
  content: "\f03e";
  font-size: 1.5em;
  top: 12px;
}
.woocommerce table.shop_table tbody td.product-name:before,
.woocommerce #content table.cart tbody td.product-name:before,
.woocommerce #content table.review tbody td.product-name:before,
.woocommerce-page table.shop_table tbody td.product-name:before,
.woocommerce-page #content table.cart tbody td.product-name:before,
.woocommerce-page #content table.review tbody td.product-name:before {
  content: "Product";
}
.woocommerce table.shop_table tbody td.product-price:before, .woocommerce table.shop_table tbody td.product-total:before,
.woocommerce #content table.cart tbody td.product-price:before,
.woocommerce #content table.cart tbody td.product-total:before,
.woocommerce #content table.review tbody td.product-price:before,
.woocommerce #content table.review tbody td.product-total:before,
.woocommerce-page table.shop_table tbody td.product-price:before,
.woocommerce-page table.shop_table tbody td.product-total:before,
.woocommerce-page #content table.cart tbody td.product-price:before,
.woocommerce-page #content table.cart tbody td.product-total:before,
.woocommerce-page #content table.review tbody td.product-price:before,
.woocommerce-page #content table.review tbody td.product-total:before {
  content: "Price";
}
.woocommerce table.shop_table tbody td.product-quantity:before,
.woocommerce #content table.cart tbody td.product-quantity:before,
.woocommerce #content table.review tbody td.product-quantity:before,
.woocommerce-page table.shop_table tbody td.product-quantity:before,
.woocommerce-page #content table.cart tbody td.product-quantity:before,
.woocommerce-page #content table.review tbody td.product-quantity:before {
  content: "Quantity";
}
.woocommerce table.shop_table tbody td.product-subtotal:before,
.woocommerce #content table.cart tbody td.product-subtotal:before,
.woocommerce #content table.review tbody td.product-subtotal:before,
.woocommerce-page table.shop_table tbody td.product-subtotal:before,
.woocommerce-page #content table.cart tbody td.product-subtotal:before,
.woocommerce-page #content table.review tbody td.product-subtotal:before {
  content: "Subtotal";
}
.woocommerce table.shop_table tbody td.order-number:before,
.woocommerce #content table.cart tbody td.order-number:before,
.woocommerce #content table.review tbody td.order-number:before,
.woocommerce-page table.shop_table tbody td.order-number:before,
.woocommerce-page #content table.cart tbody td.order-number:before,
.woocommerce-page #content table.review tbody td.order-number:before {
  content: "Order";
}
.woocommerce table.shop_table tbody td.order-date:before,
.woocommerce #content table.cart tbody td.order-date:before,
.woocommerce #content table.review tbody td.order-date:before,
.woocommerce-page table.shop_table tbody td.order-date:before,
.woocommerce-page #content table.cart tbody td.order-date:before,
.woocommerce-page #content table.review tbody td.order-date:before {
  content: "Date";
}
.woocommerce table.shop_table tbody td.order-status:before,
.woocommerce #content table.cart tbody td.order-status:before,
.woocommerce #content table.review tbody td.order-status:before,
.woocommerce-page table.shop_table tbody td.order-status:before,
.woocommerce-page #content table.cart tbody td.order-status:before,
.woocommerce-page #content table.review tbody td.order-status:before {
  content: "Status";
}
.woocommerce table.shop_table tbody td.order-total:before,
.woocommerce #content table.cart tbody td.order-total:before,
.woocommerce #content table.review tbody td.order-total:before,
.woocommerce-page table.shop_table tbody td.order-total:before,
.woocommerce-page #content table.cart tbody td.order-total:before,
.woocommerce-page #content table.review tbody td.order-total:before {
  content: "Total";
}
.woocommerce table.shop_table tbody td.order-actions,
.woocommerce #content table.cart tbody td.order-actions,
.woocommerce #content table.review tbody td.order-actions,
.woocommerce-page table.shop_table tbody td.order-actions,
.woocommerce-page #content table.cart tbody td.order-actions,
.woocommerce-page #content table.review tbody td.order-actions {
  padding: 10px 0;
  text-align: center;
}
.woocommerce table.shop_table tbody a.remove,
.woocommerce #content table.cart tbody a.remove,
.woocommerce #content table.review tbody a.remove,
.woocommerce-page table.shop_table tbody a.remove,
.woocommerce-page #content table.cart tbody a.remove,
.woocommerce-page #content table.review tbody a.remove {
  font-size: 2em;
}
.woocommerce table.shop_table tbody a.remove:hover, .woocommerce table.shop_table tbody a.remove:focus,
.woocommerce #content table.cart tbody a.remove:hover,
.woocommerce #content table.cart tbody a.remove:focus,
.woocommerce #content table.review tbody a.remove:hover,
.woocommerce #content table.review tbody a.remove:focus,
.woocommerce-page table.shop_table tbody a.remove:hover,
.woocommerce-page table.shop_table tbody a.remove:focus,
.woocommerce-page #content table.cart tbody a.remove:hover,
.woocommerce-page #content table.cart tbody a.remove:focus,
.woocommerce-page #content table.review tbody a.remove:hover,
.woocommerce-page #content table.review tbody a.remove:focus {
  text-decoration: none;
}
.woocommerce table.shop_table td.actions,
.woocommerce #content table.cart td.actions,
.woocommerce #content table.review td.actions,
.woocommerce-page table.shop_table td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page #content table.review td.actions {
  height: auto;
  overflow: hidden;
  border: 0 !important;
  padding: 0;
}
.woocommerce table.shop_table td.actions .coupon,
.woocommerce #content table.cart td.actions .coupon,
.woocommerce #content table.review td.actions .coupon,
.woocommerce-page table.shop_table td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page #content table.review td.actions .coupon {
  margin-bottom: 1em;
}
.woocommerce table.shop_table .quantity,
.woocommerce #content table.cart .quantity,
.woocommerce #content table.review .quantity,
.woocommerce-page table.shop_table .quantity,
.woocommerce-page #content table.cart .quantity,
.woocommerce-page #content table.review .quantity {
  margin: 0 !important;
}
.woocommerce table.shop_table .product-quantity,
.woocommerce #content table.cart .product-quantity,
.woocommerce #content table.review .product-quantity,
.woocommerce-page table.shop_table .product-quantity,
.woocommerce-page #content table.cart .product-quantity,
.woocommerce-page #content table.review .product-quantity {
  white-space: nowrap;
}
.woocommerce .review-totals table tr,
.woocommerce .review-totals table tr:nth-child(odd),
.woocommerce .review-totals table tr:nth-child(even),
.woocommerce .order-totals table tr,
.woocommerce .order-totals table tr:nth-child(odd),
.woocommerce .order-totals table tr:nth-child(even),
.woocommerce .cart-collaterals table tr,
.woocommerce .cart-collaterals table tr:nth-child(odd),
.woocommerce .cart-collaterals table tr:nth-child(even),
.woocommerce-page .review-totals table tr,
.woocommerce-page .review-totals table tr:nth-child(odd),
.woocommerce-page .review-totals table tr:nth-child(even),
.woocommerce-page .order-totals table tr,
.woocommerce-page .order-totals table tr:nth-child(odd),
.woocommerce-page .order-totals table tr:nth-child(even),
.woocommerce-page .cart-collaterals table tr,
.woocommerce-page .cart-collaterals table tr:nth-child(odd),
.woocommerce-page .cart-collaterals table tr:nth-child(even) {
  background: none !important;
}
.woocommerce .review-totals table tr th,
.woocommerce .order-totals table tr th,
.woocommerce .cart-collaterals table tr th,
.woocommerce-page .review-totals table tr th,
.woocommerce-page .order-totals table tr th,
.woocommerce-page .cart-collaterals table tr th {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .review-totals table .at-shipping-info,
.woocommerce .order-totals table .at-shipping-info,
.woocommerce .cart-collaterals table .at-shipping-info,
.woocommerce-page .review-totals table .at-shipping-info,
.woocommerce-page .order-totals table .at-shipping-info,
.woocommerce-page .cart-collaterals table .at-shipping-info {
  font-size: 16px !important;
}
.woocommerce .review-totals table .order-total .amount,
.woocommerce .review-totals table .recurring-totals,
.woocommerce .order-totals table .order-total .amount,
.woocommerce .order-totals table .recurring-totals,
.woocommerce .cart-collaterals table .order-total .amount,
.woocommerce .cart-collaterals table .recurring-totals,
.woocommerce-page .review-totals table .order-total .amount,
.woocommerce-page .review-totals table .recurring-totals,
.woocommerce-page .order-totals table .order-total .amount,
.woocommerce-page .order-totals table .recurring-totals,
.woocommerce-page .cart-collaterals table .order-total .amount,
.woocommerce-page .cart-collaterals table .recurring-totals {
  font-size: 1.25em;
}
.woocommerce .review-totals table th,
.woocommerce .order-totals table th,
.woocommerce .cart-collaterals table th,
.woocommerce-page .review-totals table th,
.woocommerce-page .order-totals table th,
.woocommerce-page .cart-collaterals table th {
  background: none !important;
  border: 0 !important;
  text-align: left;
  padding: 0.5em 1em 0.5em 0 !important;
  vertical-align: top;
  line-height: 1.1;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .review-totals table td,
.woocommerce .order-totals table td,
.woocommerce .cart-collaterals table td,
.woocommerce-page .review-totals table td,
.woocommerce-page .order-totals table td,
.woocommerce-page .cart-collaterals table td {
  border: 0 !important;
  padding: 0.5em 0 !important;
}
.woocommerce .order-totals,
.woocommerce-page .order-totals {
  border-bottom: 1px solid #DDD;
  margin-bottom: 2em;
  padding-bottom: 1em;
}
.woocommerce .standard-shipping,
.woocommerce-page .standard-shipping {
  background: #EEE;
  text-align: center;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 0.5em 1em;
  margin-top: 1em;
}
.woocommerce .standard-shipping p,
.woocommerce-page .standard-shipping p {
  margin: 0;
}
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  margin-bottom: 2em;
}
.woocommerce .cart-collaterals .woocommerce-info,
.woocommerce-page .cart-collaterals .woocommerce-info {
  font-size: 80%;
  line-height: 1.3;
  max-width: 320px;
  margin: 10px 0;
}
.woocommerce .cart-collaterals div,
.woocommerce-page .cart-collaterals div {
  margin-bottom: 0.5em;
}
.woocommerce .cart-collaterals div span.amount,
.woocommerce-page .cart-collaterals div span.amount {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .cart-collaterals .cart-subtotal,
.woocommerce .cart-collaterals .cart-shipping,
.woocommerce .cart-collaterals .tax-rate,
.woocommerce-page .cart-collaterals .cart-subtotal,
.woocommerce-page .cart-collaterals .cart-shipping,
.woocommerce-page .cart-collaterals .tax-rate {
  font-size: 1.125em;
}
.woocommerce .cart-collaterals .shipping th,
.woocommerce-page .cart-collaterals .shipping th {
  font-size: 1.125em;
}
.woocommerce .cart-collaterals .shipping .at-shipping-message,
.woocommerce-page .cart-collaterals .shipping .at-shipping-message {
  font-size: 16px;
}
.woocommerce .cart-collaterals .cart-shipping .chosen-container.chosen-container-single,
.woocommerce .cart-collaterals .cart-shipping select,
.woocommerce-page .cart-collaterals .cart-shipping .chosen-container.chosen-container-single,
.woocommerce-page .cart-collaterals .cart-shipping select {
  font-size: 85% !important;
  margin: 0.5em 0 !important;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .cart-collaterals .cart-shipping .chosen-container .chosen-results li.active-result,
.woocommerce-page .cart-collaterals .cart-shipping .chosen-container .chosen-results li.active-result {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .cart-collaterals .shipping_calculator .button,
.woocommerce-page .cart-collaterals .shipping_calculator .button {
  width: 100%;
  float: none;
  display: block;
}
.woocommerce .cart-collaterals .shipping_calculator h2,
.woocommerce-page .cart-collaterals .shipping_calculator h2 {
  font-size: 120%;
}
.woocommerce .cart-collaterals .shipping_calculator h2:after,
.woocommerce-page .cart-collaterals .shipping_calculator h2:after {
  font-family: "FontAwesome";
  content: "\f13a";
  margin-left: 10px;
  color: #BC2026;
}
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-page .cart-collaterals .cart_totals h2 {
  border-bottom: 1px solid #DDD;
  padding-bottom: 0.5em;
}
.woocommerce .cart-collaterals .cart_totals p,
.woocommerce-page .cart-collaterals .cart_totals p {
  margin: 0;
  white-space: pre-line;
}
.woocommerce .cart-collaterals .cart_totals p small,
.woocommerce-page .cart-collaterals .cart_totals p small {
  font-size: 0.83em;
}
.woocommerce .cart-collaterals .cross-sells h2,
.woocommerce-page .cart-collaterals .cross-sells h2 {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product h3,
.woocommerce-page .cart-collaterals .cross-sells ul.products li.product h3 {
  font-size: 1em;
  line-height: 1.3;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .price,
.woocommerce-page .cart-collaterals .cross-sells ul.products li.product .price {
  font-size: 1.125em;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .price .amount,
.woocommerce-page .cart-collaterals .cross-sells ul.products li.product .price .amount {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.product .product-wrapper,
.woocommerce-page .cart-collaterals .cross-sells ul.products li.product .product-wrapper {
  margin-bottom: 0;
}
.woocommerce form h3,
.woocommerce-page form h3 {
  margin-bottom: 0.5em;
}
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  padding: 3px 0;
  margin: 0 0 6px;
}
.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder,
.woocommerce-page form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  line-height: 2em;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce form .form-row label.hidden,
.woocommerce-page form .form-row label.hidden {
  visibility: hidden;
}
.woocommerce form .form-row label.inline,
.woocommerce-page form .form-row label.inline {
  display: inline;
}
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  cursor: pointer;
  margin: 0;
}
.woocommerce form .form-row .required,
.woocommerce-page form .form-row .required {
  color: #8f2525;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  border: 0;
}
.woocommerce form .form-row .input-checkbox,
.woocommerce-page form .form-row .input-checkbox {
  display: inline;
  margin: 9px 8px 9px 0;
  text-align: center;
  vertical-align: middle;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
  width: 100%;
  margin: 0;
  outline: 0;
}
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
  height: 4em;
  line-height: 1.5em;
  display: block;
}
.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-single,
.woocommerce form .form-row.validate-required.woocommerce-invalid .chosen-drop,
.woocommerce form .form-row.validate-required.woocommerce-invalid input.input-text,
.woocommerce form .form-row.validate-required.woocommerce-invalid select,
.woocommerce form .form-row.validate-required.woocommerce-invalid .select2-container .select2-selection,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-single,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .chosen-drop,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid input.input-text,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid select,
.woocommerce-page form .form-row.validate-required.woocommerce-invalid .select2-container .select2-selection {
  border-color: #fb7f88;
}
.woocommerce form .form-row ::-webkit-input-placeholder,
.woocommerce-page form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-moz-placeholder,
.woocommerce-page form .form-row :-moz-placeholder {
  line-height: normal;
}
.woocommerce form .form-row :-ms-input-placeholder,
.woocommerce-page form .form-row :-ms-input-placeholder {
  line-height: normal;
}
.woocommerce form.checkout_coupon,
.woocommerce-page form.checkout_coupon {
  zoom: 1;
}
.woocommerce form.checkout_coupon:after, .woocommerce form.checkout_coupon:before,
.woocommerce-page form.checkout_coupon:after,
.woocommerce-page form.checkout_coupon:before {
  content: " ";
  display: table;
}
.woocommerce form.checkout_coupon:after,
.woocommerce-page form.checkout_coupon:after {
  clear: both;
}
.woocommerce form.checkout_coupon .button,
.woocommerce-page form.checkout_coupon .button {
  margin-top: 8px !important;
}
.woocommerce form.checkout_affiliates,
.woocommerce-page form.checkout_affiliates {
  zoom: 1;
}
.woocommerce form.checkout_affiliates:after, .woocommerce form.checkout_affiliates:before,
.woocommerce-page form.checkout_affiliates:after,
.woocommerce-page form.checkout_affiliates:before {
  content: " ";
  display: table;
}
.woocommerce form.checkout_affiliates:after,
.woocommerce-page form.checkout_affiliates:after {
  clear: both;
}
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon,
.woocommerce form.checkout_affiliates,
.woocommerce-page form.login,
.woocommerce-page form.register,
.woocommerce-page form.checkout_coupon,
.woocommerce-page form.checkout_affiliates {
  border: 1px solid #CCC;
  padding: 1em;
  margin: 1em 0 1em;
}
.woocommerce form.login, .woocommerce form.register,
.woocommerce-page form.login,
.woocommerce-page form.register {
  padding: 0.5em 1em 1em;
}
.woocommerce form.login .button, .woocommerce form.register .button,
.woocommerce-page form.login .button,
.woocommerce-page form.register .button {
  margin-bottom: 10px !important;
}
.woocommerce form.login #rememberme,
.woocommerce-page form.login #rememberme {
  float: none;
}
.woocommerce form.login .lost_password,
.woocommerce-page form.login .lost_password {
  margin: 0 0 0.5em;
}
.woocommerce .shipping_address,
.woocommerce-page .shipping_address {
  margin-bottom: 1em;
}
.woocommerce ul#shipping_method,
.woocommerce-page ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.woocommerce ul#shipping_method li,
.woocommerce-page ul#shipping_method li {
  margin-left: 0;
  padding: 0;
  list-style: none outside;
  zoom: 1;
}
.woocommerce ul#shipping_method li:after, .woocommerce ul#shipping_method li:before,
.woocommerce-page ul#shipping_method li:after,
.woocommerce-page ul#shipping_method li:before {
  content: " ";
  display: table;
}
.woocommerce ul#shipping_method li:after,
.woocommerce-page ul#shipping_method li:after {
  clear: both;
}
.woocommerce ul#shipping_method .amount,
.woocommerce-page ul#shipping_method .amount {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce p.woocommerce-shipping-contents,
.woocommerce-page p.woocommerce-shipping-contents {
  margin: 0;
}
.woocommerce .respond-form form input,
.woocommerce .comment-respond form input,
.woocommerce-page .respond-form form input,
.woocommerce-page .comment-respond form input {
  max-width: 100% !important;
}
.woocommerce .form-row.place-order,
.woocommerce-page .form-row.place-order {
  margin: 1em;
}
.woocommerce .place-order .terms,
.woocommerce-page .place-order .terms {
  zoom: 1;
  margin: 1em 0;
  padding: 0 !important;
}
.woocommerce .place-order .terms:after, .woocommerce .place-order .terms:before,
.woocommerce-page .place-order .terms:after,
.woocommerce-page .place-order .terms:before {
  content: " ";
  display: table;
}
.woocommerce .place-order .terms:after,
.woocommerce-page .place-order .terms:after {
  clear: both;
}
.woocommerce .place-order .terms label.checkbox,
.woocommerce-page .place-order .terms label.checkbox {
  float: right;
  width: 90%;
  line-height: 1.5;
  text-align: left;
}
.woocommerce .place-order .terms label.checkbox a,
.woocommerce-page .place-order .terms label.checkbox a {
  display: block;
}
.woocommerce .place-order .terms input.input-checkbox,
.woocommerce-page .place-order .terms input.input-checkbox {
  float: left;
}
.woocommerce #payment,
.woocommerce-page #payment {
  padding-top: 0;
  border: 1px solid #DDD;
  margin-top: 1em;
}
.woocommerce #payment ul.payment_methods,
.woocommerce-page #payment ul.payment_methods {
  zoom: 1;
  text-align: left;
  padding: 0;
  list-style: none outside;
}
.woocommerce #payment ul.payment_methods:after, .woocommerce #payment ul.payment_methods:before,
.woocommerce-page #payment ul.payment_methods:after,
.woocommerce-page #payment ul.payment_methods:before {
  content: " ";
  display: table;
}
.woocommerce #payment ul.payment_methods:after,
.woocommerce-page #payment ul.payment_methods:after {
  clear: both;
}
.woocommerce #payment ul.payment_methods li,
.woocommerce-page #payment ul.payment_methods li {
  line-height: 2em;
  text-align: left;
  margin: 0;
  font-weight: normal;
  padding: 1em;
  background: #eee;
  border-bottom: 1px solid #ddd;
}
.woocommerce #payment ul.payment_methods li label,
.woocommerce-page #payment ul.payment_methods li label {
  display: inline;
  margin-left: 5px;
}
.woocommerce #payment ul.payment_methods li label img,
.woocommerce-page #payment ul.payment_methods li label img {
  vertical-align: middle;
  margin-left: 10px;
  margin-right: -3px;
}
.woocommerce #payment ul.payment_methods li label a,
.woocommerce-page #payment ul.payment_methods li label a {
  margin-left: 1.5em;
}
.woocommerce #payment div.payment_box,
.woocommerce-page #payment div.payment_box {
  padding: 1em;
  margin: 1em 0;
  line-height: 1.5;
  background-color: #fff;
}
.woocommerce #payment div.payment_box fieldset,
.woocommerce-page #payment div.payment_box fieldset {
  border: 0;
  padding: 0;
}
.woocommerce #payment div.payment_box fieldset + label,
.woocommerce-page #payment div.payment_box fieldset + label {
  margin-left: 0 !important;
}
.woocommerce #payment div.payment_box input[type="tel"] + label,
.woocommerce #payment div.payment_box input[type="text"] + label,
.woocommerce-page #payment div.payment_box input[type="tel"] + label,
.woocommerce-page #payment div.payment_box input[type="text"] + label {
  margin-left: 0 !important;
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc {
  background-repeat: no-repeat;
  background-position: right;
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.visa {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.laser {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.maestro {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.jcb {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.amex {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.png");
}
.woocommerce #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-page #payment div.payment_box .wc-credit-card-form-card-cvc.discover {
  background-image: url("/wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.png");
}
.woocommerce #payment div.payment_box span.help,
.woocommerce-page #payment div.payment_box span.help {
  font-size: 0.875em;
  line-height: 13px;
  font-weight: normal;
}
.woocommerce #payment div.payment_box .form-row,
.woocommerce-page #payment div.payment_box .form-row {
  margin: 0 0 1em;
}
.woocommerce #payment div.payment_box p:last-child,
.woocommerce-page #payment div.payment_box p:last-child {
  margin: 0;
}
.woocommerce #payment div.payment_box input[type="text"],
.woocommerce-page #payment div.payment_box input[type="text"] {
  font-size: 1em !important;
}
.woocommerce #payment div.payment_box input[type="text"]:focus,
.woocommerce-page #payment div.payment_box input[type="text"]:focus {
  box-shadow: none !important;
}
.woocommerce .checkout-subscribe-prompt,
.woocommerce-page .checkout-subscribe-prompt {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce ul.order_details,
.woocommerce-page ul.order_details {
  zoom: 1;
  margin: 0 0 1.5em;
  list-style: none;
}
.woocommerce ul.order_details:after, .woocommerce ul.order_details:before,
.woocommerce-page ul.order_details:after,
.woocommerce-page ul.order_details:before {
  content: " ";
  display: table;
}
.woocommerce ul.order_details:after,
.woocommerce-page ul.order_details:after {
  clear: both;
}
.woocommerce ul.order_details li,
.woocommerce-page ul.order_details li {
  font-size: 0.875em;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0 0 -1px 0;
  padding: 0;
  border: 1px solid #DDD;
  text-align: center;
  background: #EEE;
}
.woocommerce ul.order_details li strong,
.woocommerce-page ul.order_details li strong {
  display: block;
  text-transform: none;
  font-size: 1.45em;
  line-height: 1.45;
  border-top: 1px solid #DDD;
  background: #F6F9FA;
  padding: 0.5em 0;
}
.woocommerce ul.order_details li.method,
.woocommerce-page ul.order_details li.method {
  margin-bottom: 0;
}
.woocommerce .addresses .title,
.woocommerce-page .addresses .title {
  margin-top: 0.5em;
  zoom: 1;
}
.woocommerce .addresses .title:after, .woocommerce .addresses .title:before,
.woocommerce-page .addresses .title:after,
.woocommerce-page .addresses .title:before {
  content: " ";
  display: table;
}
.woocommerce .addresses .title:after,
.woocommerce-page .addresses .title:after {
  clear: both;
}
.woocommerce .addresses .title h3,
.woocommerce-page .addresses .title h3 {
  float: left;
  margin-top: 0;
}
.woocommerce .addresses .title .edit,
.woocommerce-page .addresses .title .edit {
  float: right;
  background: #000;
  color: #FFF;
  padding: 0.2em 1em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.woocommerce .addresses .title .edit:hover, .woocommerce .addresses .title .edit:focus,
.woocommerce-page .addresses .title .edit:hover,
.woocommerce-page .addresses .title .edit:focus {
  text-decoration: none;
  background: #1a1a1a;
}
.woocommerce .addresses .col2-set address,
.woocommerce-page .addresses .col2-set address {
  margin-bottom: 0;
}
.woocommerce ol.commentlist.notes li.note p.meta,
.woocommerce-page ol.commentlist.notes li.note p.meta {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 0;
}
.woocommerce ol.commentlist.notes li.note .description p:last-child,
.woocommerce-page ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}
.woocommerce ul.digital-downloads,
.woocommerce-page ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}
.woocommerce ul.digital-downloads li,
.woocommerce-page ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.woocommerce ul.digital-downloads li:before,
.woocommerce-page ul.digital-downloads li:before {
  content: "\e00a";
}
.woocommerce ul.digital-downloads li .count,
.woocommerce-page ul.digital-downloads li .count {
  float: right;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .woocommerce a.button.loading:before,
  .woocommerce button.button.loading:before,
  .woocommerce input.button.loading:before,
  .woocommerce #respond input#submit.loading:before,
  .woocommerce #content input.button.loading:before,
  .woocommerce-page a.button.loading:before,
  .woocommerce-page button.button.loading:before,
  .woocommerce-page input.button.loading:before,
  .woocommerce-page #respond input#submit.loading:before,
  .woocommerce-page #content input.button.loading:before {
    background-image: url("/wp-content/plugins/woocommerce/assets/images/ajax-loader@2x.gif");
    background-size: 16px 16px;
  }
}
@media only screen and (min-width: 768px) {
  /* =Main Styles (namespace to avoid conflict with common global class names)
  -------------------------------------------------------------- */
  .woocommerce,
  .woocommerce-page {
    /* =Product Loops
    -------------------------------------------------------------- */
    /* =Product Page
    -------------------------------------------------------------- */
   /* =Buttons
  -------------------------------------------------------------- */
    /* =Cart & Review
    -------------------------------------------------------------- */
    /* =Cart Page
    -------------------------------------------------------------- */
    /* =Checkout
    -------------------------------------------------------------- */
    /* =Reviews/comments
    -------------------------------------------------------------- */
   /* =Forms
  -------------------------------------------------------------- */
    /* =Account Page
    -------------------------------------------------------------- */
    /* =Order Page
    -------------------------------------------------------------- */
  }
  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count {
    float: right;
    line-height: 39px;
    margin: 15px 0 20px;
  }
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    float: left;
    width: 185px;
    margin: 1em 0 0 0;
  }
  .woocommerce #entries-select,
  .woocommerce-page #entries-select {
    float: left;
    width: 216px;
    margin: 15px 0 20px;
  }
  .woocommerce #entries-select label,
  .woocommerce-page #entries-select label {
    margin-bottom: 0;
  }
  .woocommerce .shop-filter-header,
  .woocommerce-page .shop-filter-header {
    margin-bottom: 3em;
  }
  .woocommerce .search-col,
  .woocommerce-page .search-col {
    float: right;
    width: 37%;
  }
  .woocommerce .results-col,
  .woocommerce-page .results-col {
    float: left;
    width: 62%;
    max-width: 400px;
  }
  .woocommerce div.product,
  .woocommerce #content div.product,
  .woocommerce-page div.product,
  .woocommerce-page #content div.product {
    /* add to cart forms */
  }
  .woocommerce div.product form.cart,
  .woocommerce #content div.product form.cart,
  .woocommerce-page div.product form.cart,
  .woocommerce-page #content div.product form.cart {
    max-width: 400px;
  }
  .woocommerce div.product form.cart div.quantity,
  .woocommerce #content div.product form.cart div.quantity,
  .woocommerce-page div.product form.cart div.quantity,
  .woocommerce-page #content div.product form.cart div.quantity {
    margin: 0 0 0 4%;
    width: 45%;
  }
  .woocommerce div.product form.cart div.quantity:before,
  .woocommerce #content div.product form.cart div.quantity:before,
  .woocommerce-page div.product form.cart div.quantity:before,
  .woocommerce-page #content div.product form.cart div.quantity:before {
    margin-right: 1em;
    font-size: 1em;
  }
  .woocommerce div.product form.cart .single_add_to_cart_button,
  .woocommerce #content div.product form.cart .single_add_to_cart_button,
  .woocommerce-page div.product form.cart .single_add_to_cart_button,
  .woocommerce-page #content div.product form.cart .single_add_to_cart_button {
    width: 46%;
    margin-right: 5%;
  }
  .woocommerce div.related.products ul.products li.product .button,
  .woocommerce-page div.related.products ul.products li.product .button {
    padding: 9px 1.25em;
  }
  .woocommerce #searchform,
  .woocommerce-page #searchform {
    margin: 15px 0 20px;
  }
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit,
  .woocommerce #content input.button,
  .woocommerce-page a.button,
  .woocommerce-page button.button,
  .woocommerce-page input.button,
  .woocommerce-page #respond input#submit,
  .woocommerce-page #content input.button {
    padding: 9px 2em;
  }
  .woocommerce table.shop_table tbody td.product-remove,
  .woocommerce table.cart tbody td.product-remove,
  .woocommerce #content table.cart tbody td.product-remove,
  .woocommerce-page table.shop_table tbody td.product-remove,
  .woocommerce-page table.cart tbody td.product-remove,
  .woocommerce-page #content table.cart tbody td.product-remove {
    width: 50px;
  }
  .woocommerce table.shop_table tbody td.product-thumbnail,
  .woocommerce table.cart tbody td.product-thumbnail,
  .woocommerce #content table.cart tbody td.product-thumbnail,
  .woocommerce-page table.shop_table tbody td.product-thumbnail,
  .woocommerce-page table.cart tbody td.product-thumbnail,
  .woocommerce-page #content table.cart tbody td.product-thumbnail {
    padding: 10px !important;
    width: 150px;
  }
  .woocommerce table.shop_table tbody td.product-thumbnail img,
  .woocommerce table.cart tbody td.product-thumbnail img,
  .woocommerce #content table.cart tbody td.product-thumbnail img,
  .woocommerce-page table.shop_table tbody td.product-thumbnail img,
  .woocommerce-page table.cart tbody td.product-thumbnail img,
  .woocommerce-page #content table.cart tbody td.product-thumbnail img {
    display: block;
    margin: 0 auto;
  }
  .woocommerce table.shop_table tbody td.product-quantity,
  .woocommerce table.cart tbody td.product-quantity,
  .woocommerce #content table.cart tbody td.product-quantity,
  .woocommerce-page table.shop_table tbody td.product-quantity,
  .woocommerce-page table.cart tbody td.product-quantity,
  .woocommerce-page #content table.cart tbody td.product-quantity {
    text-align: center;
    width: 100px;
  }
  .woocommerce table.shop_table tbody td.product-price,
  .woocommerce table.cart tbody td.product-price,
  .woocommerce #content table.cart tbody td.product-price,
  .woocommerce-page table.shop_table tbody td.product-price,
  .woocommerce-page table.cart tbody td.product-price,
  .woocommerce-page #content table.cart tbody td.product-price {
    width: 120px;
  }
  .woocommerce table.shop_table tbody td.product-subtotal,
  .woocommerce table.cart tbody td.product-subtotal,
  .woocommerce #content table.cart tbody td.product-subtotal,
  .woocommerce-page table.shop_table tbody td.product-subtotal,
  .woocommerce-page table.cart tbody td.product-subtotal,
  .woocommerce-page #content table.cart tbody td.product-subtotal {
    text-align: right;
    width: 120px;
  }
  .woocommerce table.review tbody td.product-thumbnail,
  .woocommerce #content table.review tbody td.product-thumbnail,
  .woocommerce-page table.review tbody td.product-thumbnail,
  .woocommerce-page #content table.review tbody td.product-thumbnail {
    width: 150px;
  }
  .woocommerce table.review tbody td.product-thumbnail img,
  .woocommerce #content table.review tbody td.product-thumbnail img,
  .woocommerce-page table.review tbody td.product-thumbnail img,
  .woocommerce-page #content table.review tbody td.product-thumbnail img {
    margin: 0;
    width: 80%;
    max-width: 150px;
  }
  .woocommerce table.review tbody td.product-quantity,
  .woocommerce #content table.review tbody td.product-quantity,
  .woocommerce-page table.review tbody td.product-quantity,
  .woocommerce-page #content table.review tbody td.product-quantity {
    width: 100px;
    text-align: center;
  }
  .woocommerce table.review tbody td.product-price,
  .woocommerce #content table.review tbody td.product-price,
  .woocommerce-page table.review tbody td.product-price,
  .woocommerce-page #content table.review tbody td.product-price {
    width: 200px;
  }
  .woocommerce table.review tbody td.product-subtotal,
  .woocommerce #content table.review tbody td.product-subtotal,
  .woocommerce-page table.review tbody td.product-subtotal,
  .woocommerce-page #content table.review tbody td.product-subtotal {
    width: 150px;
  }
  .woocommerce table.order_details thead th.product-total,
  .woocommerce-page table.order_details thead th.product-total {
    text-align: right;
  }
  .woocommerce table.order_details tbody td.product-thumbnail,
  .woocommerce-page table.order_details tbody td.product-thumbnail {
    width: 200px;
  }
  .woocommerce table.order_details tbody td.product-quantity,
  .woocommerce-page table.order_details tbody td.product-quantity {
    width: 100px;
    text-align: center;
  }
  .woocommerce table.order_details tbody td.product-total,
  .woocommerce-page table.order_details tbody td.product-total {
    width: 200px;
    text-align: right;
  }
  .woocommerce table.order_details tfoot th,
  .woocommerce-page table.order_details tfoot th {
    text-align: left;
  }
  .woocommerce table.customer_details th,
  .woocommerce-page table.customer_details th {
    text-align: left;
  }
  .woocommerce table.my_account_orders thead tr th,
  .woocommerce-page table.my_account_orders thead tr th {
    text-align: left !important;
  }
  .woocommerce table.my_account_orders thead tr th.product-price,
  .woocommerce-page table.my_account_orders thead tr th.product-price {
    text-align: right;
    padding-right: 15px;
  }
  .woocommerce table.my_account_orders tbody tr td,
  .woocommerce-page table.my_account_orders tbody tr td {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .woocommerce table.my_account_orders tbody tr td.order-actions,
  .woocommerce-page table.my_account_orders tbody tr td.order-actions {
    text-align: left;
  }
  .woocommerce table.my_account_orders tbody tr td:last-child,
  .woocommerce-page table.my_account_orders tbody tr td:last-child {
    border-bottom: 0 !important;
  }
  .woocommerce table.shop_table,
  .woocommerce table.cart,
  .woocommerce #content table.cart,
  .woocommerce table.review,
  .woocommerce table.order_details,
  .woocommerce table.my_account_orders,
  .woocommerce-page table.shop_table,
  .woocommerce-page table.cart,
  .woocommerce-page #content table.cart,
  .woocommerce-page table.review,
  .woocommerce-page table.order_details,
  .woocommerce-page table.my_account_orders {
    display: table;
  }
  .woocommerce table.shop_table thead tr,
  .woocommerce table.cart thead tr,
  .woocommerce #content table.cart thead tr,
  .woocommerce table.review thead tr,
  .woocommerce table.order_details thead tr,
  .woocommerce table.my_account_orders thead tr,
  .woocommerce-page table.shop_table thead tr,
  .woocommerce-page table.cart thead tr,
  .woocommerce-page #content table.cart thead tr,
  .woocommerce-page table.review thead tr,
  .woocommerce-page table.order_details thead tr,
  .woocommerce-page table.my_account_orders thead tr {
    position: static;
    top: auto;
    left: auto;
  }
  .woocommerce table.shop_table thead th,
  .woocommerce table.cart thead th,
  .woocommerce #content table.cart thead th,
  .woocommerce table.review thead th,
  .woocommerce table.order_details thead th,
  .woocommerce table.my_account_orders thead th,
  .woocommerce-page table.shop_table thead th,
  .woocommerce-page table.cart thead th,
  .woocommerce-page #content table.cart thead th,
  .woocommerce-page table.review thead th,
  .woocommerce-page table.order_details thead th,
  .woocommerce-page table.my_account_orders thead th {
    font-family: MuseoSans-700;
    font-weight: normal;
    font-style: normal;
    font-size: 1.125em;
    padding: 15px;
    background: #F6F9FA !important;
    border: 0 !important;
  }
  .woocommerce table.shop_table thead th.product-name, .woocommerce table.shop_table thead th.order-number,
  .woocommerce table.cart thead th.product-name,
  .woocommerce table.cart thead th.order-number,
  .woocommerce #content table.cart thead th.product-name,
  .woocommerce #content table.cart thead th.order-number,
  .woocommerce table.review thead th.product-name,
  .woocommerce table.review thead th.order-number,
  .woocommerce table.order_details thead th.product-name,
  .woocommerce table.order_details thead th.order-number,
  .woocommerce table.my_account_orders thead th.product-name,
  .woocommerce table.my_account_orders thead th.order-number,
  .woocommerce-page table.shop_table thead th.product-name,
  .woocommerce-page table.shop_table thead th.order-number,
  .woocommerce-page table.cart thead th.product-name,
  .woocommerce-page table.cart thead th.order-number,
  .woocommerce-page #content table.cart thead th.product-name,
  .woocommerce-page #content table.cart thead th.order-number,
  .woocommerce-page table.review thead th.product-name,
  .woocommerce-page table.review thead th.order-number,
  .woocommerce-page table.order_details thead th.product-name,
  .woocommerce-page table.order_details thead th.order-number,
  .woocommerce-page table.my_account_orders thead th.product-name,
  .woocommerce-page table.my_account_orders thead th.order-number {
    text-align: left;
    padding-left: 15px;
  }
  .woocommerce table.shop_table thead th.product-subtotal,
  .woocommerce table.cart thead th.product-subtotal,
  .woocommerce #content table.cart thead th.product-subtotal,
  .woocommerce table.review thead th.product-subtotal,
  .woocommerce table.order_details thead th.product-subtotal,
  .woocommerce table.my_account_orders thead th.product-subtotal,
  .woocommerce-page table.shop_table thead th.product-subtotal,
  .woocommerce-page table.cart thead th.product-subtotal,
  .woocommerce-page #content table.cart thead th.product-subtotal,
  .woocommerce-page table.review thead th.product-subtotal,
  .woocommerce-page table.order_details thead th.product-subtotal,
  .woocommerce-page table.my_account_orders thead th.product-subtotal {
    text-align: right;
    padding-right: 15px;
  }
  .woocommerce table.shop_table tbody,
  .woocommerce table.cart tbody,
  .woocommerce #content table.cart tbody,
  .woocommerce table.review tbody,
  .woocommerce table.order_details tbody,
  .woocommerce table.my_account_orders tbody,
  .woocommerce-page table.shop_table tbody,
  .woocommerce-page table.cart tbody,
  .woocommerce-page #content table.cart tbody,
  .woocommerce-page table.review tbody,
  .woocommerce-page table.order_details tbody,
  .woocommerce-page table.my_account_orders tbody {
    display: table-row-group;
  }
  .woocommerce table.shop_table tfoot td,
  .woocommerce table.cart tfoot td,
  .woocommerce #content table.cart tfoot td,
  .woocommerce table.review tfoot td,
  .woocommerce table.order_details tfoot td,
  .woocommerce table.my_account_orders tfoot td,
  .woocommerce-page table.shop_table tfoot td,
  .woocommerce-page table.cart tfoot td,
  .woocommerce-page #content table.cart tfoot td,
  .woocommerce-page table.review tfoot td,
  .woocommerce-page table.order_details tfoot td,
  .woocommerce-page table.my_account_orders tfoot td {
    text-align: right;
  }
  .woocommerce table.shop_table tbody tr,
  .woocommerce table.shop_table tfoot tr,
  .woocommerce table.cart tbody tr,
  .woocommerce table.cart tfoot tr,
  .woocommerce #content table.cart tbody tr,
  .woocommerce #content table.cart tfoot tr,
  .woocommerce table.review tbody tr,
  .woocommerce table.review tfoot tr,
  .woocommerce table.order_details tbody tr,
  .woocommerce table.order_details tfoot tr,
  .woocommerce table.my_account_orders tbody tr,
  .woocommerce table.my_account_orders tfoot tr,
  .woocommerce-page table.shop_table tbody tr,
  .woocommerce-page table.shop_table tfoot tr,
  .woocommerce-page table.cart tbody tr,
  .woocommerce-page table.cart tfoot tr,
  .woocommerce-page #content table.cart tbody tr,
  .woocommerce-page #content table.cart tfoot tr,
  .woocommerce-page table.review tbody tr,
  .woocommerce-page table.review tfoot tr,
  .woocommerce-page table.order_details tbody tr,
  .woocommerce-page table.order_details tfoot tr,
  .woocommerce-page table.my_account_orders tbody tr,
  .woocommerce-page table.my_account_orders tfoot tr {
    display: table-row;
    margin-bottom: 0;
  }
  .woocommerce table.shop_table tbody td,
  .woocommerce table.shop_table tbody th,
  .woocommerce table.shop_table tfoot td,
  .woocommerce table.shop_table tfoot th,
  .woocommerce table.cart tbody td,
  .woocommerce table.cart tbody th,
  .woocommerce table.cart tfoot td,
  .woocommerce table.cart tfoot th,
  .woocommerce #content table.cart tbody td,
  .woocommerce #content table.cart tbody th,
  .woocommerce #content table.cart tfoot td,
  .woocommerce #content table.cart tfoot th,
  .woocommerce table.review tbody td,
  .woocommerce table.review tbody th,
  .woocommerce table.review tfoot td,
  .woocommerce table.review tfoot th,
  .woocommerce table.order_details tbody td,
  .woocommerce table.order_details tbody th,
  .woocommerce table.order_details tfoot td,
  .woocommerce table.order_details tfoot th,
  .woocommerce table.my_account_orders tbody td,
  .woocommerce table.my_account_orders tbody th,
  .woocommerce table.my_account_orders tfoot td,
  .woocommerce table.my_account_orders tfoot th,
  .woocommerce-page table.shop_table tbody td,
  .woocommerce-page table.shop_table tbody th,
  .woocommerce-page table.shop_table tfoot td,
  .woocommerce-page table.shop_table tfoot th,
  .woocommerce-page table.cart tbody td,
  .woocommerce-page table.cart tbody th,
  .woocommerce-page table.cart tfoot td,
  .woocommerce-page table.cart tfoot th,
  .woocommerce-page #content table.cart tbody td,
  .woocommerce-page #content table.cart tbody th,
  .woocommerce-page #content table.cart tfoot td,
  .woocommerce-page #content table.cart tfoot th,
  .woocommerce-page table.review tbody td,
  .woocommerce-page table.review tbody th,
  .woocommerce-page table.review tfoot td,
  .woocommerce-page table.review tfoot th,
  .woocommerce-page table.order_details tbody td,
  .woocommerce-page table.order_details tbody th,
  .woocommerce-page table.order_details tfoot td,
  .woocommerce-page table.order_details tfoot th,
  .woocommerce-page table.my_account_orders tbody td,
  .woocommerce-page table.my_account_orders tbody th,
  .woocommerce-page table.my_account_orders tfoot td,
  .woocommerce-page table.my_account_orders tfoot th {
    position: relative;
    padding: 15px !important;
    display: table-cell;
    border: 0 !important;
    background: #F6F9FA !important;
  }
  .woocommerce table.shop_table tbody td:last-child,
  .woocommerce table.shop_table tbody th:last-child,
  .woocommerce table.shop_table tfoot td:last-child,
  .woocommerce table.shop_table tfoot th:last-child,
  .woocommerce table.cart tbody td:last-child,
  .woocommerce table.cart tbody th:last-child,
  .woocommerce table.cart tfoot td:last-child,
  .woocommerce table.cart tfoot th:last-child,
  .woocommerce #content table.cart tbody td:last-child,
  .woocommerce #content table.cart tbody th:last-child,
  .woocommerce #content table.cart tfoot td:last-child,
  .woocommerce #content table.cart tfoot th:last-child,
  .woocommerce table.review tbody td:last-child,
  .woocommerce table.review tbody th:last-child,
  .woocommerce table.review tfoot td:last-child,
  .woocommerce table.review tfoot th:last-child,
  .woocommerce table.order_details tbody td:last-child,
  .woocommerce table.order_details tbody th:last-child,
  .woocommerce table.order_details tfoot td:last-child,
  .woocommerce table.order_details tfoot th:last-child,
  .woocommerce table.my_account_orders tbody td:last-child,
  .woocommerce table.my_account_orders tbody th:last-child,
  .woocommerce table.my_account_orders tfoot td:last-child,
  .woocommerce table.my_account_orders tfoot th:last-child,
  .woocommerce-page table.shop_table tbody td:last-child,
  .woocommerce-page table.shop_table tbody th:last-child,
  .woocommerce-page table.shop_table tfoot td:last-child,
  .woocommerce-page table.shop_table tfoot th:last-child,
  .woocommerce-page table.cart tbody td:last-child,
  .woocommerce-page table.cart tbody th:last-child,
  .woocommerce-page table.cart tfoot td:last-child,
  .woocommerce-page table.cart tfoot th:last-child,
  .woocommerce-page #content table.cart tbody td:last-child,
  .woocommerce-page #content table.cart tbody th:last-child,
  .woocommerce-page #content table.cart tfoot td:last-child,
  .woocommerce-page #content table.cart tfoot th:last-child,
  .woocommerce-page table.review tbody td:last-child,
  .woocommerce-page table.review tbody th:last-child,
  .woocommerce-page table.review tfoot td:last-child,
  .woocommerce-page table.review tfoot th:last-child,
  .woocommerce-page table.order_details tbody td:last-child,
  .woocommerce-page table.order_details tbody th:last-child,
  .woocommerce-page table.order_details tfoot td:last-child,
  .woocommerce-page table.order_details tfoot th:last-child,
  .woocommerce-page table.my_account_orders tbody td:last-child,
  .woocommerce-page table.my_account_orders tbody th:last-child,
  .woocommerce-page table.my_account_orders tfoot td:last-child,
  .woocommerce-page table.my_account_orders tfoot th:last-child {
    border: 0 !important;
  }
  .woocommerce table.shop_table tbody td:before,
  .woocommerce table.shop_table tbody th:before,
  .woocommerce table.shop_table tfoot td:before,
  .woocommerce table.shop_table tfoot th:before,
  .woocommerce table.cart tbody td:before,
  .woocommerce table.cart tbody th:before,
  .woocommerce table.cart tfoot td:before,
  .woocommerce table.cart tfoot th:before,
  .woocommerce #content table.cart tbody td:before,
  .woocommerce #content table.cart tbody th:before,
  .woocommerce #content table.cart tfoot td:before,
  .woocommerce #content table.cart tfoot th:before,
  .woocommerce table.review tbody td:before,
  .woocommerce table.review tbody th:before,
  .woocommerce table.review tfoot td:before,
  .woocommerce table.review tfoot th:before,
  .woocommerce table.order_details tbody td:before,
  .woocommerce table.order_details tbody th:before,
  .woocommerce table.order_details tfoot td:before,
  .woocommerce table.order_details tfoot th:before,
  .woocommerce table.my_account_orders tbody td:before,
  .woocommerce table.my_account_orders tbody th:before,
  .woocommerce table.my_account_orders tfoot td:before,
  .woocommerce table.my_account_orders tfoot th:before,
  .woocommerce-page table.shop_table tbody td:before,
  .woocommerce-page table.shop_table tbody th:before,
  .woocommerce-page table.shop_table tfoot td:before,
  .woocommerce-page table.shop_table tfoot th:before,
  .woocommerce-page table.cart tbody td:before,
  .woocommerce-page table.cart tbody th:before,
  .woocommerce-page table.cart tfoot td:before,
  .woocommerce-page table.cart tfoot th:before,
  .woocommerce-page #content table.cart tbody td:before,
  .woocommerce-page #content table.cart tbody th:before,
  .woocommerce-page #content table.cart tfoot td:before,
  .woocommerce-page #content table.cart tfoot th:before,
  .woocommerce-page table.review tbody td:before,
  .woocommerce-page table.review tbody th:before,
  .woocommerce-page table.review tfoot td:before,
  .woocommerce-page table.review tfoot th:before,
  .woocommerce-page table.order_details tbody td:before,
  .woocommerce-page table.order_details tbody th:before,
  .woocommerce-page table.order_details tfoot td:before,
  .woocommerce-page table.order_details tfoot th:before,
  .woocommerce-page table.my_account_orders tbody td:before,
  .woocommerce-page table.my_account_orders tbody th:before,
  .woocommerce-page table.my_account_orders tfoot td:before,
  .woocommerce-page table.my_account_orders tfoot th:before {
    display: none !important;
  }
  .woocommerce table.shop_table tbody td.product-remove,
  .woocommerce table.shop_table tbody th.product-remove,
  .woocommerce table.shop_table tfoot td.product-remove,
  .woocommerce table.shop_table tfoot th.product-remove,
  .woocommerce table.cart tbody td.product-remove,
  .woocommerce table.cart tbody th.product-remove,
  .woocommerce table.cart tfoot td.product-remove,
  .woocommerce table.cart tfoot th.product-remove,
  .woocommerce #content table.cart tbody td.product-remove,
  .woocommerce #content table.cart tbody th.product-remove,
  .woocommerce #content table.cart tfoot td.product-remove,
  .woocommerce #content table.cart tfoot th.product-remove,
  .woocommerce table.review tbody td.product-remove,
  .woocommerce table.review tbody th.product-remove,
  .woocommerce table.review tfoot td.product-remove,
  .woocommerce table.review tfoot th.product-remove,
  .woocommerce table.order_details tbody td.product-remove,
  .woocommerce table.order_details tbody th.product-remove,
  .woocommerce table.order_details tfoot td.product-remove,
  .woocommerce table.order_details tfoot th.product-remove,
  .woocommerce table.my_account_orders tbody td.product-remove,
  .woocommerce table.my_account_orders tbody th.product-remove,
  .woocommerce table.my_account_orders tfoot td.product-remove,
  .woocommerce table.my_account_orders tfoot th.product-remove,
  .woocommerce-page table.shop_table tbody td.product-remove,
  .woocommerce-page table.shop_table tbody th.product-remove,
  .woocommerce-page table.shop_table tfoot td.product-remove,
  .woocommerce-page table.shop_table tfoot th.product-remove,
  .woocommerce-page table.cart tbody td.product-remove,
  .woocommerce-page table.cart tbody th.product-remove,
  .woocommerce-page table.cart tfoot td.product-remove,
  .woocommerce-page table.cart tfoot th.product-remove,
  .woocommerce-page #content table.cart tbody td.product-remove,
  .woocommerce-page #content table.cart tbody th.product-remove,
  .woocommerce-page #content table.cart tfoot td.product-remove,
  .woocommerce-page #content table.cart tfoot th.product-remove,
  .woocommerce-page table.review tbody td.product-remove,
  .woocommerce-page table.review tbody th.product-remove,
  .woocommerce-page table.review tfoot td.product-remove,
  .woocommerce-page table.review tfoot th.product-remove,
  .woocommerce-page table.order_details tbody td.product-remove,
  .woocommerce-page table.order_details tbody th.product-remove,
  .woocommerce-page table.order_details tfoot td.product-remove,
  .woocommerce-page table.order_details tfoot th.product-remove,
  .woocommerce-page table.my_account_orders tbody td.product-remove,
  .woocommerce-page table.my_account_orders tbody th.product-remove,
  .woocommerce-page table.my_account_orders tfoot td.product-remove,
  .woocommerce-page table.my_account_orders tfoot th.product-remove {
    padding-left: 15px;
  }
  .woocommerce table.shop_table tbody td.product-remove a,
  .woocommerce table.shop_table tbody th.product-remove a,
  .woocommerce table.shop_table tfoot td.product-remove a,
  .woocommerce table.shop_table tfoot th.product-remove a,
  .woocommerce table.cart tbody td.product-remove a,
  .woocommerce table.cart tbody th.product-remove a,
  .woocommerce table.cart tfoot td.product-remove a,
  .woocommerce table.cart tfoot th.product-remove a,
  .woocommerce #content table.cart tbody td.product-remove a,
  .woocommerce #content table.cart tbody th.product-remove a,
  .woocommerce #content table.cart tfoot td.product-remove a,
  .woocommerce #content table.cart tfoot th.product-remove a,
  .woocommerce table.review tbody td.product-remove a,
  .woocommerce table.review tbody th.product-remove a,
  .woocommerce table.review tfoot td.product-remove a,
  .woocommerce table.review tfoot th.product-remove a,
  .woocommerce table.order_details tbody td.product-remove a,
  .woocommerce table.order_details tbody th.product-remove a,
  .woocommerce table.order_details tfoot td.product-remove a,
  .woocommerce table.order_details tfoot th.product-remove a,
  .woocommerce table.my_account_orders tbody td.product-remove a,
  .woocommerce table.my_account_orders tbody th.product-remove a,
  .woocommerce table.my_account_orders tfoot td.product-remove a,
  .woocommerce table.my_account_orders tfoot th.product-remove a,
  .woocommerce-page table.shop_table tbody td.product-remove a,
  .woocommerce-page table.shop_table tbody th.product-remove a,
  .woocommerce-page table.shop_table tfoot td.product-remove a,
  .woocommerce-page table.shop_table tfoot th.product-remove a,
  .woocommerce-page table.cart tbody td.product-remove a,
  .woocommerce-page table.cart tbody th.product-remove a,
  .woocommerce-page table.cart tfoot td.product-remove a,
  .woocommerce-page table.cart tfoot th.product-remove a,
  .woocommerce-page #content table.cart tbody td.product-remove a,
  .woocommerce-page #content table.cart tbody th.product-remove a,
  .woocommerce-page #content table.cart tfoot td.product-remove a,
  .woocommerce-page #content table.cart tfoot th.product-remove a,
  .woocommerce-page table.review tbody td.product-remove a,
  .woocommerce-page table.review tbody th.product-remove a,
  .woocommerce-page table.review tfoot td.product-remove a,
  .woocommerce-page table.review tfoot th.product-remove a,
  .woocommerce-page table.order_details tbody td.product-remove a,
  .woocommerce-page table.order_details tbody th.product-remove a,
  .woocommerce-page table.order_details tfoot td.product-remove a,
  .woocommerce-page table.order_details tfoot th.product-remove a,
  .woocommerce-page table.my_account_orders tbody td.product-remove a,
  .woocommerce-page table.my_account_orders tbody th.product-remove a,
  .woocommerce-page table.my_account_orders tfoot td.product-remove a,
  .woocommerce-page table.my_account_orders tfoot th.product-remove a {
    margin: 0 auto !important;
    display: block;
    text-align: center;
  }
  .woocommerce table.shop_table tbody td.product-name,
  .woocommerce table.shop_table tbody th.product-name,
  .woocommerce table.shop_table tfoot td.product-name,
  .woocommerce table.shop_table tfoot th.product-name,
  .woocommerce table.cart tbody td.product-name,
  .woocommerce table.cart tbody th.product-name,
  .woocommerce table.cart tfoot td.product-name,
  .woocommerce table.cart tfoot th.product-name,
  .woocommerce #content table.cart tbody td.product-name,
  .woocommerce #content table.cart tbody th.product-name,
  .woocommerce #content table.cart tfoot td.product-name,
  .woocommerce #content table.cart tfoot th.product-name,
  .woocommerce table.review tbody td.product-name,
  .woocommerce table.review tbody th.product-name,
  .woocommerce table.review tfoot td.product-name,
  .woocommerce table.review tfoot th.product-name,
  .woocommerce table.order_details tbody td.product-name,
  .woocommerce table.order_details tbody th.product-name,
  .woocommerce table.order_details tfoot td.product-name,
  .woocommerce table.order_details tfoot th.product-name,
  .woocommerce table.my_account_orders tbody td.product-name,
  .woocommerce table.my_account_orders tbody th.product-name,
  .woocommerce table.my_account_orders tfoot td.product-name,
  .woocommerce table.my_account_orders tfoot th.product-name,
  .woocommerce-page table.shop_table tbody td.product-name,
  .woocommerce-page table.shop_table tbody th.product-name,
  .woocommerce-page table.shop_table tfoot td.product-name,
  .woocommerce-page table.shop_table tfoot th.product-name,
  .woocommerce-page table.cart tbody td.product-name,
  .woocommerce-page table.cart tbody th.product-name,
  .woocommerce-page table.cart tfoot td.product-name,
  .woocommerce-page table.cart tfoot th.product-name,
  .woocommerce-page #content table.cart tbody td.product-name,
  .woocommerce-page #content table.cart tbody th.product-name,
  .woocommerce-page #content table.cart tfoot td.product-name,
  .woocommerce-page #content table.cart tfoot th.product-name,
  .woocommerce-page table.review tbody td.product-name,
  .woocommerce-page table.review tbody th.product-name,
  .woocommerce-page table.review tfoot td.product-name,
  .woocommerce-page table.review tfoot th.product-name,
  .woocommerce-page table.order_details tbody td.product-name,
  .woocommerce-page table.order_details tbody th.product-name,
  .woocommerce-page table.order_details tfoot td.product-name,
  .woocommerce-page table.order_details tfoot th.product-name,
  .woocommerce-page table.my_account_orders tbody td.product-name,
  .woocommerce-page table.my_account_orders tbody th.product-name,
  .woocommerce-page table.my_account_orders tfoot td.product-name,
  .woocommerce-page table.my_account_orders tfoot th.product-name {
    padding-left: 15px !important;
  }
  .woocommerce table.shop_table tbody td.product-name a,
  .woocommerce table.shop_table tbody th.product-name a,
  .woocommerce table.shop_table tfoot td.product-name a,
  .woocommerce table.shop_table tfoot th.product-name a,
  .woocommerce table.cart tbody td.product-name a,
  .woocommerce table.cart tbody th.product-name a,
  .woocommerce table.cart tfoot td.product-name a,
  .woocommerce table.cart tfoot th.product-name a,
  .woocommerce #content table.cart tbody td.product-name a,
  .woocommerce #content table.cart tbody th.product-name a,
  .woocommerce #content table.cart tfoot td.product-name a,
  .woocommerce #content table.cart tfoot th.product-name a,
  .woocommerce table.review tbody td.product-name a,
  .woocommerce table.review tbody th.product-name a,
  .woocommerce table.review tfoot td.product-name a,
  .woocommerce table.review tfoot th.product-name a,
  .woocommerce table.order_details tbody td.product-name a,
  .woocommerce table.order_details tbody th.product-name a,
  .woocommerce table.order_details tfoot td.product-name a,
  .woocommerce table.order_details tfoot th.product-name a,
  .woocommerce table.my_account_orders tbody td.product-name a,
  .woocommerce table.my_account_orders tbody th.product-name a,
  .woocommerce table.my_account_orders tfoot td.product-name a,
  .woocommerce table.my_account_orders tfoot th.product-name a,
  .woocommerce-page table.shop_table tbody td.product-name a,
  .woocommerce-page table.shop_table tbody th.product-name a,
  .woocommerce-page table.shop_table tfoot td.product-name a,
  .woocommerce-page table.shop_table tfoot th.product-name a,
  .woocommerce-page table.cart tbody td.product-name a,
  .woocommerce-page table.cart tbody th.product-name a,
  .woocommerce-page table.cart tfoot td.product-name a,
  .woocommerce-page table.cart tfoot th.product-name a,
  .woocommerce-page #content table.cart tbody td.product-name a,
  .woocommerce-page #content table.cart tbody th.product-name a,
  .woocommerce-page #content table.cart tfoot td.product-name a,
  .woocommerce-page #content table.cart tfoot th.product-name a,
  .woocommerce-page table.review tbody td.product-name a,
  .woocommerce-page table.review tbody th.product-name a,
  .woocommerce-page table.review tfoot td.product-name a,
  .woocommerce-page table.review tfoot th.product-name a,
  .woocommerce-page table.order_details tbody td.product-name a,
  .woocommerce-page table.order_details tbody th.product-name a,
  .woocommerce-page table.order_details tfoot td.product-name a,
  .woocommerce-page table.order_details tfoot th.product-name a,
  .woocommerce-page table.my_account_orders tbody td.product-name a,
  .woocommerce-page table.my_account_orders tbody th.product-name a,
  .woocommerce-page table.my_account_orders tfoot td.product-name a,
  .woocommerce-page table.my_account_orders tfoot th.product-name a {
    white-space: normal;
  }
  .woocommerce table.shop_table tbody td.product-price,
  .woocommerce table.shop_table tbody th.product-price,
  .woocommerce table.shop_table tfoot td.product-price,
  .woocommerce table.shop_table tfoot th.product-price,
  .woocommerce table.cart tbody td.product-price,
  .woocommerce table.cart tbody th.product-price,
  .woocommerce table.cart tfoot td.product-price,
  .woocommerce table.cart tfoot th.product-price,
  .woocommerce #content table.cart tbody td.product-price,
  .woocommerce #content table.cart tbody th.product-price,
  .woocommerce #content table.cart tfoot td.product-price,
  .woocommerce #content table.cart tfoot th.product-price,
  .woocommerce table.review tbody td.product-price,
  .woocommerce table.review tbody th.product-price,
  .woocommerce table.review tfoot td.product-price,
  .woocommerce table.review tfoot th.product-price,
  .woocommerce table.order_details tbody td.product-price,
  .woocommerce table.order_details tbody th.product-price,
  .woocommerce table.order_details tfoot td.product-price,
  .woocommerce table.order_details tfoot th.product-price,
  .woocommerce table.my_account_orders tbody td.product-price,
  .woocommerce table.my_account_orders tbody th.product-price,
  .woocommerce table.my_account_orders tfoot td.product-price,
  .woocommerce table.my_account_orders tfoot th.product-price,
  .woocommerce-page table.shop_table tbody td.product-price,
  .woocommerce-page table.shop_table tbody th.product-price,
  .woocommerce-page table.shop_table tfoot td.product-price,
  .woocommerce-page table.shop_table tfoot th.product-price,
  .woocommerce-page table.cart tbody td.product-price,
  .woocommerce-page table.cart tbody th.product-price,
  .woocommerce-page table.cart tfoot td.product-price,
  .woocommerce-page table.cart tfoot th.product-price,
  .woocommerce-page #content table.cart tbody td.product-price,
  .woocommerce-page #content table.cart tbody th.product-price,
  .woocommerce-page #content table.cart tfoot td.product-price,
  .woocommerce-page #content table.cart tfoot th.product-price,
  .woocommerce-page table.review tbody td.product-price,
  .woocommerce-page table.review tbody th.product-price,
  .woocommerce-page table.review tfoot td.product-price,
  .woocommerce-page table.review tfoot th.product-price,
  .woocommerce-page table.order_details tbody td.product-price,
  .woocommerce-page table.order_details tbody th.product-price,
  .woocommerce-page table.order_details tfoot td.product-price,
  .woocommerce-page table.order_details tfoot th.product-price,
  .woocommerce-page table.my_account_orders tbody td.product-price,
  .woocommerce-page table.my_account_orders tbody th.product-price,
  .woocommerce-page table.my_account_orders tfoot td.product-price,
  .woocommerce-page table.my_account_orders tfoot th.product-price {
    text-align: center !important;
  }
  .woocommerce table.shop_table tbody td.product-subtotal, .woocommerce table.shop_table tbody td.product-total,
  .woocommerce table.shop_table tbody th.product-subtotal,
  .woocommerce table.shop_table tbody th.product-total,
  .woocommerce table.shop_table tfoot td.product-subtotal,
  .woocommerce table.shop_table tfoot td.product-total,
  .woocommerce table.shop_table tfoot th.product-subtotal,
  .woocommerce table.shop_table tfoot th.product-total,
  .woocommerce table.cart tbody td.product-subtotal,
  .woocommerce table.cart tbody td.product-total,
  .woocommerce table.cart tbody th.product-subtotal,
  .woocommerce table.cart tbody th.product-total,
  .woocommerce table.cart tfoot td.product-subtotal,
  .woocommerce table.cart tfoot td.product-total,
  .woocommerce table.cart tfoot th.product-subtotal,
  .woocommerce table.cart tfoot th.product-total,
  .woocommerce #content table.cart tbody td.product-subtotal,
  .woocommerce #content table.cart tbody td.product-total,
  .woocommerce #content table.cart tbody th.product-subtotal,
  .woocommerce #content table.cart tbody th.product-total,
  .woocommerce #content table.cart tfoot td.product-subtotal,
  .woocommerce #content table.cart tfoot td.product-total,
  .woocommerce #content table.cart tfoot th.product-subtotal,
  .woocommerce #content table.cart tfoot th.product-total,
  .woocommerce table.review tbody td.product-subtotal,
  .woocommerce table.review tbody td.product-total,
  .woocommerce table.review tbody th.product-subtotal,
  .woocommerce table.review tbody th.product-total,
  .woocommerce table.review tfoot td.product-subtotal,
  .woocommerce table.review tfoot td.product-total,
  .woocommerce table.review tfoot th.product-subtotal,
  .woocommerce table.review tfoot th.product-total,
  .woocommerce table.order_details tbody td.product-subtotal,
  .woocommerce table.order_details tbody td.product-total,
  .woocommerce table.order_details tbody th.product-subtotal,
  .woocommerce table.order_details tbody th.product-total,
  .woocommerce table.order_details tfoot td.product-subtotal,
  .woocommerce table.order_details tfoot td.product-total,
  .woocommerce table.order_details tfoot th.product-subtotal,
  .woocommerce table.order_details tfoot th.product-total,
  .woocommerce table.my_account_orders tbody td.product-subtotal,
  .woocommerce table.my_account_orders tbody td.product-total,
  .woocommerce table.my_account_orders tbody th.product-subtotal,
  .woocommerce table.my_account_orders tbody th.product-total,
  .woocommerce table.my_account_orders tfoot td.product-subtotal,
  .woocommerce table.my_account_orders tfoot td.product-total,
  .woocommerce table.my_account_orders tfoot th.product-subtotal,
  .woocommerce table.my_account_orders tfoot th.product-total,
  .woocommerce-page table.shop_table tbody td.product-subtotal,
  .woocommerce-page table.shop_table tbody td.product-total,
  .woocommerce-page table.shop_table tbody th.product-subtotal,
  .woocommerce-page table.shop_table tbody th.product-total,
  .woocommerce-page table.shop_table tfoot td.product-subtotal,
  .woocommerce-page table.shop_table tfoot td.product-total,
  .woocommerce-page table.shop_table tfoot th.product-subtotal,
  .woocommerce-page table.shop_table tfoot th.product-total,
  .woocommerce-page table.cart tbody td.product-subtotal,
  .woocommerce-page table.cart tbody td.product-total,
  .woocommerce-page table.cart tbody th.product-subtotal,
  .woocommerce-page table.cart tbody th.product-total,
  .woocommerce-page table.cart tfoot td.product-subtotal,
  .woocommerce-page table.cart tfoot td.product-total,
  .woocommerce-page table.cart tfoot th.product-subtotal,
  .woocommerce-page table.cart tfoot th.product-total,
  .woocommerce-page #content table.cart tbody td.product-subtotal,
  .woocommerce-page #content table.cart tbody td.product-total,
  .woocommerce-page #content table.cart tbody th.product-subtotal,
  .woocommerce-page #content table.cart tbody th.product-total,
  .woocommerce-page #content table.cart tfoot td.product-subtotal,
  .woocommerce-page #content table.cart tfoot td.product-total,
  .woocommerce-page #content table.cart tfoot th.product-subtotal,
  .woocommerce-page #content table.cart tfoot th.product-total,
  .woocommerce-page table.review tbody td.product-subtotal,
  .woocommerce-page table.review tbody td.product-total,
  .woocommerce-page table.review tbody th.product-subtotal,
  .woocommerce-page table.review tbody th.product-total,
  .woocommerce-page table.review tfoot td.product-subtotal,
  .woocommerce-page table.review tfoot td.product-total,
  .woocommerce-page table.review tfoot th.product-subtotal,
  .woocommerce-page table.review tfoot th.product-total,
  .woocommerce-page table.order_details tbody td.product-subtotal,
  .woocommerce-page table.order_details tbody td.product-total,
  .woocommerce-page table.order_details tbody th.product-subtotal,
  .woocommerce-page table.order_details tbody th.product-total,
  .woocommerce-page table.order_details tfoot td.product-subtotal,
  .woocommerce-page table.order_details tfoot td.product-total,
  .woocommerce-page table.order_details tfoot th.product-subtotal,
  .woocommerce-page table.order_details tfoot th.product-total,
  .woocommerce-page table.my_account_orders tbody td.product-subtotal,
  .woocommerce-page table.my_account_orders tbody td.product-total,
  .woocommerce-page table.my_account_orders tbody th.product-subtotal,
  .woocommerce-page table.my_account_orders tbody th.product-total,
  .woocommerce-page table.my_account_orders tfoot td.product-subtotal,
  .woocommerce-page table.my_account_orders tfoot td.product-total,
  .woocommerce-page table.my_account_orders tfoot th.product-subtotal,
  .woocommerce-page table.my_account_orders tfoot th.product-total {
    padding-right: 15px;
  }
  .woocommerce table.shop_table tbody td.product-quantity .quantity,
  .woocommerce table.shop_table tbody th.product-quantity .quantity,
  .woocommerce table.shop_table tfoot td.product-quantity .quantity,
  .woocommerce table.shop_table tfoot th.product-quantity .quantity,
  .woocommerce table.cart tbody td.product-quantity .quantity,
  .woocommerce table.cart tbody th.product-quantity .quantity,
  .woocommerce table.cart tfoot td.product-quantity .quantity,
  .woocommerce table.cart tfoot th.product-quantity .quantity,
  .woocommerce #content table.cart tbody td.product-quantity .quantity,
  .woocommerce #content table.cart tbody th.product-quantity .quantity,
  .woocommerce #content table.cart tfoot td.product-quantity .quantity,
  .woocommerce #content table.cart tfoot th.product-quantity .quantity,
  .woocommerce table.review tbody td.product-quantity .quantity,
  .woocommerce table.review tbody th.product-quantity .quantity,
  .woocommerce table.review tfoot td.product-quantity .quantity,
  .woocommerce table.review tfoot th.product-quantity .quantity,
  .woocommerce table.order_details tbody td.product-quantity .quantity,
  .woocommerce table.order_details tbody th.product-quantity .quantity,
  .woocommerce table.order_details tfoot td.product-quantity .quantity,
  .woocommerce table.order_details tfoot th.product-quantity .quantity,
  .woocommerce table.my_account_orders tbody td.product-quantity .quantity,
  .woocommerce table.my_account_orders tbody th.product-quantity .quantity,
  .woocommerce table.my_account_orders tfoot td.product-quantity .quantity,
  .woocommerce table.my_account_orders tfoot th.product-quantity .quantity,
  .woocommerce-page table.shop_table tbody td.product-quantity .quantity,
  .woocommerce-page table.shop_table tbody th.product-quantity .quantity,
  .woocommerce-page table.shop_table tfoot td.product-quantity .quantity,
  .woocommerce-page table.shop_table tfoot th.product-quantity .quantity,
  .woocommerce-page table.cart tbody td.product-quantity .quantity,
  .woocommerce-page table.cart tbody th.product-quantity .quantity,
  .woocommerce-page table.cart tfoot td.product-quantity .quantity,
  .woocommerce-page table.cart tfoot th.product-quantity .quantity,
  .woocommerce-page #content table.cart tbody td.product-quantity .quantity,
  .woocommerce-page #content table.cart tbody th.product-quantity .quantity,
  .woocommerce-page #content table.cart tfoot td.product-quantity .quantity,
  .woocommerce-page #content table.cart tfoot th.product-quantity .quantity,
  .woocommerce-page table.review tbody td.product-quantity .quantity,
  .woocommerce-page table.review tbody th.product-quantity .quantity,
  .woocommerce-page table.review tfoot td.product-quantity .quantity,
  .woocommerce-page table.review tfoot th.product-quantity .quantity,
  .woocommerce-page table.order_details tbody td.product-quantity .quantity,
  .woocommerce-page table.order_details tbody th.product-quantity .quantity,
  .woocommerce-page table.order_details tfoot td.product-quantity .quantity,
  .woocommerce-page table.order_details tfoot th.product-quantity .quantity,
  .woocommerce-page table.my_account_orders tbody td.product-quantity .quantity,
  .woocommerce-page table.my_account_orders tbody th.product-quantity .quantity,
  .woocommerce-page table.my_account_orders tfoot td.product-quantity .quantity,
  .woocommerce-page table.my_account_orders tfoot th.product-quantity .quantity {
    width: 50px;
    margin: 0 auto !important;
  }
  .woocommerce table.shop_table td.actions,
  .woocommerce table.cart td.actions,
  .woocommerce #content table.cart td.actions,
  .woocommerce table.review td.actions,
  .woocommerce table.order_details td.actions,
  .woocommerce table.my_account_orders td.actions,
  .woocommerce-page table.shop_table td.actions,
  .woocommerce-page table.cart td.actions,
  .woocommerce-page #content table.cart td.actions,
  .woocommerce-page table.review td.actions,
  .woocommerce-page table.order_details td.actions,
  .woocommerce-page table.my_account_orders td.actions {
    background: #F6F9FA !important;
  }
  .woocommerce .review-totals table,
  .woocommerce .order-totals table,
  .woocommerce .cart-collaterals table,
  .woocommerce-page .review-totals table,
  .woocommerce-page .order-totals table,
  .woocommerce-page .cart-collaterals table {
    margin: 0 !important;
  }
  .woocommerce .review-totals table th,
  .woocommerce .order-totals table th,
  .woocommerce .cart-collaterals table th,
  .woocommerce-page .review-totals table th,
  .woocommerce-page .order-totals table th,
  .woocommerce-page .cart-collaterals table th {
    width: 65%;
  }
  .woocommerce .review-totals table td,
  .woocommerce .order-totals table td,
  .woocommerce .cart-collaterals table td,
  .woocommerce-page .review-totals table td,
  .woocommerce-page .order-totals table td,
  .woocommerce-page .cart-collaterals table td {
    text-align: right;
    padding-right: 15px !important;
  }
  .woocommerce .cart-collaterals .cart-subtotal,
  .woocommerce .cart-collaterals .cart-shipping,
  .woocommerce .cart-collaterals .shipping,
  .woocommerce .cart-collaterals .tax-rate,
  .woocommerce .cart-collaterals .order-total,
  .woocommerce-page .cart-collaterals .cart-subtotal,
  .woocommerce-page .cart-collaterals .cart-shipping,
  .woocommerce-page .cart-collaterals .shipping,
  .woocommerce-page .cart-collaterals .tax-rate,
  .woocommerce-page .cart-collaterals .order-total {
    text-align: right;
  }
  .woocommerce .cart-collaterals .cart-shipping,
  .woocommerce-page .cart-collaterals .cart-shipping {
    float: right;
    text-align: right;
  }
  .woocommerce .cart-collaterals .cart-shipping .chosen-container.chosen-container-single,
  .woocommerce .cart-collaterals .cart-shipping select,
  .woocommerce-page .cart-collaterals .cart-shipping .chosen-container.chosen-container-single,
  .woocommerce-page .cart-collaterals .cart-shipping select {
    text-align: left !important;
    display: block;
  }
  .woocommerce .cart-collaterals .order-total,
  .woocommerce .cart-collaterals .shipping,
  .woocommerce .cart-collaterals .tax-rate,
  .woocommerce .cart-collaterals .cart-subtotal,
  .woocommerce-page .cart-collaterals .order-total,
  .woocommerce-page .cart-collaterals .shipping,
  .woocommerce-page .cart-collaterals .tax-rate,
  .woocommerce-page .cart-collaterals .cart-subtotal {
    clear: both;
  }
  .woocommerce .place-order,
  .woocommerce-page .place-order {
    zoom: 1;
  }
  .woocommerce .place-order:after, .woocommerce .place-order:before,
  .woocommerce-page .place-order:after,
  .woocommerce-page .place-order:before {
    content: " ";
    display: table;
  }
  .woocommerce .place-order:after,
  .woocommerce-page .place-order:after {
    clear: both;
  }
  .woocommerce .place-order .terms,
  .woocommerce-page .place-order .terms {
    float: left;
    margin: 0;
  }
  .woocommerce .place-order .terms label.checkbox,
  .woocommerce-page .place-order .terms label.checkbox {
    width: auto;
    line-height: 2;
  }
  .woocommerce .place-order .terms label.checkbox a,
  .woocommerce-page .place-order .terms label.checkbox a {
    display: inline;
  }
  .woocommerce form.checkout_coupon .form-row-last,
  .woocommerce-page form.checkout_coupon .form-row-last {
    width: auto;
    float: none;
    clear: both;
  }
  .woocommerce #reviews h2,
  .woocommerce-page #reviews h2 {
    font-size: 2.25em;
  }
  .woocommerce #reviews h3,
  .woocommerce-page #reviews h3 {
    font-size: 1.5em;
  }
  .woocommerce form.login .button,
  .woocommerce-page form.login .button {
    margin-top: 8px !important;
    margin-right: 1em !important;
  }
  .woocommerce .addresses .title .edit,
  .woocommerce-page .addresses .title .edit {
    margin-top: 8px;
  }
  .woocommerce ul.order_details li,
  .woocommerce-page ul.order_details li {
    margin: 0 -1px 0 0;
    float: left;
    width: 25%;
  }
  .woocommerce ul.order_details li strong,
  .woocommerce-page ul.order_details li strong {
    font-size: 1.35em;
  }
  .woocommerce ul.order_details li.method,
  .woocommerce-page ul.order_details li.method {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  /* =Main Styles (namespace to avoid conflict with common global class names)
  -------------------------------------------------------------- */
  .woocommerce,
  .woocommerce-page {
    		/* =Product Loops
            -------------------------------------------------------------- */
    /* =Checkout
    -------------------------------------------------------------- */
  }
  .woocommerce .filter-cols,
  .woocommerce-page .filter-cols {
    width: 50% !important;
  }
  .woocommerce table.review tbody td.product-thumbnail,
  .woocommerce #content table.review tbody td.product-thumbnail,
  .woocommerce-page table.review tbody td.product-thumbnail,
  .woocommerce-page #content table.review tbody td.product-thumbnail {
    width: 120px;
  }
  .woocommerce table.review tbody td.product-thumbnail img,
  .woocommerce #content table.review tbody td.product-thumbnail img,
  .woocommerce-page table.review tbody td.product-thumbnail img,
  .woocommerce-page #content table.review tbody td.product-thumbnail img {
    width: 60%;
    max-width: 120px;
  }
  .woocommerce .review-totals table th,
  .woocommerce-page .review-totals table th {
    width: 80%;
  }
  .woocommerce table.cart tbody td.product-thumbnail,
  .woocommerce #content table.cart tbody td.product-thumbnail,
  .woocommerce-page table.cart tbody td.product-thumbnail,
  .woocommerce-page #content table.cart tbody td.product-thumbnail {
    width: 150px;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Woocommerce Layout Stylesheet

******************************************************************/
.single-product-course {
  border-collapse: collapse;
}
.single-product-course th {
  background: none;
  text-align: left;
  font-size: 1.125em;
}
.single-product-course td {
  border: 1px solid #FFF;
}
.single-product-course tbody tr {
  background: #FFF;
}
.single-product-course tbody tr.odd {
  background-color: #EAF3F8;
}
.single-product-course tbody tr.even {
  background-color: #FFF;
}

.products-courses td.course-name h3,
.single-product-course td.course-name h3 {
  font-size: 1em;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  margin: 0;
}

.single-term_courses.woocommerce div.product .product-course-actions,
.single-term_courses.woocommerce #content div.product .product-course-actions,
.single-term_courses.woocommerce-page div.product .product-course-actions,
.single-term_courses.woocommerce-page #content div.product .product-course-actions {
  margin-bottom: 2em;
}
.single-term_courses.woocommerce div.product .product-course-meta,
.single-term_courses.woocommerce #content div.product .product-course-meta,
.single-term_courses.woocommerce-page div.product .product-course-meta,
.single-term_courses.woocommerce-page #content div.product .product-course-meta {
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 1.2em;
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.single-term_courses.woocommerce div.product .product-course-meta ul,
.single-term_courses.woocommerce #content div.product .product-course-meta ul,
.single-term_courses.woocommerce-page div.product .product-course-meta ul,
.single-term_courses.woocommerce-page #content div.product .product-course-meta ul {
  margin: 0;
  padding: 0;
}
.single-term_courses.woocommerce div.product .product-course-meta .fa,
.single-term_courses.woocommerce #content div.product .product-course-meta .fa,
.single-term_courses.woocommerce-page div.product .product-course-meta .fa,
.single-term_courses.woocommerce-page #content div.product .product-course-meta .fa {
  float: left;
  font-size: 1.25em;
  width: 25px;
  text-align: center;
  color: #2373AB;
  margin-right: 10px;
  margin-top: 2px;
}
.single-term_courses.woocommerce div.product .product-course-meta span,
.single-term_courses.woocommerce #content div.product .product-course-meta span,
.single-term_courses.woocommerce-page div.product .product-course-meta span,
.single-term_courses.woocommerce-page #content div.product .product-course-meta span {
  float: left;
  display: block;
  width: 85%;
}
.single-term_courses.woocommerce div.product .product-course-meta li,
.single-term_courses.woocommerce #content div.product .product-course-meta li,
.single-term_courses.woocommerce-page div.product .product-course-meta li,
.single-term_courses.woocommerce-page #content div.product .product-course-meta li {
  clear: both;
  zoom: 1;
  display: block;
  margin-left: 0;
  margin-bottom: 0.675em;
}
.single-term_courses.woocommerce div.product .product-course-meta li:after, .single-term_courses.woocommerce div.product .product-course-meta li:before,
.single-term_courses.woocommerce #content div.product .product-course-meta li:after,
.single-term_courses.woocommerce #content div.product .product-course-meta li:before,
.single-term_courses.woocommerce-page div.product .product-course-meta li:after,
.single-term_courses.woocommerce-page div.product .product-course-meta li:before,
.single-term_courses.woocommerce-page #content div.product .product-course-meta li:after,
.single-term_courses.woocommerce-page #content div.product .product-course-meta li:before {
  content: " ";
  display: table;
}
.single-term_courses.woocommerce div.product .product-course-meta li:after,
.single-term_courses.woocommerce #content div.product .product-course-meta li:after,
.single-term_courses.woocommerce-page div.product .product-course-meta li:after,
.single-term_courses.woocommerce-page #content div.product .product-course-meta li:after {
  clear: both;
}
.single-term_courses.woocommerce div.product form.cart div.quantity,
.single-term_courses.woocommerce #content div.product form.cart div.quantity,
.single-term_courses.woocommerce-page div.product form.cart div.quantity,
.single-term_courses.woocommerce-page #content div.product form.cart div.quantity {
  line-height: 35px;
}
.single-term_courses.woocommerce div.product form.cart div.quantity strong,
.single-term_courses.woocommerce #content div.product form.cart div.quantity strong,
.single-term_courses.woocommerce-page div.product form.cart div.quantity strong,
.single-term_courses.woocommerce-page #content div.product form.cart div.quantity strong {
  margin-left: 1em;
}
.single-term_courses.woocommerce div.product .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce #content div.product .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce-page div.product .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce-page #content div.product .product-course-actions .single_variation_wrap {
  display: table;
  width: 100%;
}
.single-term_courses.woocommerce div.product .product-course-actions .single_variation,
.single-term_courses.woocommerce #content div.product .product-course-actions .single_variation,
.single-term_courses.woocommerce-page div.product .product-course-actions .single_variation,
.single-term_courses.woocommerce-page #content div.product .product-course-actions .single_variation {
  display: table-cell;
  vertical-align: middle;
  width: 45%;
}
.single-term_courses.woocommerce div.product .product-course-actions .variations_button,
.single-term_courses.woocommerce #content div.product .product-course-actions .variations_button,
.single-term_courses.woocommerce-page div.product .product-course-actions .variations_button,
.single-term_courses.woocommerce-page #content div.product .product-course-actions .variations_button {
  display: table-cell;
  vertical-align: middle;
  width: 55%;
}
.single-term_courses.woocommerce div.product .product-course-actions .variations_button .quantity,
.single-term_courses.woocommerce #content div.product .product-course-actions .variations_button .quantity,
.single-term_courses.woocommerce-page div.product .product-course-actions .variations_button .quantity,
.single-term_courses.woocommerce-page #content div.product .product-course-actions .variations_button .quantity {
  display: none;
}
.single-term_courses.woocommerce div.product .product-course-actions .variations_button .single_add_to_cart_button,
.single-term_courses.woocommerce #content div.product .product-course-actions .variations_button .single_add_to_cart_button,
.single-term_courses.woocommerce-page div.product .product-course-actions .variations_button .single_add_to_cart_button,
.single-term_courses.woocommerce-page #content div.product .product-course-actions .variations_button .single_add_to_cart_button {
  width: 100%;
  margin-right: 0;
}
.single-term_courses.woocommerce div.product.product-type-variable-subscription .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce #content div.product.product-type-variable-subscription .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce-page div.product.product-type-variable-subscription .product-course-actions .single_variation_wrap,
.single-term_courses.woocommerce-page #content div.product.product-type-variable-subscription .product-course-actions .single_variation_wrap {
  display: table;
  width: 100%;
}
.single-term_courses.woocommerce div.product.product-type-variable-subscription .product-course-actions .single_variation,
.single-term_courses.woocommerce #content div.product.product-type-variable-subscription .product-course-actions .single_variation,
.single-term_courses.woocommerce-page div.product.product-type-variable-subscription .product-course-actions .single_variation,
.single-term_courses.woocommerce-page #content div.product.product-type-variable-subscription .product-course-actions .single_variation {
  display: block;
  width: 100%;
}
.single-term_courses.woocommerce div.product.product-type-variable-subscription .product-course-actions .variations_button,
.single-term_courses.woocommerce #content div.product.product-type-variable-subscription .product-course-actions .variations_button,
.single-term_courses.woocommerce-page div.product.product-type-variable-subscription .product-course-actions .variations_button,
.single-term_courses.woocommerce-page #content div.product.product-type-variable-subscription .product-course-actions .variations_button {
  display: block;
  width: 100%;
}

.woocommerce,
.woocommerce-page {
  /* =General Layout Styles
  -------------------------------------------------------------- */
  /* =Product Page
  -------------------------------------------------------------- */
  /* =Cart Page
  -------------------------------------------------------------- */
  /* =Forms
  -------------------------------------------------------------- */
  	/* =Account Page
      -------------------------------------------------------------- */
}
.woocommerce .col2-set,
.woocommerce-page .col2-set {
  zoom: 1;
  width: 100%;
}
.woocommerce .col2-set:after, .woocommerce .col2-set:before,
.woocommerce-page .col2-set:after,
.woocommerce-page .col2-set:before {
  content: " ";
  display: table;
}
.woocommerce .col2-set:after,
.woocommerce-page .col2-set:after {
  clear: both;
}
.woocommerce div.product, .woocommerce #content div.product,
.woocommerce-page div.product,
.woocommerce-page #content div.product {
  /* Tabs on the product page */
}
.woocommerce div.product div.thumbnails, .woocommerce #content div.product div.thumbnails,
.woocommerce-page div.product div.thumbnails,
.woocommerce-page #content div.product div.thumbnails {
  zoom: 1;
}
.woocommerce div.product div.thumbnails:after, .woocommerce div.product div.thumbnails:before, .woocommerce #content div.product div.thumbnails:after, .woocommerce #content div.product div.thumbnails:before,
.woocommerce-page div.product div.thumbnails:after,
.woocommerce-page div.product div.thumbnails:before,
.woocommerce-page #content div.product div.thumbnails:after,
.woocommerce-page #content div.product div.thumbnails:before {
  content: " ";
  display: table;
}
.woocommerce div.product div.thumbnails:after, .woocommerce #content div.product div.thumbnails:after,
.woocommerce-page div.product div.thumbnails:after,
.woocommerce-page #content div.product div.thumbnails:after {
  clear: both;
}
.woocommerce div.product div.thumbnails a, .woocommerce #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a {
  float: left;
  margin-right: 2%;
  margin-bottom: 0.5em;
}
.woocommerce div.product div.thumbnails a img, .woocommerce #content div.product div.thumbnails a img,
.woocommerce-page div.product div.thumbnails a img,
.woocommerce-page #content div.product div.thumbnails a img {
  padding: 3px;
}
.woocommerce div.product div.thumbnails a.last, .woocommerce #content div.product div.thumbnails a.last,
.woocommerce-page div.product div.thumbnails a.last,
.woocommerce-page #content div.product div.thumbnails a.last {
  margin-right: 0;
}
.woocommerce div.product div.thumbnails a.first, .woocommerce #content div.product div.thumbnails a.first,
.woocommerce-page div.product div.thumbnails a.first,
.woocommerce-page #content div.product div.thumbnails a.first {
  clear: both;
}
.woocommerce div.product .woocommerce-tabs, .woocommerce #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs {
  clear: both;
}
.woocommerce #quantity,
.woocommerce #content .quantity,
.woocommerce-page #quantity,
.woocommerce-page #content .quantity {
  /* Disable input[type=number] buttons until the world is ready */
}
.woocommerce #quantity input::-webkit-outer-spin-button, .woocommerce #quantity input::-webkit-inner-spin-button,
.woocommerce #content .quantity input::-webkit-outer-spin-button,
.woocommerce #content .quantity input::-webkit-inner-spin-button,
.woocommerce-page #quantity input::-webkit-outer-spin-button,
.woocommerce-page #quantity input::-webkit-inner-spin-button,
.woocommerce-page #content .quantity input::-webkit-outer-spin-button,
.woocommerce-page #content .quantity input::-webkit-inner-spin-button {
  display: none;
}
.woocommerce table.cart img,
.woocommerce #content table.cart img,
.woocommerce-page table.cart img,
.woocommerce-page #content table.cart img {
  height: auto;
}
.woocommerce table.cart td.actions,
.woocommerce #content table.cart td.actions,
.woocommerce-page table.cart td.actions,
.woocommerce-page #content table.cart td.actions {
  text-align: right;
}
.woocommerce table.cart td.actions .input-text,
.woocommerce #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text {
  width: 50%;
  float: left;
}
.woocommerce table.cart td.actions .button,
.woocommerce #content table.cart td.actions .button,
.woocommerce-page table.cart td.actions .button,
.woocommerce-page #content table.cart td.actions .button {
  height: 39px;
}
.woocommerce table.cart td.actions .coupon,
.woocommerce #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon {
  width: 100%;
  zoom: 1;
}
.woocommerce table.cart td.actions .coupon:after, .woocommerce table.cart td.actions .coupon:before,
.woocommerce #content table.cart td.actions .coupon:after,
.woocommerce #content table.cart td.actions .coupon:before,
.woocommerce-page table.cart td.actions .coupon:after,
.woocommerce-page table.cart td.actions .coupon:before,
.woocommerce-page #content table.cart td.actions .coupon:after,
.woocommerce-page #content table.cart td.actions .coupon:before {
  content: " ";
  display: table;
}
.woocommerce table.cart td.actions .coupon:after,
.woocommerce #content table.cart td.actions .coupon:after,
.woocommerce-page table.cart td.actions .coupon:after,
.woocommerce-page #content table.cart td.actions .coupon:after {
  clear: both;
}
.woocommerce table.cart td.actions .coupon label,
.woocommerce #content table.cart td.actions .coupon label,
.woocommerce-page table.cart td.actions .coupon label,
.woocommerce-page #content table.cart td.actions .coupon label {
  display: none;
}
.woocommerce table.cart td.actions .coupon .button,
.woocommerce #content table.cart td.actions .coupon .button,
.woocommerce-page table.cart td.actions .coupon .button,
.woocommerce-page #content table.cart td.actions .coupon .button {
  float: right;
  width: 48%;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
}
.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
  display: inline;
}
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  width: 100%;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  width: 100%;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  overflow: visible;
}
.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
  clear: both;
}
.woocommerce #payment .form-row select,
.woocommerce-page #payment .form-row select {
  width: auto;
}
.woocommerce #payment .terms,
.woocommerce-page #payment .terms {
  text-align: right;
  padding: 0 1em 0;
}
.woocommerce .lost_reset_password .form-row-first,
.woocommerce .lost_reset_password .form-row-last,
.woocommerce-page .lost_reset_password .form-row-first,
.woocommerce-page .lost_reset_password .form-row-last {
  width: 100%;
  float: none;
  margin-right: 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin-top: 0;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce ul.products li.product.last,
.woocommerce-page ul.products li.product.last {
  margin-bottom: 1em;
}
.woocommerce ul.products .product-wrapper,
.woocommerce-page ul.products .product-wrapper {
  background: #F6F9FA;
  padding: 1em;
  width: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .products-courses td {
    padding-left: 10px;
    padding-right: 10px;
  }
  .products-courses td.course-name {
    padding-top: 12px;
    padding-bottom: 6px;
  }
  .products-courses td.course-date {
    padding-top: 6px;
    padding-bottom: 10px;
  }
  .products-courses td.course-category {
    padding-top: 0;
    padding-bottom: 0;
  }
  .products-courses td.course-location {
    padding-top: 0;
    padding-bottom: 12px;
  }

  .single-product-course tr {
    background: none !important;
  }
  .single-product-course th,
  .single-product-course td {
    display: block;
    padding: 0;
    width: 100%;
  }
  .single-product-course td {
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 375px) {
  .woocommerce,
  .woocommerce-page {
    /**
     * Product loops
     */
  }
  .woocommerce .related,
  .woocommerce .upsells.products,
  .woocommerce-page .related,
  .woocommerce-page .upsells.products {
    zoom: 1;
    clear: both;
  }
  .woocommerce .related:after, .woocommerce .related:before,
  .woocommerce .upsells.products:after,
  .woocommerce .upsells.products:before,
  .woocommerce-page .related:after,
  .woocommerce-page .related:before,
  .woocommerce-page .upsells.products:after,
  .woocommerce-page .upsells.products:before {
    content: " ";
    display: table;
  }
  .woocommerce .related:after,
  .woocommerce .upsells.products:after,
  .woocommerce-page .related:after,
  .woocommerce-page .upsells.products:after {
    clear: both;
  }
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
    zoom: 1;
  }
  .woocommerce ul.products:after, .woocommerce ul.products:before,
  .woocommerce-page ul.products:after,
  .woocommerce-page ul.products:before {
    content: " ";
    display: table;
  }
  .woocommerce ul.products:after,
  .woocommerce-page ul.products:after {
    clear: both;
  }
  .woocommerce ul.products.columns-4 li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce ul.products.columns-2 li.product,
  .woocommerce-page ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-2 li.product {
    width: 50%;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    display: inline-block;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 0;
    margin-left: 0;
    max-width: none;
    margin-bottom: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .woocommerce ul.products li.product.last,
  .woocommerce-page ul.products li.product.last {
    margin-bottom: 2em;
  }
  .woocommerce ul.products li.product .product-wrapper,
  .woocommerce-page ul.products li.product .product-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  /**
   * Flexbox fix for stupid browsers like safari
   */
  .flexbox .woocommerce ul.products:before, .flexbox .woocommerce ul.products:after,
  .flexbox .woocommerce-page ul.products:before,
  .flexbox .woocommerce-page ul.products:after {
    content: normal !important;
  }
}
@media only screen and (min-width: 768px) {
  .single-product-course td,
  .single-product-course th {
    padding: 18px;
    vertical-align: middle;
  }

  .single-product-course th {
    width: 20%;
  }

  .products-courses th.course-name,
  .products-courses td.course-name {
    width: 40%;
  }

  .single-term_courses.woocommerce div.product div.summary,
  .single-term_courses.woocommerce #content div.product div.summary,
  .single-term_courses.woocommerce-page div.product div.summary,
  .single-term_courses.woocommerce-page #content div.product div.summary {
    float: none;
    clear: both;
    width: 100%;
    padding-left: 0;
  }
  .single-term_courses.woocommerce div.product .product-course-actions,
  .single-term_courses.woocommerce #content div.product .product-course-actions,
  .single-term_courses.woocommerce-page div.product .product-course-actions,
  .single-term_courses.woocommerce-page #content div.product .product-course-actions {
    float: left;
    padding-right: 30px;
    width: 50%;
    margin-bottom: 1.5em;
  }
  .single-term_courses.woocommerce div.product .product-course-meta,
  .single-term_courses.woocommerce #content div.product .product-course-meta,
  .single-term_courses.woocommerce-page div.product .product-course-meta,
  .single-term_courses.woocommerce-page #content div.product .product-course-meta {
    float: left;
    width: 50%;
    margin-top: 1.675em;
    margin-bottom: 1.5em;
  }

  .woocommerce ul.products.columns-4 li.product,
  .woocommerce-page ul.products.columns-4 li.product {
    width: 25%;
  }
  .woocommerce ul.products.columns-3 li.product,
  .woocommerce-page ul.products.columns-3 li.product {
    width: 33.3%;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    margin-bottom: 3em;
  }
  .woocommerce ul.products li.product.last,
  .woocommerce-page ul.products li.product.last {
    margin-bottom: 3em;
  }

  .woocommerce,
  .woocommerce-page {
    /* =General Layout Styles
    -------------------------------------------------------------- */
    /* =Product Page
    -------------------------------------------------------------- */
    /* =Cart Page
    -------------------------------------------------------------- */
    /* =Forms
    -------------------------------------------------------------- */
  }
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    float: left;
    width: 48%;
  }
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    float: right;
    width: 48%;
  }
  .woocommerce .woo-sidebar,
  .woocommerce-page .woo-sidebar {
    margin-top: 0.8em;
  }
  .woocommerce div.product .row,
  .woocommerce #content div.product .row,
  .woocommerce-page div.product .row,
  .woocommerce-page #content div.product .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .woocommerce div.product div.product-reviews, .woocommerce div.product div.product-related,
  .woocommerce #content div.product div.product-reviews,
  .woocommerce #content div.product div.product-related,
  .woocommerce-page div.product div.product-reviews,
  .woocommerce-page div.product div.product-related,
  .woocommerce-page #content div.product div.product-reviews,
  .woocommerce-page #content div.product div.product-related {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .woocommerce div.product div.images,
  .woocommerce #content div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce-page #content div.product div.images {
    float: left;
    width: 41.66667%;
    padding-right: 30px;
  }
  .woocommerce div.product div.summary,
  .woocommerce #content div.product div.summary,
  .woocommerce-page div.product div.summary,
  .woocommerce-page #content div.product div.summary {
    float: right;
    width: 58.33333%;
    padding-left: 30px;
  }
  .woocommerce div.product div.single-product-sidebar,
  .woocommerce #content div.product div.single-product-sidebar,
  .woocommerce-page div.product div.single-product-sidebar,
  .woocommerce-page #content div.product div.single-product-sidebar {
    float: left;
    width: 40%;
  }
  .woocommerce table.cart img,
  .woocommerce #content table.cart img,
  .woocommerce-page table.cart img,
  .woocommerce-page #content table.cart img {
    height: auto;
  }
  .woocommerce table.cart td.actions,
  .woocommerce #content table.cart td.actions,
  .woocommerce-page table.cart td.actions,
  .woocommerce-page #content table.cart td.actions {
    text-align: right;
  }
  .woocommerce table.cart td.actions .input-text,
  .woocommerce #content table.cart td.actions .input-text,
  .woocommerce-page table.cart td.actions .input-text,
  .woocommerce-page #content table.cart td.actions .input-text {
    width: 52%;
  }
  .woocommerce table.cart td.actions .coupon,
  .woocommerce #content table.cart td.actions .coupon,
  .woocommerce-page table.cart td.actions .coupon,
  .woocommerce-page #content table.cart td.actions .coupon {
    float: left;
    width: 48%;
    margin-right: 30%;
    margin-bottom: 0 !important;
  }
  .woocommerce table.cart td.actions .coupon .input-text,
  .woocommerce #content table.cart td.actions .coupon .input-text,
  .woocommerce-page table.cart td.actions .coupon .input-text,
  .woocommerce-page #content table.cart td.actions .coupon .input-text {
    padding: 7px 1% !important;
  }
  .woocommerce table.cart td.actions .coupon .button,
  .woocommerce #content table.cart td.actions .coupon .button,
  .woocommerce-page table.cart td.actions .coupon .button,
  .woocommerce-page #content table.cart td.actions .coupon .button {
    margin-top: 0;
    width: 48%;
  }
  .woocommerce table.cart td.actions .coupon label,
  .woocommerce #content table.cart td.actions .coupon label,
  .woocommerce-page table.cart td.actions .coupon label,
  .woocommerce-page #content table.cart td.actions .coupon label {
    display: none;
  }
  .woocommerce table.cart td.actions .button,
  .woocommerce #content table.cart td.actions .button,
  .woocommerce-page table.cart td.actions .button,
  .woocommerce-page #content table.cart td.actions .button {
    margin-top: 2px;
    width: 22%;
    float: right;
  }
  .woocommerce .cart-collaterals .related,
  .woocommerce-page .cart-collaterals .related {
    width: 30.75%;
    float: left;
  }
  .woocommerce .cart-collaterals .cross-sells,
  .woocommerce-page .cart-collaterals .cross-sells {
    width: 48%;
    float: left;
    max-width: 450px;
  }
  .woocommerce .cart-collaterals .shipping_calculator,
  .woocommerce-page .cart-collaterals .shipping_calculator {
    width: 320px;
    clear: right;
    float: right;
  }
  .woocommerce .cart-collaterals .shipping_calculator h2,
  .woocommerce-page .cart-collaterals .shipping_calculator h2 {
    text-align: right;
  }
  .woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1, .woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,
  .woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,
  .woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2 {
    width: 47%;
  }
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .cart_totals {
    float: right;
    width: 48%;
    max-width: 450px;
  }
  .woocommerce form .form-row label,
  .woocommerce-page form .form-row label {
    display: block;
  }
  .woocommerce form .form-row label.checkbox,
  .woocommerce-page form .form-row label.checkbox {
    display: inline;
  }
  .woocommerce form .form-row select,
  .woocommerce-page form .form-row select {
    width: 100%;
  }
  .woocommerce form .form-row .input-text,
  .woocommerce-page form .form-row .input-text {
    width: 100%;
  }
  .woocommerce form .form-row-first, .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-last {
    float: left;
    width: 49%;
    overflow: visible;
  }
  .woocommerce form .form-row-last,
  .woocommerce-page form .form-row-last {
    float: right;
    clear: right;
  }
  .woocommerce form .form-row-first, .woocommerce form .form-row-wide,
  .woocommerce-page form .form-row-first,
  .woocommerce-page form .form-row-wide {
    clear: both;
  }
  .woocommerce #payment .form-row select,
  .woocommerce-page #payment .form-row select {
    width: auto;
  }
  .woocommerce #payment .terms,
  .woocommerce-page #payment .terms {
    text-align: right;
    padding: 0 1em 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 25%;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 75%;
  }
}
@media only screen and (min-width: 992px) {
  .single-term_courses.woocommerce div.product .product-course-actions,
  .single-term_courses.woocommerce #content div.product .product-course-actions,
  .single-term_courses.woocommerce-page div.product .product-course-actions,
  .single-term_courses.woocommerce-page #content div.product .product-course-actions {
    width: 40%;
    margin-bottom: 0;
  }
  .single-term_courses.woocommerce div.product .product-course-meta,
  .single-term_courses.woocommerce #content div.product .product-course-meta,
  .single-term_courses.woocommerce-page div.product .product-course-meta,
  .single-term_courses.woocommerce-page #content div.product .product-course-meta {
    width: 60%;
    margin-bottom: 0;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    margin-left: -20px;
    margin-right: -20px;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Woocommerce Widgets Stylesheet

******************************************************************/
#products {
  min-height: 39px !important;
}

#products:empty {
  display: none;
}

.post-type-archive-product #products {
  display: none;
}

/* =Products Widget
-------------------------------------------------------------- */
.widget_products .widgettitle {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.widget_products ul.product_list_widget {
  list-style: none;
}
.widget_products ul.product_list_widget li {
  margin: 0 0 25px 0;
  border: 1px solid #DDD !important;
  padding: 1em;
  text-align: center;
}
.widget_products ul.product_list_widget li img {
  display: block;
  margin: 0 auto 1em;
}
.widget_products ul.product_list_widget li .amount {
  display: block;
}

.woocommerce, .woocommerce-page {
  /* =Cart Sidebar
  -------------------------------------------------------------- */
  /* =Layered Nav Widget
  -------------------------------------------------------------- */
  /* =Product Categories Widget
  -------------------------------------------------------------- */
  /* =Custom Menu Widget
  -------------------------------------------------------------- */
  /* =Price Filter Widget
  -------------------------------------------------------------- */
}
.woocommerce ul.cart_list, .woocommerce-page ul.cart_list {
  list-style: none outside;
  padding: 0;
  margin: 0;
}
.woocommerce ul.cart_list li, .woocommerce-page ul.cart_list li {
  padding: 4px 0;
  margin: 0;
  zoom: 1;
  list-style: none;
  border-bottom: 1px solid #EEE;
}
.woocommerce ul.cart_list li:after, .woocommerce ul.cart_list li:before, .woocommerce-page ul.cart_list li:after, .woocommerce-page ul.cart_list li:before {
  content: " ";
  display: table;
}
.woocommerce ul.cart_list li:after, .woocommerce-page ul.cart_list li:after {
  clear: both;
}
.woocommerce ul.cart_list li a, .woocommerce-page ul.cart_list li a {
  display: block;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce ul.cart_list li img, .woocommerce-page ul.cart_list li img {
  float: right;
  margin-left: 4px;
  margin-top: 5px;
  width: 32px;
  height: auto;
}
.woocommerce ul.cart_list li ins, .woocommerce-page ul.cart_list li ins {
  text-decoration: none;
}
.woocommerce ul.cart_list li dl, .woocommerce-page ul.cart_list li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  zoom: 1;
}
.woocommerce ul.cart_list li dl:after, .woocommerce ul.cart_list li dl:before, .woocommerce-page ul.cart_list li dl:after, .woocommerce-page ul.cart_list li dl:before {
  content: " ";
  display: table;
}
.woocommerce ul.cart_list li dl:after, .woocommerce-page ul.cart_list li dl:after {
  clear: both;
}
.woocommerce ul.cart_list li dl dt, .woocommerce ul.cart_list li dl dd, .woocommerce-page ul.cart_list li dl dt, .woocommerce-page ul.cart_list li dl dd {
  display: inline-block;
  float: left;
  margin-botom: 1em;
}
.woocommerce ul.cart_list li dl dt, .woocommerce-page ul.cart_list li dl dt {
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
  padding: 0 0 .25em 0;
  margin: 0 4px 0 0;
  clear: left;
}
.woocommerce ul.cart_list li dl dd, .woocommerce-page ul.cart_list li dl dd {
  padding: 0 0 .25em 0;
}
.woocommerce ul.cart_list li dl dd p:last-child, .woocommerce-page ul.cart_list li dl dd p:last-child {
  margin-bottom: 0;
}
.woocommerce ul.cart_list li .star-rating, .woocommerce-page ul.cart_list li .star-rating {
  float: none;
  margin-bottom: 3px;
}
.woocommerce .widget_shopping_cart .total strong, .woocommerce-page .widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}
.woocommerce .widget_shopping_cart .buttons, .woocommerce-page .widget_shopping_cart .buttons {
  zoom: 1;
}
.woocommerce .widget_shopping_cart .buttons:after, .woocommerce .widget_shopping_cart .buttons:before, .woocommerce-page .widget_shopping_cart .buttons:after, .woocommerce-page .widget_shopping_cart .buttons:before {
  content: " ";
  display: table;
}
.woocommerce .widget_shopping_cart .buttons:after, .woocommerce-page .widget_shopping_cart .buttons:after {
  clear: both;
}
.woocommerce .widget_shopping_cart .buttons .button, .woocommerce-page .widget_shopping_cart .buttons .button {
  padding: 9px 1em !important;
  float: left;
  width: 48%;
  text-align: center;
}
.woocommerce .widget_shopping_cart .buttons .button.checkout, .woocommerce-page .widget_shopping_cart .buttons .button.checkout {
  float: right;
}
.woocommerce .widget_layered_nav, .woocommerce-page .widget_layered_nav {
  margin-bottom: 1.5em;
  margin-top: 0;
}
.woocommerce .widget_layered_nav:empty, .woocommerce-page .widget_layered_nav:empty {
  display: none;
}
.woocommerce .widget_layered_nav .widgettitle, .woocommerce-page .widget_layered_nav .widgettitle {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 4px;
}
.woocommerce .widget_layered_nav ul, .woocommerce-page .widget_layered_nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}
.woocommerce .widget_layered_nav ul li, .woocommerce-page .widget_layered_nav ul li {
  zoom: 1;
  padding: 0 0 1px;
  list-style: none;
  margin-left: 0;
}
.woocommerce .widget_layered_nav ul li:after, .woocommerce .widget_layered_nav ul li:before, .woocommerce-page .widget_layered_nav ul li:after, .woocommerce-page .widget_layered_nav ul li:before {
  content: " ";
  display: table;
}
.woocommerce .widget_layered_nav ul li:after, .woocommerce-page .widget_layered_nav ul li:after {
  clear: both;
}
.woocommerce .widget_layered_nav ul li a, .woocommerce .widget_layered_nav ul li span, .woocommerce-page .widget_layered_nav ul li a, .woocommerce-page .widget_layered_nav ul li span {
  padding: 1px 0;
  float: left;
}
.woocommerce .widget_layered_nav ul li label, .woocommerce-page .widget_layered_nav ul li label {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .widget_layered_nav ul li input[type=checkbox], .woocommerce-page .widget_layered_nav ul li input[type=checkbox] {
  margin-top: 5px;
}
.woocommerce .widget_layered_nav ul li.chosen a, .woocommerce-page .widget_layered_nav ul li.chosen a {
  padding: 0 6px;
  text-decoration: none;
  border: 1px solid #DDD;
  background: #EEE;
}
.woocommerce .widget_layered_nav ul li.chosen a:before, .woocommerce-page .widget_layered_nav ul li.chosen a:before {
  content: "\e013";
}
.woocommerce .widget_layered_nav ul small.count, .woocommerce-page .widget_layered_nav ul small.count {
  float: right;
  margin-left: 6px;
  font-size: 1em;
  padding: 1px 0;
}
.woocommerce .widget_layered_nav_filters, .woocommerce-page .widget_layered_nav_filters {
  margin-bottom: 0.5em;
}
.woocommerce .widget_layered_nav_filters:empty, .woocommerce-page .widget_layered_nav_filters:empty {
  display: none;
}
.woocommerce .widget_layered_nav_filters ul, .woocommerce-page .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}
.woocommerce .widget_layered_nav_filters ul li, .woocommerce-page .widget_layered_nav_filters ul li {
  display: inline-block;
  padding: 0 3px 3px 0;
  list-style: none;
  margin-left: 0;
}
.woocommerce .widget_layered_nav_filters ul li a, .woocommerce-page .widget_layered_nav_filters ul li a {
  padding: 3px 0;
  text-decoration: none;
  color: #BC2026;
  display: block;
  line-height: 20px;
}
.woocommerce .widget_layered_nav_filters ul li a:before, .woocommerce-page .widget_layered_nav_filters ul li a:before {
  font-family: "WooCommerce";
  content: "\e013";
  margin-right: 5px;
  top: 1px;
  left: 1px;
  position: relative;
}
.woocommerce .widget_product_categories .widgettitle, .woocommerce-page .widget_product_categories .widgettitle {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .widget_product_categories ul.product-categories, .woocommerce-page .widget_product_categories ul.product-categories {
  list-style: none;
}
.woocommerce .widget_product_categories ul.product-categories li, .woocommerce-page .widget_product_categories ul.product-categories li {
  margin-left: 0;
  margin-bottom: 0.5em;
}
.woocommerce .widget_product_categories ul.product-categories li a, .woocommerce-page .widget_product_categories ul.product-categories li a {
  font-family: MuseoSans-300;
  font-weight: normal;
  font-style: normal;
  color: #444;
  font-size: 1.125em;
}
.woocommerce .widget_product_categories ul.product-categories li.current-cat a, .woocommerce-page .widget_product_categories ul.product-categories li.current-cat a {
  color: #BC2026;
  font-family: MuseoSans-700;
  font-weight: normal;
  font-style: normal;
}
.woocommerce .widget_nav_menu ul.menu, .woocommerce-page .widget_nav_menu ul.menu {
  list-style: none;
}
.woocommerce .widget_price_filter .price_slider, .woocommerce-page .widget_price_filter .price_slider {
  margin-bottom: 1em;
}
.woocommerce .widget_price_filter .price_slider_amount, .woocommerce-page .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4em;
  font-size: 0.8751em;
}
.woocommerce .widget_price_filter .price_slider_amount .button, .woocommerce-page .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
}
.woocommerce .widget_price_filter .price_slider_amount .button, .woocommerce-page .widget_price_filter .price_slider_amount .button {
  float: left;
}
.woocommerce .widget_price_filter .ui-slider, .woocommerce-page .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid #DDD;
  cursor: pointer;
  outline: none;
  top: -.3em;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle:last-child, .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 1px solid #CCC;
  background: #DDD url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAFUlEQVQIHWP4//9/PRMDA8NzEPEMADLLBU76a5idAAAAAElFTkSuQmCC) top repeat-x;
  /* transparent png */
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0, 0, 0, 1px, rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0, 0, 0, 1px, rgba(0, 0, 0, 0.5);
  box-shadow: 0, 0, 0, 1px, rgba(0, 0, 0, 0.5);
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content, .woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.woocommerce .widget_price_filter .ui-slider-horizontal, .woocommerce-page .widget_price_filter .ui-slider-horizontal {
  height: .5em;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range, .woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min, .woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}
.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max, .woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

@media only screen and (min-width: 768px) {
  .woocommerce, .woocommerce-page {
    		/* =Product Categories Widget
        	-------------------------------------------------------------- */
  }
  .woocommerce .widget_product_categories ul.product-categories li, .woocommerce-page .widget_product_categories ul.product-categories li {
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 992px) {
  .woocommerce, .woocommerce-page {
    		/* =Product Categories Widget
        	-------------------------------------------------------------- */
  }
  .woocommerce .widget_product_categories ul.product-categories li, .woocommerce-page .widget_product_categories ul.product-categories li {
    margin-bottom: 2em;
  }
}
