@charset "UTF-8";
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
Theme Name: Weka Customer Portal Theme
Author: Weka Online
Author URI: https://wekaonline.co.nz/
Description: Add a description please...
Requires at least: 5.3
Tested up to: 5.8
Requires PHP: 5.6
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: weka-customer-portal

*/
@font-face {
	font-family: 'AvenirNext';
	src: url('assets/fonts/AvenirNextLTPro-Bold.otf') format('OpenType'),
		 url('assets/fonts/AvenirNextLTPro-It.otf') format('OpenType'),
		 url('assets/fonts/AvenirNextLTPro-Regular.otf') format('OpenType');
	font-weight: normal;
	font-style: normal;
 }
 @font-face {
	font-family: 'Avenir';
	src: 
		 url('assets/fonts/AvenirLTStd-Roman.otf') format('OpenType'),
		 url('assets/fonts/AvenirLTStd-Book.otf') format('OpenType');
	font-weight: normal;
	font-style: normal;
 }

body {
	font-family: "Avenir", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 14px;
	padding: 0;
	margin: 0;
	color: #222;
	
}

a {
	color: inherit;
	text-decoration: none;
}
.site-container {
	background: #f1f1f1;
	min-height: 100vh;
	/* padding-bottom: 400px; */
	padding-bottom: 180px;
	position: relative;
}

/* @media (max-width: 1450px){
	.site-container{
		padding-bottom: 300px;
	}
} */

@media(max-width: 1250px){
	.site-container{
		/* padding-bottom: 500px; */
		padding-bottom: 204px;
	}
}

@media(max-width: 800px){
	.site-container{
		/* padding-bottom: 600px; */
		padding-bottom: 229px;
	}
}

@media(max-width: 600px){
	.site-container{
		/* padding-bottom: 900px; */
		padding-bottom: 278px;
	}
}

.main.container {
	/* padding: 1rem 6rem; */
	/* padding-left: 10rem; */
	/* padding-right: 10rem; */
	padding-bottom: 1rem;
	padding-top: 64px;
	/* width: auto; */
	min-height: 91vh;
}

@media(max-width: 888px){
	.main-container{
		padding: 1rem 2rem;
	}
}

.container{
	padding: 0 7rem;
	max-width: none !important;
}
@media(max-width:1640px){
	.container{
		padding: 0 5rem;
	}
}
@media(max-width:1540px){
	.container{
		padding: 0 4rem;
	}
}
@media(max-width:1440px){
	.container{
		padding: 0 3rem;
	}
}
@media(max-width:1240px){
	.container{
		padding: 0 2rem;
	}
}
@media(max-width:888px){
	.container{
		padding: 0 1rem;
	}
}
/* @media(max-width:850px){
	.container{
		margin: 0 2rem;
	}
}
@media(max-width:750px){
	.container{
		margin: 0 1rem;
	}
}
@media(max-width:650px){
	.container{
		margin: 0 1rem;
	}
} */

.sub-menu.main-container{
	width: calc(100% - 12rem);
}

/* 	##################################################################
	##																##
	##																##
	##								Header							##
	##								______							##
*/
header {
	background: white;
	padding: .25rem 0;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
}
.logo-container {
	display: flex;
	align-items: center;
	/* padding: .5rem 0 .5rem 6rem; */
}
.main-logo {
	/* height: 4em; */
	max-height: 4rem;
}
.logo-text {
	margin: 0 .5rem;
	font-style: italic;
	color: #444;
	font-size: .75rem;
	letter-spacing: 2px;
}


/* 	##################################################################
	##																##
	##																##
	##								Body							##
	##								______							##
*/
.placeholder-text {
	text-align: center;
	color: #888;
}

.portal-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 2fr minmax(0, 1fr); /*1fr 2fr 1fr;*/
	/* gap: 1rem; */
	max-width: 100%;
	margin: 0;
	padding: 0;
	height: 100%;
	/* padding: 1rem 0; */
	/* padding-bottom: 1rem; */
}
.portal-panel {
	background: white;
	/* box-shadow: 2px 2px 3px rgba(0,0,0,0.15); */
	border-radius: 2px;
	margin: 0;
}
.portal-panel-container {
	padding: 1rem;
}
.portal-panel-header {
	margin: 0;
	font-family: "AvenirNext";
}

.portal-container.grid-1-2{
	display: grid;
	grid-template-columns: 1fr 2fr;
	/* grid-template-columns: 270px 2fr; */
}
.portal-container.grid-1-3{
	display: grid;
	grid-template-columns: 1fr 4fr;
	/* grid-template-columns: 270px 3fr; */
}

@media(max-width: 1050px){
	.portal-container.grid-1-3{
		display: grid;
		grid-template-columns: 100%;
	}	
}
.grid-1-auto{
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;

}

/* 	##################################################################
	##																##
	##																##
	##							Products							##
	##							________							##
*/
.products-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	/* grid-template-columns: 1fr; */
}

/* 	##################################################################
	##																##
	##																##
	##							Editor panel						##
	##							_____								##
*/
.portal-editor-open {
	position: absolute;
	top: 8rem;
	right: 1rem;
	color: #0097dc;
	font-size: 1.2rem;
	background: white;
	padding: .5rem .5rem .7rem .7rem;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
	border-radius: 100%;
	transition: all .2s;
}
.portal-editor-open:hover {
	background: #0097dc;
	color: white;
	cursor: pointer;
}
.editor-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	z-index: 10;
}
.editor-panel-container {
	background: white;
	margin: 5rem auto;
	width: 50%;
	border-radius: 5px;
	padding: 2rem;
}
.editor-grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: .5rem;
}
.editor-cell {
	/* border: 1px solid #46cdd0; */
	background: #e5e5e5;
	border-radius: 4px;
	padding: 1rem;
}
.editor-cell p {
	margin: 0;
}
.editor-cell select {
	background: white;
	border: none;
	border-radius: 3px;
	padding: .5rem;
	width: 100%
}
.layout-1-3 {
	grid-template-columns: 1fr 4fr;
	/* grid-template-columns: 270px auto; */
}
.layout-1-1 {
	grid-template-columns: 1fr 1fr;
}
.layout-1-2-1 {
	grid-template-columns: 1fr 3fr 1fr;
}

@media (max-width: 1050px) {
	.layout-1-2-1, .layout-1-3 {
		grid-template-columns: 100%;
	}
	.portal-container{
		gap: 1rem;
	}
}

