/*
Theme Name: Pilotworkshops

WooCommerce styles override
*/





/**
 * Styles taken from woocommerce.css
 *
 */
@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.woocommerce .blockUI.blockOverlay {
    position: relative
}

.woocommerce .blockUI.blockOverlay::before {
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -.5em;
    margin-top: -.5em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(../images/icons/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75)
}
.is-ajax-loading:before,
.pw-user-meta.updating:before,
.pw-post-meta.updating:before,
.pw-poll-meta.updating:before,
.woocommerce .processing::before,
.woocommerce .loader::before {
    height: 1em;
    width: 1em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -.5em;
    margin-top: -.5em;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(../images/icons/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0, 0, 0, .75);
	z-index: 999;
}

.pw-user-meta,
.pw-post-meta,
.pw-poll-meta {
	position: relative;
}
.pw-user-meta.updating,
.pw-post-meta.updating,
.pw-poll-meta.updating {
	opacity: 0.5;
}
/**
 * Woocommerce Pages
 *
 */

.woocommerce-page main {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
}
.woocommerce-page.woocommerce-login main {
  max-width: 767px;
}
.woocommerce-breadcrumb {
	margin-bottom: 1em;
}
.woocommerce-page h1.entry-title,
.woocommerce-page h1.page-title {
	margin-top: 0;
}


/*
.entry-content .woocommerce {
	padding-bottom: 20px;
}
*/


/**
 * My Account pages
 */

/* Account dashboard shows special menu */
.my-account-menu li {
	margin: 0.5em 0;
}
.my-account-menu li a {
	color: #0d6caa;
}


label[for="payment_method_stripe"] {
	display: inline;
}
label[for="payment_method_stripe"] img {
	float: right;
	max-width: 40px;
	margin-left: 5px;
	
	/* 7-13-20 Removed these (requested by Jeff) */
	display: none;
}
.woocommerce-PaymentBox--stripe {
	clear: both;
}


@media (min-width: 37.5em) {

	/* (problematic for cart/checkout pages) */
	/*
	.entry-content .woocommerce {
		display: flex;
		flex-wrap: wrap;
	}

	.account-welcome-nav {
		flex-shrink: 0;
		margin-right: 20px;
	}
	.account-content {
		flex: 1;
		margin-top: 0;
	}
	*/


}




/**
 * Product lists
 */
ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
}
.products > li {
	margin: 1.5em 0;
}
/*
ul.products {
	list-style: none;
	margin: 0;
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 40px;
}
@media only screen and (min-width: 30em) {
	ul.products {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px 20px;
	}
}
@media only screen and (min-width: 48em) {
	ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media only screen and (min-width: 60em) {
	ul.products {
		grid-template-columns: repeat(4, 1fr);
		max-width: 1240px;
		margin: 0 auto;
	}
}
*/


/* 3-17-20 AFAIK, these are only now being used in Cart cross-sells */
.wc-cross-sells {
	clear: left;
	padding-top: 20px;
}
ul.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.products > li {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: 10px;
	margin-right: 10px;	
}


@media(min-width: 36.375em){
	/* 582 */
	.products > li {
		flex-basis: calc( 50% - 20px );
		flex-grow: 0;
		flex-shrink: 0;	
	}
}



@media(min-width: 54em){
	.products > li {
		flex-basis: calc( 25% - 20px );
	}
}



/* h2s in product lists */
.woocommerce-loop-product__title {
	font-size: 1rem;
	font-weight: 600;
}


/* Ajax add to cart buttons in product lists */
@keyframes infinite-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.ajax_add_to_cart:after {
	font-family: 'woocommerce' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	margin-left: 1em;
	position: relative;
	transform: rotate(0);
}
.ajax_add_to_cart.loading:after {
	content: "\e031";
	animation: infinite-spinning 1s infinite;

}
.ajax_add_to_cart.added:after {
	content: "\e017";
}

/* link that appears */
.added_to_cart.wc-forward {
	display: none;
}







