@charset "utf-8";
/* CSS Document */

/* NOTE: Moved this here to get rid of loading it separately. */
/**
 * Ajax-Layerd Nav Widgets 
 * Shopping Cart: WooCommerce
 * File: Admin/Frontend CSS 
 * License: GPL
 * Copyright: SixtyOneDesigns 
 */
/**
 * Admin UI 
 * tables: color, size
 * use: setting config values for widget in admin
 */
 
table.sizes, table.color{
	width:100%;
	float:left;
}
table.sizes input, table.color input{
	border-collapse:collapse;
	border:1px solid #dbdbd1;
}

table.sizes thead, table.color thead {
	font-weight:bold;
}
table.color td.inputs{
	width:75%;
}
table.color td.inputs input{
	float:left; 
	padding:5px 5px 0 0;
}
table.color td.inputs .colorSelector{
	float:left;	
}

/* Frontend UI
* lists, conatiners for frontend ajax layered nav elements
*/

/* Products container */
#products{
	position:relative;
	min-height: 100px;
	
}

#products:after {
	content:"";
	display:block;
	clear:both;
}

/* UI Filter Types */
/*All*/
.widget_layered_nav {
	overflow: hidden;
	zoom: 1;
}
ul.colors li, ul.sizes li, ul.checkboxes li {
	list-style:none;
}

ul.colors li.chosen, ul.sizes li.chosen, ul.checkboxes li.chosen{
	background:none !important;
}
ul.colors li.chosen a:before, ul.sizes li.chosen a:before, ul.checkboxes li.chosen a:before{
	content:none !important;
}
/* Colors */
ul.colors, ul.colors li {
	float:left;
}
ul.colors.show-count, ul.sizes.show-count,
ul.colors li.show-count, ul.sizes li.show-count{
	width:100%;
}
/*swatch heights and  borders*/
ul.colors li .box{
	height:21px;
	width:21px;
	border:1px solid #dbdbd1;
}
ul.colors li .box.no-count{
	opacity:0.4; 
	
}
ul.colors li .box.has-count:hover, ul.colors li.chosen .box{
	border:1px solid #000;
}
/*swatch padding and margins*/
ul.colors li, ul.colors li.chosen{
	margin:0 !important;
	padding: 3px 6px 3px 0 !important;
}
ul.colors li.chosen a, ul.colors li a{
	padding: 1px 0 3px 0 !important;
	border:none !important;
	background:none !important;
}

/* Sizes */
ul.sizes , ul.sizes li {
	float:left;
}
/* paddings and margins*/
ul.sizes li, ul.sizes li.chosen{
	margin:0 !important;
	padding: 3px 6px 3px 0 !important;
}
ul.sizes li.chosen a, ul.sizes li a{
	padding: 1px 0 3px 0 !important;
	border:none !important;
	background:none !important;
}
/*anchor styling */
ul.sizes li.chosen a:hover, ul.sizes li a:hover{
	text-decoration:none;
}
/*filter styling */
ul.sizes li .size-filter{
	height:21px;
	min-width:15px;
	padding:0 3px; 
	border:1px solid #dbdbd1;
	text-align:center;
	font-size:14px;
	background-color: #EEE;
	color:#777;
}
/*filter hover/chosen*/
ul.sizes li.chosen .size-filter, ul.sizes li .size-filter:hover{
	border:1px solid #000;
	color:#000;
}

/*Checkboxes */
ul.checkboxes input[type="checkbox"]{
	padding-top:3px;
}
/* paddings and margins*/
ul.checkboxes li.chosen{
	padding:1px 0 !important;
	margin-top:1px !important;
	color:inherit !important;
}

ul.products li.product a img {
	-webkit-transition: all ease-in-out .2s;
	transition: all ease-in-out .2s;
}
ul.sizes li a .size-filter:empty{
	display:none;
}





/**
 * 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)
}
.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)
}
/*
.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    -webkit-transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
    transition: all cubic-bezier(.795, -.035, 0, 1) .5s;
    margin: 0;
    padding: 0
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
    background-color: #fff;
    opacity: 0
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    display: inline-block
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}
.woocommerce div.product div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: .5;
    margin: 0
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    opacity: 1
}
.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
    clear: left
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
    clear: left
}
.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
    clear: left
}


.woocommerce #reviews h2 small {
    float: right;
    color: #777;
    font-size: 15px;
    margin: 10px 0 0
}

.woocommerce #reviews h2 small a {
    text-decoration: none;
    color: #777
}

.woocommerce #reviews h3 {
    margin: 0
}

.woocommerce #reviews #respond {
    margin: 0;
    border: 0;
    padding: 0
}

.woocommerce #reviews #comment {
    height: 75px
}

.woocommerce #reviews #comments .add_review::after,
.woocommerce #reviews #comments .add_review::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments .add_review::after {
    clear: both
}

.woocommerce #reviews #comments h2 {
    clear: none
}

.woocommerce #reviews #comments ol.commentlist {
    margin: 0;
    width: 100%;
    background: 0 0;
    list-style: none
}

.woocommerce #reviews #comments ol.commentlist::after,
.woocommerce #reviews #comments ol.commentlist::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments ol.commentlist::after {
    clear: both
}

.woocommerce #reviews #comments ol.commentlist li {
    padding: 0;
    margin: 0 0 20px;
    border: 0;
    position: relative;
    background: 0;
    border: 0
}

.woocommerce #reviews #comments ol.commentlist li .meta {
    color: #777;
    font-size: .75em
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
    float: left;
    position: absolute;
    top: 0;
    left: 0;
    padding: 3px;
    width: 32px;
    height: auto;
    background: #ebe9eb;
    border: 1px solid #e4e1e3;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 50px;
    border: 1px solid #e4e1e3;
    border-radius: 4px;
    padding: 1em 1em 0
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after,
.woocommerce #reviews #comments ol.commentlist li .comment-text::before {
    content: ' ';
    display: table
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
    clear: both
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    margin: 0 0 1em
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
    font-size: .83em
}

.woocommerce #reviews #comments ol.commentlist ul.children {
    list-style: none outside;
    margin: 20px 0 0 50px
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
    display: none
}

.woocommerce #reviews #comments ol.commentlist #respond {
    border: 1px solid #e4e1e3;
    border-radius: 4px;
    padding: 1em 1em 0;
    margin: 20px 0 0 50px
}

.woocommerce #reviews #comments .commentlist>li::before {
    content: ''
}

*/