.layout-options {
	display: flex;
	padding: 1rem 0;
}
.layout-option {
	display: grid;
	gap: 3px;
	width: 4rem;
	height: 4rem;
	margin-right: 2rem;
	padding: 4px;
	cursor: pointer;
	transition: all .2s;
	border: 2px solid transparent;
}
.layout-option.active {
	border: 2px solid #0097dc;
	border-radius: 10px;
}
.layout-option.active div {
	background: #0097dc;
}
.layout-option.active:hover div {
	background: #0097dc;
}
.layout-option:hover div {
	background: #46cdd0;
}
.layout-option div {
	background: #d2e9e9;
	height: 100%;
	width: 100%;
	border-radius: 3px;
	transition: all .2s;
}

/* 	##################################################################
	##																##
	##																##
	##							Misc								##
	##							_____								##
*/
.subheading {
	color: #bbb;
}
.inline {
	display: inline;
}
.highlight-text {
	color: #0097dc !important;
}
.align-left, .portal-table tr td.align-left{
	text-align: left;
}
.no-margin {
	margin: 0;
}
.large-text {
	font-size: 1.6rem;
}
.individual-list-item {
	color: #666;
	font-size: .9rem;
	margin: .5rem 0;
}
.order-again {
	padding: 2px 0;
	margin: 0;
	color: #0097dc;
	border: 2px solid #0097dc;
	border-radius: 4px;
	transition: all 0.2s;
	text-align: center;
}
.order-again:hover, .order-again:focus {
	background: #0097dc;
	color: white;
	cursor: pointer;
}
.additional-items {
	background: #ccc;
	padding: 1px 4px;
	color: white;
	border-radius: 4px;
	font-size: .75rem;

}
.portal-table {
	width: 100%;
	border: none;
	font-size: 14px;
	font-weight: 400;
	font-family: 'Avenir';
}
.portal-table tr:first-child{
	background: red;
	border-radius: 3px;
}
.portal-table tr:first-child th:first-child {
	border-radius: 4px 0 0 4px;
}

.portal-table thead tr th:last-child {
	border-radius: 0px 4px 4px 0px;
}
.portal-table thead th {
    padding: .5rem 0;
}
.portal-table tr {
    border-bottom: 1px solid #F5F5F5;
}
.portal-table tr td{
    padding: .75em 0;
    font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, ‘Open Sans’, ‘Helvetica Neue’, sans-serif;
    color: #5D5D5D;
}
.portal-table tr td.orange-text a{
    color: #CA3B3B;
}
.portal-table th, .portal-table td{
    text-align: center;
}
.portal-table td:first-child{
	text-align: left;
}
.portal-table td:last-child{
	/* text-align: right; */
}
.portal-table.single th, .portal-table.single td {
    text-align: left;
    padding-left: 1em;
    padding-right: 1em;
}
.portal-table tr:nth-child(odd){
	background: #f9f9f9;
}
.portal-table i:hover {
    color: #CA3B3B;
    cursor: pointer;
}
.portal-table i.fa-trash {
    transition: all 0.2s;
}
.portal-table i.fa-trash:hover {
    color: rgb(218, 70, 70);
}
.td-text {
	margin:0;
	padding: .25em 0;
}
.td-text.re-order {
	color: #0097dc;
	border: 2px solid #0097dc;
	border-radius: 4px;
	transition: all 0.2s;
}
.td-text.re-order:hover, .td-text.re-order:focus {
	background: #0097dc;
	color: white;
	cursor: pointer;
}
.status-style {
	text-align: center;
	font-weight: 600;
	padding-bottom: .3rem;
}
.status-style.completed {
	background: #0097dc;
	color: white;	
}
.status-style.pending {
	background: #ffc75f;
	color: white;	
}
.status-style.cancelled {
	background: #ff6a6a;
	color: white;	
}
.status-style.on-hold {
	background: #ccc;
	color: white;	
}
.status-style.processing {
	background: #83f3d5;
	color: white;
}
.button-column {
	display: flex;
	flex-flow: column;
	padding: 2rem;
}
.button-column a {
	text-align: center;
	margin: .25rem 0;
	padding: .5rem 0;
}
.weka-button {
	border-radius: 4px;
	border: 2px solid #0097dc;
	color: #0097dc;
	cursor: pointer;
}
.large-button {
	font-size: 1rem;
	padding: .5rem 2rem;
	margin-top: 1rem ;
}
.weka-button.main-button {
	background: #0097dc;
	color: white;
}
.weka-button.accent-button {
	background: #46cdd0;
	color: white;
	border: 2px solid #46cdd0;
	transition: all.2s;
}
.weka-button.accent-button:hover, .weka-button.accent-button:focus {
	background: #0097dc;
	border-color: #0097dc;
}
.form-input-group {
	display: flex;
	flex-flow: column;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}


.hide {
	display: none;
}
.panels-column {
	display: grid;
	grid-template-columns: 1fr;
	/* gap: 1rem; */
	grid-auto-rows: min-content min-content auto;
}

@media(max-width: 1050px){
	.panels-column{
		grid-template-columns: 100%;
	}
}

.exit-editor {
	color: RED;
	float: right;
	font-size: 1rem;
}
.exit-editor p {
	margin: 0;
}
.exit-editor:hover {
	text-decoration: underline;
	cursor: pointer;
}
.results-and-sort-by{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.results-and-sort-by h3.portal-panel-header{
	margin-bottom: 0;
}

@media(max-width: 600px){
	.results-and-sort-by{
		flex-direction: column;
	}

	.results-and-sort-by h3.portal-panel-header{
		margin-bottom: 1rem;
	}
	.results-controls{
		flex-wrap: wrap;
	}
}


.results-controls{
	/* position: absolute;
	right: 1rem;
	top: 1rem; */
	display: flex;
	align-items: center;
	gap: .5rem;
	justify-content:center;
}
.select-s {
	background: #f3f3f3;
	border-radius: 3px;
	padding: 3px;
	font-size: 1rem;
	margin: 0 .5rem;
}
.button-xs {
	background: #f3f3f3;
	border-radius: 3px;
	margin: 0 .25rem;
	padding: 3px .5rem;
	transition: all .2s;
}
.button-xs:hover, .button-xs:focus {
	background: #46cdd0;
	cursor: pointer;
}
.button-xs.active:hover, .button-xs.active:focus {
	background: #0097dc;
	cursor: inherit;
}
.button-xs.active {
	background: #0097dc;
	color: white;
}

.quickview-variation {
	display: flex;
}



/* Search input styles */
.search-input-container {
	display: flex;
	/* display: grid; */
	/* grid-template-columns: 80% 10% 10%; */
	position: relative;
	overflow: hidden ;
}
#search-results {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
	background: #e6e6e6;
	max-height: 190px;
	overflow-y: auto;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
#search-product-input {
	/* border: 1px solid #ddd; */
	border-radius: 4px;
	padding: .25rem;
	/* font-size: 1.1rem; */
}
#search-product-quantity {
	background: #666;
	color: white;
}
.search-result-item {
	padding: .75rem;
	border-bottom: 1px solid #ddd;
	font-weight: bold;
	font-size: 1.1rem;
	display: grid;
	grid-template-columns: 20% 15% 65%;
	align-items: center;
}
.search-result-item:hover {
	color: white;
	cursor: pointer;
}
.search-result-item:hover span{
	color: white;

}
.search-result-item-image {
	height: 2rem;
	width: auto;
	margin-right: 1rem;

}
.search-result-item span {
	margin-left: 2rem;
	font-size: .8rem;
	color: #0097dc;

}
/* From old main.css
		||   ||
	    \/   \/
*/

