/* Client override import */
@import url('client.css');

/* Bootstrap import */
@import url('Bootstrap/bootstrap.min.css');

/* Font Awesome import */
@import url('fontawesome5/css/all.min.css');

/* General  styles */

* {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	color: #444;
	background: #ffffff !important;
}

.Body {
	margin: 0;
}

body,
table,
h2,
h3 {
	font-family: Arial, Helvetica, sans-serif !important;
}

.container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

/* font styles */

a { color: #0000ff; }

a.text-link { color: #0000ff !important; }

p, a { font-size: 14px; }

h2 { color: #222222; }

h3 {
	font-size: 15px;
	color: #222;
	margin: 5px 0 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ddd;
}

/* Text */

.text-center { text-align: center; }

.text-left { text-align: left; }

.text-right { text-align: right !important; }

.text-bold { font-weight: bold; }

.text-inherit { font-size: inherit; }

/* Text colors  */

.text-gray { color: #7d7d7d !important; }

.text-success { color: #3c763d !important;}

.bg-light-gray { background: #e9e9e9; }

.bg-white { background: #ffffff; }

/* float helpers  */

.pull-right { float: right; }

@media screen and (min-device-width: 768px) {
	.pull-right-lg { float: right; }
}

/* Margin  helpers  */

.m-b-0 { margin-bottom: 0 !important; }

.m-b-5 { margin-bottom: 5px !important; }

.m-b-10 { margin-bottom: 10px !important; }

.m-b-15 { margin-bottom: 15px !important; }

.m-b-20 { margin-bottom: 20px !important; }

.m-t-0 { margin-top: 0 !important; }

.m-t-5 { margin-top: 5px !important; }

.m-t-10 { margin-top: 10px !important; }

.m-t-15 { margin-top: 15px !important; }

.m-t-25 { margin-top: 25px !important; }

.m-l-0 { margin-left: 0 !important; }

.m-l-15 { margin-left: 15px !important;}

.m-r-5 { margin-right: 5px !important; }

.m-r-10 { margin-right: 10px !important; }

/* padding helpers  */

.column-padding { padding: 5px 15px !important; }

@media screen and (max-device-width: 767px) {
	.column-padding { padding: 5px !important; }
}

.p-0 { padding: 0 !important; }

.p-15 {padding: 15px !important;}

.p-t-0 { padding-top: 0px !important; }

.p-t-10 { padding-top: 10px !important; }

@media screen and (min-device-width: 768px) {
	.p-lg-t-10 { padding-top: 10px !important; }
}

.p-b-0 { padding-bottom: 0px !important; }

.p-b-10 { padding-bottom: 10px !important; }

@media screen and (min-device-width: 768px) {
	.p-lg-b-10 { padding-bottom: 10px !important; }
}

/* block helpers  */

.block {
	display: block;
}

.inline-block {
	display: inline-block;
	vertical-align: top;
}

/* Width  */

.full-width {
	width: 100%;
}

/* hide helpers  */

.sr-only {
	position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hidden,
.hidden-td {
	display: none !important;
}

@media screen and (min-device-width: 768px) {
	.hide-desktop {
		display: none !important;
	}
}

@media screen and (max-device-width: 767px) {

	.mobile-only {
		display: block !important;
	}
	
	.hide-mobile,
	.desktop-only {
		display: none !important;
	}
}

/* Border helpers  */

.hide-border {
	border: 0 !important;
}

.borderless,
.borderless td,
.borderless th {
	border: none !important;
}

.border-bottom {
	border-bottom: 1px solid #cccccc;
}

/* Buttons */

.btn,
a.btn {
	font-family: Arial, Helvetica, sans-serif !important;
	background: #dddddd;
	display: inline-block;
	padding: 8px;
	font-size: 14px !important;
	line-height: normal;
	border: 1px solid #cccccc;
	border-radius: 2px;
	font-weight: 400 !important;
	text-align: center;
	color: #222222 !important;
	width: auto;
	margin-right: 5px;
}

.btn:hover,
a.btn:hover {
	cursor: pointer;
	background: #efefef;
}

.btn.btn-primary {
	background: #dddddd;
}

.btn.btn-primary:hover {
	background: #cccccc;
	border: 1px solid #cccccc;
}

.btn.btn-secondary {
	background: #ffffff;
}

.btn.btn-secondary:hover {
	background: #f2f2f2;
}

@media screen and (max-device-width: 767px) {
	.btn,
	a.btn {
		width: 100% !important;
		margin-bottom: 10px;
	}

	.btn:last-child,
	a.btn:last-child {
		margin-bottom: 0;
	}
}

@media screen and (max-device-width: 767px) {
	.btn,
	a.btn {
		display: block;
	}
}

.btn-processing {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	height: 34px;
	overflow: hidden;
	outline: none;
	position: relative;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
.btn-processing ul {
	float: left;
	margin: 0;
	padding: 0;
	-webkit-transition: -webkit-transform 20ms cubic-bezier(0, 0.65, 0.7, 0.9);
	transition: -webkit-transform 20ms cubic-bezier(0, 0.65, 0.7, 0.9);
	transition: transform 20ms cubic-bezier(0, 0.65, 0.7, 0.9);
	transition: transform 20ms cubic-bezier(0, 0.65, 0.7, 0.9), -webkit-transform 20ms cubic-bezier(0, 0.65, 0.7, 0.9);
	-webkit-transform-style: preserve-3d;
			transform-style: preserve-3d;
}

@media screen and (max-device-width: 767px) {
	.btn-processing ul {
		float: none;
	}
}

.btn-processing li {
	--rotateX: 0deg;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	display: block;
	-webkit-transition: opacity 150ms;
	transition: opacity 150ms;
	-webkit-transform-origin: 50% 50%;
			transform-origin: 50% 50%;
	-webkit-transform: rotateX(var(--rotateX)) translateZ(10px);
			transform: rotateX(var(--rotateX)) translateZ(10px);
	width: 100%;
}
.btn-processing li:nth-child(2), .btn-processing li:nth-child(3) {
	opacity: 0;
	position: absolute;
}
.btn-processing li:nth-child(2) {
	--rotateX: -90deg;
}
.btn-processing span {
	-webkit-box-align: center;
			align-items: center;
	display: -webkit-box;
	display: flex;
	float: left;
	height: 100%;
	-webkit-box-pack: center;
			justify-content: center;
	max-width: 0;
	opacity: 0;
	position: relative;
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
	-webkit-transition: max-width 50ms ease, opacity 100ms ease, -webkit-transform 150ms ease-in-out;
	transition: max-width 50ms ease, opacity 100ms ease, -webkit-transform 150ms ease-in-out;
	transition: max-width 50ms ease, opacity 100ms ease, transform 150ms ease-in-out;
	transition: max-width 50ms ease, opacity 100ms ease, transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
	width: 20px;
}
.btn-processing svg {
	position: absolute;
}
.btn-processing svg:nth-child(1) {
	--stroke: 40;
	fill: transparent;
	height: 20px;
	left: 0;
	stroke: #000000;
	stroke-dasharray: var(--stroke);
	stroke-dashoffset: calc(var(--stroke) * 2);
	top: -2px;
	width: 20px;
}
.btn-processing.-request {
	text-align: left;
	pointer-events: none;
}
.btn-processing.-request span {
	margin-right: 12px;
	max-width: 100%;
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}
.btn-processing.-request li:nth-child(1) {
	opacity: 0;
	position: absolute;
}
.btn-processing.-request svg:nth-child(1) {
	-webkit-animation: stroke 2s linear infinite forwards, rotate 1s linear infinite forwards;
			animation: stroke 2s linear infinite forwards, rotate 1s linear infinite forwards;
}
.btn-processing.-request ul {
	-webkit-transform: rotateX(90deg);
			transform: rotateX(90deg);
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.btn-processing.-request ul {
		-webkit-transform: rotateX(0deg) !important;
				transform: rotateX(0deg) !important;
	}
}

@supports (-ms-ime-align:auto) {
	.btn-processing.-request ul {
		-webkit-transform: rotateX(0deg) !important;
				transform: rotateX(0deg) !important;
	}
}

.btn-processing.-request li:nth-child(2) {
	opacity: 1;
	position: relative;
}

@-webkit-keyframes stroke {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes stroke {
	to {
		stroke-dashoffset: 0;
	}
}
@-webkit-keyframes rotate {
	to {
		-webkit-transform: rotate(360deg);
				transform: rotate(360deg);
	}
}
@keyframes rotate {
	to {
		-webkit-transform: rotate(360deg);
				transform: rotate(360deg);
	}
}

.pointer {
	cursor: pointer;
}

/* -------------------- */
/* BEGIN PAGE OVERRIDES */
/* -------------------- */

/* Header */

.header-container {
	width: 100%;
	border-bottom: 0 !important;
}

.header-container .logo-container {
	box-sizing: border-box;
	width: 100%;
}

.header-container .logo-container img {
	max-width: 100%;
}

#menu0.mmenu {
    position: static !important;
	background-image: none !important;
    background-color: #eeeeee !important;
    padding: 0 15px;
	height: 22px !important;
    left: 0 !important;
    margin-left: 0;
    max-width:  100%;
}

#menu0.mmenu > table {
	position: absolute;
	max-width: 1250px;
	margin-left: -625px;
	left: 50%;
	padding: 0 15px !important;
	background: transparent !important;
}

@media screen and (max-width: 1260px){
	#menu0.mmenu > table  {
		margin-left: 15px;
		left: 0 !important;
	}
}

#menu0.mmenu #mmlink0 {
	height: 22px !important;
}

#menu0.mmenu table {
    background: #eeeeee !important;
}

#menu0.mmenu td {
    background-color: transparent !important;
    color: #333333;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    padding: 0 !important;
}

#menu0.mmenu table a,
#menu0.mmenu td a {
    color: #333333 !important;
    font-size: 14px !important;
	font-weight: 300 !important;
	height: 22px !important;
	line-height: 23px !important;
	margin: 0;
}

#menu0.mmenu table a:hover,
#menu0.mmenu table a:active {
	background: initial !important;
	color: #333333 !important;
	display: block;
	height: 22px !important;
	line-height: 23px !important;
}

/* Body overrides */

#contentBody {
	padding: 0 !important;
}

#cartBody {
	width: 1250px !important;
	margin: 30px auto;
	background: #ffffff;
	position: relative;
	max-width: 100% !important;
	float: none !important;
	z-index: 0;
	padding: 0 15px !important;
	border: 0 !important;
	overflow: auto;
}