/* WC pagination */
.woocommerce-pagination {
	padding: 20px;
	text-align: center;
	line-height: 40px;
}
.woocommerce-pagination ul {
	list-style: none;
	padding: 0;
}
.woocommerce-pagination li {
	display: inline-block;
}
.woocommerce-pagination ul .page-numbers {
	display: inline-block;
	min-width: 40px;
	margin: 0.5em 0.25em;
}
.woocommerce-pagination ul .page-numbers.current {

}
.woocommerce-pagination ul .page-numbers.prev,
.woocommerce-pagination ul .page-numbers.next {
	display: inline;
	background-color: transparent;
}
.woocommerce-pagination ul .page-numbers.prev {
	margin-left: 0;
}
.woocommerce-pagination ul .page-numbers.next {
	margin-right: 0;
}
.woocommerce-pagination ul .page-numbers.dots {
	min-width: 20px;
}





/* stock status */
.stock:empty:before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}



/* .price can be <p> or <span> */
.price {
	display: block;
	margin: 1em 0;
}




/**
 * Password strength meter
 */
.woocommerce-password-strength {
	text-align: right;
}

.woocommerce-password-strength.strong {
	color: #0f834d;
}

.woocommerce-password-strength.short {
	color: #e2401c;
}

.woocommerce-password-strength.bad {
	color: #e2401c;
}

.woocommerce-password-strength.good {
	color: #3D9CD2;
}



/**
 * Forms
 * TODO: This is nice - can we apply this to Gforms?
 * NOTE: This only happens on ajax forms? Does not add .woocommerce-validated, .woocommerce-invalid classes on login form. (yet)
 */
.form-row {
	margin: 1em 0;
}
.form-row.woocommerce-validated input.input-text {
	box-shadow: inset 2px 0 0 #0f834d;
}

.form-row.woocommerce-invalid input.input-text {
	box-shadow: inset 2px 0 0 #e2401c;
}

.required {
	color: red;
}







/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	width: 100%;
	background-color: #fff;
	padding: 20px;
	border: 1px solid;
	border-radius: 4px;
	margin-bottom: 20px;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	border-color: #3D9CD2;
}
.woocommerce-error {
	list-style: none;
	border-color: #e2401c;
	margin-top: 0;
}

.woocommerce-message .button {
	float: right;
	margin-left: 1em;
}
.woocommerce-message:after {
	content: '';
	display: block;
	clear: both;
}

/* Specific to WC Memberships */
.wc-memberships-restriction-message {
	background-color: #0d6caa;
	border-color: #0d6caa;
	color: #fff;
}
.wc-memberships-restriction-message p {
	margin-bottom: 0;
}
.entry-content .wc-memberships-restriction-message a {
	color: inherit;
}
.entry-content .wc-memberships-restriction-message a.button {
	background-color: #fff;
	color: #0d6caa;
}


/* need to hide membership messages in certain situations */

/* no messages in post sliders */
.ps-ps .woocommerce-info {
	display: none;
}

/* or post grids */
.archive-posts .woocommerce-info {
	display: none;
}

/* hide admin messages on single pages */
main > .woocommerce-info {
	display: none;
}




/**
 * WooCommerce widgets
 */
/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
	margin-bottom: 1.5em;
}

.widget_price_filter .price_slider_amount {
	text-align: right;
	line-height: 2.4em;
}

.widget_price_filter .price_slider_amount .button {
	float: left;
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left;
}

.widget_price_filter .ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1em;
	height: 1em;
	cursor: ew-resize;
	outline: none;
	background: royalblue;
	box-sizing: border-box;
	margin-top: -.25em;
	opacity: 1;
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left: -1em;
}

.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
	box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	background: royalblue;
}


.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: rgba(0, 0, 0, 0.1);
}

.widget_price_filter .ui-slider-horizontal {
	height: .5em;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	height: 100%;
}




/**
 * WooCommerce site message
 */
.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em 20px;
	background-color: #eee;
	z-index: 9999;
}













/* WC Login/Register */
#customer_login {
	width: 100%;
}
#customer_login .col-1 {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #1e242a;
}
label[for="password"] {
	display: inline;
}
.lost_password a {
	text-decoration: underline;
}
@media (min-width: 45em) {
	#customer_login {
		padding: 40px 0;
	}
	#customer_login::after {
		content: '';
		display: block;
		clear: both;
	}
	#customer_login .col-1 {
		padding-bottom: 0;
		margin-: 0;
		border-bottom: 0;
		float: left;
		width: 50%;
		padding-right: 40px;
		border-right: 1px solid #1e242a;
	}
	#customer_login .col-2 {
		width: 50%;
		padding-left: 40px;
		float: right;
	}
}