body.customize-support .header-link.has-dropdown#user-dropdown-link .sub-menu {
	padding-top: .75rem;
}
.choose-product select {
	background-color: #F5F5F5;
	border: 1px solid #838383;
	border-radius: 4px;
	padding: 4px;
	cursor: pointer;
  }

  .address-item {
	position: relative;
	/* border: 3px solid #bbb; */
	border-radius: 5px;
	position: relative;
	background: #eee;
	color: #666;
	cursor: pointer;
}

.portal-panel-header {
	font-size: 1.5rem;
	line-height: 1rem;
	margin-bottom: .75rem;
}


/* .layout-1-3 .panels-column:first-child {
  width: 270px;
} */
/*# sourceMappingURL=main.css.map */


.fitler-header {
	margin:0 0 .5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
  }
  .reset-filters {
	display: flex;
	align-items: center;
	margin: .5rem 0; 
  }
  .reset-filters i {
	font-size: 22px;
	margin: 0 .6rem 0 0;
	color: #bbb;
  }

  .reset-filters p {
	  font-size: 16px;
	  font-weight: bold;
	  padding-bottom: 2px;
  }

  .prod-filter-cat {
	cursor: pointer;
	padding: .5rem 0;
  }
  .prod-filter-subcat-item{
	  margin-top: 2px;
	  margin-bottom: 2px;
  }
  .prod-filter-cat-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1rem;
	font-weight: bold;
  }
  .ui-state-default, .ui-widget-content .ui-state-default {
	border-radius: 100%;
	background: #0f67a4;
  }
  #slider-range.ui-slider-horizontal {
	height: 4px;
  }
  #slider-range.ui-slider-horizontal .ui-slider-handle {
	top: -9px;
	border: none;
  }
  .price-range-amounts {
	padding: .5rem 0;
	display: flex;
	justify-content: space-between;
  }
  .price-range-amounts input {
	font-weight: bold;
	width: 100px;
  }
  .filter-selection {
	width: .8rem;
	height: .8rem;
	border-radius: 50%;
	background: #ddd;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 5px;
  }
  
  .filter-selection-inner {
	width: 70%;
	height: 70%;
	border-radius: 50%;
  }
  .filter-selection.selected .filter-selection-inner {
	background: #0f67a4;
  }
  #filter-promo {
	border: 1px solid #aaa;
	border-radius: 2px;
	width: 100%;
	padding: .25rem .5rem .4rem .5rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #444;
	letter-spacing: 1px;
  
  }
  .layout-1 {
	grid-template-columns: 1fr;
  }
  
  .reset-filters-button {
	cursor: pointer;
  }
  .portal-breadcrumbs{
	padding: 1rem 1rem;
  }
  .portal-breadcrumbs p {
	display: inline;
	font-weight: 600;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .remove-text, .edit-text {
	display: none;
	position: absolute;
	width: 100px;
	height: 2rem;
	align-items: center;
	justify-content: center;
	top: 40%;
	left: 50%;
	margin-top: -1rem;
	margin-left: -50px;
	text-align: center;
	border-radius: 5px;
	color: white;
  }
  .remove-address:hover ~ .remove-text {
	display: flex;
	background: #E95B5B;
  }
  .edit-address:hover ~ .edit-text {
	display: flex;
	background: #1179C0;
  }
  
  
  .portal-panel.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
  }

  @media(max-width: 1050px){
	  .portal-panel.product{
		  grid-template-columns: 100%;
	  }
  }
  .portal-panel.product .summary {
	padding: 1rem 0;
	
  }
  .portal-panel.product .woocommerce-tabs {
	grid-area: auto/1/auto/3;
	padding-top: 1rem;
  }
  .portal-panel.product .woocommerce-tabs .tabs{
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-items: center;
  }
  .portal-panel.product .woocommerce-tabs .tabs li{
	padding: .5rem 1rem;
	color: white;
	font-weight: bold;
  }
  .woocommerce-Tabs-panel {
	background: white;
	margin: 0 1rem 1rem 1rem;
	border-radius: 3px;
	padding: 1rem;
  }
  .portal-panel.product .woocommerce-tabs .tabs .active {
	background: white;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
  }
  .portal-panel.product .related-products {
	grid-area: auto/1/auto/3;
  }
  .portal-panel.product .related.products .products{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
  }
  .portal-panel.product .related.products .product{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	text-align: center;
  }
  .portal-panel.product .related.products .product .woocommerce-loop-product__title {
	font-weight: bold;
  }
  .portal-panel > .onsale {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgb(216, 61, 61);
	color: white;
	padding: .25rem 1rem;
	border-radius: 5px;
	font-weight: bold;
  }
  .portal-panel.product .woocomm {
	grid-area: auto/1/auto/3;
  }
  .portal-panel.product .product_title {
	font-size: 2rem;
  }
  .portal-breadcrumbs .fa-angle-right {
	margin: 0 .5rem;
  }
  .related-products-header {
	font-size: 1.5rem;
  }
  .pagination-box {
	/* position: absolute; */
	/* right: 1rem;
	bottom: 1rem; */
	display: flex;
	justify-content: left;
	align-items: left;
	margin-top: 2em;
  }
  .pagination-box.top {
	/* top: 3.5rem;
	bottom: auto; */
  }
  .pagination-box .page{
	margin: 0 .5rem 2px .5rem;
	font-weight: bold;
	display: inline;
  }
  .pagination-box i {
	font-size: 1.25rem;
  }
  .no-results-container {
	color: grey;
  }
  
  /* COMBINED CART & CHECKOUT */
  
  .woocommerce-cart-form table img {
	max-height: 3rem;
	width: auto;
  }
  .custom-checkout-header {
	font-size: 1.5rem;
  }
  .woocommerce-cart-form table {
	box-shadow: none;
  }
  .custom-checkout  table tr:first-child th {
	border-bottom: 2px solid grey;
	padding: 1rem 0 .3rem 0;
  }
  .custom-checkout .woocommerce table.shop_table {
	border: none;
  }
  .custom-checkout .product-thumbnail {
	display: flex;
	align-items: center;
  }
  .custom-checkout .product-thumbnail .attachment-woocommerce_thumbnail {
	height: 8rem;
	width: 8rem;
	max-height: 8rem;
  }
  .custom-checkout-cart-item-name {
	display: flex;
	flex-flow: column;
  }
  .custom-checkout-cart-item-name a {
	font-weight: bold;
	padding: .5em 0
  }
  .custom-checkout .woocommerce table.shop_table td {
	padding: 0.5rem;
  }
  .custom-checkout-cart-item-sku {
	color: #666;
	font-size: .8em;
  }
  .custom-checkout .product-remove {
	text-align: center;
  }
  
  .custom-checkout-footer {

	gap: 4rem;
	padding: 1rem;
	padding-left: 2rem;
  }

  @media(max-width: 1050px){
	  .custom-checkout-footer{
		  grid-template-columns: 1fr;
	  }
  }
  .custom-checkout-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-bottom: auto;
	width: 100%;
  }
  .custom-checkout-actions > p {
	background: #eee;
	border-radius: 4px;
	margin: .25rem;
	padding: .25em 0;
	text-align: center;
	font-weight: 600;
	cursor: pointer;
  }
  .redeem-coupon {
	margin: .25rem;
  }
  .redeem-coupon p {
	height: 100%;
  }
  .redeem-coupon input {
	border: 1px solid #ccc;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	text-align: center;
  }
  
  .custom-checkout-address {
	margin-top: 2rem;
  }
  .custom-checkout-address-box {
	position: relative;
	top: 0;
	left: 0;
	overflow-y: auto;
	background: white;
	z-index: 2000;
  }
  .custom-checkout-address-section {
	padding: 1rem;
	padding-right: 2rem;

  }

  .custom-checkout-address-dropdown {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	bottom: 0;
	background: linear-gradient(transparent, white);
	font-size: 2rem;
  }
  .add-address-button {
	display: block;
	background: #1179C0;
	text-align: center;
	color: white;
	font-weight: 600;
	margin: .25em;
	padding: .25em;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 70%;
  }
  .add-address-button i{
	color: white;
	float: right;
	position: absolute;
	right: .5rem;
  
  }
  .custom-checkout-address-list {
	  margin-top: 1rem;
	  padding-top: 0;
	padding: .25rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
  }
  .custom-checkout .address-item-grid {
	font-size: .8rem;
  }
  
  .custom-order-summary {
	display: flex;
	flex-flow: column;
	margin-top: 1rem;
  }
  .checkout-address-item {
	display: flex;
	flex-flow: column;
  }
  .checkout-address-item a {
	margin-top: auto;
  }
  .custom-order-summary-row {
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 20%;
	margin: .5rem 0;
  }
  .custom-order-summary-row p:first-child {
	text-align: right;
	font-weight: 500;
	font-size: 1rem;
  }
  .custom-order-summary-row p {
	font-size: 1.1rem;
	font-weight: 700;
	text-align: right;
  }
  .custom-payment-methods {
	
  }
  .woocommerce-checkout-review-order-table thead, .woocommerce-checkout-review-order-table tbody {
	
	  display: none;
  }
  
  .custom-checkout #customer_details {
	/* display: none; */
  }