#cartBody.rev-iframe {
	width: 100% !important;
    max-width: 1250px !important;
    margin: 0;
}

#Cart,
#cartBody #Cart {
	top: 0 !important;
	top: 0 !important;
    position: relative !important;
    left: 0 !important;
}

#cartBody #Cart {
	width: 100% !important;
	text-align: left;
}

@media screen and (max-device-width: 767px) {
	#Cart,
	#cartBody #Cart {
		top: 0;
		padding-top: 0 !important;
		margin-top: 0 !important;
	}

	#cartBody #Cart.myAccount {
		padding: 0;
	}
}

/* Inputs */

/* Input Labels */

.responsive-table label {
	white-space: normal;
}

/* Checkbox */

label.checkbox {
	cursor:pointer;
	color: #666;
}

label.checkbox input[type="checkbox"] {
	display: none;
}

label.checkbox input[type="checkbox"] + .checkbox-label:before {
	content: "\f0c8";
	font-family: "Font Awesome 5 Free";
	speak: none;
	font-style: normal;
	font-weight: 300;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	margin-right: 5px;
	font-size: 25px;
	color: #333333;
}

label.checkbox input[type="checkbox"]:checked + .checkbox-label:before {
	content: "\f14a";
	color: #333333;
	font-size: 25px;
	-webkit-animation:tick 180ms ease-in;
	animation:tick 180ms ease-in;
}

label.checkbox input[type="checkbox"]:checked:disabled + .checkbox-label:before {
	content: "\f14a";
	font-size: 25px;
}

label.checkbox input[type="checkbox"]:disabled + .checkbox-label {
	color: #aaa;
	cursor: default;
}

label.checkbox input[type="checkbox"]:disabled + .checkbox-label:before {
	content: "\f0c8";
	color: #ccc;
}

/* Select */

select,
input {
	padding: 4px;
	border-radius: 4px;
	font-size: 15px;
	border: 1px solid #cccccc !important;
}

select[disabled],
input[disabled] {
	cursor: not-allowed;
}

.btn.btn-primary[disabled] {
	cursor: not-allowed;
	color:#808080;
}

#cartBody input[type="text"] {
	font-size: 15px;
	padding: 5px;
}

#cartBody .TableInside input[type="radio"],
#cartBody .TableInsideSignup input[type="radio"],
#cartBody .TableInside input[type="checkbox"],
#cartBody .TableInsideSignup input[type="checkbox"] {
    width: auto !important;
    display: inline !important;
    vertical-align: text-top;
}

@media screen and (max-device-width: 767px) {
    #cartBody .TableInside select,
    #cartBody .TableInsideSignup select,
    #cartBody .TableInside input,
    #cartBody .TableInsideSignup input {
		display: block;
        width: 100% !important;
	}

	#cartBody .TableInside input,
	#cartBody .TableInside input[type="color"],
	#cartBody .TableInside input[type="date"],
	#cartBody .TableInside input[type="datetime"],
	#cartBody .TableInside input[type="datetime-local"],
	#cartBody .TableInside input[type="email"],
	#cartBody .TableInside input[type="month"],
	#cartBody .TableInside input[type="number"],
	#cartBody .TableInside input[type="password"],
	#cartBody .TableInside input[type="search"],
	#cartBody .TableInside input[type="tel"],
	#cartBody .TableInside input[type="text"],
	#cartBody .TableInside input[type="time"],
	#cartBody .TableInside input[type="url"],
	#cartBody .TableInside input[type="week"],
	#cartBody .TableInside select:focus,
	#cartBody .TableInside textarea {
		font-size: 16px !important;
	}
}

/* Shopping cart */

#cartBody .ShoppingCart {
	background: #ffffff;
}

/* General Table Overrides */

table {
	width: 100% !important;
	color: #333333 !important;
	text-align: left;
}

#cartBody .TableInside a.text-gray,
#cartBody .TableInsideSignup a.text-gray {
	color: #7d7d7d !important;
}