/**
 * Shop tables
 */
.shop_table {
	border: 1px solid #f3f3f3;
	border-collapse: collapse;
}
.shop_table th,
.shop_table td {
	text-align: left;
	padding: 0.5em;
	border: 1px solid #f3f3f3;
}
.shop_table th:last-child,
.shop_table td:last-child {
	text-align: right;
}
.shop_table th:first-child,
.shop_table td:first-child {
	text-align: left;
}


/* Responsive shop tables */
table.shop_table_responsive {
	margin: 0;
	width: 100%;
	border: 0;
}

table.shop_table_responsive thead {
	display: none;
}
/* Some tables have the th cells in the tbody? */
table.shop_table_responsive tbody th {
	display: none;
}

/* space out the rows */
table.shop_table_responsive tr {
	display: block;
	margin: 1em 0;
	border: 1px solid #f3f3f3;
}

table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	border-top: 1px solid #f3f3f3;
	border-left: 0;
	border-bottom: 0;
	border-right: 0;
	padding: 0.5em;
}
table.shop_table_responsive tr td:first-child {
	border-top: 0;
}
table.shop_table_responsive tr td[data-title]:before {
	content: attr(data-title) ": ";
	float: left;
	font-weight: bold;
}
/* Need to pull this from the <a> itself */
a.remove:after {
	content: attr(aria-label);
	display: inline-block;
	margin-left: 0.5em;
}



/* might need more of these? */
table.shop_table_responsive tr td.actions:before,
table.shop_table_responsive tr td.order-actions:before,
table.shop_table_responsive tr td.membership-actions:before,
table.shop_table_responsive tr tdwoocommerce-orders-table__cell-order-actions:before,
table.shop_table_responsive tr td.download-actions:before {
	display: none;
}


/* cart table only */
table.shop_table_responsive tr td.product-remove:before {
	display: none;
}


/* this row acts like a heading */
tr.recurring-totals {
	display: none;
}
/* 6-12-19 Requested from jeff to remove */
tr.cart-subtotal.recurring-total {
	display: none;
}



/* 5-23-18 still needs testing  */
table.shop_table_responsive tr td.download-actions .button {
	display: block;
	text-align: center;
}


/* order-actions can have more than one button */
.order-actions .button + .button,
.woocommerce-orders-table__cell .button + .button {
	margin-left: 0.5em;
}



/* shop_table_responsive tables start to act like tables */
@media screen and (min-width: 48em) {
	table.shop_table_responsive thead {
		display: table-header-group;
	}
	table.shop_table_responsive tbody th {
		display: table-cell;
	}
	table.shop_table_responsive tr {
		display: table-row;
	}
	table.shop_table_responsive tr th,
	table.shop_table_responsive tr td {
		text-align: left;
		padding: 0.5em;
	}
	table.shop_table_responsive tr th:last-child,
	table.shop_table_responsive tr td:last-child {
		text-align: right;
	}
	table.shop_table_responsive tr th:first-child,
	table.shop_table_responsive tr td:first-child {
		text-align: left;
	}
	table.shop_table_responsive tr td {
		display: table-cell;
	}
	table.shop_table_responsive tr td:first-child {
		border-top: 1px solid #f3f3f3;
	}
	table.shop_table_responsive tr td:before {
		display: none;
	}
}




/* all wc forms? */
.form-row > label {
	display: block;
	font-weight: bold;
}
.form-row > label abbr {
	text-decoration: none;
}
.form-row:last-child {
	margin-bottom: 0;
}


/* override some select2 styles */
.select2-container .select2-selection--single {
	height: auto;
	margin: 0;
	border-color: #ddd;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: inherit;
	line-height: inherit;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	display: block;
	min-height: 1.5em;
}




/* Cart page */
.woocommerce-cart-form {
	margin: 0;
}
.cart_item .product-name {
	font-weight: bold;
}

.woocommerce-shipping-calculator,
.woocommerce-shipping-calculator > p {
	margin: 0;
}
.shipping-calculator-form {
	text-align: left;
}

table.shop_table_responsive tr.cart-actions {
	border: 0;
}
table.shop_table_responsive tr.cart-actions td {
	padding: 0;
}
.coupon {
	display: flex;
}
.coupon input {
	margin-right: 20px;
	max-width: calc(100% - 8.625em);
}