#checkout-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#cart-section {
	grid-column: 1/3;
}

  .address-item-grid-2{
	display: grid;
	grid-template-columns: 10% 45% 45%;
	padding: .75rem;
	font-size: .8rem;
  }
  
  .categories-grid {
	padding: 1rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
  }
  .category-grid-item {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	min-height: 120px;
  }
  .categories-grid .category-img {
	height: auto;
	width: auto;
  }
  .center-header-2 {
	text-align: center;
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 600;
	margin: 1rem 0 2.5rem 0;
	padding: 0 1.2rem;
  }
  .button-center {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  .brand-collateral-link {
	margin: 5px 0;
	display: inline-block;
  }
  .brand-collateral-link:hover, .brand-collateral-link:focus {
	text-decoration: underline;
  }
  .custom-search {
	background: #e8e8e8;
	width: 100%;
	display: block;
	border-radius: 4px;
	padding: 3px;
  
  }
  .order-details-header-grid {
	display: grid;
	grid-template-columns: 70% auto;
	font-size: 18px;
  }
  .order-details-actions {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
  }
  .order-details-add .button,  .order-details-actions .button, .approve-order-button {
	background: #eee;
	width: 10em;
	margin: 2px;
	padding: .25rem;
	text-align: center;
	border-radius: 5px;
	font-weight: 600;
	transition: .2s all;
  }
  .order-details .woocommerce-order-details {
	margin: 1rem 0;
  }
  .order-details .woocommerce-order-details__title {
	font-size: 18px;
	
	padding-bottom: 5px;
  }
  .order-details .woocommerce-table--order-details {
	  font-size: 18px;
	width: 100%;
	margin: .5rem 0;
  }
  .order-details .woocommerce-table thead th {
	text-align: left;
	padding: .25rem;
  }
  .order-details .woocommerce-table thead th:first-child {
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	width: 80%;
  }
  .order-details .woocommerce-table thead th:last-child {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
  }
  .order-details .woocommerce-table tfoot th {
	text-align: right;
	padding-right: 2rem;
  }
  .order-details .woocommerce-table tfoot tr:first-child th, .order-details .woocommerce-table tfoot tr:first-child td {
	padding-top: 1rem;
  }
  .order-details .woocommerce-table tbody tr td, .order-details .woocommerce-table tfoot tr td {
	padding: .5rem .25rem;
	font-size: .9rem;
  }
  .order-details .woocommerce-column__title {
	font-size: 1rem;
	font-weight: 700;
  }
  .weka-table {
	width: 100%;
  }
  .sub-header {
	font-weight: 600;
	margin-top: 1.5rem;
  }
  .weka-table thead th {
	background: #eee;
	text-align: left;
	padding: .25rem;
  }
  .weka-table thead th:first-child {
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
  }
  .weka-table thead th:last-child {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
  }
  .weka-table tbody tr td{
	padding: .5rem .25rem;
  }
  .weka-table tbody tr:nth-child(even){
	background: #f6f6f6;
  }
  
  .add-team-member-form div {
	display: grid;
	grid-template-columns: 19% auto;
	padding: .5rem 0;
  }
  .add-team-member-form input{
	background: #eee;
	padding: 2px 4px;
  }
  .add-team-submit {
	padding: .25rem 1.5rem;
	margin: .5rem 0 0 0;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	transition: all .2s;
  }
  
  .approve-order-submit {
	padding: .25rem 1.5rem;
	margin: 0;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	transition: all .2s;
  }


  /* Custom SPINNER */
  .loading-container {
	display: none;
  }
  .loading-container .sk-cube-grid {
	margin: 0;
  }
  .spinner-container {
	left: 0;
	top: 0;
	position: fixed;
	width: 100vw;
	height: 100vh;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,.2);
	z-index: 3000;
	display: none;
	
  }
  .sk-cube-grid {
  
	width: 40px;
	height: 40px;
	margin: 100px auto;
  }
  
  .sk-cube-grid .sk-cube {
	width: 33%;
	height: 33%;
	background-color: #333;
	float: left;
	-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
			animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
  }
  .sk-cube-grid .sk-cube1 {
	-webkit-animation-delay: 0.2s;
			animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube2 {
	-webkit-animation-delay: 0.3s;
			animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube3 {
	-webkit-animation-delay: 0.4s;
			animation-delay: 0.4s; }
  .sk-cube-grid .sk-cube4 {
	-webkit-animation-delay: 0.1s;
			animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube5 {
	-webkit-animation-delay: 0.2s;
			animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube6 {
	-webkit-animation-delay: 0.3s;
			animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube7 {
	-webkit-animation-delay: 0s;
			animation-delay: 0s; }
  .sk-cube-grid .sk-cube8 {
	-webkit-animation-delay: 0.1s;
			animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube9 {
	-webkit-animation-delay: 0.2s;
			animation-delay: 0.2s; }
  
  @-webkit-keyframes sk-cubeGridScaleDelay {
	0%, 70%, 100% {
	  -webkit-transform: scale3D(1, 1, 1);
			  transform: scale3D(1, 1, 1);
	} 35% {
	  -webkit-transform: scale3D(0, 0, 1);
			  transform: scale3D(0, 0, 1); 
	}
  }
  
  @keyframes sk-cubeGridScaleDelay {
	0%, 70%, 100% {
	  -webkit-transform: scale3D(1, 1, 1);
			  transform: scale3D(1, 1, 1);
	} 35% {
	  -webkit-transform: scale3D(0, 0, 1);
			  transform: scale3D(0, 0, 1);
	} 
  }
  
  @media only screen and (max-width: 1600px){
	.main-container {
	  padding: 5rem 6rem 24px 6rem;
	}
	.categories-grid {
	  grid-template-columns: 1fr 1fr;
	}
	.container {
	  /* padding-left: 6rem;
	  padding-right: 6rem; */
	}
  }
  
  
  .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	transition: width .5s;
  }
  .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
	width: 400px;
  }
  .single_add_to_cart_button {
	border: 2px solid white;
  }

	.custom-add-to-quote-button {
	  margin: 0;
	  background: white !important;
	  border: 2px solid white;
	  display: inline-block;
	  text-align: center;
	  line-height: 24px;
	  height: 38px;
	  border-radius: 5px;
	}
  .woocommerce-variation-add-to-cart .custom-add-to-quote-button {
	margin-top: .5rem;
	border-radius: 5px;
  }
  .set-active-quote-container {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.32);
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 4000;
  
  }
  .set-active-quote {
	background: white;
	padding: 1rem;
	border-radius: 5px;
  }
  .hide {
	display: none;
  }
  
  .quote-table {
	display: grid;
	margin: 1rem 0;
  }
  .quote-table-item {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
  
  }
  .quote-table-item.header {
	font-weight: 600;
	margin-bottom: .5rem;
  }
  #set-as-active {
	cursor: pointer;
  }
  #set-as-active:hover {
	text-decoration: underline;
  }

  .add-address-container form select {
	background: #eee;
	margin: 1px;
	padding: .2rem .5rem .1rem .5rem;
	border-radius: 3px;
	border: 2px solid white;
	width: 100%;
  }
  .add-address-container form p span {
	display: block;
	width: 100%;
  }

  .summary-grid {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 1rem;
  }
  .summary-font {
	  font-size: 1.3rem;
  }

  .featured-collateral {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  gap: .5rem;
	  margin-top: 1rem;
  }

  @media(max-width: 800px){
	  .featured-collateral{
		  grid-template-columns: 1fr 1fr;
	  }
  }

  @media(max-width: 500px){
	  .featured-collateral{
		  grid-template-columns: 1fr;
	  }
  }

  .featured-collateral-item {
	  display: flex;
	  flex-flow: column;
	  align-items: center;

  }
  .featured-collateral-item p {
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	margin-bottom: 1rem;
	padding: 0 12px;
  }
  .featured-collateral-item img {
	  width: 50%;
	  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.32);
	  margin: 1rem 0;
  }
  .featured-collateral-item a {
	  margin-top: auto;
	  width: 50%;
	  text-align: center;
  }

  .collateral-flip-book {
	  width: 100%;
	  min-height: 400px;
	  background: #333;
	  display: flex;
	  justify-content: center;
	  align-items: center;
  }
  .collateral-flip-book h1 {
	font-weight: 800;
	color: #aaa;
	font-size: 1.3rem;
  }
  .quick-error {
	padding: 1rem 2rem;
	text-align: center;
	font-size: 1.2rem;
	border-radius: 10px;
	color: #ff4343;
	font-weight: bold;
	box-shadow: 3px 3px 5px rgba(0,0,0,.25);
	border: 2px solid #ff4f4f;
	margin: 1rem 0;
  }
  .quick-error.success {
	  color:#60bc60;
	  border-color: #60bc60;
  }

  .address-list{
	margin: 2.2rem 3rem;
  }
  
  .address-row {
	  display: grid;
	  grid-template-columns: 2fr 3fr 2fr 1fr 1fr 1fr;
	  padding: 1rem;
	  border-radius: 10px;
  }
  .address-row:hover {
	  background: #eee;
	  
  }
  .address-row:first-child {
	  margin-bottom: 0;
  }
  .address-actions {
	  padding: 0 1rem;
	  display: flex;
	  flex-flow: column;
	  text-align: center;
	  justify-content: center;
  }
  .address-actions a {
	  margin: 2px;
	  border: 1px solid #0097dc;
	  border-radius: 5px;
  }
  .address-actions a:hover {
	  color: white;
  }
  .address-row i {
	  font-size: 1.75rem;
	  transition: all .2s;
  }
  .address-row .fa-circle {
	  color: #ddd;
	  cursor: pointer;
  }

  /* 
  
  New QuickView CSS Styles
  
  */

  .complex-item {
	  display: grid;
	  grid-template-columns: 40% auto 1fr 1fr 1fr 1fr;
  }
  .complex-item-img {
	  grid-area: 2/1/30/2;
  }
  .complex-item .main-attribute {
	  grid-column-start: 2;
  }

  .xtra-1fr {
	grid-template-columns: 40% auto 1fr 1fr 1fr 1fr 1fr;
  }
  .xtra-1fr-1fr {
	grid-template-columns: 40% auto 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .xtra-1fr-1fr-1fr {
	grid-template-columns: 40% auto 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

@media only screen and (max-width: 450px){
	.complex-item {
		grid-template-columns: 1fr 1fr 1fr 1fr !important;
		padding: 1rem;
	}
	.not-complex-item {
		grid-template-columns: 1fr 1fr 1fr 1fr !important;
		padding: 1rem;
	}
	.complex-item-title {
		grid-area:1/1/2/6;
		text-align: center;
	}
	.complex-item-img {
		grid-area: 2/1/3/6;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.complex-item-img img {
		width: 50%;
	}
	.complex-item .main-attribute {
		grid-column-start: 1;
		grid-column-end: last-line;
	}
	.complex-item .add-to-cart, .not-complex-item .add-to-cart {
		grid-column-start: 1;
		grid-column-end: last-line;
		
		border-bottom: 1px solid #eee;
	}
	.complex-item .add-to-cart a, .not-complex-item .add-to-cart a {
		width: 100%;
		text-align: center;
	}
	.attr-head {
		display: none !important;
	}
	.add-to-cart-head, .qty-head {
		display: none !important;
	}
	.complex-item .qty, .not-complex-item .qty {
		grid-column-start: 1;
		grid-column-end: last-line;
	}
	.complex-item .qty input, .not-complex-item .qty {
		width: 100%;
	}
	.xtra-1fr .rrp-head {
		grid-column-start: 2;
	}
	.xtra-1fr-1fr .rrp-head {
		grid-column-start: 3;
	}
	.rrp {
		grid-column-start: 1;
	}
	#data_table thead {
		display: none;
		
	}
	#data_table tbody tr td {
		width: auto !important;
	}
	.account-summary .portal-panel-container .summary-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.footer {
		display: grid !important;
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 1rem;
	}
	.footer .newsletter {
		max-width: none !important;
	}
	.brand-collateral-panel {
		display: none;
	}

	.custom-checkout-actions {
		width: 100%;
	}
	.add-address-button {
		width: 100%;
	}
	.portal-table thead {
		display: none;
	}
	.latest-orders-panel {
		background: transparent;
	}
	.latest-orders-panel .portal-panel-container {
		padding: 0;
	}
	.latest-orders-panel .header {
		padding: 1rem;
		border-radius: 3px;
	}
	.latest-orders-panel .portal-table {
		margin-top: 3px;
	}
	.latest-orders-panel .portal-table tr {
		background: white;
		margin-bottom: .5rem;
		border-radius: 4px;
		padding: 1rem;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: .5rem;

	}
	.portal-table tr td {
		padding: 0;
	}
	.portal-table tr td.order-status {
		grid-column: 1/4;
		grid-row: auto/5;
	}
	.portal-table tr td.description {
		grid-column: 1/4;
		
	}
	.portal-table tr td.order-total {
		font-weight: bold;
	}
	.portal-table tr td.order-date {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		flex-direction: column;
	}
	.portal-table tr td.order-again2 {
		display: flex;
		align-items: flex-end;
	}
	.portal-table tr td.order-again2 p {
		width: 100%;
		text-align: center;
	}
	
	.portal-table tr td.order-total p {
		display: block !important;
	}

	.portal-table tr td.order-date p {
		display: block !important;
	}

	.dataTables_length, .dataTables_filter {
		display: none;
		background: white;
		padding: 1rem 0;
		margin: .5rem 0;
		border-radius: 5px;
	
	}
	.invoice-summary-panel {
		background: transparent;
	}
	.invoice-summary-panel .portal-panel-container {
		padding: 0;
	}
	.invoice-summary-header {
		background: white;
		padding: 1rem;
		border-radius: 5px;
		margin-bottom: 5px;
	}
	.invoice-summary-panel #data_table_wrapper #data_table tr{
		background-color: white !important;
		opacity: 1 !important;
		border-radius: 5px;
		margin-bottom: .5rem;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	#data_table_wrapper table#data_table td p {
		display: block !important;
		font-weight: 600;
	}
	.team-panel {
		background: transparent;
	}
	.team-panel .portal-panel-container {
		padding: 0;
	}
	.team-panel-header {
		background: white;
		padding: 1rem;
		border-radius: 5px;
		margin-bottom: 5px;
	}
	.team-panel thead {
		display: none;
	}
	.team-panel tr {
		background: white !important;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px;
		margin-bottom: 5px;
		border-radius: 5px;
		padding: 1rem;

	}
	.team-panel .weka-table tr td {
		padding: 0;
		margin: 0;
		font-weight: 300;
		font-size: .8rem;
		color: #444;
	}
	.team-panel .weka-table tr td.name {
		font-weight: bold;
		font-size: .9rem;
		grid-column: 1/3;
		margin-bottom: .5rem;
		padding-bottom: .5rem;
		border-bottom: 1px solid #eee !important;
		color: black;
	}
	.team-panel .weka-table tr td p {
		display: block !important;
		font-size: .85rem;
		font-weight: bold;
		text-decoration: underline;
		color: black;
	}


	.address-panel {
		background: transparent;
	}
	.address-panel .portal-panel-container {
		padding: 0;
	}
	.address-panel .portal-panel-header {
		background: white;
		padding: 1rem;
		border-radius: 5px;
		margin-bottom: .5rem;
	}
	.address-panel .address-list {
		margin: 0;
	}
	.address-panel .address-row:first-child {
		display: none;
	}
	.address-panel .address-row {
		grid-template-columns: 1fr 1fr;
		background: white;
		margin-bottom: 5px;
		border-radius: 5px;
	}
	.address-panel .billing-check {
		grid-column: 1/2;
		flex-direction: column;
	}
	.address-panel .shipping-check {
		grid-column: 2/3;
		flex-direction: column;
	}
	.address-panel .address-actions {
		grid-column: 1/3;
		margin-top: 1rem;
		padding: 0;
	}
	.address-panel .billing-check p {
		font-weight: bold;
		display: block !important;
	}
	 .address-panel .shipping-check p {
		font-weight: bold;
		display: block !important;
	}
	.address-panel .address-row div:first-child {
		grid-column: 1/3;
	}
	.address-panel .address-row div:first-child {
		grid-column: 1/3;
	}
	.address-panel .address-row div:nth-child(1) {
		border-bottom: 1px solid #eee;
		padding-bottom: .5rem;
		margin-bottom: .5rem;
	}
	.edit-form {
		grid-template-columns: 1fr;
	}
	.edit-form h3 {
		grid-area: unset;
	}
	.portal-container {
		grid-template-columns: 1fr;
	}
	.brand-panel{
		background: transparent;
	}
	.brand-panel .portal-panel-container {
		padding: 0;
	}
	.brand-panel h3 {
		background: white;
		padding: 1rem;
		border-radius: 5px;
		margin-bottom: .5rem;
	}

	.brand-panel #data_table_wrapper table#data_table tr {
		background-color: white !important;
		margin-bottom: 5px;
		border-radius: 5px;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	
	.brand-panel #data_table_wrapper table#data_table tr .actions{
		display: none;
	}
	

	
	
	
	
	.brand-panel #data_table_wrapper table#data_table tr .title{
		grid-column: 1/3;
	}
	#data_table tr.even td {
		background-color: transparent !important;
	}
	header {
		padding-bottom: 1rem;
	}
}