.cartBodyTop {
	display: none;
}

#cartBody .TableOutside,
#cartBody .TableOutsideSignup,
#cartBody .shoppingCartHeader div,
#rightCol .ShoppingCart .shoppingCartHeader,
#rightCol .ShoppingCart .shoppingCartFooter {
	padding: 0;
	background: none #ffffff;
	color: #333333 !important;
	border-spacing: 0 !important;
}

#cartBody .TableInside,
#cartBody .TableInsideSignup td,
#cartBody .TableInsideSignup,
#cartBody .TableInsideSignup td,
#cartBody .TableOutside td,
#cartBody .TableOutsideSignup td {
	background: #ffffff;
	color: #333333;
	font-size: 15px;
	font-weight: 400 !important;
	border-spacing: 0;
	padding: 0;
}

#cartBody .TableInside,
#cartBody .TableInsideSignup {
	padding: 5px 0;
}

.itemQuantity {
	display: inline-block !important;
	max-width: 100px;
	min-width: 50px;
}

.RowBGStandard {
	background: #ffffff;
}

#td_JavaScriptPrintTermsCell {
	display: none;
}

.whats-this {
	color: #0000ff !important;
	cursor: pointer;
}

@media screen and (max-device-width: 767px) {
	#ShipProfileDesc,
	#ShipMethodID {
		margin-top: 10px;
	}
}

#tEndContinueButton .btn.btn-primary {
	margin-top: 10px;
}

/* Enrollment ask */

#enrollment-ask-table td {
	display: block;
	width: 100%;
	text-align: left;
}

/* Enrollment language select */

#cartBody #language-select {
	background: #eeeeee;
	border-bottom: 1px solid #cccccc;
}

#cartBody #language-select select {
	font-size: 12px;
    padding: 2px;
    margin-right: 10px;
}

.language-select-label {
	margin: 10px 0 -5px;
}

@media screen and (max-device-width: 767px) {

	#cartBody #language-select {
		background: #ffffff;
		border-bottom: 0;
	}

	.language-select-label {
		display: block;
	}
}

/* Table headers overrides */

#cartBody .ShoppingCartInner .CartHeaders,
#cartBody .ShoppingCartInner .CartHeaders td {
	background: none !important;
}

/* Table Footer Overrides*/

#cartBody .responsive-table-footer,
#rightCol .ShoppingCart td.shoppingCartFooter,
#cartBody td.shoppingCartFooter,
#cartBody .shoppingCartFooter {
	text-align: right;
	padding: 8px 10px !important;
	border-top: 1px solid #cccccc;
	margin: 0;
}

#cartBody .shoppingCartFooter div {
	background-image: none !important;
}

@media screen and (max-device-width: 767px) {
	#cartBody .responsive-table-footer,
	#rightCol .ShoppingCart .shoppingCartFooter,
	#cartBody .shoppingCartFooter {
		text-align: center;
	}
}

/* TableOutside Specific Overrides */

.TableOutside td,
.TableOutsideSignup td {
	background: #ffffff;
}

#cartBody .TableOutside,
#cartBody .TableOutsideSignup {
	border: 1px solid #cccccc;
	border-radius: 2px;
}

#cartBody .TableOutside.no-border,
#cartBody .TableOutsideSignup.no-border {
	border: 0;
}

#tEndContinueButton.TableOutsideSignup,
#tEndContinueButton.TableOutsideSignup tr:first-child td {
	border: 0 !important;
}

/* TableInside Specific Overrides */

.TableInside,
.TableInsideSignup {
	border: 0 !important;
	padding: 10px;
	padding: 0;
}

.has-borders tr td {
    border-bottom: 1px solid #cccccc;
    border-right:  1px solid #cccccc;
}

.has-borders tr td:last-child {
    border-right: 0;
}

.has-borders tr:last-child td {
    border-bottom: 0;
}

#cartBody .TableOutside .TableInside td,
#cartBody .TableOutsideSignup .TableInsideSignup td {
	font-size: 15px !important;
	padding: 5px 15px;
}

#cartBody .TableOutside .TableInside td.no-padding,
#cartBody .TableOutsideSignup .TableInsideSignup td.no-padding {
	padding: 0 !important;
}

#cartBody .TableOutside .TableInside td span,
#cartBody .TableOutsideSignup .TableInsideSignup td span {
	font-size: 15px !important;
}

@media screen and (min-device-width: 768px) {
	#cartBody .TableOutside .TableInside tr.table-data-item td,
	#cartBody .TableOutsideSignup .TableInsideSiognup tr.table-data-item td {
        border-bottom: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
    }

	#cartBody .TableOutside .TableInside tr.table-data-item td:last-child,
	#cartBody .TableOutsideSignup .TableInsideSignup tr.table-data-item td:last-child {
        border-right: 0;
    }
}

@media screen and (max-device-width: 767px) {
	#cartBody .TableOutside .TableInside td,
	#cartBody .TableOutsideSignup .TableInsideSignup td {
		padding: 5px;
	}
}

/* General Responsive Table */

.responsive-table h5 {
	margin: 0 0 5px;
}

/* Section headers */

#cartBody .CategoryHeader {
	padding: 10px 0;
	text-indent: 0;
	border-bottom: 1px solid #999;
}

#cartBody .CategoryHeader,
#cartBody .categoryHeaderDiv {
	background: none !important;
	height: auto !important;
	border-bottom: 0 !important;
	width: 100%;
	line-height: 22px !important;
	margin: 0 auto;
	text-align: center;
}

#cartBody .TableRowHeader {
	background: #eeeeee;
}

#cartBody .TableRowHeader td,
#cartBody .TableRowHeader th {
	background: transparent;
	padding: 5px 15px;
	font-size: 13px;
	border-spacing: 0;
	color: #333333;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

#cartBody .TableRowHeader td:last-child {
	border-right: 0;
}

#cartBody td.signup-header,
#cartBody td.responsive-table-header,
#cartBody .shoppingCartHeader,
#cartBody .shoppingCartHeader font {
	font-size: 16px;
}

#cartBody td.signup-header,
#cartBody td.responsive-table-header,
#cartBody .shoppingCartHeader div {
	background: #eeeeee;
	font-size: 15px !important;
	line-height: 17px;
	padding: 5px 15px;
	margin-bottom: 0;
	font-weight: bold !important;
	border-bottom: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}

#cartBody .shoppingCartHeader.has-btn div {
	line-height: 35px;
}

@media screen and (max-device-width: 767px) {
	.TableRowHeader {
		display: none;
	}

	.TableRowHeader.visible,
	.TableRowHeader.visible-sm {
		display: block;
	}
}

@media screen and (max-device-width: 767px) {
	#cartBody td.signup-header,
	#cartBody td.responsive-table-header,
	#cartBody .shoppingCartHeader {
		margin: 0;
    }   
}

/* Data Labels */

#cartBody .datalabel,
#cartBody .DataLabel {
    min-width: 115px;
	color: #333333 !important;
	font-weight: 300 !important;
	font-size: 15px;
    margin-bottom: 5px;
}

#cartBody .TableRowHeader .datalabel,
#cartBody .TableRowHeader .DataLabel {
    margin-bottom: 0;
}