/**
 * Added a counter next to the cart link 
 *
 */
.nav-cart .icon {
	min-width: 32px;	
}
.cart-count {
	font-style: normal;
    font-size: 0.75em;	
}




/**
 * Button style overrides 
 *
 */

.button.red,
button.red {
	background-color: #d63b3b;
	border-color: #d63b3b;
	color: #fff;	
}
/*
.button.red:hover,
button.red:hover {
	background-color: #d63b3b;
	border-color: #d63b3b;
	color: #fff;	
}
*/
button.no-style {
	border: 0;
	border-radius: 0;
	background-color: transparent;
	background: none;
	color: inherit;
	margin-right: 0;
	padding: 0;
	font: inherit;
	text-align: inherit;
	transition: none;	
}
button.no-style:hover {
	background-color: transparent;
}





/* All WC forms? */
p.form-row {
	margin: 1em 0;
	line-height: inherit;	
}
p.form-row:last-child {
	margin-bottom: 0;	
}
.form-row > label {
	display: block;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.form-row > label.inline {
	display: inline-block;
}
.form-row > label abbr {
	text-decoration: none;
}
.form-row input[type="text"],
.form-row input[type="password"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
	width: 100%;
	border: 1px solid #aaa;
	border-radius: 2px;
	font-family: inherit;
	font-size: 1em;
	padding: 0.25em 0.5em;
}

.form-row.woocommerce-invalid input,
.form-row.woocommerce-invalid .select2-container--default .select2-selection--single { 
	border-color: #a00;	 /* wc red */	
	border-color: #d63b3b; /* bs red */
}

.form-row.woocommerce-validated input,
.form-row.woocommerce-validated .select2-container--default .select2-selection--single {
	border-color: #69bf29; /* wc green */
	/* border-color: #034732; /* bs green */
}





/* Shop archive sidebar */
.wc-shop-sidebar {
	padding: 10px;
	border: 1px solid #969b9f;
	border-radius: 2px;
	position: relative;
	margin-bottom: 1em;
}
.wc-sidebar-toggle {
	display: block;
	border: none;
	background: none;
	background-color: transparent;
	margin: 0;
	width: 100%;
}

/* do something when the sidebar is updating */
.wc-shop-sidebar-widgets.updating {
	opacity: 0.5;	
}

/* all widgets in this sidebar */
.wc-shop-sidebar .widget {
	margin: 10px 0;
}

/* product search widget */
.wc-shop-sidebar .woocommerce-product-search {
	border: 1px solid #969b9f;
	border-radius: 2px;
	height: 40px;
	padding-right: 40px;
	padding-left: 10px;
	position: relative;	
}
.wc-shop-sidebar .search-field {
	width: 100%;
	height: 38px;
	border: none;
	padding: 0;
	line-height: 38px;	
}
.wc-shop-sidebar .woocommerce-product-search button {
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	background: none;
	background-color: transparent;
	line-height: 1;
}
.wc-shop-sidebar .woocommerce-product-search button:hover,
.wc-shop-sidebar .woocommerce-product-search button:focus {
	background-color: #efefef;
}
.wc-shop-sidebar .woocommerce-product-search button .icon {
	line-height: inherit;
}
.wc-shop-sidebar .woocommerce-product-search button svg {
	fill: #c82228;
}

/* product category widget */
.wc-shop-sidebar .dropdown_product_cat {
	width: 100%;
	border: 1px solid #969b9f;
	border-radius: 2px;
	height: 40px;
	padding-right: 40px;
	padding-left: 10px;	
}

/* product ordering *widget* */
.wc-shop-sidebar .catalog-ordering form {
	margin: 0;
	float: none;
}
.wc-shop-sidebar .orderby {
	width: 100%;
	border: 1px solid #969b9f;
	border-radius: 2px;
	height: 40px;
	padding-right: 40px;
	padding-left: 10px;	
}


/* Ajax nav filter widgets */
.widget_layered_nav {
	
}
.widget_layered_nav .widgettitle {
	margin: 0;
	/* font-size: 1.125em; */	
	position: relative;
	padding-right: 32px;
}
/* these widgettitles have text and buttons */
.widgettitle-text {
	
}
.widgettitle button {
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 32px;
}
.loading .widget_layered_nav nav {
	display: none;
}
/* Active terms in the nav filter widgets */
.wc-layered-nav-term a {
	padding-left: 20px;	
	position: relative;
}
.wc-layered-nav-term a:before {
	content: '';
	display: block;
	height: 18px;
	width: 18px;
	border-radius: 2px;
	border-width: 1px;
	border-style: solid;
	border-color: #E6E7E8;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -9px;
	margin-right: 4px;
}
.wc-layered-nav-term a.selected:before,
.wc-layered-nav-term.chosen a:before {
	font-family: WooCommerce;
	speak: none;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	content: "\e017";
	text-decoration: none;
	color: green;
	vertical-align: inherit;	
}
.wc-layered-nav-term a.deselected:before {
	content: '';	
}

/* Active filters widget */
.widget_layered_nav_filters ul {
	list-style: none;
	margin: 0;
	padding: 0;	
}
.widget_layered_nav_filters ul:after {
	content: '';
	display: block;
	clear: both;	
}
.widget_ajax_layered_nav_filters ul li {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0 0.5em 0.5em 0;
}
.widget_ajax_layered_nav_filters ul li a {
	display: block;
	padding: 2px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 2px 4px;	
}
/* Copied this from woocommerce.css to do the little x */
.widget_layered_nav_filters ul li a::before {
    font-family: WooCommerce;
    speak: none;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    margin-right: .618em;
    content: "";
    text-decoration: none;
    color: #a00;
    vertical-align: inherit;
    margin-right: .5em;
}

/* Clear all filters widget */
/*
.woocommerce .widget_layered_nav_filters.widget_layered_nav_clear ul li {
	float: none;	
}
.widget_layered_nav_clear li {
	margin: 0;
}
.widget_layered_nav_clear li a {
	display: block;
	background-color: #232d37;
	color: #fff;
	line-height: 40px;
	text-align: center;
}
.woocommerce .widget_layered_nav_filters.widget_layered_nav_clear ul li a::before {
	color: inherit;
}
*/

/* Replaced that with a link back to the shop page becasue the widget does not clear category, search or sort options */
.wc-shop-sidebar-reset {
	
}
.wc-shop-sidebar-reset a {
	display: block;
	background-color: #232d37;
	border-radius: 2px;
	color: #fff;
	line-height: 40px;
	text-align: center;	
}
.wc-shop-sidebar-reset a:hover {
	color: #fff;
	opacity: 0.9;
}
.wc-shop-sidebar-reset.inactive {
	display: none;
}


/* Shop Archive */
/* The ajax filter widget plugin tries to set a height on the #products div, but it gets it wrong most of the time :( */
#products {
	height: auto !important;	
}