#login {
	background: red;
}

.woocommerce-checkout-review-order-table tr:not(.shipping){
	display: none;
}
.custom-checkout-footer table.shop_table {
	border-collapse: collapse;
}
#order_review_heading {
	display: none;
}
#po_number_field {
	width: 70%;
}
#po_number_field label {
	font-size: .9rem;
}


.portal-panel-container.order-history {
	padding: 1.5rem 1rem;
}

.site-container {
    padding-bottom: 0 !important;
}
.primary-footer {
    display: grid;
	grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    color: white !important;
    padding: 1rem 6rem;
}
.footer-item #menu-footer,.header-item #menu-header {
    display: flex;
    align-items: center;
}
.footer-item #menu-footer li {
	font-size: .8rem;
	margin-right: .7rem;
}

.header-item #menu-header li {
	font-size: 1rem;
	margin-right: 3rem;
	font-weight:bold;
}

.footer-item a:hover {
    text-decoration: underline;
}
.footer-item p:first-child {
    font-weight: bold;
    margin-right: 1rem;
}

.footer-social {
    display: flex;
}
.footer-social img {
    margin-left: .5rem;
}

.portal-panel-container.product-categories .categories-grid .category-grid-item a.button-gray {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.portal-panel-container.product-categories .categories-grid div.category-grid-item {
    margin-bottom: 2rem;
}


.site-container header{
    padding: .95rem 0;
}
#view-all-products {
    grid-column-start: 2;
    /* height: 3rem; */
    margin-bottom: 3rem;
    min-height: initial;
}
#view-all-products a {
    margin-top: 0;
}
.main.container > .portal-container > .panels-column > div.portal-panel:last-child {
    /* margin-bottom: auto; */
}
@media only screen and (max-width: 1000px){
    .primary-footer {
        flex-direction: column;
        padding: 3rem;
    }
    .footer-item {
        flex-direction: column;
        margin-bottom: 1.5rem;;
    }
    .footer-item p {
        text-align: center;
    }

}