#cartBody .CategoryLabel,
#cartBody .CategoryText  {
	color: #666666 !important;
	font-size: 17px;
	text-shadow: none;
}

@media screen and (max-device-width: 767px) {

	#cartBody .datalabel,
	#cartBody .DataLabel {
		margin-bottom: 0;
		padding-bottom: 0 !important;
	}

	#cartBody #Table8.TableOutside .TableInside .DataLabel {
		padding: 5px;
	}
}

/* Promotions */

#cartBody .promotions-container {
	/* margin: 0 auto; */
	text-align: left !important;
}

#cartBody .promotions-container .promotions-table {
	margin: 15px 0;
	border-spacing: 0 !important;
	border: 1px solid #dddddd;
	border-radius: 2px;
}

#cartBody .promotions-container .promotions-table td {
	padding: 5px 15px;
    font-size: 15px !important;
    font-weight: 400;
}

#cartBody .promotions-container .promotions-table td h5 {
	font-size: 15px;
    margin-bottom: 3px;
}

#cartBody .promotions-container .promotions-table tr.table-item td {
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

#cartBody .promotions-container .promotions-table tr.table-item:last-child td {
	border-bottom: 0;
}

#cartBody .promotions-container .promotions-table td.shoppingCartHeader {
	padding: 0;
}

.mobile-promotions-checkbox {
	vertical-align: top;
	margin-bottom: 10px;
}

.mobile-promotions-checkbox input[type="checkbox"] {
	margin: 0;
}

@media screen and (min-device-width: 768px) {
	.promotions-container .CategoryHeader {
		background: #eeeeee;
		padding: 5px;
	}

	.promotions-container .CategoryHeader .CategoryLabel {
		color: #333;
	}
	
}

@media screen and (max-device-width: 767px) {
	
	#cartBody .promotions-container .promotions-table tr.table-item td {
		border: 0;
	}

	#cartBody .promotions-container .mobile-promotions-checkbox {
		margin-top: 3px;
	}

	#cartBody .promotions-container .promotions-table tr.table-item td:last-child {
		padding-bottom: 15px;
	}

	#cartBody .promotions-container .promotions-table tr.table-item td:last-child {
		border-bottom: 1px solid #cccccc;
	}
}

/* Promotions table item with table */

#cartBody .promotions-container .promotions-table tr.table-item th.DataLabel {
    color:  #333;
    font-size: 15px !important;
    padding: 5px 15px;
    border-bottom:  1px solid #cccccc;
    border-right:  1px solid #ccc;
}

#cartBody .promotions-container .promotions-table tr.table-item th.DataLabel:last-child {
    border-right: 0;
}

@media screen and (max-device-width: 767px) {

    #cartBody .promotions-container .promotions-table .responsive-table tr.table-data-item:last-child,
    #cartBody .promotions-container .promotions-table .responsive-table tr.table-data-item td:last-child {
        border-bottom: 0;
    }
    
    #cartBody .promotions-container .promotions-table .responsive-table tr.table-data-item:hover {
        background: #ffffff !important;
    }

    #cartBody .promotions-container .promotions-table .responsive-table td {
        padding: 0;
        border: 0;
    }

	#cartBody .promotions-container .promotions-table .responsive-table td:last-child {
		padding-bottom: 5px;
	}
}

/* Promotions on checkout summary */

#cartBody .TableOutside tr.table-data-header {
    border-bottom:  1px solid #cccccc;
    background:  #eeeeee;
}

#cartBody .TableOutside tr.table-data-header td {
    background:  #eeeeee;
}

#cartBody .TableOutside tr.table-data-header td .DataLabel {
		font-weight: 600 !important;
		color: #333333;
}

/* Quick add */

.quick-add-container {
	margin: 0 auto;
	border-radius: 2px;
}

.quick-add-container.shoppingcart {
	background: #ffffff !important;
}

@media screen and (max-device-width: 767px) {
	.quick-add-container .ShoppingCartInner {
		padding: 5px;
		border: 1px solid #ddd;
	}
	.quick-add-container .ShoppingCartInner td {
		display: inline-block;
		vertical-align: top;
		width: 58%;
	}
	.quick-add-container .ShoppingCartInner td:last-child {
		width: 35%;
		margin-left: 5%;
	}
}

/* Address section */

.address-container {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	border-radius: 0;
	padding: 0;
}

.address-container .shoppingCartHeader {
	font-weight: bold;
}

.address-group {
	display: inline-block;
	vertical-align: top;
	line-height: 18px;
	box-sizing: border-box;
	text-align: left;
	width: 49%;
	max-width: 390px;
	margin: 10px 10px 15px;
	line-height: 22px;
	padding: 0 5px;
}

@media screen and (max-device-width: 767px) {
	.address-group {
		margin: 10px 0 15px;
	}
}

.address-group h2 {
	font-size: 14px;
	margin: 0 0 5px;
	padding: 0;
}

.address-group span {
	display: block;
	text-transform: capitalize;
	font-size: 15px;
	color: #333333;
	font-weight: 400;
}

.address-container .TableInside {
	padding: 5px;
	box-sizing: border-box;
}

.address-container .shoppingCartHeader div {
	padding: 5px;
}

.address-wrapper {
	padding: 0;
}

#cartBody #TableTerms2 {
	padding: 0;
}

#cartBody #TableTerms2 .DataLabel {
	width: 100%;
}

table.shipping,
table.billing {
	padding-top: 5px;
}

table.shipping td,
table.billing td {
	padding: 5px 0 !important;
}

table.shipping td.DataLabel,
table.billing td.DataLabel {
	min-width: 115px;
	padding: 5px 8px !important;
}


table.shipping select,
table.shipping input,
table.billing select,
table.billing input {
    width: 100% !important;
    min-width: 200px;
	padding: 4px;
	border-radius: 4px;
	border: 1px solid #cccccc !important;
}

.billing-checkbox-wrapper {
	position: relative;
	padding-left: 20px;
	line-height: 18px;
	font-weight: 300;
}

.billing-checkbox-wrapper input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0px;
	min-width: 0;
}

@media screen and (min-device-width: 768px) {
	.billing-checkbox-wrapper {
		margin-top: 10px;
		font-size: 13px !important;
	}

}

@media screen and (max-device-width: 767px) {
	.address-group {
		width: 100%;
	}
}

/* Error Validation */
 
#cartBody .has-error {
    border-color: #a94442 !important;
}

#cartBody .DataLabel.has-error {
    color: #a94442 !important;
}

#cartBody .DataError, #cartBody .TableOutside .TableInside .DataError {
    font-size: 14px;
    padding: 5px 0;
    color: #a94442;
}

#cartBody tr.DataErrorRow .DataError {
    margin: 10px 0;
    padding: 5px 15px;
    border: 1px solid #a94442;
    color: #a94442;
    border-radius: 3px;
    background: #f2dede;
}

.address-label {
	display: block;
	min-width: 200px;
}

/* Edit Autoship Address Table */

#cartBody .TableOutside.edit-autoship-address .TableInside input[type="text"],
#cartBody .TableOutside.edit-autoship-address .TableInside select {
	width: 100%;
}

@media (min-device-width: 768px) and (max-device-width: 1220px) {
	#cartBody .TableOutside.edit-autoship-address .responsive-table-footer {
		text-align: left;
	}
}

