/*********** CSS RESET **********/

@font-face {
    font-family: 'OggTextBook';
    src: url('../fonts/OggTextBook.eot');
    src: url('../fonts/OggTextBook.eot') format('embedded-opentype'),
         url('../fonts/OggTextBook.woff2') format('woff2'),
         url('../fonts/OggTextBook.woff') format('woff'),
         url('../fonts/OggTextBook.ttf') format('truetype'),
         url('../fonts/OggTextBook.svg#OggTextBook') format('svg');
}
@font-face {
    font-family: 'AvenirBook';
    src: url('../fonts/AvenirBook.eot');
    src: url('../fonts/AvenirBook.eot') format('embedded-opentype'),
         url('../fonts/AvenirBook.woff2') format('woff2'),
         url('../fonts/AvenirBook.woff') format('woff'),
         url('../fonts/AvenirBook.ttf') format('truetype'),
         url('../fonts/AvenirBook.svg#AvenirBook') format('svg');
}
@font-face {
    font-family: 'AvenirMedium';
    src: url('../fonts/AvenirMedium.eot');
    src: url('../fonts/AvenirMedium.eot') format('embedded-opentype'),
         url('../fonts/AvenirMedium.woff2') format('woff2'),
         url('../fonts/AvenirMedium.woff') format('woff'),
         url('../fonts/AvenirMedium.ttf') format('truetype'),
         url('../fonts/AvenirMedium.svg#AvenirMedium') format('svg');
}
@font-face {
    font-family: 'AvenirLight';
    src: url('../fonts/AvenirLight.eot');
    src: url('../fonts/AvenirLight.eot') format('embedded-opentype'),
         url('../fonts/AvenirLight.woff2') format('woff2'),
         url('../fonts/AvenirLight.woff') format('woff'),
         url('../fonts/AvenirLight.ttf') format('truetype'),
         url('../fonts/AvenirLight.svg#AvenirLight') format('svg');
}
@font-face {
    font-family: 'AvenirBlack';
    src: url('../fonts/AvenirBlack.eot');
    src: url('../fonts/AvenirBlack.eot') format('embedded-opentype'),
         url('../fonts/AvenirBlack.woff2') format('woff2'),
         url('../fonts/AvenirBlack.woff') format('woff'),
         url('../fonts/AvenirBlack.ttf') format('truetype'),
         url('../fonts/AvenirBlack.svg#AvenirBlack') format('svg');
}
@font-face {
    font-family: 'AvenirHeavy';
    src: url('../fonts/AvenirHeavy.eot');
    src: url('../fonts/AvenirHeavy.eot') format('embedded-opentype'),
         url('../fonts/AvenirHeavy.woff2') format('woff2'),
         url('../fonts/AvenirHeavy.woff') format('woff'),
         url('../fonts/AvenirHeavy.ttf') format('truetype'),
         url('../fonts/AvenirHeavy.svg#AvenirHeavy') format('svg');
}


:root {
    --bs-body-color: #000;
    --bs-body-bg: #fff;
    --theme-primary: #333;
    --theme-scandory: #0A7B3E;
    --bs-heading-color: #000;
    --dark-gray: #2b2b2b;
    --light-gray: #f4f3fc;
    --gray: #dbdae2;
    --gray2: #E5E2DC;
    --gray3: #e4e1db;
    --white: #fff;
    --ghostwhite: #f8f8ff;
    --black: #000;
    --font-heading: "OggTextBook";
    --font-body: "AvenirBook";
    --font-avenirmedium: "AvenirMedium";
    --font-avenirlight: "AvenirLight";
    --font-avenirblack: 'AvenirBlack';
    --font-avenirheavy: 'AvenirHeavy';
}

* {
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	margin: 0 !important;
	-webkit-text-size-adjust: none;
    overflow-x: hidden;
}
ol, ul {
	list-style: none;
    margin-bottom: 0;
    padding-left:0;
}
a img {
	border: none;
}
a:active {
	outline: none;
}
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
	margin: 0;
	border: 0;
	padding: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea {
	border-radius: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}
input::-moz-placeholder {
	opacity: 1; /*firefox text input bug fix*/
}
input:-webkit-autofill {
	-webkit-box-shadow: inset 0 0 0 1000px var(--white);
}
script {
    display: none !important;
}
input::-webkit-input-placeholder {
    color: #888;
}


/*********** GLOBAL STYLES **********/
html{overflow-x: hidden;}
body {
    background-color: var(--bs-body-bg);
    font-family: var(--font-body);
    color: var(--bs-body-color);
}
html.scrollYRemove,
body.scrollYRemove{/*overflow: hidden;*/}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: normal;
}
a {
	color: var(--black);
    text-decoration: none;
	cursor: pointer;
    text-decoration: none;
    outline: none;
}
a:hover {
    color: var(--theme-primary);
    outline: none;
    text-decoration: none;
}
a img {
	opacity: 0.99; /*firefox scale bug fix*/
}

table {
	width: 100%;
	border-collapse: collapse;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
textarea, select {
	height: 40px; /*safari padding fix*/
	border: 2px solid #eee;
	padding: 8px;
	vertical-align: middle;
    color: var(--black);
    font-family: var(--font-body);
}
input, textarea, select {
	font-size: 13px;
}
textarea {
	min-height: 150px;
}
select {
	min-width: 50px;
	/*height: 32px;*/
	padding: 5px;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus, select:focus {
    color: #222;
}
input[type="checkbox"],
input[type="radio"],
input[type="checkbox"] + *,
input[type="radio"] + * {
	vertical-align: middle;
}
input[type="button"], input[type="submit"],
button, .button-1, .button-2 {
	cursor: pointer;
}
label, label + * {
	vertical-align: middle;
}
img{max-width: 100%;}
.master-wrapper-page{position: relative;}
.category-page .page-title,
.slider-wrapper.mattresses-slider,
.products-container,
.category-grid.sub-category-grid,
.container-box,
.master-wrapper-content {
	position: relative;
	z-index: 0; /* giving priority to header and header-menu */
	max-width: 2000px;
	margin: 0 auto;
    padding-inline:100px;
    box-sizing: border-box;
}
.master-wrapper-content.cart {
    box-shadow: none;
    margin-bottom: 0;
}
#headerMenuParent {
    padding-inline:100px;
    position: sticky;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
}
.header-menu-frame{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    position: relative;
}
.menu-holder{
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}
.menu-holder:hover{z-index: 10;}
.container-box{z-index: 1;}
.master-column-wrapper:after,
.header-upper:after,
.header-lower:after,
.container-box:after,
.master-wrapper-content:after{
    display: block;
    content: '';
    clear: both;
}
.master-wrapper-home .master-wrapper-content {
    padding-inline: 0;
}
.center-1 {
	margin: 0 0 20px;
}
.html-home-page .center-1 {
    margin-bottom: 0;
}
.center-2, .side-2 {
	margin: 0 0 20px;
}
.page {
	text-align: center;
}
.page-title {
    margin: 0 0 40px;
}
.page-title h1 {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
}
.page:after,
.page-title:after,
.page-body:after {
	content: "";
	display: block;
	clear: both;
}
.buttons {
	margin: 0 0 20px;
	text-align: center;
}
.link-rss {
	display: none;
	width: 24px;
	height: 24px;
	background: url('../img/rss-icon.png') no-repeat;
	font-size: 0 !important;
}
.category-description ul,
.manufacturer-description ul,
.full-description ul,
.topic-html-content ul,
.topic-page ul,
.post-body ul,
.custom-tab ul {
    display: inline-block;
	margin: 12px 0;
	padding: 0 0 0 36px;
    text-align: left;
	list-style: disc;
}
.category-description ol,
.manufacturer-description ol,
.full-description ol,
.topic-html-content ol,
.topic-page ol,
.post-body ol,
.custom-tab ol {
    display: inline-block;
    text-align: left;
	margin: 12px 0;
	padding: 0 0 0 36px;
	list-style: decimal;
}
.topic-html-content ol,
.topic-page ol,
.topic-html-content ul,
.topic-page ul{
    display: block;
}
.category-description p,
.manufacturer-description p,
.full-description p,
.topic-html-content p,
.topic-page p,
.post-body p,
.news-body p,
.custom-tab p {
	margin: 10px 0;
}
.category-description a:hover,
.manufacturer-description a:hover,
.full-description a:hover,
.topic-html-content a:hover,
.topic-page a:hover,
.post-body a:hover,
.news-body a:hover,
.custom-tab a:hover {
    text-decoration: underline;
}
.flyout-cart {
	display: none;
}


/*********** GLOBAL FORMS ***********/



.fieldset, .section {
	position: relative;
	margin: 0 0 60px;
}
.fieldset .title,
.section .title {
	margin: 0 0 10px;
}
.fieldset .title strong,
.section .title strong {
    text-transform: uppercase;
    color: #444;
}

.inputs {
	position: relative;
	margin: 0 0 20px;
	text-align: center;
	white-space: nowrap; /*fix for 'required' elements*/
    font-size: 0;
}
.inputs:after {
	content: "";
	display: block;
	clear: both;
}
.inputs label {
	display: block;
	width: 100%;
	margin: 0 0 5px;
	text-align: center;
    font-size: 14px; /*reset zeroing*/
}
.inputs input[type="text"],
.inputs input[type="password"],
.inputs input[type="email"],
.inputs input[type="tel"],
.inputs select, .inputs textarea {
	width: 350px;
	max-width: 100%;
    border: 2px solid #eee;
    vertical-align: middle;
    font-size: 14px;
}

.inputs.custom-attributes {
	white-space: normal;
}

.inputs .option-list {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}
.inputs .option-list li {
	float: left;
	margin: 0 5px;
}
.inputs .option-list label {
	display: inline;
	width: auto;
	margin: 0 3px;
}

.inputs.reversed {
	margin: 0 0 20px;
	text-align: center;
}
.required {
	/*margin: 0 -6px 0 0;*/ /*siblings offset fix*/
    margin: 0 0 0 3px;
    font-size: 14px;
	color: #de524e;
}
.message-error,
.field-validation-error,
.username-not-available-status,
.poll-vote-error, .password-error {
	display: block;
    text-align: center;
	font-size: 13px;
	color: #de524e;
}
.field-validation-valid,
.username-available-status {
	display: block;
    text-align: center;
    font-size: 13px;
	color: #6bc29d;
}
.captcha-box {
	margin: 0 0 15px;
	text-align: center;
	line-height: 0; /*firefox line-height bug fix*/
}
.captcha-box > div {
	display: inline-block;
}
.captcha-box input {
	height: auto;
}

/*********** GLOBAL TABLES ***********/


.cart .remove-from-cart {
	position: relative;
}

.cart .remove-from-cart input {
    opacity: 0;
}

.cart .remove-from-cart button {
    position: relative;
    width: 50px;
    height: 50px;
    margin: auto;
    border: 0;
    transition: all .3s ease;
    background-color:transparent;
    font-size: 30px;
    line-height: 1;
}
.cart .remove-from-cart button:hover {color: var(--theme-scandory);}

.chat-navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: var(--font-avenirheavy);
    letter-spacing: 1px;
}
.chat-navigation li{
    flex: 1;
}
.chat-navigation li a{
    color: var(--dark-gray);
    border: 2px solid var(--theme-primary);
    padding: 14px 15px;
    display: block;
    transition: all .3s ease;
}
.chat-navigation li a:hover{
    background-color: var(--theme-scandory);
    border-color: var(--theme-scandory);
    color: var(--white);
    text-decoration: none;
}

.detail-overview-accordion{
    border-top:1px solid var(--black);
    margin-bottom: 2rem;
}
.acc__card {
  margin: 0;
  position: relative;
  border-bottom:1px solid var(--black);
}
.acc__title {
  color: var(--black);
  cursor: pointer;
  display: block;
  padding: 1em 1.5em 1em 2.2em;
  position: relative;
  text-align: left;
  font-family: var(--font-avenirmedium);
}
.acc__title::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
  content: "\+";
  font-family: "Font Awesome 7 Sharp";
  font-size: 20px;
  line-height: 1;
  color: var(--theme-scandory);
}
.acc__title.active::after {
  content: "\f068";
}

.acc__panel {
  color: var(--black);
  display: none;
  margin: 0;
  padding: 0 0;
  text-align: left;
}

/*********** NOTIFICATIONS & POPUPS  ***********/



.bar-notification {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1040;
	width: 100%;
	padding: 12px 25px 12px 10px;
	color: var(--white);
	opacity: 0.95;
}
.bar-notification.success {
	background: #6bc29d;
}
.bar-notification.warning {
	background: #ed8b69;
}
.bar-notification.error {
	background: #de524e;
}
.bar-notification .content {
	float: left;
	margin: 0 10px 0 0;
}
.bar-notification .content a {
	color: var(--white);
	text-decoration: underline;
}
.bar-notification .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 33px;
	height: 33px;
	margin: 6px;
	background: url('../img/flyout-cart-close-button.png') no-repeat center;
	cursor: pointer;
}
.bar-notification .close:hover {
	opacity: 0.9;
}

.noscript {
    background-color: #ff9;
	padding: 10px;
    text-align: center;
}

.ajax-loading-block-window {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 999;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	/*background: url('../images/loading.gif') center no-repeat;*/
}

.ui-dialog {
    position: absolute !important;
	z-index: 1050;
	width: 400px !important;
	max-width: 95%;
	border: none;
	box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.17);
	overflow: hidden;
	background: var(--white);
}
.ui-dialog-titlebar {
	overflow: hidden;
	padding: 10px;
    background: var(--theme-primary);
	font-weight: bold;
    cursor: move;
}
.ui-dialog-titlebar span {
	float: left;
	text-transform: uppercase;
    color: var(--white);
}
.ui-dialog-titlebar button {
	position: absolute;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	margin: 8px;
	overflow: hidden;
	border: none;
  background: url(../img/close-button-white.png) no-repeat center;
  background-size: 24px auto;
	font-size: 0;
	opacity: 0.8;
}
.ui-dialog-titlebar button:hover {
	opacity: 1;
}
.ui-dialog-titlebar button * {
	display: none;
}
.ui-dialog-content {
	height: auto !important;
	padding: 10px 20px;
	line-height: 20px;
}

.eu-cookie-bar-notification {
    position: fixed;
    top: 50%;
	left: 50%;
	z-index: 1050;
	width: 320px;
    margin: -90px 0 0 -160px;
    box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.17);
    background-color: var(--white);
    padding: 20px;
	text-align: center;
}
.eu-cookie-bar-notification .text {
	margin-bottom: 20px;
	line-height: 20px;
}
.eu-cookie-bar-notification button {
    min-width: 100px;
    margin: 0 0 15px;
    border: 2px solid #eee;
	padding: 10px 15px;
	background-color: #f9f9f9;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.eu-cookie-bar-notification button:hover {
    background-color: #eee;
}
.eu-cookie-bar-notification a {
	display: block;
    color: var(--theme-primary);
}
.eu-cookie-bar-notification a:hover {
	text-decoration: underline;
}

#goToTop {
    display: none;
    position: fixed;
	   right: 20px;
    bottom: 20px;
	   z-index: 1030;
    width: 55px;
    height: 55px;
    border: 2px solid var(--white);
    overflow: hidden;
	  background: var(--theme-primary) url('../img/goTop.png') no-repeat center 48%;
    background-size: 19px auto;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#goToTop:hover {
    opacity: 0.9;
}


/*********** HEADER ***********/

.admin-header-links {
	background: var(--white);
	text-align: center;
    position: relative;
    z-index: 3;
}
.admin-header-links * {
	display: inline-block;
	margin: 0 10px;
	line-height: 35px;
}
.admin-header-links a {
	font-weight: bold;
    color: #444;
}
.admin-header-links .impersonate {
	display: inline-block;
}
.header-upper{
    position: relative;
    z-index: 2;
    background-color: var(--white) !important;
}
.top-nav-close{
    display: none;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 2px solid #d3d5d3;
    min-width: inherit;
    position: absolute;
    z-index: 9999;
    right: 15px;
    top: 15px;
    color: var(--black) !important;
}
.header-nav-holder{
    display: inline-flex;
    margin-bottom: -8px;
}
.header-top-nav{
    display: inline-flex;
    align-items: center;
    gap:1px;
    text-transform: capitalize;
    font-family:var(--font-avenirlight);
    letter-spacing: 1px;
    position: relative;
    z-index: 1110;
}
.header-top-nav li a{
    display:block;
    background-color: rgba(0, 0, 0, .5);
    color: var(--white);
    padding: 10px 35px;
}
.header-top-nav li a:hover{
    background-color: var(--white);
    color:  var(--theme-primary);
}
.header-top-nav li.active a{
    font-weight: normal;
    font-family: var(--font-heading);
    text-transform: uppercase;
    background-color: var(--white);
    color:  var(--theme-primary);
}
.header-top-nav span{
    display:inline-block;
    border-bottom: 2px solid transparent;
}
.header-top-nav li.active span{
    border-bottom-color:  var(--theme-scandory);
}
.header-top{
    background-color: var(--theme-primary);
    position: relative;
    color: var(--white);
    font-size: 15px;
    padding-block:8px;
    line-height: 1.2;
}
.header-top .container-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.header .container-box:after{display: none;}
.header-top .leftbox{
    display: flex;
    align-items: center;
    gap:10px;
}
.header-top a{color: var(--white);}
.header-top p{
    margin-bottom: 0;
    text-align: left;
}
.header-top .voted p {
      line-height: 28px;
}
.header-top p b{
    font-family: var(--font-avenirmedium);
    letter-spacing: -.25px;
    font-size: 17px;
}
.shop-all{text-transform: capitalize;}
.shop-all a{
    display: flex;
    align-items: center;
    gap: 5px;
}
.shop-all .bi-arrow-right-short{
    font-size: 21px;
    line-height: 1;
    margin-top: 2px;
}
.header-options-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header {
	margin: 0 auto;
	text-align: center;
    position: relative;
    z-index: 3
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.06); */
}
.header:after {
	content: "";
	display: block;
	clear: both;
}
.header-options{
    display: inline-flex;
    align-items: center;
    position: static;
}
.header-logo {
	text-align: center;
    font-size: 0;
    max-width: 55px;
}
.header-logo a {
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    display: flex;
}
.header-logo a img {
	  max-width: 100%;
    opacity: 1;
    display: block;
    height: auto;
    max-height: 54px;
}
.header-links-wrapper .header-links{height: 100%;}
.header-links > ul {
	font-size: 0;
    display: flex;
    height: 100%;
}
.search-btn-opner img{
    max-width: 22px;
    max-height: 22px;
}
.saerch-overlay-box,
.overlay-box{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}
.category-page .page-title{padding-top: 20px;}
.login-drop-open .dropdown-toggle:hover i,
.login-drop-open .dropdown-toggle i{
    color: var(--white);
}
.search-box-open .saerch-overlay-box,
.search-drop-open .overlay-box,
.zipcode-drop-open .overlay-box,
.login-drop-open .overlay-box,
.get-help-open .overlay-box{
    opacity: 1;
    visibility: visible;
}
.zipcode-drop-open.change-location-modal .overlay-box{z-index: 99;}
.zipcode-drop-open .zipcode-dropdown .header-links-btn,
.login-drop-open .logindrop .header-links-btn,
.get-help-open .get-help-drop .header-links-btn{z-index: 3;}
.header-2 .header-options{
    display: flex;
    align-items: stretch;
}
.zipcode-dropdown.header-nearest-store{
    padding-inline: 1px;
    width: auto;
}
.header-2 .zipcode-dropdown.header-nearest-store{display: none;}
.header-links-wrapper,
.header-selectors-wrapper{
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 99;
}
.account-dropdown .dropdown-menu{
    box-shadow: 0 25px 30px rgba(0, 0, 0, .15);
    border-radius:0;
    margin-top: -3px !important;
    border: 0;
    padding-block: 15px;
}
.account-dropdown .dropdown-item:focus,
.account-dropdown .dropdown-item:hover,
.account-dropdown .dropdown-item.active,
.account-dropdown .dropdown-item:active {
    color: var(--theme-scandory) !important;
    background-color: transparent;
}
.header-links-btn{
    border: 0;
    outline: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 24px;
    line-height: 1.1;
    padding:0;
    text-transform: capitalize;
    height: 100%;
    background-color: transparent;
    position: relative;
    width: 50px;
    height: 50px;
}
.header-links-btn:hover i{color: var(--theme-scandory);}
.search-btn-opner .fa-xmark{display: none;}
.search-box-open .search-btn-opner .fa-xmark{display: block;}
.search-box-open .search-btn-opner .fa-magnifying-glass{display: none;}
.shopping-cart-btn .cart-qty{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 18px;
    height: 18px;
    background-color: var(--theme-scandory);
    color: var(--white);
    font-size: 11px;
    line-height: 1;
    border-radius: 50%;
}
.header-links .track .header-links-btn{min-width: 116px;}
.header-links-btn.dropdown-toggle::after{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-primary);
    border-top: 0.5em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    margin-top: -2px;
    display: none;
}
.zipcode-dropdown .header-links-btn.dropdown-toggle::after{display: none;}
.header-links-btn .button-icon{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-menu > ul > li > a,
.header-menu > ul > li > span {
    font-size: 16px;
    font-family: var(--font-avenirmedium);
}
.zipcode-holder{
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
    align-items: center;
    text-align: left;

}
.zipcode-holder img{max-height: 40px;}
.zipcode-holder p{
    margin: 2px 0;
    font-size: 18px;
}
.zipcode-holder em{
    color: #a7aaa7;
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
}
.zipcode-holder .holder strong{
    display: flex;
    align-items: center;
}
.zipcode-holder .holder strong i{
    color: var(--theme-primary);
    font-style: normal;
}
.zipcode-holder .holder strong span{
    display: grid;
    grid-template-columns: 9px 1fr;
    gap: 4px;
    align-items: center;
    margin-left: 4px;
}
.zip-drop-content .imgbox{padding-bottom: 10px;}
.zip-drop-content .imgbox img{
    width: 100%;
    border-radius: 15px;
}
.zip-drop-content .zipinfo{
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    align-items: center;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    padding: 13px 10px;
}
.zip-drop-content .zipinfo.border-b{border-bottom: 1px solid #aad1bc;}
.zip-drop-content .zipinfo .box1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.zip-drop-content .zipinfo .box1 img {
  max-height: 25px;
}
.zip-drop-content .zipinfo strong{
    color:var(--theme-primary);
    margin-top: 5px;
}
.zip-drop-content .zipinfo p{margin-bottom: 0;}
.zipcode-form{
    position: relative;
    background-color: #e9eae9;
    border-radius: 50px;
    height: 50px;
    width: 100%;
}
.zipcode-form input[type="text"]{
    height: 50px;
    width: 100%;
    background-color: #e9eae9;
    border-radius: 50px;
    padding-inline:40px 55px;
}
.zipcode-form input[type="text"]::-ms-input-placeholder {color: var(--black);}
.zipcode-form input[type="text"]::placeholder {color: var(--black);}
.zipcode-form .zip-button{
    border-radius:0 50px 50px 0;
    height: 50px;
    width: 50px;
    background-color: var(--black);
    color: var(--white);
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
}
.zipcode-form .zip-button:hover{background-color: var(--theme-primary);}
.zipcode-form .bi-geo-alt-fill{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--black);
}
.header-links-btn .button-icon img{max-height: 24px;}
.header-links-btn .btn-txt{
    display: block;
    padding-top: 1px;
}
.header .dropdown-menu{
    padding-block:0;
    border-radius:0 25px 25px 25px;
    border: 0;
    box-shadow:0 15px 25px rgba(0,0,0,.12);
    margin-top: -3px !important;
}
.dropdown-item{
    position: relative;
    text-align: start;
    font-size: 16px;
    text-transform: capitalize;
}
.header-links-btn .dropdown-item{
    padding-right:70px;
}
.header .dropdown-menu li {
    display: block;
    margin: 0;
}

.header .dropdown-menu li:first-child .dropdown-item .icobox,
.header .dropdown-menu li:first-child a{border-radius:0 25px 0 0;}
.header .dropdown-menu li:last-child a{border-radius:0 0 25px 25px;}
.header .dropdown-menu li:last-child .dropdown-item .icobox{border-radius:0 0 25px 0;}

.header .dropdown-menu li + li{border-top:1px solid #b1d5c1;}
.dropdown-item .icobox{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #cee5d8;
    width: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dropdown-item .icobox img{max-height: 27px;}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active{
    color: var(--white) !important;
    text-decoration: none;
    background-color: var(--theme-primary);
}
.get-help-drop .dropdown-menu{width: 315px;}
.header-2 .header-links-wrapper .header-links{height: 100%;}

.header .zipcode-dropdown .dropdown-menu {
    border-radius: 0 0 25px 25px;
    padding: 20px;
    left: 0 !important;
    right: 0 !important;
}
.shopping-cart-link a,
.header-actions .ico-cart {
	position: relative;
}
.we-open-btn,
.header-actions .ico-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
    width: 30px;
	font-size: 20px;
	gap: 10px;
	color: var(--black);
    transition: all 0.3s ease;
    background-color: transparent !important;
}
.header-actions .ico-cart:hover {
    background-color: var(--theme-primary);
    color: var(--white);
}
/* .header-actions .ico-cart .bi{
    color: var(--black);
}
.header-actions .ico-cart .bi-x-lg{display: none;}
.top-nav-open .header-actions .ico-cart .bi-three-dots-vertical{display: none;}
.top-nav-open .header-actions .ico-cart .bi-x-lg{display: block;} */
.header-actions .ico-cart i{color: var(--black);}
.header-actions .ico-cart .fa-xmark{display: none;}
.top-nav-open .header-actions .ico-cart .fa-ellipsis-stroke-vertical{display: none;}
.top-nav-open .header-actions .ico-cart .fa-xmark{display: block;}
.we-open-btn img{max-height:23px;}
.ico-cart .cart-qtys,
.shopping-cart-link .cart-qty,
.header-actions .cart-qty {
    position: absolute;
    right: -6px;
    top: -6px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 100%;
    background: var(--theme-scandory);
    background-size: contain;
    padding: 2px;
    text-indent: 0;
    text-align: center;
    font-size: 11px;
    color: var(--white);
    line-height: 17px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.shopping-cart-link .cart-qty.empty,
.header-actions .cart-qty.empty {
	visibility: hidden;
}

.store-search-box {
    font-size: 0;
    display: flex;
	align-items: center;
    position: relative;
}
.store-search-box form {
	display:block;
	position: relative;
    width: 100%;
    padding: 17px 15px;
}
.search-drop-open .store-search-box form{
    background-color: var(--white);
    z-index: 99;
}
.store-search-box input.search-box-text {
	width: 100% !important;
	height: 60px;
    background-color: var(--gray2);
    border-radius: 50px;
    border:2px solid transparent;
    padding-inline: 60px;
    color:black;
    font-size: 22px;
    position: relative;
    z-index: 2;
}
.store-search-box input.search-box-text::-ms-input-placeholder {color: black;}
.store-search-box input.search-box-text::placeholder {color: black;}
.search-voice-button,
.store-search-box .search-box-button {
	width: 40px;
    height: 40px;
    border: none;
    /* background: url(../img/search-icon.png) center no-repeat;
    background-size: 24px auto; */
    background-color: transparent;
    font-size: 0;
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    margin: 0 !important;
    transform: translateY(-50%);
}
.store-search-box .search-box-button::before{
    content: "\f002";
    font-family: "Font Awesome 7 Sharp";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    line-height:1;
    color: var(--black);
}
.search-voice-button{
    left: auto;
    right: 0;
    background-image: url(../img/voice-search-icon.png);
    background-size: 24px auto;
    display: none;
}
.ui-helper-hidden-accessible {
	display: none;
}
.ui-autocomplete {
    z-index: 99 !important;
    position: absolute !important;
    max-width: 100%;
    border: 0;
    background: var(--gray2);
    font-size: 20px;
    padding: 20px;
    border-radius: 0;
    top: 83px !important;
    left: -70px !important;
    width: auto !important;
    right: -90px !important;
    text-align: start;
}
.ui-autocomplete::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9999px;
    right: -9999px;
    background-color: var(--white);
    z-index: -1;
}
.ui-autocomplete li {
	border-top: none 0;
}
.ui-autocomplete li:first-child {
	border-top: none;
}
.ui-autocomplete a {
	display: block;
	padding: 5px;
  font-size: 20px;
  font-family: var(--font-avenirmedium);
}
.ui-autocomplete a.ui-state-focus {
    background-color: #f6f6f6;
}
.ui-autocomplete img {
	display: inline-block;
  width: 20px;
  height: auto;
	margin-right: 10px;
	vertical-align: middle;
  border: none 0;
  display: none;
}

.header-selectors-wrapper {
	font-size: 0;
}
.header-selectors-wrapper > div {
	display: inline-block;
	margin: 0 5px 10px;
	vertical-align: middle;
}
.header-selectors-wrapper select {
	min-width: 100px;
}

.new_select {
    z-index: 1015 !important;
    height: 30px;
    min-width: 45px;
    max-width: 55px;
    padding: 0 12px 0 0;
    background: url('../img/selector-button2.png') no-repeat right center;
    font-size: 11px;
    cursor: pointer;
}
.new_select > span {
    display: block;
    height: 30px;
    overflow: hidden;
    line-height: 30px;
}
.tax-display-type-selector .new_select {
    max-width: 120px;
}
.styleSelect_item {
    position:relative;
    left: -5px !important;
    top: 25px !important;
    width: 100%;
    min-width: 70px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.styleSelect_item ul {
    padding: 4px 5px;
    background: var(--white);
}
.styleSelect_item li span {
    width: auto;
    padding: 2px 2px 2px 2px;
    line-height: normal;
    color: #888;
}
.styleSelect_item li:hover span {
    color: var(--theme-primary);
}

.language-list {
	max-width: 100%;
	font-size: 0;
}
.language-list li {
	display: inline-block;
	margin: 0 1px;
}
.language-list a {
	display: block;
	position: relative;
	width: 32px;
	height: 32px;
	line-height: 0;
}
.language-list img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

.header-1 {
    box-shadow: 0 8px 8px rgba(0,0,0,0.085);
}


/*********** FOOTER ***********/
.footer {
    position: relative;
    z-index: 1;
}
.footer-upper {
	overflow: hidden;
    padding: 50px 20px 15px;
}
.social-sharing {
	font-size: 0;
}
.social-sharing li {
	display: inline-block;
    width: 60px;
    height: 54px;
	margin: 0 4px 8px;
    background-color: var(--theme-primary);
    -webkit-transition: ease 0.25s;
    transition: ease 0.25s;
}
.social-sharing a {
	display: block;
	height: 100%;
	background: url('../img/social-sprite.png') no-repeat;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
}
.social-sharing .facebook {
	background-position: 0 center;
}
.social-sharing .twitter {
	background-position: -60px center;
}
.social-sharing .google {
	background-position: -120px center;
}
.social-sharing .pinterest {
	background-position: -180px center;
}
.social-sharing .youtube {
	background-position: -240px center;
}
.social-sharing .vimeo {
	background-position: -360px center;
}
.social-sharing .rss {
	background-position: -300px center;
}
.social-sharing li:hover a {
    opacity: 0.70;
}
.social-sharing a.instagram {
	background: url('../img/instagram.png') no-repeat center;
}
.footer-social-holder{
    display: grid;
    align-items: center;
    width: 100%;
    grid-template-columns: 250px 1fr;
}
.footer-logo img{max-height: 60px;}
.footer-middle {
    padding-block: 15px 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 3%;
}
.footer-2 .newsletter-block{width: 34%;}
.footer-block {
    margin: 0 auto 15px;
    width: 25%;
    position: relative;
}
.footer-block .title {
    padding: 20px 0 10px;
    font-size: 18px;
    color: var(--black);
    text-transform: uppercase;
    cursor: pointer;
    pointer-events: none;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}
.footer-block .title strong {
    display: block;
    position: relative;
    padding: 0 20px;
}
.footer-block .title strong:before,
.footer-block .title strong:after {
    content: "";
    position: absolute;
    top: 0;
    height: 20px;
    width: 12px;
    background: url('../img/expand-button.png') no-repeat center;
}
.footer-block .title strong:before {
    left: 0;
}
.footer-block .title strong:after {
    right: 0;
}
.footer-block .title + * {
    display: block !important;
    margin: 15px 0 20px;
}
.footer-block li {
    padding: 0 0 5px;
    font-size: 18px;
}
.footer-block a {
    color: #666;
}
.footer-block a:hover {
    color: var(--theme-scandory);
}
.footer-block .topic-block-title {
    display: none;
}
.footer-block .topic-block-body,
.newsletter-description {
    padding: 12px 0 0;
    line-height: 24px;
    font-size: 13px;
    color: #666;
}
.newsletter-subscribe{margin-bottom: 20px !important;}
.footer-2 .newsletter-email{display: none;}
.newsletter-email {
	display:block;
    padding: 12px 0 0;
    position: relative;
}
#mc_embed_signup div.mce_inline_error {
    margin: 7px 0 7px 5px !important;
    padding: 0 !important;
    background-color: transparent !important;
    font-weight: normal !important;
    color: red !important;
}
.mc-field-group {
	display:block;
    margin-top: 12px;
    position: relative;
}
.footer-2 .newsletter-email::before,
#mc_embed_signup .mc-field-group::before {
    position: absolute;
    content: '';
    left: 20px;
    top: 23px;
    background: url(../img/envelope.png) no-repeat;
    background-size:contain;
    width: 16px;
    height: 16px;
    z-index: 2;
}
#mc_embed_signup .mc-field-group input,
.newsletter-email .newsletter-subscribe-text {
    display: block;
	width: 100%;
	height: 60px;
    margin: 0;
    border: 2px solid #e9eae9;
    background: #e9eae9;
    text-align: left;
    border-radius: 50px;
    padding-inline: 50px 230px;
    box-shadow: none;
    appearance: none;
    font-size: 17px;
    font-weight: 400;
}

#mc_embed_signup input.mce_inline_error {
    border-color: #e9eae9 !important;
}
#mc_embed_signup .button,
.newsletter-email .newsletter-subscribe-button {
	display: block;
    min-width: 222px;
	height: 60px;
    margin: auto;
	border: none;
	background-color: var(--black) !important;
    padding-inline: 15px;
    text-align: center;
	font-size: 18px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius:0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-avenirmedium);
    position: absolute;
    right: 0;
    top: 0;
}
#mc_embed_signup .button:hover,
.newsletter-email .newsletter-subscribe-button:hover {
    background-color: var(--theme-primary) !important;
}
#mc_embed_signup .button sup,
.newsletter-email .newsletter-subscribe-button sup{
    line-height: 1;
    font-size: 6px;
    text-align: left;
    margin-right: 4px;
    font-family: var(--font-avenirmedium);
    margin-top: 3px;
}
#mc_embed_signup .button sup span,
.newsletter-email .newsletter-subscribe-button sup span{
    font-size: 12px;
    display: block;
    position: relative;
    top: 2px;
}
.newsletter-email .newsletter-unsubscribe-button {
	display: block;
	border: none;
	background: none;
	margin: auto;
	padding: 10px 0;
}
.newsletter-email .options {
    padding: 12px 0 0;
}
.newsletter-email .options > span {
    margin: 0 3px;
    font-size: 13px;
}
.newsletter-validation,
.newsletter-result-block {
	width: 100%;
	overflow: hidden;
	line-height: 28px;
}
.newsletter-result {
    color: #444;
}
.newsletter-validation .please-wait {
	display: none !important;
}