ul.products {
	list-style: none;
	padding: 0;
	margin: 0;	
}
.products > li {
	margin: 0;
	padding: 1em 0;
	border-bottom: 1px solid #969b9f;	
}
.products > li:first-child {
	border-top: 1px solid #969b9f;
}

/* make sure we contain those product images */
.wc-loop-product-inner:after {
	content: '';
	display: block;
	clear: both;
}
.wc-loop-product-image {
	margin: 0;
	float: left;
	width: 25%;	
}
/* We don't display the onsale span */
.onsale {
	border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
.wc-loop-product-content {
	margin-left: 25%;
	padding-left: 1em;
}

.woocommerce-loop-product__title {
	font-size: 1em;	
	font-weight: 800;
	margin: 0;
}

.woocommerce-loop-product__title a {
	color: inherit;
}

/* this will change once we get the price html finalized */
/*
.wc-loop-product-content .price {
	display: flex;
	flex-flow: column-reverse;
	margin: 1em 0;
}
.wc-loop-product-content .price del {
	text-decoration: none;
	margin-top: 0.5em;
}
.wc-loop-product-content .price ins {
	text-decoration: none;
	margin-bottom: 0.5em;
}
*/
.wc-loop-product-content .price {
	display: block;
	margin: 1em 0;
}
.wc-loop-product-content .price del,
.wc-loop-product-content .price ins {
	display: block;
	text-decoration: none;	
}
.wc-loop-product-content .price del {
	margin-bottom: 0.5em;
}
.wc-loop-product-content .price ins {
	margin-top: 0.5em;
}
.wc-loop-product-content .price del:before {
	content: 'Nonmember: ';
}
.wc-loop-product-content .price ins:before {
	content: 'Member: ';
}

/* Price might not actually be output so we need some spacing on the button */
.wc-loop-product-button {
	margin-top: 1em;	
}

/* WC Pagination styles */
.woocommerce-pagination {
	padding-top: 2em;
}
.page-numbers {
	text-align: center;	
}
.page-numbers li {
	display: inline-block;
	padding: 0.25em;
}
.page-numbers .icon {
	vertical-align: middle;	
}
.page-numbers:hover .icon svg path {
	fill: #d63b3b;	
}
.page-numbers .current {
	color: #d63b3b;
}

@media (min-width:48em) {
	
	/* Product lists start to have two columns */
	.products {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1em;	
	}
	.products > li {
		width: 50%;
		padding: 2em 1em;
		border-bottom: 0;
	}
	.products > li:first-child {
		border-top: 0;
	}
	
	/* Products now displayed with image on top, eveerything centered */
	.wc-loop-product-inner {
		text-align: center;	
	}
	.wc-loop-product-image {
		float: none;
		width: auto;
		margin-bottom: 1em;	
	}
	.wc-loop-product-image a {
		display: block;
	}
	.wc-loop-product-content {
		margin-left: 0;
		padding-left: 0;	
	}
	
	/* upsells, related products */
	.up-sells,
	.related {
		padding: 0 1em;
	}
	
}

@media (min-width:64em) {
	
	/* Shop sidebar starts to be on left side */
	.wc-shop-sidebar {
		padding: 0;
		border: 0;
		float: left;
		width: 25%;
		padding-right: 1em;
	}
	/* no more toggle button */
	.wc-sidebar-toggle {
		display: none;
	}
	.wc-shop-sidebar-widgets {
		display: block !important;	
	}
	/* no top margin on first widget so it lines up with #products border */
	.wc-shop-sidebar .widget:first-of-type {
		margin-top: 0;	
	}
	/* NOTE: This selector is dependant on the wc-ajax-filters plugin */
	#products {
		margin-left: 25%;
		padding-left: 1em;
	}
	#products .products {
		border-left: 1px solid #969b9f;	
	}
	.woocommerce-result-count {
		margin: 0;
		text-align: right;
		border-left: 1px solid #969b9f;	
	}
	
	
	/* upsells, related products */
	.up-sells .products > li,
	.related .products > li {
		width: 25%;
	}
	
}