.simple-page-container {
    width: 60%;
    margin: 0 auto;  
    padding-bottom: 3rem; 
}

.simple-page-container h1:first-child {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid black;

}
.simple-page-container a {
    color: #ff7048;
}
.simple-page-container ol {
    list-style: decimal;
    margin: revert !important;
    padding: revert !important;
}
.simple-page-container ul {
    list-style: circle !important;
    margin: revert !important;
    padding: revert !important;

}

@media only screen and (max-width: 1000px) {
    .simple-page-container {
        width: 90%;
    }
}

.main-menu-list-container {
    max-height: 70vh;
    overflow-y: auto;
    background: #D1D5DB;
}
.header-button {
    transition: all .2s;
}
.header-button:focus, .header-button:hover {
    color: #ff7048 !important;
}
.header-button:hover i { 
    color: #ff7048 !important;
}
.team-edit-address {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
}
.team-edit-address input {
    grid-column: 1/3;
}

.portal-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.portal-panel-top select {
    border: none;
    outline: none;
    color: #777;
}
.order-tracking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #777;
}
.order-tracking-details div p:first-child {
    font-weight: 700;
    color: black;
}

.flex-control-thumbs {
	display: flex;
}

.flex-control-thumbs li {
	cursor: pointer;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    font-size: 1rem;
}
.pagination p {
    margin: 0 1rem;
}
.pagination a {
    border: 1px solid #15add3;
    padding: 3px 1rem 0 1rem;
    transition: all .3s;
}
.pagination i {
    color: #15add3;
}
.pagination a:hover {
    background: #15add3;
    color: white;
}
.pagination a:hover i {
    color: white;
}
.main.container > .portal-container > .panels-column > div.portal-panel.choose-product {
    margin-bottom: 0;
}