button[name="update_cart"] {
	margin-top: 1rem;
}


.cart_totals {
	margin: 1em 0;
	padding: 20px;
	border: 1px solid #f3f3f3;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}
.cart-collaterals table {
	width: 100%;
}

.cart-collaterals table th,
.cart-collaterals table td {
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.cart-collaterals table .cart-subtotal th,
.cart-collaterals table .cart-subtotal td {
	border-top: 0;
}

.wc-proceed-to-checkout {
	margin-top: 1em;
}

.wc-proceed-to-checkout .button {
	width: 100%;
	text-align: center;
}
.wc-proceed-to-checkout .button + .button {
	margin-top: 1rem;
}


/* 3-17-20 added cross-sells */
.cross-sells span.onsale.wc-memberships-member-discount {
	display: none;	
}

.woocommerce-cart .page-section-new-product-add-to-cart {
	padding: 0;	
}
@media (min-width: 48em) {

	/* 768 */
	/* Cart page starts to have table on left, actions on right */
	.entry-content > .woocommerce::after {
		content: '';
		display: block;
		clear: both;
	}
	.woocommerce-cart-form {
		float: left;
		width: 65.5%;
	}
	.cart-collaterals {
		margin-left: 65.5%;
		padding-left: 20px;
	}

	.cart-table {
		padding: 20px;
		border: 1px solid #f3f3f3;
		box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
	}

	.woocommerce-cart-form .product-thumbnail {
		width: 90px;
	}

	a.remove::after {
		display: none;
	}

	.cart-actions {
		margin-top: 20px;
	}

	.cart-actions .actions {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
	}

	.actions .coupon {
		float: right;
		padding: 20px;
		border: 1px solid #f3f3f3;
		box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
		max-width: calc(100% - 145px);
	}

	button[name="update_cart"] {
		margin-top: 0;
		margin-right: 20px;
	}

}

@media (min-width: 64em) {

	/* More Spacing */
	.cart-actions {
    	margin-top: 40px;
	}
	.cart-collaterals {
		padding-left: 40px;
	}

}






/* Checkout page */
.pw-checkout-coupon-form-default .woocommerce-info {
	margin: 0;
}
.pw-checkout-coupon-form-default .woocommerce-form-coupon {
	margin-top: 20px;
}
.pw-checkout-coupon-form-expanded .woocommerce-form-coupon {
	padding: 20px !important;
}
/* Special handling for the "Coupon has been removed" message */
.pw-checkout-coupon-form-expanded + .woocommerce-message {
	margin-top: 20px;
	margin-bottom: 0;
}
/* Coupon form now looks like the other boxes on this page */
.woocommerce-form-coupon {
	margin: 0;
	border: 1px solid #f3f3f3;
	padding: 20px;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}
.woocommerce-form-coupon p:first-child {
	margin-top: 0;
}
.woocommerce-form-coupon .form-row-last {
	margin-bottom: 0;
}

/* These !important declarations are necessary to override the slidetoggle js styles that get applied */
.pw-checkout-coupon-form {
	display: block !important;
	height: auto !important;
}
/* Replace the form margin with padding (the coupon form above uses slideToggle js) */
form.woocommerce-checkout {
	margin: 0;
	padding: 20px 0;
}

.woocommerce-NoticeGroup-checkout {
	width: 100%;
}
.checkout-fields {
	border: 1px solid #f3f3f3;
	padding: 20px;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}

.woocommerce-checkout .cart-subtotal th, .woocommerce-checkout .cart-subtotal td strong {
    font-weight: normal;
}

/* 8-14-18 Added extra content before the account-creation fields */
.create-account .form-row {
	margin-bottom: 0;
}

.woocommerce-billing-fields:after {
	content: '';
	display: block;
	clear: both;
}

.checkout-create-account {
	margin-top: 1em;
	padding: 0 1em;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.checkout-create-account .create-account .form-row {
	margin-bottom: 1em;
}

/* Remove the h3 before the order-review table */
#order_review_heading {
	display: none;
}

/* This shop table gets no border */
.woocommerce-checkout-review-order-table {
	border: none;
	display: block;
}
/* We also don't show the <thead> element */
.woocommerce-checkout-review-order-table thead {
	display: none;
}
/* the <tbody> and <tfoot> display as separate blocks */
.woocommerce-checkout-review-order-table > tbody,
.woocommerce-checkout-review-order-table > tfoot {
	display: block;
	margin: 20px 0;
	padding: 20px;
	border: 1px solid #f3f3f3;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
}
/* Tax line is smaller */
.woocommerce-checkout .tax-rate {
    font-size: 0.85em;
}
tbody .table,
tfoot .table {
	display: table;
	width: 100%;
	border-spacing: 0;
}
.table > td {
	border: none;
	padding: 0;
}
.table table {
	width: 100%;
	border: none;
	border-spacing: 0;
	border-collapse: collapse;

}

/* Remove padding on left/right and most of the borders */
.table table th,
.table table td {
	padding: 0.5em 0;
	border-left: none;
	border-right: none;
	border-bottom: none;
	vertical-align: top;
}
.order-review-heading th,
.order-review-heading td,
.cart-subtotal th,
.cart-subtotal td {
	border-top: 0;
}
.table .order-review-heading th,
.table .order-review-heading td {
	vertical-align: baseline;
}
.order-review-heading h3 {
	margin: 0;
}

.order-review-heading a {
	white-space: nowrap;
}






.woocommerce-checkout-review-order ul#shipping_method {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout-payment {
	margin: 20px 0;
	padding: 20px;
	border: 1px solid #f3f3f3;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.14), 0 2px 2px 0 rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.2);
	
	background-color: aliceblue;
}


.pw-checkout-badges {
	display: flex;	
	justify-content: space-between;
	
	margin-bottom: -1rem;
}


.woocommerce-checkout-payment fieldset {
	padding: 0;
	border: 0;
}

.wc_payment_methods {
	list-style: none;
	padding: 0;
	margin: 0;
}

.wc_payment_method {
	/*padding-bottom: 1em;*/
}


.wc_payment_method {
	
}
.wc_payment_method > input,
.wc_payment_method > label {
	position: absolute;
	left: -9999em;
}
.wc_payment_method.payment_method_wfocu_test > input,
.wc_payment_method.payment_method_wfocu_test > label {
	position: static;
}

.payment_box {
	width: 100%;
	/*padding: 1em 0;*/
}

.wc-saved-payment-methods {
	list-style: none;
	padding: 0;
}

.stripe-source-errors .woocommerce-error {
	margin: 0;
}

.form-row.woocommerce-SavedPaymentMethods-saveNew {
	margin: 0;
}


.woocommerce-terms-and-conditions-wrapper {
	margin: 1rem 0	;
}


/* Order received page */
.woocommerce-order {
	width: 100%;
	padding: 20px;
	background-color: #fff;
}




@media (min-width: 48em) {

	/* 768px */
	/* Checkout starts to have billing/shipping fields on left, other actions on right */
	.woocommerce-checkout::after {
		content: '';
		display: block;
		clear: both;
	}
	.checkout-fields {
		float: left;
		width: 65.5%;
	}
	.woocommerce-checkout-review-order {
		margin-left: 65.5%;
		padding-left: 20px;
	}

	.woocommerce-checkout-review-order-table > tbody {
		margin-top: 0;
	}

}


@media (min-width: 64em) {

	/* Special handling for the "Coupon has been removed" message */
	.pw-checkout-coupon-form-expanded + .woocommerce-message {
		margin-top: 40px;
	}
	form.woocommerce-checkout {
		margin-top: 20px;
	}

	.woocommerce-checkout-review-order {
		padding-left: 40px;
	}

	.woocommerce-checkout-review-order-table > tbody,
	.woocommerce-checkout-review-order-table > tfoot,
	.woocommerce-checkout-payment {
		margin-bottom: 40px;
	}

}









/**
 * Products
 */

/*
ul.products {
	content: "";
	display: table;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}

ul.products li.product {
	list-style: none;
	position: relative;
	margin-bottom: 2em;
}

ul.products li.product .woocommerce-loop-product__title {
	font-size: 1rem;
}

ul.products li.product img {
	display: block;
}

ul.products li.product .button {
	display: block;
}

@media screen and (min-width: 48em) {
	ul.products li.product {
		width: 30.7966666667%;
		float: left;
		margin-right: 3.8%;
	}
	ul.products li.product.first {
		clear: both;
	}
	ul.products li.product.last {
		margin-right: 0;
	}
	.columns-1 ul.products li.product {
		float: none;
		width: 100%;
	}
	.columns-2 ul.products li.product {
		width: 48.1%;
	}
	.columns-3 ul.products li.product {
		width: 30.7966666667%;
	}
	.columns-4 ul.products li.product {
		width: 22.15%;
	}
	.columns-5 ul.products li.product {
		width: 16.96%;
	}
	.columns-6 ul.products li.product {
		width: 13.4933333333%;
	}
}


*/



/**
 * Single product
 */




/**
 * Single Product
 */


/*
.single-product div.product {
	content: "";
	display: table;
	table-layout: fixed;
	position: relative;
}

.single-product div.product .woocommerce-product-gallery {
	position: relative;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 1em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	content: "";
	display: table;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: .5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.7966666667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

*/






/**
 * Star rating
 */
.star-rating {
	overflow: hidden;
	position: relative;
	height: 1.618em;
	line-height: 1.618;
	font-size: 1em;
	width: 5.3em;
	font-family: 'star';
	font-weight: 400;
}

.star-rating:before {
	content: "\53\53\53\53\53";
	opacity: .25;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span:before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: royalblue;
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px;
	font-weight: 400;
}

p.stars a:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: "star";
	content: "\53";
	color: #404040;
	text-indent: 0;
	opacity: .25;
}