@media (min-width:75em) {
	/* 1200px */
	
	/* Need to override the max-width setting from the theme - shop archives go out to 1440px */
	.post-type-archive-product .wc-wrap .wrap {
		max-width: 90em;	
	}
	
	/* Shop archives go to 3 columns */
	#products .products > li {
		width: 33.3333%;	
	}
	
}


/* Product Single */
.bs-wc-gallery figure {
	margin: 0;	
}
.bs-wc-gallery img {
	display: block;
	margin: 0 auto;
}
.flex-control-nav {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
}
.flex-control-nav li {
	margin: 0;
}
.bs-wc-gallery .preview-link {
	text-align: center;
	font-weight: bold;
	/* EDIT 8-10-18 They changed the size of the product image to 300px wide */
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

/* These h1s are smaller than normal */
.summary .entry-title {
	font-size: 1.625em;
	line-height: 1.4;	
}

/* Custom Details dl might exist */
.custom-details {
	margin: 1em 0;
	line-height: 1.625;
}
.custom-details:after {
	content: '';
	display: block;
	clear: both;
}
.custom-details dd {
	margin: 0;
}
.custom-details dl dt {
	float: left;
	clear: left;
	font-weight: bold;
}
.custom-details dl dt:after {
	content: ':';
	padding-left: 0.125em;
}
.custom-details dl dd {
	float: left;
	padding-left: 0.5em;	
}

/* Price is bigger */
.summary .price {
	font-size: 1.25em;
	font-weight: bold;
}
.summary .price del {
	opacity: 0.5;	
}
/* Add to cart forms */
.summary form {
	margin: 1.5em 0;
	border-top: 1px solid #ccc;
	padding-top: 1.5em;
}
.variations_form {
	padding-bottom: calc(40px + 1em);
	position: relative;	
}
.summary form:after {
	content: '';
	display: block;
	clear: both;
}
/* Change display of variation tables */
.summary form table,
.summary form tbody,
.summary form tr,
.summary form td {
	display: block;
	line-height: inherit;
	padding: 0;
}
.summary form table {
	float: left;
	width: 50%;
	padding-right: 0.5em;	
}
.summary form label {
	font-weight: bold;	
}
.summary select {
	width: 100%;
	height: 42px;
	border: 1px solid #969b9f;
	border-radius: 0.25em;	
}
/* The Add to Cart button won't clear both if this is showing */
.summary select + .reset_variations {
	display: none;	
}
.summary .quantity {
	float: left;
	width: 50%;
	padding-right: 0.5em;
}
/* Quantity field is on right side if variation table exists */
.summary .variations_form .quantity {
	float: right;
	width: 50%;
	padding-left: 0.5em;
	padding-right: 0;
}
.summary .quantity input {
	width: 100%;
	height: 42px;
	border: 1px solid #969b9f;
	border-radius: 0.25em;
	text-align: center;
}
/* Override styles to show the label on the quantity field */
.summary .quantity .screen-reader-text {
	clip: auto;
	-webkit-clip-path: none;
	clip-path: none;
	height: auto;
	margin: 0;
	overflow: auto;
	position: static;
	width: auto;
	text-indent: inherit;
	display: block;	
}
.summary form button {
	display: block;
	float: right;
	height: 42px;
	background-color: #d63b3b;
	color: #fff;
	font-size: 1em;
	margin-top: 1.375rem;
	width: calc(50% - 0.5rem);	
}
/* button gets positioned below if variations table exists */
.summary .variations_form button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
}

/* Do we need this? Seems like only for subscriptions... */
.first-payment-date {
	display: none;	
}

/* Tabs containers get extra spacing, border on top */
.bs-wc-tab {
	margin-top: 2em;
	border-top: 1px solid #ccc;	
}
/* Tab content might have different max-widths */
.bs-wc-tab > div {
	max-width: 683px;
	margin: 0 auto;	
}

/* Comment forms */
.comment-form {
	margin: 1em 0;	
}
.comment-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	border: 1px solid #aaa;
	padding: 0.5em 1em;	
}
.comment-form textarea {
	width: 100%;
	resize: vertical;
	font: inherit;
}
.commentlist {
	list-style: none;	
}