@media screen and (min-device-width: 768px) {
	#cartBody .TableOutside.edit-autoship-address .TableInside {
		width: 1218px !important;
		overflow-x: auto;
	}

	#cartBody .TableOutside.edit-autoship-address .TableInside td {
		width: 241px;
	}

	#cartBody .TableOutside.edit-autoship-address .TableInside td.DataLabel {
		width: 165px;
	}
}

/* Payments table */

#cartBody #PaymentsBox table.payment-table td {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 5px 0;
	padding: 0;
}

#cartBody #PaymentsBox td.datalabel,
#cartBody #PaymentsBox table.payment-table td.datalabel,
#cartBody #PaymentsBox td.datalabel label {
	margin-bottom: 0;
}

#PaymentsBox tr td {
	display: block;
}

#PaymentsBox tr td.inlineRow {
	display: inline-block;
}

#PaymentsBox #paymentOptions tr td {
       display: table-cell;
}

#PaymentsBox tr td input[type="radio"] {
	width: auto;
}

#PaymentsBox .amount-charged {
	font-size: 15px;
}

#cartBody .payment-table td.payment-table-info {
	font-size: 11px !important;
	margin-bottom: 10px;
}

@media screen and (min-device-width: 768px) {
	#cartBody #PaymentsBox table.payment-table td {
		max-width: 400px;
	}
}

@media screen and (max-device-width: 767px) {
	#cartBody #PaymentsBox table.payment-table .whats-this {
		display: block;
		margin-top: -5px;
	}
}

#cartBody #PaymentsBox .TableInside {
	padding-top: 0;
}

.payment-amount-charged {
	font-size: 15px;
	line-height: 24px;
	margin: 0;
}

#PaymentsBox #paymentOptions {
	border-spacing: 0;
	border-collapse: collapse;
}

#PaymentsBox #paymentOptions tr td {
	display: table-cell;
}

#PaymentsBox #paymentOptions .TableRowHeader tr {
	background: #cccccc;
}

#PaymentsBox #paymentOptions .TableRowHeader th {
	border: 0;
	background: #cccccc;
}

#PaymentsBox #paymentOptions tbody tr:nth-child(odd) > td {
	background: #eeeeee;
}

#PaymentsBox #paymentOptions tbody tr:nth-child(even) > td {
	background: #ffffff;
}

@media screen and (max-device-width: 767px) {
	#PaymentsBox #paymentOptions .TableRowHeader {
		display: table-row;
	}

	#PaymentsBox #paymentOptions .TableRowHeader th {
		display: table-cell;
		padding: 5px;
		width: auto;
	}

	#PaymentsBox #paymentOptions td {
		width: auto;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}


/* Checkout summary */

#shopping-checkout-summary {
	border-collapse: collapse;
}

@media screen and (min-device-width: 768px) {
	.hidden-td.desktop-only {
		display: table-cell !important;
		padding: 0 !important;
	}
}

#cartBody #shopping-checkout-summary td.DataLabel {
	font-weight: bold !important;
}

#GiftMessage {
	margin:10px 0 15px;
}

#GiftMessage input {
	margin-top: 10px;
}

@media screen and (min-device-width: 768px) {
	#shopping-checkout-summary  #shipping-method td {
		padding: 10px 15px !important;
		border-top: 1px solid #cccccc;
		text-align: left;
		background: #f3f3f3 !important;
	}
	
	#cartBody #shopping-checkout-summary #sub-total-row {
		background: #f3f3f3;
		border-bottom: 1px solid #cccccc;
	}
	
	#cartBody #shopping-checkout-summary #sub-total-row td {
		background: #f3f3f3;
		font-weight: bold !important;
	}
}

/* Use Credits Table */

#tblCreditsProductCards {
	margin-top: 15px;
}

@media screen and (max-device-width: 767px) {
	#txtCA_1 {
		margin-top: 10px;
	}
}

/* Pay with GC Table */

#tblGiftCerts td {
	display: inline-block;
	vertical-align: middle;
	padding: 5px 5px 0 0!important;
	width: auto;
}

#tblGiftCertsCode {
	margin: 5px 0;
}

#tblGiftCertsCode td {
	padding: 0 !important;
}

@media screen and (max-device-width: 767px) {
	#txtCA_1 {
		margin-top: 10px;
	}
}

/* Party Inputs */

select#PartyDDL {
    margin-bottom: 10px;
}

#partyInput {
	min-width: 300px;
	margin: 0;
}

@media screen and (max-device-width: 767px) {
	#partyInput {
		margin: 5px 0;
	}
}

/* Replicated site table */

#cartBody .replicated-site-table td {
	font-size: 15px;
	padding: 5px 15px;
}

@media screen and (max-device-width: 767px) {
	#cartBody .replicated-site-table td {
		padding: 10px 5px 5px;
	}
}

/* Extranet site table */

#cartBody .extranet-password-table td {
	font-size: 15px;
	padding: 5px 15px;
}

@media screen and (max-device-width: 767px) {
	#cartBody .extranet-password-table td {
		padding: 10px 5px 5px;
	}
}

/* Product Display table */

#cartBody .product-display-table td {
	margin: 0;
}

#cartBody .product-display-table tr.product-row td,
#cartBody .product-display-table tr.product-explanation-row td {
    padding:  5px 15px;
}

@media screen and (max-device-width: 1024px) {
	#cartBody .product-display-table tr.product-row td,
	#cartBody .product-display-table tr.product-explanation-row td {
		padding:  5px 10px;
	}

	#cartBody .product-display-table tr.product-explanation-row {
		display:  block;
		border-bottom:  1px solid #eeeeee;
		margin-bottom: 10px;
		padding-bottom: 15px;
	}

	#cartBody .product-display-table tr.product-explanation-row:last-child {
		margin-bottom: 0;
		border-bottom: 0;
	}
}

#cartBody .product-display-table .TableInside {
	border-collapse: collapse;
}

#cartBody .product-display-table .product-display-row td {
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
}

#cartBody .product-display-table .product-display-row td.product-display-radio {
	width: 60px;
	text-align:  center;
}

#cartBody .product-display-table .product-display-row td.product-display-img {
	max-width: 150px;
	height: 80px;
	line-height: 80px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: 0;
	padding: 5px;
	text-align: left !important;
}

#cartBody .product-display-table .product-display-row td.product-display-img img {
	vertical-align: middle;
	max-height: 100%;
	max-width: 100%;
}

#cartBody .product-display-table .product-display-row td.product-display-description {
	padding-left: 20px;
}

#cartBody .product-display-table .product-display-explanation-row {
	border-bottom: 1px solid #cccccc;
	background: #ffffff;
}

#cartBody .product-display-table .product-display-explanation-row td {
	padding: 5px 15px 10px 60px;
	font-size: 15px;
	background: #ffffff;
}

@media screen and (max-device-width: 767px) {
	#cartBody .product-display-table .product-display-explanation-row td {
		padding: 5px 15px 10px;
	}
}

#cartBody .product-display-table .product-display-explanation-row td ul {
	margin: 0;
	padding: 0 0 0 20px;
}