p.stars a:hover ~ a:before {
	content: "\53";
	color: #404040;
	opacity: .25;
}

p.stars:hover a:before {
	content: "\53";
	color: royalblue;
	opacity: 1;
}

p.stars.selected a.active:before {
	content: "\53";
	color: royalblue;
	opacity: 1;
}

p.stars.selected a.active ~ a:before {
	content: "\53";
	color: #404040;
	opacity: .25;
}

p.stars.selected a:not(.active):before {
	content: "\53";
	color: royalblue;
	opacity: 1;
}











/**
 * Single product
 */
/*
.single-product div.product {
	content: "";
	display: table;
	table-layout: fixed;
	position: relative;
}
*/
.single-product div.product .woocommerce-product-gallery {
	position: relative;
}

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 1em;
	right: 1em;
	display: block;
	z-index: 99;
}

.single-product div.product .woocommerce-product-gallery .flex-viewport {
	margin-bottom: 1em;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	content: "";
	display: table;
	table-layout: fixed;
	margin: 0;
	padding: 0;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
	list-style: none;
	cursor: pointer;
	float: left;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
	opacity: .5;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width: 48.1%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width: 30.7966666667%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 22.15%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear: both;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
	width: 16.96%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
	margin-right: 0;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
	clear: both;
}