@media (min-width:37.5em) {
	/* 600px */
	
	/* Single products start to have images on left, summary on right */
	.bs-single-product-wrap::after {
		content: '';
		display: block;
		clear: both;	
	}
	.has-gallery .bs-wc-gallery {
		float: left;
		width: 50%;
		padding-right: 0.5em;	
	}
	.has-gallery .summary {
		float: right;
		width: 50%;	
		padding-left: 0.5em;
	}
	.summary .entry-title {
		margin-top: 0;	
	}
	
}


@media (min-width:48em) {
	/* 768px */
	
	/* Set the max-width on gallery/summary */
	.bs-single-product-wrap {
		max-width: 850px;
		margin: 0 auto;	
	}
	
	/* More-spacing between images, summary */
	.has-gallery .bs-wc-gallery {
		padding-right: 1em;	
	}
	.has-gallery .summary {
		padding-left: 1em;
	}
}



/**
 * WooCommerce messages 
 *
 */
.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
    content: ' ';
    display: table
}
.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
    clear: both
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 1em 1em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: #f1f9fb;
    border: 2px solid #76c6dc;
	border-radius: 2px;
    list-style: none outside;
    width: 100%;
    word-wrap: break-word
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    font-family: WooCommerce;
    content: '\e028';
    display: inline-block;
    position: absolute;
    top: 1em;
    left: 1.5em
}
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
    float: right
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
    list-style: none outside;
    padding: 0;
    margin: 0;
}

.woocommerce-message {
    border-color: #76c6dc
}
.woocommerce-message::before {
    content: '\e015';
	color: #034732; /* This is their green color from the logo, but it looks too dark on the light blue background of the messages */
    color: #8fae1b
}
.woocommerce-info::before {
    color: #1e85be
}
.woocommerce-error {
	background-color: #fff;
    border-color: #d63b3b
}
.woocommerce-error::before {
    content: '\e016';
    color: #d63b3b
}

/* No icons in membership messages? */
.woocommerce-info.wc-memberships-member-discount-message {
	padding: 1em;	
}
.woocommerce-info.wc-memberships-member-discount-message:before {
	display: none;	
}

/* Only exist in membership messages? */
.woocommerce-info a {
	color: inherit;
	font-weight: bold;
}




/**
 * 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;
	display: inline-block;
	margin-top: 1em;
}

.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: #d63b3b;
}

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: #d63b3b;
	opacity: 1;
}

p.stars.selected a.active:before {
	content: "\53";
	color: #d63b3b;
	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: #d63b3b;
	opacity: 1;
}


/**
 * WooCommerce site message
 */
.demo_store {
	position: fixed;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 1em 20px;
	background-color: #eee;
	z-index: 9999;
}


/**
 * Shop tables
 */
.shop_table {
	width: 100%;
	border-collapse: collapse;	
}
.shop_table th,
.shop_table td {
	text-align: left;
}
.shop_table th:last-child,
.shop_table td:last-child {
	text-align: right;
}
.shop_table td:last-child .button {
	text-align: center;
    margin: 0.25em 0;
    padding: 0.25em 0.5em;	
}
.shop_table th:first-child,
.shop_table td:first-child {
	text-align: left;
}

/* Responsive tables */
table.shop_table_responsive thead {
	display: none;
}
/* Some tables have the th cells in the tbody? */
table.shop_table_responsive tbody th {
	display: none;
}
table.shop_table_responsive {
	margin: 0;	
}
/* space out the rows */
.cart-totals-fake-heading {
	font-weight: bold;	
}
table.shop_table_responsive tr {
	display: block;
	padding: 1em 0;
	border-top: 1px solid #ccc;
}
table.shop_table_responsive tr:first-child {
	border-top: 0;
}
table.shop_table_responsive tr td {
	display: block;
	text-align: right;
	line-height: inherit;
	padding: 0.5em 0;
}

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;
}
/* 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;
}

/* shop_table_responsive tables start to act like tables at 768px */
@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: 1em;
	}
	table.shop_table_responsive tr td {
			
	}
	table.shop_table_responsive tr th:last-child, 
	table.shop_table_responsive tr td:last-child {
		text-align: right;
		padding-right: 0;
	}
	table.shop_table_responsive tr th:first-child, 
	table.shop_table_responsive tr td:first-child {
		text-align: left;
		padding-left: 0;
	}
	table.shop_table_responsive tr td {
		display: table-cell;
		border-top: 1px solid #ccc;
	}
	table.shop_table_responsive tr td:first-child {
		border-top: 1px solid #ccc;	
	}
	table.shop_table_responsive tr td:before {
		display: none;
	}
}



/**
 * Cart Page 
 */
.woocommerce-cart-form {
	background-color: #fff;
	padding: 1em;
}


/* Cart table only */
table.shop_table_responsive tr td.product-remove a {
	text-align: left;
}
table.shop_table_responsive tr td.product-remove:before {
	display: none;
}
table.shop_table_responsive tr td.product-remove a:after {
	content: attr(aria-label);
	padding-left: 0.5em;
}
.cart .product-name a {
	color: inherit;	
}
table.cart .quantity input {
	width: 60px;
	height: 40px;
	text-align: center;
	border: 1px solid #898686;
	border-radius: 2px;	
}
.coupon label {
	display: block;
	font-weight: bold;
	margin-bottom: 0.25em;
}
.coupon input {
	border: 1px solid #898686;
	border-radius: 2px;
	height: 40px;
	width: 100%;
	padding: 0 1em;
	vertical-align: top;
}
.actions button {
	width: 100%;
	font-size: 1em;
	margin-top: 1em;
	background-color: #232d37;
	border-radius: 2px;
	color: #fff;
	border-color: #232d37;	
}
.actions button:hover {
	border-color: #d63b3b;
}
.actions button[disabled] {
	display: none;	
}