.footer-lower {
    background-color: var(--white);
    padding-block: 25px;
	font-size: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    display: none;
}
.footer-disclaimer{
    /* display: grid !important;
    grid-template-columns:64px 1fr;
    align-items: center;
    gap: 15px; */
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    max-width: 300px;
    margin-inline: auto;
    padding-top: 15px;
}
.footer-disclaimer a{text-decoration: underline;}
.credit-cards-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.credit-cards-nav img{max-width: 37px; max-height: 30px;}
.credit-cards-nav .shop-safe img{max-width: 80px; max-height: 60px;}
.footer-lower > div > div {
    display: inline-block;
}
.footer-powered-by a, .footer-designed-by a  {
    color: var(--theme-primary);
}
.footer-powered-by a:hover, .footer-powered-by a:hover {
    text-decoration: underline;
}
.footer-lower > div > div.footer-store-theme {
    display: block;
    margin: 15px 0 0;
}
.footer-store-theme select {
	width: 170px;
}
.gold-winner-info{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    margin-inline: auto;
    border-block: 1px solid var(--gray);
    padding-block: 10px;
}
.gold-winner-info .gold-winner-icon{
    min-width: 70px;
    max-width: 70px;
}
.gold-winner-info p{margin: 0;}
.gold-winner-info p b{
    color: var(--black);
    font-family: var(--font-avenirmedium);
    text-transform: uppercase;
    letter-spacing: -.25px;
}
@media (max-width: 1024px) {
  .gold-winner-info{
      grid-template-columns: 50px 1fr;
  }
  .gold-winner-info img {
    max-width: 50px;
  }
}
.footer-2 .newsletter-email .options{display: none;}
.footer-holder{
    width: 60%;
    text-align: left;
}
.footer-holder .shop{
    width: 40%;
}
.shop .footer-list li{
    width: 49%;
    display: inline-block;
    padding-right: 10px;
}
.footer-holder .footer-block:last-child{
    padding-right: 0;
}

/* FOOTER-2 */

.footer-2 .newsletter-block  .newsletter > .title {
    display: none;
}
.footer-2 .newsletter-block .title {
    background: none !important;
}
.footer-2 .newsletter-block .title {
    margin: 10px 0;
}
.footer-2 .newsletter-description {
    padding: 0;
}
.footer-2 .newsletter-email {
    padding-top: 15px;
}
.footer-2 .social-sharing {
    justify-content: space-evenly;
    display: flex !important;
    height: auto;
    padding-left: 10px;
    margin-left: 30px;
    border-left: 1px solid var(--gray);
    align-items: center;
    padding-block: 25px;
}
.footer-2 .social-sharing li {
    width: 50px;
    height: 50px;
    background-color: transparent;
    padding-bottom:0;
}
.footer-2 .social-sharing a {
	background: url('../img/social-sprite-2.png') no-repeat;
}
/* .footer-2 .social-sharing .facebook {
	background-position: 0 center;
} */
.footer-2 .social-sharing .twitter {
	background-position: -40px center;
}
.footer-2 .social-sharing .google {
	background-position: -80px center;
}
/* .footer-2 .social-sharing .pinterest {
	background-position: -120px center;
}
.footer-2 .social-sharing .youtube {
	background-position: -160px center;
} */
.footer-2 .social-sharing .vimeo {
    background-position: -240px center;
}
.footer-2 .social-sharing .rss {
	background-position: -200px center;
}
.footer-2 .social-sharing li.rss {
	display: none;
}
.footer-2 .social-sharing li:hover a {
    opacity: 0.70;
}
.footer-2 .social-sharing .facebook {
	background:url('../img/fb-icon.png') no-repeat center;
  background-size: auto 70%;
}
.footer-2 .social-sharing a.instagram {
	background: url('../img/insta-icon.png') no-repeat center;
  background-size: auto 70%;
}
.footer-2 .social-sharing .youtube {
	background:url('../img/youtube-icon.png') no-repeat center;
  background-size: auto 70%;
}
.footer-2 .social-sharing .pinterest {
	background:url('../img/pintrest-icon.png') no-repeat center;
  background-size: auto 70%;
}

/*********** LEFT/RIGHT COLUMN ***********/



.block {
	margin: 0 0 10px;
    border: 2px solid #eee;
	text-align: left;
}
.block .title {
    padding: 9px 10px 7px;
    background: url('../img/expand-button-2.png') no-repeat right center;
    text-transform: uppercase;
	font-size: 14px;
	color: #444;
    cursor: pointer;
}
.block .title strong {
    display: block;
}
.block .listbox {
	display: none;
    border-top: 2px solid #eee;
}
.block .listbox:after {
	content: "";
	display: block;
	clear: both;
}

.block .list {
}
.block .list li {
    border-top: 1px solid #eee;
}
.block .list li:first-child {
    border-top: none;
}
.block .list li > a {
    padding-left: 20px;
}
.block .list li.active>a,
.block.block-account-navigation .list li.active a {
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: var(--theme-scandory) !important;
}
.block.block-account-navigation .list li.active a {
    border-width: 0;
}
.block .list a {
	display: block;
	padding: 9px 10px;
}
.block .list a:hover {
    color: var(--theme-primary);
}
.block .list img {
	display: none;
}

.block .sublist {
	padding: 0 0 0 30px;
}
.block .sublist > li {
    margin: -1px 0 0;
    border: none;
    border-top: 1px solid #eee;
}
.block .sublist > li a {
    padding-left: 10px;
}

.block .view-all {
    border-top: 1px solid #eee;
}
.block .view-all a {
	display: block;
    padding: 9px 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--theme-primary);
}
/*.block .view-all a:hover {
    text-decoration: underline;
}*/

