
.list_button{
    position:relative;
    display:flex;
    justify-content:flex-start;
    margin:0 0 2em 0;
}
.list_button .add_to_list{
    display: flex;
    align-items: center;
    position:relative;
	padding-right:46px !important;
	padding-right: calc( 1em + 26px ) !important;
    margin:0;
    background-color: #000000;
    color: #ffffff;
}
.list_button .qty_holder{
    display: flex;
    margin-right: 30px;
}
.list_button .qty_minus,
.list_button .qty_plus{
    border: 1px solid black;
    border-radius: 0;
    margin: 0;
}
.list_button .lst_qty{
    background:transparent;
	width: 38px;
	border:none;
	line-height: 1;
    text-align:center;
    font-size: 16px;
}
/* Chrome, Safari, Edge, Opera */
.list_button .lst_qty::-webkit-outer-spin-button,
.list_button .lst_qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.list_button .lst_qty {
  -moz-appearance: textfield;
}
.qty_label{
    margin-bottom: 8px;
}
/* Add to list */
.add_to_list{
    cursor:pointer;
}
.add_to_list .pls{
    width:17px;
    height:17px;
    position:relative;
    top:8px;
    
	/* display: inline-block; */
    display:block;
    margin:0 auto;
    
    -webkit-transition: -webkit-transform 275ms ease;
	transition: transform 275ms ease;
}
.add_to_list .pls:before{
	content: '';
    display:block;
	width: 100%;
	height: 2px;
	background: #000;
	background: currentColor;
	position: absolute;
    top:0;
    left:0;
    
    -webkit-transition: -webkit-transform 275ms ease;
	transition: transform 275ms ease;
}
.add_to_list .pls:after{
	content: '';
	display: block;
	background: #000;
	background: currentColor;
	height: 2px;
	position: absolute;
	width: 100%;
    
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);

	-webkit-transition: -webkit-transform 275ms ease;
	transition: all 275ms ease;
	/* transition: transform 275ms ease, transform-origin 275ms ease; */
}

.add_to_list:hover .pls,
.add_to_list.in_list .pls{
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	transform:rotate(-45deg) translate(8px, 5px);
}
.add_to_list:hover .pls:after,
.add_to_list.in_list .pls:after{
	left: 1px;
	width: 40%;
    
    -webkit-transform-origin: left center;
	transform-origin: left center;
    
	-webkit-transform:rotate(-85deg);
	transform: rotate(-85deg);
}

.add_to_list.in_list.hover .pls,
.add_to_list.in_list:hover .pls{
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	transform:rotate(45deg) translate(-4px, 4px);
}
.add_to_list.in_list:hover .pls:after{
	left: 0;
	width: 100%;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform:rotate(90deg);
	transform: rotate(90deg);
}

.lst_notice{
	font-size:0.9em;
	opacity:0.8;
	margin-top:0;
	line-height:1;

	position:absolute;
    right: 20px;
    bottom: -40px;
	white-space: nowrap;

	transform:translate(0,0);
    
	-webkit-transition: opacity 275ms ease, transform 275ms ease;
    transition: opacity 275ms ease;
	transition: opacity 275ms ease, transform 275ms ease;
}
.lst_notice.lst_hidden{
	opacity:0;
	transform:translate(0,-1em);
}
.list_button .lst_notice a {
    text-decoration: underline !important;
}

.item_stock{
	font-size:0.8em;
	color:#09905D;
}
.item_stock.stock_low{
	color:#ec7823;
}
.item_stock.stock_empty{
	color:#E42426;
}

/* START compatibility table */
.tbl_row{
	width:100%;
	clear:both;
	background:#fff;
}
.tbl_row:nth-of-type(2n-1){
	background:#eaeaea;
}
.tbl_row.table_headers{
	/*font-weight:600;*/
	background:#333;
	color:#fff;
	text-transform:uppercase;
}
.tbl_cell{
	width:25%;
	float:left;
	padding:3px 7px;
}
.tbl_cell.dbl_width{
	width:50%;
}
#list-table .tbl_cell{
	width:12%;
}
#list-table .tbl_cell.dbl_width{
	width:36%;
}
#list-table .tbl_cell.mn_width{
	width:4%;
	text-align:center;
}
#list-table .sn_price{
	color:#777;
	font-size:0.8em;
}
#list-table .qty_cell{
	padding-top:0;
	padding-bottom:0;
}
#list-table .cart_qty{
	width:100%;
	height:26px;
	border-color:#ddd;
	line-height:26px;
	padding-left:5px;
}
.list_remove_item{
	opacity:0;
	color:#c03;
	cursor:pointer;
}
.tbl_row:hover .list_remove_item{
	opacity:1;
}
.show_mobile{
	display:none;
}

/* menu item counter */
.cart_menu_link {
	/*position:relative;*/
}
.cart_count{
	position:absolute;
	top:-0.5em;
	right:0em;
	width:1.2em;
	height:1.2em;
	text-align:center;
	background:#fff;
	font-size:0.75em;
	line-height:1.2em;
	border-radius:0.6em;
	border:1px solid #213e86;
	color:#213e86;
}
.sub-menu .cart_count, .cart_count:empty{
	display:none;
}

/* list PDF export custom fields */
#cust_form{
	margin-bottom:60px;
}
.list_input{
	width:150px;
	max-width:100%;
	float:left;
	height: 34px;
	padding: 6px 10px;
	margin:5px 0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.list_input:nth-of-type(2n-1){
	clear:left;
}
.list_input+input{
	width:40%;
	width:calc( 50% - 155px );
	min-width:200px;
	float:left;

	height: 34px;
	padding: 6px 12px;
	margin:5px 0;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Popup disclaimer */

@media screen and (max-width:1000px){
	.filter_title{
		text-align:center;
	}
	.filter_title, .filter_button, .filter_dropdown{
		width:100%;
		display:block;
		float:none;
	}

	.item_grouping.collapsed.toggled_open .grouping_inner{
		max-height:1500px;
	}
	.item_grouping.collapsed.ex_height.toggled_open .grouping_inner{
		max-height:4000px;
	}
	.item_grouping.collapsed.ex10_height.toggled_open .grouping_inner{
		max-height:8000px;
	}
	.item_grouping.collapsed.ex20_height.toggled_open .grouping_inner{
		max-height:10000px;
	}
	.item_grouping.collapsed.ex30_height.toggled_open .grouping_inner{
		max-height:16000px;
	}
}
@media screen and (max-width: 650px) {
	.show_mobile{
		display:block;
	}
	.hide_mobile{
		display:none;
	}

	.tbl_mtitle {
		width:30%;
		float:left;
		vertical-align:top;
		clear:left;
		padding:0 5px;
		font-weight:600;
	}
	.tbl_cell{
		width:70%;
		float:left;
		vertical-align:top;
		clear:right;
		padding:0 5px;
	}

	.item_grouping.collapsed.toggled_open .grouping_inner{
		max-height:2000px;
	}
	.item_grouping.collapsed.ex_height.toggled_open .grouping_inner{
		max-height:6000px;
	}
	.item_grouping.collapsed.ex10_height.toggled_open .grouping_inner{
		max-height:12000px;
	}
	.item_grouping.collapsed.ex20_height.toggled_open .grouping_inner{
		max-height:15000px;
	}
	.item_grouping.collapsed.ex30_height.toggled_open .grouping_inner{
		max-height:24000px;
	}
}