.cross-sells {
	margin: 1em 0;
	padding: 1em;
	background-color: #fff;
}
.cross-sells h2 {
	margin-top: 0;
	font-size: 1em;
	font-weight: 800;
	margin-bottom: 1em;
}

.cart_totals {
	margin: 1em 0;
	padding: 1em;
	background-color: #fff;	
}
/* visually hide the h2 */
.cart_totals h2 {
	border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;	
}
.cart_totals tr {
	margin: 0;	
}
.shipping ul {
	list-style: none;
	margin: 0;
	padding: 0;	
}
.shipping ul li {
	margin: 0.5em 0;
}

.shipping-calculator-form p:first-child,
.shipping-calculator-form p:last-child {
	margin-top: 0;
}
.shipping-calculator-form select,
.shipping-calculator-form input[type="text"] {
	width: 100%;
	height: 32px;	
}
.shop_table td:last-child .shipping-calculator-form {
	text-align: left;	
}




.wc-proceed-to-checkout {
	margin-top: 1em;
}
.wc-proceed-to-checkout .button {
	width: 100%;
	font-size: 1em;
	margin: 0;
	text-align: center;	
}
.wc-proceed-to-checkout p {
	margin-bottom: 0;
	line-height: inherit;	
}
/* Checkout button is red */
.wc-proceed-to-checkout .checkout-button {
	background-color: #d63b3b;
	color: #fff;
	border-color: #d63b3b;	
}
.wc-proceed-to-checkout .checkout-button:hover {
	border-color: #d63b3b;
}

/* Chained products */
.chained-included {
	display: block;
	font-weight: bold;
	font-size: 0.875em;	
}
.chained-parent {
	font-size: 0.875em;
}


@media (min-width:37.5em) {
	
	/* 600px */
	.actions::after {
		content: ' ';
		display: table;
		clear: both;	
	}
	.coupon {
		float: left;	
	}
	.woocommerce .coupon input {
		width: auto;	
	}
	.actions button {
		width: auto;
		margin: 0 !important;
		height: 40px;
	}
	.actions button[name="update_cart"] {
		float: right;
		margin-top: 1.375em;	
	}

}

@media screen and (min-width: 48em) {
	/* 768px */
	/* This doesn't display anymore */
	.shop_table.cart th.product-name {
		opacity: 0;
	}
	/* Remove button loses text */
	table.shop_table_responsive tr td.product-remove a:after {
		display: none;
	}	
	
	/* th now displays - align to top for shipping form */
	.cart_totals th {
		border-top: 1px solid #ccc;
		vertical-align: top;
	}
	
}


@media screen and (min-width: 64em) {
	
	/* Cart page starts to have summary on right side */
	.woocommerce-cart-form {
		float: left;
		width: 65%;	
		margin-bottom: 1em;
	}
	.cart-summary {
		float: right;
		width: 32%;
	}
	.cart-cross-sells {
		clear: left;
		float: left;
		width: 65%;	
	}
	.cart_totals {
		margin-top: 0;
		margin-bottom: 1em;	
	}
	
	
}

@media screen and (min-width: 75em) {
	/* 1200px */
	
	/* more padding on left/right of these cart page blocks */
	.woocommerce-cart-form {
		padding: 1em 2em;	
	}
	.cart_totals {
		padding: 1em 2em 2em;	
	}
	.cross-sells {
		padding: 1em 2em;	
	}
	
}


/* Subscriptions specific - this row acts like a heading */
/* Probably remove this if they ever start using subscriptions */
tr.recurring-totals {
	display: none;	
}


/* Customer order pay page */
.woocommerce-order-pay form {
	max-width: 45em;
	margin-left: auto;
	margin-right: auto;	
}
.woocommerce-order-pay .methods {
	list-style: none;
	padding: 0;
}



/* Checkout page */


/* Checkout Login Form */
.bs-checkout-login {
	margin-bottom: 1em;	
}
.login-form-wrapper {
	background-color: #fff;
	padding: 1em;	
}
.login-form-text strong {
	display: block;
}
.login-form-wrapper .lost_password {
	margin-bottom: 0;	
}

/* coupon form */
.bs-checkout-coupon {
	margin-bottom: 1em;
	background-color: #fff;
	padding: 1em;		
}

/* button that toggles the coupon form */
.bs-checkout-coupon .coupon-toggle {
	width: 100%;
	border: 0;
	background: none;
	background-color: transparent;
	font-size: inherit;
	padding: 0;
	text-align: left;
}
.bs-checkout-coupon .coupon-toggle:hover,
.bs-checkout-coupon .coupon-toggle:focus {
	color: inherit;	
}
.coupon-toggle-icon {
	float: right;
	width: 16px;
	height: 16px;
	margin-top: 0.25em;
	transform: rotate(-90deg);	
}
/* Needs this to rotate evenly */
.coupon-toggle-icon svg {
	vertical=align: top;
}
.coupon-toggle[aria-expanded="true"] .coupon-toggle-icon {
	transform: rotate(90deg);	
}

/* The coupon form always shows (if it's toggled open) */
/* WC applies inline style to hide whenever the form is submitted */
.bs-checkout-coupon-form {
	display: block !important;
	height: auto !important;
}