.block .tags {
	padding: 5px 15px;
}
.block .tags ul {
	font-size: 0;
}
.block .tags li,
.product-tags-all-page li {
	display: inline-block;
	position: relative;
	margin: 0 10px;
	overflow: hidden;
	font-size: 14px !important; /*setting base size*/
}
.block .tags li a,
.product-tags-all-page li a {
	float: left;
	line-height: 30px;
}
.block .tags li a:hover,
.product-tags-all-page li a:hover {
    color: var(--theme-primary);
}
.poll strong {
	display: block;
    padding: 9px 10px;
    color:var(--theme-primary);
}
.poll-options,
.poll-results {
	margin: 0 0 10px 15px;
	overflow: hidden;
}
.poll-options li,
.poll-results li {
	display: inline-block;
	margin: 5px;
}
.poll-options li > * {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
.poll .buttons,
.poll-total-votes {
    margin: 0;
    border-top: 1px solid #eee;
}
.poll .buttons button,
.poll-total-votes {
	border: none;
    background: none;
	padding: 9px 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: var(--theme-primary);
}
.poll-total-votes {
	display: block;
    border-top: 1px solid #eee;
}
.home-page-polls {
    margin: 0 0 80px;
    text-align: center;
}
.home-page-polls .title{
    margin: 0 0 30px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    color: #444;
}
.home-page-polls .poll strong {
    margin: 0 0 5px;
    border: 2px solid #eee;
}
.home-page-polls .poll-options li {
    display: inline-block;
    margin: 5px 10px;
}
.home-page-polls .poll .buttons,
.home-page-polls .poll-total-votes {
    border: none;
    text-align: center;
}

.block.product-filters .listbox {
    padding: 5px 10px 10px;
}
.product-filters .listbox .product-filter {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}
.product-filters .ui-slider {
    position: relative;
    width: auto;
    height: 4px;
    margin: 0 8px 32px;
    background: #eaeaea;
}
.product-filters .ui-slider-range {
    height: 4px;
    background: #ccc;
    position: absolute;
}
.product-filters .ui-slider-handle {
    position: absolute;
    top: -6px;
    height: 15px;
    width: 15px;
    margin-left: -10px;
    border: 2px solid var(--theme-primary);
    background: var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.product-filters .selected-price-range {
    overflow: hidden;
    margin: 5px 0 12px;
    font-size: 14px;
    font-weight: bold;
    color: var(--theme-primary);
}
.product-filters .selected-price-range .from {
    float: left;
}
.product-filters .selected-price-range .to {
    float: right;
}
.product-filters .product-filter .filter-title {
    padding: 7px 0;
}
.product-filters .product-filter .filter-title strong {
    color: #444;
}
.product-filters .filter-content .name {
    padding: 7px 0;
}

.product-filters .filter-content .item {
    position: relative;
}

.product-filters .product-spec-filter .filter-content {
    margin: 0px 0px 10px 0px;
}
.product-filters li {
    position: relative;
}
.product-filters li input {
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}
.product-filters li label {
    color: #888;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 6px 0px 6px 25px;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.product-filters li label:before {
    border: 2px solid #eee;
    content: "";
    height: 18px;
    left: 0px;
    margin: -9px 0 0;
    position: absolute;
    top: 50%;
    width: 18px;
}
.product-filters input[type="checkbox"]:checked ~ label::before {
    background: var(--white) url("../img/selected.png") no-repeat center;
}
.product-filters li.disabled label {
    opacity: 0.4;
    cursor: default;
}
.product-filters li.disabled label:hover,
.product-filters li.checked label:hover {
    color: #888;
}
.product-filters .attribute-square {
    border: 2px solid #eee;
    cursor: pointer;
    display: block;
    height: 19px;
    width: 19px;
    position: absolute;
    top: 6px;
    left: -1px;
    z-index: -1;
}
.category-page .page-title h1{text-align: left;}

/********** CATEGORY PAGE **********/
.instock-holder {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
}
.instock-holder .button-switch ~ span{
    font-size: 18px;
}
.button-switch {
    font-size: 1.5em;
    margin-block: -3px 0;
    position: relative;
    width: 26px;
    height: 14px;
  }
  .button-switch .lbl-off,
  .button-switch .lbl-on {font-size: 0;}
  /* .button-switch .lbl-off,
  .button-switch .lbl-on {
    cursor: pointer;
    display: block;
    font-size:0;
    font-weight: bold;
    line-height: 1em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.25s ease-out 0.1s;
    text-transform: uppercase;
    background: url(../img/long-arrow.png) no-repeat;
    background-size:contain;
    height: 11px;
    width: 27px;
    margin-top: -2px;
  }
  .button-switch .lbl-off {
    right: 10px;
  }
  .button-switch .lbl-on {
    color: #fefefe;
    opacity: 0;
    left: 15px;
    transform: translateY(-50%) rotate(180deg);
  } */
  .button-switch .switch {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 0;
    font-size: 1em;
    left: 0;
    line-height: 0;
    outline: none;
    position: absolute;
    top: 0;
    width: 0;
  }
  .button-switch .switch:before, .button-switch .switch:after {
    content: "";
    font-size: 1em;
    position: absolute;
  }
  .button-switch .switch:before {
    border-radius: 1.25em;
    background: var(--theme-primary);
    height: 15px;
    left: 0;
    top: 1px;
    transition: background-color .25s ease-out .1s;
    width: 26px;
  }
  .button-switch .switch:after {
    border-radius: 50%;
    background: var(--white);
    height: 10px;
    width: 10px;
    transform: translate(0, 0);
    transition: transform .25s ease-out .1s;
    margin: 3px 0 0 3px;
  }
  .button-switch .switch:checked:after {
    transform: translate(9px,0);
    background: var(--white);
  }
  .button-switch .switch:checked ~ .lbl-off {
    opacity: 0;
  }
  .button-switch .switch:checked ~ .lbl-on {
    opacity: 0;
  }
  .button-switch .switch:checked:before {
    background: var(--theme-scandory);
    border-color: var(--theme-scandory);
  }
  .category-banner img{
    width: 100%;
    display: block;
    height: auto;
  }
  .category-page.container-box{padding-inline:0;}
  .columntwo-holder{position: relative;}
.search-page-body .side-2,
.category-page-body .side-2{
    margin-bottom: 0;
    position: relative;
    display: block;
    margin-inline: auto;
    padding-inline: 100px 0;
    max-width: 2000px;
    z-index: 99;
}
.html-category-page .breadcrumb {
    margin-bottom: 0;
}
.html-category-page .breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.html-category-page .breadcrumb li {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.html-category-page .breadcrumb li a,
.html-category-page .breadcrumb li>strong,
.html-category-page .breadcrumb li>.delimiter {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: normal;
}
.search-page-body .nopAjaxFilters7Spikes,
.search-page-body .side-2 .holder
.category-page-body .nopAjaxFilters7Spikes,
.category-page-body .side-2 .holder{
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
}


.filters-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 15px;
    white-space: nowrap;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.filters-scroll-container::-webkit-scrollbar {
    display: none;
}

.slide-item {
    flex: 0 0 auto;
    min-width: fit-content;
    position: relative;
}



.search-page-body .filtersPanel,
.category-page-body .filtersPanel{
    background: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filterPenelLeft{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    max-width: 38%;
    position: relative;
    z-index: 9;
    height: 100%;
}
.filterPenelLeft .breadcrumb{
    position: relative;
    z-index: 1;
    height: 100%;
}
.filterPenelLeft .breadcrumb::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -9999px;
    right: 0;
    background-color: var(--white);
    z-index: -1;
}
.search-page-body .filter-block .title,
.category-page-body .filter-block .title{display: none;}
.search-page-body .side-2 .block,
.category-page-body .side-2 .block{
    margin: 0;
    display: none;
    clear: none !important;
}

.search-page-body .nopAjaxFilters7Spikes .block,
.category-page-body .nopAjaxFilters7Spikes .block{
    display: inline-flex;
    align-items: center;
    border: 0;
    width: auto;
}
.search-page-body .filtersDropDownPanel,
.category-page-body .filtersDropDownPanel {
    padding: 0;
    border: 0;
    background: none;
}
.search-page-body .product-sorting select,
.search-page-body .filtersDropDownPanel select,
.category-page-body .product-sorting select,
.category-page-body .filtersDropDownPanel select{
    min-width: 150px;
    max-width: 210px;
    width: auto;
    background-color: var(--white);
    border: 0;
    border-radius: 10px;
    padding-inline: 13px 60px;
    height: 50px;
    background-image:url(../img/select-arrow.png);
    background-size: 50px auto;
    background-repeat:no-repeat;
    background-position: 100% center;
    color: var(--black);
    appearance:none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.search-page-body .product-sorting select,
.category-page-body .product-sorting select{max-width: 150px;}


/* .filtersGroupPanel select {
    display: none;
} */
/* .filtersGroupPanel .selected-item {
    background: #be0071;
    padding: 5px 20px;
    color: var(--white);
    cursor: pointer;
    z-index: 99;
}
.filtersGroupPanel .selected-item:after {
    font-family: FontAwesome;
    content: "\f107";
    font-size: 20px;
    color: var(--white);
    position: absolute;
    right: 10px;
    transition: 0.5s;
}
.filtersGroupPanel .arrowanim.selected-item:after {
    transform: rotate(180deg);
}
.filtersGroupPanel .item {
    background: #be0071;
    padding: 5px 20px;
    color: var(--white);
    border-top: 1px solid #99005c;
    cursor: pointer;
}
.filtersGroupPanel .item:hover {
    background: #99005c;
}
.filtersGroupPanel .all-items {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
}
.filtersGroupPanel .all-items-hide {
    display: none;
}
.filtersGroupPanel .sdf {
    border: 1px solid red;
} */

.search-page-body .side-2 > .breadcrumb,
.category-page-body .side-2 > .breadcrumb{display: none;}
.product-details-page-body .breadcrumb {
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}
.breadcrumb .bd-sku .sku{
    color:var(--black);
    text-align: end;
}
.breadcrumb {
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: start;
    z-index: 1;
}
.breadcrumb ul {
    position: relative;
	font-size: 0;
    padding: 0;
}
.breadcrumb li {
	display: inline-block;
}
.breadcrumb li *{color:var(--black);}
.breadcrumb li a,
.breadcrumb li > strong,
.breadcrumb li > .delimiter {
    display: inline-block;
    padding: 0 5px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    position: relative;
    font-family:var(--font-avenirmedium);
}
.breadcrumb li span.delimiter {
    font-size: 0 !important;
    position: relative;
    height: 16px;
    padding-block: 2px;
    margin-inline: 6px;
}
.breadcrumb li span.delimiter::before{
    position: relative;
    content: "\f061";
    font-family: "Font Awesome 7 Sharp";
    margin-left: -2px;
    font-size: 15px;
}
/*.breadcrumb li.home a{
    font-size: 0 !important;
    position: relative;
    color: #7b807b!important;
}
 .breadcrumb li.home a:before{
    font-size: 18px;
    content: "\f422";
    font-family: bootstrap-icons!important;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
} */
.breadcrumb li *:hover {color: var(--theme-primary);}
.html-shopping-cart-page .breadcrumb{padding-right: 210px;}

/*Catagory Based Styles*/

/*Home Decor Catagory styles*/
.category-page-body .home-decor .side-2::before{background-color: #444;}
.home-decor .breadcrumb li a{color: var(--white) !important;}
.home-decor .breadcrumb li * {color: var(--white);}
.home-decor .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .home-decor .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#2c2c2c;
    border-right-color:#2c2c2c;
}
.home-decor .instock-holder .button-switch~span{color: var(--white);}
/*Home Decor Catagory styles*/

/*Gaming Catagory styles*/
.category-page-body .gaming .side-2::before{background-color: #0e005d;}
.gaming .breadcrumb li a{color: var(--white) !important;}
.gaming .breadcrumb li * {color: var(--white);}
.gaming .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .gaming .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#02c7ec;
    border-right-color:#02c7ec;
}
.gaming .instock-holder .button-switch~span{color: var(--white);}
.gaming .button-switch .switch:after{background: #ff00ff;}
.gaming .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .gaming .product-sorting select,
.category-page-body .gaming .filtersDropDownPanel select{background-image:url(../img/select-arrow-gaming.png);}
/*Gaming Catagory styles*/

/*Home Theater Catagory styles*/
.category-page-body .home-theater .side-2::before{background-color: #444;}
.home-theater .breadcrumb li a{color: var(--white) !important;}
.home-theater .breadcrumb li * {color: var(--white);}
.home-theater .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .home-theater .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#2c2c2c;
    border-right-color:#2c2c2c;
}
.home-theater .instock-holder .button-switch~span{color: var(--white);}
.home-theater .button-switch .switch:after{background: #47cf2b;}
.home-theater .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .home-theater .product-sorting select,
.category-page-body .home-theater .filtersDropDownPanel select{background-image:url(../img/select-arrow-theater.png);}
/*Home Theater Catagory styles*/

/*presidents-day-sale Catagory styles*/
.category-page-body .presidents-day-sale .side-2::before{background-color: #cf2030;}
.presidents-day-sale .breadcrumb li a{color: var(--white) !important;}
.presidents-day-sale .breadcrumb li * {color: var(--white);}
.presidents-day-sale .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .presidents-day-sale .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#015592;
    border-right-color:#015592;
}
.presidents-day-sale .instock-holder .button-switch~span{color: var(--white);}
.presidents-day-sale .button-switch .switch:after{background: #015592;}
.presidents-day-sale .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
  .category-page-body .presidents-day-sale .product-sorting select,
  .category-page-body .presidents-day-sale .filtersDropDownPanel select{background-image:url(../img/select-arrow-presidents-day.png);}
/*Home Theater Catagory styles*/

/*Kids Furniture Catagory styles*/
.category-page-body .kids-furniture .side-2::before{background-color: var(--theme-primary);}
.kids-furniture .breadcrumb li a{color: var(--white) !important;}
.kids-furniture .breadcrumb li * {color: var(--white);}
.kids-furniture .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .kids-furniture .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#4b9e89;
    border-right-color:#4b9e89;
}
.kids-furniture .instock-holder .button-switch~span{color: var(--white);}
.kids-furniture .button-switch .switch:after{background: var(--theme-primary);}
.kids-furniture .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .kids-furniture .product-sorting select,
.category-page-body .kids-furniture .filtersDropDownPanel select{background-image:url(../img/select-arrow-kids.png);}
/*Kids Furniture Catagory styles*/

/*Bedgear Manufacturer styles*/
.category-page-body .bedgear .side-2::before{background-color: #00b5e3;}
.bedgear .breadcrumb li a{color: var(--white) !important;}
.bedgear .breadcrumb li * {color: var(--white);}
.bedgear .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .bedgear .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#a5e5f5;
    border-right-color:#a5e5f5;
}
.bedgear .instock-holder .button-switch~span{color: var(--white);}
/*Bedgear Manufacturer styles*/

/*Infinity Manufacturer styles*/
.category-page-body .infinity .side-2::before{background-color: #425b94;}
.infinity .breadcrumb li a{color: var(--white) !important;}
.infinity .breadcrumb li * {color: var(--white);}
.infinity .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .infinity .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#607ab8;
    border-right-color:#607ab8;
}
.infinity .instock-holder .button-switch~span{color: var(--white);}
.infinity .button-switch .switch:after{background: #607ab8;}
.infinity .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .infinity .product-sorting select,
.category-page-body .infinity .filtersDropDownPanel select{background-image:url(../img/select-arrow-infinity.png);}
/*Infinity Manufacturer styles*/

/*Ashley Manufacturer styles*/
.category-page-body .ashley .side-2::before{background-color: #F58220;}
.ashley .breadcrumb li a{color: var(--white) !important;}
.ashley .breadcrumb li * {color: var(--white);}
.ashley .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .ashley .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--white);
    border-right-color:var(--white);
}
.ashley .instock-holder .button-switch~span{color: var(--white);}
/*Ashley Manufacturer styles*/

/*Ashley Sleep Manufacturer styles*/
.category-page-body .ashley-sleep .side-2::before{background-color: #AFDBD1;}
.ashley-sleep .breadcrumb li a{color: var(--white) !important;}
.ashley-sleep .breadcrumb li * {color: var(--white);}
.ashley-sleep .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .ashley-sleep .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#D0EAE4;
    border-right-color:#D0EAE4;
}
.ashley-sleep .instock-holder .button-switch~span{color: var(--white);}
/*Ashley Sleep Manufacturer styles*/

/*Coaster Manufacturer styles*/
.category-page-body .coaster .side-2::before{background-color: #EEEEEE;}
.coaster .breadcrumb li a{color: var(--black) !important;}
.coaster .breadcrumb li * {color: var(--black);}
.coaster .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--black);
}
.category-page-body .coaster .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--white)FFF;
    border-right-color:var(--white)FFF;
}
.coaster .instock-holder .button-switch~span{color: var(--black);}
.coaster .button-switch .switch:after{background: #e70019;}
.coaster .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .coaster .product-sorting select,
.category-page-body .coaster .filtersDropDownPanel select{background-image:url(../img/coaster-selector.png);}
/*Coaster Manufacturer styles*/

/*Delta Manufacturer styles*/
.category-page-body .delta .side-2::before{background-color: #4C86CA;}
.delta .breadcrumb li a{color: var(--white) !important;}
.delta .breadcrumb li * {color: var(--white);}
.delta .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .delta .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--white)FFF;
    border-right-color:var(--white)FFF;
}
.delta .instock-holder .button-switch~span{color: var(--white);}
.category-page-body .delta .product-sorting select,
.category-page-body .delta .filtersDropDownPanel select{background-image:url(../img/delta-bnr-selector.jpg);}
/*Delta Manufacturer styles*/

/*Elements Manufacturer styles*/
.category-page-body .elements .side-2::before{background-color: #222222;}
.elements .breadcrumb li a{color: var(--white) !important;}
.elements .breadcrumb li * {color: var(--white);}
.elements .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .elements .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--black)000;
    border-right-color:var(--black)000;
}
.elements .instock-holder .button-switch~span{color: var(--white);}
/*Elements Manufacturer styles*/

/*Franklin Manufacturer styles*/
.category-page-body .franklin .side-2::before{background-color: #3B3B3D;}
.franklin .breadcrumb li a{color: var(--white) !important;}
.franklin .breadcrumb li * {color: var(--white);}
.franklin .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .franklin .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#87BC40;
    border-right-color:#87BC40;
}
.franklin .instock-holder .button-switch~span{color: var(--white);}
.franklin .button-switch .switch:after{background: #87bc40;}
.franklin .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .franklin .product-sorting select,
.category-page-body .franklin .filtersDropDownPanel select{background-image:url(../img/franklin-bnr-selector.png);}
/*Franklin Manufacturer styles*/

/*Kuka Manufacturer styles*/
.category-page-body .kuka .side-2::before{background-color: #E1121C;}
.kuka .breadcrumb li a{color: var(--white) !important;}
.kuka .breadcrumb li * {color: var(--white);}
.kuka .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .kuka .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#ED1C25;
    border-right-color:#ED1C25;
}
.kuka .instock-holder .button-switch~span{color: var(--white);}
/*Kuka Manufacturer styles*/

/*La-Z-Boy Manufacturer styles*/
.category-page-body .la-z-boy .side-2::before{background-color: #65D0E5;}
.la-z-boy .breadcrumb li a{color: var(--white) !important;}
.la-z-boy .breadcrumb li * {color: var(--white);}
.la-z-boy .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .la-z-boy .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#F0E6D8;
    border-right-color:#F0E6D8;
}
.la-z-boy .instock-holder .button-switch~span{color: var(--white);}
.la-z-boy .button-switch .switch:after{background: #0a2f49;}
.la-z-boy .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .la-z-boy .product-sorting select,
.category-page-body .la-z-boy .filtersDropDownPanel select{background-image:url(../img/la-z-boy-bnr-selector.png);}
/*La-Z-Boy Manufacturer styles*/

/*Liberty Manufacturer styles*/
.category-page-body .liberty .side-2::before{background-color: #DBE0DF;}
.liberty .breadcrumb li a{color: var(--white) !important;}
.liberty .breadcrumb li * {color: var(--white);}
.liberty .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .liberty .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#3A3B52;
    border-right-color:#3A3B52;
}
.liberty .instock-holder .button-switch~span{color: var(--white);}
.liberty .button-switch .switch:after{background: #3a3a52;}
.liberty .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .liberty .product-sorting select,
.category-page-body .liberty .filtersDropDownPanel select{background-image:url(../img/liberty-bnr-selector.png);}
/*Liberty Manufacturer styles*/

/*Loloi Manufacturer styles*/
.category-page-body .loloi .side-2::before{background-color: #862F17;}
.loloi .breadcrumb li a{color: var(--white) !important;}
.loloi .breadcrumb li * {color: var(--white);}
.loloi .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .loloi .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#A63C1C;
    border-right-color:#A63C1C;
}
.loloi .instock-holder .button-switch~span{color: var(--white);}
.loloi .button-switch .switch:after{background: #b8401f;}
.loloi .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .loloi .product-sorting select,
.category-page-body .loloi .filtersDropDownPanel select{background-image:url(../img/loloi-bnr-separator.png);}
/*Loloi Manufacturer styles*/

/*Magnolia Home Manufacturer styles*/
.category-page-body .magnolia-home .side-2::before{background-color: #222222;}
.magnolia-home .breadcrumb li a{color: var(--white) !important;}
.magnolia-home .breadcrumb li * {color: var(--white);}
.magnolia-home .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .magnolia-home .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--white);
    border-right-color:var(--white);
}
.magnolia-home .instock-holder .button-switch~span{color: var(--white);}
/*Magnolia Home Manufacturer styles*/

/*Purple Manufacturer styles*/
.category-page-body .purple .side-2::before{background-color: #8C57B4;}
.purple .breadcrumb li a{color: var(--white) !important;}
.purple .breadcrumb li * {color: var(--white);}
.purple .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .purple .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#492095;
    border-right-color:#492095;
}
.purple .instock-holder .button-switch~span{color: var(--white);}
.purple .button-switch .switch:after{background: #492096;}
.purple .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .purple .product-sorting select,
.category-page-body .purple .filtersDropDownPanel select{background-image:url(../img/purple-bnr-separator.png);}
/*Purple Manufacturer styles*/

/*Sealy Manufacturer styles*/
.category-page-body .sealy .side-2::before{background-color: var(--black)000;}
.sealy .breadcrumb li a{color: var(--white) !important;}
.sealy .breadcrumb li * {color: var(--white);}
.sealy .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .sealy .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#1D4F91;
    border-right-color:#1D4F91;
}
.sealy .instock-holder .button-switch~span{color: var(--white);}
.sealy .button-switch .switch:after{background: #ffbf3f;}
.sealy .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .sealy .product-sorting select,
.category-page-body .sealy .filtersDropDownPanel select{background-image:url(../img/sealy-bnr-separator.png);}
/*Sealy Manufacturer styles*/

/*Sonos Manufacturer styles*/
.category-page-body .sonos .side-2::before{background-color: #222222;}
.sonos .breadcrumb li a{color: var(--white) !important;}
.sonos .breadcrumb li * {color: var(--white);}
.sonos .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .sonos .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:var(--black)000;
    border-right-color:var(--black)000;
}
.sonos .instock-holder .button-switch~span{color: var(--white);}
/*Sonos Manufacturer styles*/

/*Stearns & Foster Manufacturer styles*/
.category-page-body .stearns-and-foster .side-2::before{background-color: #00103B;}
.stearns-and-foster .breadcrumb li a{color: var(--white) !important;}
.stearns-and-foster .breadcrumb li * {color: var(--white);}
.stearns-and-foster .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .stearns-and-foster .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#D4E1EB;
    border-right-color:#D4E1EB;
}
.stearns-and-foster .instock-holder .button-switch~span{color: var(--white);}
.category-page-body .stearns-and-foster .product-sorting select,
.category-page-body .stearns-and-foster .filtersDropDownPanel select{background-image:url(../img/stearns-and-foster-bnr-selector.png);}
/*Stearns & Foster Manufacturer styles*/

/*Steve Silver Manufacturer styles*/
.category-page-body .steve-silver .side-2::before{background-color: #EEEEEE;}
.steve-silver .breadcrumb li a{color: var(--white) !important;}
.steve-silver .breadcrumb li * {color: var(--white);}
.steve-silver .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .steve-silver .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#343963;
    border-right-color:#343963;
}
.steve-silver .instock-holder .button-switch~span{color: var(--white);}
.steve-silver .button-switch .switch:after{background: #343963;}
.steve-silver .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .steve-silver .product-sorting select,
.category-page-body .steve-silver .filtersDropDownPanel select{background-image:url(../img/steve-silver-bnr-selector.png);}
/*Steve Silver Manufacturer styles*/

/*Tempur-Pedic Manufacturer styles*/
.category-page-body .tempur-pedic .side-2::before{background-color: var(--black)000;}
.tempur-pedic .breadcrumb li a{color: var(--white) !important;}
.tempur-pedic .breadcrumb li * {color: var(--white);}
.tempur-pedic .breadcrumb li span.delimiter::before {
    border-color: transparent transparent transparent var(--white);
}
.category-page-body .tempur-pedic .nopAjaxFilters7Spikes .block.inStockFilterPanel7Spikes {
    border-left-color:#394653;
    border-right-color:#394653;
}
.tempur-pedic .instock-holder .button-switch~span{color: var(--white);}
.tempur-pedic .button-switch .switch:after{background: #394653;}
.tempur-pedic .button-switch .switch:checked:after {
    transform: translate(1.65em,0);
    background: hsla(71, 99%, 45%, 1);
    background: linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -moz-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
    background: -webkit-linear-gradient(135deg, hsla(71, 99%, 45%, 1) 0%, hsla(120, 65%, 54%, 1) 100%);
  }
.category-page-body .tempur-pedic .product-sorting select,
.category-page-body .tempur-pedic .filtersDropDownPanel select{background-image:url(../img/tempur-pedic-bnr-selector.png);}
/*Tempur-Pedic Manufacturer styles*/

/*Catagory Based Styles*/
.secure-connection{
    position: absolute;
    right: 0;
    top: 50%;
    color: #7b807b;
    font-size: 16px;
    text-transform: uppercase;
    transform: translateY(-50%);
    padding-left: 28px;
    background: url(../img/secure-lock-icon.png) no-repeat left 0;
    background-size: 18px auto;
}
.shopping-cart-page .page-title, .manufacturer-list-page .page-title{display: none;}
.product-selectors {display: none;}
.category-description,
.manufacturer-description,
.vendor-description {
	margin: 0 0 15px;
    text-align: center;
    line-height: 28px;
}
.contact-vendor {
    margin: 0 0 40px;
    text-align: center;
}
.contact-vendor .button-2 {
    padding: 10px 30px;
    border: 2px solid #eee;
	background-color: #f9f9f9;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.contact-vendor .button-2:hover {
    background-color: #eee;
}
.product-filters {
    margin: 0 0 40px;
}
.product-filters .product-filter {
    display: inline-block;
    width: 350px;
    vertical-align: top;
}

.product-filters .filter-content {
    margin: 5px 0;
}
.product-filters .filter-content li a {
    line-height: 24px;
}
.product-filters .filter-content .title {
    color: #444;
}
.product-filters .filtered-items {
    margin: 10px auto;
    border: 2px solid #eee;
    padding: 10px;
}
.product-filters .remove-filter a {
    padding: 0 20px 0 0;
    background: url('../img/forum_icon2.png') no-repeat right center;
    color: #de524e;
}
.product-filters .filter-content li a:hover {
    color: var(--theme-primary);
}
.product-selectors {
    width: 320px;
    max-width: 100%;
	margin: 0 auto 30px;
	text-align: left;
}
.product-selectors:after {
	content: "";
	display: block;
	clear: both;
}
.product-selectors > div {
	display: inline-block;
    position: relative;
    z-index: 1;
	margin: 5px;
    font-size: 13px;
}
.product-selectors > div.product-sorting {
    z-index: 2;
}
.product-selectors > div > span {
    display: inline-block;
    padding: 0 10px;
}
.product-selectors > div > span:first-child {
    width: 120px;
    text-align: right;
}
.product-selectors select {
	margin: 0 5px;
	text-transform: lowercase;
    font-size: 14px;
    color: #444;
}
.product-selectors > div > * {
    vertical-align: middle;
}
.product-selectors select {
	min-width: 100px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('../img/selector-button2.png') no-repeat center right 3px !important;
    padding: 0 20px 0 0;
    margin: 0;
    min-width: 45px;
    text-transform: none;
    border-width: 0 0 2px;
}
.product-selectors .new_select {
    display: inline-block;
    width: auto !important;
    max-width: none;
    background: url('../img/selector-button2.png') no-repeat right 12px !important;
    padding-right: 20px;
    border-bottom: 2px solid #eee;
    font-size: 14px;
    color: #444;
}
.product-selectors .product-viewmode {
	display: none;
}
.product-selectors .product-viewmode span {
	vertical-align: middle;
}
.product-selectors .product-viewmode a {
	display: inline-block;
	width: 45px;
	height: 45px;
	margin: 0;
    border: 2px solid #ddd;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
	font-size: 0;
	opacity: 0.3;
}
.product-selectors .product-viewmode a + a {
    margin-left: -6px;
}
.product-selectors .product-viewmode a.grid {
	background-image: url('../img/icon-grid-active.png');
}
.product-selectors .product-viewmode a.list {
	background-image: url('../img/icon-list-active.png');
}
.product-selectors .product-viewmode a.selected {
    background-color: #eee;
	opacity: 1;
}
.product-selectors .product-sorting .new_select {
    min-width: 110px;
}
.product-selectors .product-sorting .new_select > div {
    width: 150px;
}
/* .category-page-body .side-2{display: none;} */

.item-box {
	position: relative;
	width: 100%;
	margin: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color:var(--gray3);
}
.item-box .picture {
	position: relative; /*quick view inline css replacement*/
	z-index: 1;
	overflow: hidden;
    margin: 0;
}
.item-box .picture a {
	display: block;
	position: relative;
}
.item-box .picture a:before {
	content: "";
	display: block;
	padding-top: 60%;
}
.item-box .picture img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
    max-height: 100%;
	margin: auto;
    object-fit: scale-down;
	-webkit-transform: translateZ(0) scale(1.0, 1.0); /* fixes the bug of the 1px moving product images when hover on category */
}
.item-box .picture button {
	display: none; /*hides additional wishlist button when ajax cart is disabled*/
}
.product-detail-bottom .item-box .picture{
    margin-bottom: 0;
    background-color: transparent;
}
.product-detail-bottom .item-box .picture img{
    max-width: 100%;
    max-height: 100%;
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    -webkit-transform: none;
}
.product-grid.product-detail-bottom  .item-box {border-radius: 25px;overflow: hidden;}
.product-detail-bottom .item-box .picture a:before{display: none;}
.item-box .picture .second-product-image {
    opacity: 0 !important;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.item-box:hover .picture .second-product-image {
    opacity: 1 !important;
}

.item-box .picture .second-product-image ~ .product-image {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.item-box:hover .picture .second-product-image ~ .product-image {
    opacity: 0 !important;
}
.item-box.rattings-product{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.item-box .details {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 30px 30px 30px;
    flex-direction: column-reverse;
}
.item-box .details .detail-info{max-width: 320px;}
/*.item-box .details .add-info{
    width: 42%;
}
.item-box .details .add-info{
    text-align: center;
} */
.item-box .product-title {
	height: 40px;
	margin: 0 0 5px;
	overflow: hidden;
    font-size: 14px;
    text-transform: uppercase;
}
.item-box .product-title a {
	display: block;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}
.item-box .product-title a:hover {
    color: var(--theme-primary);
}
.item-box .product-title + .sku {
	display: none;
}
.item-box .product-rating-box {
    display: inline-block;
	margin: 0;
}
.item-box .rating {
	background: url('../img/rating-3.png') no-repeat;
	width: 90px;
    height: 15px;
}
.item-box .rating div {
    background: var(--theme-primary) url('../img/rating-2.png') no-repeat;
    height: 15px;
}
.item-box .description {
	height: 40px;
	margin: 0 0 15px;
	overflow: hidden;
}
.item-box .description a {
	display: block;
	overflow: hidden;
}
.item-box .prices {
    margin: 0;
}
.item-box .prices br{display: none;}
.item-box .prices .msrp-value span {
    font-size: 18px;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--font-avenirmedium);
}
.item-box .prices .msrp-value span > span,
.msrp-value .oldprice{
	text-decoration: line-through;
}
.item-box .prices .msrp-value span span:first-of-type {
  margin-left: 3px;
}
.product-grid .item-box.featured-img-box{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.product-grid .item-box.featured-img-box img {border-radius: 18px;}
.cart-left-colum .cart-total td.cart-total-right span,
.cart-left-colum .cart-total .order-total td.cart-total-right span,
.cart .unit-price .product-unit-price strong + span,
.cart.cart-holder .subtotal span,
.mini-shopping-cart .totals span,
.mini-shopping-cart .price span,
.item-box .prices span {
    color: var(--black);
    font-size: 45px;
    line-height: 1.3;
    margin: 0;
    display: flex;
    justify-content: end;
    font-family: var(--font-avenirheavy);
}
.cart-left-colum .cart-total .order-total td.cart-total-right span{
    font-family: var(--font-heading);
}
.mini-shopping-cart .price span{
    justify-content: start;
}
.item-box .prices span{
    justify-content: start;
    color: var(--theme-scandory);
    font-size: 18px;
}

.mini-shopping-cart .totals span {
    font-size: 32px;
}
.cart-left-colum .cart-total td.cart-total-right span,
.cart .unit-price .product-unit-price strong + span{
    font-size: 18px;
    color: var(--black);
}
.cart-left-colum .cart-total td.cart-total-right span .cents,
.cart-left-colum .cart-total td.cart-total-right span .currency,
.cart .unit-price .product-unit-price strong + span .cents,
.cart .unit-price .product-unit-price strong + span .currency,
.cart.cart-holder .subtotal span .cents,
.cart.cart-holder .subtotal span .currency,
.mini-shopping-cart .totals span .cents,
.mini-shopping-cart .totals span .currency,
.mini-shopping-cart .price span .cents,
.mini-shopping-cart .price span .currency,
.item-box .prices span .cents,
.item-box .prices span .currency{
    font-size: .6em;
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
}
.cart-left-colum .cart-total td.cart-total-right span .cents,
.cart-left-colum .cart-total td.cart-total-right span .currency,
.cart .unit-price .product-unit-price strong + span .cents,
.cart .unit-price .product-unit-price strong + span .currency,
.mini-shopping-cart .totals span .cents,
.mini-shopping-cart .totals span .currency{font-size: .5em;}
.item-box .prices .msrp-value span .cents,
.item-box .prices .msrp-value span .currency{
    margin-top: 2px;
}
.vendor-holder,
.overview .manufacturers a{
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.overview .manufacturers .value a{color: var(--black);}
.overview .manufacturers .value a:hover,
.cart .vendor-holder a,
.vendor-holder a,
.overview .manufacturers a{color: var(--theme-scandory);}
.cart .vendor-holder a:hover,
.vendor-holder a:hover,
.overview .manufacturers a{color: var(--theme-primary);}
.item-box .vendor-holder{
    margin-bottom: 0;
    display: none;
}
.cart .unit-price .product-unit-price strong{font-weight: normal;}
.item-box .actual-price {
	font-size: 16px;
    font-weight: bold;
	color: var(--theme-primary);
}
.item-box .base-price-pangv {
    font-size: 12px;
}
.item-box .old-price + .actual-price {
	margin: 0 3px;
}
.old-price{display: none;}
.item-box .tax-shipping-info {
    font-size: 13px;
}
.item-box .tax-shipping-info a {
    color: var(--theme-primary);
}
.item-box .tax-shipping-info a:hover {
    text-decoration: underline;
}
.item-box .buttons {
	margin: 0;
    text-align: left;
    font-size: 0;
}
.item-box button {
    width: calc(100% - 48px);
    height: 48px;
    border: none;
	padding: 0 20px;
    background: var(--theme-primary);
    vertical-align: top;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.item-box button:hover {
    opacity: 0.9;
}
.item-box button.add-to-compare-list-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
	background: #444 url('../img/compare-button.png') center no-repeat;
    font-size: 0;
}
.item-box button.add-to-wishlist-button {
    width: 48px;
    height: 48px;
    padding: 0;
	background: #444 url('../img/wishlist-button.png') center no-repeat !important;
    font-size: 0;
}

.item-box .with-icon button {
    width: 48px !important;
	min-width: 0 !important;
    margin: 0 1px;
    padding: 0;
    font-size: 0;
}
.item-box .with-icon .product-box-add-to-cart-button {
    background: var(--theme-primary) url('../img/cart-button.png') no-repeat center;
}

.home-page-category-grid,
.sub-category-grid,
.manufacturer-grid {
	margin-bottom: 10px;
    margin-inline:0 !important;
}
.home-page-category-grid .item-box,
.sub-category-grid .item-box {
    max-width: none;
}

.html-landing-page .master-wrapper-content{
    max-width: 100%;
    padding-inline:0;
}
.topic-block .landing-page-topic a,
.topic-page .landing-page-topic a{
    color: var(--black);
}
.topic-block .landing-page-topic a:hover,
.topic-page .landing-page-topic a:hover{
    color: var(--theme-primary);
    text-decoration: none;
}
.home-page-category-grid .category-item {
    position: relative;
}
.home-page-category-grid .picture {
    margin: 0;
}

.home-page-category-grid .picture a:before,
.sub-category-grid .picture a:before {
	padding-top: 60%;
}

.home-page-category-grid .hover-effect-2 .title a span {
    top: auto;
    width: 100%;
	margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.category-grid .picture {
    margin: 0 0 15px;
    background-color: transparent;
}

/* .landing-page-topic .category-grid .item-box{
    width: 100%;
} */
.category-grid .item-box{
    background-color: #f7f7f7;
    padding: 25px 20px;
    border-radius: 20px;
    overflow: hidden;
}
.category-grid .item-box .title {
    text-align: center;
    font-size: 20px;
    color: var(--black);
    margin-bottom:0;
}
.category-grid .title a{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-right: 23px;
}
.category-grid .title a::before{
    content: "\f135";
    font-family: bootstrap-icons!important;
    position: absolute;
    right: -7px;
    top: 50%;
    line-height: 1;
    transform: translateY(-50%);
    margin-top: 1px;
    font-weight: 900;
    font-size: 26px;
}

.manufacturer-grid .title,
.vendor-grid .title {
    text-align: center;
    font-size: 16px;
    color: var(--black);
}

.product-grid,
.product-list {
	margin: 0 0 30px;
}
.product-details-page .product-grid,
.product-details-page .product-list {
	margin-bottom: 0;
    padding-block:1rem 1.5rem;
}
.related-products-grid .title {display: none;}
.related-products-grid .item-box .details {
    padding: 15px;
}
.related-products-grid .item-box .prices span {font-size: 14px;}
.related-products-grid .item-box .product-title{font-size: 18px;}
.product-grid .title,
.home-page-category-grid > .title {
	margin: 0 0 30px;
    text-align: center;
	font-size: 22px;
    color: var(--black);
}

.pager {
	margin: 0 0 20px;
    font-size: 0;
}
.pager ul {
	text-align: center;
}
.pager li {
	display: inline-block;
	vertical-align: middle;
}
.pager li * {
    display: block;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #eee;
    border-radius: 100%;
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #444;
    cursor: pointer;
    margin-inline: 5px;
}
.pager li span {
	background-color: var(--theme-scandory);
  color: var(--white) !important;
}
.pager li a:hover {
    background-color: #eee;
	color: var(--theme-primary);
}
.pager li.current-page span {
    border-color: var(--theme-scandory);
    background-color: var(--theme-scandory);
    color: var(--white);
}
.pager li.previous-page *,
.pager li.next-page *,
.pager li.first-page *,
.pager li.last-page * {
    border-width: 2px;
    border-color: var(--theme-primary);
    background-color: var(--theme-primary);
	background-position: center;
	background-repeat: no-repeat;
	font-size: 0;
}
.pager li.previous-page a:hover,
.pager li.next-page a:hover,
.pager li.first-page a:hover,
.pager li.last-page a:hover {
    border-color: var(--theme-scandory);
    background-color: var(--theme-scandory);
    color: var(--white);
}

.pager li.previous-page * {
	background-image:url('../img/pager-prev.png');
    background-size:18px auto;
}
.pager li.next-page * {
	background-image: url('../img/pager-next.png');
    background-size:18px auto;
}
.pager li.first-page * {
	background-image: url('../img/pager-first.png');
    background-size: 18px auto;
}
.pager li.last-page * {
	background-image: url('../img/pager-last.png');
  background-size: 18px auto;
}
.pager li.last-page *,
.pager li.first-page * {
    margin: 0 1px;
    background-color: var(--black);
    border-color: var(--black);
}


/********** PRODUCT PAGE **********/



.master-wrapper-content.one-column,
.master-wrapper-content.two-columns {
    padding-top: 30px;
}
.price-source{display: none;}
.one-column .product-name,
.two-columns .product-name {
	margin: 55px 0 15px;
}
.freedom-save-event{
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.4;
    color: var(--theme-scandory);
    font-family: var(--font-avenirheavy);
    margin-bottom: 15px;
}
.one-column .product-name h1,
.two-columns .product-name h1 {
    text-transform: capitalize;
    line-height: 1;
    font-size: 42px;
    color: var(--black);
    font-family: var(--font-avenirblack);
    text-align: start;
    margin-bottom: 0;
}
/* .two-columns .product-name h1{
    text-align: start;
    margin-bottom: 0;
    font-size: 28px;
} */
.product-reviews-overview {
	margin: 0 0 30px; /*not present in variant-overview*/
    text-align: center;
}
.product-no-reviews a {
	text-decoration: underline;
}
.product-review-box {
	display: inline-block;
	margin: 0 0 5px;
}
.product-review-box .rating {
	width: 90px;
	height: 15px;
	background: url('../img/rating-3.png') repeat-x;
}
.product-review-box .rating div {
	height: 15px;
	background: url('../img/rating-2.png') repeat-x;
}
.product-review-links {
}
.product-review-links a {
    color: var(--theme-primary);
}
.product-review-links a:hover {
    text-decoration: underline;
}

.product-essential {
	margin: 0 0 50px;
}
.product-details-page .product-essential{
    display: grid;
    grid-template-columns:63% 34%;
    /* display: flex;
    justify-content: space-between; */
    gap: 3%;
    align-items: start;
    position: relative;
}
.two-columns .overview .product-reviews-overview {
    margin:0;
    display: block;
}
.product-gallery{position: relative;}
.gallery-multi-buttons{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gallery-inside-buttons{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e9eae9;
    gap: 12px;
    padding-right: 15px;
    font-size: 16px;
}
.gallery-inside-buttons #arButton{
    display: none;
}
.gallery-inside-buttons .iconbox{
    height: 45px;
    width: 40px;
    background-color: var(--theme-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gallery-inside-buttons .iconbox img{
    max-width: 50%;
}
.gallery-inside-buttons.wishlist{
    min-width: 45px;
    height: 45px;
    padding-right: 0;
}
.gallery .product-ribbon .ribbon-image-text{
    font-size: 0;
    background: url(../img/ribbon-cross-icon.png) no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    position: absolute;
    right: -2px;
    top: -2px;
    left: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery .product-ribbon {
    max-width: 400px;
    max-height: 150px;
}
.gallery .product-ribbon:hover .ribbon-image-text{
    opacity: 1;
    visibility: visible;
}
.gallery-multi-buttons .add-to-wishlist-button{
    min-width: 45px;
    height: 45px;
    background: #e9eae9 url(../img/heart-icon.png) no-repeat center;
    background-size: 50% auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 0;
}

.gallery {
    padding-top:30px;
    margin: 0;
}
.gallery .picture {
	position: relative;
	max-width: 100%;
	margin: 0 auto 2px;
	overflow: hidden;
    text-align: center;
}
.gallery .picture img,
.gallery .picture-thumbs img,
.variant-picture img {
    max-width: 100%;
    font-size: 0;
}
.gallery .picture-thumbs {
	overflow: hidden;
    text-align: left;
	font-size: 0;
}
.gallery .thumb-item {
	display: inline-block;
	position: relative;
	width: 33.33333%;
	margin: 0 0 2px;
	overflow: hidden;
}
.product-gallery .table-wrapper{
    border-top:4px solid #e9eae9;
    border-bottom:4px solid #e9eae9;
    padding-block: 1.2rem;
}
.product-gallery .table-wrapper table{
    border: 0;
    margin-bottom: 0;
}
.product-gallery .table-wrapper table tbody{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.product-gallery .table-wrapper tbody tr {
    width: auto;
    display: flex;
    flex-direction: column-reverse;
    flex-grow: 1;
}
.product-gallery table td{
    color:#4f554f;
    font-size: 22px;
    text-transform: capitalize;
}
.product-gallery table td.spec-name{
    color:var(--theme-scandory);
    text-transform: uppercase;
    font-size: 12px;
}
.product-gallery .product-specs-box table td{border: 0 !important;}
.overview {
	margin: 0 0 30px;
    text-align: start;
    position: relative;
    /* border: 4px solid #e9eae9;
    border-radius: 33px;
    padding: 25px; */
}
.overview-holder{
    padding: 0;
    position: relative;
}
.overview.in-stock-ribbion .overview-holder:before{
    background: url(../img/instock-overview.png) no-repeat;
    width: 140px;
    height: 140px;
    background-size: contain;
    content: '';
    right: -4px;
    top: -4px;
    position: absolute;
    z-index: 2;
}
.overview .discontinued-product {
    margin: 0 0 25px;
    border: 2px solid #eee;
    padding: 25px 0;
}
.discontinued-product h4 {
    text-align: center;
    text-transform: uppercase;
    color: #de524e;
}
.overview .short-description {
	margin:0 50px 1.2rem 0;
    font-size: 18px;
    line-height: 1.6;
}
.overview .availability{
    margin-bottom: 10px;
    font-weight: 700;
    display: none;
}
.overview .manufacturers {
	margin:0 0 0.8rem;
}
.product-estimate-shipping {
    margin: 0 0 20px 0;
    text-align: start;
    font-size: 20px;
    display: none;
    gap: 10px;
}
.pickup-delivery .fulfillment-options {display: block;}
.storis-availability-container .fulfillment-options>div {
    padding: 0 0 0 1em;
    position: relative;
    display: flex;
    align-items: center;
    border: 0;
    line-height: 1.3;
    margin: 0 0 8px;
    gap: 5px;
}
.storis-availability-container .fulfillment-options .icon {
    width: 10px;
    height: 10px;
    border: 1px solid var(--black);
    background-color: var(--white);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.storis-availability-container .fulfillment-options>div.selected .icon {background-color: var(--black);}
.storis-availability-container .fulfillment-options .icon img{display: none;}
.storis-availability-container .fulfillment-options > div p, .storis-availability-container .fulfillment-options > div:first-child p, .storis-availability-container .fulfillment-options>div:not(:first-child) p {
    color: inherit;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
}
.storis-availability-container .fulfillment-options h4 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-avenirblack);
}
.storis-availability-container .fulfillment-options > div:not(.selected):hover {
    box-shadow: none;
}
.pickup-delivery-details .storis-availability-container .pickup-availability, .pickup-delivery-details .showroom, .pickup-delivery-details .availability {
  display: none !important;
}
.pickup-delivery-details .storis-availability-container .pickup-availability h4 {
    font-size: 18px;
    line-height: 18px;
}
.pickup-delivery-details .storis-availability-container .pickup-availability h4 span {
    color: var(--theme-primary);
}
.pickup-delivery-details .storis-availability-container .pickup-availability a, .pickup-delivery-details .storis-availability-container .showroom a {
    display: none;
}

.pickup-delivery-details{
    color: var(--black);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}
.pickup-delivery-details a{
    color: var(--black) !important;
    text-decoration: underline !important;
}
.pickup-delivery-details a:hover{color: var(--black) !important;}
.pickup-delivery-details #product-pickup-availability-link {
    padding-left: 0;
}
#showroom-location-view {
    display: flex;
    gap: 10px;
}
.showroom-locations .showroom-seeinstore-icon{display: none;}
.showroom-locations .showroom-seeinstore-title {
    font-weight: normal;
}
.overview .manufacturers .label{display: none;}

.back-in-stock-subscription {
	margin: 15px 0;
	font-size: 0;
}
.overview .subscribe-button,
.variant-overview .subscribe-button {
    padding: 10px 15px;
    border: 2px solid #eee;
    background-color: #f9f9f9;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color:var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.overview .subscribe-button:hover,
.variant-overview .subscribe-button:hover {
    background-color: #eee;
}

.overview .additional-details {
    margin: 25px 0;
}
.overview .additional-details div,
.variant-overview .additional-details div {
	margin: 0 0 5px;
}
.overview .delivery,
.variant-overview .delivery {
    margin:  0;
}

.overview .value a:hover,
.variant-overview .value a:hover {
    text-decoration: underline;
}
.free-shipping {
	display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    color: #444;
}

.overview-buttons {
	margin: 25px 0;
    border-bottom: 2px solid #eee;
    padding: 0 0 25px;
	font-size: 0;
}
.overview-buttons div {
	display: inline-block;
	margin: 0 1px 10px;
    vertical-align: top;
}
.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button,
.overview .add-to-compare-list-button,
.overview .email-a-friend-button,
.download-sample-button {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #444;
	background-position: center;
    background-repeat: no-repeat;
	border: none;
	font-size: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.overview .add-to-wishlist-button,
.variant-overview .add-to-wishlist-button {
    background-image: url('../img/wishlist-button.png');
}
.overview .add-to-compare-list-button {
    background-image: url('../img/compare-button.png');
}
.overview .email-a-friend-button {
    background-image: url('../img/email.png');
}
.download-sample-button {
    background-image: url('../img/download.png');
}
.overview-buttons div > *:hover {
    opacity: 0.9;
}

.overview .prices,
.variant-overview .prices {
	margin: 0;
	overflow: hidden;
    text-align: start;
}
.overview .msrp .msrp-value span + span{
	color: var(--black);
	text-decoration: line-through;
}
.overview .msrp .msrp-value span span:first-of-type {
  margin-left: 3px;
}
.overview .old-product-price,
.variant-overview .old-product-price {
	font-size: 22px;
	color: var(--black);
	text-decoration: line-through;
}
.overview .product-price,
.variant-overview .product-price {
    font-family: var(--font-avenirheavy);
	font-size: 22px;
    line-height: 1.2;
    color: var(--theme-scandory) !important;
}
.overview .msrp .msrp-value span.currency,
.overview .msrp .msrp-value span.cents,
.overview .product-price .cents,
.overview .product-price .currency{
    font-size: 0.6em;
    display: inline-block;
    vertical-align: top;
    margin-top: 6px;
}
.overview .msrp .msrp-value span.currency,
.overview .msrp .msrp-value span.cents{margin-top: -4px;}
.overview .product-price .currency{margin-right:0;}
.overview .product-price sub,
.overview .product-price sup{
    font-size: 0.5em;
}
.price-or-col{
    color:#b5b8b5;
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
    display: flex;
    align-items: center;
}
.price-or-col::before{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    content: '';
    width: 2px;
    background-color: #b5b8b5;
}
.price-or-col span{
    background-color: #e9eae9;
    position: relative;
    z-index: 1;
    padding-block: 8px;
}
.overview .product-price sub{
    font-family:var(--font-avenirmedium);
    font-size: 0.45em;
    display: inline-block;
    margin-bottom: 1.35em;
    vertical-align: bottom;
}
.overview .msrp{
    text-align: center;
    margin-bottom: 1.8rem;
    max-height: 22px;
    text-transform: uppercase;
}
.overview .msrp .msrp-value {font-size: 22px;}
.overview .prices .tax-shipping-info a,
.variant-overview .prices .tax-shipping-info a {
    color: var(--theme-primary);
}
.overview .prices .tax-shipping-info a:hover,
.variant-overview .prices .tax-shipping-info a:hover {
    text-decoration: underline;
}
.customer-entered-price {
	margin: 0 0 20px;
	overflow: hidden;
	padding: 10px;
}
.customer-entered-price > div {
	display: inline-block;
}
.customer-entered-price .price-input {
	margin: 0 10px 10px 0;
}
.customer-entered-price .enter-price-input {
	width: 50px;
	text-align: center;
}
.customer-entered-price .price-range {
	font-weight: bold;
}
.price-add-to-cart{
    margin-bottom: 2rem;
}
.price-add-to-cart .price-holder{
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 1rem;
}
.overview .price-add-to-cart  .msrp {margin-bottom: 0;}
.price-add-to-cart .price-holder .today-price,
.price-add-to-cart .price-holder .synchrony-price{
    text-align: start;
}
.price-add-to-cart .price-holder .today-price .holder,
.price-add-to-cart .price-holder .synchrony-price .holder{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.price-add-to-cart .pricetitle{
    display: block;
    color: var(--theme-scandory);
    font-size: 18px;
    font-family: var(--font-avenirheavy);
    text-transform: uppercase;
}
.price-add-to-cart .synchrony-logo{
    display: block;
}
.price-add-to-cart .synchrony-logo img{
    max-height: 22px;
}
.overview .add-to-cart {
	margin: 0;
}
.min-qty-notification {
    margin-bottom: 10px;
}
.pre-order-availability-date {
    margin-top: 10px;
    font-weight: bold;
    color: #444;
}
.pre-order-availability-date label {
    font-weight: normal;
    color: #888;
}
.overview .add-to-cart-panel,
.variant-overview .add-to-cart-panel {
    display: block;
    position: relative;
}
.cart a, .data-table a, .compare-products-table a, .forums-table-section a {
    font-weight: normal !important;
}
.synchrony-button {
  display: none;
  text-align: center;
}
.synchrony-button img {
  max-width: 80%;
  margin: 10px auto 0 auto;
}
.paypal-buttons.paypal-buttons-context-iframe{margin-bottom: 10px;}
.paypal-button {border-radius: 50px !important;}
.cards-accepted{margin-bottom: 20px;}
.cards-accepted img{
    max-height: 22px;
    max-width: 100%;
    margin: auto;
}
.overview .add-to-cart > .add-to-cart-panel{
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 10px;
    margin-bottom: 1rem;
}
.overview .qty-label,
.variant-overview .qty-label {
	position: absolute;
	left: -25px;
	line-height: 36px;
    display: none !important;
}
.overview .qty-input,
.variant-overview .qty-input,
.overview .qty-dropdown ,
.variant-overview .qty-dropdown  {
	width: 100%;
    height: 60px;
    border: 2px solid #eee;
	text-align: center;
    font-size: 16px;
}
.paypal-button-container{
    width: 100%;
    max-width: 100%;
}
.overview .qty-dropdown ,
.variant-overview .qty-dropdown  {
    min-width: 48px;
    width: auto;
}
.overview .add-to-cart-button,
.variant-overview .add-to-cart-button,
button.apply-shipping-button {
    min-width: inherit;
    height: 60px;
    padding: 0 20px;
    background:var(--theme-primary);
    border: none;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-family: var(--font-avenirmedium);
}
.overview .add-to-cart-button:hover,
.variant-overview .add-to-cart-button:hover,
button.apply-shipping-button:hover {
    background-color:  var(--theme-scandory);
}
.overview .add-to-cart .add-to-wishlist-button {
	display: none; /*removes the old button*/
}
.product-estimate-shipping:last-child {
	margin: 0;
}
.product-estimate-shipping i {
	display: inline-block;
	transform: rotate(45deg);
	margin: 0 0 3px 10px;
	border: solid black;
	border-width: 0 1px 1px 0;
	padding: 3px 3px;
    display: none;
}
.product-estimate-shipping .shipping-loading {
	display: none !important;
}
.product-estimate-shipping .shipping-title {
	margin: 0 0 5px;
  display: inline;
}
.product-estimate-shipping .shipping-price-title {
    margin: 0 5px 0 0;
}
.product-estimate-shipping .estimated-delivery, .product-estimate-shipping .shipping-address {
    display: inline;
}
.product-estimate-shipping .shipping-price {
    position: relative;
	margin: 0 5px 0 0;
}
.product-estimate-shipping .open-estimate-shipping-popup{
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    line-height: 18px;
}
.product-estimate-shipping .open-estimate-shipping-popup:hover{color: var(--black);}
.product-estimate-shipping .shipping-date {
	margin: 15px 0 0;
}
.pickup-delivery{
    padding: 0;
}
.product-info-detail .available-delivery{display: none;}
.product-info-nav{
    color: var(--black);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom:0.8rem;
}
.product-info-nav li{margin-bottom: 5px;}
.product-info-nav li a{
    color: var(--theme-primary);
    text-decoration: underline;
}
.product-info-nav li a:hover{
    color: var(--black);
    text-decoration: none;
}
.product-info-description{
    color: #939793;
    font-size: 16px;
    line-height: 1.6;
    padding-top:10px;
}
.product-info-description p{margin-bottom: 0;}


.product-share-button {
	display: inline-block;
    overflow: hidden;
}
.readmore-button{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 50px;
    border: 1px solid #d6d8d6;
    padding: 15px 15px;
    transition: all .3s ease;
    font-weight: 400;
    gap: 7px;
    max-width: 190px;
    background-color: var(--white);
    margin: 15px auto -70px;
    position: relative;
    top: 40px;
    z-index: 9;
    cursor: pointer;
}
.readmore-button img {max-height: 20px;}
.full-description-holder.expanded .readmore-button{
    margin-block:-5px 20px;
}
.readmore-button .less{display: none;}
.full-description-holder.expanded .readmore-button .more{display: none;}
.full-description-holder.expanded .readmore-button .less{display: inline-block;}
.full-description-holder.expanded .readmore-button img{transform: rotate(180deg);}
.full-description {
    padding-block: 0;
    margin: 0;
    text-align: start;
    position: relative;
}
.full-description h3{
    font-family: var(--font-avenirheavy);
    font-size: 20px;
    line-height: 1.3;
}
.overview .full-description{
    /* max-height: 120px; */
    overflow: hidden;
    border-bottom: 0;
    margin-bottom: 0;
}
/* .overview .full-description::before{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    box-shadow: rgba(255,255,255,.85) 0 -70px 36px -28px inset;
} 
.overview .full-description-holder.expanded .full-description{max-height: none;}
.overview .full-description-holder.expanded .full-description::before{display: none;}*/
.full-description .title{
    margin-bottom: 1.5rem;
    font-size: 30px;
}

.product-collateral {
	margin: 0;
    text-align: center;
    padding-block:1rem;
}
.product-collateral .title {
	margin: 0 0 15px;
	font-size: 14px;
    text-transform: uppercase;
}
.product-variant-line {
	margin: 0 0 30px;
	border-bottom: 1px dotted #ccc;
	padding: 0 0 20px;
}
.product-variant-line:after {
	content: "";
	display: block;
	clear: both;
}
.variant-picture {
	position: relative;
	width: 220px;
	height: 220px;
	margin: 0 auto 15px;
	overflow: hidden;
}
.variant-overview {
	width: 100%;
}
.variant-overview .variant-name {
	margin: 0 0 15px;
    font-weight: bold;
	font-size: 16px;
    text-transform: uppercase;
    color: #444;
}
.variant-overview .variant-description {
	margin: 0 0 25px;
	line-height: 24px;
}
.variant-overview .add-to-cart {
    display: inline-block;
    vertical-align: top;
}
.variant-overview .add-to-cart-panel > * {
	margin: 0 0 10px;
}
.variant-overview .overview-buttons {
    display: inline-block;
    position: relative;
    margin: 0 0 0 -3px;
    border: none;
    padding: 0;
    vertical-align: top;
}

.ui-tabs {
	margin: 0 0 80px;
}
.ui-tabs .ui-tabs-nav {
    margin: 0 0 30px;
    font-size: 0;
}
.ui-tabs .ui-tabs-nav li {
	display: block;
    margin: 10px auto;
}
.ui-tabs .ui-tabs-nav li a {
	display: block;
	border: 2px solid var(--theme-scandory);
	background-color: #f9f9f9;
	padding: 10px 25px;
	text-align: center;
    font-size: 14px;
    color: var(--theme-scandory) !important;
	font-weight: bold;
    text-transform: uppercase;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,
.ui-tabs .ui-state-active.ui-tabs-active a {
	background-color: #eee;
}
.ui-tabs .ui-tabs-panel {
    position: relative;
    overflow: hidden;
	border: 2px solid #eee;
	background: var(--white);
	padding: 15px;
}
.ui-tabs .ui-tabs-panel p {
	margin: 10px 0;
	line-height: 20px;
}
.ui-tabs .ui-tabs-hide {
	display: none;
}

.tier-prices {
	margin: 0 0 50px;
}
.tier-prices .prices-table {
	border: 2px solid #eee;
    overflow: hidden;
}
.tier-prices .prices-row {
    float: left;
    width: 50%;
}
.tier-prices .prices-row > div {
	border-top: 2px solid #eee;
    padding: 10px;
}
.tier-prices .prices-row.thead > div {
	border-right: 2px solid #eee;
}
.tier-prices .field-header {
	border-top: none !important;
    font-weight: bold;
    color: #444;
}
.tier-prices .item-price {
	color: #444;
}

.product-specs-box {
	margin: 0;
}
.ui-tabs .product-specs-box {
	padding: 20px 0;
}
.product-specs-box .data-table {
    box-shadow: none;
}
.product-specs-box .data-table td {
    padding: 5px;
    border: 2px solid #eee !important;
}
.product-specs-box thead {
    display: none;
}
.product-specs-box .attribute-squares {
    display: inline-block;
    vertical-align: middle;
}
.product-specs-box .spec-group-name {
    display: none !important;
}

.product-tags-list {
    font-size: 0;
}
.product-tags-list li,
.vendor-list li {
	display: inline-block;
	font-size: 14px; /*reset zeroing*/
    color: var(--theme-primary);
}
.vendor-list li {
    margin: 0 10px 10px;
}
.product-tags-list li a:hover,
.vendor-list li a:hover {
    text-decoration: underline;
}
.product-tags-list li.separator {
	margin: 0 5px 0 3px;
}
.product-tags-list a {
	display: inline-block;
	line-height: 24px;
}
.attributes {
    margin: 1.2rem 0;
    font-size: 16px;
}
.attributes label{font-weight: 400;}
.attributes dl{margin-bottom:10px;}
.attributes .dt {
	margin: 0 0 5px;
    white-space: nowrap;
}
.attributes .attribute-description {
    font-size: 12px;
    font-weight: normal;
    white-space: normal;
}
.attributes .dd {
	margin: 0 0 20px;
}
.attributes li {
	margin: 8px 0;
}
.attributes li.disabled {
	pointer-events: none;
	opacity: 0.5;
}
.attributes li.disabled label {
	text-decoration: line-through;
}
.attributes select {
	width: auto;
	max-width: 100%;
    padding-left: 0;
    margin-left: -5px;
}
.attributes option.disabled {
	color: #ddd;
}
.attributes .qty-box {
	margin: 0 0 0 10px;
}
.attributes .qty-box label {
	display: none;
}
.attributes .qty-box input {
	width: 50px;
}
.attributes .option-list label {
	margin: 0 5px;
}

.rental-attributes .attribute-item {
    margin: 10px 0;
}
.rental-attributes .attribute-item label {
    display: inline-block;
    margin: 0 0 5px;
    font-weight: bold;
    color: #444;
}
.attributes .datepicker {
	width: 280px;
	text-align: center;
}

.ui-datepicker {
	width: 280px;
	background-color: var(--white);
	text-align: center;
}
.ui-datepicker-header {
	position: relative;
	height: 32px;
	background-color: #444;
	color: var(--white);
}
.ui-datepicker-header a {
	position: absolute;
	top: 0;
	z-index: 1;
	width: 40px;
	height: 32px;
	line-height: 32px;
}
.ui-datepicker-header a {
    font-size: 0;
    opacity: 0.8;
}
.ui-datepicker-header a:hover {
    opacity: 1;
}
.ui-datepicker-header a.ui-datepicker-prev {
    left: 0;
    background: url('../img/pager-prev.png') no-repeat center;
}
.ui-datepicker-header a.ui-datepicker-next {
	right: 0;
    background: url('../img/pager-next.png') no-repeat center;
}
.ui-datepicker-title {
	position: relative;
	z-index: 0;
	line-height: 32px;
	font-weight: bold;
	text-transform: uppercase;
}
.ui-datepicker-calendar th {
	background-color: #eee;
}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
	width: 14.285%;
	border: 2px solid #eee;
}
.ui-datepicker-calendar th span,
.ui-datepicker-calendar td a {
	display: block;
	min-height: 32px;
	line-height: 32px;
}
.ui-datepicker-calendar td a:hover {
    background-color: #f6f6f6;
}
.ui-datepicker-calendar .ui-state-active {
    background-color: var(--theme-primary) !important;
    outline: 2px solid var(--theme-primary);
    color: var(--white);
}

.attribute-squares {
	font-size: 0;
}
.attribute-squares li {
	display: inline-block;
	margin: 0 0 5px;
	text-align: center;
}
.attribute-square-container {
    display: block;
    position: relative;
    z-index: 0;
}
.attribute-squares label {
	display: block;
	margin: 0;
    overflow: hidden;
}
.attribute-square {
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #eee;
	/*border-radius: 100%;*/
    cursor: pointer;
}
.attribute-square-container[title~=White]
.attribute-square {
    border-color: #ccc;
}
.attribute-squares .selected-value .attribute-square {
    border-color: var(--theme-primary);
}
.attribute-squares li input {
	position: relative;
	z-index: -1;
	margin: -32px 0 0;
}
.attribute-squares li {
    display: inline-block;
    margin: 0 3px 5px;
    text-align: center;
}
.attributes .option-list label {
    margin: 0 5px;
}
.attribute-squares label {
    display: block;
    margin: 0 !important;
    overflow: hidden;
}
.attribute-square-container {
    display: block;
    padding: 1px;
    position: relative;
    z-index: 0;
}
.attribute-square {
    border: 2px solid #eee;
    cursor: pointer;
    display: block;
    height: 24px;
    width: 24px;
}
.attribute-squares li input {
    margin: -45px 0 0;
    position: relative;
    z-index: -1;
}
.attribute-squares li.disabled {
	position: relative;
	opacity: 1;
}
.attribute-squares li.disabled:after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
    left: 0; right: 0;
    width: 45px;
    height: 45px;
	margin: auto;
	border: 1px solid #eee;
	background: var(--white) url('../img/delete-address.png') center no-repeat;
}
.image-squares .tooltip-container:before {
    border-bottom: 7px solid #eeeeee;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    bottom: 100%;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    width: 0;
}
.image-squares .tooltip-container {
    background: var(--white)fff none repeat scroll 0 0;
    border: 1px solid #eeeeee;
    position: absolute;
    text-align: center;
    visibility: hidden;
    width: 200px;
}
.image-squares .tooltip-container:after {
    border-bottom: 6px solid #eee;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    bottom: 100%;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -6px;
    position: absolute;
    width: 0;
}
.image-squares li:hover .tooltip-container {
    margin-left: -75px;
    margin-top: 5px;
    visibility: visible;
    z-index: 999;
}
.image-squares .tooltip-container .tooltip-header {
    height: 25px;
    width: 198px;
    background-color: #eee;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    line-height: 25px;
}
.image-squares .tooltip-container .tooltip-body {
    margin: 5px;
}
.image-squares .tooltip-container .tooltip-body img {
    border: 0 none var(--white);
    width: 190px;
}

.giftcard {
	margin: 50px 0 20px;
	overflow: hidden;
    clear: both;
}
.giftcard div {
	margin: 0 0 20px;
}
.giftcard label {
	display: block;
	margin: 0 0 5px;
    font-size: 14px;
    font-weight: bold;
    color: #444;
}
.giftcard input,
.giftcard textarea {
	width: 350px;
	max-width: 100%;
}
.giftcard textarea {
	height: 150px;
}

/*back in stock subscription popup*/
.ui-dialog .back-in-stock-subscription-page .page-title {
    margin: 20px 0;
}
.ui-dialog .back-in-stock-subscription-page .page-title h1 {
    font-size: 16px;
}
.ui-dialog .notify-me-button {
    margin: 20px auto;
    background: var(--theme-primary);
    border: medium none;
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    padding: 14px 30px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.ui-dialog .back-in-stock-subscription-page .notify-me-button:hover {
    opacity: 0.9;
}
.ui-dialog .back-in-stock-subscription-page {
    text-align: center;
}
.ui-dialog .page-body .tooltip {
    text-align: left;
}


/********** ESTIMATE SHIPPING **********/



.estimate-shipping-popup {
	position: relative;
	max-width: 800px;
	margin: auto;
	background-color: var(--white);
	padding: 25px;
	transform: scale(0.8);
	transition: all 0.2s ease;
	opacity: 0;
}
.estimate-shipping-popup strong {
	visibility: hidden;
}
.mfp-ready .estimate-shipping-popup {
	transform: scale(1);
	opacity: 1;
}
.mfp-removing .estimate-shipping-popup {
	transform: scale(0.8);
	opacity: 0;
}
.estimate-shipping-popup-zoom-in.mfp-removing {
	transition: all 0.3s ease;
	opacity: 0;
}

.estimate-shipping-row {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	position: relative;
}
.estimate-shipping-row-item {
	flex: 0 1 100%;
}

.mfp-container .address-item {
	margin: 10px 0 0;
}
.mfp-container .address-item + div {
	padding: 0 0 0 15px;
}
.estimate-shipping-address-control {
	width: 100%;
}
.mfp-container .address-item .required {
	position: absolute;
    top: -5px;
	right: -10px;
}
.mfp-container .shipping-options {
	position: relative; /*preloader referrence*/
	margin: 10px 0 25px;
}
.mfp-container .shipping-header-item {
	align-self: flex-end;
	border: none !important;
	padding: 12px 5px !important;
	font-size: 14px;
    color: #444;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.mfp-container .shipping-options-body {
	display: table;
	table-layout: fixed;
	width: 100%;
	border: 2px solid #eee;
	border-collapse: collapse;
}
.mfp-container .shipping-option {
	display: table-row;
	cursor: pointer;
}
.mfp-container .shipping-option.active {
    font-weight: bold;
    color: #333;
}
.mfp-container .shipping-option > div {
	display: table-cell;
	border-top: 2px solid #eee;
	padding: 12px 11px;
    font-weight: 400;
}
.mfp-container .shipping-item {
	overflow: hidden;
	padding: 8px 0;
	overflow-wrap: break-word;
}
.estimate-shipping-row-item-radio {
	flex: 0 0 30px;
	width: 24px;
}
.estimate-shipping-radio {
	display: none;
}
.estimate-shipping-radio + label {
	display: inline-block;
	position: relative;
	bottom: 1px;
	width: 14px;
	height: 14px;
	border: 1px solid #444;
	border-radius: 50%;
	font-size: 0;
}
.estimate-shipping-radio:checked + label:after {
	content: "";
	position: absolute;
	top: 3px; left: 3px;
	width: 6px; height: 6px;
	border-radius: 50px;
	background-color: #444;
}

.apply-shipping-button-container {
	text-align: center;
}
.mfp-container .apply-shipping-button {
	min-width: 120px;
    height: 40px;
}

.mfp-container .no-shipping-options {
	padding: 30px 15px;
	text-align: center;
}
.mfp-container .message-failure {
	margin: 10px 0 -5px;
    border: none;
    padding: 0;
}
.product-details-page .gallery .picture{
    margin-bottom: 30px;
    display: none;
}
.all-shops-page{padding-top:2rem;}
.all-shops-page h1,
.contact-page h1{
    font-size: 2rem;
}
.account-page #giftcards.no-data{
    margin-bottom: 10px;
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
/* #mc_embed_signup form {display:block; position:relative; text-align:left; padding:10px 0 10px 3%}
#mc_embed_signup h2 {font-weight:bold; padding:0; margin:15px 0; font-size:1.4em;}
#mc_embed_signup input {border: 1px solid #ABB0B2; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
#mc_embed_signup input[type=checkbox]{-webkit-appearance:checkbox;}
#mc_embed_signup input[type=radio]{-webkit-appearance:radio;}
#mc_embed_signup input:focus {border-color:#333;}
#mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; transition: all 0.23s ease-in-out 0s; color: var(--white)FFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: normal; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding: 0 22px; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
#mc_embed_signup .button:hover {background-color:#777;}
#mc_embed_signup .small-meta {font-size: 11px;}
#mc_embed_signup .nowrap {white-space:nowrap;}

#mc_embed_signup .mc-field-group {clear:left; position:relative; width:96%; padding-bottom:3%; min-height:50px;}
#mc_embed_signup .size1of2 {clear:none; float:left; display:inline-block; width:46%; margin-right:4%;}
* html #mc_embed_signup .size1of2 {margin-right:2%;}
#mc_embed_signup .mc-field-group label {display:block; margin-bottom:3px;}
#mc_embed_signup .mc-field-group input {display:block; width:100%; padding:8px 0; text-indent:2%;}
#mc_embed_signup .mc-field-group select {display:inline-block; width:99%; padding:5px 0; margin-bottom:2px;}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us{padding:5px 0;}
#mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input{display:inline; width:60px; margin:0 2px; letter-spacing:1px; text-align:center; padding:5px 0 2px 0;}
#mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input{width:40px;}
#mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input{width:30px;}
#mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label{display:none;}

#mc_embed_signup .indicates-required {text-align:right; font-size:11px; margin-right:4%;}
#mc_embed_signup .asterisk {color:#e85c41; font-size:150%; font-weight:normal; position:relative; top:5px;}
#mc_embed_signup .clear {clear:both;}

#mc_embed_signup .mc-field-group.input-group ul {margin:0; padding:5px 0; list-style:none;}
#mc_embed_signup .mc-field-group.input-group ul li {display:block; padding:3px 0; margin:0;}
#mc_embed_signup .mc-field-group.input-group label {display:inline;}
#mc_embed_signup .mc-field-group.input-group input {display:inline; width:auto; border:none;}

#mc_embed_signup div#mce-responses {float:left; top:-1.4em; padding:0em .5em 0em .5em; overflow:hidden; width:90%; margin: 0 5%; clear: both;}
#mc_embed_signup div.response {margin:1em 0; padding:1em .5em .5em 0; font-weight:bold; float:left; top:-1.5em; z-index:1; width:80%;}
#mc_embed_signup #mce-error-response {display:none;}
#mc_embed_signup #mce-success-response {color:#529214; display:none;}
#mc_embed_signup label.error {display:block; float:none; width:auto; margin-left:1.05em; text-align:left; padding:.5em 0;}

#mc-embedded-subscribe {clear:both; width:auto; display:block; margin:1em 0 1em 5%;}
#mc_embed_signup #num-subscribers {font-size:1.1em;}
#mc_embed_signup #num-subscribers span {padding:.5em; border:1px solid #ccc; margin-right:.5em; font-weight:bold;}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {display:inline-block; margin:2px 0 1em 0; padding:5px 10px; background-color:rgba(255,255,255,0.85); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; font-size:14px; font-weight:normal; z-index:1; color:#e85c41;}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {border:2px solid #e85c41;} */

@media all and (max-width: 600px) {

	.estimate-shipping-popup {
		padding: 25px 3%;
	}
	.mfp-container .shipping-address {
		flex-flow: column;
	}
	.mfp-container .address-item {
		width: 100%;
	}
	.mfp-container .address-item + div {
		padding: 0;
	}
}


/********** PRODUCT REVIEWS **********/



.product-reviews-page h1 a {
    color: var(--theme-primary);
}
.product-reviews-page h1 a:before,
.product-reviews-page h1 a:after {
	content: "''";
}
.product-reviews-page .title {
    text-align: center;
    margin: 0 0 30px;
    font-size: 16px;
    text-transform: uppercase;
    color: #444;
}
.write-review {
	margin: 0 0 60px;
}
.write-review .form-fields {
	margin: 0 0 15px;
}
.ui-tabs .form-fields {
}
.write-review .review-rating {
    margin-bottom: 15px;
	text-align: center;
}
.review-rating > div {
    display: inline-block;
}
.write-review .review-rating label {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
    vertical-align: middle;
    font-weight: bold;
    color: #444;
}
.review-rating ul {
    font-size: 0;
    vertical-align: middle;
}
.review-rating .tooltiptext {
    display: inline-block;
    margin-top: 10px;
}
.review-rating .name-description {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    text-align: center;
    font-size: 14px;
}
.write-review .rating-wrapper div {
    display: inline-block;
    margin: 0 5px;
    cursor: default;
    vertical-align: middle;
    font-size: 12px;
    text-transform: uppercase;
}
.write-review .review-rating div.first {
	color: #de524e;
}
.write-review .review-rating .rating-options {
    font-size: 0;
}
.write-review .review-rating .rating-options input {
	margin: 0 2px;
}
.write-review .review-rating div.last {
	color: #6bc29d;
}
.write-review .captcha-box {
    margin: 15px 0 0;
}
.write-review .button-1 {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 80px;
	border: none;
	padding: 14px 40px;
    background-color: var(--theme-primary);
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.write-review .button-1:hover {
    opacity: 0.9;
}
.product-reviews-page .result,
.product-reviews-page .message-error {
	margin: 0 0 20px;
}
.product-review-list {
	overflow: hidden;
}
.product-review-item {
	margin: 0 0 40px;
}
.product-review-item .review-item-head {
	margin: 0 0 20px;
    border-bottom: 2px solid #eee;
	overflow: hidden;
	padding-bottom: 10px;
}
.product-review-item .review-title {
    margin: 0 0 10px;
	color: #444;
}
.product-review-item .product-review-box {
	margin: 0;
}
.product-review-item .review-info.top {
	margin: 0 0 20px;
}
.product-review-item .review-text {
	margin: 0 0 15px;
    line-height: 24px;
}
.product-review-item .review-info {
	margin: 0 0 5px;
}
.product-review-item .review-avatar {
    max-width: 120px;
    margin: 0 auto 10px;
    line-height: normal;
}
.product-review-item .review-avatar a {
    display: block;
}
.product-review-item .review-avatar img {
    max-width: 100%;
}
.product-review-item .separator {
    margin: 0 3px 0 0;
}
.product-review-item .review-info a,
.product-review-helpfulness .vote {
	display: inline-block;
	padding: 0 5px;
	font-weight: bold;
	cursor: pointer;
    color:var(--theme-primary);
}
.product-review-item .review-info a:hover,
.product-review-helpfulness .vote:hover {
    text-decoration: underline;
}
.product-review-helpfulness .question {
	margin: 0 5px 0 0;
	font-style: italic;
}
.product-review-helpfulness .result {
	margin: 0 0 0 10px;
}
.product-review-item .reply {
    margin: 30px 0 0;
    padding: 20px;
    background: #f6f6f6;
}
.product-review-item .reply-header {
	margin: 0 0 10px;
	font-weight: bold;
}


/********** WISHLIST & COMPARE LIST **********/



.wishlist-content {
	margin: 0 0 20px;
}
.share-info {
    margin: 0 0 100px;
    text-align: center;
}
.wishlist-content .message-error:first-child {
	margin: -30px 0 20px;
    text-align: center;
    color: #de524e;
}
.wishlist-content .tax-shipping-info {
	margin: 0 0 20px;
    text-align: center;
}
.wishlist-content .tax-shipping-info a {
    color: var(--theme-primary);
}
.wishlist-content .tax-shipping-info a:hover {
    text-decoration: underline;
}
.wishlist-content .buttons {
	font-size: 0;
}
.wishlist-content .button-2 {
    display: block;
    min-width: 250px;
    margin: 10px auto;
    padding: 10px 30px;
    border: 2px solid #eee;
    background-color: #f9f9f9;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.wishlist-content .button-2:hover {
    background-color: #eee;
}
.wishlist-content .button-2.wishlist-add-to-cart-button {
    background-color: var(--theme-primary);
    border: 2px solid var(--theme-primary);
    color: var(--white);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.wishlist-content .button-2.wishlist-add-to-cart-button:hover {
    opacity: 0.9;
}
.wishlist-page .share-info span {
    display: block;
}
.wishlist-page .share-info a {
	display: inline-block;
	margin: 0 0 5px;
	font-weight: bold;
    color: #444;
}
.wishlist-page .share-info a:hover {
    color: var(--theme-primary);
}
.compare-products-page {
	position: relative;
    margin: 0 0 150px;
}
.compare-products-page .clear-list {
    display: block;
    width: 250px;
    margin: -15px auto 30px;
    border: 2px solid #eee;
    padding: 10px 30px;
    text-align: center;
    color: var(--theme-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.compare-products-table {
	display: none;
}
.compare-products-page .button-2 {
	padding: 10px 15px;
    border: none;
    background-color: var(--theme-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.compare-products-page img {
	max-width: 200px;
}
.compare-products-page .attribute-squares {
    display: inline-block;
    vertical-align: middle;
}
.compare-products-page .attribute-square {
    width: 25px;
    height: 25px;
    cursor: default;
}


/*********** TOPICS ***********/



.topic-block {
	margin: 0 0 20px;
}
.home-page .topic-block {
	margin: 0 0 30px;
}
.topic-block-title {
	margin: 0 0 20px;
}
.topic-block-title h2 {
    margin: 0 0 30px;
    text-align: center;
	font-size: 20px;
}
.topic-block-body {line-height: 28px;}
.topic-page {margin: 0 0 30px;}
.topic-block a,
.topic-page a {
	color: var(--theme-primary);
}
.topic-block a:hover,
.topic-page a:hover {
    text-decoration: underline;
}
.topic-page .page-body {line-height: 28px;}

.home-page .topic-block {margin: 0 0 60px;}
.popup-window .topic-page {padding: 15px;}

.not-found-page p {margin: 30px 0;}

.topic-password {
    min-height: 200px;
	text-align: center;
}
.enter-password-title {
	margin: 0 0 10px;
	color: #888;
}
.enter-password-form {
	display: inline-block;
	overflow: hidden;
}
.enter-password-form input[type="password"] {
	float: left !important;
	width: 200px !important;
	height: 36px !important;
    border: 2px solid #eee;
    border-right: none;
}
.enter-password-form button {
	float: left !important;
	width: auto !important;
	height: 36px !important;
    background-color: #f9f9f9;
    border: 2px solid #eeeeee;
    color: var(--theme-primary);
    font-weight: bold;
    padding: 0 18px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.enter-password-form button:hover {
    background-color: #eee;
}

.password-error {
	margin: 0 0 10px;
}


/*********** CONTACT & EMAIL A FRIEND ***********/



.contact-page .form-fields,
.email-a-friend-page .form-fields {
	margin: 0 0 15px;
}
.contact-page .message-error,
.email-a-friend-page .message-error {
	margin: 0 0 10px;
}
.contact-page .button-1,
.email-a-friend-page .button-1,
.apply-vendor-page .button-1 {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 100px;
	border: none;
	padding: 14px 40px;
    background-color: var(--theme-primary);
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.contact-page .button-1:hover,
.email-a-friend-page .button-1:hover {
    opacity: 0.9;
}
.contact-page .topic-block {
    margin: 0;
    text-align: center;
}
.email-a-friend-page .title {
	margin: 0 0 15px;
}
.email-a-friend-page .title h2 {
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
    color: var(--theme-primary);
}


/********** REGISTRATION, LOGIN, ACCOUNT PAGES  **********/


.login-page{padding-top:40px;}
.registration-page .fieldset {
    text-align: center;
}
.registration-page .fieldset .title {
    display: inline-block;
    min-width: 150px;
    margin: 0 0 -2px;
    border: 1px solid var(--gray);
    padding: 10px 20px;
}
.registration-page .form-fields,
.login-page .form-fields,
.account-page .form-fields{
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 30px 15px;
    border: 1px solid var(--gray);
}
.account-page .form-fields {
    max-width: none;
}
.registration-page .gender label,
.account-page .gender label {
    display: inline;
    color: #444;
}
.gender {
	display: inline-block;
}
.gender * {
	margin: 0 5px;
	vertical-align: middle;
	line-height: 32px;
}
.date-picker-wrapper {
    display: inline-block;
}
.date-of-birth select {
    width: 32%;
    max-width: 110px;
}
.date-of-birth select + select {
    margin: 0 0 0 2%;
}
#check-availability-button {
    margin: 30px 0 0;
    padding: 10px 30px;
    border: 2px solid #eee;
    background-color: #f9f9f9;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#check-availability-button:hover {
    background-color: #eee;
}
#username-availabilty {
	display: block;
	margin: 5px 0 0;
}
#username-availabilty:empty {
	display: none;
}
.vat-status, .vat-note {
	display: block;
	margin: 5px 0 0;
    white-space: normal;
	text-align: center;
	font-size: 14px; /*reset zeroing*/
}
.accept-privacy-policy {
	margin: -20px 0 20px;
	text-align: center;
}
.accept-privacy-policy > * {
	display: inline-block;
	line-height: 32px;
	vertical-align: middle;
}
.accept-privacy-policy a {
	font-weight: bold;
}
.registration-page .buttons {
    margin-top: -20px;
}
.accept-privacy-policy + .buttons {
    margin-top: 0;
}
.registration-page .button-1,
.registration-result-page .button-1,
.login-page .button-1,
.password-recovery-page .button-1,
.account-page .button-1,
.return-request-page .button-1,
.user-agreement-page .button-1 {
    width: 350px;
    max-width: 100%;
    margin: 0 0 80px;
    padding: 14px 40px;
    border: none;
    background-color: var(--theme-primary);
    font-family: var(--font-avenirmedium);
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.password-recovery-page .button-1 {
    display: inline-block;
    margin: 60px auto 0px;
}
.registration-page .button-1:hover,
.registration-result-page .button-1:hover,
.login-page .button-1:hover,
.password-recovery-page .button-1:hover,
.account-page .button-1:hover,
.return-request-page .button-1:hover,
.user-agreement-page .button-1:hover {
    background-color: var(--theme-scandory);
}
.registration-result-page .result {
	margin: 0 0 60px;
    text-align: center;
	color: #6bc29d;
}

.login-page .page-title {
    margin: 20px 0 40px;
    display: none;
}
.login-page .customer-blocks {
    overflow: hidden;
    text-align: center;
}
.login-page .title {
    display: inline-block;
    min-width: 150px;
    margin: 0 0 -2px;
	border: 2px solid #eee;
    padding: 10px 20px;
}
.login-page .title strong {
    text-transform: uppercase;
	color: #444;
}
.login-page .new-wrapper {
	margin: 0 0 60px;
}
.login-page .inner-wrapper {
}
.login-page .text {
    width: 590px;
    max-width: 100%;
	margin: 0 auto -2px;
    border: 2px solid #eee;
    padding: 30px 15px;
}
.login-page .form-fields {
    width: 590px;
    max-width: 100%;
    margin: 20px auto -2px;
}
.login-page .form-fields .message-error {
    margin: -10px 0 10px;
}
.login-page .inputs.reversed {
    margin: 0;
}
.login-page .inputs.reversed * {
	margin: 5px 0;
	font-size: 14px; /*reset zeroing*/
    color: #444;
}
.login-page .inputs.reversed a {
    color: var(--theme-primary);
}
.login-page .inputs.reversed a:hover {
    text-decoration: underline;
}
.login-page .captcha-box {
    margin: 20px 0 0;
}
.login-page .buttons {
    max-width: 590px;
    margin: 0 auto;
    font-size: 0;
}
.login-page .button-1 {
    width: 590px;
    max-width: 100%;
    margin: 0;
}
.login-page .checkout-as-guest-button {
    border: 2px solid #eee;
    padding:12px 20px !important;
    background-color: #f9f9f9;
    color: var(--theme-primary);
}
.login-page .checkout-as-guest-button:hover {
    background-color: #eee;
}
.external-authentication {
    clear: both;
	margin: 0 0 60px;
	text-align: center;
}
.external-authentication .title {
	display: none;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
}
.login-page .topic-block {
    clear: both;
    text-align: center;
    margin: 0 0 120px;
}
.password-recovery-page .tooltip {
	margin: 0 0 10px;
    text-align: center;
}
.password-recovery-page .result {
	margin: 0 0 5px;
    text-align: center;
	font-weight: bold;
}

.account-page .title {
    margin: 0 0 15px;
}
.account-page .title strong {
    font-size: 16px;
}
.account-page .title strong:after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    margin: 10px auto 0;
    background: var(--theme-primary);
}
.account-page .button-1 {
    margin: 0;
}
.account-page .button-2 {
    border: 2px solid var(--theme-primary); /* if there are 2 buttons must stay same height */
	padding: 10px 30px;
    background-color: var(--theme-primary);
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.account-page .button-2:hover {
    opacity: 0.9;
}
.account-page .data-table .product {
    text-align: left;
}

.account-page .email-to-revalidate,
.account-page .email-to-revalidate-note {
	display: block;
	margin: 10px 0 0;
	font-size: 14px;
	font-style: normal;
	color: #444;
}

.account-page .edit-address {
	margin: 0 0 60px;
    border: 2px solid #eee;
    padding: 30px 15px;
}
.account-page .description {
	margin: 0 0 20px;
}

.registration-page .inputs.accept-consent label,
.account-page .inputs.accept-consent label {
    margin-left: 5px;
    width: auto;
}
.add-more-external-records a {
    color: var(--theme-primary);
}
.add-more-external-records a:hover {
    text-decoration: underline;
}

.address-list-page .info,
.order-list-page .info,
.return-request-list-page .details {
    max-width: 900px;
    margin: 0 auto 15px;
    border: 2px solid #eee;
    padding: 20px;
	line-height: 24px;
}
.address-list-page .buttons {
    font-size: 0;
}
.account-page .edit-address-button,
.account-page .delete-address-button {
    width: 48px;
    height: 48px;
    margin: 0 -1px;
    border: 2px solid #eee;
    padding: 0;
    font-size: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.account-page .edit-address-button {
    background: #f9f9f9 url('../img/edit-address.png') no-repeat center;
}
.account-page .delete-address-button {
    background: #f9f9f9 url('../img/delete-address.png') no-repeat center;
}
.account-page .edit-address-button:hover,
.account-page .delete-address-button:hover {
    background-color: #eee;
}
.address-list-page .add-button {
	margin: 0 0 15px;
	text-align: center;
}

.account-page .return-items-button {
    border: 2px solid #eee;
    background-color: #f9f9f9;
    color: var(--theme-primary);
}
.account-page .return-items-button:hover {
    background: #eee;
}
.return-request-list-page a {
	font-weight: bold;
    color: var(--theme-primary);
}
.return-request-list-page a:hover {
    text-decoration: underline;
}
.return-request-list-page .comments {
	margin: 15px 0 0;
}

.downloadable-products-page .download {
    font-size: 14px;
    font-weight: normal;
    color: #888;
}
.downloadable-products-page .download a {
    display: block;
    width: 48px;
    height: 48px;
    margin: auto;
    border: none;
    background: #444 url('../img/download.png') no-repeat center;
    font-size: 0;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.downloadable-products-page .download a:hover {
    opacity: 0.9;
}

.user-agreement-page .terms-of-agreement {
    margin: 0 0 60px;
    text-align: center;
}

.back-in-stock-subscription-list-page .data-table,
.forum-subscriptions-page .data-table {
    margin: 0 0 60px;
}

.reward-points-overview {
    margin: 0 0 15px;
}
.reward-points-history td.points-balance {
    font-size: 16px;
    font-weight: bold;
    color: var(--theme-primary);
}
.reward-points-history .message {
    min-width: 175px;
    text-align: left !important;
    font-size: 14px;
    font-weight: normal !important;
    color: #888;
}

.avatar-page .message-error {
	margin: 0 0 10px;
}
.avatar-page .fieldset {
	margin: 0 0 15px;
}
.avatar-page .buttons {
    font-size: 0;
}
.avatar-page .buttons button {
    width: 100%;
    max-width: 250px;
    margin: 0 0 10px 0;
    padding: 10px 0;
}
.avatar-page .buttons .button-2,
.account-page .button-2.return-items-button  {
    border: 2px solid #eee;
    background-color: #f9f9f9;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.avatar-page .buttons .button-2:hover,
.account-page .button-2.return-items-button:hover  {
    background-color: #eee;
}
.multi-factor-authentication-page .inputs label {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin-right: 0px;
    margin: 0px 5px 0px 0px !important;
}
.multi-factor-authentication-page .payment-details {
    display: inline-block;
    width: calc( 100% - 60px);
    padding-left: 10px;
    vertical-align: middle;
}
.multi-factor-authentication-page .payment-method .payment-logo {
    position: inherit;
    display: inline-block;
    width: 50px;
}
.multi-factor-authentication-page .payment-method .payment-details input[type="radio"] {
    position: inherit;
    margin-right: 5px;
}
.multi-factor-authentication-page .payment-method .method-name .buttons,
.multi-factor-authentication-page .payment-method .method-list .payment-details label,
.multi-factor-authentication-page .payment-method .method-list .payment-description {
    margin: 0 0 0 0px;
}
.multi-factor-authentication-page .payment-method .method-name .buttons {
    margin: 20px 0 0 10px;
}
.avatar-page .image {
    margin: 0 0 10px;
}
.avatar-page .image img {
	border: 1px solid #eee;
}
.avatar-page input[type="file"] {
	width: 76px;
	overflow: hidden;
}
.avatar-page .info {
	margin: 0 0 20px;
}

.forum-subscriptions-page .info {
    text-align: left !important;
}

/*vendor info page*/
.vendorinfo-page .vendor-picture {
    padding: 20px;
}
.vendorinfo-page .vendor-picture .remove-picture-button {
    display: block;
    margin: 20px auto 0;
}

.check-gift-card-balance-page .result {
    margin: 0 auto 20px;
    padding: 30px 15px;
    border: 2px solid #eee;
}
/********** SHOPPING CART **********/
.shopping-cart-page .cart th,
.shopping-cart-page .data-table th,
.shopping-cart-page .forums-table-section th {
    background-color: #eee;
}

.checkout-attributes select {
    width: 100%;
    height: 50px;
}

.order-progress {
	margin: 0 0 40px;
	text-align: center;
}
.order-progress ul {
    font-size: 0;
    background-color: var(--white);
}
.order-progress li {
    position: relative;
	display: inline-block;
    margin: 0 -2px -2px 0;
    overflow: hidden;
}
.order-progress a {
	display: block;
    width: 150px;
    border: 2px solid #eee;
    border-width: 2px;
    padding: 15px 50px 15px 0;
    background: url('../img/progress-arrow.png') no-repeat right center;
    text-transform: uppercase;
	font-size: 11px; /*reset zeroing*/
    color: #666;
}
.order-progress a:after {
    content: "";
    position: absolute;
    right: 48px;
    top: 0;
    height: 62px;
    width: 2px;
    background: #eee;
}
.order-progress li.active-step a {
    background-color: #f9f9f9;
	cursor: pointer;
}
.order-progress li.active-step a:hover {
    background-color: #f3f3f3;
}
.order-progress li.inactive-step a {
	/*opacity: 0.5;*/
	cursor: default;
}
.button-1 {margin: 0 !important;}
.shopping-cart-page .button-1,
.checkout-page .button-1 {
    width: 390px;
    max-width: 100%;
    margin: 0 0 80px;
    border: none;
    padding: 16px 10px;
    background-color: var(--theme-primary);
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    transition: all 0.2s ease 0s;
    margin: 0;
    font-family: var(--font-body);
}
.shopping-cart-page .button-1:hover,
.checkout-page .button-1:hover {
    background-color: var(--theme-scandory);
}
.shopping-cart-page .button-2,
.checkout-page .button-2,
.order-details-page .page-title a,
.order-details-page .button-2.re-order-button,
.shopping-cart-page .estimate-shipping-button {
	display: inline-block;
	width: 390px;
    max-width: 100%;
    border:0;
	padding: 12px 30px;
    background-color: var(--theme-primary);
    text-transform: uppercase;
    font-size: 16px;
    color: var(--white) !important;
    -webkit-transition: all 0.2s ease;
    font-family: var(--font-avenirmedium);
    transition: all 0.2s ease;
}

.shopping-cart-page .cart-collaterals .button-2 {
    border-width: 2px 0;
    font-family: var(--font-avenirmedium);
}
.order-details-page .button-2.re-order-button {
    width: auto;
    margin: 10px 0 5px;
}
.shopping-cart-page .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .page-title a:hover,
.order-details-page .button-2.re-order-button:hover,
.shopping-cart-page .estimate-shipping-button:hover,
.shopping-cart-page .cart-footer .button-2:hover,
.checkout-page .button-2:hover,
.order-details-page .page-title .pdf-invoice-button:hover,
.order-details-page .button-2.re-order-button:hover {
    background-color: var(--theme-scandory);
    color: var(--white);
}
.shopping-cart-page .apply-gift-card-coupon-code-button,
.shopping-cart-page .estimate-shipping-button:hover,
.shopping-cart-page .continue-shopping-button:hover{
    background-color: var(--theme-scandory);
}
.shopping-cart-page .cart-collaterals .button-2:hover{background-color: var(--theme-primary);}
.shopping-cart-page .cart-wrapper {
    background-color: var(--white);
}
.shopping-cart-page .cart-wrapper table.cart {
    margin-bottom: 20px;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
}
.shopping-cart-page .tax-shipping-info {
    margin: 35px auto -20px;
    text-align: center;
}

.shopping-cart-page .tax-shipping-info a:hover {
    text-decoration: underline;
}
.shopping-cart-page .common-buttons {
    padding: 0 0 15px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1%;
    justify-content: center;
}
.shopping-cart-page .common-buttons .button-2{margin-inline:0 !important;}
.shopping-cart-page .common-buttons .button-2,
.shopping-cart-page .estimate-shipping-button {
    margin: 0 0 10px;
    font-family: var(--font-avenirmedium);
}
.remove-discount-button,
.remove-gift-card-button {
	width: 16px;
	height: 16px;
	margin: 0 0 0 5px;
	border: none;
	background: var(--white) url('../img/menu-close-button.png') center no-repeat;
	cursor: pointer;
}
.shopping-cart-page .common-buttons a.estimate-shipping-button,
.shopping-cart-page .common-buttons .button-2.continue-shopping-button,
.shopping-cart-page .common-buttons a.estimate-shipping-button,
.shopping-cart-page .common-buttons .update-cart-button.button-2{
    background-color: transparent;
    border: 1px solid var(--theme-scandory);
    background-image: none !important;
    padding: 10px 20px 10px 20px;
    color: var(--black) !important;
}
.shopping-cart-page .common-buttons a.estimate-shipping-button:hover,
.shopping-cart-page .common-buttons .button-2.continue-shopping-button:hover,
.shopping-cart-page .common-buttons a.estimate-shipping-button:hover,
.shopping-cart-page .common-buttons .update-cart-button.button-2:hover{
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white) !important;
}
.shopping-cart-page .message-error {
	margin: 0 0 20px;
	font-size: 13px;
}
.checkout-buttons .button-1 {
    margin: 0 !important;
}
.shopping-cart-page .delivery-pickup div button.button-2{color: var(--theme-primary) !important;}
.cart-options {
	margin: 0 0 30px;
	text-align: center;
}
.cart-options .common-buttons {
	font-size: 0;
}
.cart-options .common-buttons button {
	min-width: 150px;
	margin: 0 5px 5px;
}
.cart-options .checkout-attributes {
	margin: 40px 0;
}
.cart-options > .checkout-attributes + .selected-checkout-attributes {
    margin: -20px 0 40px !important;
}
.cart-options .checkout-attributes .required {
    position: absolute;
}
.cart-options .checkout-attributes .text-prompt {
    font-size: 20px;
    margin-bottom: 10px;
}
.cart-options .checkout-attributes dt {
	margin: 0 0 5px;
	font-weight: bold;
}
.cart-options .checkout-attributes dt ~ dt {
    margin-top: 15px;
}
.cart-options .checkout-attributes ul {
}
.cart-options .checkout-attributes li {
	line-height: 24px;
}
.cart-options .checkout-attributes li * {
	vertical-align: middle;
}
.cart-options .checkout-attributes .attribute-squares li {
    margin: 0 5px 5px;
    line-height: normal;
}
.cart-options .selected-checkout-attributes {
	margin: 30px 0;
}

.cart-footer:after {
	content: "";
	display: block;
	clear: both;
}
.cart-footer .totals {
	width: 390px;
	max-width: 100%;
	margin: 0 auto 30px;
}
.cart-footer .total-info {
    margin: 0;
    box-shadow: none;
    padding: 20px 30px;
    text-align: right;
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid #ddd;
}
.cart-total td {
	width: 60%;
	padding: 5px;
}
.cart-total td.cart-total-left{width: 40%;}
.cart-total td.cart-total-right{
    font-family: var(--font-avenirmedium);
}
.cart-total .order-total {
    font-weight: bold;
	font-size: 16px;
}
.terms-of-service {
	margin: 0 0 20px;
}
.terms-of-service label {
    cursor: pointer;
}
.terms-of-service a {
	margin: 0 0 0 3px;
    cursor: pointer;
}
.terms-of-service a:hover {
    text-decoration: underline;
}
.cart-footer .checkout-button {
	font-size: 18px;
}
.cart-footer .addon-buttons {
	margin: 20px 0 0;
}

.cart-collaterals {
	width: 390px;
	max-width: 100%;
	margin: 0 auto 30px;
}
.cart-collaterals > div {
	margin: 0 0 30px;
}
.cart-collaterals .title {
    position: absolute;
    top: -43px;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 185px;
    margin: auto;
    border: 2px solid #eee;
    padding: 10px 0;
}
.cart-collaterals .title strong {
    text-transform: uppercase;
    color: #444;
    white-space: nowrap;
}
.cart-collaterals .hint {
    width: 100%;
	margin: 0 auto 5px;
    text-align: left;
    font-size: 20px;
}
.cart-collaterals .deals > div,
.cart-collaterals .estimate-shipping  {
    position: relative;
	margin: 70px auto 0;
    border: 2px solid #eee;
    border-bottom: none;
    padding: 25px 0 0;
    background-color: var(--white);
}
.cart-collaterals .estimate-shipping label {
    width: 350px;
    max-width: 90%;
    margin: 0 auto 10px;
    font-weight: bold;
}
.cart-collaterals .inputs input[type='text'],
.cart-collaterals .inputs select {
    max-width: 100%;
}
.cart-collaterals .inputs .required {
    position: absolute;
}
.cart-collaterals .coupon-code {
	overflow: hidden;
	font-size: 0;
}
.cart-collaterals .coupon-code input[type="text"] {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    padding-left: 0;
    font-size: 14px;
}
.cart-collaterals .coupon-code button,
.cart-collaterals .shipping button {
    border-width: 2px 0;
}
.message-failure {
    border-bottom: 2px solid #eee;
    padding: 10px;
    color: #de524e;
}
.cart-collaterals .message {
	margin: 5px 0 0;
	color: #c00;
}
.cart-collaterals .current-code {
	border-bottom: 2px solid #eee;
    padding: 10px;
	color: #6bc29d;
}
.cart-collaterals .shipping-results {
	margin: 20px 0 30px;
    border-bottom: 2px solid #eee;
    padding: 0px 10px;
    text-align: left;
}
.cart-collaterals .shipping-results li {
	margin: 10px 0;
}
.cart-collaterals .option-name {
    color: #444;
}


/********** CHECKOUT **********/


/*google map*/
.select-pickup-point {
    margin-bottom: 30px;
}
.shipping-address-page .pickup-points-map {
    height: 400px;
}

/*end*/
.checkout-page {
    margin: 0 0 120px;
}
.checkout-page .section {
	margin: 0 0 30px;
    text-align: center;
}
.checkout-page .section.select-billing-address .title,
.checkout-page .section.select-shipping-address .title {
    display: none;
}
.checkout-page .section.new-billing-address .title,
.checkout-page .section.new-shipping-address .title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
}
.checkout-page .section.order-summary .title {
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
}

/*.checkout-page .section.new-billing-address .title strong,
.checkout-page .section.new-shipping-address .title strong,
.checkout-page .section.order-summary .title strong {
    letter-spacing: 3.3px;
}*/
.checkout-page .enter-address {
    width: 900px;
    max-width: 100%;
    margin: auto;
    border: 2px solid #eee;
    padding: 30px 15px 15px;
}
.checkout-page .checkout-data .button-1 {
    padding: 15px;
    font-size: 14px;
}
.checkout-page .address-grid {
    display: inline-block;
    max-width: 100%;
	overflow: hidden;
    margin: 0 0 80px;
}
.checkout-page .address-item {
	width: 390px;
    max-width: 100%;
    margin: 0 auto 20px;
}
.checkout-page .address-box {
    border: 2px solid #eee;
    border-width: 2px 2px 0 2px;
    padding: 20px;
    color: #444;
}
.checkout-page .address-item li {
	padding: 2px 0;
}
.checkout-page .address-item li.name {
	margin: 0 0 5px;
}
.checkout-page .address-item li.country {
	margin: 5px 0 0;
    font-weight: bold;
}
.checkout-page .address-item .button-1 {
    margin: 0;
}
.checkout-page .edit-address {
	margin: 0 15px 30px;
}
.checkout-page .min-amount-warning {
	display: block;
	margin: 0 0 20px;
	text-align: center;
}
.checkout-page .address-list-page {
	display: none;
}
.shipping-method .method-list li,
.payment-method .method-list li {
	width: 390px;
    max-width: 100%;
    margin: 0 auto 10px;
    border: 2px solid #eee;
    padding: 15px;
}
.payment-method .method-list li {
    position: relative;
}
.shipping-method .method-list li label,
.payment-method .method-list li label {
    text-transform: uppercase;
	font-weight: bold;
    color: #444;
}
.shipping-method .method-list li label {
    margin: 0 0 0 5px;
}
.shipping-method .method-description {
	margin: 5px 0 0;
}
.use-reward-points {
	margin: -20px 0 30px;
}
.payment-info .validation-summary-errors li:last-child {
    margin: 0 0 10px;
}
.payment-info .info {
    max-width: 900px;
	margin: 0 auto 30px;
    border: 2px solid #eee;
    padding: 15px;
}
.payment-info .info table {
    border-collapse: separate;
    border-spacing: 15px;
}
.payment-info .info td {
    display: block;
	width: auto;
	margin: 0 0 5px;
}
.payment-info .info td label {
    vertical-align: top;
}
#CreditCardType,
#CardholderName,
#CardNumber {
    width: 250px !important;
}
.payment-info .info p>b {
    color: #444;
}
.confirm-order .terms-of-service {
    text-align: center;
}
.confirm-order .terms-of-service span {
    width: auto;
}
.confirm-order .button-1 {
	margin: 0 0 20px;
	font-size: 18px;
}
.order-review-data > div,
.order-details-area > ul,
.shipment-details-area > div {
	margin: 0 0 30px;
}
.order-review-data .side-list-wrap,
.order-details-area .side-list-wrap,
.shipment-details-area .side-list-wrap {
    margin-top: 20px;
}
.order-review-data li,
.order-details-area li,
.shipment-details-area li {
	padding: 2px 0;
}
.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
	margin: 20px 0 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
}
.order-review-data .title:first-child,
.order-details-area .title:first-child,
.shipment-details-area .title:first-child {
	margin-top: 0;
}
.order-completed .details {
	margin: 0 0 30px;
}
.order-completed .details > div {
    margin: 20px 0;
}
.order-completed .details a {
	display: block;
	margin: 5px 0 0;
	font-weight: bold;
    color: var(--theme-primary);
}
.order-completed .details a:hover {
    text-decoration: underline;
}

.opc .step-title {
	margin-bottom: 1px;
    border: 2px solid #eee;
	overflow: hidden;
	background: #f9f9f9;
	padding: 10px;
    opacity: 0.7;
}
.opc .allow .step-title,
.opc .allow .step-title * {
	cursor: pointer;
}
.opc .active .step-title {
    padding: 15px 10px;
    color: #666;
    opacity: 1;
}
.opc .active .step-title * {
}
.opc .step-title * {
	float: left;
	font-size: 16px;
}
.opc .step-title span {
	margin: 0 10px 0 0;
    font-weight: bold;
}
.opc .step {
	margin: 30px 0;
	padding: 10px;
}
.opc .step .button-1 {
    margin: 0 0 30px;
}
.opc .section {
	margin: 0 0 20px;
}
.opc .section > label {
	display: block;
	margin: 0 0 20px;
}
.opc input[type="text"],
.opc select {
    width: 390px;
	max-width: 100%;
}
.opc #ExpireMonth,
.opc #ExpireYear {
    width: auto;
}
.opc .buttons {
	margin-bottom: 0;
}
.opc .back-link {
	margin: 40px 0 15px;
}
.opc .back-link small {
	display: none;
}
.opc .back-link a {
    text-transform: uppercase;
	font-weight: bold;
    color: #444;
}
.opc .back-link a:hover {
    color: var(--theme-primary);
}
.opc .please-wait {
	display: block;
	margin: 10px 0 0;
}
.opc .payment-info .info {
    border: none;
}
.opc .section.confirm-order {
}
.opc .terms-of-service {
	text-align: center;
}
.opc .terms-of-service > span {
    width: auto;
    vertical-align: middle;
}
.opc .pickup-points-map {
    height: 400px;
}

.page.order-details-page,
.page.shipment-details-page,
.page.return-request-page {
    margin: 0 0 120px;
    text-align: center;
}
.order-details-page .page-title {
	margin: 0 0 40px;
	overflow: hidden;
}
.order-details-page .page-title h1,
.shipment-details-page .page-title {
	margin: 0 0 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}
.login-page .page-title h1{
    text-align: center;
}
.order-details-page .order-overview {
	margin: 0 0 40px;
}
.order-details-page .order-overview strong {
    color: var(--theme-primary);
}
.order-details-area,
.shipment-details-area {
	margin: 0 0 30px;
	overflow: hidden;
}
.order-details-area td {
	float: left;
	width: 100%;
	margin: 0 0 20px;
	vertical-align: top;
}
.order-details-page .button-2.print-order-button {
    border: 2px solid var(--theme-primary);
    background-color: var(--theme-primary);
    color: var(--white);
}
.order-details-page .section .title,
.shipment-details-page .section .title,
.return-request-page .section .title {
    display: inline-block;
    min-width: 150px;
    margin: 0 0 -2px;
    border: 2px solid #eee;
    padding: 10px 20px;
}
.shipment-details-page .section .title {
    font-weight: bold;
    color: #444;
    text-transform: uppercase;
}
.order-details-page .tax-shipping-info {
	text-align: center;
}
.order-details-page .tax-shipping-info a {
    color: var(--theme-primary);
}
.order-details-page .tax-shipping-info a:hover {
    text-decoration: underline;
}
.order-details-page .actions {
	margin: 20px 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}
.order-details-page .actions button {
    width: 390px;
    max-width: 100%;
    border: 2px solid var(--theme-primary);
    padding: 12px 40px;
	background-color: var(--theme-primary);
    font-size: 14px;
    font-weight: bold;
    color: var(--white)fff;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.order-details-page .actions button:hover {
    opacity: 0.9;
}
.order-details-page button.return-items-button {
    background-color: #f9f9f9 !important;
    border: 2px solid #eee;
    color: var(--theme-primary);
}
.order-details-page button.return-items-button:hover {
    background-color: #eee;
    opacity: 1;
}
.order-details-page .total-info {
	width: 390px;
    margin: 0 auto 30px;
    box-shadow: 0 1px 12px 2px rgba(0, 0, 0, 0.17);
    padding: 20px 30px;
    text-align: right;
    font-size: 16px;
}
.order-details-page .shipments .view-details a {
    font-size: 14px;
}
.shipment-details-page em {
    font-style: normal;
}

.return-request-page .submit-return-request-button {
    margin: 0;
}
.return-request-page .fieldset .title {
    margin: 0 0 40px;
    font-size: 16px;
}
.return-request-page .product {
    font-weight: bold;
    color: #444 !important;
}
.return-request-page .footable-last-column {
    color: #888;
    font-size: 14px;
    font-weight: normal;
}
.return-request-page .quantity select {
    height: 48px;
    width: 48px;
}
.return-request-file > div {
	display: inline-block;
	width: 350px;
	max-width: 100%;
	vertical-align: middle;
}
.return-request-page .qq-upload-button {
	width: 100%;
	height: 36px;
	border: 2px solid #eee;
	background-color: var(--white);
	padding: 5px;
}
.return-request-page .qq-upload-list li {
	background-color: transparent !important;
	font-size: 14px;
	color: #444 !important;
}


/*********** SEARCH & SITEMAP ***********/


.search-page .inputs label {
    width: 100% !important;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.search-input .inputs input[type="text"],
.search-input .inputs input[type="password"],
.search-input .inputs input[type="email"],
.search-input .inputs input[type="tel"],
.search-input .inputs select,
.search-input .inputs textarea {
    width: 100%;
}
.search-input .inputs.reversed label{
    display: inline-block;
    width: auto !important;
}
.search-input {
    margin: 0 auto 50px;
    max-width: 600px;
    display: none;
}
.search-page .page-title {
  display: none;
}
.search-page .form-fields {
    border: 2px solid #eee;
    padding: 30px 15px;
}
.search-input input + label {
	display: inline;
	margin: 0 0 0 5px !important;
}
.basic-search {
	margin: 0 0 20px;
}
.advanced-search .price-range {
	display: inline-block;
}
.advanced-search .price-range input {
	width: 80px !important;
	margin: 3px 5px;
}
.search-input .button-1 {
    width: 390px;
    max-width: 100%;
    border: medium none;
    padding: 14px 40px;
	background-color: var(--theme-primary);
    font-size: 14px;
    font-weight: bold;
    color: var(--white)fff;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.search-input .button-1:hover {
    opacity: 0.9;
}
.search-input .warning,
.search-results .result {
	display: block;
	margin: 0 0 0;
	font-weight: normal;
	color: #c00;
}
.search-results {
	margin: 0 0 0;
    text-align: center;
}

.sitemap-page {
    margin: 0 0 120px;
}
.sitemap-page .page-title {
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}
.sitemap-page .entity {
	margin: 40px 0;
}
.sitemap-page .entity-title {
	margin: 0 0 10px;
}
.sitemap-page .entity-title h2 {
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
}
.sitemap-page .entity-title h2:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    margin: 10px auto 0;
    background: var(--theme-primary);
}
.sitemap-page .entity-body {
	line-height: 24px;
}
.sitemap-page li {
	display: inline-block;
	margin: 5px 10px;
}
.sitemap-page a {
	display: block;
}
.sitemap-page a:hover {
    color: var(--theme-primary);
}
.sitemap-page a:empty {
	display: none;
}


/********** BLOG & NEWS **********/



.block .year {
    border: none !important;
}
.block .year strong {
	display: block;
    border-bottom: 1px solid #eee;
    padding: 9px 10px 9px 20px;
	cursor: default;
}
.block .year .month {
    border-bottom: 1px solid #eee;
}
.block .year:last-child .month {
    border: none;
}
.html-blogpost-page .side-2,
.html-blog-page .side-2{display: none;}
.blogpost-page .pager,
.blog-page .pager{padding-top: 2rem;}

.news-pages-body .page-title,
.blog-page .page-title{
    position: relative;
    z-index: 1;
    padding-block: 1.5rem;
    min-height: 385px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2.5rem;
}
.news-pages-body .page-title::before,
.blog-page .page-title::before{
    position: absolute;
    inset: 0 -9999px;
    z-index: -1;
    background-color: #e9eae9;
    content: '';
}
.blogpost-page .page-title::after,
.news-pages-body .page-title::after,
.blog-page .page-title::after{
    display: none;
}
.news-pages-body .page-title h1,
.blog-page .page-title h1 {
    text-align: center;
    font-size: 60px;
    line-height: 1;
    text-transform: capitalize;
}
.news-pages-body .page-title h1 strong,
.blog-page .page-title h1 strong {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: normal;
}
.news-pages-body .page-title h1 strong img,
.blog-page .page-title h1 strong img{
    max-height: 120px;
}
.blogpost-page .page-title h1{
    text-align: left;
    font-size: 36px;
    line-height: 1.1;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 0;
}
.blogpost-page .return-customer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}
.blogpost-page .return-button {
    font-size: 20px;
    color: var(--theme-primary);
}
.blogpost-page .return-button:hover {
    color: var(--black);
}
.blogpost-page .new-comment textarea{margin-bottom: 40px;}
.blog-page .post,
.news-items .news-item {
	position: relative;
	margin: 0 0 60px;
}
.post-title,
.news-title {
	display: inline-block;
	margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: bold;
	font-size: 16px;
}

.post-title:after,
.news-title:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    margin: 10px auto 0;
    background: var(--theme-primary);
}
.post-date,
.news-date {
	display: block;
    font-weight: bold;
}
.post-head,
.news-head {
    margin: 0 0 12px;
}
.page.blog-page,
.page.news-list-page {
    text-align: center;
}


.post-body,
.news-body {
	line-height: 24px;
}
.related-posts-list{

}
.related-posts-list label{
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: left;
}
.blog-page .tags,
.blogpost-page .tags {
    display: inline-block;
	margin: 15px 0 0;
	overflow: hidden;
}
.blog-page .tags label,
.blogpost-page .tags label {
	display: inline-block;
    font-size: 13px;
}
.blog-page .tags ul,
.blogpost-page .tags ul {
	display: inline-block;
    font-size: 0;
}
.blog-page .tags li,
.blogpost-page .tags li {
	display: inline-block;
	font-size: 13px;
    color: var(--theme-primary);
}
.blog-page .tags li:hover,
.blogpost-page .tags li:hover {
    text-decoration: underline;
}
.blog-page .tags li.separator,
.blogpost-page .tags li.separator {
	margin: 0 5px 0 3px;
}
.blog-page .tags a,
.blogpost-page .tags a {
	display: inline-block;
	line-height: 24px;
}
.blog-page .tags a:hover,
.blogpost-page .tags a:hover {
    text-decoration: underline;
}

.blog-posts .buttons,
.news-items .buttons {
    margin: 15px 0 0;
}
.blog-posts .read-comments {
    display: block;
	margin: 10px 0 20px;
    font-size: 13px;
    color: var(--theme-primary);
}
.blog-posts .read-comments:hover {
    text-decoration: underline;
}
.blog-posts .read-more,
.news-items .read-more {
	display: inline-block;
    min-width: 150px;
    background-color: var(--theme-primary);
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.blog-posts .read-more:hover,
.news-items .read-more:hover {
    opacity: 0.9;
}

.new-comment {
	margin: 60px 0 70px;
}
.new-comment form {
    border: 2px solid #eee;
    padding: 30px 15px;
}
.new-comment .title,
.comment-list .title {
	margin: 0 0 15px;
    font-size: 16px;
}
.new-comment .title strong:after,
.comment-list .title strong:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    margin: 10px auto 0;
    background: var(--theme-primary);
}
.new-comment .notifications {
	margin: 0 0 10px;
}
.new-comment .result {
	color: #690;
}
.new-comment .form-fields {
	margin: 0 0 15px;
}
.new-comment .inputs label {
	display: none;
}
.new-comment textarea {
    width: 350px;
	max-width: 100%;
}
.new-comment .captcha-box {
    margin: 0 0 40px;
}
.new-comment .buttons {
    position: relative;
    margin: -22px 0 0;
}
.new-comment .button-1 {
	display: inline-block;
    width: 350px;
    max-width: 100%;
    border: none;
    background-color: var(--theme-primary);
    padding: 14px 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.new-comment .button-1:hover {
    opacity: 0.9;
}

.comment-list .title {
    color: #444;
    text-transform: uppercase;
}

.blog-comment,
.news-comment {
	margin: 0 0 60px;
}
.blog-comment:after,
.news-comment:after {
	content: "";
	display: block;
	clear: both;
}
.comment-info {
    display: inline-block;
    width: auto;
    margin: 0 0 20px;
    border: 2px solid #eee;
    padding: 20px 25px;
}
.comment-info .username {
	display: block;
	padding: 0 0 10px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--theme-primary);
}
.comment-info .avatar {
	position: relative;
	width: 120px;
	height: 120px;
	overflow: hidden;
}
.comment-info .avatar img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.comment-content > * {
	margin: 0 0 10px;
}
.comment-content .comment-title {
    margin: 0 0 25px;
    text-transform: uppercase;
    color: #444;
}
.comment-time span {
    font-weight: bold;
}
.comment-body {
	line-height: 20px;
}

.page.news-item-page {
    text-align: center;
}
.news-item-page .inputs:first-child label {
	display: block;
}

.news-list-homepage {
	margin: 0 0 60px;
}
.news-list-homepage .title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    color: #444;
}
.news-list-homepage .news-title {
    text-transform: none;
}
.news-list-homepage .news-title:after {
    display: none;
}
.news-list-homepage .view-all {
    text-align: center;
}
.news-list-homepage .view-all a {
	display: inline-block;
    font-weight: bold;
    color: var(--theme-primary);
}
.news-list-homepage .view-all a:hover {
    text-decoration: underline;
}
.news-list-homepage .news-item .news-title {
    font-size: 14px;
}

.blog-page .page-title h1 strong {
    text-indent: -999999px;
    display: block;
    background: url(/Themes/Mattresses/Content/img/header-blog.png) no-repeat center center;
    background-size: 50% auto;
    width: 1400px;
    height: 120px;
    position: relative;
    top: 10px;
}


/********** FORUM & PROFILE **********/


.forums-main-page,
.forum-group-page,
.forum-page,
.forum-topic-page,
.forum-edit-page,
.forum-search-page,
.active-discussions-page,
.move-topic-page,
.profile-page,
.private-messages {
    margin: 0 0 180px;
}
.forums-main-page .topic-block {
    margin: 0 0 5px;
}
.forums-main-page .topic-block-body {
    line-height: 24px;
}
.forums-header {
	margin: 0 0 20px;
}
.forums-header:after {
	content: "";
	display: block;
	clear: both;
}
.current-time {
    margin: 0 0 30px;
    font-weight: bold;
}
.forum-search-box {
    position: static !important;
    float: none !important;
    margin: 0 0 50px;
    border: 2px solid #eee;
    padding: 30px 20px 20px;
}
.forum-search-box form {

}
.forum-search-box .basic {
    max-width:390px;
	overflow: hidden;
	margin: 0 auto 10px;
}
.forum-search-box .basic .search-box-text {
    width: 390px;
    max-width: 100%;
    height: 38px;
    border-width: 2px 2px 0;
    text-align: center;
    font-size: 14px;
}
.forum-search-box .basic .search-box-button {
    width: 390px;
    max-width: 100%;
    border: none;
    padding: 10px 40px;
    background-color: var(--theme-primary);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.forum-search-box .basic .search-box-button:hover {
    opacity: 0.9;
}
.forum-search-box .advanced a {
    padding-left: 20px;
    background: url('../img/forum-search-button.png') no-repeat left center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    color: var(--theme-primary);

}
.forum-search-box-text {
	float: left;
	width: 220px !important;
}
.forum-search-box-button {
	float: left;
	width: 36px;
	height: 36px;
	border: none;
	background: #ccc url('../img/search-button.png') center no-repeat;
	font-size: 0;
}
.forum-search-page .advanced-search {
	margin: 15px 0 0;
}
.forum-search-page .inputs.reversed > * {
    margin: 0 3px;
}
.forum-search-page .search-error {
    margin: 0 0 30px;
	text-align: center;
    font-size: 13px;
	color: #de524e;
}
.forum-search-page .search-results {
	margin: 0 0 15px;
}

/* forum group */

.forum-table td{
    font-size: 13px;
}
.forums-table-section {
	margin: 0 0 30px;
}
.forums-table-section.active-discussions {
    position: relative;
}
.forums-table-section a {
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 14px;
}
.forums-table-section a:hover {
    color: var(--theme-primary);
}
.forums-table-section-title {
	margin: 0 0 20px;
	overflow: hidden;
    text-transform: uppercase;
}
.forums-table-section-title > a,
.forums-table-section-title strong {
	font-size: 16px;
	font-weight: bold;
    color: #444;
}
.forums-table-section-title > a:hover {
    color: var(--theme-primary);
}
/*.forums-table-section-title > a:hover:after {
    background-color: #ddd;
}*/
.forums-table-section-title > a:after,
.forums-table-section-title strong:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    margin: 10px auto 0;
    background-color: var(--theme-primary);
}
.forums-table-section-title strong:after {
    background-color: var(--theme-primary);
}
.forums-table-section .view-all {
    margin: -30px 0 0;
}
.forums-table-section .view-all a {
    color: var(--theme-primary);
}
.forums-table-section .view-all a:hover {
    text-decoration: underline;
}

.forums-table-section .image div {
	width: 31px;
	height: 25px;
	margin: auto;
	background: url('../img/folder1.png') center no-repeat;
}
.forums-table-section .image div.sticky {
	background: url('../img/folder2.png') center no-repeat;
}
.forums-table-section .image div.announcement {
	background: url('../img/folder3.png') center no-repeat;
}

.forums-table-section .latest-post {
	white-space: nowrap;
}
.forums-table-section .latest-post .origin a,
.forums-table-section .latest-post .author a,
.forums-table-section .topic-details .topic-starter a {
    font-size: 13px;
    color: var(--theme-primary);
}

/* forum-page, topic-page */

.forum-page .forum-info {
	margin: 0 0 20px;
}
.forum-page .forum-name,
.forum-topic-page .topic-name {
}
.forum-page .forum-name h1,
.forum-topic-page .topic-name h1 {
    margin: 0 0 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    color: #444;
}
.forum-page .forum-description {
    margin: 0 0 50px;
}
.forum-actions,
.topic-actions {
    display: inline-block;
	margin: 0 0 25px;
	font-size: 0;
}
.forum-actions .actions a,
.topic-actions .actions a {
	display: inline-block;
	margin: 0 -1px;
    border: 2px solid #eee;
    padding: 10px 20px 10px 40px;
    background-image: none;
    background-color: #f9f9f9 !important;
    text-transform: uppercase;
    font-weight: bold;
	font-size: 14px;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.forum-actions .actions a,
.topic-actions .actions a {
    margin-bottom: -2px !important;
}
.forum-actions .actions a:last-of-type,
.topic-actions .actions a:last-of-type {
    margin: 0 0 0 -1px;
}
.forum-actions .actions a:hover,
.topic-actions .actions a:hover {
    background-color: #eee !important;
}
.forum-actions .actions .new-topic {
	background: url('../img/forum_icon6.png') left center no-repeat;
}
.forum-actions .actions .watch-forum {
	background: url('../img/forum_icon5.png') left center no-repeat;
}
.topic-actions .actions .reply-topic-button {
	background: url('../img/forum_icon4.png') left center no-repeat;
}
.topic-actions .actions .watch-topic-button {
	background: url('../img/forum_icon5.png') left center no-repeat;
}
.topic-actions .actions .move-topic-button {
	background: url('../img/forum_icon3.png') left center no-repeat;
}
.topic-actions .actions .edit-topic-button {
	background: url('../img/forum_icon1.png') left center no-repeat;
}
.topic-actions .actions .delete-topic-button {
	background: url('../img/forum_icon2.png') left center no-repeat;
}
.topic-actions.lower .actions {
	display: none;
}
.pager.upper {
	display: none;
	margin: 0;
}

/* topic post */

.topic-post {
	margin: 0 0 20px;
}
.topic-post:after {
	content: "";
	display: block;
	clear: both;
}
.topic-post .post-info {
	margin: 30px 0;
    padding: 5px 0 20px;
}
.topic-post .user-info {
	width: 150px;
	margin: 0 auto 10px
}
.topic-post .username {
	display: block;
	padding: 10px 0;
	font-weight: bold;
    text-transform: uppercase;
    color: var(--theme-primary);
}
.topic-post .avatar,
.profile-info-box .avatar {
	position: relative;
	width: 150px;
	height: 150px;
    margin: 0 auto;
	/*border: 2px solid #eee;*/
	overflow: hidden;
}
.topic-post .avatar img,
.profile-info-box .avatar img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.topic-post .user-stats {
	margin: 0 0 15px;
    font-size: 13px;
}
.topic-post .user-stats li {
	display: inline-block;
	margin: 0 10px;
}
.topic-post .user-stats span,
.profile-info-box .profile-stats span {
	margin: 0 0 0 3px;
    font-weight: bold;
}
.topic-post .pm-button,
.profile-info-box .pm-button {
	/*display: inline-block;
    width: 100px;
    border: 2px solid #eee;
    padding: 6px 0;
    background-color: #f9f9f9;
	font-weight: bold;
	text-transform: uppercase;
    color: var(--theme-primary);*/
    display: block;
    margin: 0 auto;
    width: 150px;
    padding: 10px 30px;
    background-color: var(--theme-primary);
    font-weight: bold;
	text-transform: uppercase;
    color: var(--white);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.topic-post .pm-button:hover,
.profile-info-box .pm-button:hover {
    opacity: 0.9;
}

.topic-post .post-time {
	margin: 0 0 15px;
	padding: 10px 0;
}
.topic-post .post-time span {
	font-weight: bold;
}
.topic-post .post-actions {
	margin: 0 0 30px;
	font-size: 0;
}
.topic-post .post-actions > div {
	display: inline-block;
    margin: 0 0 -2px;
}
.topic-post .post-actions a {
	display: inline-block;
	margin: 0 -1px;
	font-size: 14px; /*reset zeroing*/
}
.topic-post .post-actions .quote-post-button {
    border: 2px solid #eee;
	background: #f9f9f9 url('../img/quote.png') left center no-repeat;
	padding: 15px 20px 15px 30px;
    text-transform: uppercase;
	font-weight: bold;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.topic-post .post-actions .quote-post-button:hover {
    background-color: #eee;
}
.topic-post .post-actions .post-link-button {
    margin: 0 -1px;
    border: 2px solid #eee;
    padding: 15px 20px;
	font-weight: bold;
}
.topic-post .post-actions .edit-post-button,
.topic-post .post-actions .delete-post-button {
    margin: 0 -1px;
    border: 2px solid #eee;
    padding: 15px;
    font-weight: bold;
}
.topic-post .post-actions a:hover {
    color: var(--theme-primary);
}
.topic-post .post-body {
	margin: 0 0 15px;
    /*topic post-body also gets style from blog post-body*/
}

.topic-post .user-posted-image,
.latest-posts .user-posted-image {
    max-width: 100%;
    height: auto;
}
.topic-post .quote,
.latest-posts .quote {
	margin: 10px;
    border: 2px solid #eee;
	padding: 10px;
}
.topic-post .signature {
	border-top: 2px solid #eee;
	padding: 20px;
    font-style: italic;
}
.topic-post .vote {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.topic-post .vote.up:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 15px 10px;
    border-color: transparent transparent #eee transparent;
}
.topic-post .vote.down:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #eee transparent transparent transparent;
}

.topic-post .post-vote {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    font-size: 0;
    line-height: 0;
}
.vote-count-post {
    width: 40px;
    border: 2px solid #eee;
    padding: 5px;
    font-size: 16px;
    line-height: 24px;
}

/* forum edit & send message */

.forum-edit-page .page-body,
.private-message-send-page .page-body {
}
.forum-edit-page strong,
.private-message-send-page a {
    text-transform: uppercase;
	font-size: 16px;
    vertical-align: middle;
}
.forum-edit-page .toolbar,
.private-message-send-page .toolbar {
    margin: 0 0 10px;
}
.forum-edit-page .buttons,
.private-message-send-page .buttons,
.private-messages-page .buttons {
	margin: 15px 0 0;
	text-align: center;
}
.forum-edit-page .buttons,
.move-topic-page .buttons,
.private-messages .buttons {
    font-size: 0;
}
.forum-edit-page .buttons button,
.move-topic-page .buttons button,
.private-messages .buttons button {
    display: block;
    margin: 10px auto;
	min-width: 250px;
	border: 2px solid #eee;
	padding: 10px 20px;
    background-color: #f9f9f9;
    font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
    color: var(--theme-primary);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.forum-edit-page .buttons button:hover,
.move-topic-page .buttons button:hover,
.private-messages .buttons button:hover {
    background-color: #eee;
}
.forum-edit-page .buttons button.button-1,
.move-topic-page .buttons button.button-1,
.private-messages .buttons button.button-1 {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: var(--white);
}
.forum-edit-page .buttons button.button-1:hover,
.move-topic-page .buttons button.button-1:hover,
.private-messages .buttons button.button-1:hover {
    opacity: 0.9;
}
.forum-edit-page .inputs span {
	vertical-align: middle;
	margin-left: 5px;
	font-size: 12px; /*reset zeroing*/
}

.private-message-send-page .message label {
	display: none;
}

/* inbox & view message */

.private-messages-page .ui-tabs .ui-tabs-panel {
    border: none;
    padding: 0;
}
.private-messages-page td.date {
	width: 15%;
	white-space: nowrap;
}
.private-messages-page td a {
    font-weight: normal;
}
.private-messages-page td a.pm-unread {
	font-weight: bold;
    color: var(--theme-primary);
}
.private-messages-page td.date {
    color: #bbb;
}
.private-messages-page .to a:hover,
.private-messages-page .from a:hover,
.private-messages-page .subject a:hover {
    color: var(--theme-primary);
}
.private-messages-page .pager {
    margin: 0 0 30px;
}
.private-message-view-page .view-message {
    margin: 0 0 30px;
}
.private-message-view-page .view-message ul li {
    display: inline-block;
}
.private-message-view-page .view-message ul li:last-child span {
    display: none;
}
.private-message-view-page .view-message div {
	display: block;
    margin: 20px 0 0;
    border: 2px solid #eee;
    padding: 15px;
}
.private-message-view-page span {
	font-weight: bold;
}
.private-message-view-page span {
	margin: 0 10px 0 0;
	vertical-align: middle;
}
.private-message-view-page span:after {
	content: "|";
	margin: 0 0 0 10px;
}
.private-message-view-page .message {
	display: block !important;
	margin: 15px 0;
	border: 1px solid #ccc;
	padding: 15px;
}
.private-message-view-page .message span:after {
	display: none;
}
.private-message-view-page .options {
	display: block !important;
	overflow: hidden;
}
.private-message-view-page .buttons {
    display: inline-block;
}
.private-message-view-page .back-pm-button {
    margin: 0 0 0 -2px;
}

/* profile page  */

.profile-info-box {
	overflow: hidden;
}
.profile-info-box .avatar {
	margin: 0 auto 20px;
}
.profile-info-box .profile-stats {
	margin: 0 0 30px;
}
.profile-info-box .title {
	margin: 0 0 5px;
    text-transform: uppercase;
	font-size: 14px;
    color: #444;
}
.profile-info-box .stats {
    font-size: 13px;
}
.profile-info-box .stats li {
    margin: 0 0 5px;
}
.profile-page .topic {
    margin: 0 -15px 20px;
    border-bottom: 2px solid #eee;
    padding: 0 15px 15px;
}
.profile-page .topic p {
    padding: 0 10px;
}
.profile-page .topic-title {
    margin: -20px -15px 20px;
    border-bottom: 2px solid #eee;
    background-color: #f9f9f9;
    padding: 15px 5px;
}
.profile-page .topic:first-child .topic-title {
    margin-top: -15px;
}
.profile-page .topic-title a {
	vertical-align: middle;
	font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--theme-primary);
}
.profile-page .topic-title a:hover {
    color: var(--theme-primary);
}
.profile-page .topic-data span {
	font-weight: bold;
}
/*Home Contact Info Seciton Start*/
.home-contact-info{
    background: #e9eae9 url(../img/home-contact-info.png) repeat center center;
    background-size: 25% auto;
    text-align: center;
    clear: both;
}
.home-contact-info .icon-box{
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;

}
.home-contact-info .icon-box img{max-height: 50px;}
.home-contact-info .container{
    padding-block:50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-info-col{
    font-size: 20px;
    line-height: 1.2;
}
.contact-info-col .holder{max-width: 310px;}
.home-contact-info h3{
    font-size: 20px;
    line-height: 1.4;
    font-family: var(--font-avenirmedium);
    color: var(--theme-primary);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    -webkit-text-stroke: 0.5px rgba(0,0,0,1);
    letter-spacing: -.25px;
}
.home-contact-info h3:before{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    content: '';
    width: 50px;
    height: 5px;
    background-color: #84b79b;
    border-radius: 50px;
}
.home-contact-info p{margin-bottom: 1.7rem;}
.change-location,
.btn-default{
    display: inline-block;
    vertical-align: top;
    padding: 12px 25px;
    background-color: var(--theme-scandory);
    color: var(--white);
    font-size: 16px;
    line-height: 1.4;
    transition: all .3s ease;
    text-transform: uppercase;
    border: 0;
    text-align: center;
    font-family: var(--font-avenirmedium);
    text-decoration: none;
}
.change-location:hover,
.btn-default:hover{
    background-color:var(--theme-primary);
    color: var(--white);
    text-decoration: none !important;
}
.btn-default.blue{
    background-color: #006cd1;
    color: var(--white);
    min-width: 200px;
}
.btn-default.blue:hover{
    background-color: var(--theme-primary);
    color: var(--white);
}
.btn-default.finance{
    color: var(--white) !important;
    font-size: 16px;
    padding-inline: 35px;
}
.change-location{
    width: 100%;
    font-family: var(--font-avenirmedium);
}
/*Home Contact Info Seciton End*/

/* Shop Online Seciton Start */
.shop-online-section{
    position: relative;
    background-color: #e9eae9;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}
.shop-online-section.purple{
    flex-direction: row;
    background-color: #492095;
}
.shop-online-section.nectar{
    flex-direction: row;
    background-color: #001689;
}
.shop-online-bg{
    width: 50%;
    background-size:cover;
    background-position:center;
    background-repeat: no-repeat;
}
.shop-online-content{
    position: relative;
    width: 50%;
    padding: 70px 25px;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 20px;
    line-height: 1.4;
    text-align: start;
}
.shop-online-content::before{
    content: '';
    left: 100%;
    top: -5px;
    bottom: -5px;
    width: 210px;
    position: absolute;
    background-color: #e9eae9;
    -moz-transform: skew(17deg,0deg);
    -webkit-transform: skew(17deg,0deg);
    -o-transform: skew(17deg,0deg);
    -ms-transform: skew(17deg,0deg);
    transform: skew(17deg,0deg);
    margin-left: -160px;
}
.shop-online-section.purple .shop-online-content::before{
    background-color: #492095;
    -moz-transform: skew(-17deg,0deg);
    -webkit-transform: skew(-17deg,0deg);
    -o-transform: skew(-17deg,0deg);
    -ms-transform: skew(-17deg,0deg);
    transform: skew(-17deg,0deg);
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: -160px;
}
.shop-online-section.nectar .shop-online-content::before{
    background-color: #001689;
    -moz-transform: skew(-17deg,0deg);
    -webkit-transform: skew(-17deg,0deg);
    -o-transform: skew(-17deg,0deg);
    -ms-transform: skew(-17deg,0deg);
    transform: skew(-17deg,0deg);
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: -160px;
}
.shop-online-section.mattress-survey .shop-online-content::before{
    background-color: #0083DB;
    -moz-transform: skew(-17deg,0deg);
    -webkit-transform: skew(-17deg,0deg);
    -o-transform: skew(-17deg,0deg);
    -ms-transform: skew(-17deg,0deg);
    transform: skew(-17deg,0deg);
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: -160px;
}
.shop-online-section.purple .shop-online-content, .shop-online-section.nectar .shop-online-content {
    color: var(--white);
}
.shop-online-content .frame{
    padding-inline: 75px 30px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.shop-online-content h2{
    margin-bottom: 15px;
    font-size: 30px;
}
.shop-online-content p{margin-bottom: 20px;}
.shop-online-section.purple .shop-online-content p, .shop-online-section.nectar .shop-online-content p {max-width: 75%;}
.shop-online-content .holder{
    display: flex;
    align-items: center;
}
.shop-online-section .btn-default{margin-right: 30px;}
.shop-online-section.purple .btn-default{
    background-color: var(--white);
    color: #492095;
}
.shop-online-section.nectar .btn-default{
    background-color: var(--white);
    color: #001689;
}
.shop-online-section.purple .btn-default:hover, .shop-online-section.nectar .btn-default:hover {
    background-color: var(--theme-primary);
    color: var(--white);
}
.shop-online-section.purple .shop-online-content, .shop-online-section.nectar .shop-online-content, .shop-online-section.mattress-survey .shop-online-content{justify-content: start;}
.shop-online-section.purple .shop-online-content .frame, .shop-online-section.nectar .shop-online-content .frame, .shop-online-section.mattress-survey .shop-online-content .frame{
    padding-inline: 30px 100px;
}
.landing-page-topic .shop-online-section.free-delivery{margin-top: 2rem;}
.landing-page-topic .shop-online-section{
    background-color: var(--black);
    color: var(--white);
}
.landing-page-topic .shop-online-content h2{color: var(--white);}
.landing-page-topic .shop-online-section .btn-default{background-color: var(--white);}
.landing-page-topic .shop-online-section .btn-default:hover{
    background-color: var(--theme-primary);
    color: var(--white);
}
.landing-page-topic .shop-online-content::before{background-color: var(--black);}
.landing-page-topic .shop-online-section.purple.love-mattress .shop-online-content::before,
.landing-page-topic .shop-online-section.love-mattress{
    background-color: #cc506e;
}
.landing-page-topic .shop-online-section.purple.love-mattress .btn-default{
    color: #cc506e;
    background-color: var(--white);
}
.landing-page-topic .shop-online-section.love-mattress .btn-default:hover{
    background-color: var(--theme-primary);
    color: var(--white);
}
.landing-page-topic .shop-online-section.mattress-survey {
  flex-direction: row;
}
.landing-page-topic .shop-online-section.mattress-survey .shop-online-content::before,
.landing-page-topic .shop-online-section.mattress-survey{
    background-color: #0083db;
}
.landing-page-topic .shop-online-section.mattress-survey .btn-default{
    color: #0083db;
    background-color: var(--white);
}
.landing-page-topic .shop-online-section.mattress-survey .btn-default:hover{
    background-color: var(--black)000;
    color: var(--white);
}
.landing-page-topic .home-page-category-grid{
    max-width: 2000px;
    margin-inline: auto !important;
}
.category-page.manufacturer-page{padding-top: 0;}
.apply-logo-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.apply-logo-nav img {
    max-height: 30px;
}
/* Shop Online Seciton End */

.homepage-top{
    /* display: grid;
    grid-template-columns: 67% 31.5%;
    gap: 1.5%;
    align-items: stretch;
    margin-bottom: 30px; */
}
.homepage-top:after{display: none;}
.home-slider-aside{
    display: flex;
    flex-direction: column;
}
.home-slider-aside .box + .box{margin-top: 5%;}
.home-slider-aside img{width: 100%;}
.generic-slider-section,
.more-choose-section,
.home-page-product-grid,
.more-choices-section{
    padding-left: 100px;
    margin-bottom: 3rem;
}
.generic-slider-section.furniture-slider-Section {margin-bottom: 0;}
.more-choices-section.manufacturer{padding-left: 100px;}
.more-choose-section h2,
.more-choices-section h2{
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: left;
}
.grid.grid-promo-list{display: none;}
.count-items{
    width: 110px;
    height: 110px;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 100%;
    background-color: var(--theme-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-wrap: wrap;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--white);
    text-align: center;
    line-height: 1.1;
}
.count-items strong{
    font-size: 34px;
    font-family: var(--font-avenirmedium);
    -webkit-text-stroke: 0.5px rgba(0,0,0,1);
    letter-spacing: -2px;
    font-weight: normal;
}
.chat-support-section{
    display: grid;
    grid-template-columns: 1fr 82px;
    gap: 20px;
    align-items: center;
    color: #7e827e;
    font-size: 18px;
    line-height: 1.6;
}
.overview-holder .chat-support-section{
  padding-top: 20px;
}
.chat-support-section p{margin-bottom: 0;}
.chat-support-section p a .fas.fa-arrow-right {
    background-image:none;
}
.chat-support-section .chat-image{
    position: relative;
}
.chat-support-section .chat-image a > img{
    border-radius: 100%;
    width: 82px;
    height: 82px;
}
.chat-support-section .chat-content p a i{
    display: inline-block;
    vertical-align: middle;
    margin: -1px 0 0 3px;
}
.ui-autocomplete .chat-support-section {
    grid-template-columns: 60px 1fr;
    gap: 10px;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.3;
}
.ui-autocomplete .chat-support-section .chat-image a{padding: 0;}
.ui-autocomplete .chat-support-section .chat-image a>img {
    width: 60px;
    height: 60px;
}
.ui-autocomplete .chat-support-section .chat-image a img{
    display: block;
    margin: 0;
}
.ui-autocomplete .chat-support-section .chat-content {order: 2;}
.ui-autocomplete .chat-support-section .chat-image {order: 1;}
.ui-autocomplete .chat-support-section p a{
    display: inline;
    padding: 0;
    font-size: inherit;
    text-decoration: underline;
    color: inherit;
}
.availability-status{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 25px;
}
.availability-status img{max-height: 25px;}
/* .related-products-grid{width: 63%;} */
.contact-form{
    max-width: 800px;
    margin: 0 auto;
}
.contact-page .contact-form .inputs label{
    width: 100%;
    text-align: left;
    display: block;
    margin:0 0 10px;
}
.contact-form .inputs input[type="text"],
.contact-form .inputs input[type="password"],
.contact-form .inputs input[type="email"],
.contact-form .inputs input[type="tel"],
.contact-form .inputs select,
.contact-form .inputs textarea{
    width: 100%;
    height: 50px;
}
.contact-form .fieldset,
.contact-form .section {
    margin-bottom:30px;
}
.contact-form .form-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-form .form-row .inputs{width: 48.5%;}
.ui-dialog-content .shopping-cart-page .h2,
.ui-dialog-content .shopping-cart-page h2 {
    font-size: 1.6rem;
}
.ui-dialog-content .shopping-cart-page .LoggedIn-Label {margin-bottom: 6px;}
.ui-dialog-content .shopping-cart-page .button-2{
    margin-top: 1rem;
    font-family: var(--font-avenirmedium);
}
.ui-dialog-content .shopping-cart-page .Alternate-Email-Label{
    font-weight: 400;
    float: none;
    width: 100%;
    text-align: center;
}
.ui-dialog-content .shopping-cart-page .Alternate-Email-Entry{
    float: none;
    width: 100%;
}
.account-page .page-title h1{
    text-align: start;
}
.html-account-page .block .title{
    font-size: 1.5rem;
    padding: 1rem;
    text-transform: capitalize;
}
.html-account-page .block .list a {padding-block: 12px;}
.online-bill-pay .verification-form {margin-bottom: 30px;}
#giftcards .no-data{margin-bottom: 1rem;}
.modal-pickup-container {
    margin-top: 1% !important;
}
.pickup-locations-zipcode-entry {
    background-color: #daebe2;
    color: var(--theme-primary);
}
.password-recovery-page {
    text-align: center;
}
.password-recovery-page .inputs label {
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
}
.password-recovery-page .inputs {
    text-align: center;
    white-space: normal;
}
.password-recovery-page .fieldset,
.password-recovery-page .section {
    margin-bottom:30px;
}
.password-recovery-page{padding-block: 20px;}


.cart-form-section{
    display: grid;
    grid-template-columns: 69% 28%;
    gap: 3%;
    padding-top: 1rem;
}
.cart-form-section .cart-options .checkout-attributes,
.cart-form-section .cart-collaterals .deals>div,
.shopping-cart-page .cart-form-section  .totals,
.cart-form-section .cart-collaterals {
    width: 100%;
    float: none;
    max-width: 100%;
    margin-inline:0;
}
.cart-holder .cart-item-row{
    position: relative;
    display: grid;
    grid-template-columns: 25% 1fr;
    margin-bottom: 1.5rem;
    gap: 2%;
}
.cart-holder .cart-item-row .cart-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:25px;
}
.cart-holder .item-count{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    min-width: 22px;
    min-height: 22px;
    border-radius: 100%;
    /* background: url(../img/count-bg.png) no-repeat;
    background-size: contain; */
    background-color: var(--theme-scandory);
    padding: 2px;
    text-indent: 0;
    text-align: center;
    font-size: 12px;
    color: var(--white);
    line-height: 18px;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}
.cart-holder .cart-item-row .remove-from-cart{
    position: relative;
    z-index: 2;
}
.cart-holder .remove-from-cart input {
    opacity: 0;
    width: 0;
    padding: 0;
    position: absolute;
}
.cart-holder .cart-picture{position: relative;}
.cart-holder .cart-content .sku strong{font-weight: normal;}
.cart-holder .product-picture img {
    max-width: 100%;
}
.cart.cart-holder{box-shadow: none;}
.cart .unit-price {
    padding-top: 10px;
    font-size: 18px;
}
.cart.cart-holder .product {
    text-align: left;
    margin-bottom: 1rem;
}
.cart-holder .product-title {margin-bottom: 5px;}
.cart-holder .product-title .product-name{
    font-size: 40px;
    line-height: 1.1;
    font-family: var(--font-avenirblack);
}
.cart-holder .cart-bottom-info{
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 210px;
    justify-content: space-between;
}
.cart-holder .product-subtotal{
    font-family: var(--font-avenirmedium);
    color: var(--theme-primary);
    font-size: 32px;
}
.cart-holder .product-subtotal strong{
    font-size: 16px;
    color: var(--black);
}

.cart-left-colum{
    margin-bottom: 2rem;
    border: 1px solid var(--black);
    padding: 30px;
}
.cart-left-colum.salesperson{margin-top: 2rem;}
.cart-left-colum h3{
    font-size: 22px;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0 0 1rem;
    text-align: center;
    font-family: var(--font-avenirmedium);
}
.cart-left-colum .delivery-pickup {
    text-align: left;
    margin: 0;
    padding:0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}
.cart-left-colum .delivery-pickup .delivery-pickup-status-text {
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    padding-block: 0;
}
.cart-left-colum .delivery-pickup div button {
    padding: 0 !important;
    font-weight: normal !important;
    font-size: 18px !important;
    line-height: 36px !important;
    text-decoration: underline;
}
.cart-left-colum .delivery-pickup div button:hover{
    text-decoration: none;
    color: var(--theme-scandory);
}
.cart-left-colum .delivery-pickup div button:before {
    background-image: url(../img/home-contact-ico2.png);
    background-size: 28px !important;
    left: -13px;
}
.cart-footer .cart-left-colum  .total-info {
    padding: 0;
    border: 0;
    margin: 0 -30px 1.5rem;
    font-size: 19px;
}
.cart-footer .cart-left-colum  .addon-buttons {margin: 0;}
.cart-left-colum .cart-total .order-total{
    background-color: var(--gray2);
    padding-block:15px;
    font-size: 28px;
}
.cart-left-colum .cart-total .order-total td {
    background-color: var(--gray2);
    padding: 20px 30px;
}
.cart-left-colum .cart-total td.cart-total-right {
    text-align: center;
}
.cart-left-colum .cart-total td .remove-gift-card-button{
    margin: 0 5px 0 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 100%;
    background: url(../img/ribbon-cross-icon.png) no-repeat center !important;
    background-size: 20px !important;
    width: 20px;
    height: 20px;
}
.cart-left-colum .cart-total td {
    padding: 0 30px;
    border-bottom: none 0;
}
.cart-left-colum .cart-total tr:nth-last-child(2) td {
    padding-bottom: 20px;
}
.shopping-cart-page .checkout-buttons .button-1{
    border-radius: 0;
    width: 100%;
    margin-bottom: 0.5rem !important;
}

.cart-left-colum .cart-options .checkout-attributes {
    margin: 0;
    padding: 0;
    border: 0;
}
.cart-left-colum.salesperson .cart-options .checkout-attributes dt {
    display: none;
}
.cart-left-colum .cart-options .checkout-attributes dl{margin-bottom: 0;}
.cart-left-colum .cart-options .checkout-attributes dd {
    max-width: 100%;
    margin: 0;
}
.cart-collaterals .cart-left-colum {
    padding:30px !important;
    border: 1px solid var(--black) !important;
}
.cart-left-colum .cart-collaterals .coupon-code input[type="text"]{
    max-width: 100%;
    width: 100%;
}
.cart-left-colum .cart-collaterals .hint {width: 100%;}
.shopping-cart-page .cart-collaterals .cart-left-colum .button-2{
    width: 100%;
}
.special-box{
    padding-top: 15px;
    display: none;
}
.special-box p{
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding-inline: 22px;
}
.special-box span{
    font-size: 32px;
    font-weight: 600;
    color: var(--theme-primary);
    font-family: var(--font-avenirmedium);
    -webkit-text-stroke: 0.5px rgba(0,0,0,1);
    letter-spacing: -.25px;
}
.special-box strong{
    vertical-align: super;
    font-size: 15px;
}
.special-box b{
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-avenirmedium);
    position: relative;
    bottom: 1px;
    left: 2px;
}
.cart-collaterals .deals>.cupon-code-colum{
    padding: 0;
    border: 0;
    width: 100%;
}
.cupon-opener{
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
    color: var(--black);
    margin-top: 15px;
    display: inline-block;
    vertical-align: top;
}
.show-cupon .cupon-opener{display: none;}
.cupon-code-colum{display: none;}
.show-cupon .cupon-code-colum{display: block;}
.cupon-code-colum .hint{
    display: none;
}
.cart-collaterals .cupon-code-colum .coupon-code input[type="text"],
.cart-collaterals .cupon-code-colum .discount-coupon-code{
    width: 100%;
    max-width: 100%;
    background: #e9eae9;
    border: 1px solid #e9eae9;
    border-radius: 22px;
    padding-inline: 50px 190px;
    height: 49px;
    position: relative;
}
.cart-collaterals .cupon-code-colum:before{
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    top: 12px;
    left: 16px;
    background: url(../img/pr-sign.png) no-repeat;
    background-size: contain;
    z-index: 9;

}
.cart-collaterals .cupon-code-colum button{
    position: absolute;
    right: 1px;
    width: auto;
    border-bottom-right-radius: 22px;
    border-top-right-radius: 22px;
    background: black;
}
.shopping-cart-page .common-buttons .button-2,
    .shopping-cart-page .estimate-shipping-button {
    width: 24%;
    padding: 12px 28px;
}
.footer-2 .newsletter-email .newsletter-subscribe-button{
    margin-top: 0 !important;
}
body.view-ar .master-wrapper-content{z-index: 9999;}
.qr-modal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
    display: none;
}
body.view-ar .qr-modal {
    display: flex !important;
}
.qr-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.qr-modal-content {
    max-width: 600px;
    width: 100%;
    margin: auto;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    position: relative;
    z-index: 99;
}
.qr-modal-close{
    border-radius: 100%;
    background-color: var(--white);
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
}
.qr-modal-content h3{
    font-size: 26px;
}
.qr-code {
    max-width: 350px;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0,0,0, 0.15);
}

/*About Us Page Css Start*/
.html-about-page .center-1 {margin-bottom:30px;}

.hero-topic-section{
    position: relative;
    z-index: 1;
    background-color: #e9eae9;
}
.hero-topic-section::before,
.top-hero-section:after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: -9999px;
    left: -9999px;
    z-index: -1;
    background-color: #e9eae9;
}
.top-hero-section.warranty:after{background-color: #006cd1;}
.hero-container{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    gap: 20px;
    padding-inline:15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hero-topic-section .heading-holder{
    width: 42%;
    text-align: center;
    padding-block:2rem;
}
.hero-topic-section .hero-main-img {
    width: 46%;
    margin-block: -1.5% -4%;
}
.hero-topic-section .heading-holder h1{
    font-size: 4.5rem;
    line-height: 0.9;
}
.hero-topic-section h1 span{
    font-size: 0.7em;
    vertical-align: top;
}
.about-section{
    position: relative;
    padding-block: 20px 0;
    margin-bottom: 3rem;
}
.about-section .about-article:nth-child(even){
    flex-direction: row-reverse;
}
.about-section .about-article:nth-child(even) .about-content{
    max-width: 45%;
}
.about-article{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-block: 25px 5px;
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: start;
}
.about-content,
.about-img{max-width: 45%;}
.about-img img{
    border: 1px solid var(--gray);
    display: block;
}
.about-content h2{
    font-size: 1.8rem;
    line-height: 1.4;
}
.our-community .about-article{font-size: 22px;}
.our-community .about-content,
.our-community .about-img{
    width: 100%;
}
.our-community .about-img img {
    border: 0;
    border-radius: 0;
    margin: auto;
    max-height: 350px;
}
.about-content .holder{
    margin: 0 auto;
    /*max-width: 540px;*/
    padding-inline:10px;
}
/*About Us Page Css End*/

/*Warranty Page Css Start*/
.html-search-page  .master-wrapper-content,
.search-page-body  .master-wrapper-content,
.html-generic-page .master-wrapper-content,
.category-page-body .master-wrapper-content,
.html-track-delivery-page .master-wrapper-content,
.html-warranty-page .master-wrapper-content {
    max-width: 100%;
    padding-inline: 0;
}
.generic-topic-section{
    position: relative;
}
.top-hero-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    text-align: left;
}
.top-hero-section.mb-0{margin-bottom: 0;}
.top-hero-section.reverse-col{flex-direction: row-reverse;}
.hero-content{
    font-size: 24px;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 50%;
    line-height: 1.6;
}
.top-hero-section.warranty .hero-content{color: var(--white);}
.top-hero-section .hero-column .content-holder{
    padding: 3rem 20px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
}
.top-hero-section .hero-column h1{
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-avenirheavy);
    line-height: 1.1;
}
.top-hero-section .hero-column .tracker-top h1{color:var(--black) !important;}
.accidents-section p{margin-bottom: 0;}
.top-hero-section .hero-column p a{
    text-decoration: underline;
    color: var(--black);
    font-size: inherit;
}
.top-hero-section .hero-column p a:hover{
    color: var(--theme-primary);
}
.topic-page .hero-column a,
.topic-block .hero-column a{
    font-size: 14px;
    color: var(--black);
}
.topic-page .hero-column .small-text,
.topic-block .hero-column .small-text{
    font-size: 14px;
}
.topic-page .hero-column a:hover,
.topic-block .hero-column a:hover{
    color: var(--theme-primary);
    text-decoration: none;
}
.topic-page .warranty .hero-column a,
.topic-block .warranty .hero-column a{
    color: var(--white);
}
.top-hero-section .hero-column{
    width: 50%;
    position: relative;
}
.top-hero-section .hero-column small {
    font-size: .65em;
    display: block;
    padding-top: 0.7rem;
}
.top-hero-section .hero-column img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.protect-section{
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid var(--gray);
    padding: 4rem 5%;
    gap: 25px;
}
.protect-section + .protect-section{
    margin-top: 2rem;
}
.protect-section .protect-heading{
    text-transform: uppercase;
    width: 38%;
    margin-right: 10%;
    color: #006cd1;
    text-align: center;
}
.protect-section .protect-heading h2{
    font-size: 4.5rem;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.protect-heading span{
    color: #80bcff;
}
.protect-section .protect-text{
    width: 50%;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: left;
}
.protect-section .protect-text p + p{margin-top: 30px;}
/*Warranty Page Css End*/
.financing-content-holder{margin-bottom: 3rem;}

/*Track Delivery Page Css End*/
.track-delivery.top-hero-section,
.html-track-delivery-page .topic-page,
.html-track-delivery-page .center-1,
.topic-page.generic-topic-page,
.html-generic-page .center-1{
    margin-bottom: 0;
}
.html-topic-care .breadcrumb,
.html-topic-care .breadcrumb,
.html-track-delivery-page .breadcrumb{display: none;}
.track-delivery .tracker-top{
    background: none;
    height: auto;
    font-size: 22px;
    line-height: 1.6;
    color: var(--black);
    padding: 0;
    margin-bottom: 0;
}
.track-delivery.top-hero-section .hero-column h1{color: var(--black) !important;}
.track-delivery form{
    position: relative;
    margin-top: 1.5rem;
}
.top-hero-section.track-delivery .hero-column .content-holder {
    max-width: 640px;
}
.track-delivery form::before{
    font-family: "Font Awesome 7 Sharp";
    content: "\f48b";
    font-size: 22px;
    line-height: 1;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--black);
}
.track-delivery .tracker-top #tracker_number{
    width: 100%;
    border-radius: 0;
    padding-inline: 55px 168px;
    height: 60px;
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
}
.track-delivery .btn-wf-green{
    border-radius: 0;
    position: absolute;
    right: 0;
    top: 0;
    min-width: 160px;
    text-align: center;
    height: 60px;
    border: 0;
    font-weight: normal;
}
.track-delivery .btn-wf-green:hover{
    background-color: var(--black);
    color: var(--white) !important;
}
.same-day-title{
    display: flex;
    align-items: center;
    gap:10px;
}
.top-hero-section .hero-column .same-day-title img{
    max-height: 40px;
    max-width: 80px;
    object-fit: contain;
}
/*Track Delivery Page Css End*/

/*Customer Care Page Css Starts*/
.customer-care-info{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:2.5%;
    align-items: stretch;
    margin-block: 60px;
}
.topic-page .customer-info-buttons{color: var(--black);}
.topic-page .customer-info-buttons:hover{text-decoration: none; color: var(--theme-primary);}
.customer-info-buttons{
    background-color: #f7f7f7;
    color: var(--black);
    position: relative;
    padding: 18px 10px 18px 140px;
    text-align: center;
    font-size: 17px;
    line-height: 1.4;
    overflow: hidden;
    word-break: break-all;
    display: flex;
    justify-content: center;
    align-items: center;
}
.customer-info-buttons .iconbox{
    background-color: var(--theme-primary);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.customer-info-buttons .iconbox img {
  max-height: 50%;
}
.customer-info-buttons strong{
    display: block;
    font-size: 28px;
    font-weight: 400;
}
.customer-info-detail{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2%;
}
.customer-info-cols{
    border: 1px solid var(--gray);
    padding: 40px;
    width: 49%;
    margin-bottom: 2%;
    box-sizing: border-box;
    text-align: left;
}
.customer-info-cols .holder{
    max-width: 600px;
    margin-inline:auto;
    font-size: 26px;
    line-height: 1.4;
}

.customer-info-cols .holder img{
    max-height: 150px;
    margin: 0 auto 1.5rem;
    display: block;
}
.customer-info-cols .holder h3{justify-content: center;}
.customer-info-cols h3{
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 0;
    font-family: var(--font-avenirheavy);
}
.delivery-options .customer-info-cols h3{
    display: block;
    text-align: center;
}
.customer-info-cols h3 span{
    display: block;
    font-size: 0.75em;
}
.customer-info-cols h3 img {max-height: 45px;}
.customer-info-cols h3.order-help img {max-height: 50px;}
.customer-info-cols h3.store img {max-height: 55px;}
.customer-info-heading{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.2rem;
}
.iconsholder em{
    font-size: 0;
    width: 45px;
    height: 42px;
    color: var(--theme-scandory);
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconsholder em::before{
    font-size: 40px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}
.topic-page .customer-care-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}
.customer-care-nav {
    font-size: 22px;
    line-height: 1.6;
}
.customer-care-nav li{margin-bottom: 2px;}
.customer-care-nav li a{color: var(--black);}
.customer-care-nav li a:hover{color: var(--theme-primary);}
.topic-icons-holder{
    max-width: 380px;
    margin: 0 auto 2rem;
}
.topic-page .financing-info-nav {
    margin-left: 10px;
}
.financing-info-nav {font-size: 24px;}
.pay-financing small {
    font-size: .9em;
    text-align: center;
    display: block;
    margin-inline: auto;
    max-width: 80%;
    padding-top: 1.5rem;
    line-height: 1.3;
}
/*Customer Care Page Css End*/
.top-hero-section.miltary-discount .hero-column .content-holder p + p{margin-top: 1.2rem;}
.play-button{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.top-hero-section .hero-column .play-button img{
    width: 320px;
    height: 320px;
}
.overlaybox{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.8);
}
.video-popup-holder{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 25px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    overflow: auto;
}
.open-video-popup .video-popup-holder{
    opacity: 1;
    visibility: visible;
}
.open-video-popup .master-wrapper-content{
    z-index: 99999;
}
.video-holder{
    max-width: 700px;
    margin: auto;
    border: 10px solid var(--white);
    border-radius: 15px;
    z-index: 100;
    width: 100%;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.video-holder iframe{
    width: 100%;
    height: 500px;
    display: block;
}
.button-close {
    position: absolute;
    right: -20px;
    top: -20px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    z-index: 99;
    background-color: var(--white);
    font-size: 22px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    cursor: pointer;
}
.love-your-mattresses{padding-bottom: 1rem;}
small.small-txt {
    display: block;
    text-align: center;
    font-size: 1em;
    max-width: 90%;
    margin-inline: auto;
}
.love-your-mattresses small.small-txt{padding-bottom: 2rem;}
.contact-page .customer-care-info {
    grid-template-columns: repeat(2,1fr);
    gap: 2.5%;
    margin-block: 30px;
}
.contact-page .top-hero-section .hero-column .content-holder {
    max-width: 700px;
}
.contact-page .customer-info-buttons .iconbox {
    width: 90px;
}
.customer-info-buttons .iconbox em{
    font-size: 0;
    color: var(--white);
}
.customer-info-buttons .iconbox em::before{
    font-size: 45px;
    line-height: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.top-hero-section .customer-care-info .iconbox img{
    object-fit: contain;
    max-height: 35px;
}
.contact-page .customer-info-buttons {
    padding: 15px 10px 15px 95px;
    margin-bottom: 3%;
}
.contact-page .top-hero-section{margin-bottom: 0;}
.care-child-page{
    font-size: 20px;
    line-height: 1.6;
    text-align: start;
    padding-top: 0.8rem;
}
.care-child-page .page-title h1 {
    text-align: left;
    font-size: 36px;
    line-height: 1.1;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 0;
}
.topic-care-child table .pag .btn{
    background-color: var(--white);
    color: var(--black) !important;
    border: 1px solid var(--gray);
}
.topic-care-child table .pag .btn.active{
    background-color: var(--theme-scandory);
    color: var(--white) !important;
    border: 1px solid var(--theme-scandory);
}
.topic-care-child{
    padding: 2rem;
    border: 1px solid var(--gray);
}
.care-child-page .topic-care-child p{margin:  0 0 1.5rem;}
.return-button{
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-left: 35px;
}
.return-button::before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "\f060";
    font-family: "Font Awesome 7 Sharp";
    font-size: 20px;
    line-height: 1;
    color: var(--theme-scandory);
}
.no-space {
  display: none !important;
}
.reviews-holder{text-align: left;margin-bottom: 50px;}
.reviews-header{border-bottom: .0625rem solid rgba(0,0,0,.12);}
.reviews-header h2{
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.reviews-header h2 span{
    display: block;
    padding-top: 5px;
}

.html-product-details-page .file-attachments .title {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 10px;
    border-bottom: none 0;
    padding: 0;
    font-weight: normal;
    color: var(--black);
    text-align: left;
}
.html-product-details-page .file-attachments .attachments-content {
    text-align: left;
}
.html-product-details-page .file-attachments .attachments-content a {
  background:url(../img/file-download.png) no-repeat;
  background-size: 30px auto;
  padding-left: 40px;
  font-size: 20px;
  line-height: 30px;
}
.html-product-details-page .file-attachments .attachments-content a.attachmentLinkImg {
  display: none;
}

.tt-l-grid__col.tt-c-reviews-summary__grid-col.tt-l-grid__col--3.tt-c-reviews-summary__grid-col--3{display: none;}
.tt-o-pagination{padding-block:2rem !important;}
.tt-o-page-list__link,
ul.tt-o-page-list__link,
.tt-o-button--icon,
button.tt-o-button--icon {
    padding: 0 !important;
    background-color: var(--theme-primary) !important;
    display: block !important;
    min-width: 50px !important;
    height: 50px !important;
    line-height: 48px !important;
    border: 1px solid #eee !important;
    border-radius: 100%;
    text-align: center;
    margin-inline: 5px;
    font-size: 20px !important;
}
.tt-o-pagination__back .tt-o-icon,
.tt-o-pagination__next .tt-o-icon {
    height: 1.1rem;
    width: 1.1rem;
    fill: var(--white);
}
.tt-o-button--icon.tt-o-button--disabled,
button.tt-o-button--icon.tt-o-button--disabled{
    background-color: #eee !important;
}
.tt-o-button--icon.tt-o-button--disabled .tt-o-icon,
.tt-o-button--icon.tt-o-button--disabled .tt-o-icon {
    fill: var(--black);
}
.tt-o-page-list__link,
ul.tt-o-page-list__link{
    background-color: transparent !important;
    color: var(--black) !important;
}
.tt-o-page-list__number.tt-is-active .tt-o-page-list__link,
.tt-o-page-list__number.tt-is-active ul.tt-o-page-list__link{
    background-color: var(--black) !important;
    color: var(--white) !important;
}
.tt-o-button--icon .tt-o-icon--sm,
button.tt-o-button--icon .tt-o-icon--sm{fill: var(--white);}
.tt-o-modal__body .tt-c-rating--actionable .tt-o-icon--star--empty,
.tt-c-reviews-summary__no-reivews-body .tt-c-rating--actionable .tt-o-icon--star--empty {stroke: var(--white) !important;}
.tt-o-modal__body .tt-o-icon--xxl,
.tt-c-reviews-summary__no-reivews-body .tt-o-icon--xl {
    width: 1.5rem !important;
    height: 1.5rem !important;
    margin: auto;
}
.tt-o-modal__body .tt-o-button,
.tt-o-modal__body button.tt-o-button{border: 0 !important;}
.tt-o-modal__body .tt-c-rating__star{
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.tt-o-icon--star--full {fill: var(--black) !important;}
.tt-o-icon--star--empty, .tt-o-icon--star--half {stroke: var(--black) !important;}
.tt-o-modal__body .tt-c-rating--actionable .tt-o-icon--star--full,
.tt-c-reviews-summary__no-reivews-body .tt-c-rating--actionable .tt-o-icon--star--full {fill: var(--white) !important;}
.tt-o-button--icon:hover,
button.tt-o-button--icon:hover,
.tt-o-modal__close .tt-o-icon--close {fill: var(--white) !important;}
.cart .qty-input, .cart .qty-dropdown {
    min-width: 60px;
    height: 60px;
    border: 3px solid #eee;
    text-align: center;
    font-size: 16px;
    border-radius: 15px;
}
.cart-holder .product-subtotal strong {
    display: none;
}
.cart-holder .product-title a {
    color: var(--black) !important;
}
.cart-holder .product-title a:hover {
    color: var(--theme-primary) !important;
}
.cart-holder .product-unit-price{
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-avenirblack);
}
.overview .tt-o-button--link,
.overview button.tt-o-button--link{margin: 2px 0 0 8px;}
.overview .tt-c-rating {display: block; margin-bottom: 0;}
.overview .tt-c-teaser {display: block; margin-bottom: 10px;}
.home-page .manufacturer-section .swiper-slide .slide-img {
    border-radius: 20px;
    overflow: hidden;
}

.tt-c-teaser__link {
    margin: 0 !important;
}

.header-menu .mobile-menu-item {
  display: none;
}
.theme-gallery-btn{
    background-color: var(--theme-primary);
    color: var(--white);
    padding: 20px;
    font-size: 40px;
    line-height: 1.2;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .3s, color .3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-shadow: none;
    min-width: 450px;
    letter-spacing: 1px;
}
.theme-gallery-btn:hover{
    background-color: var(--theme-scandory);
    color: var(--white);
}
.theme-gallery-btn i{
    font-size: inherit;
    line-height: inherit;
}
.theme-gallery-btn:hover .normal,
.theme-gallery-btn .hover{display: none;}
.theme-gallery-btn:hover .hover{display: block;}
.theme-gallery-btn.white{
    background-color: var(--white);
    color: var(--theme-primary);
}
.theme-gallery-btn.white i{color: var(--theme-scandory);}
.theme-gallery-btn.white:hover{
    background-color: var(--theme-scandory);
    color: var(--white);
}
.theme-gallery-btn.white:hover i{color: var(--white);}
.blog-page .rich-blog-homepage .read-more,
.blog-page .post-actions .read-more{
    background-color: var(--theme-primary);
    font-weight: 400;
}
.blog-page .rich-blog-homepage .read-more:hover,
.blog-page .post-actions .read-more:hover {
    background-color:  var(--theme-scandory);
}