@media screen and (max-device-width: 767px) {

	#cartBody .product-display-table .product-display-row td,
	#cartBody .product-display-table .product-display-explanation-row td {
		display: table-cell;
	}
	
	#cartBody .product-display-table .product-display-row td.product-display-img {
		width: 90px;
		margin: 0 10px 0 0;
		box-sizing: border-box;
	}

}

/* Additional options table */

#cartBody .additional-options-table .TableInside {
	border-collapse: collapse;
}

#cartBody .additional-options-table .divider {
	border-bottom: 1px solid #cccccc;
}

#cartBody .additional-options-table .divider:last-child {
	border-bottom: 0;
}

#cartBody .additional-options-table td {
	font-size: 15px;
	padding: 10px;
}
@media screen and (max-device-width: 767px) {
	#cartBody .additional-options-table td {
		padding: 5px 10px;
	}
}


#cartBody .additional-options-table td.signup-header {
	padding: 5px 15px;
}

#cartBody .additional-options-table input {
	text-align: left !important;
}

@media screen and (max-device-width: 767px) {
	#cartBody .additional-options-table td.additional-options-img {
		text-align: center !important;
		border-bottom: 0;
	}
}

/* Error tables */

#cartBody .TableOutsideSignup_Validation {
	background: transparent !important;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ebccd1;
	border-radius: 3px;
}

#cartBody .TableOutsideSignup_Validation tr:first-child td {
	background: #f2dede;
	color: #a94442 !important;
	font-size: 15px !important;
	padding: 5px 15px;
}

#cartBody .TableInsideSignup_Validation {
	background: #ffffff;
	border-collapse: collapse;
	border-spacing: 0;
}

#cartBody .TableInsideSignup_Validation tr:first-child td {
	background: #ffffff;
	color: #a94442 !important;
	font-size: 15px !important;
	padding: 5px 15px;
	font-weight: 300;
    line-height: 22px;
}

#cartBody .TableInsideSignup_Validation td.responsive-table-footer {
	border-color: #ebccd1;
	background: #ffffff;
	text-align: left;
	font-size: 14px;
	margin: 0;
}
#cartBody .TableInsideSignup_Validation td.responsive-table-footer a {
	font-size: 14px;
}

@media screen and (max-device-width: 767px) {
	#cartBody .TableOutsideSignup_Validation tr:first-child td {
		padding: 5px;
		margin: 0;
	}
}

/* Inventory collection table */ 

#tblInventoryCollectionTerms .TermsHeader td:first-child {
	padding-right: 0;
}

#tblInventoryCollectionTerms #InventoryCollectionOrders table tr td {
	padding: 0;
}

/*=================================*/
/* Standard responsive table styles*/
/*=================================*/

@media screen and (max-device-width: 767px) {

    /* General */

    .responsive-table th,
    .responsive-table td,
    .responsive-table span,
    .responsive-table div,
    .responsive-table button {
        font-size: 14px;
        font-family: Arial, Helvetica, sans-serif !important;
    }

    /* Table */

    .responsive-table {
        color: #333;
        width: 100%;
        margin: 0 auto;
        border-radius: 4px;
        margin-bottom: 15px;
		background: #ffffff;
		border-collapse: collapse;
    }

    .responsive-table .responsive-table {
        border: 1px solid #dddddd;
        padding: 10px;
    }

    .responsive-table table td table {
        width: 100%;
    }

    /* Thead */

    .responsive-table thead {
        background: none repeat scroll 0 0 #CED0D1;
        border-bottom: 1px solid #ddd;
        border-spacing: 0;
    }

	/* tr */
	.responsive-table.inline-labels .TableInside tr {
		line-height: 22px;
		text-align: left;
	}

    /* td/th */

    .responsive-table th,
    .responsive-table td:before {
        color: #333;
    }

    .responsive-table th,
    .responsive-table td {
        display: table-cell;
        margin: 0;
        text-align: left;
    }

    .responsive-table th:first-child,
    .responsive-table td:first-child {
        padding-left: 0;
    }
    .responsive-table th:last-child,
    .responsive-table td:last-child {
        padding-right: 0;
    }

    /* td */

    .responsive-table td {
        display: block;
    }

    .responsive-table table td,
    .responsive-table table td table td {
        width: 100%;
        margin: 0;
        text-align: left !important;
	}
	
	.responsive-table table tr:last-child td,
    .responsive-table table tr:last-child td table td {
        margin-bottom: 5px;
	}
	
    /* th */

    .responsive-table th {
        display: none;
    }

    /* Inputs */

    .responsive-table input {
        display: block;
        box-sizing: border-box;
        font-size: 15px;
        padding: 8px !important;
        border: 1px solid #ccc !important;
		border-radius: 4px;
	}
	
	.responsive-table input[type="submit"],
	.responsive-table input[type="button"] {
		-webkit-appearance: none;
	}

    .responsive-table input[type="checkbox"],
    .responsive-table input[type="radio"] {
        display: inline !important;
    }
    .responsive-table select {
        width: 100% !important;
        padding: 6px !important;
        font-size: 15px;
    }

    /* Table data item */

    .responsive-table .table-data-item {
        display: block;
        border-bottom: 1px solid #dddddd;
        padding: 2px 8px;
    }
    .responsive-table .table-data-item td {
        font-weight: 400;
    }
    .responsive-table .table-data-item td:before {
        content: attr(data-title);
        font-weight: bold;
        width: 100%;
        display: block;
        margin-bottom: 7px;
        color: #333;
	}
	.responsive-table.inline-labels .table-data-item td:before {
        content: attr(data-title) ": ";
        font-weight: bold;
        display: inline;
        color: #333;
	}
	.responsive-table .table-data-item td.hide-mobile-label:before {
        display: none;
    }
    .responsive-table .table-data-item a {
        display: inline-block;
        padding: 10px 10px;
        border-radius: 2px;
        text-align: center;
        font-size: 15px;
        font-family: Arial, Helvetica, sans-serif !important;
        margin-top: -15px;
        margin-bottom: 5px;
        color: #fff !important;
        background-color: #c9302c;
        border: 1px solid #ac2925;
    }

    /* Images */

    .responsive-table img {
        max-width: 100%;
    }

	form#frmNewCust .responsive-table table#Table3, form#frmNewCust .responsive-table table#Table5 {
		margin-bottom: 45px;
	}
}

@media screen and (max-device-width: 767px) {
	.responsive-table .table-data-item a {
		display: block;
	}

	.responsive-table tr {
		display: grid;
	}

	.responsive-table tr.TableRowHeader {
		display: none;
	}

	#PaymentsBox.responsive-table tr {
		display: table-row;
	}
}

/* --------------------------------------------- */
/* Enrollment Page Sections | EnrollNew_Info.asp */
/* --------------------------------------------- */


/* Specify placement */

#tSpecifyPlacement tr#UnilevelOptions td td {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin-right: 15px;
}

@media screen and (min-device-width: 768px) {
	#tSpecifyPlacement #tSignupPlacementID {
		padding-top: 20px;
	}
}

@media screen and (max-device-width: 1024px) {
	#tSpecifyPlacement .TableInsideSignup {
		padding-top: 0;
	}
}

/* New Rep info */

#NewRepInfo .TableInsideSignup td {
	display: inline-block;
	vertical-align: middle;
}

#NewRepInfo .TableInsideSignup tr td.DataLabel:first-child {
	min-width: 170px;
}

/* Billing and Shipping info */