.choose-product select {
    height: 53px !important;
    padding: 12px !important;
}
.form-grid {
    grid-template-rows: auto 180px;
    align-items: center;
}
.choose-product .form-grid input[type="submit"] {
    height: 52px !important;
}

.no-results-container {
    font-size: 2rem;
    font-weight: 600;
    padding: 3rem;
    text-align: center;
}

.variations_form select {
    background: #f5f5f5;
    border-radius: 0;
    padding: .55rem;
}

#boot-sizes {
	margin-top: 0.5em;
}

td.value {
	padding: 1em;
}

.single-product .product .summary .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    border-radius: 0;
}

.quantity-box {
	margin-top: 1em;
}

@media only screen and (max-width: 1000px) {
    .portal-panel-container.product-categories .categories-grid .category-grid-item {
        max-width: 100% !important;
        height: 365px !important;
    }
    .portal-panel-container.product-categories .categories-grid .category-grid-item img {
        height: 283px !important;
    }
    .portal-panel-container.product-categories .categories-grid {
        display: flex !important;
        flex-direction: column !important;
    }
    #view-all-products {
        min-height: initial !important;
        height: initial !important;
    }
    header .mobile-search-order {
        margin-top: 5px;
    }
    
}

#order_comments {
	height: 120px;
	padding: 5px;
	width: 100%;
}
#po_number_field label {
	font-size: 1rem;
}