/* Messages for coupons display right above the coupon form */
.coupon-form-wrapper .woocommerce-error,
.coupon-form-wrapper .woocommerce-message {
	margin: 1em 0;	
}


/* Messages for form fields display right above the checkout form */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
	margin: 1em 0;	
}

.bs-checkout-fields {
	padding: 1em;
	background-color: #fff;	
}

.woocommerce-billing-fields h3 {
	margin-top: 0;	
}

/* override select2 styles */
.select2-container--default .select2-selection--single {
	border-radius: 2px;
	height: auto;
	margin: 0;
	padding: 0.25em 0.5em;
	min-height: 2em; /* Needed when no selection has been made yet */
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: inherit;
	line-height: inherit;	
}


/* Need to override the extra line height set by the bs theme */
.woocommerce-checkout-review-order table > tbody > tr > td,
.woocommerce-checkout-review-order table > tbody > tr > th {
	line-height: inherit;	
}

/*.woocommerce-checkout-review-order table,*/
.woocommerce-checkout-review-order-table {
	display: block;
}
/* the thead and tbody are displayed as separate blocks */
.woocommerce-checkout-review-order thead,
.woocommerce-checkout-review-order tbody {
	display: block;
	padding: 1em;
	background-color: #fff;
	margin: 1em 0;
}
.woocommerce-checkout-review-order tr {
	display: table;
	width: 100%;
	vertical-align: top;
	border-top: 1px solid #ccc;
}

.woocommerce-checkout-review-order th,
.woocommerce-checkout-review-order td {
	padding: 1em 0;
}
/* Summary block  */
.woocommerce-checkout-review-order thead .summary-heading {
	border-top: 0;
}
.woocommerce-checkout-review-order thead .summary-heading th {
	padding-top: 0;
}
.woocommerce-checkout-review-order thead .order-total th,
.woocommerce-checkout-review-order thead .order-total td {
	padding-bottom: 0;
}

/* Your Cart block */
.woocommerce-checkout-review-order tbody .cart-heading {
	border-top: 0;
	vertical-align: middle;	
}
.woocommerce-checkout-review-order tbody .cart-heading th,
.woocommerce-checkout-review-order tbody .cart-heading td {
	padding-top: 0;
}
.woocommerce-checkout-review-order tbody .product-image {
	width: 60px;	
}
.woocommerce-checkout-review-order tbody .product-name {
	padding: 1em;	
}
.woocommerce-checkout-review-order tbody tr:last-child td {
	padding-bottom: 0;	
}


/* Payment block */
.woocommerce-checkout-payment {
	padding: 1em;
	background-color: #fff;
	margin: 1em 0;
	position: relative;
}
.woocommerce-checkout-payment .methods {
	list-style: none;
	margin: 0;
	padding: 0;	
}
.woocommerce-checkout-payment button {
	width: 100%;
	background-color: #d63b3b;
	color: #fff;
	border-color: #d63b3b;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	margin: 1em 0 0;
}
.woocommerce-checkout-payment button:hover {
	border-color: #d63b3b;
}


@media(min-width: 37.5em) {
	
	/* Checkout login form goes to two columns  */
	.woocommerce-form-login .form-row-first {
		float: left;
		width: 50%;
		padding-right: 0.5em;
	}
	.woocommerce-form-login .form-row-last {
		float: right;
		width: 50%;
		padding-left: 0.5em;
	}
	.woocommerce-form-login .clear {
		clear: both;	
	}
	
	
	/* things get floated now */
	.woocommerce-checkout::after {
		content: '';
		display: block;
		clear: both;	
	}
	
	/* billing / shipping fields start to have two columns */
	.woocommerce-billing-fields__field-wrapper,
	.woocommerce-shipping-fields__field-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
	}
	.bs-checkout-fields .form-row {
		width: calc(50% - 0.5em);
	}
	/* Not all fields */
	#billing_email_field,
	#order_comments_field {
		width: 100%;
	}
	
	/* order-review, payment go side by side */
	.woocommerce-checkout-review-order::after {
		content: '';
		display: block;
		clear: both;	
	}
	.woocommerce-checkout-review-order-table {
		float: left;
		width: 50%;
		padding-right: 0.5em;	
	}
	.woocommerce-checkout-payment {
		float: right;
		width: calc(50% - 0.5em);
	}
	
	.woocommerce-checkout-payment button {
		width: auto;
		float: right;	
	}
	
}

@media(min-width: 64em) {
	
	/* Starts to have billing and shipping fields on left, everything else on right side */
	
	
	
	.bs-checkout-login,
	.bs-checkout-coupon,
	.bs-checkout-fields {
		float: left;
		width: 65%;	
	}
	.bs-checkout-login,
	.bs-checkout-coupon {
		margin-bottom: 2em;
	}
	.woocommerce-checkout-review-order {
		margin-left: 68%;
		width: 32%;
	}
	.woocommerce-checkout-review-order-table {
		float: none;
		width: 100%;
		padding-right: 0;	
	}
	.woocommerce-checkout-review-order thead {
		margin-top: 0;	
	}
	.woocommerce-checkout-review-order tbody {
		margin: 2em 0;
	}
	.woocommerce-checkout-payment {
		float: none;
		width: 100%;	
	}
	.woocommerce-checkout-review-order::after {
		display: none;	
	}
	.place-order::after {
		content: '';
		display: block;
		clear: right;	
	}
	.woocommerce-NoticeGroup-checkout {
		float: left;
		width: 65%;
	}	
	.woocommerce-checkout .woocommerce-error, 
	.woocommerce-checkout .woocommerce-message {
		margin-top: 0;
		margin-bottom: 2em;	
	}
}