#tBillingShipping .TableInsideSignup td {
	display: inline-block;
}

#tBillingShipping .TableInsideSignup tr td.DataLabel {
	min-width: 140px;
}

#tBillingShipping .TableInsideSignup td select {
	width: 100%;
}

/* Contact information */

#tContactInformation .TableInsideSignup td {
	display: inline-block;
}

#tContactInformation .TableInsideSignup tr td.DataLabel {
	min-width: 120px;
}

/* Bonus Account Information */

#tbBonusAcctInfo .TableInsideSignup td {
	display: inline-block;
}

#tbBonusAcctInfo .TableInsideSignup tr td.DataLabel {
	min-width: 145px;
}

/* Replicated site URL */

#tbReplicatedSite .replicated-site-table td {
	display: inline-block;
}

#tbReplicatedSite .replicated-site-table td#tdReplicatedSite {
	padding: 15px 0 10px 15px;
}

/* Extranet Password */

#tExtranetPassword .extranet-password-table td {
	display: inline-block;
}

#tExtranetPassword .extranet-password-table td.DataLabel {
	min-width: 155px;
}

/* Enrollment Terms */

#TableTerms2 .TableRowHeader td {
	border-right: 0;
	padding: 10px 5px;
}

.TermsAndConditionsScrollableContainer {
	height: 100%;
	max-height: 50vh;
	padding: 10px 15px;
	overflow-y: auto;
}

@media screen and (max-device-width: 767px) {
	#TableTerms2 tr.TableRowHeader {
		display:block;
		padding: 5px;
	}

	#TableTerms2 .TableRowHeader td {
		display: table-cell;
		border-bottom: 0;
		padding: 0;
		margin: 0;
	}

	#TableTerms2 .TableRowHeader td:first-child {
		width: 60px;
		padding-right: 5px;
	}

	.TermsAndConditionsScrollableContainer {
		padding: 0 5px;
	}
}

/* --------------------------------------------- */
/* My Account Extranet */
/* --------------------------------------------- */

@media screen and (min-device-width: 768px) {

	/* Country Selection */
	#cartBody #countrySelection .datalabel {
		width: 150px;
	}

	/* Product Selection */
	#cartBody #productSelection.TableOutside .TableInside td {
		vertical-align: middle;
		border-bottom: 1px solid #dddddd;
	}

	#cartBody #productSelection.TableOutside tr:last-child td {
		border-bottom: 0;
	}

    #cartBody #productSelection .TableInside tbody > tr {
		border-right: 1px solid #cccccc;
    }
    
	/* Autoship Information*/
	#cartBody #autoshipInformation .datalabel {
		width: 210px;
	}

	/* Autoship Payment */
	#cartBody #autoshipShippingMethod .datalabel {
		width: 220px;
	}

	#cartBody #setAutoshipSchedule .datalabel {
		width: 140px;
	}

	#cartBody #autoshipPayment .datalabel {
		width: 200px;
	}

	/* Change Password */

	#cartBody #changePassword .datalabel {
		width: 170px;
	}

	/* Edit Customer */
	
	#cartBody #editCustomerProfile .datalabel {
		width: 170px;
	}
}

@media screen and (max-device-width: 767px) {

		/* Product Selection */
		#cartBody #productSelection tbody td {
			border-bottom: 0;
		}

		#cartBody #productSelection.TableOutside td:last-child {
			border-bottom: 1px solid #dddddd;
		}

		#cartBody #productSelection.TableOutside tr:last-child td:last-child {
			border-bottom: 0;
		}

}

/* My Account - Autoship */

a.autoship-edit-link {
	color: #0000ff !important;
	font-weight: normal;
	float: right;
}

.autoship-products-table {
    width: 100%;
	overflow: visible;
}

#cartBody .TableInside.autoship-products-table {
	padding: 0;
}

.autoship-products-table tr.table-data-item {
	padding: 0;
}

.autoship-products-table td {
	padding: 4px 10px;
}

.autoship-products-table.has-border td {
	border: 1px solid #cccccc;
}

.autoship-products-table td:last-child {
	border-right: 1px solid #cccccc !important;
}

.autoship-products-table td.catheader {
    padding: 5px; 
}

.autoship-products-table td img[data-toggle="modal"] {
	cursor: pointer;
}

@media screen and (max-device-width: 767px) {
    .autoship-products-table td {
        border-bottom: 0;
        text-align: left;
        padding: 5px 10px;
	}
	
	.autoship-products-table.has-border td {
		border-top: 0;
		border-bottom: 0;
	}

    .autoship-products-table td:first-child {
        padding: 5px 10px;
    }

    .autoship-products-table td:last-child {
        border-right: 0 !important;
        text-align: left;
        padding: 5px 10px;
	}
	
	.autoship-products-table.has-border td:last-child {
        border-right: 1px solid #cccccc !important;
    }

}

#cartBody .autoship-products-table td.category-parent {
	background: #eeeeee;
	border-bottom: 1px solid #cccccc;
	color: #333333;
}


#cartBody .autoship-products-table td.category-parent .CategoryLabel,
#cartBody .autoship-products-table td.category-parent .CategoryText  {
	color: #333333 !important;
}

#cartBody .form-control {
	box-shadow: none;
}

.autoship-panel.panel {
	box-shadow: none;
}

.autoship-panel.panel .panel-heading {
	padding: 0;
}

.autoship-panel.panel .panel-title a,
.autoship-panel.panel .panel-title a:hover {
	position: relative;
	display: block;
	width: 100%;
	padding: 10px 15px 10px 30px;
	text-decoration: none;
}

.autoship-panel.panel .panel-title a:before {
	position: absolute;
	left: 10px;
	top: 8px;
	font-family: 'Font Awesome 5 Free';
	content: '\f0d8';
	font-size: 18px;
}

.autoship-panel.panel .panel-title a.collapsed:before {
	content: '\f0d7';
}

.autoship-panel.panel .panel-body ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.autoship-panel.panel .panel-body ul li a {
	display: block;
	padding: 8px 10px;
	border-bottom: 1px solid #cccccc;
}

.autoship-panel.panel .panel-body ul li:last-child a {
	border-bottom: 0;
}

.autoship-panel.panel .panel-body ul li a:hover {
	background: #f9f9f9;
}

@media screen and (max-device-width: 767px) {
	.autoship-panel.panel .panel-body .form-inline .form-group {
		display: inline-block;
		margin-bottom: 0;
	}
}

@media screen and (min-device-width: 768px) {
	#cartBody #ProductSearch {
		width: 405px;
	}
}


#cartBody .form-inline input[type="text"] {
	padding: 5px 10px;
}


/* Customer Application */

#customerAppTitle.shoppingCartHeader div {
	background: #ffffff !important;
	border: 0 !important;
	font-size: 22px !important;
}

/* Enroll New - Autocomplete */

#autocompleteContainer {
	position: relative;
}

#autocompleteContainer ul#SponsorList {
	display: none;
	position: absolute;
	top: 28px;
	left: 0;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 3px;
	max-height: 240px;
	overflow-y: auto;
}

#autocompleteContainer ul#SponsorList.active {
	display: block;
}

#autocompleteContainer ul#SponsorList li {
	display: block;
	color: #000000;
	padding: 3px 5px;
}