.stock:empty:before {
	display: none;
}

.stock.in-stock {
	color: #0f834d;
}

.stock.out-of-stock {
	color: #e2401c;
}


/**
 * Checkout
 */
/**
 * Checkout
 */
@media screen and (min-width: 768px) {
	.col2-set .form-row-first {
		float: left;
		margin-right: 3.8%;
	}
	.col2-set .form-row-last {
		float: right;
		margin-right: 0;
	}
	.col2-set .form-row-first,
	.col2-set .form-row-last {
		width: 48.1%;
	}
}


/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
}

.woocommerce-tabs ul.tabs li {
	display: block;
	margin: 0;
	position: relative;
}

.woocommerce-tabs ul.tabs li a {
	padding: 1em 0;
	display: block;
}

.woocommerce-tabs .panel h2:first-of-type {
	margin-bottom: 1em;
}



/**
 * WC Icon Font
 *
 */
/**
 * Icon font
 * Need to put the actual @font-face rule in the functions.php file to fix the relative path issue
 *
 */

[class^="wcicon-"], [class*=" wcicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'WooCommerce' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wcicon-storefront:before {
  content: "\e900";
}
.wcicon-ccv:before {
  content: "\e604";
}

/* put in all the rest from here: https://rawgit.com/woothemes/woocommerce-icons/master/demo.html */


.wcicon-edit:before {
  content: "\e603";
}

body.woocommerce-account.woocommerce-add-payment-method form#add_payment_method ul.woocommerce-PaymentMethods {
  list-style: none;
  padding: 0;
}

table.woocommerce-MyAccount-paymentMethods + a.button {
  margin-top: 1em;
}