/* Order received page */
.woocommerce-order {
	width: 100%;
	padding: 20px;
	background-color: #fff;
}

ul.order_details {
	list-style: none;
	padding: 0;	
}

.order_details > li {
	font-size: 0.875em;
	text-transform: uppercase;
}

ul.order_details > li strong {
	display: block;
	font-size: 1.125em;
	text-transform: none;
}

.woocommerce-order .shop_table,
.woocommerce-order-details .shop_table {
	border: 1px solid #aaa;
	border-collapse: collapse;
}

.woocommerce-order .shop_table th,
.woocommerce-order .shop_table td,
.woocommerce-order-details .shop_table th,
.woocommerce-order-details .shop_table td {
	line-height: inherit;
	padding: 1em;
	vertical-align: top;
}

.woocommerce-order .shop_table tbody th,
.woocommerce-order .shop_table tbody td,
.woocommerce-order .shop_table tfoot th,
.woocommerce-order .shop_table tfoot td,
.woocommerce-order-details .shop_table tbody th,
.woocommerce-order-details .shop_table tbody td,
.woocommerce-order-details .shop_table tfoot th,
.woocommerce-order-details .shop_table tfoot td  {
	border-top: 1px solid #aaa;
}


@media (min-width: 48em) {
	
	/* need to override these rules for the downloads table */
	.woocommerce-order-downloads table.shop_table_responsive tr th:first-child,
	.woocommerce-order-downloads table.shop_table_responsive tr td:first-child {
		padding-left: 1em;	
	}
	.woocommerce-order-downloads table.shop_table_responsive tr th:last-child,
	.woocommerce-order-downloads table.shop_table_responsive tr td:last-child {
		padding-right: 1em;
	}
	
		
}



/**
 * My Account Pages 
 *
 */


.username-logout-block {
	padding: 1em;
	background-color: #fff;
	margin: 1em 0;
	text-align: center;	
}
.ulb-username {
	font-size: 1.125em;
	font-weight: bold;	
}
.ulb-logout {
	margin-bottom: 0;
}

/* Button that toggles the account nav on mobile */
button.account-nav-toggle {
	width: 100%;
	padding: 1em;
	background-color: #fff;	
}
button.account-nav-toggle:hover {
	background-color: #fff;
}

.account-nav-toggle-text {
	font-weight: bold;	
}
.account-nav-toggle-icon {
	float: right;
	width: 16px;
	height: 16px;
	transform: rotate(-90deg);	
}
.account-nav-toggle[aria-expanded="true"] .account-nav-toggle-icon {
	transform: rotate(90deg);
}

.bs-account-navigation {
	position: absolute;
	left: -9999em;
	visibility: hidden;	
}
.bs-account-navigation.expanded {
	position: static;
	visibility: visible;
}
.woocommerce-MyAccount-navigation {
	background-color: #fff;	
}
.woocommerce-MyAccount-navigation li {
	padding: 1em;
	border-top: 1px solid #f3f3f3;
}
.woocommerce-MyAccount-navigation li a {
	font-weight: bold;
}
.woocommerce-MyAccount-navigation li.is-active a {
	color: #d63b3b;
}

.woocommerce-MyAccount-content {
	margin: 1em 0;
	padding: 1em;
	background-color: #fff;	
}

/* Disable the yellow highlighting on the <mark> elements here */
.woocommerce-MyAccount-content mark {
	background: none;
	color: inherit;	
}


/* Subscriptions specific tables */
.shop_table.subscription_details,
.shop_table.order_details {
	border: 1px solid #aaa;
	border-collapse: collapse;
}
.shop_table.subscription_details th,
.shop_table.subscription_details td,
.shop_table.order_details th,
.shop_table.order_details td {
	line-height: inherit;
	padding: 1em;
	vertical-align: top;
	border-top: 1px solid #aaa;
}


/* Remove the next bill on column from membership table */
table.shop_table_responsive tr th.membership-next-bill-on,
table.shop_table_responsive tr td.membership-next-bill-on {
	display: none ;	
}


@media(min-width: 64em) {
	
	/* My account pages start to have nav on left, content on right */
	.woocommerce::after {
		content: '';
		display: block;
		clear: both;
	}
	.my-account-aside {
		float: left;
		width: 32%;
	}
	.woocommerce-MyAccount-content {
		float: right;
		width: 65%;
		min-height: 530px; /* magic number :( */
	}
	
	/* Reset center-aligned text */
	.username-logout-block {
		text-align: inherit;	
	}
	
	/* No more toggle button on the nav */
	.account-nav-toggle {
		display: none;	
	}
	.bs-account-navigation {
		display: block !important; /* This may have been hidden with js slideUp() */
		position: static;
		visibility: visible;
	}
	
}




/* user uploaded image on membership-registration page */
.signup-logo {
	max-width: 270px;	
}


/* Tribe events has whack styles - this would go away above 768px */
#tribe-events-pg-template {
	padding: 40px 20px 20px;
}



/* Put the user switching link at the top of the page (requested by BS) */
#user_switching_switch_on {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	padding: 0.5em 1em;
	background: #fff;
	border: 1px solid #000;
}



/* this bs theme doesn't include basic utility classes */
.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://goo.gl/yc91cM
 */

.visuallyhidden,
.screen-reader-text {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}