#autocompleteContainer ul#SponsorList li:hover {
	background: #efefef;
	cursor: pointer;
}

/* autoship quantity */

.autoship-products-table .itemQuantity {
	display: inline-block;
	vertical-align: top;
	width: 40px;
	height: 25px;
	border-radius: 0;
	margin-right: 0;
}

@media screen and (max-device-width: 767px) {
	.autoship-products-table .itemQuantity {
		height: 33px;
	}
}

.quantity-sub + .itemQuantity {
    border-radius: 0;
	height: 25px;
	max-width: 45px;
}

.quantity-add,
.quantity-sub {
	display: inline-block;
	vertical-align: top;
	width: 15px;
	height: 25px;
	line-height: 25px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 0;
	border: 0;
	padding: 0;
	cursor: pointer;
	outline: 0;
	background: #dddddd;
}

.quantity-add {
	margin-left: 0;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.quantity-sub {
	margin-left: -4px;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

@media screen and (max-device-width: 767px) {
	.quantity-sub + .itemQuantity {
		height: 33px;
	}

	.quantity-add,
	.quantity-sub {
		height: 33px;
		width: 30px;
		font-size: 16px !important;
		line-height: 33px;
	}

	.quantity-sub {
		margin-left: 10px;
	}
}

/* Collapsable Enrollment Options */

#cartBody .additional-options-table table tr:last-child td {
	margin: 0;
}

/* Collapse Header */

#cartBody .additional-options-table tr.collapse-header > td {
	font-weight: 600 !important;
    margin-left:  -15px;
    margin-right:  -15px;
    background: #E8E8E8 !important;
    padding: 10px 15px;
	border-top: 1px solid #cccccc;
	cursor: pointer;
	backface-visibility: hidden;
}

#cartBody .additional-options-table tr.collapse-header > td > .collapse-title {
	position: relative;
	display: block;
	font-size: 15px !important;
	font-weight: 600 !important;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

#cartBody .additional-options-table tr.collapse-header > td > .collapse-title:before {
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	top: -5px;
	right: 5px;
	content: "\f0d8";
	font-size: 22px;
}

#cartBody .additional-options-table tr.collapse-header > td.collapsed > .collapse-title:before {
	content: "\f0d7";
}

@media screen and (max-device-width: 767px) {
	#cartBody .additional-options-table tr.collapse-header > td {
		margin-left:  0;
	}
}

#cartBody .additional-options-table tr.collapse-header:first-child > td {
	border-top: 0;
}

#cartBody .additional-options-table tr.collapse-header > td.collapsed {
	background: #eeeeee !important;
}

/* Collapse Section */

#cartBody .additional-options-table tr.collapse-section td.table-data-item {
	padding: 0;
}

#cartBody .additional-options-table tr.collapse-section table {
	margin: 15px;
	width: auto !important;
	border: 1px solid #cccccc;
	border-bottom: 0;
}

#cartBody .additional-options-table tr.collapse-section > td {
	padding: 0;
}

#cartBody .additional-options-table tr.collapse-section table td {
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

@media screen and (max-device-width: 767px) {
	#cartBody .additional-options-table tr.collapse-section table td {
		border: 0;
	}
}

#cartBody .additional-options-table tr.collapse-section table td:last-child {
	border-right: 0;
}

#cartBody .additional-options-table tr.collapse-section tr.explanation-row {
	border-bottom: 1px solid #cccccc;
}

#cartBody .additional-options-table tr.collapse-section tr.TableRowHeader > td {
	font-weight: 600 !important;
}

#cartBody .additional-options-table tr.collapse-section tr.RowBGAlternate > td {
	background: #F0F0F0;
	margin: 0;
}

/* Fixed header table */ 

.fixed-header-table {
	overflow-y: auto;
	max-height: 200px;
}

 .fixed-header-table thead th {
	position: sticky;
	top: 0;
	background: #eeeeee !important;
	box-shadow: inset 0 -1px #cccccc, 0 -1px #cccccc;
}

.fixed-header-table thead th:last-child {
	border-right: 0 !important;
}

#cartBody .fixed-header-table .TableRowHeader th {
	border-bottom: 0;
}

.fixed-header-table table {
	border-collapse: collapse;
	width: 100%;
}

#cartBody .fixed-header-table table > tbody > tr.table-data-item:last-child > td {
	border-bottom: 0 !important;
}

/* Ajax Loading Indicator */

#loading {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    display: none;
    z-index: 1001;
}

.loader {
  width: 100px;
  height: 20px;
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loader > div {
  content: " ";
  width: 20px;
  height: 20px;
  background: #2196F3;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: shift 2s linear infinite;
          animation: shift 2s linear infinite;
}
.loader > div:nth-of-type(1) {
  -webkit-animation-delay: -.4s;
          animation-delay: -.4s;
}
.loader > div:nth-of-type(2) {
  -webkit-animation-delay: -.8s;
          animation-delay: -.8s;
}
.loader > div:nth-of-type(3) {
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
}
.loader > div:nth-of-type(4) {
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
}

@-webkit-keyframes shift {
  0% {
    left: -60px;
    opacity: 0;
    background-color: #EAF3E2;
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 100px;
    opacity: 1;
  }
  100% {
    left: 160px;
    background-color: #6BA33B;
    opacity: 0;
  }
}

@keyframes shift {
  0% {
    left: -60px;
    opacity: 0;
    background-color: #EAF3E2;
  }
  10% {
    left: 0;
    opacity: 1;
  }
  90% {
    left: 100px;
    opacity: 1;
  }
  100% {
    left: 160px;
    background-color: #6BA33B;
    opacity: 0;
  }
}

/* Autoship Products Table */

#cartBody .autoship-products-table td.hide-border:last-child {
	border: 0 !important;
}

#cartBody .autoship-products-table .autoship-products-table-inside tr.cat-exp-col td:first-child {
	border-top: 1px solid #cccccc;
	border-right: 0 !important;
}

#cartBody .autoship-products-table .autoship-products-table-inside:first-child tr.cat-exp-col td:first-child {
	border-top: 0;
}

#cartBody .autoship-products-table tr.cat-exp-col .categoryIcon {
	margin: 0 5px;
}

@media screen and (min-width: 768px) {
	#cartBody .autoship-products-table .TableRowHeader td {
		border-top: 1px solid #cccccc;
	}

	#cartBody .autoship-products-table-inside + .autoship-products-table tr.TableRowHeader td:last-child,
	#cartBody .autoship-products-table-inside + .autoship-products-table tr.table-data-item td:last-child {
		border-right: 0 !important;
	}
}

@media screen and (max-device-width: 767px) {
	#cartBody .autoship-products-table .TableRowHeader {
		display: none !important;
	}

	#cartBody .autoship-products-table-inside tr.cat-exp-col td:last-child {
		margin-bottom: 0 !important;
	}
}

/* Additional Payments Table */

#cartBody table#additionalPaymentTable {
    border: 0;  
}

#cartBody table#additionalPaymentTable td {
   padding: 5px 10px;
}

#cartBody table#additionalPaymentTable td:last-child {
    padding-bottom: 0;
}

@media screen and (min-device-width: 768px) { 
    #cartBody table#additionalPaymentTable td {
       padding-left: 15px;
    }
}