#po_number {
	border: 2px solid #ddd;
	border-radius: 5px;
	padding: 0.25rem 1rem 0.25rem;
	text-align: center;
}
#customer_details {
	padding-top: 3rem;
	width: 100%;
}
.billing-details-header {
	font-size: 1rem;
	display: inline-block;
	padding: .5rem .5rem .35rem .5rem;
	cursor: pointer;
	width: 50%;
}
.billing-details-header:hover {
	text-decoration: underline;
}
.billing-details-header:nth-child(2) {
	float: right;
}


.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2 {
    float: none;
    width: auto;
}

#po_number_field .optional {
	display: none;
}

#data_table_wrapper table#data_table th, #data_table_wrapper table#data_table td {
	padding: 1rem .5rem;
}
#data_table_wrapper #data_table_info {
	position: static;
}

.order-details {
	display: grid;
	grid-template-columns: 70% auto;
}
.order-overview {
	margin: 1rem;
	margin-bottom: auto;
	padding-left: 1rem;
	border-left: 1px solid #aaa;
}
.overview-line {
	display: flex;
	justify-content: space-between;
	padding: .75rem;
}

.overview-line:nth-child(odd) {
	background: #eee;
}
.overview-line-header {
	font-weight: 600;
	font-family: 'AvenirNext';
}

.order-details .order-again {
	display: inline-block;
	padding: .25rem 1rem;
}

.order-details .woocommerce-customer-details {
	margin-top: 2rem;

}
.order-details .woocommerce-customer-details .woocommerce-column__title {
	font-weight: bold;
}
.order-details .addresses {
	width: 60%;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.shipping-header {
	text-align: right;
}
header .B2B {
	padding-top: 2px;
	margin-top: 2px;
}
.header-search {
	background: #f2f2f2;
	padding: .25rem .5rem .2rem 1.8rem;
	border-radius: 5px;
	width: 100% !important;
}

.header-search-form i {
	position: absolute;
	left: 7px;
	width: auto;
	font-size: 1rem;
	top: 0.4rem;
	color: #ccc;
}
.middle-header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1.5;
}
.search {
	margin: 0 2rem;
}
.order-now {
	padding: .25rem 1rem .15rem 1rem;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	margin-left:4rem;
	transition: all .2s;
}
.order-now:hover, .order-now:focus {
	opacity: .7;
}

.invoice-summary-panel #data_table_wrapper table#data_table td{
	text-align: center;
}

.invoice-summary-panel #data_table_wrapper table#data_table th{
	text-align: center;
}

.invoice-statement-balance {
	margin-top: 1rem;
}

#data_table_wrapper table#data_table th:hover {
	text-decoration: underline;
}

.invoice-summary-header {
	display: flex;
	align-items: center;
}

.invoice-summary-header .new_quote  button{
	font-size: 1rem;
	font-family: 'Avenir';
	color: white;
	
	border-radius: 5px;
	padding: .25rem .75rem;
	margin-left: 1rem;
	transition: all .2s;
}
.invoice-summary-header .new_quote  button:hover {
	opacity: .75;
}
.invoice-summary-header .new_quote i {
	color: white;
	font-size: .8rem;
}
.favourite-line.head {
	background: #ccc;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: .5rem;
	font-family: Helvetica, 'Avenir', sans-serif;
	font-weight: 600;
}

.favourite-line {
	padding: .5rem;
	display: grid;
	grid-template-columns: 1fr 3fr 2fr 1fr 1fr 1fr 1fr;
	align-items: center;
}
.favourite-line:nth-child(even) {
	background: #f3f3f3;
}
.fa-heart {
	color: #f64361;
}
.favourites-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 0.5rem;
	margin-bottom: 2px;
}
.favourites-link i {
	font-size: 1.25rem;
	color: #444;
	padding-bottom: 2px;
}
.favourites-link:hover i {
	color: #f64361;
}

.edit-form .country_select, .edit-form .state_select {
	background: #eee;
	width: 100%;
}


/* 
########################################################
#
#	IPAD Styles
# 		820 x 1180 Portrait
#		
#
########################################################
*/
@media only screen and (max-width: 820px) {
	.portal-container {
		grid-template-columns: 1fr;
	}
	/* .main-nav {
		grid-template-columns: 1fr;
	} */
	.brand-collateral-panel {
		display: none;
	}
	.portal-panel-container.product-categories .categories-grid {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}
	.panels-column.last-col {
		grid-template-columns: 1fr 1fr;
	}

	.order-history-page .panels-column:first-child {
		grid-template-columns: 1fr 1fr;
	}
	.order-history-page .main-navigation {
		grid-column: 1/3;
	}
	header .header-item ul#menu-header {
		display: none;
	}
	header .middle-header .search {
		width: 200px !important;
	}
	.results-and-sort-by {
		display: block;

	}
	.results-controls {
		gap: initial;
	}

	.portal-panel.product .summary {
		padding: 1rem 5rem;
	}
	.woocommerce-variation-add-to-cart {
		touch-action: manipulation
	}
}

@media only screen and (max-width: 450px){
	.portal-container {
		grid-template-columns: 1fr;
	}
	.form-grid{
		grid-template-columns: 100%;
	}
	.choose-product .form-grid input[type='submit'], .choose-product .form-input-group:nth-child(2), .choose-product .form-input-group:first-child{
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.choose-product .form-grid input[type='submit']{
		margin-top: 0 !important;
	}


	.portal-panel.product .summary {
		padding: 1rem 2rem;
	}
}

.success_green {color:#4bb543;}

.order_item_notes {padding: 0.3em;border: 1px #000 solid;width: 50%;}

.approve_po_input {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    border: 1px solid #aaa;
    line-height: normal;
    border-radius: 4px;
	padding: 4px 8px;
  }